.my-35 {
    margin-top: 35px;
    margin-bottom: 35px;
}


.mob-offerPopUp {
    border-radius: 12px;
    bottom: 20px;
    box-shadow: 0 4px 24px rgba(46, 48, 59, .12);
    overflow: hidden;
    padding: 20px;
    text-align: center;

    width: 375px;
}
.mob-offerPopUp h4{
    margin-bottom: 3px;
}
.gap-15 {
    gap: 15px;
}
.gap-10 {
    gap: 10px;
}
.gap-5 {
    gap: 5px;
}

.p-0 {
    padding: 0;
}
.copy-button {
    color: #080341;
}

.offer-code-container {
    padding: 15px;
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.offer-code-label {
    color: #666;
    font-size: 14px;
}

.offer-code-box {
    flex-basis: 100%;
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 5px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.offer-code {
    font-weight: bold;
    font-size: 16px;
    color: #333;
}

.copy-button {
    background: none;
    border: none;
    color: #2196F3;
    cursor: pointer;
    font-size: 14px;
    padding: 5px 10px;
}

.copy-button:hover {
    color: #1976D2;
}

.px-0 {
    padding-left: 0;
    padding-right: 0;
}

.button-labeled-fix {
    color: #313131;
    background: #e0e0e0;
    font-size: 12px;
    border-radius: 6px;
    position: absolute;
    padding: 0 4px;
}

.rt-products-box-close {
    background: #f0f2f7;
    border-radius: 6px;
    color: #5e6475 !important;
    font-size: 24px;
    line-height: 1;
    text-align: center;
    z-index: 2;
    width: 40px;
    height: 40px;
}
.rt-products-box-close:before {
    content: "M";
    font-family: ElegantIcons;
}

.rt_timer_popup {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 6px;
    direction: ltr;
}
.rt_timer_popup_item:is(.minutes, .seconds) {
    font-weight: bold;
    padding: 3px 0;
    line-height: 30px;
    border-radius: 6px;
    background: #ff5084;
    /* background-color: #5091fa; */
    color: #f1f1f1;
    text-align: center;
    min-width: 35px;
}

.rt_timer_popup_item {
    font-size: 18px;
    font-weight: bold;
    padding: 2px 2px;
    border-radius: 6px;
    color: #ff5084;
    /* color: #5091fa; */
}

.rt_timer_popup_item:not(:last-child):after {
    content: "";
    margin-left: 0;
}

.rt_timer_popup_item.separator {
    margin: 0 -2px;
}

.offset-popup-top {
    margin: -8px;
    margin-bottom: 10px;
}
.offset-popup-top.lone-close {
    margin-bottom: -25px;
    float: left;
}
.limit-offer-code-title{
    font-size: 14px;
    text-align: right;
}

.w-\[80px\] {
    width: 80px;
}
.align-items-start {
    align-items: start;
}
.d-flex.align-items-center.gap-5.justify-content-stretch {
    justify-content: space-between;
}

/* Loading animation for submit buttons */
.button[type="submit"].loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.button[type="submit"].loading:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    animation: popup-spinner 0.8s linear infinite;
    z-index: 2;
}

@keyframes popup-spinner {
    to {
        transform: rotate(360deg);
    }
}

.close-button-offer-popup{
    cursor: pointer;
    z-index: 7;
}

/* Popup overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: none;
}

/* Popup positioning */
.mob-offerPopUp {
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(46, 48, 59, .12);
    overflow: hidden;
    padding: 20px;
    text-align: center;
    width: 375px;
    background-color: #fff;
    max-height: 90vh;
    overflow-y: auto;
}

/* Animation for popup */
@keyframes slideFromBottom {
    from {
        bottom: -100%;
        opacity: 0;
    }
    to {
        bottom: 50%;
        opacity: 1;
    }
}

/* Corner popup styling */
#readyDemoPopup {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
}

/* Add a subtle bounce effect to the popup */
@keyframes popup-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

#readyDemoPopup:hover {
    animation: popup-bounce 1s ease infinite;
}