﻿/* Layout / Globals */

body {
    background-color: VAR(--Z2);
    font-weight: 400;
    font-family: Adelle Sans W01, serif;
    color: #333;
}

a {
    color: #4857e0;
}

@media (max-width: 768px) {
    p {
        font-size: 11px;
    }
}

.pre-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 35px;
}

.nav {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 50px;
}

.primary-container {
    display: flex;
    justify-content: center;
    margin: 20px;
}

@media (max-width: 768px) {
    .primary-container {
        margin-top: 60px;
    }
}

.primary-container-card {
    border-radius: 8px;
    box-shadow: 0 16px 26px rgba(0, 0, 0, .25);
    background-color: #fff;
    max-width: 500px;
    font-weight: 400;
    font-size: 16px;
}

.body-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Components */

.primary-box {
    padding: 20px 30px 40px;
}

@media (max-width: 768px) {
    .primary-box {
        padding: 14px 20px;
    }
}

.btn-primary {
    background-color: var(--B1);
    color: var(--B2);
    font-size: 16px;
    font-weight: 500 !important;
    height: 44px;
    border: none;
    display: inline-block;
    line-height: 44px;
    border-radius: 5px;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--B3) !important;
    color: var(--B2) !important;
}

.btn-primary:focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

.btn-text-wrap {
    min-height: 44px;
    line-height: normal;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
}

.disclaimer {
    font-size: 12px;
    color: var(--Z4);
}

.error-bar {
    color: #dd2c00;
    background-color: #f5f5f5;
    border: none;
    font-size: 14px;
    padding: 0;
    text-align: left;
}

.surround-lines {
    width: 100%;
    border-bottom: 1px solid #000;
    line-height: .1em;
    margin: 30px 0 20px;
}
.surround-lines span {
    background: #fff;
    padding: 0 25px;
}

/* Materialize overrides */

h1 {
    margin-block-start: unset !important;
    margin-block-end: unset !important;
    font-size: 30px !important;
}

.input-field label {
    left: 0 !important;
    color: #333 !important;
}

label {
    color: #333 !important;
}

.input-field label.active {
    color: var(--A6) !important;
}

.input-field {
    padding: 0 !important;
    margin: 0 !important;
}

.input-field input:focus {
    border-bottom-color: var(--A6) !important;
    box-shadow: 0 1px 0 0 var(--A6) !important;
}

input {
    border-bottom-color: rgba(0, 0, 0, 0.12) !important;
}

.row {
    margin-bottom: 0 !important;
}

.col {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.btn {
    text-transform: unset !important;
    font-family: Adelle Sans W01, serif !important;
}

.dropdown-content li > a, .dropdown-content li > span {
    color: rgba(0, 0, 0, 0.87) !important;
}


[type="checkbox"].filled-in + span:not(.lever):after {
    border-color: var(--A6) !important;
}

[type="checkbox"].filled-in + span:not(.lever) {
    color: var(--Z4) !important;
    font-size: 13px !important;
}

[type="checkbox"].filled-in:checked + span:not(.lever):after {
    background-color: var(--A6) !important;
    border-color: var(--A6) !important;
}

input[type="text"].select-dropdown {
    font-family: Adelle Sans W01, serif !important;
}

/* Utility Classes */

.font-size-13 {
    font-size: 13px;
}

.font-weight-500 {
    font-weight: 500;
}

.flex {
    display: flex;
}

.justify-space-between {
    justify-content: space-between
}

.border-radius-30 {
    border-radius: 30px;
}

.color-a6 {
    color: var(--A6);
}

@media (max-width: 600px) { /*Conforming to materialize css grid*/
    .xs-mx0 {
        margin-left: 0;
        margin-right: 0;
    }
}

.background-white {
    background-color: white;
}

.background-a1 {
    background-color: VAR(--A1)
}