﻿.cta-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
}

.cta-item {
    font-size: 14px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
}

.icon-blue {
    color: #1680fb !important;
}

.pt-25 {
    padding-top: 25px
}

.pb-25 {
    padding-bottom: 25px
}
/* ==========================================================================
   REMOTE SUPPORT POPUP
   ========================================================================== */

#remote-support-popup[hidden] {
    display: none !important;
}

.remote-support-popup {
    position: fixed !important;
    right: 28px;
    bottom: 28px;
    z-index: 999999;
    width: 360px;
    max-width: calc(100vw - 32px);
    background-color: #fff;
    border: 1px solid #f5f6f6;
    padding: 26px 24px 24px;
    overflow: hidden;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, .08);
    animation: remoteSupportIn 350ms ease-in-out;
}

    .remote-support-popup:before {
        position: absolute;
        content: '';
        width: 160px;
        height: 160px;
        right: -70px;
        top: -70px;
        background-color: rgba(22, 128, 251, .08);
        border-radius: 100%;
        z-index: 0;
    }

    .remote-support-popup:after {
        position: absolute;
        content: '';
        width: 90px;
        height: 90px;
        left: -45px;
        bottom: -45px;
        background-color: rgba(22, 128, 251, .06);
        border-radius: 100%;
        z-index: 0;
    }

.remote-support-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
}

.remote-support-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    margin-right: 18px;
    text-align: center;
    color: #1680fb;
    background-color: #f4f9fc;
    border-radius: 16px;
}

    .remote-support-icon span,
    .remote-support-icon span:before,
    .remote-support-icon span:after {
        line-height: 58px !important;
    }

.remote-support-content {
    flex: 1;
}

.remote-support-label {
    display: block;
    color: #1680fb;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.remote-support-content h6 {
    line-height: 1.25;
    margin-bottom: 8px;
}

.remote-support-content p {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 16px;
}

.remote-support-close {
    position: absolute;
    top: 10px;
    right: 12px;
    z-index: 3;
    width: 30px;
    height: 30px;
    color: #929394;
    background-color: transparent;
    border: none;
    border-radius: 100%;
    font-size: 1.35rem;
    line-height: 30px;
    padding: 0;
    cursor: pointer;
    transition: all 300ms ease-in-out;
}

    .remote-support-close:hover {
        color: #353f4f;
        background-color: #f4f4f9;
    }

.remote-support-widget {
    margin-top: 4px;
}

@keyframes remoteSupportIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 575px) {
    .remote-support-popup {
        right: 16px;
        bottom: 16px;
        width: calc(100vw - 32px);
        padding: 24px 20px 22px;
    }

    .remote-support-inner {
        display: block;
    }

    .remote-support-icon {
        margin-right: 0;
        margin-bottom: 16px;
    }
}