.max-770 {
    max-width: 770px;
}

#form .required>label::before {
    content: '' !important;
}

.form-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row dense;
}

.input-wpr label {
    line-height: 27px;
}

.select-wpr label {
    line-height: 27px;
}

.input-wpr {
    display: grid !important;
    grid-auto-flow: row dense;
}

.input-wpr input {
    width: 100% !important;
}

.select-wpr {
    display: grid !important;
    grid-auto-flow: row dense;
}

.select-wpr select {
    width: 100% !important;
}

.font-48 {
    font-size: 48px;
    line-height: 1;
}

.image-number-list {
    list-style-type: none;
    padding-left: 55px;
}

.image-number-list li:before {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    left: 15px;
    background-size: contain;
}

.image-number-list li:nth-child(1):before {
    background-image: url(../images/icon_1-transparent.png);
}

.image-number-list li:nth-child(2):before {
    background-image: url(../images/icon_2-transparent.png);
}

.image-number-list li:nth-child(3):before {
    background-image: url(../images/icon_3-transparent.png);
}

input[type=tel],
input[type=email],
input[type=url] {
    padding: 10px 10px;
    border: 1px solid #6f6f6f;
    outline: 0!important;
    line-height: 1.6rem;
    border-radius: 0;
    border-collapse: collapse;
    min-height: 50px;
    width: 0;
    min-width: 130px;
    color: #252525;
    font-size: 1.6rem;
    font-family: Roboto;
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

.field-error input[type=tel],
.field-error input[type=email],
.field-error input[type=url] {
    box-shadow: inset 0 0 0 1px #bd0000;
    border: 1px solid #bd0000;
}

.vert-center-img {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.loader-overlay {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 3000;
    background: rgba(0, 0, 0, .85);
    width: 100%;
    height: 100%;
}

.loader {
    position: relative;
    margin: 0 auto;
    top: 50%;
    margin-top: -152px;
    width: 152px;
}

.loader:before {
    content: '';
    display: block;
    padding-top: 100%;
}

.loader:after {
    background-position: -177px -10px;
    content: '';
    width: 46px;
    height: 60px;
    display: block;
    margin: auto;
    top: -76px;
    position: relative;
    background: url(../images/logo_outline_white.svg) no-repeat
}

.circular {
    -webkit-animation: rotate 2s linear infinite;
    animation: rotate 2s linear infinite;
    height: 100%;
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    margin: auto;
}

.circular .path {
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0;
    -webkit-animation: dash 1.5s ease-in-out infinite;
    animation: dash 1.5s ease-in-out infinite;
    stroke-linecap: round;
    stroke: #FEDF01;
}

.noscroll {
    overflow: hidden;
}

.banner-img {
    /* background-size: 90% 100% !important; */
    background-color: #f3f7f8;
    background-size: contain;
}

#appleLogo {
    min-height: 90px;
    max-width: 90px;
}

/* TAB SECTION */
.tab-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 30px 60px;
    gap: 30px;
    border-bottom: 1px solid #c4c8cc;
}

.tab-button {
    display: flex;
    width: 200px;
    padding: 16px;
    justify-content: center;
    border: 1px solid #006AC3;
    gap: 16px;

    /* Text Styles */
    color: #006AC3;
    font-size: 18px;
    font-weight: 400;
}

.tab-button.active {
    background: #FAFDFF;
    border: 2px solid #006AC3;
}

.form-row label {
    font-size: 18px;
}

a.standalone-link {
    padding-right: 15px;
}

a.standalone-link:before {
    left: unset;
    right: 0px;
    top: 7px;
}

.form-section > div:first-child {
    padding-bottom: 60px;
    text-align: center;
}

.form-section.submitted {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 20px;
}

.form-section.submitted > div:first-child {
    text-align: left;
}

@media screen and (max-width: 639px) {
    .mob-max-width-100 {
        max-width: 100% !important;
    }
    #appleLogo {
        height: auto;
        width: auto;
        max-width: 90px;
        max-height: 90px;
    }
    .vert-center-img {
        transform: translateY(0);
    }

    .form-section > div:first-child {
        padding-bottom: 30px;
    }

    .form-section.submitted {
        display: block;
    }

    .form-section.submitted > div:first-child {
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .tab-section {
        gap: 10px;
    }
}

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {}