/*
--------------------------------------------------------------------------------------------------------
* Project    :                                                                                         *
* Author     : piyush Tapaniya | +91 83060 05795                                                       * 
* Support    : piyush.tapaniya90@gmail.com                                                             * 
*------------------------------------------------------------------------------------------------------- 
NOTE: This is main stylesheet of template, This file contains the styling for the actual Template.*/

/*================================================
[  Table of contents  ]
================================================== 
:: general css Style
   :: google font
   :: basic style     
   :: headings
   :: button style
   :: helper classes 
   :: section title
   :: box border
   :: custome class 
:: scrollbar CSS
:: back to top CSS
:: loader CSS
:: animations 
==================================================
[ End table content ]
================================================*/

@charset "UTF-8";
/*================================================
    :: general css Style
==================================================*/

/* :: google font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    /* Main color */
    --primary-color: #D6DA2E;
    --active-primary-color: #abad1b;
    --white-color: #FFFFFF;
    --black-color: #000000;
    /* #ffffff in decimal RGBA */
    --white-color-opacity-10: rgba(255, 255, 255, 0.10);
    --white-color-opacity-60: rgba(255, 255, 255, 0.60);
    /* #000000 in decimal RGBA */
    --black-color-opacity-10: rgba(0, 0, 0, 0.10);
    --black-color-opacity-60: rgba(0, 0, 0, 0.60);
    --black-color-opacity-60: rgba(0, 0, 0, 0.97);
    /* border */
    --border-color: rgb(203 203 203 / 26%);
    /* Fonts Variable */
    --title-font: "Montserrat", sans-serif;
    --body-font: "Montserrat", sans-serif;
    /* transition */
    --transition: all 300ms ease;
    /* box-shadow */
    --box-shadow: 2px 4px 5px 0px rgba(0, 0, 0, 0.212);
    /* Extra color */
    --color-extra-one: #060606;
    --color-extra-two: #28282D;
    --color-extra-three: #CBCBCB;
    ;
    --color-extra-four: #6C6C6C;
    --color-extra-five: #6C6C6C;
    --color-extra-six: #0C0B0B;
}


/* :: basic style  */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    list-style: none;
    word-wrap: break-word;
}

body, html {
    height: 100%;
}

body {
    font-family: var(--body-font);
    background-color: var(--white-color);
    color: var(--black-color);
}

p {
    color: var(--black-color);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
li,
a {
    margin-top: 0;
    margin-bottom: 0;
}

img {
    max-width: 100%;
    height: auto;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

a,
a:hover,
a:active,
a:focus {
    text-decoration: none;
    outline: none;
    text-decoration: none;
    color: inherit;
}


ol,
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

button {
    outline: none;
    border: 0;
    cursor: pointer;
    background: transparent;
}

    button:focus {
        outline: none;
        outline: 0;
    }

iframe {
    width: 100%;
    border: 0px;
}

div, section {
    position: relative;
}

.input-container.error {
    border-color: red;
}

/* :: Form */
textarea {
    resize: none;
}

/* select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
} */

input[type="number"] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--black-color);
    text-shadow: none;
}

::selection {
    background: var(--primary-color);
    color: var(--black-color);
    text-shadow: none;
}


/* :: headings */

/* :: Font h1 */
h1 {
    font-size: 62px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    h1 {
        font-size: 52px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    h1 {
        font-size: 42px;
    }
}

@media only screen and (max-width: 767px) {
    h1 {
        font-size: 42px;
    }
}

/* :: Font h2 */
h2 {
    font-size: 52px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    h2 {
        font-size: 42px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    h2 {
        font-size: 32px;
    }
}

@media only screen and (max-width: 767px) {
    h2 {
        font-size: 32px;
    }
}

/* :: Font h3 */
h3 {
    font-size: 32px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    h3 {
        font-size: 28px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    h3 {
        font-size: 26;
    }
}

@media only screen and (max-width: 767px) {
    h3 {
        font-size: 26;
    }
}

/* :: Font h4 */
h4 {
    font-size: 28px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    h4 {
        font-size: 24px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    h4 {
        font-size: 24px;
    }
}

@media only screen and (max-width: 767px) {
    h4 {
        font-size: 24px;
    }
}

/* :: Font h5 */
h5 {
    font-size: 22px;
}

@media only screen and (max-width: 767px) {
    h5 {
        font-size: 22px;
    }
}

/* :: Font h6 */
h6 {
    font-size: 18px;
}

@media only screen and (max-width: 767px) {
    h6 {
        font-size: 18px;
    }
}

.owl-dots {
    text-align: center;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: auto;
}

    .owl-dots button {
        height: 12px;
        width: 12px;
        background: #dcdcdc !important;
        display: inline-block;
        margin: 0 4px;
        border-radius: 15px;
    }

        .owl-dots button.active {
            background: #D6DA2E !important;
        }

.owl-carousel .owl-item img {
    max-width: max-content;
    margin: 0 auto;
}

/* :: button style */
.button-style {
    display: inline-block;
    padding: 8px 30px;
    border-radius: 50px;
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
    color: black;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

    .button-style:hover {
        background: var(--active-primary-color);
        color: black;
    }

        .button-style:hover:before {
            transform: scaleX(1);
            -webkit-transform: scaleX(1);
            -moz-transform: scaleX(1);
            -ms-transform: scaleX(1);
            -o-transform: scaleX(1);
        }


.button-info {
    display: inline-block;
    vertical-align: top;
    padding: 8px 30px;
    border-radius: 30px;
    border: 1px solid #277424;
    color: var(--black-color);
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

    .button-info:hover {
        background: #aaa046;
        color: var(--black-color);
        border-color: transparent;
    }

/* :: helper */
.text-gray {
    color: #f1f1f1 !important;
}

.text-white {
    color: #ffffff !important;
}


.text-black {
    color: #000000 !important;
}

.primary-color {
    color: #D6DA2E !important;
}

.text-green {
    color: green;
}

.text-red {
    color: red;
}

.bg-white {
    background-color: #ffffff !important;
}

.bg-color {
    background-color: #277424 !important;
}

.bg-01 {
    background-color: #000 !important;
}

.bg-02 {
    background-color: #f1f1f1 !important;
}

.bg-gradient {
    background: linear-gradient(to right, #ffe8e3, #ffede2, #fff2e3, #fff7e5, #fffde8);
}

.grid-1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 1.5rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1.5rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1.5rem;
}

.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 1.5rem;
}

.grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 1.5rem;
}

/* :: form */
.form-control {
    height: 46px;
}

    .form-control:focus {
        background-color: transparent;
    }

.form-group input[type="text"],
.form-group input[type="password"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group select {
    position: relative;
    display: block;
    width: 100%;
    line-height: 28px;
    padding: 10px 25px;
    border-radius: 0px;
    background: transparent;
    border: 1px solid var(--white-color);
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    line-height: 24px;
    padding: 15px 25px 25px;
    color: var(--black-color);
    height: 185px;
    background: transparent;
    color: var(--white-color);
    resize: none;
    border-radius: 0px;
    border: 1px solid var(--white-color);
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

label.error {
    display: block;
    padding: 5px 0px 0px;
    margin: 0px;
    text-transform: capitalize;
    font-size: 14px;
    color: #ff0000;
    font-weight: 500;
}

input.error,
select.error,
textarea.error {
    border-color: #ff0000 !important;
}



/* input effect */
.input-container {
    position: relative;
    border: 1px solid var(--white-color);
    border-radius: 5px !important;
}

.input-error {
    border: 1px solid red;
}

.input {
    box-sizing: border-box;
    color: var(--white-color);
    font-size: 15px;
    height: 50px !important;
    outline: 0;
    padding: 12px 17px 12px 17px;
    width: 100%;
    border: none !important;
    border-radius: 5px !important;
    background: transparent;
    font-weight: 500;
}

textarea.input {
    height: 100px !important;
}

.input-error-text {
    color: red;
    font-size: 12px;
    position: absolute;
    left: 0;
    bottom: -18px;
}

.placeholder {
    color: var(--white-color);
    left: 20px;
    line-height: 14px;
    pointer-events: none;
    position: absolute;
    transform-origin: 0 50%;
    transition: transform 200ms, color 200ms;
    top: 18px;
    margin: 0;
    background-color: var(--black-color);
    opacity: 1;
    font-size: 15px;
    font-weight: 500;
}

.input:focus ~ .placeholder,
.input:not(:placeholder-shown) ~ .placeholder {
    transform: translateY(-26px) translateX(-20px) scale(0.75);
    padding: 0 10px;
    left: 30px;
    background-color: var(--black-color);
    font-size: 18px;
}

.form-white .input-container {
    border: 1px solid var(--color-extra-three);
}

.form-white .placeholder {
    background-color: var(--white-color);
    color: var(--black-color);
}

.form-white .input {
    color: var(--black-color);
}

    .form-white .input:focus ~ .placeholder,
    .form-white .input:not(:placeholder-shown) ~ .placeholder {
        background-color: var(--white-color);
    }

/*radio button stype*/
[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

    [type="radio"]:checked + label,
    [type="radio"]:not(:checked) + label {
        position: relative;
        padding-left: 24px;
        cursor: pointer;
        display: inline-block;
    }

        [type="radio"]:checked + label:before,
        [type="radio"]:not(:checked) + label:before {
            content: '';
            position: absolute;
            left: 1px;
            top: 4px;
            width: 18px;
            height: 18px;
            border: 1px solid #c1c1c1;
            border-radius: 100%;
            background: var(--white-color);
        }

        [type="radio"]:checked + label:after,
        [type="radio"]:not(:checked) + label:after {
            content: '';
            width: 12px;
            height: 12px;
            background: var(--primary-color);
            position: absolute;
            top: 7px;
            left: 4px;
            border-radius: 100%;
            -webkit-transition: all 0.2s ease;
            transition: all 0.2s ease;
        }

        [type="radio"]:not(:checked) + label:after {
            opacity: 0;
            -webkit-transform: scale(0);
            transform: scale(0);
        }

        [type="radio"]:checked + label:after {
            opacity: 1;
            -webkit-transform: scale(1);
            transform: scale(1);
        }


.dropdown-menu.show {
    display: block;
    background: var(--white-color);
    box-shadow: 0px 0px 22px -4px rgba(11, 26, 56, .1);
    border: none;
}
/*-------------------------------------------------
:: scrollbar CSS 
-------------------------------------------------*/



/*================================================
:: back to top CSS
==================================================*/
.scrollToTop {
    position: fixed;
    bottom: 0;
    right: 30px;
    padding: 10px 6px;
    background: var(--primary-color);
    font-weight: 600;
    color: var(--black-color);
    font-size: 12px;
    text-align: center;
    border-radius: 25px;
    z-index: 99;
    cursor: pointer;
    transition: all 1s;
    transform: translateY(100%);
}

    .scrollToTop i {
        -webkit-animation: scroll-down 2s infinite;
        -moz-animation: scroll-down 2s infinite;
        -o-animation: scroll-down 2s infinite;
        animation: scroll-down 2s infinite;
        font-size: 15px;
        margin-bottom: 10px;
    }

    .scrollToTop span {
        display: block;
        color: var(--black-color);
    }

    .scrollToTop.active {
        bottom: 30px;
        transform: translateY(0%);
    }

    .scrollToTop:hover, .scrollToTop:focus {
        color: var(--black-color);
    }

/* section-title */

.section-title {
    position: relative;
}

    .section-title h2 {
        font-size: 52px;
        line-height: 62px;
        font-weight: 900;
        text-transform: uppercase;
    }

        .section-title h2 span {
            font-size: 78px;
            font-weight: 900;
            text-transform: uppercase;
            color: var(--primary-color);
        }

/*================================================
:: loader CSS
==================================================*/
.loader-box {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    background: var(--primary-color);
    z-index: 99999;
}

.loader-round {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 7px solid #EDF1F2;
    border-top: 7px solid var(--black-color);
    animation: rotate 2s infinite ease;
}

/*================================================
:: animations
==================================================*/
@keyframes bounce {
    0%, 50%, 100% {
        transform: scaleY(1);
        border-radius: 50%;
    }

    25%, 75% {
        transform: translateY(-100px) rotateY(360deg) scaleX(0.66) scaleY(1.25);
        border-radius: 50%;
    }

    15%, 40%, 65%, 90% {
        transform: translateY(10px) scaleX(1.25) scaleY(0.5);
        border-bottom-left-radius: 25%;
        border-bottom-right-radius: 25%;
    }
}

@keyframes scroll-down {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes rotate {
    0% {
        transform: none;
    }

    100% {
        transform: rotate(1turn)
    }

    ;
}


/*================================================
:: Login/Register/OTP Page
==================================================*/
.login-area {
    display: flex;
    align-items: center;
    height: auto;
    min-height: 100%;
    padding: 30px 0;
}

    .login-area::before {
        content: '';
        height: 100%;
        width: 100%;
        background-color: hsla(0, 0%, 0%, 0.86);
        position: absolute;
        top: 0;
        left: 0;
    }

.login-gird-list {
    border-radius: 20px;
    padding: 50px;
}

.input-container {
    margin-bottom: 15px;
}

.text-danger-border {
    color: red !important;
}

.input-container.with-icon img {
    position: absolute;
    right: 15px;
    top: 12px;
}

.input-container.with-icon .profile-flag {
    display: flex;
    position: absolute;
    left: 15px;
    top: 15px;
}

.with-icon a {
    position: absolute;
    right: 10px;
    top: 12px;
    z-index: 2;
    font-size: 14px;
    opacity: 0.5;
}

.welcome-text h1 {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    color: var(--white-color);
}

.input-otp {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 15px;
    margin: 0 30px;
}

    .input-otp .input {
        border: 1px solid var(--white-color) !important;
        background-color: var(--white-color);
        border-radius: 5px !important;
        padding: 0 !important;
        text-align: center;
        font-size: 24px !important;
        color: var(--black-color);
    }

.login-teams {
    color: var(--color-extra-three);
    font-size: 14px;
}

    .login-teams a {
        color: var(--white-color);
    }

.intl-tel-input.separate-dial-code .selected-dial-code {
    color: var(--white-color);
}

.intl-tel-input .selected-flag .iti-arrow {
    border-top: 4px solid var(--white-color);
}

.mobile-code label.placeholder {
    padding-left: 90px;
}

.nav-logo img.img-fluid {
    width: 160px;
}
/*--------------------------------------------------------
// index page
--------------------------------------------------------*/
.banner-area {
    position: relative;
    background-position: center;
}

    .banner-area::before {
        content: '';
        height: 100%;
        width: 100%;
        background-color: hsla(0, 0%, 0%, 0.86);
        position: absolute;
        top: 0;
        left: 0;
    }

.banner-content {
    padding: 180px 0 120px 0;
    max-width: 80%;
    position: relative;
}

.banner-area h1 {
    font-size: 123px;
    line-height: 123px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--white-color);
}

.banner-content p {
    border-top: 1px solid var(--white-color);
    padding-top: 10px;
    margin-top: 15px;
    margin-bottom: 25px;
    color: var(--white-color);
}


.about-content-list {
    display: flex;
    gap: 50px;
}

.about-sliders .slide-progress {
    width: 0;
    max-width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.50);
}

.about-content-item p {
    margin-bottom: 25px;
    color: var(--white-color);
    opacity: 0.5;
}

.products-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 37px;
}

    .products-list .products-item .products-image {
        margin-bottom: 15px;
    }

        .products-list .products-item .products-image img {
            width: 100%;
        }

    .products-list .products-item .products-content h4 {
        font-size: 24px;
        line-height: 24px;
        font-weight: bold;
        min-height: 60px;
    }

.why-area {
    background-color: #060606;
}

    .why-area .owl-dots {
        bottom: -40px;
    }

.why-item {
    background-color: var(--black-color);
    padding: 45px 5px;
    text-align: center;
    border-radius: 25px;
}

.why-image {
    margin-bottom: 15px;
}

.why-item h4 {
    color: white;
    margin-bottom: 15px;
    padding-bottom: 15px;
    position: relative;
    font-weight: 600;
    font-size: 24px;
}

    .why-item h4::after {
        content: '';
        position: absolute;
        height: 1px;
        width: 145px;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        background-color: var(--primary-color);
        transition: 0.3s;
    }

.why-item:hover h4::after {
    width: 180px;
}

.why-item p {
    color: white;
}

.plan-area,
.destinations-area {
    background-color: hsla(0, 0%, 0%, 97%);
}

.plan-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 162px;
}

.plan-item .plan-image img {
    width: 100%;
    margin-bottom: 15px;
}

.plan-item .plan-content ul li {
    color: var(--white-color);
}

.plan-item .plan-content ul {
    list-style-type: circle;
    padding-left: 25px;
    min-height: 155px;
}

    .plan-item .plan-content ul li {
        list-style-type: disc;
    }

.plan-item .plan-content a {
    background-color: var(--white-color);
    padding: 5px 45px;
    display: inline-block;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    margin: auto;
}

    .plan-item .plan-content a:hover {
        background-color: var(--primary-color);
    }

.destinations-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 50px 20px;
}

    .destinations-list .destinations-item .destinations-image {
        margin-bottom: 15px;
    }

        .destinations-list .destinations-item .destinations-image img {
            filter: grayscale(100%);
            width: 100%;
        }

    .destinations-list .destinations-item .destinations-content h4 {
        font-size: 20px;
        font-weight: 600;
        color: var(--white-color);
        margin-bottom: 5px;
    }

    .destinations-list .destinations-item .destinations-content p {
        font-size: 14px;
        color: var(--white-color);
    }

    .destinations-list .destinations-item:hover .destinations-image img {
        filter: grayscale(0%);
    }

    .destinations-list .destinations-item:hover .destinations-content h4 {
        color: var(--primary-color);
    }

.partners-area {
    padding: 200px 0;
}

    .partners-area .partners-list {
        display: flex;
        grid-gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

.subscribe-area {
    background-color: #28282D;
}

.subscribe-image img {
    width: 100%;
}

.subscribe-content {
    max-width: 90%;
    padding: 50px;
}

    .subscribe-content h2 {
        font-size: 42px;
        line-height: 52px;
    }

    .subscribe-content h2,
    .subscribe-content p {
        color: var(--white-color);
    }

    .subscribe-content p {
        font-size: 18px;
        padding: 10px 0 20px 0;
    }

.footer {
    background-color: #101010;
    padding: 100px 0 0 0;
}

.widget-footer-about {
    margin-bottom: 50px;
}

    .widget-footer-about a, .widget-footer-about p {
        color: var(--white-color);
        opacity: 0.5;
    }

.widget-footer-resourses-list {
    margin-left: 80px;
    margin-bottom: 50px;
}

.footer-widget-title h4 {
    font-size: 20px;
    color: var(--white-color);
    font-weight: 600;
    margin-bottom: 30px;
}

.footer-nav li a {
    color: var(--white-color);
    opacity: 0.5;
    margin: 5px 0;
    display: inline-block;
    font-size: 14px;
}

    .footer-nav li a:hover {
        opacity: 1;
        text-decoration: underline;
    }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding: 25px 0;
}

.footer-social-media {
    display: flex;
    gap: 15px;
    align-items: center;
}

    .footer-social-media li a {
        height: 45px;
        width: 45px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--black-color);
        border-radius: 50px;
    }

        .footer-social-media li a:hover {
            color: var(--black-color);
            background-color: var(--primary-color);
            opacity: 1;
        }


/*point-history*/
.inner-title-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
}

.inner-title-select .inner-select {
    height: 39px;
    border-radius: 8px;
    width: 190px;
}

.point-history-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
    margin-top: 30px;
}

.point-history-item {
    background: linear-gradient(180deg, rgba(253, 255, 155, 1) 0%, rgba(214, 218, 46, 1) 100%);
    border-radius: 15px;
    padding: 15px;
}

.point-history-top {
    display: flex;
    gap: 10px;
    padding: 35px 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--black-color);
}

.point-history-bottom {
    text-align: center;
}

.point-history-item.active {
    background: var(--white-color);
}

    .point-history-item.active .point-history-left svg path {
        fill: #00A651;
    }

/* add-wallet-area */
.add-wallet-area {
    display: flex;
    align-items: center;
    height: auto;
    min-height: 100%;
    padding: 30px 0;
}

    .add-wallet-area::before {
        content: '';
        height: 100%;
        width: 100%;
        background-color: hsla(0, 0%, 0%, 0.86);
        position: absolute;
        top: 0;
        left: 0;
    }

.wallet-congratulations {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 999;
    width: 350px;
    background-color: var(--black-color);
    overflow: hidden;
    border-radius: 15px;
}

.wallet-error {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 999;
    width: 350px;
    background-color: var(--black-color);
    overflow: hidden;
    border-radius: 15px;
}

.verify-icon {
    margin-top: 20px;
    padding-bottom: 20px;
    z-index: 2;
}

/*.wallet-congratulations:after {
    height: 100px;
    width: 100%;
    background-color: var(--primary-color);
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
}*/

.wallet-error .wallet-congratulations-content {
    padding: 1px;
}

.wallet-congratulations-close {
    position: absolute;
    right: 5px;
    top: 5px;
    z-index: 99;
}

/* profile-area */

.image-crop-item {
    position: relative;
    display: inline-block;
}

.image-crop {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0;
    overflow: hidden;
    background-color: var(--white-color);
    border-radius: 15px;
}

.image-set {
    cursor: pointer;
    width: 150px;
    box-sizing: border-box;
    transition: all ease-in-out .3s;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    text-align: center;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.image-crop-item input.file {
    display: none;
}

.image-crop-item .cabinet {
    cursor: pointer;
    position: absolute;
    right: 10px;
    width: 40px;
    height: 40px;
    background-color: var(--black-color);
    border-radius: 5px;
    bottom: -20px;
    text-align: center;
    margin: 0 auto;
    line-height: 32px;
}

    .image-crop-item .cabinet img {
        width: 22px;
    }

.profile-wapper {
    background-color: var(--white-color);
    padding: 25px;
    border-radius: 15px;
}

.profile-wappre-header {
    border-bottom: 1px solid rgb(0 0 0 / 11%);
    padding-bottom: 15px;
    margin-bottom: 35px;
}


.search-controls-wapper {
    display: flex;
    gap: 5px;
    align-items: center;
    flex-wrap: wrap;
}

    .search-controls-wapper .search-controls-ul {
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .search-controls-wapper .search-controls-ul li p {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 2px 10px;
            border-radius: 5px;
            border: 1px solid rgba(0, 0, 0, 0.05);
            font-size: 14px;
            font-weight: 600;
        }

    .search-controls-wapper .clear-all {
        font-size: 14px;
        font-weight: 600;
    }

.slider-box .priceRange {
    border: none;
    margin: 10px 0;
    padding: 0;
}

.ui-slider .ui-slider-handle {
    width: 14px;
    height: 14px;
    border-radius: 50px;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
}

.ui-slider-horizontal {
    height: 4px;
}

.ui-widget.ui-widget-content {
    border: none;
}

.ui-slider-horizontal .ui-slider-handle {
    top: -5px;
}

.ui-widget-header {
    background: var(--black-color);
}

.ui-widget-content {
    background: #f1efef;
}

/* booking */
.mybooking-list {
    margin-bottom: 25px;
}

.mybooking-item {
    background-color: var(--white-color);
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 45px;
}

.mybooking-icons {
    margin-bottom: 30px;
    margin-top: -35px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.mybooking-center.text-center {
    border-bottom: 1px solid var(--black-color);
    margin-bottom: 15px;
    padding-top: 15px;
}

.mybooking-top-center::after {
    content: '';
    height: 1px;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    background-color: var(--color-extra-three);
    left: 0;
    right: 0;
    margin: auto;
}

.mybooking-top-center p {
    background-color: var(--white-color);
    z-index: 1;
    position: relative;
    display: inline-block;
    padding: 0 15px;
}

.mybooking-top-left h6 {
    display: flex;
    flex-wrap: wrap;
}

    .mybooking-top-left h6 i {
        color: var(--primary-color);
        font-size: 14px;
    }



.autocomplete-suggestions {
    text-align: left;
    border: 1px solid #999;
    background: var(--white-color);
    padding: 10px;
    overflow: auto;
    box-shadow: 0 2px 5px #0000001a;
    border-radius: 15px;
    width: 25% !important;
}

.autocomplete-suggestion {
    padding: 5px;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
    font-size: 13px;
}

.autocomplete-selected {
    background: #F0F0F0;
}

.autocomplete-suggestions strong {
    font-weight: normal;
    color: #3399FF;
}

.autocomplete-group {
    padding: 2px 5px;
}

    .autocomplete-group strong {
        display: block;
        border-bottom: 1px solid var(--black-color);
    }


.mobile-inner-search {
    z-index: 9;
    background: var(--white-color);
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    display: none;
    height: 62px;
}

.mobile-inner-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-inner-left {
    position: relative;
    padding-left: 35px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

    .mobile-inner-left a {
        position: absolute;
        left: 0;
    }


.inner-banner {
    height: 350px;
}

    .inner-banner::before {
        content: '';
        height: 100%;
        width: 100%;
        background-color: hsla(0, 0%, 0%, 0.86);
        position: absolute;
        top: 0;
        left: 0;
    }

.about-content h2 {
    font-size: 24px;
}

.about-content p {
    margin-bottom: 10px;
}

.about-image-box {
    display: flex;
    gap: 20px;
    padding-top: 50px;
    padding-bottom: 50px;
}

    .about-image-box img {
        border-radius: 15px;
    }

.contact-area {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
}

    .contact-area::before {
        content: '';
        height: 100%;
        width: 100%;
        background-color: hsla(0, 0%, 0%, 0.86);
        position: absolute;
        top: 0;
        left: 0;
    }

.contact-input input {
    height: 45px;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 5px;
    border: none;
    padding: 0 15px;
}

.contact-input textarea {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 5px;
    border: none;
    padding: 15px;
}

.contact-input-box {
    background: #000000;
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.select2-container--default .select2-selection--single {
    border: none !important;
    border-radius: unset !important;
    height: 100% !important;
}

.select2-container {
    display: unset !important;
}

.strikethrough {
    text-decoration: line-through;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}


ul li.aboutus {
    list-style: disc;
    margin-left: 30px;
}

.booking-print {
    position: absolute;
    top: 5px;
    right: 15px;
    font-size: 20px;
    color: #277424;
}

.booking-print-ib {
    position: absolute;
    top: 5px;
    right: 60px;
    font-size: 20px;
    color: #277424;
}

.hotel-room-textbox {
    width: 30px;
    border: none;
}
