/* You can add global styles to this file, and also import other style files */

/*#region COLOR VARIABLES*/
:root {
    --darkest-blue: #00222d;
    --dark-blue: #22436D;
    --light-blue-old: #31A8DF;
    --light-blue: #00AAE4;
    --lightest-blue: #97d3ef;
    --yellow: #FFC83F;
    --green: #00C189;
    --red: #EA4F3D;
    --lightest-gray: #F2F4F4;
    --light-gray-blue: #D0E0E6;
    --light-gray: #dfdfdf;
    --med-gray: #bfbfbf;
    --dark-gray: #707070;
    --darkest-gray: #303030;
    --old-gray: #f2f4f4;
}
/*#endregion*/

/*#region GENERAL MISC*/

div, span, i, a {
    box-sizing: border-box;
}

.fa, .fa-solid, .fa-brands {
    font-size: 18px;
}

.check-circle {
    width: 25px;
    height: 25px;
    border-radius: 100%;
    background: var(--green);
    color: white;
    display: inline-block;
    padding: 0.25rem;
}

@media only screen and (max-width: 767px) {
    .desktop-only {
        display: none;
    }

    /* .mobile-only {
        display: block;
    }*/
}

@media only screen and (min-width: 768px) {
    /*.desktop-only {
        display: block;
    }*/

    .mobile-only {
        display: none;
    }
}

/*hide recaptcha badge*/
.grecaptcha-badge {
    display: none !important;
}

.wrapper {
    max-width: 1400px;
    margin: auto;
}

.flex-half {
    width: 50%;
}

.flex-align-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hidden, [hidden] {
    display: none !important;
}

/* Disclaimer */
.main-order-arrival-disclaimer {
    width: 60%;
    padding: 10px;
    margin: 5px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    background-color: rgba(191,234,248,0.3);
}

/*#endregion*/

/*#region INPUTS*/
input[type=email], input[type=number], input[type=password], input[type=text], textarea {
    width: 100%;
    padding: 0.5rem;
    border: solid 1px var(--med-gray);
    outline: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.33
}

.dropdown-default {
    width: 100%;
    height: 37px;
    border: solid 1px var(--med-gray);
    border-radius: 4px;
    cursor: pointer
}

select {
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    background: white url("/Content/images/inputs/dropdown-arrow.png") no-repeat;
    background-size: 25px;
    background-position: center right 5px;
    padding: 0.5rem 2rem 0.5rem 0.5rem;
    border-radius: 4px;
    border: solid 1px var(--med-gray);
    font-size: 14px;
    line-height: 1.33;
    cursor: pointer;
    color: var(--dark-gray);
}

input {
    height: 36px;
    font-size: 14px !important;
}

.field-group-horizontal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

    .field-group-horizontal .field-group {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        width: 100%;
        margin-right: 0.5rem
    }

        .field-group-horizontal .field-group:last-child {
            margin-right: 0
        }

.field-group .label {
    font-size: 14px;
    margin-bottom: 0.25rem;
}

.field-group button {
    width: 100%;
    margin: 0;
}
/*#endregion*/

/*#region TEXT STYLING*/
.blue-link {
    color: var(--light-blue) !important;
    cursor: pointer;
    font-weight: 700;
}

.darkblue-link {
    color: var(--dark-blue) !important;
    cursor: pointer;
    font-weight: 700;
}

.darkblue-link i { margin-left: 0.5rem; }

.red {
    color: var(--red);
}

.blue {
    color: var(--dark-blue);
}

.main-header-large, .main-header-med, .main-header-small {
    color: var(--dark-blue);
}

.main-header-large {
    font-size: 40px;
    line-height: 1;
    font-weight: 800;
}

.main-header-med {
    font-size: 32px
}

.main-header-small {
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
}

.sub-header {
}

.content-font-large {
    font-size: 24px;
}

.content-font-med {
    font-size: 16px;
}

.content-font-small {
    font-size: 12px;
}

.content-font-large, .content-font-med, .content-font-small {
    line-height: 1.33;
    color: var(--dark-blue);
}

.font-normal {
    font-weight: 400;
}

.font-med-bold {
    font-weight: 600;
}

.font-bold {
    font-weight: 800;
}

.link:hover {
    cursor: pointer;
    text-decoration: underline;
}

@media only screen and (min-width: 768px) {
    .main-header-large {
        font-size: 60px;
    }

    .main-header-med {
        font-size: 50px;
    }

    .main-header-small {
        font-size: 32px;
        line-height: 40px;
    }
}
/*#endregion*/

/*#region MODALS*/
.full-screen {
    height: 100vh;
    height: 100dvh;
    height: 100svh;
    width: 100vw;
    width: 100dvw;
    width: 100svw;
}

.modal-close {
    width: 30px;
    height: 30px;
    color: white;
    font-size: 38px;
    /*background: url("/Content/images/actions/close.svg");*/
    cursor: pointer;
    padding-bottom: 0.5rem;
}
/*#endregion*/

/*#region BUTTONS*/
button {
    height: 36px;
    border-radius: 4px;
    border: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.3px;
    line-height: 33px;
    margin: 0 0.5rem;
    padding: 0 2rem;
}

    button:hover {
        cursor: pointer !important;
    }

.default-yellow-button-small {
    background: var(--yellow);
    color: var(--dark-blue);
}

    .default-yellow-button-small:hover {
        color: var(--dark-blue);
        background: white;
        border: solid 2px var(--yellow);
    }

.default-darkblue-button-small {
    background: var(--dark-blue);
    color: white;
}

    .default-darkblue-button-small:hover {
        color: var(--dark-blue);
        background: white;
        border: solid 2px var(--dark-blue);
    }

        .default-darkblue-button-small:hover .fa-spinner {
            color: var(--dark-blue) !important;
        }

.darkblue-border-button-small {
    background: white;
    color: var(--dark-blue);
    border: solid 2px var(--dark-blue);
}

    .darkblue-border-button-small:hover {
        color: white;
        background: var(--dark-blue);
        border: solid 2px var(--dark-blue);
    }

.default-gray-button-small {
    color: var(--dark-blue);
    background: var(--light-gray);
}

    .default-gray-button-small:hover {
        border: solid 2px var(--dark-blue);
    }

.green-border-button-small {
    color: var(--green);
    border: solid 2px var(--green);
    background: white;
}
/*#endregion*/

/*#region HELPER CLASSES */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.w-100 {
    width: 100%;
}

.w-80 {
    width: 80%;
}

.w-75 {
    width: 75%;
}

.w-50 {
    width: 50%;
}

.w-25 {
    width: 25%;
}

.m-auto {
    margin: auto;
}
/*#endregion*/

/*.photo-ready-interface photo-ready .flex-container .image-container {
    height: 300px !important;
}*/
.photo-ready-interface photo-ready .controls-container .control-bar {
    max-width: 80%;
    margin: auto;
}


