﻿/* HTML */
html, body {
    margin: 0 auto; 
}
body {
    display: flex;
    flex-direction: column;
    height: 100vh;
}
:root {
    --mwPrimary: #E8004C;
    --mwBlack: #060A0B;
    --mwNavBarHeight: 80px;
    --mwNavBarMobileMenuTop: 110px; /* --mwNavBarHeight + 30 */
}
body.mobile-menu-open {
    overflow: hidden;
}
a {
    text-decoration-style: none;
    text-decoration: none;
}





/* Miway Reduced Common Page Styles*/
.mw-page {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    color: #1D1D1D;
    font-size: 18px;
    font-family: 'Roboto';
    font-weight: 100;
}
.mw-page-row {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.mw-page-row-content-container {
    width: 1170px;
    padding: 0px 10px;
}
.mw-page-banner {
    background-color: var(--mwPrimary);
}
.mw-page-workspace {
    flex: 1;
    padding-bottom: 50px;
}
.mw-page-footer {
    background-color: var(--mwBlack);
}
.my-primary-bold {
    color: var(--mwPrimary);
    font-weight: 500;
}
@media screen and (max-width: 780px) {
    .desktop-only {
        display: none !important;
    }
    .mw-page-row-content-container {
        padding: 0px 30px;
    }
}
@media screen and (min-width: 780px) {
    .mobile-only {
        display: none !important;
    }
}





/* Miway Reduced Common Page Header */
.mw-header-logo {
    height: 55px;
}
.mw-navbar {
    height: var(--mwNavBarHeight);
    background-color: var(--navbar-bg-color);
}
.mw-navbar-container {
    display: flex;
    justify-content: space-between;
    height: 100%;
    align-items: center;
    margin-top: 30px;
}
.mw-navbar-item {
    margin: 0.4em;
}
.mw-home-link, .mw-navbar-link {
    color: var(--navbar-text-color);
    transition: color 0.2s ease-in-out;
    text-decoration: none;
    display: flex;
    font-weight: 400;
    align-items: center;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    height: 100%;
}
    .mw-home-link:focus, .mw-home-link:hover {
        color: var(--navbar-text-color-focus);
    }
.mw-navbar-link {
    --justify-content: center;
    width: 100%;
    padding: 0.4em 0.8em;
    border-radius: 5px;
    font-size: 20px;
    font-weight: 100;
}
    .mw-navbar-link:focus, .mw-navbar-link:hover {
        color: var(--navbar-text-color-focus);
        background-color: var(--navbar-bg-contrast);
    }
.mw-navbar-logo {
    height: 100%;
    display: flex;
    align-items: center;
}
.mw-navbar-toggle {
    cursor: pointer;
    border: none;
    background-color: transparent;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.icon-bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 2px;
    transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
    background-color: #1D1D1D;
}
.mw-navbar-toggle:focus .icon-bar,
.mw-navbar-toggle:hover .icon-bar {
    background-color: #1D1D1D;
}
.mw-navbar.opened .mw-navbar-toggle .icon-bar:first-child,
.mw-navbar.opened .mw-navbar-toggle .icon-bar:last-child {
    position: absolute;
    margin: 0;
    width: 30px;
}
.mw-navbar.opened .mw-navbar-toggle .icon-bar:first-child {
    transform: rotate(45deg);
}
.mw-navbar.opened .mw-navbar-toggle .icon-bar:nth-child(2) {
    opacity: 0;
}
.mw-navbar.opened .mw-navbar-toggle .icon-bar:last-child {
    transform: rotate(-45deg);
}
.mw-navbar-menu {
    position: fixed;
    top: var(--mwNavBarMobileMenuTop);
    bottom: 0;
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
    opacity: 1;
    visibility: hidden;
    left: 0;
    right: 0;
    text-align: left;
}
.mw-navbar.opened .mw-navbar-menu {
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 1;
    visibility: visible;
}
.mw-navbar-links {
    list-style-type: none;
    max-height: 0;
    overflow: hidden;
    position: absolute;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    left: 0;
    right: 0;
    margin-top: 0px;
    box-shadow: 0 0 20px rgb(0 0 0 / 30%);
}
.mw-navbar.opened .mw-navbar-links {
    padding: 1em;
    max-height: none;
}
/* When Desktop */
@media screen and (min-width: 980px) {
    .mw-navbar-toggle {
        display: none;
    }
    .mw-navbar-container {
        justify-content: unset;
    }
    .mw-navbar .mw-navbar-menu,
    .mw-navbar.opened .mw-navbar-menu {
        visibility: visible;
        opacity: 1;
        position: static;
        display: block;
        height: 100%;
    }
    .mw-navbar .mw-navbar-links,
    .mw-navbar.opened .mw-navbar-links {
        margin: 0;
        padding: 0;
        box-shadow: none;
        position: static;
        flex-direction: row;
        list-style-type: none;
        max-height: max-content;
        width: 100%;
        height: 100%;
    }
    .mw-navbar .mw-navbar-link:last-child {
        margin-right: 0;
    }
}






/* Site Banner */
.mw-site-banner {
    height: 80px;
    color: white;
}
.mw-site-banner-desktop {
    display: flex;
    height: 100%;
    align-items: center;
}
    .mw-site-banner-desktop a {
        align-self: center;
        color: white !important;
        text-decoration: underline;
        cursor: pointer;
        margin-left: 8px;
    }
/* When Mobile */
@media screen and (max-width: 780px) {
    .mw-site-banner {
         height: 50px;
    }
    .mw-site-banner-mobile {
        display: flex;
        height: 100%;
        align-items: center;
        justify-content: center;
        font-size: 16px;
    }
        .mw-site-banner-mobile a {
            align-self: center;
            color: white !important;
            text-decoration: underline;
            cursor: pointer;
            margin-left: 8px;
        }

}











/* Miway Reduced Common Page Footer */
.mw-footer-container {
    background-color: #060A0B;
    display: flex;
    place-content: space-between;
    justify-content: space-between;
    padding: 20px;
    flex-wrap: wrap;
    padding-left: 40px;
    padding-right: 40px;
}
    .mw-footer-container .mw-footer-container-logo {
        width: 350px;
    }
    .mw-footer-container .mw-footer-social-legal {
        display: flex;
        flex-direction: column;
        padding: 20px;
        color: white;
        padding-right: 0px;
        background-color: #060A0B;
    }
        .mw-footer-container .mw-footer-social-legal .fsl-social {
            padding-bottom: 10px;
            text-align: right;
        }
            .mw-footer-container .mw-footer-social-legal .fsl-social .fsl-social-title {
                display: inline;
                padding-right: 20px;
                font-size: 25px;
            }
            .mw-footer-container .mw-footer-social-legal .fsl-social .fsl-social-icon {
                display: inline;
                padding-left: 15px;
            }
                .mw-footer-container .mw-footer-social-legal .fsl-social .fsl-social-icon .fsl-social-icon-image {
                    --width: 30px;
                }
        .mw-footer-container .mw-footer-social-legal .fsl-legal {
            padding-bottom: 15px;
            text-align: right;
        }
            .mw-footer-container .mw-footer-social-legal .fsl-legal a {
                text-decoration: none;
                color: white;
            }
            .mw-footer-container .mw-footer-social-legal .fsl-legal .fsl-legal-link {
                display: inline;
                font-size: 13px;
            }
            .mw-footer-container .mw-footer-social-legal .fsl-legal .fsl-legal-link-divider {
                display: inline;
                padding-left: 10px;
                padding-right: 10px;
            }
@media screen and (max-width: 991px) {
    .mw-footer-container {
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 5px;
    }
        .mw-footer-container .mw-footer-container-logo {
            width: 300px;
            padding-left: 20px;
            padding-right: 10px;
        }
        .mw-footer-container .mw-footer-social-legal {
            padding-top: 10px;
            padding-bottom: 0px;
        }
        .mw-footer-container .mw-footer-social-legal .fsl-social {
            text-align: center;
        }
            .mw-footer-container .mw-footer-social-legal .fsl-social .fsl-social-title {
                font-size: 20px;
            }
            .mw-footer-container .mw-footer-social-legal .fsl-social .fsl-social-icon {
                padding-left: 5px;
            }
            .mw-footer-container .mw-footer-social-legal .fsl-social .fsl-social-icon .fsl-social-icon-image {
                width: 30px;
            }
        .mw-footer-container .mw-footer-social-legal .fsl-legal .fsl-legal-link-divider {
            padding-left: 5px;
            padding-right: 5px;
        }
    .mw-footer-menus {
        --padding-left: 20px;
        padding-right: 20px;
    }
    .mw-footer-menu-block .fmb-title {
        font-size: 20px;
        padding-bottom: 10px;
    }
    .mw-footer-menu-block .fmb-item {
        font-size: 15px;
        padding-bottom: 5px;
    }
    .mw-footer-disclaimer-copy .fdc-copyright {
        font-size: 12px;
    }
    .mw-footer-container .mw-footer-social-legal .fsl-legal {
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 10px;
    }
}
@media screen and (max-width: 800px) {
    .mw-footer-container .mw-footer-social-legal .fsl-legal .fsl-legal-link {
        font-size: 9px;
    }
}
.mw-footer-disclaimer-copy {
    background-color: #060A0B;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    color: white;
    padding-bottom: 50px;
    padding-left: 40px;
    padding-right: 40px;
}
    .mw-footer-disclaimer-copy .fdc-disclaimer {
        font-size: 10px;
        max-width: 800px;
        padding-bottom: 10px;
    }
    .mw-footer-disclaimer-copy .fdc-copyright {
        font-size: 14px;
    }
@media screen and (max-width: 1199px) {

    .mw-footer-disclaimer-copy {
        --place-content: center;
    }
}
















/* Quick Quote Page Styles*/
.mw-quick-quote {

}
#quickQuoteForm {
    max-width: 500px;
}
#quickQuoteSubmittingMessage {
    display: none;
    min-height: 380px;
}
#quickQuoteThanksMessage {
    display: none;
    min-height: 380px;
}
#quickQuoteFailedMessage {
    display: none;
    min-height: 380px;
}
.mw-quick-quote-subtitle {
    color: #1D1D1D;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1.7px;
    text-transform: uppercase;
    margin-top: 30px;
    margin-bottom: 10px;
}
.mw-quick-quote-title {
    color: #E8004C;
    font-size: 40px;
    font-weight: 400;
}
.mw-quick-quote-description {
    color: #878787;
    font-weight: 300;
    font-size: 18px;
}
.mw-quick-quote-questions {
    display: flex;
    flex-direction: column;
}
.mw-quick-quote-question {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: 30px 0px;
    font-size: 20px;
}
.mw-quick-quote-questions ::-webkit-input-placeholder { /* Edge */
    color: silver;
}
.mw-quick-quote-questions :-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: silver;
}
.mw-quick-quote-questions ::placeholder {
    color: silver;
}
.mw-quick-quote-questions-footer {
    min-height: 50px;
}
.mw-quick-quote-question-label {
    display: flex;
    align-items: center;
    min-width: 200px;
}
.mw-quick-quote-question-input-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.mw-quick-quote-question-input {
    min-width: 280px;
    font-size: 20px;
    padding: 5px;
    font-family: Roboto;
    border: 3px solid #d7d7d7;
    color: gray;
}
.mw-quick-quote-question-input-container select {
    cursor: pointer;
    color: silver;
}
.mw-quick-quote-select-selected {
    color: gray !important;
}
.mw-quick-quote-input-error {
    border: 2px red solid;
}
.mw-quick-quote-input-error-text {
    font-size: 15px;
    color: red;
    padding-top: 2px;
}
.mw-quick-quote-questions input:focus, .mw-quick-quote-questions textarea:focus, .mw-quick-quote-questions select:focus {
    border: 3px solid #e8004c85 !important;
    box-shadow: 0 0 3px #e8004c85 !important;
    -moz-box-shadow: 0 0 3px #e8004c85 !important;
    -webkit-box-shadow: 0 0 3px #e8004c85 !important;
}
select {
    background-image: -webkit-linear-gradient(#FAFAFA, #F4F4F4 40%, #E5E5E5);
}
input:focus, textarea:focus, select:focus {
    outline-offset: 0px !important;
    outline: none !important;
}
.mw-quick-quote-get-quote-button {
    color: white;
    padding: 20px;
    font-size: 22px;
    font-family: 'Roboto', Arial, sans-serif;
    background-color: #E8004C;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
}
.mw-quick-quote-newsletter-subscribe {
    display: flex;
    align-items: center;
    margin: 40px 0px;
}
.mw-quick-quote-newsletter-subscribe-checkbox {
    width: 15px;
    height: 20px;
}
.mw-quick-quote-newsletter-subscribe-checkbox-txt {
    margin-left:10px;
}
.mw-quick-quote-submitting-progress-container {
    display: flex;
    flex-direction: column;
    font-size: 27px;
}
.mw-quick-quote-submitting-progress-message {
    padding: 30px 0px;
    font-weight: 400;
}
.mw-quick-quote-thanks-message {
    color: var(--mwBlack);
    font-size: 30px;
    font-weight: 300;
    margin-top: 40px;
    margin-bottom: 10px;
}
#quickQuoteThanksMessageText {
    margin-top: 10px;
}
.mw-quick-quote-thanks-sub-message {
    font-weight: 200;
    font-size: 22px;
    line-height: 28px;
    margin-top: 30px;
}
/* Quick Quote Page DESKTOP Styles*/
@media screen and (min-width: 780px) {
}
/* Quick Quote Page MOBILE Styles*/
@media screen and (max-width: 780px) {
    .mw-quick-quote-title {
        font-size: 32px;
    }
    .mw-quick-quote-submitting-progress-message {
        font-size: 20px;
    }
}




/* Progress Busy Bar */
.mw-progress {
    position: relative;
    height: 10px;
    width: 200px;
    border: 5px solid #d9d9d9;
    border-radius: 15px;
}
    .mw-progress .mw-progress-slider {
        position: absolute;
        background-color: var(--mwPrimary);
        width: 0px;
        height: 10px;
        border-radius: 15px;
        animation: mw-progress-animation 4s infinite linear;
    }
@keyframes mw-progress-animation {
    0% {
        width: 0%;
    }

    25% {
        width: 100%;
    }

    50% {
        width: 0%;
    }

    75% {
        width: 100%;
    }
}





