@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

@font-face {
    font-family: 'brushfont';
    src: url('../fonts/brushfont.eot');
    src: url('../fonts/brushfont.eot') format('embedded-opentype'), url('../fonts/brushfont.woff2') format('woff2'), url('../fonts/brushfont.woff') format('woff'), url('../fonts/brushfont.ttf') format('truetype'), url('../fonts/brushfont.svg#brushfont') format('svg');
}

:root {
    --text-color: #5b5b5b;
    --white: #ffffff;
    --primary-color: #1c6da4;
    --button-color: #15a4ee;
    --marquee-bg: #fef7cf;
    --marquee-icon-bg: #fdcd30;
    --black: #000000;
    --primary-text-color: #22395d;
    --hover-color: #24395c;
    --logo-text-color: #002621;
    --gray: #cccccc;
}

/* custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
    border-radius: 0px;
    height: 4px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #005288;
    border-radius: 0px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #005288;
    }

* {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0;
    line-height: 100%;
}

h1,
h2,
h3 {
    font-family: 'brushfont';
}

body {
    color: var(--text-color);
    line-height: 22px;
    font-size: 12px;
    font-family: 'Roboto', sans-serif;
}

a,
button {
    text-decoration: none;
    transition: 0.5s;
}

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

body {
    background: #dff2ff;
}

/* ----- =============================== Menu section ========================= ----------- */
.main_mneuBox {
    padding-right: 30px;
    position: relative;
}

.menu {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 12;
    background-color: rgb(255, 255, 255);
    opacity: 0.902;
    box-shadow: 0px 0px 70px 0px rgba(0, 0, 0, 0.2);
    /* padding: 15px 0; */
}

    .menu .navbar {
        padding: 0;
        background: var(--primary-color);
        color: var(--white);
        /* clip-path: polygon(0 0, 100% 0%, 98% 100%, 0% 100%); */
        position: relative;
    }

        .menu .navbar::after {
            content: "";
            position: absolute;
            right: -40px;
            top: 0;
            border-bottom: 50px solid transparent;
            border-left: 40px solid var(--primary-color);
        }

    .menu .navbar-nav .nav-link {
        color: var(--menu-text);
        font-size: 15px;
        font-weight: 600;
        padding: 14px 19px;
        display: block;
    }

/* Dropdown Menu css */
.dropdown-menu li {
    position: relative;
}

.dropdown-menu .dropdown-submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: -7px;
    width: 100%;
}

.dropdown-menu .dropdown-submenu-left {
    right: 100%;
    left: auto;
}

.dropdown-menu > li:hover > .dropdown-submenu {
    display: block;
}

.dropdown-menu,
.dropdown-submenu {
    padding: 0px;
    border-radius: 0px;
    background: #f4f4f4;
}

.navbar-nav .dropdown-menu li a {
    color: var(--logo-text-color);
    font-size: 14px;
    border-top: 1px dashed var(--gray);
    padding: 9px 10px;
    font-weight: 500;
    display: block;
    letter-spacing: 0.5px;
}

    .navbar-nav .dropdown-menu li a:hover {
        background: var(--primary-color);
        color: var(--white);
    }

.dropdown-item:focus,
.dropdown-item:hover {
    background-color: var(--secondary-bg);
}

.dropdown-menu:hover .nav-link {
    color: var(--white);
    background: var(--primary-color);
}

ul.navbar-nav li.dropdown:hover ul.dropdown-menu {
    display: block;
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color: var(--white);
    background: var(--hover-color);
}

.navbar-light .navbar-nav .active a {
    color: var(--white);
    background: var(--hover-color);
}

.navbar-light .navbar-nav .logActive a:hover {
    color: var(--white);
    background: var(--hover-color);
}

.navbar-light .navbar-nav .logActive a {
    color: var(--white);
    background: var(--hover-color);
}

.logo {
    background: #fff;
    padding: 20px 35px;
    width: auto;
    position: absolute;
    top: -17px;
    left: -30px;
    z-index: 9;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}

.menuRightBxx {
    /* background: var(--primary-color); */
    display: table;
    margin: 0 0 0 auto;
    position: relative;
}

    .menuRightBxx ul.rightBoxMenu {
        display: flex;
        justify-content: end;
        align-items: center;
    }

        .menuRightBxx ul.rightBoxMenu li a {
            padding: 23px 18px;
            color: var(--primary-color);
            display: block;
            font-size: 17px;
            text-transform: capitalize;
        }

        .menuRightBxx ul.rightBoxMenu li:first-child a {
            background: var(--white);
            color: var(--primary-color);
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: 600;
        }

        .menuRightBxx ul.rightBoxMenu li.user a {
            min-width: 225px;
        }

        .menuRightBxx ul.rightBoxMenu li:first-child a span {
            width: 30px;
            margin-right: 10px;
        }

        .menuRightBxx ul.rightBoxMenu li:nth-child(2) a {
            display: flex;
            justify-content: start;
            align-items: center;
            padding: 23px 18px;
        }

            .menuRightBxx ul.rightBoxMenu li:nth-child(2) a span {
                width: 30px;
                margin-right: 10px;
                display: inline-block;
            }

            /* .menuRightBxx ul li:nth-child(2) a span img {
                    filter: brightness(0) invert(1);
                } */

            .menuRightBxx ul.rightBoxMenu li:nth-child(2) a h5 {
                font-size: 15px;
            }

            .menuRightBxx ul.rightBoxMenu li:nth-child(2) a p {
                font-size: 13px;
                margin: 0;
            }

        .menuRightBxx ul.rightBoxMenu li:last-child a span {
            width: 27px;
            display: block;
        }

        .menuRightBxx ul.rightBoxMenu li {
            border-right: 1px solid var(--gray);
        }

            .menuRightBxx ul.rightBoxMenu li:last-child {
                border: none;
            }

            .menuRightBxx ul.rightBoxMenu li:nth-child(3) a {
                display: flex;
                justify-content: center;
                align-items: center;
            }

                .menuRightBxx ul.rightBoxMenu li:nth-child(3) a span {
                    width: 30px;
                    margin-right: 5px;
                    display: inline-block;
                }

/*banner*/
.c-banner-list {
    position: relative;
}

.c-banner-con {
    position: absolute;
    left: 0;
    top: 45%;
    transform: translateY(-45%);
    z-index: 2;
    width: 100%;
}

    .c-banner-con .container {
        text-align: center;
    }

        .c-banner-con .container h1 {
            display: inline-block;
            font-size: 90px;
            color: #fff;
            text-shadow: rgb(9, 85, 124) 2px 0px 0px, rgb(9, 85, 124) 1.75517px 0.958851px 0px, rgb(9, 85, 124) 1.0806px 1.68294px 0px, rgb(9, 85, 124) 0.141474px 1.99499px 0px, rgb(9, 85, 124) -0.832294px 1.81859px 0px, rgb(9, 85, 124) -1.60229px 1.19694px 0px, rgb(9, 85, 124) -1.97998px 0.28224px 0px, rgb(9, 85, 124) -1.87291px -0.701566px 0px, rgb(9, 85, 124) -1.30729px -1.5136px 0px, rgb(9, 85, 124) -0.421592px -1.95506px 0px, rgb(9, 85, 124) 0.567324px -1.91785px 0px, rgb(9, 85, 124) 1.41734px -1.41108px 0px, rgb(9, 85, 124) 1.92034px -0.558831px 0px;
        }

        .c-banner-con .container .headingList {
            display: table;
            margin: auto;
            background: rgba(22, 164, 238, 0.4);
            display: inline-block;
            font-size: 90px;
            color: #fff;
            padding: 0px 30px 15px;
            -webkit-box-shadow: 0px 0px 64px 12px rgba(255, 255, 255, 0.3);
            -moz-box-shadow: 0px 0px 64px 12px rgba(255, 255, 255, 0.3);
            box-shadow: 0px 0px 64px 12px rgba(255, 255, 255, 0.3);
        }

            .c-banner-con .container .headingList ul {
                margin: 0;
                padding: 0;
                display: flex;
                justify-content: center;
                align-items: center;
            }

                .c-banner-con .container .headingList ul li {
                    list-style: none;
                    font-size: 18px;
                    color: var(--white);
                    padding-right: 10px;
                    letter-spacing: 1px;
                    text-shadow: rgb(9, 85, 124) 2px 0px 0px, rgb(9, 85, 124) 1.75517px 0.958851px 0px, rgb(9, 85, 124) 1.0806px 1.68294px 0px, rgb(9, 85, 124) 0.141474px 1.99499px 0px, rgb(9, 85, 124) -0.832294px 1.81859px 0px, rgb(9, 85, 124) -1.60229px 1.19694px 0px, rgb(9, 85, 124) -1.97998px 0.28224px 0px, rgb(9, 85, 124) -1.87291px -0.701566px 0px, rgb(9, 85, 124) -1.30729px -1.5136px 0px, rgb(9, 85, 124) -0.421592px -1.95506px 0px, rgb(9, 85, 124) 0.567324px -1.91785px 0px, rgb(9, 85, 124) 1.41734px -1.41108px 0px, rgb(9, 85, 124) 1.92034px -0.558831px 0px;
                }

                    .c-banner-con .container .headingList ul li a {
                        color: var(--white);
                    }

.c-banner-w img {
    width: 100%;
    transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
    /* transform: scale(1.2);
    object-fit: cover;
    min-height: 718px; */
}

/* .c-banner-w .slick-active img {
    transform: scale(1);
} */

.c-banner-w {
    position: relative;
}

    .c-banner-w:after {
        content: "";
        bottom: -1px;
        left: 0;
        position: absolute;
        width: 100%;
        height: 110px;
        background: url("../img/banner-bottom.png") no-repeat;
        background-size: 100% 100%;
    }

/* search */
.searchBox {
    margin-top: -188px;
    position: relative;
    z-index: 1;
}

.searchPageBox {
    margin-top: -8%;
}

.innersearchbox {
    background: var(--primary-color) url("../img/search-texture.png");
    padding: 35px 15px 40px;
    border-radius: 15px;
    box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.23);
    background-repeat: repeat;
}

.btn-search {
    background: var(--button-color);
}

.fieldBox {
    width: 18%;
    margin-right: 10px;
}

.c-bungalow-select {
    width: 23%;
}

.fieldNumBox {
    width: 7%;
}

.sButtonBox {
    width: 16%;
}

    .sButtonBox .btn-search {
        margin: auto;
        display: block;
        color: #fff;
        text-transform: uppercase;
        border-radius: 25px;
        padding: 10px 20px;
        position: relative;
        top: 13px;
        border: 1px solid transparent;
    }

        .sButtonBox .btn-search:hover {
            background: var(--button-color);
            border: 1px solid var(--white);
        }

.fieldBox label,
.fieldNumBox label {
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    color: #fff;
    margin-bottom: 5px;
    margin-left: 20px;
}

select.form-control,
input.form-control {
    background: var(--white);
    height: 48px;
    border-color: rgb(255, 255, 255);
    border-radius: 25px;
    padding: 0.375rem 30px 0.375rem 15px;
    text-overflow: ellipsis;
}

    select.form-control:focus,
    input.form-control:focus {
        background-color: rgba(255, 255, 255, 0.9);
        outline: none;
        box-shadow: none;
    }

.tabBox {
    width: 18%;
    text-align: center;
    background: var(--white);
    padding: 15px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    position: relative;
    left: 2%;
}

    .tabBox h4 {
        font-size: 20px;
        color: var(--primary-text-color);
    }

/* ----- =============================== marquee section ========================= ----------- */
.announcement {
    width: 100%;
    max-width: 100%;
    background-color: var(--marquee-bg);
    /* border-bottom: 1px solid #fff; */
    padding: 0;
    border-radius: 25px;
    margin: 25px 0;
    box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

    .announcement .left-gridbox {
        width: 100px;
        height: 50px;
        background: var(--marquee-icon-bg);
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 25px;
        position: relative;
        border-top-left-radius: 25px;
        border-bottom-left-radius: 25px;
    }

.left-gridbox:after {
    content: "";
    position: absolute;
    right: -20px;
    top: 0;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-left: 20px solid var(--marquee-icon-bg);
}

.announcement .main-announc-box {
    display: flex;
    justify-content: start;
    align-items: center;
}

.right-gridbox {
    padding-top: 7px;
    padding-right: 15px;
    width: 100%;
}

    .right-gridbox marquee {
        font-size: 15px;
        color: var(--black);
    }

/* Destinations */
.destinations {
    margin: 4rem 0 3rem;
}

.destiTitle {
    margin-bottom: 2rem;
}

    .destiTitle h2 {
        text-align: center;
        font-size: 6rem;
        font-family: 'brushfont';
        color: var(--primary-color);
    }

.slideBox {
    margin: 15px 12px 15px 0;
    position: relative;
    cursor: pointer;
}

    .slideBox::after {
        content: '';
        width: 100%;
        min-height: 64px;
        background: url(../img/destination-arrow.png);
        position: absolute;
        bottom: 0;
        left: 0;
        background-repeat: no-repeat;
        background-size: 100% 100%;
        display: none;
    }

    .slideBox .sldContent {
        padding: 15px;
        background: var(--white);
        clip-path: polygon(0 0%, 100% 0%, 100% 80%, 50% 100%, 0 80%);
        /* min-height: 185px; */
        /* box-shadow: 0px 0px 46px 0px rgba(0, 0, 0, 0.08); */
        position: relative;
        min-height: 440px;
        overflow-y: auto;
        border-bottom-left-radius: 13px;
        border-bottom-right-radius: 13px;
        padding-bottom: 90px;
    }

        .slideBox .sldContent h4 {
            font-size: 35px;
            font-family: 'brushfont';
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 10px;
            text-overflow: ellipsis;
            overflow: hidden;
            display: -webkit-box !important;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            white-space: normal;
        }

        .slideBox .sldContent p {
            font-size: 14px;
            color: rgb(65 65 65);
            text-align: justify;
            margin: 0;
            line-height: 24px;
            /* text-overflow: ellipsis;
            overflow: hidden;
            display: -webkit-box !important;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            white-space: normal; */
        }

.sldImgBox {
    position: relative;
    width: 100%;
    height: 240px;
}

    .sldImgBox img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.imgUpper {
    width: 120px;
    height: 20px;
    background: var(--white);
    position: absolute;
    bottom: 0;
    right: 0;
    clip-path: polygon(28% 0, 100% 0%, 100% 100%, 0 100%, 0 100%);
    display: none;
}

/* /end */
/* footer */
.footer {
    background: var(--primary-color);
    position: relative;
    padding-bottom: 50px;
}

    .footer img {
        width: 100%;
        background: #dff2ff;
        margin-bottom: 25px;
    }

.footnav {
    padding-top: 50px;
    text-align: center;
}

.footer-menu {
    margin: 0;
}

.footnav ul li {
    font-size: 16px;
    line-height: 20px;
    background: url(../img/footer-line.jpg) repeat-y 100% 50%;
    padding: 0 13px 0 10px;
    display: inline-block;
    font-weight: normal;
    letter-spacing: 0.5px;
}

    .footnav ul li a {
        color: var(--white);
    }

.copyright {
    margin-top: 25px;
}

    .copyright p {
        font-size: 13px;
        color: #ffffff;
        text-align: center;
        margin: 0;
    }


/* scroll top */
.scroll-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 100;
    text-align: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--marquee-icon-bg);
    color: var(--primary-text-color);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    transition: 0.5s ease-in-out;
}

.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top i {
    font-size: 32px;
    padding: 9px;
    color: var(--primary-text-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 93;
    background: #fff;
    box-shadow: 0px 2px 6px #525252;
}

/* Listed css */
.listed {
    padding: 4rem 0;
}

    .listed .card {
        box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.07);
        border: none;
        border-top-left-radius: 18px;
        border-top-right-radius: 18px;
        border-bottom-left-radius: 15px;
        border-bottom-right-radius: 15px;
        margin-bottom: 25px;
    }

        .listed .card .card-header {
            border: none;
            background: var(--primary-color);
            padding: 15px 0;
            border-top-left-radius: 18px;
            border-top-right-radius: 18px;
        }

            .listed .card .card-header .card-title {
                margin: 0;
                text-align: center;
                color: var(--white);
            }

                .listed .card .card-header .card-title h4 {
                    font-size: 20px;
                }

        .listed .card.sideBarCard .card-body {
            max-height: 450px;
            overflow-y: auto;
        }

        .listed .card .card-body .checkBoxListed ul li {
            padding: 0 0 8px;
            font-size: 15px;
            color: rgb(64, 64, 64);
        }

.checkBoxListed .form-check {
    padding-left: 0;
}

    .checkBoxListed .form-check input {
        padding: 0;
        height: initial;
        width: initial;
        margin-bottom: 0;
        display: none;
        cursor: pointer;
    }

    .checkBoxListed .form-check label {
        position: relative;
        cursor: pointer;
    }

        .checkBoxListed .form-check label:before {
            content: '';
            border: 1px solid #1c6da4;
            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: 5px;
            background: #1c6dca0f;
        }

    .checkBoxListed .form-check input:checked + label:after {
        content: '';
        display: block;
        position: absolute;
        top: 2px;
        left: 7px;
        width: 6px;
        height: 14px;
        border: solid #0079bf;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
    }

.wpbox {
    background: var(--white);
    padding: 10px;
    border-radius: 50px;
}

    .wpbox a {
        display: flex;
        justify-content: start;
        align-items: center;
    }

.wpIcon {
    width: 50px;
    height: 50px;
    margin-right: 15px;
}

    .wpIcon img {
        width: 100%;
        height: 100%;
    }

.wpCntnBox p {
    font-size: 15px;
    color: var(--black);
    font-weight: 600;
    margin: 0 0 4px;
}

.wpCntnBox h4 {
    font-size: 22px;
    color: var(--primary-color);
    margin: 0;
}

.overViewBox {
    border-radius: 15px;
}

    .overViewBox img {
        width: 100%;
        height: 235px;
        object-fit: contain;
    }

.overviewThumb {
    display: flex;
    justify-content: start;
    align-items: center;
    margin: 20px 0 0;
}

.thumbBx {
    width: 23%;
    margin-right: 1%;
    cursor: pointer;
}

    .thumbBx img {
        width: 100%;
        max-height: 50px;
    }

    .thumbBx:last-child {
        margin-right: 0px;
    }

.overviewCntnBx h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 17px;
}

.overviewCntnBx .icOn {
    width: 25px;
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 10px;
}

.overviewCntnBx .locTxt p {
    margin: 0;
    font-size: 16px;
    color: rgb(117, 117, 117);
}

.overviewCntnBx .place {
    margin: 17px 0 7px;
}

    .overviewCntnBx .place h5 {
        color: var(--primary-color);
        font-size: 15px;
        padding-bottom: 7px;
    }

    .overviewCntnBx .place p {
        font-size: 15px;
        color: rgb(117, 117, 117);
        margin: 7px 0 0;
    }

.overviewCntnBx .price {
    margin: 10px 0 0;
}

    .overviewCntnBx .price h4 {
        color: var(--black);
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .overviewCntnBx .price h5 a {
        color: var(--primary-color);
        font-size: 14px;
    }

.overviewCntnBx .bookBtn .btn-book {
    padding: 8px 40px;
    display: block;
    background: var(--button-color);
    border-radius: 25px;
    color: var(--white);
    text-transform: uppercase;
}

/* Details page css */
.detailsmainBox {
    margin: 50px 0;
}

    .detailsmainBox .detailsViewBox img {
        width: 100%;
        max-height: 465px;
    }

/*.detailsViewThumb {
    display: flex;
    justify-content: start;
    align-items: center;
    margin-bottom: 30px;
}*/

.viewThumb {
    width: 20%;
    margin: 10px 10px 0 0;
    max-height: 100px;
}

    .viewThumb img {
        width: 100%;
    }

/* .viewThumb:last-child {
        margin: 0;
    }*/

.buttonBox a.r-btn-primary {
    display: block;
    padding: 15px 25px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 20px;
    border-radius: 50px;
    font-weight: 500;
}

.buttonBox a.r-btn-default {
    display: block;
    padding: 10px 25px;
    background: var(--button-color);
    color: var(--white);
    font-size: 18px;
    border-radius: 50px;
    font-weight: 500;
    margin: 20px 0;
}

.headingTt h2 {
    color: var(--primary-color);
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
}

.choose-bungalow {
    border: none;
    margin: 30px 0;
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.07);
    border-radius: 15px;
}

.dtlsImgbx {
    border-radius: 15px;
}

    .dtlsImgbx img {
        width: 100%;
        max-height: 186px;
    }

    .dtlsImgbx iframe {
        border-radius: 20px;
    }

.chooseBxcntn h4 {
    color: var(--black);
    font-size: 20px;
    font-weight: 600;
}

.activityBox {
    margin: 20px 0;
}

.pricePlan p {
    font-size: 15px;
    color: var(--black);
    margin: 7px 0 0;
}

.pricePlan h4 {
    color: var(--primary-color);
    font-size: 25px;
    margin-top: 7px;
}

.activityBox {
    margin: 9px 0 0;
    display: flex;
    justify-content: start;
    align-items: center;
}

.avilityIcnbx {
    margin-right: 15px;
    cursor: pointer;
    width: 32px;
    height: 32px
}

    .avilityIcnbx img {
        filter: opacity(0.7);
    }

.leftafter {
    position: relative;
}

    .leftafter::before {
        content: '';
        width: 2px;
        height: 100%;
        border-left: 1px solid var(--gray);
        position: absolute;
        top: 0;
        left: 0;
    }

.incCountBox {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

    .incCountBox h5 {
        font-size: 18px;
        color: var(--primary-color);
    }

    .incCountBox .decrement {
        width: 40px;
        background-color: rgb(223, 242, 255);
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: var(--primary-color);
        font-size: 16px;
        border: 1px solid var(--primary-color);
        cursor: pointer;
    }

    .incCountBox .countInput input {
        width: 80px;
        height: 40px;
        border: none;
        border-top: 1px solid var(--primary-color);
        border-bottom: 1px solid var(--primary-color);
        font-size: 17px;
        font-weight: 500;
        text-align: center;
    }

        .incCountBox .countInput input:focus {
            outline: none;
            box-shadow: none;
        }

.bookBtn .btn-book {
    padding: 8px 40px;
    /* display: block; */
    background: var(--button-color);
    border-radius: 25px;
    color: var(--white);
    text-transform: uppercase;
    margin: auto;
}

.aboutTxt p {
    font-size: 16px;
    color: rgb(117, 117, 117);
    line-height: 29px;
    margin: 0;
}

.addressHdng h4 {
    font-size: 24px;
    text-transform: uppercase;
    color: var(--primary-color);
}

.r-icnImg {
    width: 28px;
    margin-right: 15px;
}

    .r-icnImg img {
        margin: auto;
        display: block;
    }

.r-adCntnBx span {
    color: var(--black);
    font-size: 17px;
    font-weight: 500;
}

.r-adCntnBx p {
    color: rgb(117, 117, 117);
    font-size: 15px;
    margin: 0;
}

.r-address ul {
    margin: 25px 0 0;
}

    .r-address ul li {
        padding-bottom: 15px;
    }

        .r-address ul li:last-child {
            padding-bottom: 0;
        }

.policiesTxt h4 {
    color: var(--black);
    margin-bottom: 15px;
    font-size: 17px;
}

.policiesTxt p {
    color: var(--text-color);
    font-size: 15px;
    line-height: 28px;
    padding-bottom: 15px;
}

.breadCameTitle {
    margin-bottom: 2rem;
}

    .breadCameTitle h2 {
        font-size: 4rem;
        color: var(--primary-color);
    }

    .breadCameTitle ul li a {
        padding: 7px 15px;
        border: 1px dashed var(--primary-color);
        border-radius: 50px;
        width: 120px;
        display: block;
        text-align: center;
        background: var(--white);
        font-size: 16px;
        margin-top: 25px;
    }

        .breadCameTitle ul li a:hover {
            background: var(--button-color);
            color: var(--white);
            border: 1px dashed var(--white);
        }

.availibilityCard {
    border: none;
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.07);
    border-radius: 10px;
}

    .availibilityCard .card-body {
        padding: 2rem;
    }

.incCountBox .availRgtBx .addressHdng {
    margin-bottom: 25px;
}

.incCountBox .availRgtBx ul li {
    margin-bottom: 25px;
}

    .incCountBox .availRgtBx ul li .r-adCntnBx p {
        line-height: 26px;
    }


/* Booking page */
.bookingMain {
    margin: 50px 0;
}

.bookingTable {
    background: var(--white);
    box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.1);
}

    .bookingTable table thead {
        background: var(--primary-color);
    }

        .bookingTable table thead tr th {
            color: var(--white);
            font-size: 15px;
        }

    .bookingTable table tbody tr td {
        font-size: 15px;
        vertical-align: middle;
    }

        .bookingTable table tbody tr td .form-select {
            /* padding: 0 2rem 0 0; */
            width: 100px;
            background-color: rgb(223, 242, 255);
            background-size: 5px 5px;
            border: 1px solid var(--primary-color);
        }

        .bookingTable table tbody tr td select.form-control {
            background-position: calc(100% - 15px) calc(1em + 4px), calc(100% - 10px) calc(1em + 4px), 100% 0;
            border-radius: 0.375rem;
        }

        .bookingTable table tbody tr td .form-select .form-control:focus,
        .bookingTable table tbody tr td .form-select .form-control:focus-visible {
            outline: none;
            box-shadow: none;
            border-color: transparent;
        }

        .bookingTable table tbody tr td .form-select .form-control {
            background: rgb(223, 242, 255);
            border-top-left-radius: 7px;
            border-bottom-left-radius: 7px;
            border-top-right-radius: 0px;
            border-bottom-right-radius: 0px;
            font-weight: 600;
        }

.booktblHdng h4 {
    font-size: 17px;
    color: var(--black);
}

    .booktblHdng h4 span {
        color: var(--primary-color);
    }

.detailsCard,
.summary {
    border: none;
    border-radius: 0px;
    box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.1);
}

.summary {
    background: var(--primary-color);
}

    .detailsCard h4,
    .summary h4 {
        color: var(--primary-color);
        font-size: 20px;
        text-transform: uppercase;
    }

.detailsCard form {
    margin-top: 20px;
}

.detailsCard .form-group {
    position: relative;
    margin-bottom: 15px;
}

    .detailsCard .form-group label {
        color: var(--black);
        font-size: 15px;
        margin-bottom: 7px;
    }

        .detailsCard .form-group label span {
            color: red;
        }

    .detailsCard .form-group .form-control {
        border: 1px solid var(--primary-color);
        background: rgb(223, 242, 255);
        color: var(--black);
        border-radius: 0px;
        padding-left: 42px;
        font-size: 14px;
    }

        .detailsCard .form-group .form-control:focus {
            box-shadow: none;
        }

    .detailsCard .form-group span.fieldIcon {
        color: var(--primary-color);
        width: 40px;
        height: 48px;
        font-size: 20px;
        position: absolute;
        top: 68%;
        left: 13px;
        transform: translateY(-50%);
        display: flex;
        justify-content: center;
        align-items: center;
    }

.btn-sub {
    background: var(--button-color);
    padding: 10px 25px;
    color: var(--white);
    border-radius: 50px;
    text-transform: capitalize;
    min-width: 160px;
}

    .btn-sub:hover,
    .btn-circle:hover {
        background: var(--primary-color);
        color: var(--white);
    }

.btn-circle {
    color: var(--primary-color);
    border-radius: 50%;
    border: 1px solid var(--primary-color);
}

.summary h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.r-flxcntn i {
    width: 28px;
    color: var(--white);
    font-size: 28px;
}

.r-flxcntn p {
    width: 87%;
    margin: 0;
    color: var(--white);
    font-size: 13px;
}

.r-valueDetails {
    margin-top: 10px;
    margin-bottom: 10px;
}

    .r-valueDetails span {
        width: 30px;
        margin-right: 15px;
    }

        .r-valueDetails span img {
            margin: auto;
            filter: brightness(0) invert(1);
        }

    .r-valueDetails h5 {
        color: var(--white);
        font-size: 17px;
        line-height: 22px;
    }

    .r-valueDetails p {
        margin: 0px;
        color: var(--white);
        font-size: 13px;
    }

.summary hr {
    margin: 2rem 0;
    border-color: var(--white);
}

.payemnt-details table tbody tr {
    border: none;
}

    .payemnt-details table tbody tr td {
        color: var(--white);
        border: none;
        font-size: 15px;
    }

/* Traiff page */
.availablityfield {
    width: 23%;
}

.availablitySearchbox {
    margin-top: -9%;
}

.traiffMainBox {
    margin: 50px 0;
}

    .traiffMainBox h4 {
        color: var(--black);
        font-size: 17px;
        margin-bottom: 25px;
    }

select.form-control {
    background-image: linear-gradient(45deg, transparent 50%, var(--primary-color) 50%), linear-gradient(135deg, var(--primary-color) 50%, transparent 50%);
    background-position: calc(100% - 19px) calc(1em + 6px), calc(100% - 15px) calc(1em + 6px), 100% 0;
    background-size: 5px 5px, 5px 5px, 2.5em 2.5em;
    background-repeat: no-repeat;
}

input[type="date"] {
    position: relative;
    padding: 10px;
}

    input[type="date"]::-webkit-calendar-picker-indicator {
        color: transparent;
        background: none;
        z-index: 1;
    }

    input[type="date"]:before {
        background: none;
        display: flex;
        font-family: 'FontAwesome';
        content: '\f073';
        width: 45px;
        height: 48px;
        position: absolute;
        top: 0;
        right: 0;
        color: var(--primary-color);
        justify-content: center;
        align-items: center;
        font-size: 18px;
    }

.m-2rem {
    margin-top: 2rem;
}

.form-control[type=file] {
    padding: 10px;
}

/* Login css */
.mainLogin {
    width: 100%;
    height: 100vh;
    background: url("../img/login-bg.jpg");
    background-repeat: repeat;
}

.leftBox {
    width: 50%;
}

.rightBox {
    width: 50%;
    height: 100vh;
    background: var(--primary-color) url("../img/loginright-shadow.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: relative;
    padding: 2rem 9rem 190px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .rightBox::after {
        content: '';
        width: 100%;
        height: 187px;
        background: url(../img/loginright-buttom.png);
        background-size: 100% 100%;
        position: absolute;
        bottom: 0;
        left: 0;
    }

.leftBox img {
    height: 100vh;
    margin: auto;
    display: block;
    object-fit: contain;
}

.loginBoxx .ttlhdng {
    margin: 30px 0;
}

    .loginBoxx .ttlhdng h4 {
        font-size: 5rem;
        color: var(--white);
        font-family: 'brushfont';
        text-align: center;
    }

.otpttlhdng h4 {
    font-size: 4rem !important;
}

.otpttlhdng p {
    font-size: 17px;
    color: var(--white);
    margin: 0;
    text-align: center;
    padding-top: 16px;
}

    .otpttlhdng p span {
        font-weight: 600;
    }

.loginBoxx form {
    /* width: 80%; */
    margin: auto;
}

.loginBoxx .form-group {
    position: relative;
}

    .loginBoxx .form-group label {
        font-size: 15px;
        color: var(--white);
        margin-bottom: 7px;
    }

        .loginBoxx .form-group label span {
            color: red;
        }

.loginBoxx select.form-control,
.loginBoxx input.form-control {
    background-color: var(--white);
    border: 1px solid var(--primary-color);
    border-color: var(--primary-color);
    padding-left: 50px;
}

.loginBoxx .form-group span.icBn {
    width: 25px;
    height: 48px;
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-19%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.loginBoxx .form-group .btn-send {
    background: var(--button-color);
    width: 100%;
    height: 48px;
    color: var(--white);
    font-size: 19px;
    margin-top: 20px;
    border-radius: 25px;
    text-transform: uppercase;
    font-weight: 500;
}

.logomain {
    max-width: 390px;
    margin: auto;
}

.otp-input-fields {
    margin: auto;
    width: auto;
    display: flex;
    justify-content: center;
    gap: 10px;
}

    .otp-input-fields input {
        height: 50px;
        width: 50px;
        background-color: transparent;
        border-radius: 4px;
        border: 1px solid var(--white);
        text-align: center;
        outline: none;
        font-size: 22px;
        background: var(--white);
        font-weight: 500;
    }

        .otp-input-fields input::-webkit-outer-spin-button,
        .otp-input-fields input::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

.loginBoxx .form-group p {
    color: var(--white);
    text-align: center;
    font-size: 16px;
    margin-bottom: 0;
    margin-top: 20px;
}

    .loginBoxx .form-group p a {
        color: var(--white);
        text-decoration: underline;
    }

.desktop-hidden {
    display: none;
}

/* Input type number field */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.custom-tooltip .tooltip-inner {
    background-color: var(--marquee-icon-bg);
    box-shadow: 0px 0px 4px black;
    /* opacity: 1 !important; */
    color: var(--black);
    font-weight: 600;
}

.custom-drop-menu {
    background: var(--white);
    border: 1px solid #d4d4d4;
    border-radius: 5px;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 65px;
    transform: translateY(0%);
    width: 225px;
    right: 2%;
    padding: 10px 0;
    display: none;
}

ul.custom-drop-menu li a {
    padding: 10px 25px !important;
    display: block !important;
    border-bottom: 1px dashed #e4e4e4 !important;
    border-right: none !important;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: normal !important;
}

ul.custom-drop-menu li:last-child a {
    border-bottom: 0px !important;
}

ul.custom-drop-menu li a i {
    margin-right: 7px;
}

.menuRightBxx ul li.user {
    position: relative;
}

.menuRightBxx ul.rightBoxMenu li.user:hover .custom-drop-menu {
    opacity: 1;
    display: block;
}

.visitorText {
    margin-top: 25px;
}

    .visitorText p {
        color: #fff;
        font-size: 15px;
        text-align: right;
        margin: 0px;
    }

        .visitorText p strong {
            font-size: 16px;
        }

/* Profile Page css */
/* .menuHeight {
    height: 73px;
} */

.mainProfileBox {
    padding: 50px 0;
}

.profilSdeBar {
    border-radius: 10px;
    box-shadow: 0 3px 30px 0 rgba(0, 0, 0, 0.1);
    background-color: #fff;
    padding: 32px 0;
}

.profilSdeBar--sticky {
    position: sticky;
    top: 15px;
}

.proflPicContanr {
    width: 160px;
    height: 160px;
    background: #eeeeee;
    border-radius: 8px;
    position: relative;
    border: 1px solid #eee;
    padding: 10px;
}

.profilSdeBar .proflPicContanr {
    margin: 0 auto;
}

.proflPicContanr .avtarBx {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.avatarBx img {
    width: 100%;
    border-radius: 8px;
}

.contntWrap {
    text-align: center;
    padding: 0 20px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .contntWrap h4 {
        font-size: 18px;
        color: var(--black);
        letter-spacing: 0.5px;
    }

.detailCradheadr h4 {
    color: var(--black);
    font-size: 22px;
}

.profileCntnDeatils {
    margin: 20px 0px 0;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
}

.dtalLstItmContnt {
    display: flex;
    align-items: center;
    padding: 18px 0;
    border-top: 1px solid #e3e3e3;
    height: 55px;
    text-transform: uppercase;
}

.profileCntnDeatils li:first-child .dtalLstItmContnt {
    border-top: none
}

.detalkey {
    width: 160px;
    margin-right: 20px;
    color: #4a4a4a;
    font-size: 11px;
}

.detalRightkey {
    font-size: 16px;
    color: var(--black);
    font-weight: 600;
}

.mainProfileBox .card {
    border-radius: 10px;
}

.policiesTxt ul li {
    font-size: 14px;
    line-height: 25px;
    padding-bottom: 5px;
}

.policiesTxt ul {
    margin-bottom: 10px
}

.terms_conds p {
    margin: 0;
    color: var(--white);
    font-size: 14px;
}

    .terms_conds p a {
        text-decoration: underline;
        color: var(--marquee-icon-bg);
    }

.main_content {
    margin: 50px 0;
}

    .main_content .confrimText .headingCnfrimTxt {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        flex-wrap: wrap;
    }

        .main_content .confrimText .headingCnfrimTxt h4 {
            color: var(--primary-color);
            line-height: 30px;
        }

            .main_content .confrimText .headingCnfrimTxt h4 span {
                color: var(--button-color);
                font-weight: 600;
            }

.listCntn {
    margin: 25px 0;
}

    .listCntn ul {
        margin-left: 12px;
    }

        .listCntn ul li {
            font-size: 16px;
            padding-bottom: 10px;
            display: flex;
            justify-content: start;
            align-items: baseline;
        }

            .listCntn ul li i {
                padding-right: 12px;
                color: var(--button-color);
                font-size: 18px;
            }

            .listCntn ul li a {
                text-decoration: underline;
                color: var(--primary-color);
                padding: 0 5px;
            }

.booking-table table thead tr {
    height: 50px;
    background: var(--primary-color);
    border-bottom: 10px solid #dff2ff;
}

    .booking-table table thead tr th {
        padding: 0 10px;
        font-size: 16px;
        color: var(--white);
    }

.booking-table table tbody tr {
    background: var(--white);
    height: 56px;
    border-bottom: 10px solid #dff2ff;
}

    .booking-table table tbody tr td {
        padding: 0 10px;
        font-size: 14px;
    }

        .booking-table table tbody tr td:first-child {
            font-weight: 600;
            width: 20%;
        }

            .booking-table table tbody tr td:first-child p {
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: initial;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                margin: 0;
            }

        /* .booking-table table tbody tr td:last-child {border-top-right-radius: 7px;border-bottom-right-radius: 7px;} */
        .booking-table table tbody tr td ul {
            display: flex;
            justify-content: center;
            align-items: center;
        }

            .booking-table table tbody tr td ul li {
                width: 30px;
                height: 31px;
                border-radius: 50%;
                display: flex;
                justify-content: center;
                align-items: center;
            }

                .booking-table table tbody tr td ul li:first-child {
                    background: var(--primary-color);
                    margin-right: 10px;
                    border: 1px solid var(--primary-color);
                }

                .booking-table table tbody tr td ul li:last-child {
                    background: red;
                    border: 1px solid red;
                }

                    .booking-table table tbody tr td ul li:last-child a,
                    .booking-table table tbody tr td ul li:first-child a, .booking-table table tbody tr td ul li.feedbackIcn a {
                        color: var(--white);
                    }

                .booking-table table tbody tr td ul li.feedbackIcn {
                    background: var(--primary-color);
                    margin-right: 10px;
                    border: 1px solid var(--primary-color);
                }

                .booking-table table tbody tr td ul li.feedbackIcn,
                .booking-table table tbody tr td span.cancel,
                .booking-table table tbody tr td span.confrim,
                .booking-table table tbody tr td span.register,
                .booking-table table tbody tr td span.rejected {
                    background: red;
                    color: var(--white);
                    padding: 7px 13px;
                    border-radius: 25px;
                    font-size: 11px;
                    line-height: 1;
                }

        .booking-table table tbody tr td span.confrim {
            background: #24c168;
        }

        .booking-table table tbody tr td span.register {
            background: var(--primary-color);
        }

        .booking-table table tbody tr td span.rejected {
            background: #ff4081;
        }

/* Firefox */
input [type=number] {
    -moz-appearance: textfield;
}

.c-login-w .rightBox {
    width: 100%;
    height: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.c-login-w .otp-input-fields {
    margin-top: 20px;
}

.c-otp-message {
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
    color: #fff;
}

    .c-otp-message a {
        color: #fff;
        text-decoration: none;
    }

.cancel_book_cntn h4 {
    color: var(--primary-color);
    line-height: 30px;
}

.cancel_book_cntn .form-check {
    cursor: pointer;
    margin-bottom: 7px;
}

    .cancel_book_cntn .form-check:last-child {
        margin-bottom: 0px;
    }

    .cancel_book_cntn .form-check .form-check-label {
        font-size: 14px;
        cursor: pointer;
    }

    .cancel_book_cntn .form-check .form-check-input {
        width: 17px;
        height: 17px;
        margin-right: 10px;
        cursor: pointer;
    }

.cancel_book_cntn .form-group {
    margin-top: 25px;
}

    .cancel_book_cntn .form-group label {
        font-size: 16px;
        color: var(--black);
        margin-bottom: 7px;
    }

    .cancel_book_cntn .form-group .form-control:focus {
        border-color: var(--primary-color);
        box-shadow: none;
    }

.cancel_book_cntn .can-btn {
    margin: 25px 0 0 auto;
    display: block;
}

/* loader section css */
.main-loader {
    /*background: #0A2647;*/
    background: rgba(0,0,0,0.5);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}


@keyframes audio-wave {
    0% {
        height: 10px;
        trnsform: translateY(0px);
        background: #FF55BB;
    }

    25% {
        height: 40px;
        trnsform: translateY(-5px);
        scaleY: (1.7);
        background: #FFD3A3;
    }

    50% {
        height: 10px;
        trnsform: translateY(0px);
        scaleY: (1.7);
        background: #FCFFB2;
    }

    100% {
        height: 10px;
        trnsform: translateY(0px);
        scaleY: (1.7);
        background: #B6EAFA;
    }
}

.sound-wave {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    height: 60px
}

    .sound-wave span {
        height: 18px;
        width: 10px;
        display: block;
        border-radius: 8px;
        background: orange;
        animation: audio-wave 2.2s infinite ease-in-out
    }

        .sound-wave span:nth-child(2) {
            left: 11px;
            background: red;
            animation-delay: 0.2s
        }

        .sound-wave span:nth-child(3) {
            left: 22px;
            animation-delay: 0.4s
        }

        .sound-wave span:nth-child(4) {
            left: 33px;
            animation-delay: 0.6s
        }

        .sound-wave span:nth-child(5) {
            left: 44px;
            animation-delay: 0.8s
        }

        .sound-wave span:nth-child(6) {
            left: 55px;
            animation-delay: 1s
        }

.detailsListTbl {
    max-height: 186px !important;
}

.inner-banner-section {
    /* max-height: 400px; */
    overflow: hidden;
    position: relative;
}

    .inner-banner-section .c-banner-img {
        /* max-height: 400px */
    }

    .inner-banner-section::after {
        display: none;
    }

    .inner-banner-section img {
        width: 100%;
        /*height: 100%;*/
        /* max-height: 400px; */
        object-fit: cover;
    }

.confrimText img {
    width: 35%;
    margin: 10px auto 30px;
    display: block;
}
/*css add by arunava*/
.c-raing-pw {
    padding: 60px 0;
}

.c-raing-img img {
    width: 100%;
    border-radius: 30px;
    -webkit-box-shadow: 0px 7px 18px -7px rgba(0,0,0,0.32);
    -moz-box-shadow: 0px 7px 18px -7px rgba(0,0,0,0.32);
    box-shadow: 0px 7px 18px -7px rgba(0,0,0,0.32);
}

.rate {
    float: left;
    height: 35px;
    line-height: 100%;
}

    .rate:not(:checked) > input {
        position: absolute;
        top: -9999px;
        display: none;
    }

    .rate:not(:checked) > label {
        float: right;
        width: 1em;
        white-space: nowrap;
        cursor: pointer;
        font-size: 30px;
        color: #ccc;
        margin-right: 10px;
    }

        .rate:not(:checked) > label:before {
            content: '\f005';
            font-family: 'FontAwesome';
            display: inline-block;
            line-height: 100%;
        }

    .rate > input:checked ~ label {
        color: #ffc700;
    }

    .rate:not(:checked) > label:hover,
    .rate:not(:checked) > label:hover ~ label {
        color: #deb217;
    }

    .rate > input:checked + label:hover,
    .rate > input:checked + label:hover ~ label,
    .rate > input:checked ~ label:hover,
    .rate > input:checked ~ label:hover ~ label,
    .rate > label:hover ~ input:checked ~ label {
        color: #c59b08;
    }

.c-raing-con h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.c-raing-w {
    margin-bottom: 20px;
}

    .c-raing-w:after, .c-raing-w:before {
        clear: both;
        display: block;
        content: "";
    }

.c-raing-pw textarea {
    height: 100px;
}

.c-raing-pw .form-group {
    margin-bottom: 20px;
}

.c-raing-pw .buttonBox .r-btn-default {
    display: inline-block;
    padding: 10px 25px;
    background: var(--button-color);
    color: var(--white);
    font-size: 18px;
    border-radius: 50px;
    font-weight: 500;
    margin: 20px 0;
}

    .c-raing-pw .buttonBox .r-btn-default:hover {
        background: var(--black);
        color: var(--white);
    }

.c-raing-pw h3 {
    margin-top: 20px;
    text-align: center;
    font-size: 40px;
    color: var(--primary-color);
}

.rightBoxMenu li img {
    height: 27px;
}

.rightBoxMenu h5 {
    font-size: 16px;
}

input[type="file"]::file-selector-button {
    background-color: transparent;
}

.detailsCard .card-body .form-row .form-group .form-select {
    background-image: linear-gradient(45deg, transparent 50%, var(--primary-color) 50%), linear-gradient(135deg, var(--primary-color) 50%, transparent 50%) !important;
    background-position: calc(100% - 19px) calc(1em + 6px), calc(100% - 15px) calc(1em + 6px), 100% 0 !important;
    background-size: 5px 5px !important;
    background-repeat: no-repeat;
}


.slick-arrow {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    cursor: pointer;
    color: #fff;
    z-index: 1;
    font-size: 3.7rem;
}

.prev-arrow {
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}

.next-arrow {
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
}

.amenitiesBox {
    margin: 10px 0 8px;
}

    .amenitiesBox p {
        font-size: 15px;
        color: var(--black);
        margin: 0;
    }

.policiesTxt {
    color: var(--text-color);
    font-size: 15px;
    line-height: 28px;
    padding-bottom: 15px;
}

.c-book-btn-w {
    margin-top: 10px;
}

.overviewCntnBx .c-book-btn-w .bookBtn .btn-book {
    font-size: 13px !important;
    padding: 9px 20px !important;
}

.overviewCntnBx .c-book-btn-w .bookBtn .no-book-btn, .no-book-btn {
background: var(--marquee-icon-bg) !important;
color: var(--primary-text-color) !important;
}
.avlb-room-btn {
    background: #cee8ae !important;
    color: var(--primary-text-color) !important;
}


.homeIcn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.homeIcn a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.homeIcn img {
    width: 60%;
}

.c-travel-model h3 { text-align: center;font-size: 20px;color: #0A2647;font-family: 'Roboto', sans-serif; line-height: 30px;
font-weight: bold;}
.c-travel-model .modal-content { padding: 10px 20px 10px;}
.c-travel-model .btn-close { position: absolute;right: 10px;top:10px; }
.c-travel-logo img { width: 150px;}
.c-travel-logo { text-align: center; margin-bottom:5px;}


.swal2-popup .swal2-title {
    font-family: Arial;
    font-size: 17px !important;
    font-weight: normal !important;
    line-height: 30px;
}

#overlay {
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    /* display: none; */
    background: rgba(255, 255, 255, 255);
}

.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px #ddd solid;
    border-top: 4px #2e93e6 solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
}

@keyframes sp-anime {
    100% {
        transform: rotate(360deg);
    }
}

.is-hide {
    display: none;
}

.submit-progress-bg {
    background-color: lightgray;
    opacity: .5;
}

.submit-progress {
    position: fixed;
    top: 50%;
    left: 50%;
    height: 6em;
    padding-top: 2.3em;
    z-index: 1;
    /* The following properties are the ones most likely to change */
    width: 20em;
    /* Set 'margin-left' to a negative number that is 1/2 of 'width' */
    margin-left: -10em;
    padding-left: 2.1em;
    background-color: black;
    color: white;
    -webkit-border-radius: 0.4em;
    -moz-border-radius: 0.4em;
    border-radius: 0.4em;
    box-shadow: 0.4em 0.4em rgba(0,0,0,0.6);
    -webkit-box-shadow: 0.4em 0.4em rgba(0,0,0,0.6);
    -moz-box-shadow: 0.4em 0.4em rgba(0,0,0,0.6);
}

/* Changing style for spinner */
.submit-progress {
    padding-top: 2em;
    width: 23em;
    margin-left: -11.5em; /* Set to a negative number that is 1/2 of the width */
}

    .submit-progress i {
        margin-right: 0.5em;
    }

.loader-hidden {
    display: none;
}