.fccta-button {
    position: fixed;
    right: 90px;
    bottom: 0px;
    z-index: 99999;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-width: 210px;
    padding: 12px 30px;

    background-color: #ffffff;
    color: #112f5f;

    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    text-decoration: none;

    border-radius: 0;
    border-left: 6px solid #e10a17;

    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);

    transition: all 0.25s ease;
}

.fccta-button::after {
    content: "→";
    font-size: 20px;
    line-height: 1;
    color: #e10a17;
    transition: transform 0.25s ease;
}

.fccta-button:hover,
.fccta-button:focus {
    background-color: #e10a17;
    color: #ffffff;
    /*transform: translateY(-4px);*/
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.55);
    text-decoration: none;
}

.fccta-button:hover::after,
.fccta-button:focus::after {
    color: #ffffff;
    transform: translateX(4px);
}

.fccta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.fccta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.fccta-icon svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .fccta-button {
        left: 50%;
        right: auto;
        bottom: 0px;

        transform: translateX(-50%);

        min-width: auto;
        padding: 14px 22px;
        font-size: 13px;
    }
}