﻿@font-face {
    font-family: "Avenir Next";
    src: url('fonts/AvenirNextLTPro-Regular.woff2') format('woff2'),  Super Modern Browsers 
url('fonts/AvenirNextLTPro-Regular.woff') format('woff'),  Pretty Modern Browsers 
url('fonts/AvenirNextLTPro-Regular.ttf') format('truetype');  Safari, Android, iOS 
}

@font-face {
    font-family: "Avenir Next Bold";
    src: url('fonts/AvenirNextLTPro-Bold.woff2') format('woff2'),  Super Modern Browsers 
url('fonts/AvenirNextLTPro-Bold.woff') format('woff'),  Pretty Modern Browsers 
url('fonts/AvenirNextLTPro-Bold.ttf') format('truetype');  Safari, Android, iOS 
}

@font-face {
    font-family: "Avenir Next Lt";
    src: url('fonts/AvenirNextLTPro-lt.woff2') format('woff2'),  Super Modern Browsers 
url('fonts/AvenirNextLTPro-lt.woff') format('woff'),  Pretty Modern Browsers 
url('fonts/AvenirNextLTPro-lt.ttf') format('truetype');  Safari, Android, iOS 
}

body {
    font-family: "Avenir Next";
    font-weight: 400;
    font-style: normal;
    margin: 0;
    background: #F5F5F5;
    overflow-x: hidden;
    overflow-y: visible;
    color: #454545;
}

/* Menu Toggle */
a {
    text-decoration: none;
    color: #232323;
    transition: color 0.3s ease;
}

    a:hover {
        color: tomato;
    }

#menuToggle {
    display: block;
    position: absolute;
    top: 20px;
    right: 30px;
    z-index: 1;
    -webkit-user-select: none;
    user-select: none;
}

    #menuToggle input {
        display: block;
        width: 40px;
        height: 32px;
        position: absolute;
        top: -7px;
        left: -5px;
        cursor: pointer;
        opacity: 0; /* hide this */
        z-index: 999; /* and place it over the hamburger */
        -webkit-touch-callout: none;
    }

    /*
 * Just a quick hamburger
 */
    #menuToggle span {
        display: block;
        width: 33px;
        height: 2px;
        margin-bottom: 6px;
        position: relative;
        background: #454545;
        border-radius: 3px;
        z-index: 998;
        transform-origin: 4px 0px;
        transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0), background 0.5s cubic-bezier(0.77,0.2,0.05,1.0), opacity 0.55s ease;
    }

        #menuToggle span:first-child {
            transform-origin: 0% 0%;
        }

        #menuToggle span:nth-last-child(2) {
            transform-origin: 0% 100%;
        }

    /* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
    #menuToggle input:checked ~ span {
        opacity: 1;
        transform: rotate(45deg) translate(-2px, -1px);
        background: #232323;
        width: 30px;
    }

        /*
 * But let's hide the middle one.
 */
        #menuToggle input:checked ~ span:nth-last-child(3) {
            opacity: 0;
            transform: rotate(0deg) scale(0.2, 0.2);
        }

        /*
 * Ohyeah and the last one should go the other direction
 */
        #menuToggle input:checked ~ span:nth-last-child(2) {
            opacity: 1;
            transform: rotate(-45deg) translate(0, -1px);
        }

#menu {
    position: absolute;
    width: 1500px;
    margin: -100px 0 0 0;
    padding: 50px;
    padding-top: 125px;
    right: -100px;
    height: 1500px;
    overflow-y: scroll;
    overflow-x: visible;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    transform-origin: 0% 0%;
    transform: translate(100%, 0);
    background: #000;
    background: rgba(0,0,0,.85);
    cursor: default;
    z-index: 996;
}

    #menu .menuBackground {
        position: absolute;
        width: 450px;
        margin: -100px 0 0 0;
        padding: 50px;
        padding-top: 125px;
        right: -100px;
        height: 1500px;
        background: #ededed;
        -webkit-font-smoothing: antialiased;
        transform-origin: 0% 0%;
        transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
        z-index: 997;
    }

    #menu li {
        padding: 10px 0;
        font-size: 22px;
    }

/*
 * And let's fade it in from the left
 */

#menuToggle input:checked ~ ul .menuBackground {
    transform: scale(1.0, 1.0);
    opacity: 1;
}

#menuToggle input:checked ~ ul {
    transform: scale(1.0, 1.0);
    opacity: 1;
}

.hideMenuMobile {
    display: none;
}

.hideMenuDesktop {
    display: inherit;
}

header {
    font-family: "Avenir Next Bold";
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 13px;
    display: flex;
    align-items: flex-end;
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    z-index: 99;
}

.logo {
    margin-top: 15px;
    margin-bottom: 5px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.5em;
    width: 180px;
}

.headerLogo {
    margin-left: 10px;
}

.headerMenu {
    width: 50px;
    margin-right: 10px;
}

.accountAvatar {
    display: none;
}

    /*
 * Make this absolute positioned
 * at the top left of the screen
 */
    /*
 Larger screen styling
 Horizontal menu
*/
@media (min-width: 930px) {
    nav {
        width: 100%;
        min-width: 640px;
    }

    #menuToggle span {
        display: none;
    }

    /* Undo positioning of off-canvas menu */
    #menuToggle {
        position: relative;
        left: auto;
        top: auto;
        height: 25px;
        width: auto;
        display: block;
        overflow-y: visible;
        right: 20px;
    }

        #menuToggle ul {
            display: flex;
            padding: 0;
            -webkit-box-shadow: none;
            -moz-box-shadow: none;
            box-shadow: none;
            height: auto;
            width: 700px;
            background: none;
        }

    #menu {
        margin: auto;
        position: inherit;
        overflow-y: auto;
        transform: none;
    }

        #menu .menuBackground {
            width: auto;
            display: block;
            position: inherit;
            margin: 0;
            padding: 0;
            right: auto;
            height: auto;
            background: none;
            z-index: 1;
        }

    #menuToggle a {
        color: #06c;
        float: left;
        border: 0 !important; /* Remove borders from off-canvas styling */
    }

    #menu li {
        padding: 10px 20px;
        font-size: 1rem;
        font-family: "Avenir Next Lt";
    }

    #menuToggle a:hover,
    #menuToggle a:focus {
        background: none; /* Remove background from off-canvas styling */
        color: #c00;
    }

    .accountAvatar {
        display: block;
        width: 100px;
        align-self: end;
    }

    .accountAvatar input {
        display: none;
    }

    .accountAvatar ul {
        display: none;
    }
    
    .fa-user {
        position: relative;
        display: block;
        cursor: pointer;
    }

    .accountAvatar input:checked ~ ul {
        display: block;
        position: absolute;
        right: 20px;
        background-color: white;
        z-index: 99;
        padding: 20px;
        list-style-type: none;
    }
    
    header {
        padding-top: 10px;
        padding-bottom: 10px;
        padding-left: 10px;
    }

    .logo {
        margin: 0;
    }

    .hideMenuMobile {
        display: inherit;
    }

    .hideMenuDesktop {
        display: none;
    }

}
    /*
Demo purposes only
*/
    *, *:before, *:after {
    box-sizing: border-box;
}

article {
    padding: 30px;
    width: 55em;
    font-size: 16px;
    line-height: 1.5em;
}

    article h2 {
        font-weight: 500;
        font-size: 28px;
    }

.pageContent {
    padding-top: 50px;
}

/*
 Form Styling for Mobile First
*/
.sectionHeadImage {
    margin-top: 83px;
    height: 300px;
    font-size: 1.5em;
    display: flex;
    justify-content: center;
    background-image: url("../content/images/stressed-over-diminished-value-after-accident.jpg");
    background-size: cover;
    background-color: black;
    background-blend-mode: hard-light;
}

.sectionHeadImageButton {
    margin: 0;
    position: absolute;
    top: 25%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.sectionTestimonialImage {
    height: 200px;
    font-size: 1.5em;
    display: flex;
    justify-content: center;
    background-image: url("../content/images/check-claims_customer-testimonial.jpg");
    background-size: cover;
}

.section {
    font-size: 1rem;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.sectionCurve {
    font-size: 1rem;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.sectionBlue {
    width: 100%;
    background: #06c;
    display: flex;
    justify-content: center;
    font-size: 1.5em;
}

.whiteBox {
    background: white;
    margin-top: -45px;
    margin-bottom: 0;
    margin-left: 20px;
    margin-right: 20px;
    display: block;
}

.whiteBoxTestimonial {
    background: white;
    margin-bottom: 20px;
    margin-left: 20px;
    margin-right: 20px;
    display: block;
    padding-left: 20px;
    padding-right: 20px;
}

.innerSection {
    padding: 15px 15px 15px;
}

.innerSectionLight {
    color: #454545;
    text-shadow: 0 1px rgba(255,255,255,0.5);
}

.innerSectionDark {
    color: #f5f5f5;
    text-shadow: 0 1px rgba(0,0,0,0.5);
    text-align: center;
}

.innerSectionWhiteBox {
    padding: 25px 25px;
    text-align: center;
}

.sectionHeadline {
    font-family: "Avenir Next Lt", Arial;
    font-weight: normal;
    font-size: 2rem;
    line-height: 1.2;
    margin: 10px;
}

.sectionText {
    font-family: "Avenir Next", Arial;
    font-weight: normal;
    font-size: 1.2rem;
    line-height: 1.4;
    padding-top: 20px;
    padding-bottom: 20px;
}

.sectionVideo {
    width: 100%;
}

.iframeVideo {
    width: 100%;
    height: 100%;
    border: none;
}

.sectionSteps {
    display: block;
}

.stepHeadline {
    font-family: "Avenir Next Lt", Arial;
    font-weight: normal;
    font-size: 1.5rem;
    line-height: 1;
    padding-top: 20px;
}

.stepText {
    font-family: "Avenir Next", Arial;
    font-weight: normal;
    font-size: 1rem;
    line-height: 1.4;
    padding-bottom: 10px;
}

.formTitle {
    width: 100%;
    font-family: "Avenir Next";
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 1.2em;
    margin-bottom: 20px;
}

.formTitleLight {
    color: #454545;
}

.formInput {
    width: 100%;
    margin-top: 10px;
    display: block;
    padding: 7px 14px;
    border-radius: 0;
    line-height: normal;
    transition: border-color 0.1s ease-in-out;
    background: transparent;
    font-size: 1em;
}

.formInputArea {
    width: 100%;
    height: 300px;
    margin-top: 10px;
    display: block;
    padding: 7px 14px;
    border-radius: 0;
    line-height: normal;
    transition: border-color 0.1s ease-in-out;
    background: transparent;
    font-size: 1em;
}

.formInputLight {
    border: 1px solid #454545;
    color: #454545;
}

.formInputDark {
    border: 1px solid #d4d4d4;
    color: #d4d4d4;
}

.formInputDate {
    display: block;
    border-radius: 0;
    line-height: normal;
    transition: border-color 0.1s ease-in-out;
    background: transparent;
    font-size: 1em;
    padding-top: 0px;
    padding-bottom: 20px;
    padding-left: 10px;
    width: 100%;
    height: 30px;
    margin-top: 5px;
}

.formDisplayFor {
    margin-top: 5px;
    margin-bottom: 5px;
    display: inline-block;
}

.formSubmit {
    width: 100%;
    margin-top: 5px;
    display: block;
    padding: 14px 28px;
    line-height: normal;
    border: 1px solid transparent;
    border-radius: 0;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.2em;
    font-family: "Avenir Next",sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 1rem;
    z-index: 1;
    overflow: visible;
    cursor: pointer;
}

.formSubmitHeadImage {
    background-color: #06c;
    border-color: #06c;
    border: 2px solid #06c;
    font-weight: bolder;
    opacity: 85%;
    transition: color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86),border 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    cursor: pointer;
}

.formSubmitLight {
    border-color: #454545;
    color: white;
    background: #06c;
    transition: color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86),border 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.formSubmitDark {
    border-color: #d4d4d4;
    color: #000000;
    background-color: white;
    transition: color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86),border 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.formCheckbox {
    border-radius: 0;
    line-height: normal;
    transition: border-color 0.1s ease-in-out;
}

.checkboxSection {
    width: 100%;
    display: block;
    margin-top: 15px;
}


.formCheckboxDark {
    border: 1px solid #d4d4d4;
}

.checkboxSectionDark {
    color: #d4d4d4;
}

.formCheckboxLight {
    border: 1px solid #454545;
}

.checkboxSectionLight {
    color: #454545;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #d4d4d4;
    opacity: 1; /* Firefox */
    font-size: 1.5em;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #d4d4d4;
    font-size: 1.5em;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: #d4d4d4;
    font-size: 1.5em;
}

input[type='checkbox'] {
    float: left;
    margin: 2px 10px;
}

    input[type='checkbox'] + label {
        display: block;
        margin-top: 5px;
    }

input[type="date"]:before {
    content: attr(placeholder) !important;
    margin-right: 0.5em;
}

input[type="date"]:focus:before,
input[type="date"]:valid:before {
    content: "";
}

.detailedBlockRow {
    width: 100%;
}

.detailedBlockCurved {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #ffffff;
    margin-bottom: 10px;
}

.detailedRow {
    padding-bottom: 10px;
    display: flow-root;
}

.detailedTitle {
    width: 100%;
    font-family: "Avenir Next";
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #06c;
}

.detailedHeader {
    padding-right: 10px;
    font-family: "Avenir Next";
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0.2em;
    font-size: 1em;
}

.detailedBlockButtons {
    width: 100%;
    text-align: -webkit-center;
}

.form-control {
    width: 100%;
}
/*
 Larger screen styling
 For Forms
*/
@media (min-width: 768px) {
    footer {
        text-align: center;
    }

    .pageContent {
        padding-top: 30px;
        margin: 35px auto;
    }

    .pageContentNarrow {
        max-width: 700px;
    }
    .section {
        display: flex;
    }

    .sectionHeadImage {
        height: 450px;
        margin: auto;
    }

    .sectionTestimonialImage {
        background-position: center;
        height: 300px;
    }

    .whiteBoxTestimonial {
        width: 40%;
        float: left;
    }

    .innerSection {
        padding: 30px 60px 30px;
        width: auto;
    }

    .sectionVideo {
        width:560px;
        height:315px;
    }

    .sectionSteps {
        width: 33%;
        float: left;
        padding-left: 20px;
        padding-right: 20px;
    }

    .whiteBox {
        margin-left: 50px;
        margin-right: 50px;
    }

    .innerSectionWhiteBox {
        text-align: -webkit-center;
    }

    .innerSectionDark {
        text-align: -webkit-center;
    }

    .formInput {
        width: 400px;
        padding: 7px 14px;
        margin: 0px;
    }

    .formInputDate {
        width: 200px;
        margin: 0px;
    }

    .formTitleDark {
        font-size: 20px;
    }

    .sectionBlue {
        font-size: 14px;
    }

    .formSubmit {
        width: 400px;
        padding: 10px 20px;
    }

    .detailedBlockRow {
        display: flex;
    }

    .detailedBlockCurved {
        float: left;
    }

    .detailedHeader {
        width: 30%;
        float: left;
        text-align: right;
    }

    .detailedItem {
        display: flex;
    }

    .columnOne {
        width: 92%;
        margin: 10px;
    }

    .columnTwo {
        width: 45%;
        margin: 10px;
    }

    .columnThree {
        width: 30%;
        margin: 10px;
    }
}

/* Number Icons */
.fa.fa-circle-o {
    margin: 0;
    padding: 0;
}
/* Social Media Handles */
.fa-socialmedia {
    padding: 10px;
    font-size: 20px;
    width: 40px;
    text-align: center;
    text-decoration: none;
    margin: 5px 2px;
}

footer p {
    text-align: center;
}

footer .fa {

}

.fa-socialmedia:hover {
    opacity: 0.7;
}

.fa-facebook {
    background: #F5F5F5;
    color: #454545;
}

.fa-twitter {
    background: #F5F5F5;
    color: #454545;
}

.fa-linkedin {
    background: #F5F5F5;
    color: #454545;
}

.fa-instagram {
    background: #F5F5F5;
    color: #454545;
}

/*progressbar*/
#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
}

#progressbar li {
    list-style-type: none;
    color: #045FB4;
    text-transform: uppercase;
    font-size: 9px;
    width: 20%;
    float: left;
    position: relative;
    text-align: center;
}

#progressbar li:before {
    content: counter(step);
    text-align: center;
    counter-increment: step;
    width: 24px;
    line-height: 24px;
    display: block;
    font-size: 10px;
    color: white;
    background: #045FB4;
    border-radius: 5px;
    margin: 0 auto 5px auto;
}
/*progressbar connectors*/
#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: #045FB4;
    position: absolute;
    left: -50%;
    top: 9px;
    z-index: -1; /*put it behind the numbers*/
}

#progressbar li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before, #progressbar li.active:after {
    background: #27AE60;
    color: white;
}

.validation-summary-errors{
    color: red;
}

.text-danger {
    color: #a94442;
}

/*Table Styling*/

.table {
    display: table;
    border-color: gray;
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

thead {
    display: none;
}

tr {
    height: 25px;
    border-bottom: .0625rem red dotted;
    display: table-row;
    vertical-align: inherit;
    border-color: inherit;

}

th {
    font-family: Avenir Next Bold;
    display: table-cell;
    text-transform: capitalize;
    text-align: left;
    vertical-align: bottom;
    padding: 5px 15px 5px 0px;
    font-weight: 800;
    font-size: 16px;
}

td {
    display: block;
    font-family: Avenir Next Lt;
    font-weight: 500;
    font-size: 16px;
}

.hide-column-mobile {
    display: none;
}

.column-bold-mobile {
    font-weight: bold;
    padding-left: 0px;
}
/*
 Larger screen styling
 For Tables
*/
@media (min-width: 768px) {
    .table {
        display: table;
        border-color: gray;
        border-collapse: collapse;
        border-spacing: 0;
    }

    thead {
        display: table-header-group;
        vertical-align: middle;
        border-color: inherit;
    }

    tr {
        height: 25px;
        border-bottom: .0625rem red dotted;
        display: table-row;
        vertical-align: inherit;
        border-color: inherit;
    }

    td {
        display: table-cell;
        font-family: Avenir Next Lt;
        font-weight: 500;
        font-size: 16px;
        padding: 5px 12px 5px 3px;
    }

    .hide-column-mobile {
        display: table-cell;
    }

    .column-bold-mobile {
        font-weight: inherit;
        padding: inherit;
    }

}

/*eSign iFrame*/
.esignSection {
    position: fixed;
    height: auto;
    left: 5px;
    right: 5px;
    bottom: 5px;
    top: 100px;
}

.esignSection form {
        transform-origin: top left;
        position: relative;
        height: 100%;
        width: 100%;
}

.esign-iframe {
    border: 1px solid black;
    transform-origin: top left;
    position: relative;
    width: 100%;
    bottom: 5px;
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
}