/*--------------------------------------------------------------------------------------------------------------------*/
/* BUTTON
/*--------------------------------------------------------------------------------------------------------------------*/
.cta {
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 153.253px;
    height: 42.206px;
    margin: 0 auto;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    @include disable-text-selection();
    cursor: pointer;
    border-radius: 36.385px;
    border: 0.728px solid #E5C181;
    background: linear-gradient(90deg, #E9AA41 0%, #FFD863 50%, #E6AB40 100%);
    color: #7A4320;
    box-shadow:
        inset 0  3px 1px rgba(255, 255, 210, 0.5),
        inset 0 -3px 1px rgba(194, 157, 57, 1);

    &:hover,
    &:focus {
        text-decoration: none;
    }

    &:hover {
        background: linear-gradient(90deg, #E9AA41 0%, #FFD863 75%, #E6AB40 100%);
    }
}

.cta.cta--2 {
    box-shadow: none !important;
}

.cta.cta_long{
    width: 100%;
}

/* Fix spécifique iOS 16 pour le bouton "Je participe" */
.cta--participate {
    position: relative;
    z-index: 999;
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    -webkit-user-select: none;
    user-select: none;
}

.cta--getgift {
    width: 100%;
    max-width: 15.8125rem;
    height: 3.8125rem;
    line-height: 1.375rem;
    padding: 0.75rem 0;
    margin: 0.94rem auto 0;
}

.cta--getgift--cancel {
    background: #8A0021;
    width: 100%;
    max-width: 15.8125rem;
    height: 3.8125rem;
    line-height: 3.8125rem;
}
