﻿@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 300;
    src: local('Montserrat Light Italic'), local('Montserrat-LightItalic'), url(/fonts/Montserrat-LightItalic.ttf) format('truetype');
}

@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 400;
    src: local('Montserrat Italic'), local('Montserrat-Italic'), url(/fonts/JTUQjIg1_i6t8kCHKm459WxRyS7j.ttf) format('truetype');
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 300;
    src: local('Montserrat Light'), local('Montserrat-Light'), url(/fonts/JTURjIg1_i6t8kCHKm45_cJD3gnD-w.ttf) format('truetype');
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: local('Montserrat Regular'), local('Montserrat-Regular'), url(/fonts/JTUSjIg1_i6t8kCHKm459Wlhzg.ttf) format('truetype');
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    src: local('Montserrat Bold'), local('Montserrat-Bold'), url(/fonts/JTURjIg1_i6t8kCHKm45_dJE3gnD-w.ttf) format('truetype');
}

:root {
    --screen-height: 100vh;
    --screen-width: 100vw;
    /* site colors */
    --pp-orange: #f7961d;
    --pp-darkgray: #59595c;
    --pp-gray: #dcdcdc;
    --pp-lightgray: #ececec;
    --pp-white: #fff;
    --pp-danger: #ff2e1f;
    /*---------FONTS------------/
        Gotham light
        Montserrat Medium
        Montserrat Light Italic
    /--------------------------*/
    --button-default: var(--pp-darkgray);
    --button-primary: var(--pp-orange);
    --button-disabled: var(--pp-gray);
    --brand-dark-blue: #59595c;
}

html, body {
    font-family: 'Montserrat', sans-serif;
    background-color: #59595c;
    background-color: var(--pp-darkgray);
    color: white;
}

.well, .jumbotron {
    color: #59595c;
    color: var(--pp-darkgray);
}

.modal-body {
    color: #59595c;
    color: var(--pp-darkgray);
}

#pageContainer #mobile-brand {
    width: 60px;
    margin: 20px
}

.btn-default {
    background-color: #59595c;
    background-color: var(--button-default);
    border-color: #59595c;
    border-color: var(--button-default);
    color: #fff;
    color: var(--pp-white);
}

.btn-default:hover,
.btn-default:active,
.btn-default:focus {
    background-color: #fff;
    border-color: #59595c;
    border-color: var(--button-default);
    color: #59595c;
    color: var(--button-default);
}

.btn-default-inverse {
    background-color: #FFF;
    border-color: #59595c;
    border-color: var(--button-default);
    color: #59595c;
    color: var(--pp-darkgray);
}

.btn-dark {
    background-color: #59595c;
    border-color: #59595c;
    color: #fff;
}

.btn-dark:hover,
.btn-dark:active,
.btn-dark:focus {
    background-color: #002c5c;
    border-color: #002c5c;
    color: var(--pp-orange);
}

.btn-primary {
    background-color: #f7961d;
    background-color: var(--button-primary);
    border-color: #f7961d;
    border-color: var(--button-primary);
    color: #fff;
    color: var(--pp-white);
}

.btn-danger {
    background-color: rgba(217, 79, 79, 0.85);
    border-color: rgba(217, 79, 79, 0.85);
    color: #fff;
    color: var(--pp-white);
}

.btn-primary:hover, 
.btn-primary:active, 
.btn-primary:focus {
    background-color: #fff;
    border-color: #f7961d;
    border-color: var(--button-primary);
    color: #f7961d;
    color: var(--button-primary);
}

.btn-primary:hover:active, .btn-primary:active:focus {
    background-color: #bd6f0e;
    border-color: #bd6f0e;
    color: #fff;
    color: var(--pp-white);
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
    color: #7e6f73;
    background-color: #FFF;
    border: 1px solid #dddddd;
    border-bottom-color: transparent;
    cursor: default;
}

.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
    background-color: transparent;
    text-decoration: none;
    color: #59595c;
    color: var(--pp-darkgray);
    border: 1px solid #dcdcdc;
    border: 1px solid var(--pp-gray);
}

.nav-pills > li > a {
    text-decoration:underline;
    color: rgba(64, 74, 89, 0.74);
}

a {
    color: #59595c;
    color: var(--pp-darkgray);
}

.progress-bar {
    background-color: #59595c;
    background-color: var(--pp-darkgray);
}

.text-danger {
    color: #ff2e1f;
    color: var(--pp-danger);
}

.text-white {
    color: var(--pp-white) !important;
}

.form-control:focus {
    border-color: #f7961d;
}

#notificationScreen {
    background-color: white;
}

.mb-0 {
    margin-bottom: 0px !important;
}

.mb-5 {
    margin-bottom: 5px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-15 {
    margin-bottom: 15px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mt-5 {
    margin-top: 5px !important;
}

.mt-10 {
    margin-top: 10px !important;
}

.mt-15 {
    margin-top: 15px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-primary {
    color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff;
}

.alert-secondary {
    color: #383d41;
    background-color: #e2e3e5;
    border-color: #d6d8db;
}

.alert-dark {
    color: #1b1e21;
    background-color: #d6d8d9;
    border-color: #c6c8ca;
}

.alert-light {
    color: #818182;
    background-color: #fefefe;
    border-color: #fdfdfe;
}

.alert {
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}

.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
}

.alert-dismissable .close, .alert-dismissible .close {
    position: relative;
    top: 0px;
    right: 0px;
    color: inherit;
}

.badge {
    display: inline-block;
    padding: .35em .4em;
    font-size: 80%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
}

/* Original and best color -wac- Jody wanted it 'not as bright' */
/*.badge-warning {
    color: #212529;
    background-color: #ffc107;
}*/

.badge-warning {
    color: #fff;
    background-color: #59595c;
}

.primary-link {
    text-decoration: underline;
    color: #f7961d; 
}


.hero::before {
    background-size: auto;
    background-position: right bottom;
    background-repeat: no-repeat;
    background-attachment: fixed;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0.4;
}


.airrosti-woman-running {
    background-image: url(/Images/airrosti-woman-running-320x391.jpg);
    background-size: auto;
    background-position: right bottom;
    background-repeat: no-repeat;
    background-attachment: fixed
}


@media (min-width: 461px) {
    .airrosti-woman-running {
        background-image: url(/Images/airrosti-woman-running-460x561.jpg);
    }
}

@media (min-width: 577px) {
    .airrosti-woman-running {
        background-image: url(/Images/airrosti-woman-running-576x703.jpg);
    }
}

@media (min-width: 769px) {
    .airrosti-woman-running {
        background-image: url(/Images/airrosti-woman-running-768x937.jpg);
    }
}


@media (min-width: 841px) {
    .airrosti-woman-running {
        background-image: url(/Images/airrosti-woman-running-840x1024.jpg);
    }
}


/* Large desktops and laptops */
@media (min-width: 1200px) {

    #headerBody {
        background-color: white;
    }

    .d-xl-none {
        display: none !important;
    }

}

/* Landscape tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1199px) {

    #headerBody {
        background-color: white;
    }

    .d-xl-none {
        display: none !important;
    }

}

/* Portrait tablets and small desktops */
@media (min-width: 768px) and (max-width: 991px) {
  
}

/* Landscape phones and portrait tablets */
@media (max-width: 767px) {

    #bodyContainer {
        padding-top: calc(100vh / 3);
        padding-top: calc(var(--screen-height) / 3);
        background-color: #59595c;
        background-color: var(--pp-darkgray);
    }

    .d-xs-none {
        display: none !important;
    }

    #mobile-brand {
        width: 50px;
        margin: 2px;
    }


    .wrapper {
        position: relative;
        overflow: hidden;
        width: 100vw;
        width: var(--screen-width);
        height: 68px;
    }

    .dismiss {
        background-color: #f7961d;
        background-color: var(--pp-orange);
        height: 68px;
        color: white;
        font-size: 23px;
        padding: 0;
        border-bottom-right-radius: 4px;
        border-top-right-radius: 4px;
        position: absolute;
        left: -100px;
        width: 68px;
        transition: 1s;
    }

    .wrapper:hover .dismiss {
        transition: 1s;
        left: 0;
    }

    .icon-dismiss {
        margin-top: 24px;
        position: absolute;
        top: -7px;
        left: 12px;
    }
}

@media screen and (orientation:landscape){

    @media (max-width: 767px) {

        #bodyContainer {
            padding-top: calc(100vh / 2);
            padding-top: calc(var(--screen-height) / 2);
            padding-bottom: 20px;
            background-color: #59595c;
            background-color: var(--pp-darkgray);
        }

        .d-xs-none {
            display: none !important;
        }

        #mobile-brand {
            width: 50px;
            margin: 2px;
        }


        .wrapper {
            position: relative;
            overflow: hidden;
            width: 100vw;
            width: var(--screen-width);
            height: 68px;
        }

        .dismiss {
            background-color: #f7961d;
            background-color: var(--pp-orange);
            height: 68px;
            color: white;
            font-size: 23px;
            padding: 0;
            border-bottom-right-radius: 4px;
            border-top-right-radius: 4px;
            position: absolute;
            left: -100px;
            width: 68px;
            transition: 1s;
        }

        .wrapper:hover .dismiss {
            transition: 1s;
            left: 0;
        }

        .icon-dismiss {
            margin-top: 24px;
            position: absolute;
            top: -7px;
            left: 12px;
        }
    }
}

/* Portrait phones and smaller */
@media (max-width: 480px) {

    #bodyContainer {
        padding-top: calc(100vh / 3);
        padding-top: calc(var(--screen-height) / 2.8);
        padding-bottom: 20px;
        background-color: #59595c;
        background-color: var(--pp-darkgray);
    }

    .d-xs-none {
        display: none !important;
    }

    #mobile-brand {
        width: 50px;
        margin: 2px;
    }


    .wrapper {
        position: relative;
        overflow: hidden;
        width: 100vw;
        width: var(--screen-width);
        height: 68px;
    }

    .dismiss {
        background-color: #f7961d;
        background-color: var(--pp-orange);
        height: 68px;
        color: white;
        font-size: 23px;
        padding: 0;
        border-bottom-right-radius: 4px;
        border-top-right-radius: 4px;
        position: absolute;
        left: -100px;
        width: 68px;
        transition: 1s;
    }

    .wrapper:hover .dismiss {
        transition: 1s;
        left: 0;
    }

    .icon-dismiss {
        margin-top: 24px;
        position: absolute;
        top: -7px;
        left: 12px;
    }
}

@media (max-width: 359px) {
    .notification {
        padding-left: 0;
        padding-right: 0;
    }
}

/**/

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

.messagePage-alert {
    margin-top: 263px;
}

#thisInjuryOnly {
    /*background-color: #EBE8E7;*/
    padding: 2rem;
}

input[type=radio] {
    opacity: 0;
    position: absolute;
}

input[type=radio] + label {
    background: url('../Images/radio-button--unchecked.png') left top no-repeat;
    display: block;
    min-height: 25px;
    padding-left: 35px;
}

input[type=radio]:checked + label {
    background: url('../Images/radio-button--checked-inner-darkblue.png') left top no-repeat;
}

input[type=checkbox] {
    opacity: 0;
    position: absolute;
}

input[type=checkbox] + label {
    background: url('../Images/checkbox--unchecked.png') left top no-repeat;
    display: block;
    min-height: 23px;
    padding-left: 50px;
}

input[type=checkbox]:checked + label {
    background: url('../Images/checkbox--checked-inside-darkblue.png') left top no-repeat;
    padding-left: 50px;
}

/****** MODEL ******/
#timeOut {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hidden {
    visibility: hidden;
}

.validationError {
    visibility: visible;
    color: red;
    border: red 2px solid;
    border-radius: 5px;
}

.d-none {
    display: none !important;
}

.d-inline {
    display: inline !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-block {
    display: block !important;
}

.d-table {
    display: table !important;
}

.d-table-row {
    display: table-row !important;
}

.d-table-cell {
    display: table-cell !important;
}

.d-flex {
    display: flex !important;
}


.justify-content-start {
    justify-content: start;
}

.align-items-start {
    align-items: start;
}


.justify-content-center{
    justify-content:center;
}

.justify-content-end {
    justify-content: flex-end;
}

.align-items-center {
    align-items: center;
}

.align-items-end {
    align-items: flex-end;
}

.flex-column {
    flex-direction: column;
}

.flex-wrap{
    flex-wrap:wrap;
}

.float-right{
    float:right;
}

.float-left {
    float: left;
}

.m-0 {
    margin: 0 !important;
}

.mt-0,
.my-0 {
    margin-top: 0 !important;
}

.mr-0,
.mx-0 {
    margin-right: 0 !important;
}

.mb-0,
.my-0 {
    margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
    margin-left: 0 !important;
}

.m-1 {
    margin: 0.25rem !important;
}

.mt-1,
.my-1 {
    margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
    margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
    margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
    margin-left: 0.25rem !important;
}

.m-2 {
    margin: 0.5rem !important;
}

.mt-2,
.my-2 {
    margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
    margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
    margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
    margin-left: 0.5rem !important;
}

.m-3 {
    margin: 1rem !important;
}

.mt-3,
.my-3 {
    margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
    margin-right: 1rem !important;
}

.mb-3,
.my-3 {
    margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
    margin-left: 1rem !important;
}

.m-4 {
    margin: 1.5rem !important;
}

.mt-4,
.my-4 {
    margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
    margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
    margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
    margin-left: 1.5rem !important;
}

.m-5 {
    margin: 3rem !important;
}

.mt-5,
.my-5 {
    margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
    margin-right: 3rem !important;
}

.mb-5,
.my-5 {
    margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
    margin-left: 3rem !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-0,
.py-0 {
    padding-top: 0 !important;
}

.pr-0,
.px-0 {
    padding-right: 0 !important;
}

.pb-0,
.py-0 {
    padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
    padding-left: 0 !important;
}

.p-1 {
    padding: 0.25rem !important;
}

.pt-1,
.py-1 {
    padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
    padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
    padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
    padding-left: 0.25rem !important;
}

.p-2 {
    padding: 0.5rem !important;
}

.pt-2,
.py-2 {
    padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
    padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
    padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
    padding-left: 0.5rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.pt-3,
.py-3 {
    padding-top: 1rem !important;
}

.pr-3,
.px-3 {
    padding-right: 1rem !important;
}

.pb-3,
.py-3 {
    padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
    padding-left: 1rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.pt-4,
.py-4 {
    padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
    padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
    padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
    padding-left: 1.5rem !important;
}

.p-5 {
    padding: 3rem !important;
}

.pt-5,
.py-5 {
    padding-top: 3rem !important;
}

.pr-5,
.px-5 {
    padding-right: 3rem !important;
}

.pb-5,
.py-5 {
    padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
    padding-left: 3rem !important;
}


.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}


@keyframes zoomInDown {
    from {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomInDown {
    animation-name: zoomInDown;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

/* Add to Homescreen */
.a2hs-prompt {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 9999;
    width: 100vw;
    height: 100%;
    background-color: var(--brand-dark-blue);
    box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.48);
    color: var(--pp-white) !important;
}

    .a2hs-prompt h1,
    .a2hs-prompt h2,
    .a2hs-prompt h3,
    .a2hs-prompt p {
        color: var(--pp-white) !important;

    }


@media (min-width: 762px) {

    .a2hs-prompt {
        height: auto;
    }
}

@media (min-width: 1024px) {
    .a2hs-prompt {
        width: 40vw;
        margin-right: 3%;
    }}

@media (min-width: 1200px) {
    .a2hs-prompt {
        width: 30vw;
        max-width: 500px;
    }
}