/**
 * Fichier  : /features/quote/assets/css/recaptcha.css
 * Fonction : attribution et badge Google reCAPTCHA
 */


/* ==================================================
   GOOGLE BADGE
================================================== */

.grecaptcha-badge {
    visibility: hidden !important;
}


/* ==================================================
   RECAPTCHA
================================================== */

.quote-form__recaptcha {
    flex: 0 0 100%;
}

.quote-form__recaptcha {
    box-sizing: border-box;
    padding: 1.2em 1.4em;
}

.quote-form__recaptcha {
    display: flex;
    align-items: center;
    gap: 1em;
}

.quote-form__recaptcha {
    background: #f8f9fa;
    border: 1px solid #dadce0;
    border-radius: 4px;
}


/* ==================================================
   BRAND
================================================== */

.quote-form__recaptcha-brand {
    flex: 0 0 auto;
}

.quote-form__recaptcha-brand {
    display: flex;
    align-items: center;
    gap: 3px;
}


/* ==================================================
   BRAND DOT
================================================== */

.quote-form__recaptcha-brand span {
    display: block;
}

.quote-form__recaptcha-brand span {
    width: 5px;
    height: 5px;
}

.quote-form__recaptcha-brand span {
    border-radius: 50%;
}


/* ==================================================
   GOOGLE COLORS
================================================== */

.quote-form__recaptcha-brand span:nth-child(1) {
    background: #4285f4;
}

.quote-form__recaptcha-brand span:nth-child(2) {
    background: #ea4335;
}

.quote-form__recaptcha-brand span:nth-child(3) {
    background: #fbbc05;
}

.quote-form__recaptcha-brand span:nth-child(4) {
    background: #34a853;
}


/* ==================================================
   TEXT
================================================== */

.quote-form__recaptcha p {
    margin: 0;
}

.quote-form__recaptcha p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    line-height: 1.5;
    color: #5f6368;
}


/* ==================================================
   LINKS
================================================== */

.quote-form__recaptcha a {
    color: #1a73e8;
}

.quote-form__recaptcha a {
    font-weight: 500;
    text-decoration: none;
}

.quote-form__recaptcha a {
    transition:
        color var(--transition-state);
}


/* ==================================================
   LINKS HOVER
================================================== */

@media
    (hover: hover)
    and (pointer: fine) {

    .quote-form__recaptcha a:hover {
        color: #174ea6;
        text-decoration: underline;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media screen and (max-width: 700px) {

    .quote-form__recaptcha {
        align-items: flex-start;
    }

    .quote-form__recaptcha {
        padding: 1.1em 1.2em;
    }

}