#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #c3f842;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.booking-container {
    margin: 0 auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.carpet-cleaning-heading {
    color: #2a2a2a;
    font-size: 36px;
    text-align: center;
    font-weight: 400;
    margin-bottom: 30px;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.progress-steps .step {
    flex: 1;
    text-align: center;
    padding: 12px;
    background: #f8f9fa;
    color: #6c757d;
    font-weight: 600;
    position: relative;
}

.progress-steps .step:first-child {
    border-radius: 5px 0 0 5px;
}

.progress-steps .step:last-child {
    border-radius: 0 5px 5px 0;
}

.property-active-class,
.furnished-active-class,
.booking-active-class {
    background: #c3f842 !important;
    color: black !important;
}

.booking-step h3 {
    color: #2a2a2a;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.booking-step h5 {
    color: #495057;
    font-size: 18px;
    margin: 25px 0 15px;
    font-weight: 600;
}

.radio-inline {
    position: relative;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
    vertical-align: middle;
    cursor: pointer;
}

.radio-btn {
    background-color: #e7e8e8;
    color: #495057;
    display: inline-block;
    font-size: 15px;
    padding: 12px 20px;
    text-align: center;
    width: 175px;
    border-radius: 4px;
    transition: all 0.3s;
}

.property-type,
.furnished-status {
    position: absolute !important;
    opacity: 0;
}

#house-stories,
#apartment-floors {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
    margin-bottom: 20px;
}

#house-stories p,
#apartment-floors p {
    font-weight: 600;
    color: #495057;
    margin-bottom: 10px;
}

#house-stories label,
#apartment-floors label {
    display: block;
    margin-bottom: 3px;
    color: #495057;
    cursor: pointer;
    position: relative;
}


.property-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
}

.property-details h5[style*="color: red"] {
    font-size: 18px;
    color: #2a2a2a !important;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #c3f842;
}

.property-details h5[style*="color: red"]::after {
    content: "(Select at least one)";
    display: block;
    font-size: 13px;
    color: #d9534f;
    font-weight: 400;
    margin-top: 5px;
}

.property-details h5:not([style*="color: red"]) {
    font-size: 18px;
    color: #6c757d;
    font-weight: 600;
    margin-bottom: 15px;

    border-bottom: 2px solid #dee2e6;
}

h5,
h6 {
    color: #000000 !important;
}

.property-details .row>.col-md-6 {
    margin-bottom: 15px;
}

.property-details .col-6 p {
    font-size: 15px;
    color: #495057;
    font-weight: 500;
    margin: 0;
    line-height: 32px;
}

.property-details .counter {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.property-details .counter button {
    background-color: #c3f842;
    border: none;
    color: black;
    width: 32px;
    height: 32px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
}

.property-details .counter button:hover {
    background-color: #a9e02d;
}

.property-details .counter button.decrease {
    border-radius: 4px 0 0 4px;
}

.property-details .counter button.increase {
    border-radius: 0 4px 4px 0;
}

.property-details .counter input {
    width: 45px;
    height: 32px;
    text-align: center;
    border: 1px solid #ddd;
    border-left: none;
    border-right: none;
    margin: 0 -1px;
    font-size: 14px;
    color: #495057;
    background: white;
    padding: 0;
    -moz-appearance: textfield;
}

.property-details .counter input::-webkit-outer-spin-button,
.property-details .counter input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.property-details h5 {
    font-size: 18px;
    color: #fff !important;
    background-color: #000;
    font-weight: 600;
    margin: 20px 0 15px;
    border-radius: 4px;
    text-transform: uppercase;
    text-align: center;
    padding: 15px;
    border-bottom: 2px solid #dee2e6;
}


.service-option {
    margin-bottom: 25px;
    padding: 15px 0;
    background: #f8f9fa;
    border-radius: 5px;
}

.service-option strong {
    color: #2a2a2a;
    font-size: 16px;
}

.service-option label {
    display: flex;
    font-size: 16px;
    margin-bottom: 5px;
    margin-top: 10px;
    color: #495057;
    cursor: pointer;
}

.service-option input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    margin-top: 3px !important;
    accent-color: #c3f842;
}

.service-option p {
    margin-left: 15px;
    color: #6c757d;
    font-size: 14px;
    line-height: 1.5;
}

.booking-step .user-details input,
.booking-step .booking-service-details input,
.booking-step .booking-service-details select,
.booking-step .booking-service-details textarea {
    background-color: #c3f842;
    border: none;
    color: black;
    font-size: 15px;
    height: 45px;
    margin: 10px 0;
    padding: 5px 15px;
    width: 100%;
    outline: none;
    border-radius: 4px;
    transition: all 0.3s;
}

.booking-step .user-details input:focus,
.booking-step .booking-service-details input:focus,
.booking-step .booking-service-details select:focus,
.booking-step .booking-service-details textarea:focus {
    box-shadow: 0 0 0 3px rgba(195, 248, 66, 0.3);
}

.booking-step .user-details input::placeholder,
.booking-step .booking-service-details input::placeholder,
.booking-step .booking-service-details textarea::placeholder {
    color: rgba(0, 0, 0, 0.7);
}

.booking-step .booking-service-details textarea {
    height: 100px;
    padding: 12px 15px;
    resize: vertical;
}

.datepicker-container {
    background-color: #c3f842;
    padding: 5px 15px;
    position: relative;
    width: 100%;
    height: 45px;
    margin: 10px 0;
    border-radius: 4px;
}

.datepicker-container #datepicker {
    border: none;
    background: none;
    font-size: 15px;
    padding: 0;
    margin: 0;
    width: 92%;
    height: 35px;
    position: relative;
    z-index: 9;
    color: black;
}

.next-btn,
.back-btn {
    background-color: #000;
    border: none;
    color: #fff;
    font-size: 16px;
    padding: 12px 30px;
    text-align: center;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s;
    font-weight: 600;
}

/* Next Button */
.next-btn {
    border: 2px solid #c3f842;
    color: #c3f842;
}

/* Back Button */
.back-btn {
    border: none;
    color: #fff;
}
select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 2em;
    background-color: #ccff33;
    background-image: url('data:image/svg+xml;utf8,<svg fill="black" height="12" viewBox="0 0 24 24" width="12" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 0.6em center;
    background-size: 2em;
    border: none;
    color: black;
}

.next-btn:hover,
.back-btn:hover {
    background-color: #c3f842;
    color: #000000 !important;
    transform: translateY(-2px);
}

#nextToStep2 {
    float: right;
}

.button-group {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 30px;
}

@media (max-width: 768px) {

    .button-group{
        flex-direction: column;
    }

    .next-btn{
        order: 1;
    }

    .back-btn{
        order: 2;
    }

}

/* Booking Summary */
.booking-summary {
    background: #000;
    color: #fff;
    padding: 25px;

    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.booking-summary .service-icon {
    margin-right: 15px;
}

.booking-summary .service-details {
    width: 100%;
    margin-top: 5px;
}

.booking-summary .service-detail {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 10px;
}

.booking-summary .service-details p {
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 16px;
}

.booking-summary .img-fluid {
    display: block;
    width: 50px;
    border-radius: 50%;
}

.booking-summary .service-header {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
}

.booking-summary .service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.booking-summary .service-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
    padding: 5px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
}

.booking-summary .sub-total-details {
    color: #fff;
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    padding: 10px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.booking-summary .tax-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
    font-size: 15px;
}

.booking-summary .total-section {
    background-color: white;
    color: #000;
    padding: 15px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 4px;
    font-weight: 600;
    font-size: 18px;
}

.booking-summary .minimum-fee {
    color: #fff;
    font-size: 13px;
    margin-top: 15px;
    line-height: 1.5;
}

.error-message {
    color: #F58138;
    font-size: 14px;
    margin-top: -10px;
    margin-bottom: 15px;
    padding: 8px 12px;
    background-color: #f8f8f8;
    border-left: 3px solid #d9534f;
    border-radius: 0 4px 4px 0;
}

.coupon-section {
    max-width: 600px;
    margin: 0 auto;

}

.coupon-section p {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.coupon-section {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.coupon-section input[type="text"] {
    flex: 1;
    min-width: 150px;
    padding: 6px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

.coupon-section button {
    padding: 6px 17px;
    background-color: #c3f842;
    color: #000;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: .9rem;
    cursor: pointer;
    white-space: nowrap;
}

.coupon-field {
    display: flex;
    gap: 8px;
}

#couponCode-error {
    color: red;
    font-size: 0.9rem;
    margin-top: 5px;
}

#couponCode-success {
    color: green;
    font-size: 0.9rem;
    margin-top: 5px;
}



html,
body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #f5f7fa;
}

.trust-wrapper {
    background: #ffffff;
    padding: 20px 20px;
    border-radius: 16px;
    text-align: center;
}

header {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    background-color: #fff;
    margin-bottom: 20px;
}

header .logo img {
    max-width: 220px;
}

.trust-badge {
    text-align: center;
    padding: 25px 15px;
}

.trust-badge img {
    height: 80px;
    margin-bottom: 15px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.trust-badge p {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
}

.stars {
    color: #FFC107;
    font-size: 16px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

@media (max-width: 767px) {
    .trust-badge {
        padding: 15px 10px;
    }

    header .logo img {
        max-width: 120px;
    }

    .h1,
    h1 {
        font-size: 1.5rem;
    }

    .h2,
    h2 {
        font-size: 1.5rem;
    }

    .tabs {
        display: block !important;
    }
    /* When footer is visible, hide by sliding down */
.booking-summary-container.hide-on-footer {
    transform: translateY(100%)!important;
}

    .tab {
        padding: 6px 0px !important;
        font-size: 16px !important;
    }

    .tab.active {
        font-size: 16px !important;
    }

    .carpet-cleaning-heading {
        font-size: 24px;
    }

    .booking-step h3 {
        margin-bottom: 10px;
    }

    .booking-step h5 {
        margin: 10px 0 10px;
        font-size: 16px;
    }

    .property-details {
        padding: 10px;
        margin-top: 0px;
    }


    .booking-summary-container {
        bottom: 10px !important;
    }
    .booking-summary-container:not(.collapsed){
                bottom: 0 !important;
    }

    .progress-steps{
        margin-bottom: 15px;
    }
        .booking-step h3 {
        font-size: 22px;
    }
    .booking-summary-toggle {
        padding: 30px 15px !important;
    }

    .carpet-cleaning-heading {
        font-size: 20px;
    }
    .booking-summary-toggle .order-summary{
                width: 80%!important;
        margin: 0 auto!important;
    }

    .trust-badge img {
        height: 36px;
    }

    .stairs-radio {
        width: 77% !important;
    }

    .trust-badge p {
        font-size: 13px;
    }

    .stars {
        font-size: 18px;
    }

    .trust-wrapper .logo {
        max-width: 180px;
        margin-bottom: 20px;
    }
}

.testimonials-section {
    background: #fff;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.testimonial-card {
    border-left: 3px solid #c3f842;
    border-radius: 0 8px 8px 0;
    padding: 20px;
    margin-bottom: 20px;
    background: #fafafa;
    position: relative;
}

.testimonial-card .stars {
    color: #FFC107;
    margin-bottom: 10px;
    font-size: 18px;
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
    border: 2px solid #c3f842;
}

.testimonial-card {
    position: relative;
    padding-bottom: 40px;
}


.testimonial-card::after {
    content: "";
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/c/c1/Google_%22G%22_logo.svg/2048px-Google_%22G%22_logo.svg.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.7;
}

.header-banner {
    background: #000;
    color: #fff;
    padding: 15px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    animation: gentlePulse 1s ease-in-out infinite;
    transform-origin: center;
    will-change: transform;
}

@keyframes gentlePulse {
    0% {
        transform: scale(1);
    }

    30% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

.header-banner:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right,
            rgba(255, 255, 255, 0.3) 0%,
            rgba(255, 255, 255, 0) 60%);
    transform: rotate(30deg);
    pointer-events: none;
    z-index: 0;
}

.guarantee-badge {
    background: #fff;
    border: 2px solid #c3f842;
    border-radius: 50px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    margin: 20px 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.guarantee-badge i {
    color: #c3f842;
    font-size: 24px;
    margin-right: 10px;
}

.guarantee-badge div {
    line-height: 1.2;
}

.guarantee-badge strong {
    display: block;
    font-size: 16px;
}

.guarantee-badge small {
    font-size: 12px;
    opacity: 0.8;
}

.trust-icon {
    font-size: 28px;
    color: #c3f842;
    margin-bottom: 10px;
}

.rating-box i {
    margin-right: 2px;
}

.trustpilot i {
    color: #fff;
    background: #00b67a;
    width: 18px;
    height: 18px;
    line-height: 18px;
    font-size: 10px;
}

.capterra i {
    color: #ff9f00;
}

.g2 i {
    color: #f24d2d;
}

.logos img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}


@media (max-width: 767px) {
    .trust-badge {
        padding: 10px 5px;
    }

    .logos img {
        width: 75px;
        height: auto;
    }

    .trust-badge img {
        height: 30px;
    }

    .trust-badge p {
        font-size: 12px;
    }

    .header-banner h4 {
        font-size: 16px;
    }
    
   .custom-cursor__cursor,
.custom-cursor__cursor-two {
    display: none !important;
}

/* Make sure datepicker container shows the icon properly */
    .datepicker-container {
        position: relative;
    }
    
    .datepicker-container i.fa-calendar {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        color: #000;
        font-size: 18px;
        pointer-events: none;
    }
    
    /* If using Remix Icon instead */
    .datepicker-container i.ri-calendar-line {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        color: #000;
        font-size: 18px;
        pointer-events: none;
    }
    
    /* Force jQuery UI datepicker to position correctly */
    .ui-datepicker {
        max-width: 90vw;
        z-index: 9999 !important;
    }
}



@media (max-width: 1199px) and (min-width: 992px) {
    .coupon-section input[type="text"] {
        width: 65%;
    }

    .coupon-field {
        gap: 5px;
    }

    .coupon-section button {
        padding: 6px 11px;
    }


}


@media (max-width: 991px) {
 
    body.summary-collapsed {
        padding-bottom: 50px;
    }
.scroll-to-top {
        display: none !important;
    }
    .carpet-cleaning-heading {
        font-size: 28px;
    }

    .booking-step h3 {
        font-size: 24px;
    }

    .booking-summary-container {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: #000;
        color: #fff;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
        transform: translateY(0);
        transition: transform 0.3s ease;
        border-radius: 12px 12px 0 0;
        max-height: 70vh;
        overflow: hidden;
        touch-action: none;
        will-change: transform;
    }

    .booking-summary-container.collapsed {
        transform: translateY(calc(100% - 50px));
        pointer-events: none;
    }

    .booking-summary-container:not(.collapsed) {
        position: fixed;
        bottom: 0;
    }

    .booking-summary-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 15px;
        background: #c3f842;
        color: #000000;
        font-weight: 600;
        cursor: pointer;
        border-radius: 12px 12px 0 0;
        height: 50px;
        position: relative;
        z-index: 1001;
        -webkit-tap-highlight-color: transparent;
        user-select: none;
        pointer-events: auto;
    }

    .booking-summary-container.hide-on-footer {
    transform: translateY(100%)!important;
}

    body.panel-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    .booking-summary-toggle .order-summary {
        display: flex;
        align-items: center;
        width: 100%;
    }

    .booking-summary-toggle .total-price {
        font-weight: bold;
        margin-left: auto;
        padding-right: 8px;
    }

    .booking-summary-toggle .toggle-icon {
        font-size: 20px;
        transition: transform 0.3s ease;
        transform: rotate(180deg);
    }

    .booking-summary-container.collapsed .toggle-icon {
        transform: rotate(0deg);
    }

    .booking-summary {
        padding: 15px;
        max-height: calc(70vh - 50px);
        overflow-y: auto;
    }

    .total-section {
        background: #c3f842 !important;
        color: black !important;
    }

    .coupon-field {
        display: flex;
        gap: 10px;
    }


    .coupon-section input[type="text"] {
        width: 100%;
        padding: 0 5px;
    }

    .coupon-section {
        display: block;
        max-width: 100%;

    }

    .coupon-section .error-message {
        margin-top: -2px;
    }

    .tabs{
            gap: 8px!important;
    }
    .tab,
    .tab.active{
        font-size: 16px!important;
    }
}

@media (max-width: 767px) {
    .radio-btn {
        width: 140px;
        font-size: 14px;
        padding: 10px 15px;
    }

    header .logo{
            text-align: center;
    }
    
    .property-details .col-6 p {
        font-size: 14px;
    }

    .property-details .counter input {
        width: 35px;
    }

    .property-details .counter button {
        width: 30px;
        height: 30px;
    }

    .coupon-field {
        flex-wrap: nowrap !important;
    }

    .coupon-section input[type="text"] {
        flex: 1 !important;
        min-width: 0;
    }

    .coupon-section button {
        flex-shrink: 0;
    }
}

@media (max-width: 575px) {
    .progress-steps .step {
        font-size: 14px;
        padding: 8px 5px;
    }

    .radio-btn {
        width: 120px;
        padding: 8px 10px;
    }

    .button-group {
        flex-direction: column;
    }

    #nextToStep2 {
        float: none;
        width: 100%;
    }

    .coupon-field {
        display: flex;
        gap: 0;
    }


    .coupon-section input[type="text"] {
        width: 100%;
        padding: 0 5px;
    }

    .coupon-section {
        display: block;
    }

    .coupon-section button {
        flex-shrink: 0;
        padding: 6px 6px;
        font-size: .7rem;
        margin-left: 5px;
    }

    .back-btn {
        width: 100%;
    }
}

@media (min-width: 992px) {
    .booking-summary-container {
        position: static;
        top: auto;
        margin-bottom: 20px;
        background: #fff203;
        color: black;
        border-radius: 8px
    }

    .booking-summary-toggle {
        display: none;
    }

    .booking-summary {
        padding: 15px;
        display: block !important;
    }

    .total-section {
        background: #c3f842 !important;
    }
}

.ri-arrow-up-line:before {
    content: "\ea78";
    font-family: 'remixicon' !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
}

input[type="radio"]:checked,
input[type="checkbox"]:checked {
    border-color: #c3f842;
    /*background-color: #c3f842;*/
}

input[type="radio"] {
    appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid #c3f842;
    margin-right: 10px;
    position: relative;
    cursor: pointer;
    vertical-align: middle;
    transition: var(--transition);
}


input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #c3f842;
}

.stairs-radio {

    width: 65%;
    margin: 0 auto;
    text-align: right;

}

p span {

    font-size: 14px;
    color: green;
}

h5 span {

    font-size: 14px;
    color: green;
}

.nocallout {
    font-size: 14px;
    color: green;
    text-align: center;
    font-weight: 600;
    animation: blink-animation 1s steps(2, start) infinite;
}

@keyframes blink-animation {
    to {
        visibility: hidden;
    }
}



.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 25px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.switch input:checked+.slider {
    background-color: #c3f842;
}

.switch input:checked+.slider:before {
    transform: translateX(26px);
}

.toggle-btn {

    text-align: center;
    margin-left: 30px;
}

.ui-datepicker {
    display: none !important;
}

/* Hide flatpickr's hidden mobile/alt input that's causing the duplicate */
.flatpickr-input.flatpickr-mobile,
input.flatpickr-mobile {
    display: none !important;
}

/* Make sure only the visible datepicker input is styled */
.datepicker-container input.flatpickr-input {
    background-color: transparent !important;
    background: none !important;
    height: 35px !important;
    margin: 0 !important;
    width: 92% !important;
    padding: 0 !important;
    border: none !important;
    color: black !important;
}


