#cta-container {
    position: fixed;
    bottom: 75px;
    right: 21px;
    z-index: 9999;
}

.cta-switch-button {
    pointer-events: auto;
    background-color: #31354e;
    color: #fff;
    padding: 10px 21px 10px 12px;
    text-decoration: none;
    border-radius: 20px 20px 0 20px;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    gap: 9.7px;
    line-height: 24px;
    font-family: var(--global--font-primary);
    -webkit-tap-highlight-color: transparent;
    box-shadow: 0 0 10px rgb(0 0 0 / 30%);
    display: none;
}

.cta-switch-button:hover {
    cursor: pointer;
    text-decoration: none;
}

.cta-card {
    position: absolute;
    top: -310px;
    right: 0;
    width: 255px;
    height: 293px;
    border-radius: 11px;
    background-color: #31354e;
    transition: opacity 0.2s ease, transform 0.2s ease;
    text-align: center;
    display: none;
    font-family: var(--global--font-primary);
    box-shadow: 0 0 10px rgb(0 0 0 / 30%);
}

.cta-card > * {
    padding: 0;
    margin: 0px;
}

.cta-card.active {
    display: block;
    animation: slide-in 0.3s ease-in-out;
    transform: translateY(0);
}

.cta-switch-button.active{
    display: flex;
    animation: slide-in 0.3s ease-in-out;
    transform: translateY(0);
}

.close-button {
    position: absolute;
    top: 0;
    right: 0;
    border: none;
    background-color: transparent;
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    cursor: pointer;
    margin: 16.5px 20px 0 0;
    width: 18px;
    height: 18px;
    -webkit-tap-highlight-color: transparent;
}
.close-button:hover {
    opacity: 0.7;
}

@keyframes slide-in {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cta-avatar {
    max-width: 90px;
    margin: 39px 0 18px 0;
}
.cta-desc {
    font-size: 12px;
    line-height: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
}
.desc-important {
    color: #ffffff;
    font-weight: bold;
    font-size: 14px;
}
.cta-phone-number {
    font-size: 24px;
    line-height: 29px;
    color: #67a4ff;
    font-weight: 700;
    margin-bottom: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.cta-identification {
    font-size: 12px;
    line-height: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 36px;
}

@media screen and (max-width: 500px) {
    .close-button {
        font-size: 20px;
        width: 32px;
        height: 32px;
    }
}

@media screen and (max-width: 768px) {
    .cta-phone-number .phone-number-mobile {
        display: block;
    }
    .phone-number-pc{
        display: none;
    }
}

.phone-number-mobile {
    display: none;
}
