/********** Template CSS **********/
:root {
    --primary: #FEA116;
    --light: #F1F8FF;
    --dark: #0F172B;
    --white: #FFFFFF;
    --black: #000000;
    --lightGreen: #90C71D;
    --secondary: #0c6dfd;
    --grey: #737373;
    --lightGrey: #8c8c8c;
    --green: #008234;
    --offWhite: #e3e3e3;
    --bgoverlay: #0f172b66;
}
.fw-medium {
    font-weight: 500 !important;
}
hr{border-color: var(--lightGrey);}
.fw-semi-bold {
    font-weight: 600 !important;
}
.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}
#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Button ***/
.btn {
    font-weight: 500;
    text-transform: uppercase;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: var(--white);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 17px 0;
    color: var(--white);
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bgoverlay);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}

.booking {
    position: relative;
    margin-top: -100px !important;
    z-index: 1;
}
.booking.bookingSrch{ margin-top: -20px !important;}
.booking .bookingContainr{padding: 16px; width: 705px; margin: 0 auto;}
.booking.bookingSrch .bookingContainr{padding: 0;width: 970px;}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    left: -55px;
    margin-top: -1px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    right: -55px;
    margin-top: -1px;
}

.section-title.text-start::before,
.section-title.text-end::after {
    display: none;
}

.resortBanner img.w-100{height: auto; width: 100%;}
/*** Service ***/
.service-item {
    height: 320px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: var(--white);
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
    text-decoration: none;
}
.service-item span.fg-img.serviceItem{
  background: transparent;
  height: auto;
}
/* .service-item:hover {
    background: var(--primary);
} */

.service-item .service-icon {
    margin: 0 auto 30px auto;
    width: 65px;
    height: 65px;
    transition: .5s;
    border: 0px solid !important;
}
.service-item .service-icon .border{border: 0px solid !important;}
.service-item .service-icon i{opacity: 0.75;}
.service-item i,
.service-item h5,
.service-item p {
    transition: .5s;
}
.service-item p{
    color: #868686 !important;
    font-weight: 300;
}
/* .service-item:hover i,
.service-item:hover h5,
.service-item:hover p {
    color: var(--white) !important;
} */


/*** Youtube Video ***/
.video {
    position: relative;
    height: 100%;
    min-height: 500px;
}
.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--dark);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: var(--white);
    background: var(--black);
    opacity: 1;
}


/*** Testimonial ***/
.testimonial {
    background: linear-gradient(rgb(3 50 164 / 70%), rgba(15, 23, 43, .7));
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial-carousel {
    padding-left: 65px;
    padding-right: 65px;
}

.testimonial-carousel .testimonial-item {
    padding: 30px;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--primary);
    border-radius: 2px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--primary);
    background: var(--white);
}


/*** Team ***/
.team-item,
.team-item .bg-primary,
.team-item .bg-primary i {
    transition: .5s;
}

.team-item:hover {
    border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
    background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
    color: var(--secondary) !important;
}


/*** Footer ***/
.newsletter {
    position: relative;
    z-index: 1;
}

.footer {
    position: relative;
    margin-top: 0px;
    padding-top: 50px;
}
.footer.footerInner{padding-top: 60px; margin-top: 0px;}
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid var(--white);
    border-radius: 35px;
    transition: .3s;
}
.imageAbit{padding-left: 30px;}
.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--white);
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
    text-decoration: none;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}
.copyright .bgFullCopy{background: #130f25 !important; justify-content: space-between;display: flex; padding: 12px 16px;}
.footer .copyright a {
    color: var(--light);
}
.copyright .bgFullCopy p, .copyright .bgFullCopy span{color: white;font-size: 13px; font-weight: 300;}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
.socialICon a{margin-right: 0 !important; margin-left: 1rem!important;}
.socialICon a img{
    width: 22px;
}
.bannerSearch_wrapper{ padding: 19px 0 25px !important;display: flex;    background-position: center; background-repeat: no-repeat; background-size: cover;}
.newHeadText{margin-bottom: 24px;}
.newHeadText .section-title{font-size: 22px;}
.newHeadText .subHeadingResrt .sbHeading{}
.blogBoxCont{display: flex;border: 1px solid #e2e2e2;}
a.userImg{text-transform: capitalize !important;}
.infoContact img{height: 16px; margin-right: 6px;}
.infoContact p{font-size: 14px;}
.userImg img{width: 40px; filter: brightness(0) invert(1); margin-right: 8px;}
.userImg.usrActiveIcn img{border-radius: 50%; filter: inherit}
.back-to-top img{width: 20px; filter: brightness(0) invert(1);}
.blogWrapper .feature_date {
    left: 10px;
    bottom: 10px;
    background: rgba(56, 48, 48, 0.7);
    padding: 3px 10px;
    font-size: 12px;
    border-radius: 20px;
    color: var(--white);
    display: flex;
    align-items: center;
    font-size: 11px;
}

.blogWrapper .position-relative.imgBlogBox{height: 200px; overflow: hidden;}
.blogWrapper .blogBoxCont .position-relative.imgBlogBox{width: 45%;}
.blogWrapper .position-relative.imgBlogBox img{object-fit: cover;height: 100%; width: 100%;}
.blogWrapper .blogBoxCont .feature_date img{ width: 16px; margin-right: 5px;}
.blogWrapper .contneBlog_bx{
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-top: 8px;
}
.blogWrapper a{text-decoration: none;}
.blogWrapper a h5{color: var(--black); font-weight: 600 !important;}
.blogWrapper a:hover h5{color: var(--primary);}
.blogWrapper a p{color: var(--grey);}
/* activitiesCss Start */
.grid figure {
    position: relative;
    float: left;
    overflow: hidden;
    margin: 10px 1%;
    min-width: 320px;
    max-width: 480px;
    max-height: 360px;
    width: 100%;
    background: #3085a3;
    text-align: center;
    cursor: pointer;
}
.grid figure img {
    position: relative;
    display: block;
    min-height: 100%;
    max-width: 100%;
    opacity: 0.8;
}
.grid figure figcaption, .grid figure figcaption > a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.grid figure figcaption {
    padding: 2em;
    color: var(--white);
    text-transform: uppercase;
    font-size: 1.25em;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
figure.effect-sadie figcaption::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-linear-gradient(top, rgba(72,76,97,0) 0%, rgba(72,76,97,0.8) 75%);
    background: linear-gradient(to bottom, rgba(72,76,97,0) 0%, rgba(72,76,97,0.8) 75%);
    content: '';
    opacity: 0;
    -webkit-transform: translate3d(0,50%,0);
    transform: translate3d(0,50%,0);
}
.grid figure figcaption::before, .grid figure figcaption::after {
    pointer-events: none;
}
figure.effect-sadie figcaption::before, figure.effect-sadie p {
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
}
figure.effect-sadie h2 {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    color: var(--white);
    -webkit-transition: -webkit-transform 0.35s, color 0.35s;
    transition: transform 0.35s, color 0.35s;
    -webkit-transform: translate3d(0,-50%,0);
    transform: translate3d(0,-50%,0);
    background: rgba(000,000,000,0.5);
    padding: 6px;
    font-size: 26px;
}
figure.effect-sadie h3{
  left: 0;
  width: 100%;
  color: #eaeaea;
  font-size: 12px;
  position: absolute;
  text-align: left;
  bottom: 0;
  padding: 12px;
  margin: 0;
  font-weight: 300;
  text-transform: none;
}
figure.effect-sadie h3 span{font-weight: 500; color: var(--white);}
.grid figure p {
    letter-spacing: 1px;
    font-size: 68.5%;
}
figure.effect-sadie figcaption::before, figure.effect-sadie p {
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
}
figure.effect-sadie p {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 2em;
    width: 100%;
    opacity: 0;
    -webkit-transform: translate3d(0,10px,0);
    transform: translate3d(0,10px,0);
}
figure.effect-sadie p {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 2em;
    width: 100%;
    opacity: 0;
    -webkit-transform: translate3d(0,10px,0);
    transform: translate3d(0,10px,0);
}
figure.effect-sadie:hover h2 {
    color: var(--white);
    -webkit-transform: translate3d(0,-85%,0) translate3d(0,-40px,0);
    transform: translate3d(0,-85%,0) translate3d(0,-40px,0);
    background: var(--black);
}
figure.effect-sadie:hover figcaption::before, figure.effect-sadie:hover p {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
.grid figure figcaption > a {
    z-index: 1000;
    text-indent: 200%;
    white-space: nowrap;
    font-size: 0;
    opacity: 0;
}
.grid figure h2 {
    font-weight: 300;
    text-transform: capitalize;
}
.grid figure h2 span {
    font-weight: 600;
}
span.fg-img{
    position: relative;
    margin: 0 auto;
    height: 270px;
    width: 100%;
    float: left;
    background: var(--black);
}
span.fg-img img{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    opacity: 1;
    max-width: inherit;
    max-height: initial;
    border: none;
    outline: none;
    text-decoration: none;
    height: auto;
    width: 100%;
    min-height: auto;
}
.clear{clear: both;}
/* .btn.btn-primary{background-color: var(--lightGreen); border: 1px solid 1px solid var(--lightGreen);} */
/* signUp Css */
.bodyContainrPadding{padding-top: 110px;}
.overlayCitySignup {
    height: auto;
    width: 100%;
    /* background: var(--black); */
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    float: left;
    display: flex;
    height: calc(100vh - 60px);
  }
  .signUpText {
    background-color: rgba(000, 000, 000, 0.65);
    height: calc(100vh - 60px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 60px;
  }
  .overlayCitySignup .signUpCol.heightVh {
    height: calc(100vh - 60px);
  }
  .signUpCol {
    background-color: rgba(255, 255, 255, 0.96);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .signUpCol .UserForm {
    width: 100%;
    padding: 0 10%;
  }
  input[type=number]::-webkit-inner-spin-button, 
    input[type=number]::-webkit-outer-spin-button { 
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        margin: 0; 
    }
  .form-floating>label{font-size: 14px; padding-left: 0;}
  .UserForm input.form-control, .UserForm select.form-select{height: 38px;
    background: transparent;
    border: 0px;
    border-bottom: 1px solid #E6E9E8;
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
    color: var(--secondary);
}
.form-floating>.form-control-plaintext~label, .form-floating>.form-control:focus~label, .form-floating>.form-control:not(:placeholder-shown)~label, .form-floating>.form-select~label{
    transform: scale(.85) translateY(-.75rem) translateX(0rem);
}
    .UserForm input.form-control:focus, .UserForm select.form-select:focus{
        border-bottom: 1px solid var(--secondary);
        box-shadow: none;
    }
  .SingListContent h1, .SingListContent p{
    color: var(--white);
    margin-top: 0;
    font-size: 2.5rem;
  }
  .SingListContent ul{margin-top: 25px; padding-left: 16px;}
  .SingListContent ul li{
    color: var(--white);
    margin-bottom: 15px;
  }
  .signUpCol .UserForm h1 {
    font-size: 22px;
    color: #333;
    line-height: 30px;
    margin: 0 0 20px;
  }
  .signUpCol form .form-floating label:after{background-color: transparent !important}
  .UserForm p.signupText{text-align: left; color: var(--black); margin-top: 20px; font-size: 14px;}
  .UserForm p.signupText a{color: #0074BB; text-decoration: underline; font-weight: 500;}
  .UserForm p.signupText a:hover{text-decoration: none;}
  .UserForm .formInput{margin-bottom: 12px;}
  .UserForm .sbmtBtn button{ width: auto; height: 52px; margin-top: 20px; padding: 0 40px;}
  .UserForm .sbmtBtn button:hover{background: var(--black);}
  .rtl-label{
    right: 0.5rem !important;
    left: auto !important;
  }
  .form-label-group.in-border input:focus~.rtl-label, .form-label-group.in-border input:not(:placeholder-shown)~.rtl-label, .form-label-group.in-border select~.rtl-label, .form-label-group.in-border textarea:focus~.rtl-label, .form-label-group.in-border textarea:not(:placeholder-shown)~.rtl-label{
    right: calc(var(--input-padding-x) - 40px) !important;
      left: auto !important;
  }
  .form-floating>.form-control, .form-floating>.form-control-plaintext, .form-floating>.form-select{
    min-height: calc(3rem + calc(var(--bs-border-width) * 2));
  }
  .resortTemplate .resrtImg{width: 35%; float: left;}
  .resortTemplate .resrtCont{width: 65%; float: left;}
  .room-item.roomDetailsInfo{display: flex;}
  .room-item.roomDetailsInfo.columnSec{flex-direction: column;}
  .resortTemplate .resrtImg img{height: 100%; object-fit: cover;}
  .resortTemplate .resrtCont{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .room-item.roomDetailsInfo.columnSec .resrtImg{height: 260px; overflow: hidden;}
  .room-item.roomDetailsInfo.columnSec .resrtImg img{height: 100%;width: 100%;object-fit: cover;transition: transform 0.5s ease;}
  .room-item.roomDetailsInfo.columnSec .contentDes_text p, .room-item.roomDetailsInfo.columnSec .contentDes_text{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 14px;
    color: #5d5d5d;
    margin: 0;
  }
  .room-item.roomDetailsInfo.columnSec .resrtCont .resrtCont_contntSft h5{font-size: 1.125rem; color: #000;}
  .cardHyperLink:hover .room-item.roomDetailsInfo.columnSec .resrtImg img{transform: scale(1.1);}
  .rmaboutPnl a{text-decoration: none;}
  .resortTemplate .columnSec .resrtImg, .resortTemplate .columnSec .resrtCont{width: 100%;}
  .descriptinTitl{margin-bottom: 40px; float: left; width: 100%;}
  .descriptinTitl p{font-size: 20px; color: #666666; font-weight: 300;}
  .resortTemplate .resrtCont .text-body{overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;}
  small.addressMap{color: #6e6e6e;}
  small.addressMap span{margin-right: 6px;color: #000;}
  /* Account Css Start here */
  .leftAccntMenuList{padding: 40px 32px; border-right: 1px solid #E6E9E8;}
  .accountList h2{font-size: 18px; font-weight: 500;}
  .accountList ul{list-style-type: none; padding-left: 0;}
  .accountList ul li{display: block; margin-bottom: 6px;}
  .accountList ul li a{padding: 10px 12px; border-radius: 8px; color: var(--black);display: block; text-decoration: none;}
  .accountList ul li.active a, .accountList ul li a:hover{background-color: #edf3fa;}
  .accountList ul li a img{margin-right: 8px; width: 18px;}
  .accountDetails{padding: 40px 75px;}
  .infoImage_acct{padding-right: 32px; width: 135px;}
  .accuntInfo_Data{width: 100%;}
  .accuntInfo_Data h3{font-size: 24px; margin-bottom: 32px;}
  .imgAvtar{width: 100px; height: 100px; position: relative;}
  .imgAvtar img{width: 100%; border-radius: 50%;background-size: cover; height: 100%; object-fit: cover;}
  .imgAvtar label{
    padding: 0;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0px 2px 16px 0px rgba(37, 40, 43, 0.20);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .imgAvtar label img{width: 24px;}
  .userForm_Details .form-floating>.form-control, .userForm_Details .form-floating>.form-control-plaintext, .userForm_Details .form-floating>.form-select{
    min-height: calc(3.5rem + calc(var(--bs-border-width) * 2));
  }
  .textAresText label{font-size: 13px; color: var(--grey)}
  .textAresText textarea{padding-left: 0; color: var(--secondary);}
  /* Booking Css codePan */
  .accountDetails.paddingHide{padding-left: 0; padding-right: 0;}
  .bookingInfo .nav-tabs .nav-item{width: 33.33%;}
  .bookingInfo .nav-tabs .nav-link{border: 0px; border-bottom: 3px solid; border-color: transparent; padding: 12px 0; width: 100%; color: var(--grey);}
  .bookingInfo .nav-tabs .nav-link.active{
    border-color: var(--secondary);
    color: var(--secondary);
  }
  .bookingInfo .tab-content,  .bookinSrch_field{margin-top: 25px; padding-left: 50px; padding-right: 50px;}
  /* date input */
 .bookinSrch_field{display: flex; justify-content: space-between; margin-top: 16px; margin-top: 20px;}
.posRelative{position: relative;}
.datFilter{width: 200px;}
.srchSection{width: 320px;display: flex; align-items: center;}
.datFilter input, .srchSection input{
    height: 40px;
    width: 100%;
    border-radius: 20px;
    border: 1px solid;
    border-color: var(--lightGrey);
    padding: 0 12px;
    font-size: 14px;
    color: var(--lightGrey);
}
.srchSection .srchBtn_yrBokkng{position: absolute;right: 2px;border: 1px solid;font-size: 14px;height: 38px; border-radius: 20px;padding: 0 15px;}
.datFilter img, .srchSection img{position: absolute; }
.srchSection img{left: 12px; width: 16px;}
.srchSection input{padding-left: 40px; color: var(--dark);}
.statusInBox .idNumbr{font-size: 15px; font-weight: 300;}
.statusInBox .idNumbr span{font-weight: bold; padding-left: 6px;}
.statusInBox .status{background-color: #eaeaea;padding: 2px 6px; border-radius: 2px;}
.statusInBox .status p{margin: 0; text-transform: uppercase; font-size: 12px;}
.statusInBox .status p span{font-weight: 600;}
.statusInBox .status p span.success{color: #44aa5d;}

.statusInBox .status p span.pending, .bookgStatus ul li span.pending{color: #e09e1f;}
.statusInBox .status p span.processing, .bookgStatus ul li span.processing{color: #c49f2c;}
.statusInBox .status p span.confirmed, .bookgStatus ul li span.confirmed{color: #3a99bf;}
.statusInBox .status p span.completed, .bookgStatus ul li span.completed, .bookgStatus ul li span.success{color: #199237;}
.statusInBox .status p span.cancelled, .bookgStatus ul li span.cancelled{color: red;}

.statusInBox .status p span.danger{color: red;}
.htelTitle{align-items: center;}
.htelTitle h5 span, .htelTitle span.datBckd{font-size: 12px; color: var(--lightGrey); padding-left: 8px;}
.chkIn_chkOut .infoDate p{margin: 0; color: var(--lightGrey); font-size: 12px; margin-top: 2px; margin-right: 6px;}
.chkIn_chkOut .infoDate span{font-size: 14px; margin-right: 30px;}
.bookingInfoBtn{display: block !important;}
.bookingInfoBtn .status{float: right;}
.bookingInfoBtn .status.alignLeftContnt{float: left;}
.bookingInfoBtn .status.alignLeftContnt p{font-size: 13px; margin: 0;color: #ff5656; background: #ffdada; padding: 4px 8px; border-radius: 2px;}
.bookingInfoBtn button{
    height: 34px;
    background: #b2f1ff;
    border: 1px solid;
    border-radius: 20px;
    padding: 0 20px;
    font-size: 14px;
}
.bookingInfoBtn button.contened.chstBtn{background-color: var(--primary); border-color: var(--primary);}
.bookingInfoBtn button.outline{background-color: transparent; border-color: var(--secondary); color: var(--secondary);}
.bookingInfoBtn button.contened{background-color: var(--secondary); border-color: var(--secondary); color: var(--white);}
/* resortDetails Section */
.resortDetails{float: left; width: 100%; min-height: 500px; margin: 40px 0;}
.resortDetails h1{font-size: 26px; margin-bottom: 20px;}
.resortDetails p.mapPointer{font-size: 14px;}
.resortDetails p.mapPointer img{width: 15px; margin-right: 4px;}
/*==== photo gallery ====*/
.photos-grid-container {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    grid-gap: 0;
    align-items: start;
  }
  @media (max-width: 580px) {
    .photos-grid-container {
      grid-template-columns: 1fr;
    }
  }
  .photos-grid-container .img-box {
    border: 1px solid #ffffff;
    position: relative;
  }
  .photos-grid-container .img-box:hover .transparent-box {
    background-color: rgba(0, 0, 0, 0.6);
  }
  .photos-grid-container .img-box:hover .caption {
    transform: translateY(-5px);
  }
  .photos-grid-container img {
    max-width: 100%;
    display: block;
    height: auto;
  }
  .photos-grid-container .caption {
    color: white;
    transition: transform 0.3s ease, opacity 0.3s ease;
    font-size: 1.5rem;
  }
  .photos-grid-container .transparent-box {
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .photos-grid-container .main-photo {
    grid-row: 1;
    grid-column: 1;
  }
  .photos-grid-container .sub {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-gap: 0em;
  }
  .photos-grid-container .sub:nth-child(0) {
    grid-column: 1;
    grid-row: 1;
  }
  .photos-grid-container .sub:nth-child(1) {
    grid-column: 2;
    grid-row: 1;
  }
  .photos-grid-container .sub:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }
  .photos-grid-container .sub:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }
  
  .hide-element {
    border: 0;
    clip: rect(1px 1px 1px 1px);
    /* IE6, IE7 */
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  
  @media screen and (min-width: 1280px) {
    .container {
      margin: 0 auto;
      width: 1250px;
    }
  }

  /* home page select oprion css stylis guest */
  .select-menu{width: 300px; padding: 10px 0;}
  .guestInfo_dropOption{
    float: left;
    border: 2px solid;
    border-color: #60a5e2;
    border-right: 0px;
    padding-right: 0;
    height: 48px;
    width: 300px;
  }
  .select-menu .select-btn {
    display: flex;
    background: #fff;
    font-size: 14px;
    font-weight: 400;
    border-radius: 8px;
    align-items: center;
    cursor: pointer;
    justify-content: space-between;
  }
  .guestInfo_dropOption span.sBtn-text{padding: 0 0 0 16px;}
  .select-menu .options {
    position: absolute;
    width: 300px;
    overflow-y: auto;
    max-height: 295px;
    padding: 0px;
    margin-top: 16px;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    animation-name: fadeInDown;
    -webkit-animation-name: fadeInDown;
    animation-duration: 0.35s;
    animation-fill-mode: both;
    -webkit-animation-duration: 0.35s;
    -webkit-animation-fill-mode: both;
    display: none;
  }
  .select-menu .options .option {
    display: flex;
    height: 38px;
    cursor: pointer;
    padding: 0 16px;
    align-items: center;
    background: #fff;
    border-bottom: 1px solid #e7e7e7;
  }
  .select-menu .options .option:hover {
    background: #f2f2f2;
  }
  .select-menu .options .option i {
    font-size: 14px;
    margin-right: 10px;
    color: #333;
  }
  .select-menu .options .option .option-text {
    font-size: 14px;
    color: #333;
  }
  
  .select-btn i {
    font-size: 13px;
    transition: 0.3s;
    opacity: 0.6;
    padding-right: 16px;
  }
  .select-menu.active .options {
    display: block;
    opacity: 0;
    z-index: 10;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
    animation-duration: 0.4s;
    animation-fill-mode: both;
    -webkit-animation-duration: 0.4s;
    -webkit-animation-fill-mode: both;
  }
  /* date range filter option */
  .dateFilterRange{position: relative; cursor: pointer;}
  .dateRangeFilter_option{
    display: none;
    padding: 12px 0;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 50px;
    width: 600px;
    left: 0;
    z-index: 99;
  }
  .dateFilterRange.optionChoose{height: auto; padding: 0; border: 1px solid; padding: 2px; border-radius: 4px;border-color: #60a5e2;}
  .dateFilterRange.optionChoose .input-container{
    box-shadow: none;
    filter: none;
    height: 47px;
    padding: 0 10px;
  }
  .dateFilterRange.optionChoose .input-container label{
    text-transform: capitalize;
    letter-spacing: 0;
    font-weight: 500;
  }
  .dateFilterRange.optionChoose .button-container{height: 50px; background-color: transparent;filter: none; border-radius: 5px;}
  .dateRangeFilter_option .fromAndTo_options{width: 100%; display: none !important;}
  .dateRangeFilter_option .fromAndTo_options input{width: 45%; height: 40px; padding: 0 10px; border: 1px solid #c7c7c7; border-radius: 4px; font-size: 14px;}
  .containerDateRange{width: 100%; display: flex;}
  .containerDateRange .DateRangeBox{
    width: 50%;
    border-left: 1px solid #e6e9e8;
    padding: 0 12px;
  }
  .ateRange_datePicker{
    box-sizing: border-box;
    display: flex;
    flex-flow: wrap;
    width: 100%;
  }
  .ateRange_datePicker button{width: 14.28%; background-color: transparent; border: 0px; font-size: 14px; height: 40px;}
  .containerDateRange .DateRangeBox:first-child{border-left: 0px;}
  .dateRangeHeader{justify-content: space-between; align-items: center;}
  .dateRangeHeader button{height: 24px; background-color: transparent; border: 0px solid; font-size: 12px; opacity: 0.4;}
  .dateRangeHeader button:hover{opacity: 1;}
  .dateRangeHeader p{margin: 0; font-size: 15px; font-weight: 600;}
  .dateRange_daysHeader.d-flex{justify-content: space-between; margin: 12px 0;}
  .dateRange_daysHeader.d-flex span{font-size: 12px; width: 14.28%; text-align: center;}
  .ateRange_datePicker button.disable{color: #aba6a6; cursor: inherit;}
  .ateRange_datePicker button:hover, .ateRange_datePicker button.checkin{color: var(--secondary); background: #d7e7ff;}
  .ateRange_datePicker button.active{background-color: var(--secondary); color: var(--white);}
  .promotional-banner-container{
    display: flex;
    flex-direction: column;
    padding: 14px;
    border: 1px solid;
    border-color: var(--offWhite);
    border-radius: 4px;
    margin-top: 16px;
  }
  .promotnlBnr-ratng{align-items: center;}
  .bookingContnt{margin-top: 10px;}
  .promotnlBnr-ratng span{font-weight: 500; font-size: 20px;}
  .bookingContnt p{margin: 0;}
  .exceptnl_view{align-items: center;}
  .exceptnl_view .reveStart{display: flex; align-items: center;}
  .exceptnl_view .viewRevic_nmbr {
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    vertical-align: baseline;
    border-radius: 5px 5px 5px 0;
    height: 30px;
    width: 30px;
    min-width: 30px;
    font-size: 15px;
    margin-right: 12px;
  }
  .exceptnl_view .rvwsNme{font-size: 18px; font-weight: 500; margin: 0;}
  .exceptnl_view a{padding-left: 10px; color: var(--secondary); text-decoration: none;}
  .exceptnl_view a:hover{text-decoration: underline;}
  .exceptnl_view .reveStart small.fa-star{font-size: 16px; margin-right: 2px;}
  .exceptnl_view .reveStart small.fa-star.text-grey{color: #b6b6b6;}
  small.fa-star.text-grey{color: #b6b6b6;}
  .individualRating .boxRatin_single{align-items: center; margin-bottom: 0px;}
  .individualRating .boxRatin_single small.fa-star{font-size: 13px; margin-right: 2px;}
  .individualRating .boxRatin_single p{font-size: 13px; color: #6c6c6c; display: flex; align-items: center;}
  .individualRating .boxRatin_single p img{width: 13px; margin-right: 4px;}
  .individualRating .boxRatin_single .pe-3{display: flex;}
  .progresRating p{font-size: 15px; display: flex; align-items: center; margin-bottom: 6px;}
  .progresRating p img{width: 15px; margin-right: 4px;}
  .progresRating .progress-bar{background-color: #f3ab00;}
  /* .progresRating .progress, .progresRating .progress-stacked{--bs-progress-height: 0.75rem;} */
  
  @keyframes fadeInUp {
    from {
      transform: translate3d(0, 30px, 0);
    }
    to {
      transform: translate3d(0, 0, 0);
      opacity: 1;
    }
  }
  @keyframes fadeInDown {
    from {
      transform: translate3d(0, 0, 0);
      opacity: 1;
    }
    to {
      transform: translate3d(0, 20px, 0);
      opacity: 0;
    }
  }
  /* end Css guest drop down */
/* resortDetails Css Start Here */
.width-100{float: left; width: 100%;}
.resortSpecilFeature ul, .resortFac_feat ul{float: left; width: 100%; padding-left: 0;}
.resortSpecilFeature ul li{float: left; list-style: none; width: 19%; border: 1px solid #ededed; float: left; padding: 12px; border-radius: 6px; margin-left: 1.25%; margin-top: 15px;}
.resortSpecilFeature ul li:first-child, .resortSpecilFeature ul li:nth-child(5n+1){margin-left: 0;}
ul li .spclFtrBox{display: flex;justify-content: center;align-items: center;font-size: 14px;}
.spclFtrBox img{width: 22px; margin-right: 6px;}
.resortContentDetl {margin-top: 24px;}
.resortContentDetl p{font-size: 15px;}
.resortFac_feat{margin-top: 20px;}
.resortFac_feat h3{font-size: 18px; font-weight: 600; margin-bottom: 20px;}
.resortFac_feat ul li{list-style-type: none; float: left; margin: 0 24px 22px 0;}
.rigtResortFac_box{background-color:#eff5ff; border-radius: 12px; padding: 15px 18px;}
.rigtResortFac_box .responsiveCaptcha .g-recaptcha{transform: scale(0.70, 0.7) !important;}
.rigtResortFac_box p{font-size: 14px; color: #40639e;}
.bookBtn{float: left; width: 100%; height: 48px; background-color: var(--secondary); color: var(--white);display: flex; align-items: center;justify-content: center;text-decoration: none; font-size: 14px; border-radius: 4px;}
.rigtResortFac_box ul{padding-left: 15px;}
.rigtResortFac_box ul li{list-style-type: disc; font-size: 14px;color: #28477a; font-weight: 500;}
.rigtResortFac_box form input, .rigtResortFac_box form textarea{
  width: 100%;
  height: 36px;
  border: 1px solid #8ca1c5;
  background: #d5e1f7;
  font-size: 14px;
  padding: 4px 8px;
  color: #1d4c99;
  border-radius: 4px;
  margin-bottom: 6px;
}
.rigtResortFac_box form textarea{height: 100px; padding-top: 4px;}
.availvilWrapper h3{font-size: 22px; margin-bottom: 20px;}
.dateFilterRange{float: left;border: 2px solid; padding: 10px 16px; border-color: #60a5e2; border-right: 0px; padding-right: 60px; height: 48px;}
.dateFilterRange img{width: 18px; margin-right: 10px;}
.devider{padding: 0 30px;}
.dateFilterRange .checkDate{font-size: 14px; line-height: 24px;}
.availabilitySrch button.srchButton{height: 48px; border: 1px solid; border-color: var(--secondary); color: var(--white); background-color: var(--secondary); font-size: 14px; width: 150px; border-radius: 0 4px 4px 0;}
.availvilWrapper h4{font-size: 18px; font-weight: 600; margin-bottom: 20px; margin-top: 40px; margin-bottom: 12px;}
.availvilWrapper .filterRoms{display: flex;}
.availvilWrapper .filterRoms p{font-size: 14px; margin: 0 18px 0 0; display: flex;}
.availvilWrapper .filterRoms p input{margin-right: 6px;}
.tableResort_availble{margin-top: 10px;}
.tableResort_availble table tr th{background-color: var(--black); color: var(--white); font-size: 14px; padding: 10px 12px;}
.tableResort_availble table tr th:first-child{width: 300px;}
.tableResort_availble table tr td{border: 1px solid; border-color: #ededed; font-size: 15px;}
.tableResort_availble table tr td.guestInfo p i{margin-right: 6px;}
.tableResort_availble table tr th{border: 1px solid; border-color: #454545; border-top: 0; border-bottom: 0;}
.infoRoomTbl h5{font-size: 16px; color: #004df1; font-weight: 600;}
.tableResort_availble table tr td:last-child{border-bottom: 0; border-top: 0; background-color: #f5f7fa;}
.tableResort_availble table tr:last-child td{border-bottom: 1px solid #ededed;}
.infoRoomTbl label{font-size: 14px; font-weight: 600; margin-bottom: 2px;}
.infoRoomTbl ul{padding-left: 0; margin: 0;}
.infoRoomTbl ul li{list-style-type: none; font-size: 13px; display: flex; margin-bottom: 4px;}
.infoRoomTbl ul li a{text-decoration: none; color: #000;}
.infoRoomTbl ul li input{margin-right: 4px;}
.romsAvliblTbl p{float: left; margin-right: 12px; font-size: 12px;margin-bottom: 4px;}
.romsAvliblTbl p img{width: 12px; margin-right: 5px;}
.resortPricTbl p{margin-bottom: 5px;}
.resortPricTbl p.offPrice{font-size: 12px; text-decoration: line-through; color: red;}
.resortPricTbl p.mainPric{color: #000; font-size: 16px; font-weight: 600; margin-bottom: 2px;}
.resortPricTbl p.notPrc{font-size: 12px; color: var(--grey);}
td.choicePric p{font-size: 13px; color: var(--green);}
td.choicePric p.noRefnd{color: var(--dark)}
td.choicePric p.noRefnd i{font-size: 8px; margin-right: 6px;}
td.choicePric p img{width: 16px; margin-right: 6px;}
.selectTable select{width: 80px; height: 28px; border-color: #c1c1c1; border-radius: 4px;}
.tableResort_availble table tr td .minResrtInfo_prc, .tableResort_availble table tr td .minResrtInfo_prc p, .tableResort_availble table tr td .minResrtInfo_prc span{color: #003185}
.tableResort_availble table tr td .minResrtInfo_prc p.mainRomInf_bk{color: #000;}
th.bookigThead{width: 220px;}
.tableResort_availble tr td ul.listType{padding-left: 0px; list-style: none;}
.tableResort_availble tr td ul.listType li{line-height: 20px; padding: 12px 0; font-size: 14px; border-bottom: 1px solid #ededed; padding-left: 6px;}
.tableResort_availble tr td ul.listType li p{line-height: 20px;font-size: 14px;}
.tableResort_availble tr td ul.listType li:last-child{border-bottom: 0px;}
.overlaySignUpBgNew{-webkit-background-position: 50% 50%; background-position: 50% 50%; -webkit-background-size: cover; background-size: cover;}
td button.bookngResrt{
  height: 48px;
  border: 1px solid;
  border-color: var(--secondary);
  color: var(--white);
  background-color: var(--secondary);
  font-size: 14px;
  width: 150px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tableResort_availble table tr td{border-bottom: 2px solid #bcbcbc;}
.tableResort_availble tr td.roomOpton_bk ul.listType li{padding: 8px 0;}

/* reservationOprion Date */
.input-container input[type="date"],
.input-container input[type="text"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
}

/* INPUT CONTAINER  */
.input-container {
  display:flex;
  flex-direction: column;
  width: auto;
  height: auto;
  min-width: 217px;
  height: 60px;
  padding: 5px 10px 10px 10px;
  background: #fff;
  border-radius: 8px;
  filter: drop-shadow(0px 0px 2px #666);
  -webkit-filter: drop-shadow(0px 0px 2px #666);
  overflow: hidden;
  cursor: pointer;
}
.input-container select, .input-container select:focus, .input-container select:focus-visible, .input-container select:active{background-color: transparent; border: 0px; padding-left: 0; outline: none;}
.input-container label {
  position: relative;
  width: 100%;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0;
  line-height: 20px;
  color: #09f;
  margin-left: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.input-container input {
  position: relative;
  align-items: center;
  width: auto;
  height: auto;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 21px;
  text-transform: uppercase;
  margin-left: 0px;
}

/* BUTTON CONTAINER */
.button-container {
  display:flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 197px;
  height: 65px;
  padding: 1px;
  padding-bottom: 2px;
  background: #09f;
  border-radius: 8px;
  filter: drop-shadow(0px 0px 3px #000);
  -webkit-filter: drop-shadow(0px 0px 3px #000);
  overflow: hidden;
  cursor:pointer;
}
.button-container:hover, 
.button-container:focus {
  background: #09f;
  filter: drop-shadow(0px 0px 3px #09f);
  -webkit-filter: drop-shadow(0px 0px 3px #09f);
}
/* -- button -- */
.button-container .button {
  position: relative;
  width: 100%;
  min-height: 63px;
  height:auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: #fff;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}
.button-container:hover .button:hover  {
  background: #000;
  color: #fff;
}
.button-container:hover .button:active  {
  background: #000;
  color: #fff;
  background: #09f;
  filter: drop-shadow(0px 0px 3px #09f);
  -webkit-filter: drop-shadow(0px 0px 3px #09f);
}
/* -- button ok -- */
.button-container .button.ok {
  background: #131313;
  color: #fff;
}
.button-container:hover .button.ok:hover {
  background: #131313;
}
.button-container:hover .button.ok:active  {
  color: #fff;
  filter: drop-shadow(0px 0px 3px #000);
  -webkit-filter: drop-shadow(0px 0px 3px #000);
}

/* RESERVATION BOX */
.reservation-box {
  display:flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  height: auto;
  padding:0;
  border-radius: 7px;
  background-color: rgba(255,255,255,1);
  
}
.reservation-box .static {
  position:relative;
  display: flex;
  align-items: center;
  float:left;
  width: auto;
  margin-right: 20px;
}
.reservation-box .flex {
  position:relative;
  display: flex;
  float:left;
  flex-direction: table;
  align-items: center;
  gap:20px;
  width:auto;
}
.reservation-box .top {
  display: flex;
  flex-direction: table;
}
.reservation-box .bottom {
  position:relative;
  width: 100%;
  text-align: right; 
}
 
.reservation-box .info {
  width: auto;
  color: #000;
  font-weight:500;
  text-decoration: none;
  text-align: right;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}
.reservation-box .info:hover,
.reservation-box .info:focus,
.reservation-box .info:active {
  color: #000;
  border-bottom: 2px solid #09f;
}

/* RESERVATION BOX SMALL */
.reservation-box.small, .reservation-box.small .flex {
  flex-direction: column;
}
.reservation-box.small .top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.reservation-box.small .static {
  margin-right: 0px;
} 
.reservation-box.small .bottom {
  text-align: center;
}
.reservation-box.small .button-container {min-width: 217px;}

/* ------------ Testkit ------------ */
.test {
  position: absolute;
  top:30px;
  left: 30px;
  width: 66px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #000;
  border-radius: 50%;
  cursor: pointer;
}
.seeMoreTest{justify-content: center;}
.seeMoreTest a{color: var(--white);text-decoration: none;font-size: 14px;}
.seeMoreTest a:hover{color: #e0e8ff;}
.readMore_service{justify-content: center; margin-top: 40px;}
.readMore_service a {
  height: 42px;
  border: 1px solid var(--grey);
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  padding: 0 24px;
  color: var(--grey);
}
h6.reviewerNmc{
  font-weight: 600 !important;
  font-size: 15px;
  margin-bottom: 0;
}
.testimonialsWrapper .alignEnd{justify-content: center;}
.testimonialsWrapper .selectResrtOptn span{
  font-size: 14px;
  color: #434343;
  font-weight: 600;
  margin-right: 8px;
}
.testimonialsWrapper .selectResrtOptn select:focus-visible{outline: none;}
.readMore_service a:hover{color: var(--dark); border-color: var(--dark);}
.test svg {
  rotate: 0deg;
}
.test svg path{
  fill: #000;
}
.test:hover {
  background: rgba(255,255,255,1);
}
.test.small svg {
  rotate: 90deg;
}
.userInfoContent{flex-direction: column;}
.reviewQstn{
  margin-top: 24px;
  float: left;
  width: 100%;
  padding-top: 24px;
  border-top: 2px dashed #dedede;
}
.userInfo{
  width: 60px;
  height: 60px;
  border: 1px solid;
  border-color: var(--offWhite);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #8d8d8d;
  margin-right: 30px;
}
.userInfo.UserImage .imgAvtar{width: 60px; height: 60px;}
.userInfoContent{
  width: calc(100% - 90px);
}
.justify-content-end{justify-content: flex-end;}
.userInfoContent input, .userInfoContent textarea, .userInfoContent select{
  height: 50px;
  border: 1px solid;
  border-color: var(--offWhite);
  border-radius: 4px;
  margin-bottom: 12px;
  box-shadow: none;
  padding-left: 10px;
  padding-right: 10px;
}
.buttonInpt input{
  width: 120px;
  background-color: var(--black);
  color: var(--white);
}
.userInfoContent textarea{height: 150px;}
.userInfoContent input:focus-visible, .userInfoContent textarea:focus-visible{border-color: #000; outline: #000}
.userInfoContent h5{
  font-size: 20px;
  color: var(--secondary);
  margin-bottom: 0;
}
.userInfoContent p{margin-bottom: 0;}
.userInfoContent .inputNmbtRatig input{width: 40%; margin-right: 1%;}
.userInfoContent .inputNmbtRatig select{width: 18%;}
.userInfoContent .ps-2{padding-left: 0 !important;}
.userInfoContent span{font-size: 13px; margin-bottom: 0;}
.userInfoContent .dtInf{margin-top: 5px; color: #9a9a9a; margin-bottom: 6px;}
.userInfoContent .dtInf i{margin-right: 4px;}
.revwTitle{align-items: center;}
.revwTitle .padngLeft_adjst{padding-left: 16px; font-size: 20px; margin-top: -4px;}
/* serviceDetails css */
.serviceDetails{float: left; width: 100%; margin: 40px 0;}
.serviceDetails h1{font-size: 26px; margin-bottom: 20px;display: flex; align-items: center;}
.serviceDetails h1 img{width: 30px; margin-right: 5px;}
.serviceCdtl_content img{width: 375px; float: left; margin: 15px; margin-top: 0; margin-left: 0; border-radius: 6px;}
.serviceCdtl_content p{text-align: justify;}
.serviceCdtl_content .contactUsBox p{text-align: left;}
.columnAllPrice{flex-direction: column;}
.columnAllPrice .priceBeforeDisct, .columnAllPrice .priceAfterDisct .discountPriceCpn, .columnAllPrice .priceAfterDisct .discountAfterFnlPrice{display: flex;width: 100%; justify-content: space-between;}
.columnAllPrice .priceAfterDisct{display: flex; flex-direction: column;width: 100%;}
.columnAllPrice .priceAfterDisct .discountAfterFnlPrice{border-top: 1px solid #696969; margin-top: 8px; padding-top: 8px;}
.columnAllPrice .priceAfterDisct .discountPriceCpn p, .columnAllPrice .priceAfterDisct .discountPriceCpn label{font-size: 14px;color: #999999;}

/* contact US page */
.contactUsBox{
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 32px;
  padding-bottom: 32px;
  border: 1px solid;
  border-color: #E8E8E8;
  cursor: pointer;
  background-color: transparent;
  border-radius: 12px;
  max-width: 100%;
  width: 100%;
  height: 100%;
}
.serviceCdtl_content .descriptinTitl{margin-bottom: 0;}
.contactUsBox .titlrCntct img{width: 75px; margin: 0;}
.contactUsBox .titlrCntct{align-items: center; margin-bottom: 24px;}
.contactUsBox .titlrCntct span{font-size: 22px; font-weight: 500; padding-left: 10px}
.emailLnk{margin-top: 30px; }
.emailLnk a{text-decoration: none; color: var(--secondary); display: flex; align-items: center;}
.emailLnk a img{width: 14px;  margin: 0; margin-left: 5px; transition: all 0.3s;}
.emailLnk a:hover img{margin-left: 12px; transition: all 0.3s;}
.rightContectBox form{flex-direction: column;}
.rightContectBox h2{font-size: 20px; color: var(--secondary);}
.rightContectBox p{color: #666666; font-size: 14px;}
.rightContectBox form input, .rightContectBox form textarea{height: 38px; border: 1px solid; padding-left: 8px; padding-right: 8px; border-color: var(--offWhite); border-radius: 4px; margin-bottom: 8px;}
.rightContectBox form input:focus-visible, .rightContectBox form textarea:focus-visible{border-color: #000; outline: #000}
.rightContectBox form textarea{height: 80px;}
.rightContectBox form button.submtBtn{
  height: 52px;
  font-size: 14px;
  background: #000;
  border-color: #000;
}
.UserForm .form-floating label.error{
  transform: scale(1);
  padding: 0;
  position: relative;
  font-size: 12px;
  color: red;
}
.UserForm.singUpform h1{margin-bottom: 6px;}
.UserForm.singUpform .alredyAccnt{color: #666666;}
.UserForm.singUpform .alredyAccnt a{color: var(--secondary); text-decoration: none;}
.d-flexBlogContnt{margin-bottom: 0; padding-bottom: 25px; border-bottom: 1px solid; border-bottom-color: var(--offWhite);}
.d-flexBlogContnt .contntBlogText{width: 70%; padding-right: 24px;}
.d-flexBlogContnt a{display: flex; text-decoration: none;}
.d-flexBlogContnt a h1{color: #000;}
.d-flexBlogContnt a:hover h1{color: var(--secondary);}
.d-flexBlogContnt .contntBlogImg{width: 30%;}
.d-flexBlogContnt .contntBlogImg img{
  width: 100%;
  object-fit: cover;
  height: auto;
  border-radius: 4px;
}
.d-flexBlogContnt .contntBlogText .dateBlogDt{
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #6F6F6F;
}
.serviceDetails .d-flexBlogContnt h1{
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 22px;
  margin-bottom: 10px;
}
.serviceDetails .d-flexBlogContnt .blogCntntShort{
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.serviceDetails .d-flexBlogContnt .blogCntntShort p{color: #666; margin-bottom: 0;}
.d-flexBlogContnt .serviceCdtl_content img{width: 700px;}
.publishContent {
  width: 100%;
  display: flex;
  flex-direction: row;
  float: left;
  margin-top: 10px;
}
.publishContent p {
  margin: 0;
  font-size: 14px;
  color: #878787;
  margin: 0;
}
.publishContent img {
  height: 20px;
  margin-right: 5px;
  width: auto;
}
.blogListContent_dtls .breadcrumb-item + .breadcrumb-item::before{color: #b1b1b1;}
.publishContent span{font-size: 14px;margin-left: 10px;}
.serviceDetails .d-flexBlogContnt h1.blogMainTile{margin: 0; margin-top: 10px; margin-bottom: 20px;}
.d-flexBlogContnt.blogMnDetail{border-bottom: 0px solid;}
.bg-info.footerDark{background-color: #0d0b0b !important;}
.bg-info.footerDark a img{
  width: 165px;
  margin-bottom: 15px;
}
.helpContent_dtls h1{font-size: 22px; margin-bottom: 12px;}
.helpContent_dtls .accordion-button:focus{box-shadow: none;}
.helpContent_dtls .accordion-button:not(.collapsed){background-color: #757575; color: var(--white);}
.helpContent_dtls .accordion-button:not(.collapsed)::after{filter: brightness(0.5) invert(1);}
.helpContent_dtls .accordion{margin-bottom: 24px;}
.subscriptionCnew{display: flex; justify-content: center; padding: 50px 0 40px;}
.subscriptionCnew .signUpCol{height: auto; }
.footerSubscribeNow_btn{
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.footerSubscribeNow_btn a{
  height: 52px;
  display: flex;
  align-items: center;
  font-size: 14px;
}
.resortRuleOverVw{margin-top: 24px;}
.descriptionsContainer{ border: 1px solid; border-color: #d9d9d9; padding: 20px; border-radius: 8px; margin-bottom: 40px;}
.titleCont p img{margin-right: 10px; width: 20px;}
.titleCont p{font-weight: 600; font-size: 14px;}
.titleContDescriptn p{font-size: 14px; margin-bottom: 10px;}
.ruleResrtBox{border-top: 1px solid;  border-color: #d9d9d9; padding-bottom: 0; margin-top: 12px;}
.resortRuleOverVw .ruleResrtBox:first-child{border-top: 0px solid; margin-top: 0;} 
.resortRuleOverVw .ruleResrtBox:last-child{padding-bottom: 0;}
.photos-grid-container.fourColumnGrd{grid-template-columns: inherit; margin-bottom: 30px;}
.photos-grid-container.fourColumnGrd .sub.gridContainer{grid-template-columns: repeat(4, 1fr);}
.photos-grid-container.fourColumnGrd.withTwoClmnVdo .sub.gridContainer{grid-template-columns: repeat(2, 1fr);}
.photos-grid-container.fourColumnGrd.withTwoClmnVdo .sub:nth-child(1){grid-column: 1;}
.mainGallaryHead{justify-content: space-between; align-items: center;}
.mainGallaryHead .selectResrtOptn {
  min-width: 200px;
  height: 34px;
  overflow: hidden;
  overflow: -moz-hidden-unscrollable;
  background: url(../img/arrowDown.svg) no-repeat right white;
  border: 1px solid #e3e3e3;
  display: inline-block;
  position: relative;
  border-radius: 24px;
  background-size: 18px;
  background-position-x: 172px;
}

.mainGallaryHead .selectResrtOptn select {
  background: transparent;
  -webkit-appearance: none;
  min-width: 200px;
  font-size: 14px;
  border: 0;
  height: 34px;
  position: absolute;
  left: 0;
  top: 0;
  padding-right: 20px;
  padding-left: 15px;
}
.mainGallaryHead .selectResrtOptn select:focus-visible{
  border: 1px solid #e3e3e3;
  outline: none;
}
.selectResrtOptn select{
  height: 34px;
  padding: 0 30px 0 10px;
  font-size: 14px;
  border-radius: 20px;
}
.img-box.video{min-height: inherit; height: 410px;overflow: hidden;}
.img-box.video .btn-play {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 24px;
  height: 36px;
  border-radius: 50%;
  border: none;
  outline: none;
  padding: 18px 20px 18px 28px;
  background: #e63b3b;
}
.img-box.video .btn-play:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100px;
  height: 100px;
  background: #e63b3b;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}
.img-box.video .btn-play:after{
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100px;
  height: 100px;
  background: #e63b3b;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}
.img-box.video .btn-play span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 22px solid #ffffff;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-radius: 3px;
}
.photos-grid-container.withTwoClmnVdo img{width: 100%;height: 410px; object-fit: cover;}
.dahsBordProfle{align-items: center;}
.dahsBordProfle p{margin-bottom: 0; padding-left: 15px; font-size: 20px; font-weight: 500; color: #656565;}
.dahsBordProfle .infoImage_acct{width: 50px; padding-right: 0;}
.dahsBordProfle .infoImage_acct .imgAvtar{width: 50px; height: 50px;}
.blogListContent_dtls .breadcrumb{margin-bottom: 30px;}

/* collapseCss Start here testimonials */
.testimonialsWrapper{margin: 40px 0 60px;}
.testimonialsWrapper.mrgnAdjust{margin: 12px 0 0;}
.module {position: relative;}
.module .collapse, .module .collapsing { height: 7rem;}
.cntntDscreptn .module .collapse, .cntntDscreptn .module .collapsing{height: 4rem; display: flex;}
.module .collapse { display: block;overflow: hidden;}
.module .collapse.show {height: auto;}
.read-more {
  opacity: 1;
  transition: all .3s linear;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background-image: linear-gradient(to bottom, transparent 60%, white);
}
.read-more:not(.collapsed) {opacity: 0;}
.module { position: relative;}
.module .collapse, .module .collapsing { height: 7rem}
.module .collapse {
  display: block;
  overflow: hidden;
}
.module .collapse.show {height: auto;}
.read-more {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background-image: linear-gradient(to bottom, transparent 60%, white);
  opacity: 1;
  transition: all .3s linear;
}
.read-more:not(.collapsed) {opacity: 0;}
.testimonialsWrapper .testimonlsBox{}
.usrTestmnlImage{display: block; float: left; width: 100px;height: 100px; overflow: hidden; border-radius: 50%; margin-right: 20px;}
.usrTestmnlImage img{object-fit: cover; width: 100%; height: 100%;}
.testContntText{width: calc(100% - 120px); float: left; border: 1px solid; border-color: var(--offWhite); padding: 16px; border-radius: 8px;}
.cntntDscreptn .testContntText{width: 100%; border: 0; padding: 0;}
.cntntDscreptn .testContntText .module .collapse{flex-direction: column; position: relative; padding-right: 40px;}
.cntntDscreptn .testContntText .module .collapse.show{flex-direction: column;}
.collpseDwonarrwo{position: absolute;right: 0; padding: 0;}
.testContntText h3{font-size: 18px; font-weight: 600;}
.testContntText p{color: var(--grey); font-size: 14px;}
.testContntText p:last-child{margin-bottom: 0;}
.successWrapper h5{color: #000;}
.successWrapper{width: 500px;}
.successWrapper img{width: 110px; margin: 0 0 30px;}
.responsiveCaptcha .g-recaptcha{margin-left: -44px !important;}
.testContntText .rvwrName {margin-bottom: 8px;}
.testContntText .rvwrName p{font-size: 12px; color: var(--primary);}
.testContntText .rvwrName p span{padding-left: 6px; color: #848484;}
.activitiesWrapper .grid figcaption a{color: var(--white); text-decoration: none;}
/* allResortFilter Page Css strt here */
.accountManager{margin: 40px 0;}
.accountManager.mrgnTop_Hide{margin-top: 0;}
.accountManager.mrgnTop_Hide .accountDetails.paddingHide{padding-top: 0;}
.filterActmnu .leftFilterRsrt .accountList{
  border: 1px solid;
  border-color: var(--offWhite);
  border-radius: 8px;
  padding: 0;
  position: sticky;
  top: 16px;
}
.accountList .fltrTitle{padding: 10px 12px;  border-bottom: 2px double; border-color: var(--lightGrey); margin-bottom: 10px;}
.accountList .fltrTitle h2{font-size: 16px; color: var(--dark); margin-bottom: 0; font-size: 14px;}
.filterRsrt_catgry{padding: 0 12px;}
/* .filterRsrt_catgry .filterLst{display: flex; justify-content: space-between; padding: 10px 0; align-items: center; border-bottom: 1px solid; border-color: var(--offWhite);} */
.filterRsrt_catgry .filterLst{display: flex; justify-content: space-between; padding: 6px 0; align-items: center;}
.filterRsrt_catgry .filterLst.fclityBx{border-top: 1px solid; border-bottom: 1px solid var(--offWhite) !important; border-color: var(--offWhite); margin: 8px 0 ;display: block; padding: 10px 0;}
.filterRsrt_catgry .filterLst.brderBtmGrey{border-bottom: 1px solid var(--offWhite) !important; padding-bottom: 10px; margin-bottom: 8px;}
.fciltyLstChk{display: flex; flex-direction: column;}
.fciltyLstChk span{font-size: 13px; color: var(--black); display: flex; align-items: center; padding: 3px 0;}
.fciltyLstChk span input{margin-right: 6px;}
.filterRsrt_catgry .filterLst.fclityBx p.facilityTitl{margin-bottom: 10px;}
.filterRsrt_catgry .filterLst:last-child{border-bottom: 0px solid;}
.selectOptn{
  min-width: 165px;
  height: 30px;
  overflow: hidden;
  overflow: -moz-hidden-unscrollable;
  background: url(../img/arrowDown.svg) no-repeat right white;
  border: 1px solid #e3e3e3;
  display: inline-block;
  position: relative;
  border-radius: 4px;
  background-size: 16px;
  background-position-x: 144px;
}
.selectOptn select:focus-visible{outline: none;}
.selectOptn select{
  background: transparent;
  -webkit-appearance: none;
  min-width: 165px;
  font-size: 13px;
  border: 0;
  height: 30px;
  position: absolute;
  left: 0;
  top: 0;
  padding-right: 24px;
  padding-left: 10px;
  color: var(--black);
  overflow: hidden !important;
  max-width: 136px;
}
.filterLst p{
  font-size: 13px;
  letter-spacing: -0.25px;
  margin: 0;
  color: #5a5a5a;
}
.filterLst .radioOptn span{font-size: 13px;color: var(--black); display: flex; align-items: center; margin-left: 12px;}
.filterLst .radioOptn span input{margin-right: 4px;position: inherit;}
.filtrBtn{margin: 12px 0;}
.filtrBtn button{height: 52px; background-color: var(--dark); color: var(--white); font-size: 14px; border: 1px solid var(--dark) !important;}
.filtrBtn button:hover{color: var(--dark);}
.mainCntntBox, .listResortvalue{padding: 10px 12px;}
.mainCntntBox .mbViw_imgBx{display: none;}
.rsrtNmeMn h1{font-size: 16px;font-weight: 700; margin-bottom: 4px; color: var(--black); transition: all 0.3s;}
.rsrtNmeMn p.mapPointer{font-size: 12px; color: var(--lightGrey); margin-bottom: 8px; transition: all 0.3s;}
.rsrtNmeMn p.mapPointer img{width: 10px; margin-right: 4px;}
.rightPrcDetl_lsit{border-left: 1px solid; background-color: #f8f8f8; border-color: var(--offWhite);display: flex; flex-direction: column; justify-content: center; align-items: center;}
.shortDes_list{
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.shortDes_list p{font-size: 14px; color: var(--grey);transition: all 0.3s;}
.resortList_dFlex{height: 100%;}
.rightPrcDetl_lsit .listResortvalue{padding-left: 0;}
.rightPrcDetl_lsit .listResortvalue h3{font-size: 10px; color: var(--lightGrey); font-weight: 300;}
.listResortvalue .resortPricTbl p.offPrice{margin-bottom: 0;}
.listResortvalue .resortPricTbl p.mainPric{font-size: 15px;}
.listResortvalue .resortPricTbl p.notPrc{color: var(--green); font-size: 12px; opacity: 0.7; text-transform: uppercase;}
.revwBx_RsrtList{width: 100%; margin-bottom: 15px;padding-right: 12px; padding-top: 10px;}
.revwBx_RsrtList p{font-size: 12px; margin: 0; font-weight: 600; color: var(--dark);}
.revwBx_RsrtList p span{font-size: 10px;color: var(--grey);letter-spacing: -0.5px;font-weight: 300; padding-left: 4px;}
.revwBx_RsrtList span.nmbrRating{
  width: 22px;
    height: 22px;
    background: var(--primary);
    color: #fff;
    font-size: 9px;
    justify-content: center;
    display: flex;
    align-items: center;
    border-radius: 12px 12px 12px 0;
}
.rsrtNmeMn .faciltyBx_lst{flex-wrap: wrap;}
.faciltyBx_lst span{
  border: 1px solid;
    font-size: 10px;
    color: #3c3c3c;
    padding: 0 8px;
    height: 22px;
    display: flex;
    align-items: center;
    margin-right: 8px;
    border-radius: 4px;
    border-color:  var(--lightGrey);
    font-weight: 300;
    letter-spacing: -0.35px;
    text-wrap: nowrap;
    margin-bottom: 6px;
}
.bookingInfo_box a{text-decoration: none; margin-bottom: 12px;}
.bookingInfo_box a:hover .shortDes_list p, .bookingInfo_box a:hover .rsrtNmeMn p.mapPointer{color: var(--dark); transition: all 0.3s;}
.bookingInfo_box a:hover .rsrtNmeMn h1{color: var(--secondary); transition: all 0.3s;}
.room-item.shadow{
  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 6px 0px !important;
}
.shortDes_list div{font-size: 14px; color: #000; transition: all 0.3s;}
.MobVw{display: none;}
.accountList.MobVw{justify-content: space-between; align-items: center;}
.accountList.MobVw button{width: 30px; padding: 0; outline: none !important; border: 0 !important;}
.accountList.MobVw h2{margin-bottom: 0;}
.accountList.MobVw button img{width: 20px;}
.modal-body .filterRsrt_catgry{padding: 0;}
.filterModal .modal-header{padding-top: 12px; padding-bottom: 12px;}
.filterModal .modal-header h5{font-size: 16px;}
.modal-dialog {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1050;
}
.modal-content {
  margin-top: auto;
  margin-bottom: 0;
  border-radius: 0;
}
.modal-content {
  margin-top: auto;
  border-radius: 8px 8px 0 0;
}
.filterOptionContnt{overflow-y: scroll; height: 60vh; padding-bottom: 72px;}
.filterModal .modal-body .filtrBtn{
  position: fixed;
  bottom: 0;
  width: 100%;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 6px 0px !important;
  margin: 0;
  padding: 10px 0;
  background: #fff;
}
.filterModal .modal-body .filtrBtn button{
  width: calc(100% - 32px) !important;
}
.paginationWrapper{justify-content: flex-end !important;}
.paginationWrapper .pagination li a{color: var(--dark); height: 30px;padding: 4px 12px;font-size: 14px;}
.resrtNme{margin-top: 16px;}
.resrtNme p{margin: 0;font-size: 12px;color: #353535 !important;font-weight: 300;}
.resrtNme p span{font-weight: 500; color: var(--dark);}
.galryVdo_mapWrpr{margin-bottom: 40px;}
.vdoWrpr .video, .mapWrpr .video{min-height: 375px; max-height: 375px; border-radius: 12px; overflow: hidden;}
.avilabletyFtre ul{border: 1px solid #ededed; border-radius: 6px; display: flex; flex-wrap: wrap; padding: 6px 10px;}
.avilabletyFtre ul li{width: auto; list-style-type: none;}
.avilabletyFtre ul li p{margin: 0; color: var(--lightGrey); font-size: 13px; line-height: 28px; padding-right: 30px;}
.avilabletyFtre ul li p span{color: var(--dark); font-weight: 500; }
.avilabletyFtre ul li .spclFtrBox{justify-content: left; flex-wrap: wrap;}
.collpseDwonarrwo img.upArrow{width: 18px; display: none;}
.collapse.show .collpseDwonarrwo img{opacity: 0.6;}
.collapse.show .collpseDwonarrwo img.upArrow{display: block;}
.collapse.show .collpseDwonarrwo img.downArrow{display: none;}
.collpseDwonarrwo{border-left: 1px solid #d9d9d9; padding-left: 10px; align-items: center; display: flex; width: 40px;}

.tableResort_availble .guestHead ul{display: flex; flex-direction: row; margin-bottom: 0; padding: 0;}
.tableResort_availble .guestHead ul li{list-style-type: none;}
.tableResort_availble .guestHead ul li.theadlist{width: 22%; text-wrap: nowrap; text-align: left;}
.tableResort_availble .guestHead ul li{text-wrap: nowrap; text-align: left; width: 100%; padding: 0 10px;}
.tableResort_availble tr td .guestHead ul li{display: flex; flex-direction: row; padding: 0; align-items: center;}
.tableResort_availble tr td .guestHead ul li .iptnTlist{width: 22%; text-wrap: wrap; text-align: left; padding: 0 10px;}
.tableResort_availble tr td .guestHead ul li .iptnTlist p{margin-bottom: 0; font-size: 13px;}
.tableResort_availble .guestHead ul li.theadlist.accomd,  .tableResort_availble tr td .guestHead ul li .iptnTlist.accomd{width: 32%;}
.tableResort_availble .guestHead ul li.theadlist.priceHd, .tableResort_availble tr td .guestHead ul li .iptnTlist.priceHd{width: 24%;}
.tableResort_availble tr td .guestHead ul li .iptnTlist.priceHd p{font-weight: 600;}
.tableResort_availble tr td .guestHead .selectTable select{font-size: 13px;}
.tableResort_availble tr td .guestHead ul{border-bottom: 1px solid;  border-color: var(--offWhite);}
.tableResort_availble tr td .guestHead ul:last-child{border-bottom: 0px;}
.tableResort_availble tr td .guestHead ul li .iptnTlist{padding: 10px; border-right: 1px solid; border-color: var(--offWhite);}
.tableResort_availble tr td .guestHead ul li .iptnTlist:last-child{border-right: 0px;}
/* checkOut Css Start here */
.borderChkot{border: 1px solid; border-color: var(--offWhite); padding: 12px; border-radius: 8px;}
.infoUserdtl .imgAvtar{height: 50px; width: 50px; border: 2px solid var(--secondary);border-radius: 50%;}
.usrInfoCntnt{flex-direction: column; padding-left: 16px;}
.usrInfoCntnt p{margin-bottom: 0; font-size: 14px;}
.usrInfoCntnt a{font-size: 12px; color: var(--secondary); text-decoration: none;}
.usrInfoCntnt a:hover{color: var(--dark);}
.leadName{border-top: 1px solid;  border-color: var(--offWhite);}
.checkResort h4{font-size: 18px; color: var(--dark); margin-bottom: 16px;}
.nameLeadGst{flex-direction: column;}
.nameLeadGst p, .nameLeadGst a{margin: 0; color: var(--grey); font-size: 14px; text-decoration: none;}
.nameLeadGst i{margin-right: 8px; opacity: 0.6; font-size: 12px;color: #000;}
.editLeadWrpr button{font-size: 10px; background-color: transparent; color: var(--secondary); height: 22px; border: 1px solid; padding: 0 10px; border-radius: 16px;}
.nameLeadGst_editInfo form, .nameLeadGst_editInfo{display: flex; flex-direction: column;}
.nameLeadGst_editInfo input{font-size: 13px; color: var(--dark); margin-bottom: 8px; border: 1px solid var(--lightGrey); height: 30px; border-radius: 4px; padding: 0 8px;}
.nameLeadGst_editInfo  button{height: 40px; background-color: var(--secondary); color: var(--white); border: 1px solid var(--secondary); border-radius: 6px; font-size: 14px;}
.spclReqstWrpr p{font-size: 13px; color: var(--dark);}
.spclReqstTextarea p{color: var(--grey); margin-bottom: 4px;}
.spclReqstTextarea p span{color: var(--lightGrey);}
.spclReqstTextarea textarea{width: 100%;font-size: 13px; color: var(--dark); margin-bottom: 8px; border: 1px solid var(--lightGrey);  border-radius: 4px; padding: 0 8px;}
.arrivlTimeWrpr p, .optionChosArivl label{font-size: 14px; color: var(--dark);}
.arrivlTimeWrpr p img{margin-right: 10px;}
.optionChosArivl label span{color: red;}
.optionChosArivl label.bui-form__label{font-weight: 600;}
.formSelect {
  --bs-form-select-bg-img: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e);
  display: block;
  padding: .375rem 2.25rem .375rem .75rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  background-color: transparent;
  background-image: url('../img/arrowDown.svg');
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: 18px 18px;
  border: 1px solid var(--lightGrey);
  border-radius: 4px;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 14px;
}
.formSelect:focus-visible{outline: none; border-width: 1px;}
.emergncyInfo{background: #cbd7e2; padding: 10px; margin-top: 16px; border-radius: 6px;}
.emergncyInfo span{font-size: 14px; color: var(--dark); width: 200px; font-weight: 600;}
.emergncyInfo .infoInput{margin-bottom: 8px;}
.emergncyInfo .infoInput:last-child{margin-bottom: 0;}
.emergncyInfo .infoInput input{font-size: 13px; color: var(--dark);  border: 0 solid var(--lightGrey); height: 30px; border-radius: 4px; padding: 0 8px; width: calc(100% - 210px);}
.mainCheckResort_details .faciltyBx_lst span img{width: 12px; margin-right: 5px;}
.mainCheckResort_details .faciltyBx_lst {flex-wrap: wrap;}
.mainCheckResort_details .mainCntntBox{padding: 0; margin-bottom: 24px;}
.mainCheckResort_details .faciltyBx_lst span {margin-bottom: 8px;}
.bookinfInfoChout .chkinBx{padding-right: 30px; margin-right: 30px;}
.bookinfInfoChout p{color: var(--lightGrey);}
.bookinfInfoChout span{font-size: 16px; font-weight: 700;}
.bookinfInfoChout .chkinBx, .bookinfInfoChout  .chkOutBx{flex-direction: column; display: flex;}
.bookinfInfoChout .chkinBx .f-12, .bookinfInfoChout .chkOutBx .f-12{font-size: 12px;}
.bookinfInfoChout .chkinBx{border-right: 1px solid var(--offWhite);}
.accomdatnDtls p{font-size: 14px;}
.accomdatnDtls p span{padding-left: 10px; color: var(--lightGrey); font-size: 13px;}
.priceInfoDtl{background-color: #000; padding: 14px 12px; border-radius: 4px; display: flex; justify-content: space-between; align-items: center; border: 2px solid transparent;}
.priceInfoDtl p, .priceInfoDtl label{color: var(--white); margin: 0;}
.priceInfoDtl p{font-size: 16px; font-weight: 300;}
.priceInfoDtl label{font-size: 18px; font-weight: 600;}
.priceInfoDtl .taxIncldPrice{display: flex; flex-direction: column;}
.priceInfoDtl .taxIncldPrice span{color: var(--lightGrey); font-size: 12px;}
.priceInfoDtl.priceInfoDtl_bgwight {background: var(--white); border: 2px solid #000; color: #000;}
.priceInfoDtl.priceInfoDtl_bgwight p, .priceInfoDtl.priceInfoDtl_bgwight label{color: var(--black);}
.cuponCodeborder {
  margin-bottom: 10px;
  width: 100%;
  padding: 2px;
  border: 2px dashed #cac9c9;
}
.cuponCodeborder p {
  width: 100%;
  font-style: italic;
  margin: 0;
  font-size: 12px;
  color: #6c6c6c;
}
.applyCuponCode {
  width: 100%;
  padding: 9px 10px;
  background: #e8e8e8;
}
.applyCuponCode label.couponType {
  width: 120px;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  margin: 4px 0 0;
}
.applyCuponCode .couponInput {
  width: calc(100% - 120px);
  position: relative;
}
.applyCuponCode .couponInput input {
  width: 100%;
  height: 34px;
  border-radius: 2px;
  border: 1px solid #cacaca;
  padding: 0 12px;
  padding-right: 12px;
  color: #595959;
  padding-right: 90px;
  font-size: 14px;
}
.couponInput button{
  position: absolute;
  right: 3px;
  top: 3px;
  height: 28px;
  border: 0 solid;
}
.couponInput button.applyBtn{
  padding: 0 12px;
  border-radius: 2px;
  background: #515151;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  color: #fff;
  line-height: 28px;
  font-size: 12px;
}
.couponInput button.clseIocn{background: transparent; display: flex; align-items: center;}
.couponInput button.clseIocn img{width: 14px;}
.paymentMthod ul{padding-left: 0;}
.paymentMthod ul li {margin-bottom: 4px;}
.paymentMthod ul li input{margin-right: 6px; margin:0 6px 0 0; align-items: center; display: flex;}
.paymentMthod ul li span{font-size: 13px;}
.booklinBtnWrapper .bookingBtnNow{
  height: 54px;
  width: auto;
  padding: 0 24px;
  border-radius: 4px;
  border: 0px;
  background: var(--secondary);
  color: var(--white);
  font-size: 16px;
}
.messageBknot p{font-size: 14px; color: #000; margin: 0; font-weight: 600;}
.tableResort_availble table tr td.notavailable{background-color: transparent !important; background: transparent !important;}
.reservation-box.dateoptnSelect .input-container{border: 1px solid; border-radius: 4px; border-color: #cad3da; padding: 0; position: relative;}
.reservation-box.dateoptnSelect .input-container button{position: absolute; right: 0; border: 0px solid; background: transparent; padding: 0; top: 15px;}
.reservation-box.dateoptnSelect .static{margin-right: 5px;}
.reservation-box.dateoptnSelect .input-container input{font-size: 14px; font-weight: 400; padding-left: 4px;}
.reservation-box.dateoptnSelect .dateFilterRange img{margin-right: 4px;}
.reservation-box.dateoptnSelect .input-container label{margin-left: 5px;}
.reservation-box.dateoptnSelect.indexrSrch .input-container{padding: 5px;}
.reservation-box.dateoptnSelect.indexrSrch .input-container button{top: 24px;right: 8px;}
.reservation-box.dateoptnSelect.indexrSrch.alignCenter{align-items: center;}
.reservation-box.dateoptnSelect.indexrSrch form.top{flex-direction: column;}
.optionChoose{display: flex;font-size: 14px;padding: 6px 16px;}
.optionChoose p{margin: 0; display: flex; align-items: center;margin-right: 12px; text-wrap: nowrap;}
.optionChoose p input{margin-right: 5px;}
.booking .bookingContainr.homeSrch{padding: 0;}
.homeSrch .reservation-box{background-color: transparent; align-items: center;}
.homeSrch .reservation-box form.top{background-color: var(--offWhite); border-radius: 6px;box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .35) !important;}
.optinCheckRsrt{padding: 0 12px 8px;}
.homeSrch .button-container{height: 60px;}
.homeSrch .button-container .button {min-height: 58px;border-radius: 8px;}
.bookingSrch .homeSrch .reservation-box form.top{box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;background-color: var(--white) !important; border: 1px solid var(--offWhite); margin-bottom: 16px;}
/* bookingSuccess css */
.greyBacg{background-color: #f4f4f6;}
.greyBacg .bookingSuccss .mainCheckResort_details{background-color: var(--white); border-width: 0px; padding-bottom: 0;}
.botomBrdr{background-image: url(../img/cutBtmborder.jpg); background-repeat: repeat; position: relative; width: 100%; height: 25px;}
.greyBacg .bookingSuccss .mainCheckResort_details h5{font-weight: 500; color: var(--dark);}
.mainCheckResort_details .yrBookinDtls h4.nameRsrt{font-weight: bold;}
.mainCheckResort_details .yrBookinDtls p.bookingID{color: var(--grey); font-weight: 300;}
.mainCheckResort_details .yrBookinDtls p.bookingID span{color: var(--dark); font-weight: 500;}
.mainCheckResort_details .bookinfInfoChout span{font-size: 14px;}
.payAmtMethod{text-align: right;}
.payAmtMethod p{font-size: 12px; letter-spacing: -0.2px;color: var(--lightGrey);}
.payAmtMethod p span{color: var(--white); font-weight: 500;}
.successCntnt{display: flex;flex-direction: column; height: 100%;justify-content: center; padding-right: 60px;}
.successCntnt h1{font-weight: 500; margin-bottom: 18px;}
.successCntnt p{color: var(--lightGrey); font-size: 14px;}
.coLogo img{height: 45px; margin-bottom: 20px;}
.successCntnt .leftIcon{text-decoration: none; display: flex;align-items: center;}
.successCntnt .leftIcon img{margin-right: 8px; width: 16px; transform: rotate(180deg);}
/* .bookingSuccss{height: 100Vh;} */
.bookingSuccss .successDetialPmnt{display: flex !important; justify-content: center; height: 100%; flex-direction: column;}
/* scrollBar CSs strt here */
.content-wrap {
  height: 312px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0;
  /* for firefox*/
  scrollbar-width: thin;
  scrollbar-color: #111 #ddd;
}
.reviewWraper_side .content-wrap{height: 94vh;}
.forgtBtn_toggle{
  font-size: 14px;
  margin-top: 8px;
  cursor: pointer;
}
.sbmtBtn.spaceBetwen{justify-content: space-between; align-items: center;}
.sbmtBtn.spaceBetwen .backBtn_toggle{margin: 0;font-size: 18px; cursor: pointer;}
.sbmtBtn.spaceBetwen .backBtn_toggle img{height: 18px; margin-right: 6px;}
.UserForm .sbmtBtn.spaceBetwen button{margin-top: 10px;}
/* for other browsers */
.without-plugin .content-wrap::-webkit-scrollbar {
  width: 6px;
  background-color: #ccc;
  border-radius: 20px;
}
.without-plugin .content-wrap::-webkit-scrollbar-thumb {
  background-color: #111;
  border-radius: 20px;
}
.with-plugin .content-wrap {
  padding-right: 6px;
}
.mCSB_inside > .mCSB_container {
  margin-right: 12px;
}
.mCSB_scrollTools {
  width: 6px;
}
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #111;
}
.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #ccc;
}
.filterRsrt_catgry {
  padding: 0 0 0 12px;
}
/* New Srch Form css strt */
.bannerPromo_wraper .imgPro_banner{border-radius: 8px; overflow: hidden;}
.srchForm{width: 100%; z-index: 99;padding: 0;}
.carousel-inner .carousel-item h1.display-5{font-weight: 500; text-shadow: 1px 1px #000000;}
.carousel-caption{background: #0f172b70}
.optionChoose p label span{color: #fff; font-weight: 300}
.optinCheckRsrt.bnrIncld .input-container{flex-direction: row;height: auto; border-radius: 0;filter: none; align-items: center; cursor: default; padding-top: 7px; padding-bottom: 8px;}
.optinCheckRsrt.bnrIncld .input-container .datePickerBx{position: relative;}
.optinCheckRsrt.bnrIncld .static:first-child {border-right: 0px solid #e3e3e3; border-radius: 4px 0px 0 4px;}
.optinCheckRsrt.bnrIncld .static:first-child .input-container{border-radius: 4px 0 0 4px;}
.optinCheckRsrt.bnrIncld .input-container .datePickerBx input{font-size: 13px; padding-left: 15px;}
.optinCheckRsrt.bnrIncld .input-container .datePickerBx button{width: 100%; background: transparent; height: 35px;position: absolute; left: 0; border: 0;}
.optinCheckRsrt.bnrIncld .input-container .datePickerBx button img{display: none;}
.optinCheckRsrt.bnrIncld .input-container label{text-transform: none; font-size: 13px; font-weight: 400;color: #fea116;display: flex; align-items: center;}
.optinCheckRsrt.bnrIncld .input-container label img{width: 16px; opacity: 0.5; margin-right: 5px;}
.optinCheckRsrt.bnrIncld .input-container .datePickerBx label.error{position: absolute; z-index: 9999; font-size: 10px; color: red; bottom: -12px; left: 13px;}
.optinCheckRsrt.bnrIncld .button-container{height: 42px; border-left: 0; border-radius: 0 4px 4px 0; border: 1px solid; min-width: 128px;filter: none; background: #fea116; border-left: 0px solid;}
.optinCheckRsrt.bnrIncld .button-container button{min-height: 38px; border-radius: 0 3px 3px 0;font-weight: 500; text-transform: capitalize;letter-spacing: 0.2px; border: 0px solid;}
.optinCheckRsrt.bnrIncld .button-container:hover, .optinCheckRsrt.bnrIncld .button-container:focus{filter: none}
.optinCheckRsrt.bnrIncld .button-container:hover .button.ok:hover{text-shadow:none;}
.bannerPromo_wraper .newHeadText .section-title, .bannerPromo_wraper .newHeadText .subHeadingResrt, .subHeadingResrt p{color: #fff;}
.bannerPromo_wraper .newHeadText .section-title::after, .bannerPromo_wraper .newHeadText .section-title::before{background: #fff;}
.bannerPromo_wraper .blogWrapperCenter, .blogWrapper.centerAlign_mainBox{justify-content: center;}
/* .optinCheckRsrt.borderStyle{border:1px solid var(--lightGrey); border-radius: 4px;} */
.optinCheckRsrt.bnrIncld.borderStyle .button-container button{min-height: 40px;}
.optinCheckRsrt.bnrIncld.borderStyle .button-container{padding: 0;}
.optionChoose p label span.darkText{color: #000;}
.bookingSrch .formSrch form{display: flex;}
.availabilitySrch .autoWidth{width: auto;}
.paginationField{display: flex; justify-content: flex-end;}
.rmaboutPnl{padding-bottom: 0 !important;}

/* reviewewCss Strt Augst */
.blurBackg{
  --bs-backdrop-zindex: 1050;
    --bs-backdrop-bg: #000;
    --bs-backdrop-opacity: 0.5;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    opacity: 0.5;
}
.reviewWraper_side{
  width: 350px;
  background: transparent;
  z-index: 1051;
  position: fixed;
  top: 0;
  right: 20px;
  height: 94vh;
  margin-top: 3vh;
}
.reviewBox{width: 100%; float: left; background-color: #fff; border-radius: 6px; padding: 18px 15px;margin-bottom: 15px;}
.commntOptn span{
  width: 40px;
  height: 40px;
  background: #454545;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  margin-bottom: 12px;
}
.commntOptn span.imgIconBx{background: transparent; border: 1px solid;}
.commntOptn span img{width: 20px;}
.commntOptn span i{color: #fff; font-size: 18px;}
.commntOptn h6{font-weight: 600;}
.commntOptn p{font-size: 14px; color: #7c7c7c;}
.comntOption_btn button{margin: 0 5px; border: 1px solid;  background-color:transparent; border-radius: 20px; height: 36px; padding: 0 20px; font-size: 14px;}
.comntOption_btn button i{margin-right: 4px;}
.comntOption_btn button.reviewCloseBtn{
  background-color: #ffe5e5;
  border-color: #ff4242;
  color: #df0909;
}
.comntOption_btn button.reviewContinuBtn{
  background-color: #e5fff4;
  border-color: #28af4a;
  color: #0da86a;
}
.rate {
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px
}

.rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center
}

.rating>input {
  display: none
}

.rating>label {
  position: relative;
  width: 1em;
  font-size: 30px;
  font-weight: 300;
  color: #FFD600;
  cursor: pointer
}

.rating>label::before {
  content: "\2605";
  position: absolute;
  opacity: 0
}

.rating>label:hover:before,
.rating>label:hover~label:before {
  opacity: 1 !important
}

.rating>input:checked~label:before {
  opacity: 1
}

.rating:hover>input:checked~label:before {
  opacity: 0.4
}
.fomrReview_inpt input, .fomrReview_inpt textarea{
  height: 38px;
  border: 1px solid;
  border-color: var(--offWhite);
  border-radius: 4px;
  margin-bottom: 12px;
  box-shadow: none;
  padding-left: 10px;
  padding-right: 10px;
  width: 100%;
  font-size: 14px;
}
.fomrReview_inpt textarea{height: 90px;}
.fomrReview_inpt .buttonInpt input{border-color: var(--primary);}
.ratingValue_test{font-size: 14px !important;color: #be9009;font-weight: 600;}
.logingUSrr{display: none;}
.togleBtnWithUSr{display: flex;align-items: center;}
.togleBtnWithUSr a.logingUSrr, .togleBtnWithUSr button.logingUSrr{margin-right: 10px;}
.togleBtnWithUSr a.logingUSrr img, .togleBtnWithUSr button.logingUSrr img{width: 30px;filter: brightness(0) invert(1);}
.togleBtnWithUSr a.logingUSrr.usrActiveIcn img, .togleBtnWithUSr button.logingUSrr.usrActiveIcn img{border-radius: 50%; filter: inherit;}
.togleBtnWithUSr button{background: transparent;box-shadow: none;border: 0;}
.modalAccuntMneu .leftAccntMenuList{padding: 0; border-right: 0px solid;}
.accountDrawerMenu .modal-header{padding: 10px 15px;}
.accountDrawerMenu .modal-header .logoModal img{height: 40px; width: auto;}
.accountDrawerMenu .modal-header .btn-close{filter: brightness(0) invert(1);}
.accountManager{margin-top: 0;}
.accountManager.addNewTpGapping{margin: 40px 0;}
.accountManager.noMrgnTop .accountDetails{padding-left: 40px; padding-right: 40px;}
.accountManager.noMrgnTop .accountDetails p.mapPointer {font-size: 14px;margin-bottom: 8px; display: flex; align-items: center;}
.accountManager.noMrgnTop .accountDetails p.mapPointer span{color: #000; font-weight: 500; padding-right: 6px;}
.accountManager.noMrgnTop .accountDetails p.mapPointer img {
  width: 15px;
  margin-right: 4px;
}
.yrBookinDtls.mangeDetails h4{font-size: 18px; margin-bottom: 24px; margin-top: 30px;}
.yrBookinDtls.mangeDetails h4 span{border-bottom: 2px solid; padding-bottom: 3px;}
.bookgStatus ul{list-style-type: none; padding-left: 0; margin-bottom: 0;border: 1px solid; border-color:var(--offWhite); border-radius: 4px; padding: 10px;background-color: #f9f9f9;}
.bookgStatus ul li{font-size: 14px; margin-bottom: 6px;display: flex; justify-content: space-between;}
.bookgStatus ul li:last-child{margin-bottom: 0;}
.bookgStatus ul li label{color: var(--lightGrey); margin: 0; width: 150px;}
.bookgStatus ul li span{font-weight: 500; color: #000;}
.yrBookinDtls.mangeDetails .bookinfInfoChout{align-items: center;}
.detiaslleftBox .accomdatnDtls h4{font-weight: 700;}
.headTitelMain button{
  height: 34px;
  background: transparent;
  border: 1px solid;
  border-radius: 20px;
  padding: 0 20px;
  font-size: 14px;
}
.headTitelMain button:hover{background-color: #000; color: #fff;}
.padidgHideInner_galery, .galeryContnras{padding-left: 0; padding-right: 0;}
.contentBx_werpr h4{font-size: 20px;}
.contentBx_werpr p{font-size: 15px;}
.statsDatand_bookd .accomdatnDtls p{margin-bottom: 10px;}
.statsDatand_bookd .accomdatnDtls p label.accomPrice{background: #4e4e4e;color: #fff; padding: 4px 12px; border-radius: 4px; margin-left: 10px;}
.accomdatnDtls p span.tolOptionicn img{cursor: pointer; width: 18px;}

/* centerModal align */
.modal.show.centerModal_align  .modal-dialog{transform: translate(0, -50px) !important; position: relative;}
.lightModal_resort .modal-header{padding: 0; border: 0;}
.lightModal_resort .modal-header .closeBtn_Modal{position: absolute; right: -15px;background: #000; padding: 5px; border-radius: 50%;}
.lightModal_resort .modal-header .closeBtn_Modal .btn-close{filter: brightness(0) invert(1); margin: 0}
.lightModal_resort .modal-content{border-radius: 8px;}
.lightModal_resort .modal-body .carousel-caption p span{font-weight: 600;}
.lightModal_resort .modal-body .carousel-caption.characterText p{padding: 12px 15px;margin: 0;font-size: 14px;font-weight: 300;text-align: left;position: absolute;bottom: 0;
  background: rgb(45,45,45);
  background: linear-gradient(180deg, rgba(45,45,45,0) 0%, rgba(6,6,6,1) 100%);
}
.infoRoomTbl ul li::before {
  content: "🏠"; 
  margin-right: 5px; 
}

/* 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: RIGHT */
[tooltip][flow^="right"]::before {
  top: 50%;
  border-left-width: 0;
  border-right-color: #333;
  right: calc(0em - 5px);
  transform: translate(.5em, -50%);
}
[tooltip][flow^="right"]::after {
  top: 50%;
  left: calc(100% + 5px);
  transform: translate(.5em, -50%);
}

/* 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][flow^="right"]:hover::before,
[tooltip][flow^="right"]:hover::after {
  animation: tooltips-horz 300ms ease-out forwards;
}
.tableDate_wishlist table tr td, .tableDate_wishlist table tr th{font-size: 14px;}
.tableDate_wishlist table.dataTable{width: 100%;}
.tableDate_wishlist table tr td:last-child, .tableDate_wishlist table tr th:last-child{text-align: right;}
.tableDate_wishlist table.dataTable.display tbody tr.odd > .sorting_1, .tableDate_wishlist table.dataTable.display tbody tr.even > .sorting_1{background-color: transparent !important;}
.tableDate_wishlist table tr td a{
  background: #000;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 13px;
}
.dataTables_info{font-size: 13px; color: #868686;}
.dataTables_paginate a.paginate_button{padding: 0 11px !important; min-height: 20px; height: 32px;line-height: 32px;font-size: 12px;}
.tableDate_wishlist .dataTables_length label{font-size: 14px;}
.profileFieldBorder_outline {
  border: 1px solid;
  border-color: #d2d2d2;
  padding: 20px 20px 10px;
  float: left;
  width: 100%;
  border-radius: 6px;
  background: #fff;
  margin-bottom: 20px;
  padding-bottom: 4px;
}
.profileFieldBorder_outline .profileField_valueSrch {
  float: left;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  border-bottom: 1px solid #ededed;
  padding-bottom: 6px;
}
.profileField_valueSrch label {
  font-size: 15px;
  font-weight: 500;
  color: #000;
}
.profileField_valueSrch span {
  font-size: 15px;
  color: #585858;
}
.profileFieldBorder_outline .profileField_valueSrch:last-child {
  border-bottom: 0px solid;
}
.ticketInfoLeft {
  box-shadow: 0px 2px 14px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid #ededed;
  border-radius: 12px;
}
.ticketInfoLeft ul li {
  list-style-type: none;
  padding: 12px 15px !important;
  border-bottom: 1px solid #eee;
}
.ticketInfoLeft ul li p {
  font-size: 14px;
  color: #000;
  margin-bottom: 0;
  line-height: 16px;
}
.rplCls_btn {
  float: left;
  width: 100%;
  margin-top: 15px;
}
.rplCls_btn button {
  width: 48%;
  margin-right: 4%;
  height: 38px;
  font-size: 14px;
  float: left;
  line-height: 38px;
  padding: 0;
  border-radius: 3px;
  text-transform: uppercase;
  background: #c9ba54;
  border: 0px solid;
  color: #fff;
}
.rplCls_btn button:last-child {
  margin-right: 0;
  background: #f75151;
  border-color: #f75151;
}
.ticketInfoLeft ul li span {
  font-size: 12px;
  color: #454545;
  line-height: 14px;
}
.ticketInfoRght {
  border-radius: 12px;
  float: left;
  width: 100%;
}
.leftRght_Padding {
  padding-left: 0;
  padding-right: 0;
}
.ticketInfoLeft ul {
  margin: 0;
  padding-left: 0;
}
.cardWidth, .cardForm_Body {
  width: 100%;
  float: left;
}
.card-header {
  padding: 0;
  margin-bottom: 0;
  border: 0;
}
.replyMsgBox.card{border-radius: 0 0 8px 8px;}
.card-header h2{font-size: 18px;height: 40px; padding: 6px 12px}
form .cardForm_Body{ padding: 10px 15px;}
form .cardForm_Body textarea{
  border: 1px solid #ededed;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 12px;
  padding-right: 12px;
  font-size: 15px;
  border-radius: 6px;
  width: 100%;
  height: 130px;
}
.submtBtn_area {
  display: flex;
  justify-content: center;
}
form.replyMsgBox input[type=submit] {
  height: 38px;
  line-height: 35px;
  background: #66d290;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  text-indent: 0;
  padding: 0 40px;
  border-color: #66d290 !important;
  border-radius: 3px;
  transition: all 0.3s;
  border: 0;
}
.cardWidth .card-header{
  border: 1px solid #dcdcdc;
  border-radius: 0;
  margin-top: 0;
  margin-bottom: 0;
  background: #ededed;
  border-bottom: 0px;
}
.infoField_wrap.infoField_wrapReply {
  margin-top: 0;
  border-left: 6px solid #45bcf0;
  background: #f4fbff;
  float: left;
  width: 100%;
}
.userContent_top .userInfoChat p img {
  height: 16px;
  margin-right: 5px;
  opacity: 0.5;
}
.userContent_top {
  border-bottom: 1px solid #eee;
  margin-bottom: 15px;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  border-top: 0px solid;
}
.infoField_wrap.infoField_wrapReply .userContent_top {
  border-bottom: 1px solid #8ec5de;
}
.userContent_top .userInfoChat p {
  font-size: 15px;
  margin-bottom: 0;
  color: #000;
  margin: 0;
  display: flex;
  align-items: center;
}
.userContent_top .userInfoChat span {
  border-width: 1px;
  border-style: solid;
  border-radius: 4px;
  padding-left: 10px;
  padding-right: 10px;
  height: 20px;
  text-align: center;
  min-width: auto;
  font-size: 12px;
  color: #858585;
  line-height: 18px;
  margin-left: 20px;
  display: inline-block;
}
.infoField_wrap.infoField_wrapReply .userContent_top .userInfoChat span {
  background: #45bcf0;
  border-color: #45bcf0;
  color: #fff;
}
.userContent_top label {
  font-size: 14px !important;
  font-weight: 400 !important;
}
.userContent_body {
  float: left;
  width: 100%;
  padding: 10px 15px;
}
.userContent_body p {
  font-size: 15px;
  color: #000;
}
.userContent_body .addressIp {
  float: left;
  width: 100%;
}
.userContent_body .addressIp {
  font-size: 14px;
  line-height: 16px;
  color: #666;
}

/* testimonialasCss Start  */
.carousel.testimonialsItem img {
  width: 70px;
  max-height: 70px;
  border-radius: 50%;
  margin-right: 1rem;
  overflow: hidden;
}
.carousel.testimonialsItem .carousel-inner {
  padding: 1em;
}

@media screen and (min-width: 576px) {
  .carousel.testimonialsItem .carousel-inner {
    display: flex;
    width: 90%;
    margin-inline: auto;
    padding: 1em 0;
    overflow: hidden;
  }
  .carousel.testimonialsItem .carousel-item {
    display: block;
    margin-right: 0;
    flex: 0 0 calc(100% / 2);
  }
}
@media screen and (min-width: 768px) {
  .carousel.testimonialsItem .carousel-item {
    display: block;
    margin-right: 0;
    flex: 0 0 calc(100% / 3);
  }
}
.carousel.testimonialsItem .card {
  margin: 0 0.5em;
  border: 0;
}

.carousel.testimonialsItem .carousel-control-prev,
.carousel.testimonialsItem .carousel-control-next {
  width: 3rem;
  height: 3rem;
  background-color: grey;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
/* adonServcei CSs Start here */
.adonServiec_wrapper{
  border-bottom: 2px solid  #cacaca;
  margin-bottom: 18px;
}
.adonServiec_wrapper.noBorderAll{ border-bottom: 0px solid  #cacaca; margin-bottom:0px;}
.adonServiec_wrapper.noBorderAll .adonServei_box .serviecList:after{
  content: '|';
  position: relative;
  padding-left: 16px;
  color: #aeaeae;
}
.adonServiec_wrapper.noBorderAll .adonServei_box .serviecList:last-child::after{display: none;}
.adonServs_Container h4{
  background: #cacaca;
  padding: 6px 8px;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}
.adonServei_box{width: 100%; display: flex;flex-wrap: wrap; padding: 6px 0;}
.adonServei_box .serviecList{
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 6px 16px 6px 0;
}
.adonServei_box .serviecList p{display: flex; align-items: center; font-size: 14px; margin: 0;}
.adonServei_box .serviecList p span{display: flex; align-items: center; padding-left: 16px; font-weight: 600;}
.adonServei_box .serviecList p span.timeHr{
  background: #e2e2e2;
  border: 1px solid #8a8a8a;
  border-radius: 2px;
  padding: 2px 4px;
  font-size: 12px;
  height: 22px;
  margin-left: 4px;
}
.adonServei_box .serviecList p span.timeHr img{width: 14px;}
.adonServei_box .serviecList p span.timeHr.qtyItm img{width: 18px;}
.adonServei_box .serviecList p span img{width: 18px; opacity: 0.8; margin-right: 5px;}
.adonServei_box .serviecList .form-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.adonServei_box .serviecList .form-group label {
  position: relative;
  cursor: pointer;
}

.adonServei_box .serviecList .form-group label:before {
  content:'';
  -webkit-appearance: none;
  background-color: transparent;
  border: 1.5px solid #a8a8a8;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 8px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 4px;
}
.adonServei_box .serviecList .form-group input:checked + label:before{border: 1.5px solid #000000;}
.adonServei_box .serviecList .form-group input:checked + label:after {
  content: '';
  display: block;
  position: absolute;
  top: 6px;
  left: 7px;
  width: 6px;
  height: 13px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.qtyHrini{
  padding-left: 18px;
  font-size: 14px;
}
.qtyHrini span{margin-right: 6px;font-weight: bold;}
.qtyHrini .styleSelected{margin-right: 10px;}
.qtyHrini a{text-decoration: none;}
.faqContent_text .accordion-button:after{filter: brightness(0) invert(1);}
.faqContent_text{margin-bottom: 32px;}
.faqContent_text .accordion-button.collapsed:after{filter: brightness(0) invert(0);}
.faqContent_text .section-title {
  font-size: 28px;
  font-weight: bolder;
  margin-bottom: 30px;
  line-height: 36px;
}
/* calender Design */
.calenderField, .calenderField_date {
  float: left;
  width: 100%;
}
.calenderField .calenderField_head {
  float: left;
  width: 100%;
}
.calenderField_head .headTitle {
  float: left;
  width: 14.28%;
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 10px 10px;
  background: #f2f1f1;
  border-right: 1px solid #dddddd;
  font-size: 13px;
  font-weight: bold;
}
.calenderField .calenderField_date {
  border: 1px solid #ededed;
  border-top: 0;
}
.calenderField_date .dateField {
  float: left;
  width: 14.28%;
  font-size: 13px;
  text-align: center;
  justify-content: center;
  min-height: 105px;
  padding: 10px;
  border-right: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
}
.calenderField_date.newDateRange .dateField {
  display: flex;
  align-items: center;
  min-height: 50px;
  font-weight: 400;
  font-size: 14px;
}
.calenderField_date.newDateRange .dateField.pastDate{color: #a6a6a6;}
.calenderField_date.newDateRange .dateField.bookedDate{background-color: #fb9672;}
.calenderSlider{position: relative; margin-top: 24px;}
.calenderSlider .owl-nav{position: absolute; top: 0; right: 0;background-color: #fff;}
.calenderSlider .owl-dots{display: none;}
.calenderSlider .owl-nav button{height: 24px; margin-left: 16px;}
.calenderSlider .owl-nav button svg{width: 14px; height: 24px;}
.calenderSlider .owl-nav button.disabled svg{opacity: 0.4;}
.mainCalenderField p{font-size: 16px; margin-bottom: 8px;}
.mainCalenderField p span{font-weight: bold;}
.availbleBox_intro{display: flex; align-items: center; margin-top: 6px; justify-content: center;}
.legendBox.deny_clr {color: #fb9672;}
.legendBox span {
  width: 12px;
  height: 12px;
  display: inline-block;
  border-radius: 1;
  margin-right: 4px;
  background: #fff;
  border: 1px solid;
  border-color: #454545;
}
.availbleBox_intro .legendBox{margin-right: 14px;font-size: 14px;}
.availbleBox_intro .legendBox.deny_clr span{background: #fb9672; border-color: #ff7443;}
.availbleBox_intro .legendBox.past_clr span{background: #a6a6a6;border-color: #959595;}
.availbleBox_intro .legendBox.past_clr{color: #a6a6a6}
.mianCalenderRow{position: relative;}
.mianCalenderRow .arrowButton{
  position: absolute;
    top: 70px;
    right: 0;
    width: auto;
    display: flex;
    z-index: 99;
}
.mianCalenderRow .arrowButton button{
  height: 32px;
    padding: 0 8px;
    background: #000 !important;
    border: 0;
    display: flex;
    align-items: center;
    box-shadow: none !important;
    margin-left: 6px;
}
.mianCalenderRow .arrowButton button img {
  width: 14px;
  filter: brightness(0) invert(1);
}
.titleCalenderHeadr{
  display: flex;
  justify-content: center;
}
.titleCalenderHeadr p{
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0;
  margin-top: 20px;
}
.calenderField_date #loading_overlay{
  width: 100%;
  height: 250px;
  background: #e0e0e0;
  border-radius: 0;
  animation: shimmer 1.5s infinite linear;
}
@keyframes shimmer {
  0% {
    background-position: 100%;
  }
  100% {
    background-position: -100%;
  }
}

.calenderField_date #loading_overlay{
  background: linear-gradient(
    90deg,
    #e0e0e0 25%,
    #f5f5f5 50%,
    #e0e0e0 75%
  );
  background-size: 200% 100%;
}



