@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@100..900&display=swap');
body {
    margin: 0;
    padding: 0;
    font-family: "Heebo", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    color: #000;
    background-color: #fff;
    line-height: normal;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 900;
    line-height: normal;
    margin: 0;
}
h2 {
    font-size: 25px;
}
h3 {
    font-size: 20px;
}
h4 {
    font-size: 15px;
}
p:last-child {
    margin-bottom: 0;
}
.btn-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    height: 36px;
    background-color: #004E73;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.5s ease-in-out;
    color: #fff;
    text-decoration: none;
    border-radius: 0 !important;
}
.btn-custom:hover {
    background-color: #FDD047;
    color: #040404;
}

.container-custom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
    box-sizing: content-box;
}

.header-wrap {
    position: relative;
    transition: all 0.3s ease-in-out;
}

header {
    background-color: #fff;
    position: relative;
    z-index: 2;          /* burger paints above the nav */
    transition: all 0.3s ease-in-out;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 179px;
    position: relative;
    transition: all 0.3s ease-in-out;
}
.h-left {
    position: relative;
    z-index: 1;
}

.h-left:before {
    content: '';
    background-image: url(../images/header-painting.png);
    width: 560px;
    height: 184px;
    position: absolute;
    left: -100%;
    top: 50%;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    transition: all .3s ease-in-out;
    z-index: -1;
}
/*.header-inner:before {*/
    /*content: '';*/
    /*background-image: url(../images/header-painting.png);*/
    /*width: 560px;*/
    /*height: 184px;*/
    /*position: absolute;*/
    /*left: 11%;*/
    /*background-repeat: no-repeat;*/
    /*transition: all .2s ease-in-out;*/
/*}*/
.burger-icon-inner {
    --bar-h: 3px;
    --pad-y: 10px;
    --box-h: 45.857px;
    /* distance each bar must travel to reach the vertical centre */
    --shift: calc((var(--box-h) - (var(--pad-y) * 2) - var(--bar-h)) / 2);

    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    width: 46.967px;
    height: var(--box-h);
    padding: var(--pad-y) 0;
    background-color: #66C1C0;
    position: relative;
    cursor: pointer;
    transition: all .3s ease-in-out;
}
.burger-icon-inner:hover {
    background-color: #004E73;
}

.burger-icon-inner span {
    width: 27.628px;
    height: var(--bar-h);
    display: block;
    background-color: #fff;
    transition: transform 0.5s ease-in-out;
}

.burger-icon-inner:before {
    content: '';
    width: 27.628px;
    height: var(--bar-h);
    display: block;
    background-color: #fff;
    opacity: 1;
    visibility: visible;
    transition: all 0.5s ease-in-out;
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
}
.burger-icon-inner.opened-nav span{
    width: 33.655px;
}
.burger-icon-inner.opened-nav:before{
    width: 33.655px;
}

.burger-icon-inner.opened-nav:before {
    opacity: 0;
    visibility: hidden;
}

.burger-icon-inner.opened-nav span:first-child {
    transform: translateY(var(--shift)) rotate(45deg);
}

.burger-icon-inner.opened-nav span:last-child {
    transform: translateY(calc(var(--shift) * -1)) rotate(-45deg);
}
.h-right {
    display: flex;
    align-items: center;
    gap: 33px;
}
.h-insta .insta-hover,
.h-insta:hover .insta-default,
.hs-insta:hover .insta-default,
.hs-insta .insta-hover {
    display: none;
}
.h-insta:hover .insta-hover,
.hs-insta:hover .insta-hover {
    display: block;
}

.home-banner {
    background-image:
            linear-gradient(90deg, rgba(255, 255, 255, 0.80) 30.24%, rgba(4, 4, 4, 0.80) 100%),
            var(--banner-img);
    background-blend-mode: multiply;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 534px;
}
.banner-inner {
    display: flex;
    height: 100%;
    align-items: center;
}

.home-welcome {
    padding-top: 50px;
    padding-bottom: 40px;
}
.hw-inner {
    text-align: center;
    max-width: 656px;
    margin: 0 auto;
}
.hw-inner h2 {
    margin-bottom: 30px;
    font-size: 40px;
    font-weight: 900;
}
.hw-content p {
    margin-bottom: 0;
}


.home-workshops {
    margin-bottom: 43px;
}
.hwr-inner {

}
.hwr-inner h2 {
    text-align: center;
    margin-bottom: 46px;
}
.hw-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 37px;
    justify-content: center;
}
.hw-box {
    width: 375px;
    text-align: right;
    background: #FFF;
    box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.10);
    padding-bottom: 30px;
}
.hw-box .hwb-thumb {
    height: 268px;
    width: 100%;
    overflow: hidden;
}

.hw-box .hwb-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease-in-out;
}

.hw-box:hover .hwb-thumb img {
    transform: scale(1.1);
}
.hwb-content {
    padding-right: 43px;
    padding-left: 38px;
    padding-top: 28px;
}
.hwb-content h3 {
    margin-bottom: 12px;
}
.hwb-content p {

}
.hwbc-free-text {
    margin-bottom: 30px;
}
.hwbc-free-text ul,
.hwbc-free-text ol {
    list-style: none;
    margin: 0;
    padding: 0;
    width: fit-content;
}
.hwbc-free-text li {
    padding: 9px 0;
    border-bottom: solid 1px #45BFE5;
}
.hwbc-free-text li:last-child {
    border: none;
}
.hwbc-free-text strong {
    font-weight: 900;
}
.hwbc-description {
    margin-bottom: 17px;
}


.on-demand {
    margin-bottom: 60px;
}
.od-inner {

}
.od-inner h2 {
    margin-bottom: 40px;
}
.od-inner h2,
.hwr-inner h2 {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.od-inner h2 span,
.hwr-inner h2 span {
    color: #004E73;
}
.hwr-inner h2 span:before,
.od-inner h2 span:before {
    content: '|';
    color: #000;
    margin-left: 5px;
}
.on-demand .hwb-content h4 {
    color: #EF7C26;
    margin-bottom: 12px;
    font-size: 20px;
    line-height: normal;
}
.on-demand .hwb-content h3 {
    margin-bottom: 0;
}


.companies-box {
    margin-bottom: 57px;
}
.cb-inner {
    background: #FFF;
    box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.10);
}
.cb-main {
    display: flex;
    flex-wrap: wrap;
    gap: 51px;
    align-items: center;
    padding: 30px 0;
}
.cb-main .cb-thumb {
    width: 375px;
}
.cb-main .cb-content {
    max-width: 461px;
}
.cb-content h2 {
    margin-bottom: 14px;
}
.cb-content .cbm-description {
    margin-bottom: 40px;
}
.cb-form-outer {
    text-align: center;
    padding-top: 36px;
    position: relative;
    padding-bottom: 81px;
    display: none;
}
.cb-form-outer:after {
    content: '';
    height: 275px;
    background-color: #66C1C0;
    position: absolute;
    bottom: 0;
    width: 100%;
    right: 0;
}
.wpcf7-form {
    direction: rtl;
}
.cb-form {
    max-width: 919.5px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    margin-top: 40px;

}
.cb-form h2 {
    margin-bottom: 42px;
}
input:not([type="submit"]),
textarea {
    border: none;
    outline: none;
    resize: none;
    background-color: #fff;
    text-align: right;
    color: #000;
    font-weight: 600;
    font-family: "Heebo", sans-serif;
    height: 33px;
    padding-right: 14px;
    width: 100%;
    border-radius: 0 !important;
}
input[type="submit"] {
    width: 135px;
    border: none;
    outline: none;
}
.cb-form input[type="submit"] {
    margin-top: 20px;
}
.cb-form input:not([type="submit"]),
.cb-form textarea {
    padding-right: 22px;
    height: 36.927px;
    box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.10);
}
.cb-form .inputWrap {
    margin-bottom: 23.5px;
}
.cb-form textarea {
    height: 140px;
}

input::placeholder,
textarea::placeholder {
    color: #000;
    opacity: 1; /* Firefox */
}

/* Legacy / vendor-specific */
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #000;
    opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    color: #000;
    opacity: 1;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #000;
    opacity: 1;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
    color: #000;
    opacity: 1;
}



.hs-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}
.home-social {
    margin-bottom: 15px;
}

.footer-form {
    background-color: #66C1C0;
    padding-top: 38px;
    margin-bottom: 78px;
    background-image: url(../images/footer-contact-bg.svg);
    background-repeat: no-repeat;
    background-position: right top;
}
.ff-inner {
    max-width: 590px;
    margin: 0 auto;
    text-align: center;
}
.ff-inner .inputWrapper {
    margin-bottom: 19px;
}
.ff-inner textarea {
    height: 125px;
}



footer {
    background-image: url("../images/footer-bg1.svg");
    background-repeat: no-repeat;
    background-position: right bottom;
    position: relative;
}
footer:before {
    content: '';
    background-image: url(../images/footer-bg3.svg);
    height: 373px;
    width: 133px;
    display: block;
    position: absolute;
    left: 0;
    top: -275px;
}
.footer-widgets {
    font-weight: 500;
    font-size: 15px;
    display: flex;
    gap: 20px;
    padding-bottom: 110px;
    background-image: url("../images/footer-bg2.svg");
    background-position: left -130px bottom 0;
    background-repeat: no-repeat;
}
.footer-about {
    margin-left: 145px;
}
.footer-contanct a {
    text-decoration: none;
    display: block;
}
.footer-widgets a {
    color: #000;
}
.footer-widgets ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-workshops a,
.footer-contact-btn a {
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-color: #FDD047;
    text-decoration-thickness: 7%;
    text-underline-offset: 25%;
    text-underline-position: from-font;
}

.footer-about,
.footer-workshops,
.footer-contact-btn  {
    background-image: url("../images/yellow-angle.svg");
    background-repeat: no-repeat;
    background-position: 100% 3%;
    padding: 13px;
}
.footer-address,
.footer-timings {
    margin-bottom: 15px;
}
.footer-logo {
    margin-left: 80px;
}
.footer-workshops {
    margin-left: 80px;
}


.product-details {
    margin-top: 62px;
}
.pd-inner {
    max-width: 620px;
    text-align: center;
    margin: 0 auto;
}
.product-details h1 {
    font-size: 40px;
    margin-bottom: 20px;
}


.bottom-boxes {
    margin-bottom: 100px;
}
.bb-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 47px 39px;
}
.bb-box {
    width: 373px;
    background-color: #FFF;
    box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.10);
    padding: 33px 31px;
    background-repeat: no-repeat;
    height: 289px;
}
.bb-box.bb-box1 {
    background-image: url("../images/box1-bg.png");
}
.bb-box.bb-box2 {
    background-image: url("../images/box2-bg.png");
    padding: 33px 27px;
}
.bb-box.bb-box3 {
    background-image: url("../images/box3-bg.png");
}
.bb-box.bb-box4 {
    background-image: url("../images/box4-bg.png");
}
.bb-box.bb-box5 {
    background-image: url("../images/box5-bg.png");
}
.bb-box.bb-box6 {
    background-image: url("../images/box6-bg.png");
}
.bb-box ul,
.bb-box ol {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    list-style: none;
}
.bb-box ul li,
.bb-box ol li {
    position: relative;
    display: flex;
    /* align-items: center; */
    padding-right: 7px;
}
.bb-box ul li:before,
.bb-box ol li:before {
    content: '';
    height: 3px;
    width: 3px;
    background-color: #000;
    border-radius: 3px;
    display: flex;
    position: absolute;
    right: 0;
    top: 10px;
}
.bb-box h2 {
    margin-bottom: 24px;
}


.close-encounters {
    background: #FFF;
    box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.10);
    margin-top: 74px;
    margin-bottom: 100px;
}
.ce-inner {
    padding-top: 72px;
    padding-bottom: 87px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-calander {
    background: #FFF;
    box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.10);
    margin-top: 74px;
    margin-bottom: 80px;
}
.pc-inner {
    display: flex;
    justify-content: flex-start;
    gap: 69px;
    padding-top: 38px;
    padding-bottom: 51px;
}
.pci-right {
    width: calc(74.5% - 69px);
}
.pci-left {
    width: 25.417%;
}
.pc-inner .pci-right > h3,
.pc-inner .pci-left > h3{
    border-bottom: solid 2px #F0F0F0;
    padding-bottom: 6px;
    margin-bottom: 30px;
}
.product-spects ul,
.product-spects ol {
    list-style: none;
    margin: 0;
    padding: 0;
    width: fit-content;
}
.product-spects li {
    padding: 9px 0;
    border-bottom: solid 1px #7C7C7C;
}
.product-spects li:last-child {
    border: none;
}
.co-slots {

}
.co-slots .slots-btns {

}
.co-slots .slots-btns {
    display: flex;
    gap: 6px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 53px;
}
.co-slots .slot-btn {
    width: 121px;
    height: 40px;
    border: 1px solid #B4B4B4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 500;
    background-color: #fff;
    color: #000;
    transition: all 0.5s ease-in-out;
}
.co-slots .slot-btn.selected-slot {
    background-color: #004E73;
    border-color: #004E73;
    color: #fff;
}
.co-slots .slot-btn:not(.selected-slot) {
    cursor: pointer;
}
.co-slots .slot-btn.is-full {
    background-color: #F0F0F0;
    border-color: #E0E0E0;
    color: #B4B4B4;
    text-decoration: line-through;
    cursor: not-allowed;
    pointer-events: none;
}
.co-slots .date-selected,
.seats-num label{
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
}
.seats-num {
    margin-bottom: 59px;
}
.seats-num select {
    width: 374px;
    height: 40px;
    border: 1px solid #B4B4B4;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(../images/chevron-down.svg);
    background-repeat: no-repeat;
    background-position: left 15px center;
    background-size: 13px;
    padding-right: 3px;
    outline: none;
    color:#000;
    border-radius: 0 !important;
}
select::-ms-expand {
    display: none;
}

.no-slots-msg {
    font-size: 15px;
    font-weight: 500;
    color: #7C7C7C;
    display: none;
}
.booking-next {
    width: 100%;
    max-width: 374px;
}
.product-spects h4 {
    margin-bottom: 5px;
}
.product-addrress {
    font-size: 15px;
    font-weight: 900;
    position: relative;
    margin-top: 28px;
}
.product-addrress:before {
    content: '';
    display: block;
    height: 1px;
    width: 136px;
    background-color: #CAC7C7;
    margin-bottom: 12px;
}


/* Workshop booking calendar */
.calander-outer {
    display: flex;
    flex-wrap: wrap;
    gap: 110px;
}
.co-right {
    width: 265px;
    flex-shrink: 0;
}
.co-slots {
    flex: 1;
    min-width: 375px;
}
.wc-calendar {
    width: 100%;
    user-select: none;
}
.wc-cal-head {
    display: flex;
    direction: ltr;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}
.wc-cal-nav {
    width: 19px;
    height: 11px;
    border: none;
    background: none;
    padding: 0;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease-in-out;
}
.wc-cal-nav:hover:not(:disabled) {
    opacity: 0.65;
}
.wc-cal-nav:disabled {
    color: #D9D9D9;
    cursor: not-allowed;
}
.wc-cal-title {
    direction: rtl;
    font-size: 15px;
    font-weight: 500;
}
.wc-cal-weekdays {
    direction: rtl;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}
.wc-cal-weekdays span {
    text-align: center;
    font-size: 15px;
    font-weight: 900;
    color: #7C7C7C;
}
.wc-cal-grid {
    direction: rtl;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}
.wc-day {
    position: relative;
    aspect-ratio: 1 / 1;
    border: none;
    background: none;
    font-family: inherit;
    font-size: 15px;
    color: #CC4844;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    width: 37px;
    font-weight: 900;
}
.wc-day:hover:not(:disabled) {
    background-color: #F0F0F0;
}
.wc-day.is-empty {
    cursor: default;
    pointer-events: none;
}
.wc-day.is-past,
.wc-day:disabled {
    color: #CAC7C7;
    cursor: not-allowed;
}
.wc-day.is-selected {
    background-color: #FDD047;
    color: #CC4844;
    font-weight: 900;
}
.wc-dot {
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #CC4844;
}
.wc-day.is-selected .wc-dot {
    background-color: #CC4844;
}

.seats-error {
    color: #CC4844;
    font-size: 13px;
    margin-top: 6px;
}
.booking-next.is-loading {
    opacity: 0.6;
}


/* Checkout page */
.hamerhav-checkout {

}
.inline-checkout-outer {
    display: none;
    background: #FFF;
    box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.10);
    margin-top: 74px;
    margin-bottom: 100px;
    min-height: 607px;
}
.inline-checkout-outer .ico-inner {
    display: flex;
    justify-content: flex-start;
    gap: 69px;
    padding-top: 38px;
    padding-bottom: 51px;
}
.hamerhav-checkout .wc_payment_methods input[type="radio"] {
    width: auto;
    height: auto;
}
.hamerhav-checkout .woocommerce-error,
.hamerhav-checkout .woocommerce-message {
    list-style: none;
    margin: 0 0 24px;
    padding: 14px 16px;
    font-size: 14px;
}
.hamerhav-checkout .woocommerce-error {
    background-color: #FBEAEA;
    color: #CC4844;
}
.hamerhav-checkout .woocommerce-message {
    background-color: #EAF4EA;
    color: #3C7A3C;
}
.hc-columns {
    display: flex;
    direction: ltr;
    flex-wrap: wrap;
    gap: 91px;
}
.hc-order,
.hc-customer {
    direction: rtl;
}
.hc-order {
    width: 367px;
}
.hc-customer {
    width: 742px;
}
.hc-col-title {
    border-bottom: solid 2px #F0F0F0;
    padding-bottom: 6px;
    margin-bottom: 24px;
}
.hc-sub-title {
    margin-bottom: 16px;
}
.hc-sub-title.pd-title {
    font-weight: 500;
}

/* Order details column */
.hc-workshop-summary {
    margin-bottom: 28px;
    border-bottom: 2px solid #F0F0F0;
    padding-bottom: 20px;
}
.hc-workshop-summary h4 {

}
.hc-workshop-datetime {
    color: #B4B4B4;
    font-size: 15px;
    margin-bottom: 8px;
    font-weight: 900;
}
.hc-more-details {
    font-size: 15px;
    color: #7C7C7C;
    cursor: pointer;
}
.hc-review-order {
    margin-bottom: 0px;
}
.hc-review-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 2px solid #F0F0F0;
    font-size: 15px;
}
.hc-review-item-qty {
    font-weight: 700;
}
.hc-review-subtotal,
.hc-review-total {
    color: #7C7C7C;
}
.hc-review-total {
    color: #000;
    font-weight: 700;
}
.hc-review-total .woocommerce-Price-amount {
    font-weight: 700;
}
#order_review .woocommerce-checkout-payment {
    margin-top: 12px;
    background-color: #fff;
}
#order_review ul.wc_payment_methods {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
}
#order_review .payment_box {
    background-color: #F7F7F7;
    padding: 14px;
    font-size: 14px;
    color: #7C7C7C;
    margin-top: 10px;
}
.hc-sms-notice {
    color: #7C7C7C;
    font-size: 15px;
    margin-top: 20px;
    margin-bottom: 10px;
}
.hc-policy-link {
    display: inline-block;
    font-size: 14px;
    color: #000;
    text-decoration: underline;
    margin-bottom: 0px;
    color: #000;
    text-align: center;
    font-family: Heebo;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-color: #FDD047;
    text-decoration-thickness: 7%; /* 1.05px */
    text-underline-offset: 22%; /* 3.3px */
    text-underline-position: from-font;
}
#order_review .place-order {
    margin: 0;
}
#order_review #place_order {
    display: flex;
    float: none !important;
    align-items: center;
    justify-content: center;
    width: 157px;
    height: 36px;
    background-color: #004E73;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 0 !important;
    transition: all 0.5s ease-in-out;
}
#order_review #place_order:hover {
    background-color: #FDD047;
    color: #040404;
}

/* Customer form column */
.hc-login-box {
    background: #F4F4F4;
    padding: 18px 22px;
    margin-bottom: 24px;
}
.hc-login-box .woocommerce-info,
.hc-login-box p {
    margin: 0;
    font-size: 14px;
}
.hc-login-box a {
    color: #004E73;
    text-decoration: underline;
}
.hc-customer-fields .woocommerce-billing-fields > h3 {
    display: none;
}
.hc-customer-fields .form-row {
    display: block !important;
    width: 100% !important;
    float: none !important;
    margin: 0 0 23px !important;
}
.hc-customer-fields #billing_first_name_field,
.hc-customer-fields #billing_email_field {
    display: inline-block !important;
    width: calc(50% - 10px) !important;
    vertical-align: top !important;
}
.hc-customer-fields #billing_first_name_field {
    margin-left: 20px !important;
}
.hc-customer-fields label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
}
.hc-customer-fields .required {
    color: #CC4844;
    text-decoration: none;
}
.hc-customer-fields input.input-text,
.hc-customer-fields textarea {
    width: 100%;
    height: 40px !important;
    border: 1px solid #B4B4B4 !important;
    padding: 0 14px !important;
    font-family: "Heebo", sans-serif !important;
    font-size: 15px;
    box-sizing: border-box !important;
}
.hc-customer-fields textarea {
    height: 128px !important;
    padding: 10px 14px;
    resize: none;
}
.wc_payment_methods .payment_methods .methods{
    display: none !important;
}
.form-row.place-order {
    padding-right: 0;
}
.woocommerce-privacy-policy-text {
    display: none;
}
input#terms {
    width: auto;
    height: auto;
}
.woocommerce-terms-and-conditions-wrapper {
    margin-bottom: 20px;
}

.ce-list {
    border-bottom: solid 2px #F0F0F0;
}
.celi-date {
    font-size: 15px;
    font-weight: 900;
}
.celi-time,
.celi-duration {
    font-size: 15px;
    font-weight: 600;
}
.celi-link a {
    width: 135px;
}
.cel-item {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    padding: 27px 29px 27px 29px;
    border-top: solid 2px #F0F0F0;
    align-items: center;
}
.close-encounters .container-custom{
    max-width: 1200px;
}
.main-nav {
    background-color: rgba(253, 208, 71, 0.90);
    min-height: 534.832px;
    width: 100%;
    padding-right: 0px;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .5s ease-in-out, visibility 0s linear .5s;
}
body.nav-open .main-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity .5s ease-in-out, visibility 0s linear 0s;
}
.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 20px;
    font-weight: 500;
    margin-top: 50px;
}
.main-nav ul a {
    color: #000;
    text-decoration: none;
    position: relative;
    display: flex;
    padding-right: 42px;
}
.main-nav ul a:after {
    content: '';
    background-color: #fff;
    height: 2px;
    width: 56px;
    position: absolute;
    bottom: 0;
}
/*.main-nav ul li:hover a {*/
    /*background-color: #fff;*/
/*}*/
.main-nav ul li:last-child a:after {
    display: none;
}
.nav-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 46.967px;
    height: 45.857px;
    pointer-events: none;
}
/* ---------- burger ---------- */
.burger-icon {
    display: flex;
    width: 46.967px;
    height: 45.857px;
}

.burger-icon-inner {
    transform: translate(0, 0);
    transition: transform .5s ease-in-out, background-color .5s ease-in-out;
}

.burger-icon-inner.opened-nav {
    transform: translate(var(--nav-dx, 0px), var(--nav-dy, 0px));
    z-index: 3;
}

.burger-icon-inner.opened-nav:hover {

}
.burger-icon-inner.opened-nav span:first-child {
    transform: translateY(var(--shift)) rotate(45deg);
}
.burger-icon-inner.opened-nav span:last-child {
    transform: translateY(calc(var(--shift) * -1)) rotate(-45deg);
}

div#order_review {
    display: flex;
    flex-direction: column;
}

.hc-review-order{
    order:1
}
#order_review .woocommerce-checkout-payment{
    order:3
}
.bottom-check-details{
    order:2;
}
#add_payment_method #payment div.payment_box, .woocommerce-cart #payment div.payment_box, .woocommerce-checkout #payment div.payment_box{
    background: #EAF4F8;
}
#add_payment_method #payment div.payment_box::before, .woocommerce-cart #payment div.payment_box::before, .woocommerce-checkout #payment div.payment_box::before{
    border-bottom-color: #EAF4F8;
}
#add_payment_method #payment ul.payment_methods, .woocommerce-cart #payment ul.payment_methods, .woocommerce-checkout #payment ul.payment_methods{
    padding-right: 0;
}
.product-details h4.guest-text{
    color: #EF7C26;
    text-align: center;
    font-family: Heebo;
    font-size: 40px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    margin-bottom: 30px;
}
.product-details h1.guest-text-included{
    margin-bottom: 0;
}
.footer-form form{
    position: relative;
}
.footer-form .wpcf7 form .wpcf7-response-output{
    position: absolute;
    bottom: -20px;
    font-size: 14px;
}
.woocommerce-info a{
    color: #000;
    text-align: center;
    font-family: Heebo;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-color: #FDD047;
    text-decoration-thickness: 7%; /* 1.05px */
    text-underline-offset: 22%; /* 3.3px */
    text-underline-position: from-font;
}
.woocommerce-info {
    border-top-color: #004E73;
}
.woocommerce-info::before {
    color: #004E73;
}

.woocommerce-checkout .woocommerce-form-login:not(.hc-login-box .woocommerce-form-login) {
    display: none !important;
}
.hc-login-box .woocommerce-form-login {
    display: none;
}
#add_payment_method #payment div.form-row, .woocommerce-cart #payment div.form-row, .woocommerce-checkout #payment div.form-row{
    padding-right: 0;
}

.hc-login-box form.woocommerce-form-login {
    display: none !important;
}
.hc-login-box form.login {
    display: none !important;
}
.hc-login-box .woocommerce-form-login-toggle ~ * {
    display: none;
}
.hc-login-box .woocommerce-info::before{
    display: none;
}
.hc-login-box .woocommerce-info{
    padding: 0;
}
.hc-login-box .woocommerce-info {
    border-top-color: transparent;
    font-size: 15px;
    color:#1D1D1B;
}
.woocommerce form .form-row .input-text, .woocommerce form .form-row select{
    height: 40px !important;
    border: 1px solid #B4B4B4 !important;
    padding: 0 14px !important;
    font-family: "Heebo", sans-serif !important;
    font-size: 15px;
    box-sizing: border-box !important;
    border-radius: 0 !important;
}
input#rememberme {
    width: auto;
    height: auto;
}
.woocommerce form .form-row label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: normal;
}
button.woocommerce-button.button.woocommerce-form-login__submit{
    display: flex;
    float: none !important;
    align-items: center;
    justify-content: center;
    background-color: #004E73;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}
button.woocommerce-button.button.woocommerce-form-login__submit:hover {
    background-color: #FDD047;
    color: #040404;
}
textarea#order_comments {
    height: 120px !important;
}
.cb-form form{
    position: relative;
}
.cb-form .wpcf7 form .wpcf7-response-output{
    /*position: absolute;*/
    bottom: 30px;
    font-size: 14px;
    width: 100%;
}
.woocommerce-shop p.woocommerce-result-count,
.woocommerce-shop nav.woocommerce-breadcrumb,
.woocommerce-shop header.woocommerce-products-header,
.woocommerce-shop form.woocommerce-ordering{
    display: none !important;
}
.home-welcome.error{
    padding-bottom: 100px;
}
.general-page.error .hw-inner {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
}
.general-page.error .hw-inner h1{
    text-align: center !important;
}
.general-page.error .hw-content p {
    margin-bottom: 30px;
}

.header-wrap.sticky {
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}
.header-wrap.sticky .h-left:before,
.header-wrap.sticky .header-inner:before{
    background-size: 84%;
    transition: all .3s ease-in-out;
}
.header-wrap.sticky .header-inner{
    height: 119px;
}

/*** Woocommerce Default Pages Style ***/

.woocommerce .woocommerce-MyAccount-navigation ul {
    margin: 0;
    padding-right: 0;
}
.woocommerce .woocommerce-MyAccount-navigation ul li {
    padding: 15px 0;
    list-style: none;
    border: 1px solid #66C1C0;
    border-radius: 40px;
    margin-bottom: 20px;
}

.woocommerce .woocommerce-MyAccount-navigation ul li a {
    padding: 0px 20px;
    font-size: 16px;
    color: #66C1C0 !important;
    text-decoration: none !important;
    width: 100%;
    cursor: pointer;
}
.woocommerce-account .woocommerce-MyAccount-content p a {
    transition: 0.6s;
    font-size: 16px;
}
.woocommerce-account .media-in-section .article-about p{
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.woocommerce-account .woocommerce-MyAccount-content {
    width: 65%!important;
}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1 {
    -ms-flex: 0 0 100.333333%;
    flex: 0 0 100.333333%;
    max-width: 100.333333%}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2 {
    -ms-flex: 0 0 46.666667%;
    flex: 0 0 100.666667%;
    max-width: 101.666667%}
.woocommerce-page .col2-set {
    margin-top: 0;
}
.u-column2.col-2.woocommerce-Address, .u-column1.col-1.woocommerce-Address {
    padding-left: 0;
    margin-bottom: 20px;
}
.woocommerce-account .addresses .title .edit {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background-color: #004E73 !important;
    font-size: 14px !important;
    font-weight: 700;
    color: #fff !important;
    border: none;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    text-decoration: none;
    padding: 7px;
}

header.woocommerce-Address-title.title h2{
    margin: 0;
    padding-right: 0;
}
form.woocommerce-EditAccountForm.edit-account fieldset {
    margin-top: 30px;
}
form.woocommerce-EditAccountForm.edit-account fieldset legend {
    color: #000;
    font-size: 15px;
}
p.woocommerce-form-row.woocommerce-form-row--wide.form-row.form-row-wide span.password-input {
    width: 100%
}

li.woocommerce-MyAccount-navigation-link.is-active{
    color: #fff;
    font-weight: 700;
    background-color: #66C1C0;
}
.woocommerce .woocommerce-MyAccount-navigation ul li.is-active a{
    color: #fff !important;
}
.woocommerce-MyAccount-navigation ul li:hover a{
    color:#66C1C0 !important;
}
.woocommerce-Addresses address, .woocommerce-account .woocommerce-MyAccount-content p{
    font-size: 18px;
}

.woocommerce-account .addresses .title h3 {
    float: left;
    font-size: 20px;
    color: #000;
}
/* Woo Commerce My Account Page Style Ends */


.woocommerce .woocommerce-MyAccount-navigation ul{
    padding-left: 0;
}
.woocommerce-account .hw-content{
    margin-top: 40px;
}
.woocommerce table.shop_table td, .woocommerce table.shop_table th{
    padding: 18px 12px;
}

button.woocommerce-Button.button,
.woocommerce-info a,
.woocommerce table.my_account_orders .button{
    display: flex !important;
    align-items: center;
    justify-content: center;
    background-color: #004E73 !important;
    font-size: 14px !important;
    font-weight: 700;
    color: #fff !important;
    border: none;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}
button.woocommerce-Button.button:hover,
.woocommerce-account .addresses .title .edit:hover,
.woocommerce-info a:hover,
.woocommerce table.my_account_orders .button:hover {
    background-color: #FDD047 !important;
    color: #040404 !important;
}
.footer-contanct p br{
    display: none;
}
.home-banner.inner.video-banner{
    position: relative;
}
video.banner-video{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 999999;
}
td.woocommerce-table__product-name.product-name a{
    color:#004E73;
}
.page-template-template-checkout ul.wc-item-meta {
    padding-right: 0;
}
a.btn-custom.btn-blue.show-companies-forms,
.hw-boxes .btn-custom{
    min-width: 157px;
    width: auto;
}
/*orange hover btn*/
.contact-page .cb-form input[type="submit"]:hover,
.amount-option:hover span,
.single-pro-form .cb-form input[type="submit"]:hover,
.footer-form input[type="submit"]:hover{
    background-color: #EF7C26;
    color:#fff;
}
.footer-form .wpcf7-not-valid-tip{
    position: absolute;
}
.footer-logo{
    position: relative;
    top: 20px;
}
.product-spects ul li strong,
.product-spects ol li strong{
    font-weight: 900;
}
.bb-description p {
    line-height: 25px;
}
.celi-link a:hover{
    background-color: #EF7C26;
    color: #fff;
}
.hc-customer h4.hc-sub-title{
    font-weight: 500;
}
.hc-login-box .woocommerce-info{
    font-size: 15px;
}
a.showlogin {
    background: transparent !important;
    color: inherit !important;
    text-align: right;
    align-items: flex-start;
    justify-content: flex-start;
    font-size: 15px !important;
}
.woocommerce-checkout #payment div.form-row {
    margin-top: 0px;
}
span.woocommerce-terms-and-conditions-checkbox-text a {
    color: inherit;
}
.woocommerce-terms-and-conditions h1{
    font-size: 1.5rem;
}
.woocommerce-terms-and-conditions h2{
    font-size: 22px;
}
.hamerhav-checkout{
    margin-top: 40px;
}
.woocommerce-info a.showlogin:hover{
    background-color: transparent !important;
}
a.showlogin{
    font-weight: 400;
}
.gift-section{
    margin-top: 51px;
    margin-bottom: 94px;
}
.contact-page{
    margin-top: 51px;
    margin-bottom: 94px;
}
.gift-section h1,
.contact-page h1{
    font-size: 40px;
    text-align: center;
    font-weight: 900;
    margin-bottom: 70px;
}
.contact-page .cb-form form{
    display: flex;
    flex-direction: column;
}
.contact-page .cb-form input[type="submit"]{
    text-align: center;
    margin: 0 auto;
    margin-top: 20px;
}
.contact-page .wpcf7-not-valid-tip{
    position: absolute;
}
.contact-page .wpcf7-spinner{
    bottom: 0;
}
.page-template-template-gift .home-banner.inner{
    position: relative;
}
.gift-image {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    width: 512px;
    height: 550px;
    top: -20px;
}
.gift-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gift-content {
    text-align: center;
    margin-bottom: 62px;
}
.gift-amount-label{
    margin-bottom: 20px;
}
.gift-amount-label h2{
    color: #000;
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.amount-option {
    position: relative;
    cursor: pointer;
    width: 91px;
}

.amount-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    top: 0;
    left: 0;
    cursor: pointer;
}
.amount-option input[type="radio"]:checked + span {
    background-color: #66C1C0;
    color: #fff;
}
.amounts {
    display: flex;
    align-items: center;
    gap: 33px;
    justify-content: center;
}
.amount-option span{
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    width: 91px;
}
.amount-option.other span,
.amount-option.other{
    width: 135px;
}
.gift-amount{
    margin-bottom: 35px;
}
.gift_card_detail.cb-form label{
    color: #000;
    text-align: right;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding-bottom: 10px;
    padding-right: 16px;
}
.gift_card_detail.cb-form .inputWrap{
    margin-bottom: 10.5px;
}
.gift_card_detail.cb-form .flx{
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 46px;
    align-items: center;
}
.gift_card_detail.cb-form .flx .inputWrap{
    width: 100%;
}
.gift_card_detail.cb-form .inputWrap input::placeholder{
    color: #000;
    text-align: right;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.gift_card_detail .note{
    padding-bottom: 18px;
}
.gift_card_detail.cb-form{
    display: flex;
    flex-direction: column;
}
input#sbumitForomBTN{
    margin: 0 auto;
    text-align: center;
    width: 157px;
    background: #45BFE5;
    margin-top: 33px;
    margin-bottom: 17px;
}
input#sbumitPurchaseBTN{
    margin: 0 auto;
    text-align: center;
    width: 157px;
}
a.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained {
    color: #fff;
}
.about-title h1{
    color: #000;
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}
.about-section{
    margin-top: 51px;
}
.about-content-area{
    margin-top: 85px;
}
.about-image{
    width: 480px;
    height: 726px;
    z-index: -1;
    position: relative;
}
.about-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-content-area .flx{
    display: flex;
    gap:85px;
}
.about-content-text{
    max-width: 542px;
}
.about-content-text p strong{
    font-weight: 600;
}
.about-content-area{
    background-image: url("../images/about-bg.svg");
    aspect-ratio: 189 / 155;
    background-repeat: no-repeat;
    background-position: 97% 88%;
    margin-bottom: 47px;
}
.about-content-text{
    position: relative;
    z-index: 9;
}
.single-pro-form{
    margin-bottom: 85px;
}
.single-pro-form .cb-form-outer{
    display: block !important;
    padding-top: 0;
}
.single-pro-form .container-custom{
    background: #FFF;
    box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.10);
    padding: 0;
}
.single-pro-form .cb-form-outer h2{
    padding-top: 36px;
}
.single-pro-form .wpcf7-not-valid-tip{
    position: absolute;
}
#sbumitCouponForm .cb-form input:not([type="submit"]),
#sbumitCouponForm .cb-form textarea{
    font-weight: 400;
}
input#sbumitForomBTN:hover{
    background-color: #FDD047;
}
.inputErr {
    border: 1px solid red !important;
}
.header-inner.inside{
    width: 100%;
}
.header-inner.inside:before{
    display: none;
}
.header-inner .container-custom{
    width: 100%;
}


/*Mega menu*/
.main-nav {
    direction: rtl;
    background: rgba(253, 208, 71, 0.95);
    width: 100%;
    padding: 60px 40px 40px;
    box-sizing: border-box;
    font-family: inherit;
    padding-left: 0;
    padding-right: 0;
}

.nav-columns {
    display: flex;
    justify-content: space-between;
    gap: 0px;
    width: 1520px;
    box-sizing: border-box;
    margin: 0 auto;
}

.nav-col {
    position: relative;
    padding-right: 0px;
    padding-left: 0px;
}

.nav-col:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 391px;
    background-color: #fff;
}

.nav-col-title {
    color: #ffffff;
    font-size: 23px;
    font-weight: 700;
    margin: 0 0 0px;
    height: 60px;
    padding-right: 40px;
}

.nav-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap:0;
}

.nav-col ul li {
    margin-bottom: 0px;
}

.nav-col ul li a {
    color: #000;
    text-decoration: none;
    font-size: 20px;
    line-height: normal;
    transition: opacity 0.3s ease;
    font-weight: 500;
    justify-content: right;
    align-items: flex-start;
    padding: 15px 0;
    padding-right: 40px;
    padding-left: 25px;
}

/*.nav-col ul li a:hover {*/
    /*opacity: 0.7;*/
    /*text-decoration: underline;*/
/*}*/

/* Last column: icon + label items */
.nav-col-icons {
    padding-inline-end: 0;
}

.nav-col-icons ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.nav-icon-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: right;
    gap: 10px;
    color: #2b2b2b;
    text-decoration: none;
    font-size: 14px;
}

.nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main-nav ul a:after{
    display: none;
}
.nav-col.nav-col-icons ul li a{
    height: auto;
}
.nav-col.one {
    width: 383px;
}
.nav-col.two {
    width: 344px;
}
.nav-col.three{
    width: 317px;
}
.nav-col.four {
    width: 262px;
}
.nav-col.nav-col-icons{
    width: 214px;
}
.nav-col ul li:hover {
    background-color: #fff;
}
.nav-col ul li {
    transition: all 0.3s ease-in-out;
}
.nav-col.nav-col-icons ul li:hover{
    background-color: transparent;
}
.nav-col.nav-col-icons ul li a{
    padding-left: 0;
    padding-right: 0;
}
.nav-col.nav-col-icons ul li span.nav-icon-label{
    padding: 15px 0;
    padding-left: 25px;
    padding-right: 40px;
    width: 100%;
}
.nav-col.nav-col-icons ul li a .nav-icon{
    padding-left: 25px;
    padding-right: 40px;
}
.nav-col.nav-col-icons ul li span.nav-icon-label:hover{
    background-color: #fff;
}
.nav-col.nav-col-icons ul {
    gap: 0;
}
.wc-block-components-quantity-selector{
    border-radius: 0px !important;
}
.is-gift-card-row .wc-block-components-quantity-selector,
.is-gift-card-row .wc-block-components-quantity-selector__button {
    display: none !important;
}
.wc-block-components-totals-coupon__form .wc-block-components-totals-coupon__button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    height: 50px;
    background-color: #004E73;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.5s ease-in-out;
    color: #fff;
    text-decoration: none;
}
a.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    height: 36px;
    background-color: #004E73;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.5s ease-in-out;
    color: #fff;
    text-decoration: none;
}
.wc-block-components-totals-coupon__form .wc-block-components-totals-coupon__button:hover,
a.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained:hover{
    background-color: #FDD047;
    color: #040404;
}
.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name, table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name{
    color: #000000;
}
.safari .footer-form .wpcf7-not-valid-tip {
    position: absolute;
    width: 100%;
    right: 0;
}
.safari .single-pro-form .wpcf7-not-valid-tip {
    position: absolute;
    width: 100%;
    right: 0;
}
.safari .contact-page .wpcf7-not-valid-tip{
    right: 0;
    width: 100%;
}
.wc-block-grid.wp-block-product-new.wp-block-woocommerce-product-new.wc-block-product-new.has-4-columns {
    display: none;
}
h2.wp-block-heading.has-text-align-center.with-empty-cart-icon.wc-block-cart__empty-cart__title {
    display: block;
}
h2.wp-block-heading.has-text-align-center {
    display: none;
}
.date-wrap { position: relative; }
.fake-placeholder {
    position: absolute;
    right: 22px;
    top: 73%;
    transform: translateY(-50%);
    color: #000;
    pointer-events: none;
    opacity:0;
    visibility: hidden;
}
.ios .fake-placeholder{
    opacity: 1;
    visibility: visible;
}
body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link):focus{
    box-shadow: none !important;
    outline: none !important;
}
.home .home-banner{
    position: relative;
}
.home-banner.video{
    height: auto;
}
.home-banner.video video{
    width: 100%;
}
.ce-list .seats-num select{
    padding-right: 10px;
    font-weight: 600;
    width: 174px;
}
.ce-list .seats-num {
    margin-bottom: 0px;
}
.woocommerce-error li{
    padding-right: 30px !important;
}
.woocommerce-error::before, .woocommerce-info::before, .woocommerce-message::before{
    top: 1.2em;
}
span.price-currency {
    padding-right: 4px;
}
.celi-price {
    font-weight: 600;
}
/*.hw-box.pro-1 .hwbc-description{*/
    /*margin-bottom: 26px;*/
/*}*/
/*.hw-box.pro-2 .hwbc-description{*/
    /*margin-bottom: 44px;*/
/*}*/
/*.home-workshops .hwb-content p,*/
/*.home-workshops .hwbc-free-text{*/
    /*min-height: auto;*/
/*}*/
/*.hw-box.pro-2 .hwbc-free-text,*/
/*.hw-box.pro-1 .hwbc-free-text{*/
    /*margin-bottom: 33px;*/
/*}*/
/*.hw-box.pro-3 .hwbc-free-text{*/
    /*margin-bottom: 17px;*/
/*}*/
.on-demand .hwb-content h4{
    min-height: 29px;
}
label.privacy {
    width: 100%;
    display: flex;
}
label.privacy input{
    width: auto;
    height: auto !important;
    box-shadow: none !important;
}
span.wpcf7-list-item-label a{
    color: inherit;
    text-decoration: none;
    font-weight: 600;
}

.btn-custom.is-disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: default;
}
.celi-link{
    max-width: 135px;
}
.woocommerce-info a.showcoupon {
    display: unset !important;
    background-color: transparent !important;
    text-align: right !important;
    width: auto !important;
    color: inherit !important;
}

#woocommerce-checkout-form-coupon button{
    display: flex;
    float: none !important;
    align-items: center;
    justify-content: center;
    width: 157px;
    height: 36px;
    background-color: #004E73;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 0 !important;
    transition: all 0.5s ease-in-out;
}
#woocommerce-checkout-form-coupon button:hover{
    background-color: #FDD047;
    color: #040404;
}

.co-slots.celi-slots {
    padding-left: 80px;
    min-width: auto;
}
.gift_card_detail.cb-form .flx .inputWrap.send-type{
    display: flex;
    flex-direction: column;
}
.gift_card_detail.cb-form .flx .inputWrap.send-type select{
    border: none;
    outline: none;
    resize: none;
    background-color: #fff;
    text-align: right;
    color: #000;
    font-weight: 600;
    font-family: "Heebo", sans-serif;
    height: 33px;
    padding-right: 14px;
    width: 100%;
    border-radius: 0 !important;
    padding-right: 22px;
    height: 36.927px;
    box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.10);
}
.amount-option span{
    border: 1px solid transparent;
}
.page-template-template-checkout span.woocommerce-Price-amount.amount {
    display: flex;
    flex-direction: row-reverse;
    width: fit-content;
}
.cb-main .cb-thumb img{
    width: 100%;
    height: 100%;
}

/* Responsive: stack columns on smaller screens */
@media (max-width: 900px) {
    .nav-columns {
        flex-direction: column;
        gap: 30px;
    }

    .nav-col:not(:last-child)::after{
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -10px;
        height: 2px;
        background-color: #fff;
        width: 100%;
        top: auto;
    }

    .nav-col-icons ul {
        flex-direction: row;
        justify-content: center;
    }
}