/* :root {
    --primary_color: #8C72FF;
    --secondary_color: green;
    --accent1_color: #252B42;
    --background1_color: #15083E;
    --header1_color: brown;
    --disabled_color: purple;
} */

body {
    background: #15083E;
}

.grecaptcha-badge {
    display: block !important;
}

.illustration-contact__container {
    max-width: 1940px;
    margin: 0 auto;
    overflow-x: clip;
    align-items: center;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.illustration-contact-form__container {
    padding: 50px 10%;
    flex-direction: row;
    display: flex;
    margin-top: 100px;
    position: relative;
    column-gap: 20px;
}

.find-store-image-mobile,
.contact-us-image-mobile,
.form-ellipse-shape-mobile {
    display: none;
}

.contact-form-title,
.contact-form-subtitle,
.contact-form-label,
.agreement-text {
    color: #FFFFFF !important;
}

.contact-us-image__container {
    position: relative;
    width: 431px;
}

.form-ellipse-shape-desktop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
}

.contact-us-image-desktop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 774px;
}

.contact-form-customer-info {
    column-gap: 33px !important;
}

.contact-form__container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(50px);
    border-radius: 32px;    
}

.contact-form-label,
.contact-form-label-error,
.contact-form-input,
.contact-form-input-error {
    font-family: 'Inter' !important;
}

/* BEGIN Find store */
.find-store__container {
    background: #FFFFFF;
    padding: 50px 10%;
}

.find-store-card {
    position: relative;
    min-height: 431px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.find-store-information {
    display: flex;
    flex-direction: column;
    padding: 20px 10%;
    width: 60%;
    row-gap: 20px;
    padding-left: 5px;
}

.find-store-title {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    font-size: 48px;
    line-height: 56px;
    font-feature-settings: 'salt' on, 'liga' off;
    color: #565656;
}

.find-store-subtitle {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    font-feature-settings: 'liga' off;
    color: #565656; 
}

.find-store-button__container {
    width: 277px;
}

.location-icon {
    width: 42px;
}

.find-store-button {
    background: var(--secondary_color);
    border-radius: 15px;
    display: flex;
    margin: 15px;
    align-items: center;
    justify-content: center;
    column-gap: 5px;
    padding: 5px;
    margin-left: 0;
    padding-left: 0;
    min-height: 60px;
}

.find-store-button:hover {
    opacity: 0.8;
}
  
.find-store-button:active {
    opacity: 0.6;
}

.find-store-button-text {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 21px;
    line-height: 25px;
    color: #FFFFFF;    
}
/* ENDS Find store */


/* BEGIN Faq */
.faq__container {
    padding: 50px 10%;
    width: 80%;
}

.store-faq__container {
    background: #FFFFFF !important;
    border-radius: 32px;
    padding: 32px;
}

.store-faq__container {
    width: auto !important;
}
/* ENDS Faq */

/*Desktop ultra wide*/
@media (min-width: 1440px) {
    .contact-form-customer-info {
        column-gap: 25px !important;
    }

    .illustration-contact-form__container {
        column-gap: 50px;
    }

    #illustration-contact-form {
        width: 90%;
    }
}                                          
/*Desktop - Special Queries cases to change Desktop -> Tablet*/
@media (min-width: 1001px) and (max-width: 1150px) {
    /* BEGIN Contact form */
    .illustration-contact-form__container {
        flex-direction: column;
        row-gap: 50px;
    }

    .contact-us-image__container {
        margin-top: 30px;
        height: 400px;
        width: 100%;
    }

    .contact-us-image-desktop,
    .form-ellipse-shape-desktop,
    .find-store-image-desktop {
        display: none;
    }

    .contact-us-image-mobile,
    .form-ellipse-shape-mobile {
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .contact-us-image-mobile {
        width: 600px;
    }

    .form-ellipse-shape-mobile {
        display: none;
    }
    /* ENDS Contact form */

    /* BEGIN Find store */
    .find-store-information {
        padding: initial;
        align-items: center;
    }

    .find-store-card {
        flex-direction: column;
    }

    .find-store-title,
    .find-store-subtitle {
        text-align: center;
    }

    .find-store-image-mobile {
        display: block;
        width: 500px;
    }

    .find-store__container {
        padding-bottom: initial;
    }
    /* ENDS Find store */
}
/*Desktop 13"*/
@media (min-width: 1001px) and (max-width: 1439px) {
    .illustration-contact-form__container {
        column-gap: 70px;
    }
}
/*Tablet / iPads*/
@media (min-width: 763px) and (max-width: 1000px) {
    /* BEGIN Contact form */
    .illustration-contact-form__container {
        flex-direction: column;
        row-gap: 50px;
    }

    .contact-us-image__container {
        margin-top: 30px;
        height: 400px;
        width: 100%;
    }

    .contact-us-image-desktop,
    .form-ellipse-shape-desktop,
    .find-store-image-desktop {
        display: none;
    }

    .contact-us-image-mobile,
    .form-ellipse-shape-mobile {
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .contact-us-image-mobile {
        width: 600px;
    }

    .form-ellipse-shape-mobile {
        display: none;
    }
    /* ENDS Contact form */

    /* BEGIN Find store */
    .find-store-information {
        padding: initial;
        align-items: center;
    }

    .find-store-card {
        flex-direction: column;
    }

    .find-store-title,
    .find-store-subtitle {
        text-align: center;
    }

    .find-store-image-mobile {
        display: block;
        width: 500px;
    }

    .find-store__container {
        padding-bottom: initial;
    }
    /* ENDS Find store */    
}
/*Tablet - Mobile*/
@media (min-width: 1px) and (max-width: 762px) {
    /* BEGIN Contact form */
    .illustration-contact-form__container {
        flex-direction: column;
        row-gap: 50px;
    }

    .contact-us-image__container {
        margin-top: 30px;
        height: initial;
        width: 100%;
    }

    .contact-us-image-desktop,
    .form-ellipse-shape-desktop,
    .find-store-image-desktop {
        display: none;
    }

    .contact-us-image-mobile,
    .form-ellipse-shape-mobile {
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .form-ellipse-shape-mobile {
        display: none;
    }

    .contact-form-title {
        font-size: 32px !important;
        line-height: 32px !important;
    }

    .contact-form-subtitle {
        font-size: 16px !important;
        line-height: 20px !important;
    }

    .contact-form-agreement__container {
        align-items: flex-start !important;
    }
    /* ENDS Contact form */

    /* BEGIN Find store */
    .find-store-information {
        padding: initial;
        align-items: center;
        width: 100%;
    }

    .find-store-card {
        flex-direction: column;
    }

    .find-store-title,
    .find-store-subtitle {
        text-align: center;
    }

    .find-store-image-mobile {
        display: block;
        width: 500px;
    }

    .find-store__container {
        padding-bottom: initial;
    }

    .contact-us-image-mobile {
        width: 600px;
    }
    /* ENDS Find store */
}
/*Mobile - Special Queries cases to change Tablet -> Mobile*/
@media (min-width: 1px) and (max-width: 450px) {
    .form-ellipse-shape-mobile {
        width: 324px;
        display: none;
    }

    .find-store-image-mobile {
        width: 400px;
    }

    .contact-us-image-mobile {
        width: 350px;
    }

    .contact-us-image__container {
        height: 200px;
    }
}