/** Shopify CDN: Minification failed

Line 435:0 Unexpected "}"

**/

/* *************************************************************************** */
/* ***************************** DEFAULT MODAL ****************************** */
/* *************************************************************************** */

/* MODAL */
.modal--customer-portal {

    display: none;
    opacity: 0;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    transition: opacity 1s ease-in;
}

.modal.active {
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.modal-content {
    margin: auto;
    padding: 0.5em 1em;
    background-color: white;
    border-radius: 30px;
    width: 75%;
    position: relative;
}

.close {
    font-size: 5rem;
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    height: 20px;
    width: 20px;
    left: 98%;
    top: -2%;
    padding: 1em 1em 0 0;
    transform: translate(-90%, -20%);
}

.close svg {
    cursor: pointer;
}


.close:hover svg line {
    stroke: white;
}

.close:hover svg circle {
    fill: #235a4e;
}


.modal-header .close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    max-height: 90vh;
    padding: 0.6em 0;
    margin-bottom: 1rem;
}

.modal-header div {
    margin-left: 100%;
    display: flex;
}

.modal-header h2 {
    text-align: center;
    font-weight: 700;
    color: #235a4e;
    font-size: 3rem;
    margin: 0;
    padding: 0 2em;
}

.modal-footer {
    display: flex;
    margin: 1em auto 0;
    width: 80%;
    flex-direction: column;
}

@media screen and (max-width: 1000px) {
    .modal-content {
        padding: 1.5em 0;
        width: 95%;
    }


    .modal-header h2 {
        font-size: 2.5rem;
    }
}



@media screen and (max-width: 750px) {
    .modal-content {
        font-size: 1.5rem;
        padding: 1.5em 0;
        width: 100% !important;
        border-radius: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .modal-header h2 {
        font-size: 2rem;
    }

    .close {
        left: 97%;
        top: -3%
    }

}

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

    .modal-header h2 {
        font-size: 1.8rem;
    }

    .close {
        left: 98%;
        top: -3%
    }

    .close svg {
        height: 22px;
        width: 22px;
    }
}

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

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .close {
        left: 98%;
        top: -4%
    }

}

/* *************************************************************************** */
/* ********************** CUSTOMER PORTAL MODAL ****************************** */
/* *************************************************************************** */


.modal--customer-portal {
    padding: 1em 0.5em;
    position: fixed;
    display: none;
    opacity: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;

    overflow: scroll;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    transition: opacity 1s ease-in;
}

.modal--customer-portal.active {
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.modal--customer-portal .modal-content {
    max-width: 60rem;
    margin: auto;
    background-color: white;
    border-radius: 30px;
    position: relative;
    padding: 1em 2em;
}


.modal--customer-portal .modal-content--small {
    max-width: 50rem;
    margin: auto;
    background-color: white;
    border-radius: 30px;
    position: relative;
    padding: 1em 2em;
}
.modal--customer-portal .modal-content--large{
    max-width: 100vh;    margin: auto;
    background-color: white;
    border-radius: 30px;
    position: relative;
    padding: 1em 2em;
}
.modal--customer-portal .button {
    background-color: #205a4e;
    color: white;
    width: 100%;
    padding: 0.3em 0;
    border: 2px solid #235A4E;
    font-weight: bold;
    border-radius: 30px;
    transition: background-color 0.2s ease-out, color 0.2s ease-out;
    font-family: inherit;
    font-size: 1.5rem;
}

.modal--customer-portal .button:hover {
    cursor: pointer;
    background-color: #ffffff;
    color: #235A4E;
}

.modal--customer-portal .button--secondary {
    background-color: #ffffff;
    color: #235A4E;
    width: 100%;
    padding: 0.3em 0;
    border: 2px solid #235A4E;
    font-weight: bold;
    border-radius: 30px;
    transition: background-color 0.2s ease-out, color 0.2s ease-out;
    font-family: inherit;
    font-size: 1.5rem;
}

.modal--customer-portal input[type="checkbox"] {
    accent-color: #235A4E;
    -ms-transform: scale(1.5);
    /* IE */
    -moz-transform: scale(1.5);
    /* FF */
    -webkit-transform: scale(1.5);
    /* Safari and Chrome */
    -o-transform: scale(1.5);
    /* Opera */
    transform: scale(1.5);
    padding: 8px;

}

.modal--customer-portal .button--secondary:hover {
    cursor: pointer;
    color: #ffffff;
    background-color: #235A4E;

}

.modal--customer-portal .modal-header {
    margin: 0.5rem 0 2rem;
}

.modal--customer-portal .modal-header--small {
    margin: 0 auto 1rem;
    text-align: center;
    width: 90%;
}

.modal--customer-portal .modal-title--small {
    font-size: 1.8rem;
    color: #205a4e;
}

.modal--customer-portal .modal-header h2 {
    font-size: 2rem;
    margin: 0;
}

.modal--customer-portal .modal-body--small {
    text-align: center;
    margin-bottom: 2rem;
}

.modal--customer-portal .modal-body {
    margin-bottom: 3rem;
}

#edit-personal-data-modal .modal-body {
    margin-bottom: 0;
}

.modal--customer-portal .modal-footer {
    display: flex;
    flex-direction: row;
    margin: 1rem auto;
    width: 100%;
    gap: 1rem;
    justify-content: space-between;
}
@media screen and (max-width:450px) {
    .modal--customer-portal .modal-footer{
        flex-direction: column;
    }
}
.information-popup__container [data-modal-close="close"], .close--customer-portal{
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
}
[data-target="#information-popup"] .close--customer-portal {
    font-weight: bold;
    position: absolute;
    top: 0;
    right: 0;
    margin: 1rem 1.5rem 0 0;
}

.modal--customer-portal .close--customer-portal svg {
    cursor: pointer;
    height: 24px;
    width: 24px;
}

.modal--customer-portal .close--customer-portal:hover svg line {
    stroke: white;
}

.modal--customer-portal .close--customer-portal:hover svg circle {
    fill: #235a4e;
}

.modal--customer-portal .loading-overlay {
    left: auto;
}
.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}


.modal--customer-portal .modal-header .close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}


/* *********** MEDIA QUERIES *********** */

@media screen and (max-width: 749px) {
    .modal--customer-portal .modal-content {
        min-width: auto;
    }

    .modal--customer-portal .modal-content {
        font-size: 1.5rem;
        width: 100% !important;
        display: flex;
        border-radius: 15px;
        justify-content: center;
        align-items: center;
        margin-left: 0.7rem;
        margin-right: 0.7rem;
    }

    .modal--customer-portal .close--customer-portal {
        margin-right: 1rem;
    }
}

@media screen and (max-width: 550px) {
    .modal--customer-portal .close svg {
        height: 22px;
        width: 22px;

    }}

    .modal {
        display: none;
        /* Hidden by default */
        opacity: 0;
        position: fixed;
        /* Stay in place */
        z-index: 1000;
        /* Sit on top */
        left: 0;
        top: 0;
        width: 100%;
        /* Full width */
        height: 100vh;
        /* Full height */
        max-height: 100vh;
        overflow: auto;
        /* Enable scroll if needed */
        background-color: rgb(0, 0, 0);
        /* Fallback color */
        background-color: rgba(0, 0, 0, 0.4);
        /* Black w/ opacity */
        transition: opacity 1s ease-in;
    }

    .modal--customer-portal .modal-header h2 {
        padding: 0;
    }


    .modal--customer-portal .close--customer-portal svg {
        height: 24px;
        width: 24px;
    }
}