body.no-scroll {
    overflow: hidden;
    height: 100vh;
    padding-right: 14px;
    position: relative;
}

body.no-scroll>main .navbar, body.no-scroll>main .pckgtsnypd .bkngfspc,
body.no-scroll>main .processing-overlay {
    right: 14px;
    left: 14px;
}

#adventureForm {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.bkngfspc {
    position: fixed;
    top: 0;
    left: 14px;
    right: 0;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), backdrop-filter 0.4s cubic-bezier(0.25, 1, 0.5, 1), -webkit-backdrop-filter 0.4s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.4s;
    z-index: 500;
}

.bkngfspc.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.bkngfspc.active .bkngfspcco {
    opacity: 1;
    transform: scale(1);
    overflow-x: auto;
}

.bkngfspc .bkngfspcco {
    background-color: #FFFFFF;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.05);
    padding: 40px 50px;
    border-radius: 6px;
    width: 620px;
    height: calc(100vh - 250px);
    opacity: 0;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
}

.bkngfspcco form div>.lstndal {
    display: block;
}

.bkngfspcco form div label>span {
    color: red;
}

.bkngfspcco form div label>span:nth-child(2) {
    margin-left: 10px;
    font-size: 12px;
}

.bkngfspcininer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-left: 10px;
    padding-right: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 15px);
    margin: auto 0px;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
}

.bkngfsinp._groupd>.itinerary-text {
    color: #126b38;
    font-weight: 600;
}

.bkngfspcpl {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000d1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s ease-in;
    overflow: hidden;
    z-index: 100;
}

.bkngftp {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 15px;
    gap: 20px;
}

.bkngftp h2 {
    font-size: 13px;
    text-transform: uppercase;
}

#step-indicator {
    padding: 0px 20px;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 13px;
    font-style: italic;
}

.form-step {
    animation: fadeInStep 0.4s ease forwards;
}

@keyframes fadeInStep {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bkngfsinp {
    width: 100%;
}

.bkngfsinp._groupd {
    width: 50%;
}

.grpdinpts._rqustcre .bkngfsinp._groupd:first-child {
    width: auto;
}

.grpdinpts._rqustcre .bkngfsinp._groupd:nth-child(2) {
    width: 50%;
    justify-self: right;
}

.lstndal {
    margin: 30px 0px 10px;
}

.bknginpts,
.bkngtxt {
    display: flex;
    align-items: center;
    border: 1px solid black;
    transition: border 0.2s ease;
    border-radius: 2px;
}

.bknginpts div:first-of-type {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.bknginpts div:nth-child(2) {
    width: 100%;
    height: 40px;
    padding: 0px;
}

.bknginpts div:nth-child(2) input {
    display: block;
    width: calc(100% - 5px);
    padding-right: 5px;
    height: 100%;
    border: none;
    outline: none;
}

.grpdinpts {
    display: flex;
    align-items: center;
    gap: 5px;
}

.thavgonl {
    margin-bottom: 7px;
    font-size: 14px;
    display: block;
}

.bkng-addons-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.bkng-addons-grid label div {
    padding: 15px 10px;
    background-color: #dddddd;
    border: 1px solid #dddddd;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    transition: .5s border, .6s background-color ease;
    cursor: pointer;
}

.bkng-addons-grid label input {
    display: none;
}

.addon-item {
    width: calc((100% - 30px) / 3);
    height: max-content;
    text-align: center;
    overflow: hidden;
}

.addon-item>div span {
    font-size: 13px;
    font-weight: 600;
}

.addon-item small {
    font-size: 11px;
    color: #555555;
    padding-top: 5px;
    line-height: 1.3;
}

.addon-item>input:hover+div {
    border: 1px solid #126b38;
}

.addon-item>input:checked+div {
    border: 1px solid #126b38;
    background-color: #126b38;
    color: #FFFFFF;
}

.addon-item>input:checked+div small {
    color: #deaa41;
}

.bkngtxt div:nth-of-type(2) {
    width: 100%;
    padding: 10px 0px 0px;
}

.bkngtxt div:nth-of-type(2) textarea {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    resize: none;
}

.bkngsbmbtn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    gap: 60px;
}

.bkngsbmbtn button {
    border-radius: 5px;
    padding: 8px 15px;
    outline: none;
    transition-duration: 0.4s;
    animation-duration: 0.4s;
}

.bkngsbmbtn #nextBtn:hover, .bkngsbmbtn #prevBtn:hover, .bkngsbmbtn #submitBtn:hover {
    background-color: var(--gr-btn-hover-color);
    border-color: #19bd19;
    backdrop-filter: blur(8px);
    color: #ffffff;
}

.bkngsbmbtn button:not(:last-child) {
    background-color: #FFFFFF;
    color: #126b38;
    border: 1px solid #126b38;
}

.bkngsbmbtn button:last-child {
    background-color: #126b38;
    border: 1px solid #126b38;
    color: #FFFFFF;
}

.bkngsbmbtn button#nextBtn {
    background-color: #126b38;
    border: 1px solid #126b38;
    color: #FFFFFF;
}

.bkngsbmbtn input {
    color: #126b38;
    background-color: transparent;
    border: 1px solid #126b38;
    border-radius: 5px;
    padding: 8px 15px;
    transition-duration: 0.4s;
    animation-duration: 0.4s;
}

.bkngsbmbtn input:hover {
    border: 1px solid #126b38;
    color: #ffffff;
    background-color: #126b38;
}

.bkngtxt div:first-of-type {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.requst-duration-options {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bkngfspcco form div>.duration-item {
    display: flex;
    align-items: center;
    text-align: center;
    width: 50%;
    gap: 8px;

}

.duration-item input {
    display: none;
}

.duration-item input:not(:checked):hover+div {
    border: 1px solid #126b38;
}

.duration-item div {
    width: calc(100% - 40px);
    padding: 10px 15px;
    border: #dddddd solid 1px;
    background-color: #dddddd;
    border-radius: 5px;
    transition: .5s border, .6s background-color ease;
    cursor: pointer;
    font-size: 14px;
}

.duration-toggle:checked~div {
    background-color: #126b38;
    color: #FFFFFF;
}

.duration-toggle:checked~div::before {
    content: "✓ ";
    margin-right: 5px;
}

.grpdinpts._rqustcre {
    border-top: 1px solid #d7d7d7d7;
    border-right: 1px solid #d7d7d7d7;
    border-bottom: 1px solid #d7d7d7d7;
    border-left: 4px solid #136d3b;
    background-color: #f7fafc;
    border-radius: 6px;
    padding: 20px 25px;
    justify-content: space-between;
}

.grpdinpts._rqustcre .lstndal {
    margin: 0px 0px 10px;
}

.bkngopi.btn-form-open {
    background-color: #126b38 !important;
    color: #a3cfb6 !important;
    cursor: default;
    pointer-events: none;
    box-shadow: none !important;
}

.bkngopi.btn-form-open .fa-spinner {
    color: #19bd19;
    display: inline-block;
    animation: radarRotate 2s linear infinite, pulseBeacon 1.8s ease-in-out infinite;
}

@keyframes radarRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulseBeacon {
    0% {
        opacity: 0.4;
        filter: drop-shadow(0 0 2px rgba(46, 213, 115, 0.2));
    }

    50% {
        opacity: 1;
        filter: drop-shadow(0 0 8px rgba(46, 213, 115, 0.7));
    }

    100% {
        opacity: 0.4;
        filter: drop-shadow(0 0 2px rgba(46, 213, 115, 0.2));
    }
}

.bknbtclz {
    display: flex;
    justify-content: center;
    position: absolute;
    top: 0px;
    right: 10px;
}

#bookingcl {
    background-color: transparent;
    border-top: 1.5px solid red;
    border-right: 1.5px solid red;
    border-bottom: 1.5px solid transparent;
    border-left: 1.5px solid transparent;
    color: red;
    width: 40px;
    height: 40px;
    border-radius: 0px 20px 0px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

#bookingcl span {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

#bookingcl:hover {
    background-color: red;
    border-color: red;
    border-radius: 50%;
    color: #ffffff;
    box-shadow: 0 0 12px rgba(213, 46, 46, 0.3);
}

#bookingcl:hover span {
    transform: rotate(90deg);
}

#bookingcl:active {
    transform: rotate(90deg) scale(0.92);
    opacity: 0.8;
}

@media(max-width: 767px) {
    body.no-scroll {
        padding-right: 0px;
    }

    body.no-scroll>main .navbar, body.no-scroll>main .pckgtsnypd .bkngfspc, body.no-scroll>main .processing-overlay {
    right: 0px;
    left: 0px;
}

    .bkngfspcininer::-webkit-scrollbar {
        display: none;
    }

    .bkngfspc {
        left: 0;
        right: 0;
    }

    .bkngfspc .bkngfspcco {
        padding: 30px 10px;
        margin-left: 10px;
        margin-right: 10px;
        border-radius: 20px;
        width: calc(100% - 20px);
    }

    .grpdinpts {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .grpdinpts._rqustcre .bkngfsinp._groupd:nth-child(2) {
        width: 100%;
        justify-self: right;
    }

    .bkng-addons-grid {
        margin-top: 30px;
        justify-content: center;
    }

    .addon-item {
        width: calc(100% - 30px);
        height: max-content;
    }

    .bkngfsinp._groupd {
        width: 100%;
    }

    .bkngftp {
        flex-direction: column;
        width: 80%;
    }

    .grpdinpts._rqustcre {
        padding: 20px 10px;
    }

    .bkngsbmbtn {
        margin-top: 30px;
    }

    #bookingcl {
        width: 35px;
        height: 35px;
    }

    #bookingcl:hover span {
        transform: rotate(0deg);
    }
}

@media(min-width: 768px) and (max-width: 1244px) {
    body.no-scroll>main .navbar, body.no-scroll>main .pckgtsnypd .bkngfspc, body.no-scroll>main .processing-overlay {
    right: 0px;
    left: 0px;
}
    #contactcl:hover>span {
        transform: rotate(0deg);
    }

    .bkngfspc {
        left: 0;
        right: 0;
    }

    .bkngfspc .bkngfspcco {
        padding: 30px 10px;
        margin-left: 8%;
        margin-right: 8%;
        border-radius: 20px;
        min-width: calc(84% - 20px);
    }

    .bkngfspcininer::-webkit-scrollbar {
        display: none;
    }
}