/*-- calender --*/
.calender-booking {
    display: flex;
}

.wrapper {
    background: var(--white);
}

.calender-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: auto;
}

.calender-wrap {
    display: flex;
    align-items: center;
    padding: 10px 30px 10px;
    /*width: 500px;*/
}

.calender-wrap .icons {
    display: flex;
}

.calender-wrap .icons span {
    height: 30px;
    width: 30px;
    display: flex;
    /* margin: 0 -7px; */
    cursor: pointer;
    color: var(--white);
    text-align: center;
    line-height: 10px;
    background-color: var(--grey);
    font-size: 1.5rem;
    user-select: none;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

.icons span:last-child {
    margin-right: 0px;
}

.calender-wrap .icons span:hover {
    background: var(--light-grey);
}

.calender-wrap .current-date {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    justify-items: center;
    text-align: center;
}

.calendar {
    padding: 5px 10px 5px;
    width: 500px;
}

.calendar ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    text-align: center;
    justify-content: space-evenly;
}

.calendar .days {
    margin-bottom: 0px;
    border-top: 0px;
}

.calendar li {
    display: flex;
    flex-direction: column;
    color: #333;
    width: calc(100% / 7);
    font-size: 12px;
}

.b-date {
    align-items: flex-end;
    display: flex;
    font-size: 12px;
    justify-content: flex-end;
}

.h-true {
    float: left;
}

.h-true .fa-circle {
    color: var(--green);
    font-size: 10px;
}

.h-b-d {
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    display: flex;
}

.h-b-d p.h-true {
    margin-bottom: 0px;
}

.i-price {
    font-size: 12px;
}

.calendar .weeks li {
    font-weight: 500;
    cursor: default;
}

.calendar .weeks .sat {
    color: var(--blue);
}

.calendar .weeks .sun {
    color: var(--red);
}

.calendar .days li {
    z-index: 1;
    cursor: pointer;
    border: 1px solid var(--light-grey);
    position: relative;
    padding: 5px;
    margin: 2px;
    height: 60px;
    width: 63px;
    border-radius: 7px;
}

.days li.inactive {
    color: var(--light-grey);
    background: var(--light-grey);
    pointer-events: none;
}

.days li.active {
    color: var(--blue);
    font-weight: bold;
}

.days li::before {
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    height: 59px;
    width: 62px;
    z-index: -1;
    transform: translate(-50%, -50%);
    border-radius: 7px;
}

.days li.active::before {
    background: #0ABAB533;
    border-radius: 7px;
}

.days li.active::before {
    color: var(--blue);
    background: #0ABAB533;
    border-radius: 7px;
}

.days li.public-holiday {
    color: var(--red) !important;
}

/*.days li.public-holiday::before {*/
/*    color: var(--red);*/
/*    background: rgba(231, 165, 165, 0.4);*/
/*    border-radius: 7px;*/
/*}*/

.days li.sun {
    color: var(--red) !important;
}

.days li.sat {
    color: var(--blue) !important;
}

.days li.booked {
    color: var(--text-dark);
    pointer-events: none;
    cursor: not-allowed;

}

.days li.booked::before {
    color: var(--text-dark);
}

.days li.booked:hover::before {
    background: #0ABAB533;
    border-radius: 7px;
}

.days li.holiday {
    color: var(--text-dark);
    background: var(--grey);
    cursor: not-allowed;
    pointer-events: none;
    font-size: 12px;
}

.days li.holiday::before {
    color: var(--text-dark);
}

.days li:not(.active):hover::before {
    color: var(--text-dark);
    background: #ececec88;
    z-index: 1;
    cursor: pointer;
    border-radius: 7px;

}

.days li.holiday:hover::before {
    background: #a99b9b00;
}

.icons-info {
    margin-top: 15px;
    font-size: 12px;
}


/*step section for booking */
.steps {
    position: relative;
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;

}

.steps-arrow {
    display: inline-block;
    width: 90%;
    height: 50px;
    background: #F7D862;
    position: relative;
    text-align: center;
    vertical-align: middle;
    line-height: 300%;
    color: #1f1f1f;
    opacity: .5;
}

.steps-arrow.active {
    background: #F7D862;
    color: #FFFFFF;
    opacity: 1;

}

#arrow1 {
    margin-right: 12px;
}

#arrow1:before {
    content: '';
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-left: 16px solid #F7D862;
    position: absolute;
    right: -16px;
    top: 50%;
    margin-top: -25px;
}

.active#arrow1:before {
    border-left: 16px solid #F7D862;
}

.active#arrow2:before {
    border-left: 16px solid #F7D862 !important;
}

#arrow2 {
    margin-right: 12px;
}

#arrow2:before {
    content: '';
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-left: 16px solid #F7D862;
    position: absolute;
    right: -16px;
    top: 50%;
    margin-top: -25px;
}

#arrow2:after {
    content: '';
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-left: 16px solid #fff;
    position: absolute;
    left: 0px;
    top: 50%;
    margin-top: -25px;
}

#arrow3 {
}

#arrow3:after {
    content: '';
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-left: 16px solid #fff;
    position: absolute;
    left: 0px;
    top: 50%;
    margin-top: -25px;
}

/*booking page and booking conform page section header*/
.booking-form-header {
    background-color: var(--light-grey);
    display: grid;
    grid-template-columns: auto 1fr;
    grid-gap: 10px;
    padding: 15px;
    align-items: end;
    margin-bottom: 10px;

}

.booking-form-header h3 {
    margin-bottom: 0px;
    line-height: 1.5;
    letter-spacing: 1.5px;
    font-size: 25px;
}

.booking-form-header p {
    margin-bottom: 0px;
    font-size: 14px;
    letter-spacing: 2px;
}

.booking-form-header p .fa-solid {
    font-size: 10px;
    color: var(--red);
}

/* - - - - - - - - - - - - - - - - - - - - - - - - */
/* input common */
/* - - - - - - - - - - - - - - - - - - - - - - - - */
input[type="text"], input[type="email"], input[type="url"], input[type="number"], input[type="date"], input[type="time"], input[type="datetime-local"], select, textarea {
    padding: 0px 15px !important;
    height: 40px;
    border: solid 1px var(--grey);
    border-radius: 5px !important;
    font-size: 16px !important;
    font-weight: normal !important;
    border-radius: 5px !important;
    color: var(--text-color) !important;
    background-color: #fff !important;
}

input[type="time"] {
    width: 105px;
    padding: 0px 10px !important;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="number"] {
    width: 100%;
}

textarea {
    height: 200px;
    width: 100% !important;
}

.required-icon {
    color: var(--red);
    font-size: 8px;
}

.input-suggestion {
    font-size: 10px;
    color: var(--grey);
    margin: 3px 0px;
}

.input-error {
    font-size: 10px;
    color: var(--red);
    margin-bottom: 0px;
}

.text-small {
    font-size: 10px;
}

.iw-fix-100 {
    width: 100px;
}

.iw-100 {
    width: 100%;
}

.iw-50 {
    width: 50%;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - */
/* booking form style  */
/* - - - - - - - - - - - - - - - - - - - - - - - - */
.custom-info {
    margin-bottom: 20px;
    padding: 10px;
}

.cib-i-w-flex {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 20px;
}

.cib-i-w-justify-space-between {
    justify-content: space-between;
}

.cib-two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
    margin-bottom: 10px;
}

.cib-one-col {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 10px;
}

/*.cib-title-only{*/
/*    padding-bottom: 10px;*/
/*}*/
.cib-input-wrap {
    border-bottom: 1px solid var(--light-grey);
    padding-bottom: 10px;
}

.input-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.input-wrap label {
    margin-bottom: 7px;
}

/*number of people select */
.input-wrap-row-people {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}

.input-wrap-row-people label {
    width: auto;
    margin-bottom: 0px;
}

.input-wrap-row-people select {
    width: 100px;
}

/**/
.input-postal-code-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 10px;
}

.input-postal-code-wrap input {
    width: 150px;
}

/*option section */
#id_options {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 8px 30px;
    padding: 10px;
    margin-bottom: 20px;
}

.input-wrap #id_options label {
    margin-bottom: 10px;
    font-size: 14px;
    letter-spacing: 1px;
}

#id_options input[type="checkbox"] {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #ccc;
    border-radius: 3px;
    margin-right: 5px;
}

/*coupon and payment*/
.coupon-payment {
    margin-bottom: 20px;
    padding: 10px;
}

/*cancel policy*/
.cancel-policy {
    margin-bottom: 20px;
    border-bottom: 4px solid var(--light-grey);
}

.cp-article {
    padding: 0px 10px;
    border-bottom: 2px solid var(--light-grey);
}

.cp-article:last-child {
    border-bottom: 0px solid var(--light-grey);
}

.cancel-policy .cp-article h4 {
    margin-bottom: 5px;
    margin-top: 5px;
    font-size: 18px;
}

.cancel-policy .cp-article p {
    margin-bottom: 2px;
    font-size: 14px;
    color: var(--dark-grey);
}

.cancel-policy .cp-article ul {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.cancel-policy .cp-article ul li {
    color: var(--dark-grey);
    margin-left: 15px;
    font-size: 14px;
}

.cancel-policy .cp-article ul li:before {
    content: "\2022";
    color: var(--dark-grey);
    display: inline-block;
    width: 10px;
    margin-left: -15px;
    padding-right: 5px;
    text-align: right;
}

/*booking button*/
.book-btn-section {
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
}

.book-btn-section p {
    color: var(--dark-grey);
    font-size: 14px;
}

.book-btn-section p a {
    text-decoration: underline !important;
    line-height: 20px;
    cursor: pointer;
    color: var(--blue)
}

.button-booking {
    display: flex;
    width: 350px;
    font-size: 25px;
    color: var(--white);
    flex-direction: row;
    align-items: center;
    gap: 10px;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.button-booking input {
    display: flex;
    padding: 20px;
    font-size: 25px;
    width: 100%;
    background-color: var(--text-dark);

    border: none;
    color: var(--white);
    letter-spacing: 3px;
    cursor: pointer;
    align-items: center;
    flex-direction: column;
}

.booking-arrow {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    font-size: 20px;
    cursor: none;
}

/*booking conformation page */
.booking-conform-info {
}

.conform-info-wrap {
    margin-bottom: 20px;
}

.bci-article {
    padding-top: 50px;
}

.bci-article p {
    margin-bottom: 2px;
    font-size: 14px;
    font-weight: normal;
    color: var(--dark-grey);
}

.conform-data-display {
    padding: 10px;
    border-bottom: 1px solid var(--light-grey);
}

.conform-data-display:last-child {
    border-bottom: 0px solid var(--light-grey);
}

.conform-data-display h4 {
    margin-bottom: 8px;
    font-size: 20px;
}

.conform-data-display p {
    margin-bottom: 5px;
    font-size: 16px;
    color: var(--dark-grey);
}

/*hotel fee section*/
.hotel-fee-section {
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
}

.hotel-fee-section > li {
    padding: 5px;
    border-bottom: 1px solid var(--light-grey);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.hotel-fee-section > li > p {
    margin-bottom: 0px;
}

/*.hotel-fee-section > li::after {*/
/*    content: "";*/
/*    width: 5px;*/
/*    height: 5px;*/
/*    margin-right: 5px;*/
/*    font-size: 18px;*/
/*    text-align: center;*/
/*    background: #000;*/
/*    vertical-align: middle;*/
/*    border: 1px solid #000;*/
/*    border-radius: 50%;*/
/*}*/

.hotel-fee-option {
    font-weight: bold;
    font-size: 18px;
}

.hotel-option-fee-check > div {
    display: flex !important;
    flex-direction: column;
}

.hotel-option-fee-check > div > div > label > input[type="checkbox"] {
    display: none !important;
}

.hotel-option-fee-check > div > div {
    border-bottom: 1px solid var(--light-grey);
    padding-bottom: 10px;
}

.hotel-option-fee-check > div > div > label::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-right: 5px;
    font-size: 18px;
    text-align: center;
    background: #000;
    vertical-align: middle;
    border: 1px solid #000;
    border-radius: 50%;
}


.hotel-fee-coupon {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: var(--red);
    margin-bottom: 20px;
}

.hotel-fee-coupon-title {
    font-size: 18px;
}

.grand-total-wrap {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
}

.grand-total {
    border-bottom: 1px solid var(--grey);
    width: 100%;
    text-align: right;
    font-size: 25px;
    font-weight: bold;
}

.grand-total #total-with-tax {
    font-size: 45px;
    font-weight: bold;
    letter-spacing: 5px;
}

.tax-amount {
    width: 100%;
    text-align: right;
}

.info-sec-btn-top,
.info-sec-btn-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
}

.info-sec-btn-top p,
.info-sec-btn-bottom p {
    margin-bottom: 0;
    color: var(--dark-grey);
}

/*booking-conform-btn*/
.booking-conform-btn {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    padding-top: 30px;
}

.button-booking-edit,
.button-booking-conform {
    padding: 20px;
    display: flex;
    width: 50%;
    font-size: 20px;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    justify-content: center;
    cursor: pointer;
}

.button-booking-edit input,
.button-booking-conform input {
    font-size: 20px;
    border: none;
    letter-spacing: 3px;
    cursor: pointer;
}

.button-booking-edit {
    border: 2px solid var(--grey);
    background-color: white;
    color: var(--text-dark);
}

.button-booking-edit input {
    background-color: white;
    color: var(--text-dark);
}

.button-booking-conform {
    border: 2px solid var(--text-dark);
    background-color: var(--text-dark);
    color: var(--white);
}

.button-booking-conform input {
    background-color: var(--text-dark);
    color: var(--white);

}


@media (max-width: 1024px) {
    main {
        width: 100%;
        padding: 30px 30px 25px 30px;
    }
}

@media (max-width: 768px) {
    .ib-middel-wrap .ib-left, .ib-middel-wrap .ib-right {
        width: 100%;
        margin-right: 0px;
    }

    #id_options {
        display: grid;
        grid-template-columns: 1fr;
    }

    /*booking-conform-btn*/
    .booking-conform-btn {
        display: flex;
        gap: 20px;
        align-items: center;
        flex-direction: column;
    }

    .button-booking-edit, .button-booking-conform {
        padding: 20px;
        display: flex;
        width: 90%;
        font-size: 20px;
        flex-direction: row;
        align-items: center;
        gap: 10px;
        justify-content: center;
        cursor: pointer;
    }
}


@media (max-width: 600px) {
    #title-bar {
        display: none;
    }

    .calender-dashboard {
        width: 100%;
        padding: 0px;
    }

    .calender-wrap {
        padding: 0px;
        width: 450px;
    }

    .calendar {
        width: 100%;
        padding: 0px;
    }

    .calender-wrap .icons span {
        height: 20px;
        width: 20px;
        font-size: 1rem;
    }

    .calendar .days li {
        z-index: 1;
        cursor: pointer;
        border: 1px solid var(--light-grey);
        position: relative;
        padding: 3px;
        margin: 2px;
        height: 50px;
        width: 54px;
        border-radius: 2px;

    }

    .ib-right {
        display: none;
    }

    .nk-btn-right-wrap {
        display: flex;
        float: none;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .calender-wrap {
        padding: 0px;
        width: 370px;
    }

    .calendar {
        width: 100%;
        padding: 0px;
    }

    .calender-wrap .icons span {
        height: 20px;
        width: 20px;
        font-size: 1rem;
    }

    .calendar .days li {
        margin: 0px 0px 1px 0px !important;
        height: 45px;
        width: 42px;
    }

    .days li::before {
        height: 44px;
        width: 41px;
        transform: translate(-50%, -50%);
        border-radius: 0px;
    }

    .b-date {
        font-size: 10px;
    }

    .i-price {
        font-size: 8px;
    }

    .h-b-d .fa-circle,
    .h-b-d .fa-times {
        font-size: 6px;
    }

    .steps {
        display: none !important;
    }

    /*booking page and booking conform page section header*/
    .booking-form-header {
        display: grid;
        grid-template-columns:1fr;
        grid-gap: 5px;
        padding: 10px;
    }

    .booking-form-header h3 {
        font-size: 22px;
    }

    .booking-form-header p {
        font-size: 10px;
    }

    .booking-form-header p .fa-solid {
        font-size: 8px;
    }

    .custom-info {
        padding: 0px;
    }

    .cib-two-cols {
        grid-template-columns:1fr;
        grid-gap: 10px;
    }

    .cib-i-w-flex {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
}