/* START TOOLTIP STYLES */
[tooltip] {
  position: relative; /* opinion 1 */
}

/* Applies to all tooltips */
[tooltip]::before,
[tooltip]::after {
  text-transform: none; /* opinion 2 */
  font-size: .9em; /* opinion 3 */
  line-height: 1;
  user-select: none;
  pointer-events: none;
  position: absolute;
  display: none;
  opacity: 0;
}
[tooltip]::before {
  content: '';
  border: 5px solid transparent; /* opinion 4 */
  z-index: 1001; /* absurdity 1 */
}
[tooltip]::after {
  content: attr(tooltip); /* magic! */
  
  /* most of the rest of this is opinion */
  text-align: center;
  
  /* 
    Let the content set the size of the tooltips 
    but this will also keep them from being obnoxious
    */
  min-width: 3em;
  max-width: 21em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 1ch 1.5ch;
  border-radius: .3ch;
  box-shadow: 0 1em 2em -.5em rgba(0, 0, 0, 0.35);
  background: #333;
  color: #fff;
  z-index: 1000; /* absurdity 2 */
}

/* Make the tooltips respond to hover */
[tooltip]:hover::before,
[tooltip]:hover::after {
  display: block;
}

/* don't show empty tooltips */
[tooltip='']::before,
[tooltip='']::after {
  display: none !important;
}

/* FLOW: UP */
[tooltip]:not([flow])::before,
[tooltip][flow^="up"]::before {
  bottom: 100%;
  border-bottom-width: 0;
  border-top-color: #333;
}
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::after {
  bottom: calc(100% + 5px);
}
[tooltip]:not([flow])::before,
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::before,
[tooltip][flow^="up"]::after {
  left: 50%;
  transform: translate(-50%, -.5em);
}


/* KEYFRAMES */
@keyframes tooltips-vert {
  to {
    opacity: .9;
    transform: translate(-50%, 0);
  }
}

@keyframes tooltips-horz {
  to {
    opacity: .9;
    transform: translate(0, -50%);
  }
}

/* FX All The Things */ 
[tooltip]:not([flow]):hover::before,
[tooltip]:not([flow]):hover::after,
[tooltip][flow^="up"]:hover::before,
[tooltip][flow^="up"]:hover::after {
  animation: tooltips-vert 300ms ease-out forwards;
}
.styles__Container {
    display: none;
    width: 43%;
    border-radius: 10px;
    background: rgb(255,255,255);
    box-shadow: rgb(0 0 0 / 10%) 0 8px 30px 0, rgb(0 0 0 / 46%) 0 2px 8px -3px;
    padding: 20px;
    overflow: hidden;
    user-select: none;
    direction: rtl;
    position: fixed;
   
    margin: auto;
    right: 0;
    left: 0;
    z-index: 99999999999;
    transition: 500ms;
    animation: 500ms linear;
}
img.closeModalCalen {
    position: relative;
    margin-bottom: 13px;
    display: flex;
	cursor: pointer;
}
.styles__Header {
    display: flex;
    -webkit-box-align: stretch;
    align-items: stretch;
    -webkit-box-pack: justify;
    justify-content: space-between;
    gap: 5px;
}
.styles__MonthButton {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    white-space: nowrap;
    font-size: 15px;
    font-weight: 500;
    height: 42px;
    color: #e2044f;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(169, 169, 169);
    border-radius: 10px;
    padding: 9px 10px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    border-color: #e2044f;
}
.styles__MonthButton:hover {
    color: #ffffff;
    background: #e2044f;
    border-color: #e2044f;
}
.styles__MonthButton>.title:last-child {
    padding: 0px 0px 0px 0;
}
.styles__Title {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    flex: 1 1 0%;
    font-size: 16px;
    font-weight: 500;
    color: rgb(0, 26, 52);
    white-space: nowrap;
    word-spacing: 2px;
}
.styles__Calendar {
    display: flex;
    flex-direction: column;
    -webkit-box-align: stretch;
    align-items: stretch;
    -webkit-box-pack: start;
    justify-content: flex-start;
    gap: 6px;
    transition: all 0.3s ease 0s;
    position: relative;
    margin-top: 20px;
}
.styles__Week {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    justify-items: stretch;
    text-align: center;
    gap: 6px;
    font-size: 16px;
}
.styles__DayName {
	font-size: 12px !important;
    font-weight: 500;
    line-height: 20px;
    color: rgb(0, 26, 52);
}
.disableDay {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    border-radius: 10px;
    position: relative;
    transition: all 0.3s ease 0s;
    border: 1px solid rgb(239, 239, 239);
    color: rgb(191 191 191);
    background: rgb(239, 239, 239);
    cursor: not-allowed;
    flex-direction: column;
	min-height: 80px;
}
.disableDay>.text {
    font-size: 18px;
    font-weight: 500;
}
.activeDay {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    border-radius: 10px;
    position: relative;
    transition: all 0.3s ease 0s;
    border: 1px solid#E2044F;
    color: #4B5563;
    background: rgb(255, 255, 255);
    cursor: pointer;
    flex-direction: column;
}
.activeDay:hover,
.activeDay:hover .Holiday {
    background-color: #E2044F;
    color: white;
	border-radius: 4px !important;
}
.blur {
    width: 100%;
    height: 1440px;
    background-color: rgba(0, 0, 0, 0.501);
    position: fixed;
    z-index: 999999;
    display: none;
	top: 0;
}
del.delPriceCal {
    font-size: 9px;
}
.priceDayCalen {
    margin: 3px 0 0 0;
    font-size: 13px;
	line-height: 1;
}
.normalDay {
    font-weight: 700;
}
.Holiday {
	color: #DC2626;
    font-weight: 700 !important;
}

.stylesWeekRange .lastDay .Holiday {
    color: #FAFAFA !important;
}

.stylesWeekRange .startDay .Holiday {
    color: #FAFAFA !important;
}

.HolidayDis {
    color: #DC2626;
    font-weight: 500;
}
.styles__Day {
    padding: 10px 0;
}
.disableDay>.priceDayCalen {
    font-size: 13px;
    font-weight: 500;
}
@keyframes fadeInCal {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes fadeOutCal {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
.dMobBlock {
	display: none;
}
.modalRedirectItemLeft {
    width: 40%;
}
.modalRedirectItemLeftbox h2 {
    width: 100%;
    text-align: center;
   font-weight: 700;
	font-size:1.6rem;
}
.modalRedirectItemRight h3 {
    font-size: 16px;
    font-weight: 700;
}
.datepicker-footer-title {
	font-size: 14px;
    font-weight: 400;
    color: #8b8b8b;
}
.entryDatepiacker {
	font-weight: 700;
}
.btnDatePiacker {
	background-color: #E2044F;
    color: white;
	font-size: 14px !important;
    padding: 8px 30px;
}
/* .mt-4, .my-4 {
    margin-top: 2.5rem!important;
} */
.datepicker-spacing {
    display: flex;
    align-items: center;
}
.dcalNerkhNone {
	display: none !important;
}
.stylesContainerRange .dcalNerkhNone {
	display: flex !important;
}
.btnDatePiacker:disabled {
	opacity: .3;
	background-color: #9c9c9f;
}
.btnDatePiacker:hover {

	color: white !important;
} 
.styles__Day[start="1"]{
			grid-column-start: 1;
		}
.styles__Day[start="2"]{
	grid-column-start: 2;
}
.styles__Day[start="3"]{
	grid-column-start: 3;
}
.styles__Day[start="4"]{
	grid-column-start: 4;
}
.styles__Day[start="5"]{
	grid-column-start: 5;
}
.styles__Day[start="6"]{
	grid-column-start: 6;
}
.styles__Day[start="7"]{
	grid-column-start: 7;
}
.selectDay {
	background-color: #FFE6EE;
	color: #4B5563;
}
.disableDay span.text{
	opacity: .3;
}
.disableDay {
	min-height: inherit;
}
.stylesWeekRange .activeDay{
	border: none;
	border-radius: 0;
	flex: 1 0 0
}
.stylesWeekRange .lastDay{
	border-radius: 8px 0 0 8px;
	background: #E2044F;
    color: #FAFAFA;
}
.stylesWeekRange .startDay{
	border-radius: 0 8px 8px 0;
	background: #E2044F;
    color: #FAFAFA;
}
.stylesContainerRange {
    width: fit-content !important;
}
.stylesCalendarRange{
	flex-direction: row;
	justify-content: center;
	gap: 30px;
	margin: 20px auto;
}
.stylesWeekRange .styles__DayName{
	width: 100%;
}
.stylesWeekRange {
    gap: 4px;
    row-gap: 6px;
}
.NotPriceDayCalen {
	font-size: 10px !important;
	text-align: center;
}
@media (max-width:1440px){
	.styles__Container {
		top: 9%;
	}
}
@media (max-width:1300px) {
	.styles__Container {
		width: 60%;
	}
}
@media (max-width:1100px) {
	.styles__Container {
    top: 1%;
}
}
@media (max-width:1000px) {
	.styles__Container {
		width: 80%;
	}
}
@media (max-width:850px) {
	.stylesContainerRange {
		width: 100% !important;
		top: 0;
		bottom: 0;
		border-radius: 0;
	}
	.stylesCalendarRange {
    	flex-direction: column !important;
	}
}
@media (max-width:700px) {
	.styles__Container {
		width: 95%;
	}
}
@media (max-width:650px) {
	.styles__Container {
		width: 100%;
		padding: 10px 5px 5px 5px;
    	top: auto;
		bottom: 0;
		border-radius: 0;
	}

    [tooltip]::before,
    [tooltip]::after {
        display: none !important;
    }
	.styles__Day img {
		width: 14px;
	}
	.priceDayCalen {
		font-size: 10px;
	}
	.disableDay>.priceDayCalen {
		font-size: 10px;
	}
	img.closeModalCalen {
		margin-bottom: -21px;
	}
	.priceDayMobile{
		display: block;
	}
	.priceDayDesktop{
		display: none;
	}
	.stylesCalendarRange {
		gap: 6px !important;
		margin: 0px auto;
	}
	.dcalNerkhNone.d-flex.justify-content-between.align-item-center.mt-4 {
		margin-top: 10px !important;
	}
	.stylesWeekRange .startDay {
		border-radius: 0 8px 8px 0;
	}
	.stylesWeekRange .lastDay {
		border-radius: 8px 0 0 8px;
	}
	.stylesWeekRange {
		gap: 0px !important;
	}
	.stylesContainerRange {
		top: 0 !important;
        transform: translateY(0);
        -o-transform: translateY(0);
        -ms-transform: translateY(0);
        -moz-transform: translateY(0);
        -webkit-transform: translateY(0);
	}
	.mountNameMob {
		display: flex !important;
	}
	.DMobNone {
		display: none;
	}
	
	.dMobBlock {
		display: block;
	}
	.dMobNone {
		display: none;
	}
	.styles__MonthButton {
		font-size: 13px;
		height: 33px;
		border-radius: 25px;
		padding: 4px 6px;
	}
	.disableDay {
		min-height: 50px;
		border: 2px solid white;
	}
	.styles__Day {
		padding: 3px 0;
	}
	.normalDay {
		font-size: 13px !important;
	}
	.Holiday {
		font-size: 13px !important;
	}
	.activeDay {
		min-height: 40px;
	}
}
@media (max-width:450px) {
	.delPriceCalBox {
		display: none;
	}
}


@media (min-width: 851px) {
    .styles__Container {
        top: 50% !important;
        transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
    }
}