﻿/* Global Elements */
:root {
    --amer-blue: #003366;
    --amer-teal: #33CCCC;
    --base-white: #fff;
    --link-blue: #00539B;
    --expense-red: #993300;
    --life-blue: #6699CC;
    --mortgage-orange: #FF6633;
    --senior-green: #847A18;
    --medicare-yellow: #CC9900;
    --login-footer: var(--amer-blue);
    --login-header: var(--amer-blue);
    --primary-color: #1a1c4a;
    --agent-account-footer-color: #33355e;
    --agent-account-primary-button-color: #1a1c4a;
    --agent-account-primary-button-hover-color: #48496e;
    --agent-account-message-text: #00539B;
    --login-button-hover: #00539B;
    --header-size: 60px;
}
:root[data-theme="GSL"] {
    --login-footer: #58060C;
    --login-header: var(--base-white);
    --primary-color: #58060C;
    --agent-account-footer-color: var(--primary-color);
    --agent-account-primary-button-hover-color: #3D5B65;
    --login-button-hover: #3D5B65;
    --header-size: 100px;
}

/* Body */
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    color: #333;
    font-size: 14px;
}

a:hover,
a:focus,
a:active,
button:hover,
button:focus,
button:active {
    text-decoration: none;
    opacity: 0.7;
    color: inherit;
    outline: none;
}

.page-container {
    min-height: calc(100vh - 57px);
    max-width: 1600px;
    margin: 0 auto;
}

.bg-amer-blue {
    background-color: var(--amer-blue);
}

.bg-link-blue {
    background-color: var(--link-blue);
}

.bg-grey {
    background-color: #EEEEEE;
}

.bg-grey-c {
    background-color: #CCCCCC;
    border-bottom: 1px solid #AAAAAA !important;
}

.bg-expense-red {
    background-color: var(--expense-red);
}

.bg-life-blue {
    background-color: var(--life-blue);
}

.bg-mortgage-orange {
    background-color: var(--mortgage-orange);
}

.bg-senior-green {
    background-color: var(--senior-green);
}

.bg-medicare-yellow {
    background-color: var(--medicare-yellow);
}

.bt-0 {
    border-top: none !important;
}

.bb-0 {
    border-bottom: none !important;
}

.no-gutters {
    margin-left: 0;
    margin-right: 0;
}

.m-t-30 {
    margin-top: 30px;
}

.m-b-0 {
    margin-bottom: 0 !important;
}

.m-b-30 {
    margin-bottom: 30px;
}

.p-0 {
    padding: 0 !important;
}

.p-r-0 {
    padding-right: 0 !important;
}

.p-l-0 {
    padding-left: 0 !important;
}

.p-b-20 {
    padding-bottom: 20px !important;
}

.container-p-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
}

h5 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.relative {
    position: relative;
}

.hidden {
    display: none;
}

.ital {
    font-style: italic;
}

.bold {
    font-weight: 700;
}

.border-right {
    border-right: 1px solid #CCCCCC;
}

.border-left {
    border-left: 1px solid #CCCCCC;
}

.video-wrapper {
    display: flex;
}

.banner-title {
    font-size: 48px;
    color: #fff;
    margin-bottom: 0;
    font-family: sans-serif;
    font-weight: 700;
    margin-left: 50px;
    line-height: 200px;
}

.oval-btn {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    border: none;
    border-radius: 30px;
    padding: 8px 30px;
}

.white-table {
    width: 100%;
    background-color: #fff;
    -webkit-box-shadow: 3px 3px 10px 0 #888888;
    box-shadow: 3px 3px 10px 0 #888888;
    margin-bottom: 40px;
}

.white-table-header {
    background-color: #CCCCCC;
}

.white-table tr {
    border-bottom: 1px solid #CCCCCC;
}

.white-table th {
    color: #666666;
    font-size: 11px;
    text-transform: uppercase;
}

.white-table th,
.white-table td {
    padding: 10px 20px;
}

    .white-table th:last-child,
    .white-table td:last-child {
        text-align: right;
    }

.white-table td {
    vertical-align: top;
    padding-top: 20px;
    padding-bottom: 20px;
}

.table-icon {
    margin-right: 5px;
}

.grid-1x2-wrapper {
    display: -ms-grid;
    display: grid;
    grid-gap: 40px;
    -ms-grid-columns: minmax(0,1fr) minmax(0,1fr);
    grid-template-columns: minmax(0,1fr) minmax(0,1fr);
}

.grid-1x3-wrapper {
    display: -ms-grid;
    display: grid;
    grid-gap: 20px;
    -ms-grid-columns: minmax(0,1fr) minmax(0,1fr) minmax(0,1fr);
    grid-template-columns: minmax(0,1fr) minmax(0,1fr) minmax(0,1fr);
}

.grid-1x4-wrapper {
    display: -ms-grid;
    display: grid;
    grid-gap: 20px;
    -ms-grid-columns: minmax(0,1fr) minmax(0,1fr) minmax(0,1fr) minmax(0,1fr);
    grid-template-columns: minmax(0,1fr) minmax(0,1fr) minmax(0,1fr) minmax(0,1fr);
}

.grid-wide {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
    -ms-grid-row: 1;
    grid-row: 1;
}

/* formerly .grid-one-third - split in to two divs - half-one and half-two */
.grid-half-one {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    grid-row: 2;
}

.grid-half-two {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2;
    -ms-grid-row: 2;
    grid-row: 2;
}

.grid-two-thirds {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
    -ms-grid-row: 1;
    grid-row: 1;
}

.grid-one-third {
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-column: 3 / 4;
    -ms-grid-row: 1;
    grid-row: 1;
}

.white-card {
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-shadow: 3px 3px 10px 0 #888888;
    box-shadow: 3px 3px 10px 0 #888888;
    color: #707070;
}

/* ^^^^^^^^^^^^^^^ Navbar ^^^^^^^^^^^^^^^ */
.navbar {
    height: var(--header-size);
    position: relative;
    min-height: 50px;
    margin-bottom: 20px;
    border-color: var(--login-header);
    background-color: var(--login-header);
    border-radius: 0;
    font-family: "PT Sans";
    font-size: 16px;
    -ms-flex-wrap: unset;
    flex-wrap: unset;
    padding: 0;
}

.navbar-brand {
    margin-left: 20px;
}

.navbar-toggler {
    background-color: var(--amer-blue);
    position: relative;
    float: right;
    padding: 5px 10px;
    margin: 8px 15px;
}

    .navbar-toggler:hover,
    .navbar-toggler:active,
    .navbar-toggler:focus {
        opacity: 0.7
    }

    .navbar-toggler .icon-bar {
        background-color: #fff;
        display: block;
        height: 2px;
        width: 22px;
        border-radius: 1px;
        margin-top: 4px;
    }

.icon-bar:last-child {
    margin-bottom: 4px;
}

.navbar-nav > li > a {
    color: var(--base-white);
    padding: 1px 20px !important;
    margin: 19px 0;
    height: 25px;
}

.nav-link {
    line-height: 1.5;
}

.navbar-nav.nav-icons > li > a {
    padding: 0 25px !important;
    margin: 15px 0;
    height: 30px;
    line-height: 30px;
}

.bold-italic {
    font-weight: 700;
    font-style: italic;
}

.border-right-teal {
    border-right: 2px solid var(--amer-teal);
}

.font-12 {
    font-size: 12px;
    line-height: 2;
}

.navbar-nav > .active > a,
.navbar-nav > .open > a,
.navbar-nav > .open > a:hover,
.navbar-nav > li > a:hover {
    color: var(--base-white);
    background-color: var(--amer-blue);
}

.navbar-right {
    margin-right: 15px;
    height: 100%;
}

.dropdown-menu {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#00539B), to(var(--amer-blue)));
    background-image: linear-gradient(#00539B, var(--amer-blue));
    width: 220px;
    padding: 10px 0;
    top: 75%;
}

    .dropdown-menu > a {
        color: var(--base-white);
    }

.dropdown-icon {
    float: right;
    width: 18px;
    text-align: center;
}

.dropdown-menu .divider {
    height: 2px;
    margin: 5px 20px;
    background-color: var(--amer-teal);
}

.nav-link-text {
    display: none;
}

@media screen and (max-width: 992px) {
    .navbar-collapse {
        border-top: 1px solid transparent;
        -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

        .navbar-collapse.collapse {
            position: absolute;
            top: 60px;
            width: 100%;
            background-color: var(--amer-blue);
            z-index: 10;
        }

        .navbar-collapse.collapsing {
            -webkit-transition: height 0.01s;
            transition: height 0.01s;
        }

    .navbar-fixed-top {
        top: 0;
        border-width: 0 0 1px;
    }

    .navbar-nav {
        float: none !important;
        margin: 0;
    }

        .navbar-nav > li {
            float: none;
        }

    .navbar-right {
        margin-top: 5px;
    }

        .navbar-right .navbar-nav > li {
            margin-top: 15px;
            height: 25px;
        }

            .navbar-right .navbar-nav > li:last-child {
                margin-bottom: 15px;
            }

    .navbar-nav > li > a {
        display: inline-block;
        padding-top: 10px;
        padding-bottom: 10px;
        font-size: 16px;
        margin: 15px 0 0 !important;
        padding-left: 25px !important;
        font-style: unset;
    }

    .nav-icons > li > a:first-child {
        margin-top: 0 !important;
    }

    .collapse.in {
        display: block !important;
        background-color: var(--amer-blue);
    }

    .navbar-collapse .border-right-teal {
        border-right: none;
    }

    .navbar-nav.nav-icons > li > a {
        height: 22px;
        line-height: 22px;
    }

    .nav-link-icon {
        display: none;
    }

    .nav-link-text {
        display: block;
    }
}

/* ^^^^^^^^^^^^^^^ Slide Out Menu ^^^^^^^^^^^^^^^ */
.slide-menu {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 20;
    top: 0;
    right: 0;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#00539B), to(var(--amer-blue)));
    background-image: linear-gradient(#00539B, var(--amer-blue));
    overflow-x: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    font-family: "PT Sans";
}

    .slide-menu .menu-link {
        margin: 10px 40px;
        padding: 0 0 10px;
        text-decoration: none;
        font-size: 20px;
        color: #fff;
        display: block;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }

    .slide-menu a:hover,
    .slide-menu a:focus,
    .slide-menu a:active {
        color: #818181;
    }

    .slide-menu .close-btn {
        position: absolute;
        top: 0;
        right: 25px;
        font-size: 40px;
        color: #fff;
        margin-left: 50px;
    }

.menu-link-wrapper {
    margin-top: 50px;
    margin-bottom: 40px;
}

.menu-link-header {
    color: #B7B7B7;
    font-size: 11px;
    font-weight: bold;
    margin-left: 38px;
    text-transform: uppercase;
}

.menu-link {
    border-bottom: 2px solid var(--amer-teal);
}

    .menu-link:last-child {
        border-bottom: none;
    }

.menu-products-list {
    list-style: none;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    font-family: sans-serif;
    margin-bottom: 40px;
}

.menu-product {
    margin-bottom: 10px;
}

.menu-product-box {
    margin-right: 10px;
}

.menu-product a {
    color: #fff;
    text-decoration: none;
}

    .menu-product a:hover,
    .menu-product a:focus,
    .menu-product a:active {
        opacity: 0.7;
        text-decoration: none;
    }

.box-image {
    vertical-align: unset;
}

.menu-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 40px;
}

.menu-footer-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    padding-right: 40px;
    border-right: 2px solid var(--amer-teal);
}

.menu-footer-link {
    color: #fff;
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

    .menu-footer-link:hover,
    .menu-footer-link:focus,
    .menu-footer-link:active {
        text-decoration: none;
    }

.menu-footer-icon {
    padding-left: 40px;
}

/* ^^^^^^^^^^^^^^^ Act as User Modal ^^^^^^^^^^^^^^^ */
.modal {
    font-family: sans-serif;
}

.user-type .modal-header {
    padding: 0 0 10px;
    margin: 40px 60px 30px;
    border-bottom: 2px solid var(--amer-teal);
}

.user-type .modal-title {
    font-weight: 700;
}

.user-type.modal button.close {
    font-size: 40px;
    color: var(--amer-blue);
    font-weight: 400;
    opacity: 1;
    margin: -40px -50px 0 0;
}

.user-type .modal-body {
    padding: 0 60px;
}

.user-type .search-label {
    margin-bottom: 10px;
    color: #666;
}

.user-type .search-box {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

#userSearch {
    background-color: #F6F6F6;
    padding: 8px 15px;
    width: 200px;
    border: 1px solid #ccc;
    border-right: none;
    color: #999;
}

.user-type .search-button {
    border: 1px solid #ccc;
    border-left: none;
    background-color: #F6F6F6;
}

.user-type .fa-search {
    color: #0066CC;
    padding-right: 10px;
}

.user-type .search-intro-box {
    background-color: #F1F1F1;
    margin-top: 30px;
    margin-bottom: 50px;
}

.user-type .search-text-wrapper {
    margin: 0 auto;
    padding-top: 40px;
    padding-bottom: 40px;
    max-width: 450px;
    text-align: center;
    color: #707070;
}

    .user-type .search-text-wrapper h4 {
        margin-bottom: 20px;
        font-size: 18px;
        font-weight: 700;
    }

    .user-type .search-text-wrapper p {
        margin-bottom: 0;
        font-style: italic;
        font-weight: 400;
    }

.user-type .search-results-table {
    width: 100%;
    -webkit-box-shadow: 0 3px 10px 0 #888888;
    box-shadow: 0 3px 10px 0 #888888;
}

    .user-type .search-results-table th {
        text-align: center;
        background-color: #ccc;
        padding: 10px 30px;
        color: #666;
    }

        .user-type .search-results-table th:first-child {
            text-align: left;
            font-weight: 700;
        }

    .user-type .search-results-table td {
        text-align: center;
        padding: 20px 30px;
        border-bottom: 1px solid #ccc;
    }

        .user-type .search-results-table td:first-child {
            text-align: left;
            font-weight: 700;
        }

.user-type .button-container {
    width: 100%;
    text-align: center;
}

.user-type .show-more {
    border: none;
    background-color: transparent;
    color: #0066CC;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    margin: 20px auto 30px;
}

.user-type .modal-footer {
    border: none;
    display: block;
    padding: 30px 60px;
    background-color: #F6F6F6;
    display: inline-block;
}

    .user-type .modal-footer .btn {
        background-color: #B7B7B7;
        font-size: 12px;
        text-transform: uppercase;
        padding: 5px 30px;
        border-color: #B7B7B7;
        border-radius: 40px;
    }

.user-type .modal-cancel {
    border: none;
    background-color: transparent;
    color: #0066CC;
    margin-left: 10px;
}

.user-type .modal-footer .search-checkbox,
.user-type .modal-footer .delete-btn {
    float: right;
    color: #303030;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 8px;
}

.user-type .modal-footer .delete-btn {
    border: none;
    background-color: transparent;
}

    .user-type .modal-footer .delete-btn .news-text {
        margin-bottom: 0;
        margin-left: 10px;
        font-size: 11px;
        font-weight: 600;
        color: #CC3333 !important;
        text-transform: uppercase;
    }

.user-type .modal-footer input[type=checkbox] {
    border-color: #707070;
    background-color: #F6F6F6;
    height: 18px;
    width: 18px;
    margin-right: 10px;
}

.user-type .modal-footer .search-checkbox label {
    margin-bottom: 0;
    font-size: 12px;
}

#checkoutModal .white-table .table-header-link {
    text-transform: initial;
    margin-left: 10px;
}

#checkoutModal .white-table th:first-child,
#checkoutModal .white-table td:first-child {
    width: 50%;
}

/* #checkoutModal .white-table td:first-child {
  padding-bottom: 10px;
} */

#checkoutModal .white-table th:last-child {
    text-align: left;
}

#checkoutModal .white-table td {
    color: #707070;
}

    #checkoutModal .white-table td:not(:first-child) {
        line-height: 40px;
    }

#checkoutModal a {
    font-weight: bold;
    color: #0066CC;
}

#checkoutModal .white-table p {
    margin-bottom: 0;
}

#checkoutModal .quantity-wrapper {
    height: 40px;
    width: 40px;
    border: 1px solid #CCCCCC;
    background-color: #F6F6F6;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
}

#checkoutModal .news-subtitle {
    color: #707070;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.checkout-form {
    margin-bottom: 50px;
    width: 80%;
}

    .checkout-form label {
        font-size: 11px;
        color: #666666;
    }

    .checkout-form select,
    .checkout-form input,
    .checkout-form textarea {
        width: 100%;
        background-color: #F6F6F6;
        border: 1px solid #CCCCCC;
        padding: 10px 20px;
        margin-bottom: 15px;
    }

.checkout-csz-wrapper {
    display: flex;
    margin-bottom: 30px;
}

.checkout-add-wrapper {
    margin-right: 20px;
}

    .checkout-add-wrapper:last-child {
        margin-right: 0;
    }

    .checkout-add-wrapper.city {
        width: 50%;
    }

    .checkout-add-wrapper.state,
    .checkout-add-wrapper.zip {
        width: 25%;
    }

    .checkout-add-wrapper select,
    .checkout-add-wrapper input {
        width: 100%;
    }

.checkout-form p {
    font-size: 12px;
    color: #999999;
}

#checkoutModal .delete-btn {
    color: #0066CC;
}


/* ^^^^^^^^^^^^^^^ Footer ^^^^^^^^^^^^^^^ */
.footer {
    background-color: var(--login-footer);
    height: 57px;
    font-family: sans-serif;
    font-weight: 400;
    position: fixed;
    bottom: 0px;
}

.footer-wrapper {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--base-white);
}

.footer-logo {
    margin-left: 40px;
}

.breadcrumb {
    padding: 0;
    margin: 0 0 0 30px;
    background-color: transparent;
    border-radius: 0;
}

    .breadcrumb > li {
        display: inline-block;
    }

        .breadcrumb > li > a {
            color: #fff;
        }

        .breadcrumb > li + li::before {
            content: "/ ";
            color: var(--amer-teal) !important;
        }

    .breadcrumb > .active {
        color: #777;
    }

.breadcrumb-item:hover,
.breadcrumb-item.active > a:hover {
    color: var(--amer-teal);
    text-decoration: none;
}

.breadcrumb-item.active > a {
    color: #b7b7b7;
}

.footer-right {
    margin-left: auto;
    margin-right: 40px;
}

.footer-link-wrapper {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .footer-link-wrapper li {
        float: left;
    }

.footer-link {
    color: #fff;
    padding: 0 15px !important;
    display: block;
}

    .footer-link:hover {
        text-decoration: none;
        color: var(--amer-teal);
    }


/* ^^^^^^^^^^^^^^^ Home Page Landing ^^^^^^^^^^^^^^^ */

.kpi-grid-wrapper {
    display: -ms-grid;
    display: grid;
    grid-gap: 20px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 40px;
}

.white-card.no-flex {
    display: block;
    /*padding-top: 30px;*/
}

.single-kpi-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /*font-family: sans serif;*/
    padding: 0 0 30px 0;
}

.kpi-title {
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    font-family: Arial;
    height: 50px;
}

.kpi-help {
    color: var(--link-blue);
    font-size: 10px;
    margin-top: 5px;
}

.kpi-btn {
    color: #fff;
    background-color: var(--link-blue);
    border-radius: 20px;
    padding: 8px 30px;
    font-size: 12px;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    font-weight: 700;
}

.bonus-banner-wrapper {
    background-color: #99CCFF;
    margin: 20px;
    padding: 15px 10px;
    display: flex;
    align-items: center;
    width: 100%;
}

.bonus-banner-logo {
    display: block;
    margin: auto;
}

.bonus-value-wrapper {
    display: flex;
    align-items: center;
    font-weight: 700;
}

.bonus-value-title {
    font-size: 11px;
    margin: 0 10px 0 0;
    width: 40px;
    color: #303030;
}

.bonus-value-amount {
    background-color: rgba(237, 85, 101, 0.2);
    padding: 10px;
    font-size: 20px;
    color: #303030;
}

.bonus-qual-wrapper {
    font-size: 11px;
    margin-left: 20px;
}

.bonus-qual-title {
    color: #ED5565;
    margin-bottom: 0;
}

.bonus-qual-info {
    margin-bottom: 0;
    font-weight: 400;
}

.bonus-learn-more {
    font-size: 10px;
    text-transform: uppercase;
    color: var(--link-blue);
    margin-bottom: 0;
    font-weight: 700;
}

.landing-side-dash {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .landing-side-dash .white-card {
        padding: 20px 15px;
    }

.side-dash-wrapper {
    width: 100%;
}

.side-dash-item-wrapper {
    width: 100%;
    display: flex;
    padding: 5px 0;
    border-bottom: 1px solid #B7B7B7;
}

    .side-dash-item-wrapper:nth-last-child(2) {
        border-bottom: none;
    }

.side-dash-alert {
    margin: 10px 15px 0 0;
}

.side-dash-title {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5px;
}

.side-dash-item-wrapper p {
    margin-bottom: 0;
    font-size: 11px;
    color: #000;
}

.side-dash-amount {
    margin: 5px 0 0 auto;
}

.side-dash-link {
    color: var(--link-blue);
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
}

/*.worklist-section .side-dash-left-wrapper .side-dash-link {
    color: #ED5565;
    text-transform: unset;
}*/

.page-subsections {
    padding-bottom: 50px;
    color: #707070;
}

    .page-subsections .news-info-wrapper {
        padding-bottom: 10px;
    }

    .page-subsections .article-wrapper {
        width: 97%;
    }

        .page-subsections .article-wrapper .image-wrapper {
            margin: 10px 15px 0 0;
        }

        .page-subsections .article-wrapper .news-info-wrapper {
            margin-top: 10px;
        }

        .page-subsections .article-wrapper .news-image {
            width: 120px;
            margin-bottom: 20px;
        }

        .page-subsections .article-wrapper .news-date {
            margin-bottom: 3px;
        }

    .page-subsections .news-category {
        position: relative;
        float: left;
        margin-right: 10px;
    }

    .page-subsections .article-wrapper .news-desc {
        margin-bottom: 0;
    }

    .page-subsections .event-info-wrapper {
        width: 100%
    }

    .page-subsections .event-card {
        margin-top: 10px;
        margin-right: 20px;
        height: 60px;
    }

    .page-subsections .event-title {
        font-size: 14px;
    }

.training-subsection .news-info-wrapper {
    margin-left: 20px !important;
}

.page-subsections .video-wrapper {
    display: flex;
    margin-top: 5px;
}

.subsection-text {
    margin-top: 25px;
    font-size: 12px;
}

.quick-links-section {
    background-color: #DDDDDD;
    padding: 30px 30px 60px;
}

    .quick-links-section .wrapper-header {
        margin-bottom: 20px;
    }

    .quick-links-section .white-card {
        box-shadow: none;
        padding: 20px 30px;
        display: block;
    }

    .quick-links-section .news-title {
        font-size: 14px;
    }

    .quick-links-section .subsection-text {
        margin-top: 10px;
    }

    .quick-links-section .links-wrapper {
        display: flex;
        justify-content: space-between;
    }

    .quick-links-section .link-noBtn {
        font-size: 14px;
        text-transform: unset;
        margin: 0;
    }

@media screen and (max-width: 992px) {

    .landing-page-wrapper .grid-two-thirds {
        -ms-grid-column: 1;
        -ms-grid-column-span: 3;
        grid-column: 1 / 4;
        -ms-grid-row: 1;
        grid-row: 1;
        margin-bottom: 10px;
    }

    .landing-page-wrapper .landing-side-dash {
        flex-direction: row;
    }

    .landing-page-wrapper .grid-one-third {
        -ms-grid-column: 1;
        -ms-grid-column-span: 3;
        grid-column: 1 / 4;
        -ms-grid-row: 2;
        grid-row: 2;
        margin-bottom: 30px;
    }

    .landing-page-wrapper .commissions-section,
    .landing-page-wrapper .worklist-section {
        width: 100%;
    }

    .grid-1x3-wrapper.page-subsections {
        grid-gap: 10px;
    }

    .page-subsections .department-news.left,
    .page-subsections .department-news.mid,
    .page-subsections .department-news.right {
        border-right: none;
    }

    .page-subsections .image-wrapper,
    .page-subsections .news-desc,
    .page-subsections .event-desc,
    .page-subsections .video-wrapper .news-date {
        display: none;
    }

    .page-subsections .article-wrapper,
    .page-subsections .department-news .news-info-wrapper {
        width: 90%;
    }

    .page-subsections .event-info-wrapper {
        padding-left: 15px;
    }

    .page-subsections .department-news .news-title,
    .page-subsections .department-news .event-title,
    .quick-links-section .link-noBtn {
        font-size: 12px;
    }

    .page-subsections .event-title {
        margin-bottom: 0;
    }

    .page-subsections video {
        width: 100px;
    }

    .page-subsections .video-wrapper {
        margin-top: 10px;
        margin-bottom: 20px;
    }

        .page-subsections .video-wrapper .news-info-wrapper {
            padding: 0;
            margin: 0 0 0 10px;
        }

    .quick-links-section .white-card {
        padding: 20px;
    }

    .quick-links-section .links-wrapper {
        padding: 0;
    }
}

@media screen and (max-width: 768px) {

    .grid-half-one,
    .grid-half-two {
        grid-column: 1 / 3;
    }

    .grid-half-two {
        grid-row: 3;
    }
}

/* ^^^^^^^^^^^^^^^ Page Tabs Header ^^^^^^^^^^^^^^^ */
.tabs-header-wrapper {
    border-bottom: 2px solid var(--amer-teal);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.tabs-header-links {
    margin: 0px;
    padding: 0px;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.page-title {
    font-family: sans-serif,Arial;
    font-weight: bold;
    color: #000;
    font-size: 36px;
    margin: 20px 0 10px;
}

ul.tabs {
    margin: 0px;
    padding: 0px;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

    ul.tabs li {
        background: none;
        color: #00539B;
        display: inline-block;
        padding: 10px 0;
        margin: 0 15px;
        cursor: pointer;
        font-family: sans-serif;
        font-weight: bold;
    }

        ul.tabs li.current {
            color: #222;
            font-weight: 700;
            border-bottom: 5px solid #222;
            margin-bottom: -5px;
        }

.tab-content {
    display: none;
    background: #ededed;
    padding: 15px 0;
}

    .tab-content.current {
        display: inherit;
    }

.tab-link {
    background: none;
    color: #00539B;
    display: inline-block;
    padding: 10px 15px;
    font-size: 14px;
    cursor: pointer;
    font-family: sans-serif;
    font-weight: bold;
    text-decoration: none;
}

    .tab-link:hover,
    .tab-link:focus,
    .tab-link:active {
        text-decoration: none;
    }

/* News Detail */
.news-info-wrapper {
    margin: 25px 0;
    width: 65%;
    font-family: sans-serif;
}

.detail-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
}

    .detail-wrapper .news-category {
        position: relative;
        float: left;
        margin-right: 15px;
    }

    .detail-wrapper .news-title {
        font-size: 24px;
        color: #000;
        margin-bottom: 20px;
        font-weight: bold;
    }

    .detail-wrapper .news-subtitle {
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 15px;
    }

    .detail-wrapper .news-text {
        font-size: 16px;
        margin-bottom: 15px;
    }

.news-list {
    margin: 15px 0;
}

.detail-wrapper .image-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-right: 0;
}

.detail-wrapper .news-image {
    width: 300px;
}

.detail-wrapper .white-card {
    display: block;
    padding: 15px 20px 5px;
    width: 300px;
    margin-top: 20px;
}

.detail-wrapper .wrapper-header {
    margin-bottom: 10px;
}

.detail-wrapper .resource-wrapper {
    list-style: none;
    padding-left: 0px;
}

.detail-wrapper .resource-item {
    border-bottom: 1px solid #ccc;
    margin-top: 10px;
}

    .detail-wrapper .resource-item:last-of-type {
        border-bottom: none;
    }

.detail-wrapper .fa-caret-right {
    color: #000;
}

.detail-wrapper .resource-title {
    color: #00539B;
    margin-bottom: 0;
}

.detail-wrapper .resource-size {
    font-size: 12px;
    color: #333;
    margin: 0 0 8px 12px;
}

.grid-1x3-wrapper.more-news {
    margin-bottom: 75px;
}

/* News Event */
.news-wrapper {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
    -ms-grid-row: 1;
    grid-row: 1;
}

.wrapper-header {
    color: #707070;
    text-transform: uppercase;
    font-weight: bold;
    font-family: sans-serif;
    font-size: 12px;
}

.image-wrapper {
    position: relative;
    margin: 25px 20px;
    width: 35%;
}

.news-image {
    max-width: 100%;
}

.news-category {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #FF9933;
    color: #fff;
    text-transform: uppercase;
    font-size: 10px;
    font-family: "Roboto";
    padding: 1px 10px;
}

.news-date {
    font-size: 12px;
    margin-bottom: 10px;
}

.news-title {
    color: #00539B;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.news-desc {
    margin-bottom: 20px;
    max-width: 90%;
}

.news-button {
    background-color: #00539B;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-family: sans-serif;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 30px;
    border-radius: 20px;
}

.arrow-right {
    padding-left: 10px;
}

.event-wrapper {
    -ms-grid-column: 3;
    grid-column: 3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1 / 3;
    font-family: sans-serif;
}

.event-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 50px;
    margin-bottom: 20px;
}

.date-wrapper {
    background-color: var(--amer-teal);
    width: 60px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.date-num,
.date-month {
    margin: 0;
    color: #fff;
}

.date-num {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.date-month {
    font-size: 10px;
    text-transform: uppercase;
}

.event-info-wrapper {
    background-color: #fff;
    width: calc(100% - 60px);
    padding-left: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.event-title,
.event-desc {
    margin: 0;
}

.event-title {
    font-size: 11px;
    font-weight: bold;
    color: var(--amer-blue);
    margin-bottom: 5px;
}

.event-desc {
    font-size: 10px;
    color: #2C2A29;
}

.link-noBtn {
    color: var(--link-blue);
    display: inline-block;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    margin-left: 15px;
    margin-top: 15px;
}

.news-wrapper-left,
.news-wrapper-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.news-wrapper-left {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    grid-row: 2;
}

.news-wrapper-right {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 2;
    grid-row: 2;
}

    .news-wrapper-right .image-wrapper,
    .news-wrapper-left .image-wrapper {
        width: 50%;
        margin-left: 0;
        margin-right: 15px;
    }

    .news-wrapper-right .news-info-wrapper,
    .news-wrapper-left .news-info-wrapper {
        width: 50%;
        margin-right: 5px;
    }

    .news-wrapper-right .news-date,
    .news-wrapper-left .news-date {
        font-size: 10px;
        margin-bottom: 5px;
    }

    .news-wrapper-right .news-title,
    .news-wrapper-left .news-title {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .news-wrapper-right .news-desc,
    .news-wrapper-left .news-desc,
    .department-news .news-desc {
        font-size: 12px;
        max-width: 95%;
        max-height: 90px;
        overflow: hidden;
        margin-bottom: 10px;
    }

.department-news.left {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
}

.department-news.mid {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    grid-row: 1;
}

.department-news.right {
    -ms-grid-column: 3;
    grid-column: 3;
    -ms-grid-row: 1;
    grid-row: 1;
}

.department-news.left,
.department-news.mid {
    border-right: 1px solid #CCC;
}

.department-news .news-info-wrapper {
    width: 97%;
    margin: 10px 0;
    border-bottom: 1px solid #CCC;
}

    .department-news .news-info-wrapper:last-of-type {
        border-bottom: none;
    }

.department-news .news-date {
    font-size: 10px;
    margin-bottom: 3px;
}

.department-news .news-title {
    font-size: 14px;
    margin-bottom: 3px;
    color: #00539B;
}

.department-news .link-noBtn {
    margin: 0;
}

.banner-info-wrapper {
    background-color: #fff;
    height: 120px;
    margin: 30px 0;
    line-height: 120px;
}

.archive-wrapper {
    padding: 15px;
    margin-bottom: 40px;
}

.article-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #CCC;
}

    .article-wrapper .image-wrapper,
    .article-wrapper .news-info-wrapper {
        width: unset;
        margin-top: 20px;
        margin-bottom: 0;
    }

    .article-wrapper .image-wrapper {
        margin-left: 0;
    }

    .article-wrapper .news-image {
        width: 90px;
    }

    .article-wrapper .news-category {
        position: relative;
        float: left;
        margin-right: 15px;
    }

    .article-wrapper .news-date {
        margin-bottom: 8px;
    }

    .article-wrapper .news-title {
        margin-bottom: 3px;
    }

    .article-wrapper:last-child {
        border-bottom: none;
    }

.archive-selector {
    margin-top: 20px;
    margin-left: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.select-category-wrapper {
    margin-right: 40px;
}

.selector-header {
    font-size: 14px;
    color: #707070;
    margin-bottom: 5px;
    margin-left: 5px;
}

.selector-box {
    background-color: #fff;
    padding: 10px 20px;
    width: 230px;
    border-radius: 3px;
    background-image: url("../images/select-down.png");
    background-position: calc(100% - 10px);
    background-repeat: no-repeat;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    overflow: hidden;
    position: relative;
}

    .selector-box:focus {
        outline: none;
    }

    .selector-box.expense-red {
        background-image: url("../images/select-down-expense-red.png");
    }

    .selector-box.life-blue {
        background-image: url("../images/select-down-life-blue.png");
    }

    .selector-box.mortgage-orange {
        background-image: url("../images/select-down-mortgage-orange.png");
    }

    .selector-box.senior-green {
        background-image: url("../images/select-down-senior-green.png");
    }

    .selector-box.medicare-yellow {
        background-image: url("../images/select-down-medicare-yellow.png");
    }

.arrow-down {
    position: absolute;
    top: 0;
    right: 0;
    border: solid var(--expense-red);
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 5px;
}

#datepicker {
    font-family: "PT Sans";
    font-size: 14px;
    background-color: #fff;
    padding: 10px 20px;
    width: 230px;
    border-radius: 3px;
    border: 1px solid #a6a6a6;
    background-image: url("../images/cal-icon.png");
    background-position: calc(100% - 10px);
    background-repeat: no-repeat;
}

/* Event-Detail */
.event-detail {
    font-family: sans-serif;
}

    .event-detail .detail-wrapper {
        border-bottom: none;
    }

    .event-detail .white-card {
        width: 100%;
        padding: 0 0 30px;
    }

    .event-detail .event-title {
        font-size: 12px;
        text-transform: uppercase;
        color: #707070;
        font-weight: bold;
    }

    .event-detail .event-info-wrapper.event-detail {
        width: 100%;
        padding-left: 0;
    }

    .event-detail .event-date,
    .event-detail .event-time,
    .event-detail .event-code,
    .event-detail .event-pass {
        margin-left: auto;
        margin-right: auto;
        text-align: left;
        width: 160px;
    }

    .event-detail .event-date {
        font-size: 14px;
        font-weight: bold;
        margin-bottom: 3px;
    }

.event-time {
    font-size: 14px;
    margin-bottom: 15px;
}

.event-code {
    margin-bottom: 3px;
}

.event-code,
.event-pass {
    font-size: 12px;
}

.event-detail .event-btn {
    background-color: var(--link-blue);
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    border-radius: 20px;
    width: 160px;
    margin: 20px auto 10px;
    padding: 5px;
}

/* My Profile */
.product-section,
.state-section {
    margin-bottom: 50px;
}

.section-header-wrapper {
    margin-top: 30px;
}

.section-header-title {
    font-size: 20px;
    font-weight: bold !important;
    color: #000;
    font-family: sans-serif;
}

.section-header-text {
    font-size: 16px;
    font-family: sans-serif;
    color: #333;
    margin-bottom: 30px;
}

.wrapper-header {
    color: #707070;
    text-transform: uppercase;
    font-weight: bold;
    font-family: sans-serif;
    font-size: 12px;
}

.profile-section .white-card {
    padding: 40px;
}

.profile-section .news-subtitle,
#editDelegate .news-subtitle {
    font-size: 14px;
    font-weight: 700;
    color: #303030;
    margin-bottom: 20px;
}

.profile-section .white-table th:last-child,
.profile-section .white-table td:last-child {
    text-align: left;
}

.agent-section .section-header-title {
    margin-bottom: 30px;
}

.agent-section .news-subtitle {
    font-size: 12px;
    font-weight: 700;
    color: #707070;
    text-transform: uppercase;
}

.state-list {
    display: flex;
    flex-flow: column wrap;
    max-height: 200px;
    list-style-image: url("/images/bullet-pt-square.png");
    margin-bottom: 50px;
}

    .state-list li {
        margin-bottom: 5px;
    }

.contact-info.white-table th,
.contact-info.white-table td {
    padding: 30px 40px;
}

    .contact-info.white-table td:last-child {
        text-align: center;
    }

.update-type .modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .update-type .modal-footer .news-text {
        float: right;
        width: 50%;
    }

.preferences-section label,
#editDelegate label {
    font-size: 12px;
    color: #303030;
    display: block;
    margin-left: 30px;
    line-height: 1.8;
    margin-bottom: 20px;
}

    .preferences-section label:last-child,
    #editDelegate label:last-child {
        margin-bottom: 0;
    }

.preferences-section input[type=checkbox],
#editDelegate input[type=checkbox] {
    height: 20px;
    width: 20px;
    float: left;
}

.product-block {
    position: absolute;
    top: 0;
    left: 0;
    height: 30px;
    width: 30px;
}

.state-column {
    width: 20%;
}

.delegation-section .white-card {
    padding: 30px;
    min-height: 200px;
}

    .delegation-section .white-card .news-text:last-of-type {
        margin-bottom: 35px;
    }

.delegation-section .news-text {
    margin-bottom: 5px;
    color: #303030;
}

.delegation-section .inactive .news-subtitle,
.delegation-section .inactive .news-text,
.delegation-section .inactive .news-text {
    color: #B7B7B7;
}

.delegation-section .inactive .status-color {
    background-color: #B7B7B7;
}

.delegation-section .edit-button {
    position: absolute;
    bottom: 30px;
    right: 30px;
}

.active-status-wrapper {
    display: flex;
    position: absolute;
    top: 30px;
    right: 30px;
}

    .active-status-wrapper .news-text {
        color: #CCCC33;
    }

    .active-status-wrapper .status-color {
        background-color: #CCCC33;
        height: 19px;
        width: 19px;
        margin-left: 10px;
        border-radius: 50%;
    }

.add-delegate-icon {
    font-size: 36px;
    color: #fff;
    line-height: 35px;
    background-color: var(--amer-blue);
    text-align: center;
    width: 60px;
    height: 35px;
    border-radius: 30px;
    margin-left: auto;
    margin-right: auto;
}

.add-card {
    background-color: #F2F2F2;
    border: none;
    -webkit-box-shadow: 3px 3px 10px 0 #888888;
    box-shadow: 3px 3px 10px 0 #888888;
}

    .add-card .news-subtitle {
        margin-top: 15px;
        margin-bottom: 0;
        color: var(--amer-blue);
        text-transform: uppercase;
    }

#editDelegate .news-text {
    font-size: 11px;
    color: #666666;
}

#editDelegate .selector-box .select-color {
    color: #CCCC33;
}

    #editDelegate .selector-box .select-color.inactive {
        color: #B7B7B7;
    }

#deleteDelegate {
    color: #707070;
    text-align: center;
    font-size: 18px;
}

    #deleteDelegate .modal-dialog {
        margin-top: 15%;
    }

    #deleteDelegate .modal-body {
        min-height: unset;
        padding: 30px 50px;
    }

    #deleteDelegate .news-subtitle {
        font-weight: 700;
        margin-bottom: 20px;
    }

    #deleteDelegate p {
        font-style: italic;
        margin-bottom: 20px;
    }

    #deleteDelegate .delete-btn {
        border: none;
        border-radius: 30px;
        color: #fff;
        font-size: 12px;
        font-weight: 700;
        background-color: #CC3333;
        padding: 8px 30px;
        text-transform: uppercase;
    }

    #deleteDelegate .modal-cancel {
        font-size: 12px;
        margin-left: 40px;
    }

@media screen and (max-width: 992px) {

    .state-column label {
        font-size: 11px;
    }

    #editDelegate .modal-footer {
        text-align: center;
    }

    #editDelegate .delete-btn {
        margin-top: 30px;
        float: none;
    }

    #deleteDelegate .modal-dialog {
        width: 400px;
        margin-top: 20%;
    }
}

@media (min-width: 576px) {

    #userModal .modal-dialog,
    #addDelegate .modal-dialog,
    #checkoutModal .modal-dialog,
    .update-type .modal-dialog {
        max-width: 700px !important;
    }
}

@media (min-width: 992px) {

    #userModal .modal-dialog,
    #addDelegate .modal-dialog,
    #checkoutModal .modal-dialog,
    .update-type .modal-dialog {
        max-width: 800px !important;
    }
}


/* Order History */
.order-detail-wrapper {
    margin: 30px 15px 0;
    font-family: sans-serif;
    padding-bottom: 50px;
}

    .order-detail-wrapper ul {
        margin-bottom: 25px;
    }

    .order-detail-wrapper li {
        color: #000;
    }

.list-header {
    font-size: 12px;
    text-transform: uppercase;
    color: #707070;
    font-weight: 700;
    margin-bottom: 10px;
}

.order-numbers {
    font-size: 18px;
}

.order-tracking {
    margin-left: 10px;
}

.order-note {
    color: #303030;
    margin-bottom: 40px;
}

.order-detail-wrapper table {
    width: 100%;
    -webkit-box-shadow: 3px 3px 10px 0 #888888;
    box-shadow: 3px 3px 10px 0 #888888;
    color: #707070;
}

.order-detail-wrapper .table-header {
    background-color: #ccc;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #666;
}

.order-detail-wrapper th {
    padding: 10px 15px;
}

    .order-detail-wrapper th:first-child,
    .order-detail-wrapper td:first-child {
        width: 50%;
    }

.order-detail-wrapper .table-header-link {
    margin-left: 10px;
    font-size: 12px;
    text-transform: none;
    text-decoration: none;
    font-weight: 400;
}

.order-detail-wrapper .table-data {
    background-color: #fff;
    border-bottom: 1px solid #CCC;
}

.order-detail-wrapper td {
    padding: 20px;
}

.order-detail-wrapper .top-row p {
    margin-bottom: 0;
}

.rdi-wrapper {
    width: 85%;
}

@media screen and (max-width: 992px) {

    .rdi-wrapper {
        width: 100%;
    }
}

/* Order Modal */
#orderModal .modal-header {
    margin-left: 40px;
    margin-right: 40px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--amer-teal);
}

#orderModal .modal-title {
    font-size: 24px;
}

#orderModal .modal-content {
    background-color: #EEE;
}

#orderModal .modal-body {
    padding: 30px 80px;
}

#orderModal td {
    padding-bottom: 30px;
    vertical-align: top;
    line-height: 30px;
    color: #707070;
    font-size: 14px;
}

#orderModal .order-detail-label {
    width: 175px;
    font-size: 18px;
    color: #333;
}

#orderModal .modal-order-tracking {
    text-decoration: underline;
    margin-left: 10px;
    color: #707070;
    font-weight: 700;
}

#orderModal .modal-styled-table {
    width: 100%;
    margin-top: 20px;
    -webkit-box-shadow: 3px 3px 10px 0 #888888;
    box-shadow: 3px 3px 10px 0 #888888;
}

    #orderModal .modal-styled-table th {
        background-color: var(--amer-blue);
        padding: 10px 20px;
        color: #fff;
        font-weight: 200;
        text-align: center;
        border-color: var(--amer-blue);
    }

    #orderModal .modal-styled-table td {
        padding: 15px 10px 10px;
        border-color: #ccc;
    }

    #orderModal .modal-styled-table .modal-table-link {
        color: #707070;
        text-decoration: underline;
    }

@media screen and (max-width: 992px) {
    #orderModal .modal-header {
        margin: 0 20px;
        padding: 16px 0 5px;
    }

    #orderModal .modal-body {
        padding: 30px 20px;
    }
}

/* Agent Info */
.agent-info-wrapper .page-title {
    font-family: sans-serif;
}

.agent-info-wrapper .section-header-title {
    font-size: 24px;
    margin-bottom: 30px;
}

.agent-info-wrapper .table-header {
    font-size: 18px;
    margin-left: 15px;
    margin-bottom: 10px;
}

.agent-info-wrapper .education-table,
.agent-info-wrapper ul {
    margin-left: 25px;
}

    .agent-info-wrapper .education-table th,
    .agent-info-wrapper .education-table td,
    .agent-info-wrapper li {
        padding: 3px 8px;
    }

.inner-wrapper.contact {
    width: 90%;
}

.agent-info-wrapper .contact-table,
.agent-info-wrapper .contact p {
    margin-left: 20px;
}

.agent-info-wrapper, .contact-table td {
    padding: 10px;
    vertical-align: top;
}

    .agent-info-wrapper .contact p {
        padding: 10px;
    }

/* Product Market */
.image-banner-wrapper {
    /*background-image: url(/images/market-banner-image.png);*/
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 200px;
    width: auto;
}

.page-header-section {
    padding: 50px 0;
    position: relative;
}

.page-header-wrapper {
    max-width: 70%;
}

.page-header-title {
    font-size: 20px;
    color: #000;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-header-text {
    font-size: 16px;
}

.sidebar-wrapper {
    background-color: #fff;
    position: absolute;
    top: -40px;
    right: 0;
    max-width: 25%;
    padding: 30px 30px 20px;
    -webkit-box-shadow: 3px 3px 10px 0 #888888;
    box-shadow: 3px 3px 10px 0 #888888;
}

.sidebar-title {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
}

.sidebar-list-wrapper {
    padding-left: 12px;
    font-size: 12px;
}

.sidebar-list-item {
    margin-bottom: 10px;
}

.product-brandname-section {
    background-color: #fff;
    padding: 50px 40px 20px;
    -webkit-box-shadow: 3px 3px 10px 0 #888888;
    box-shadow: 3px 3px 10px 0 #888888;
}

.product-brandname-wrapper {
    display: flex;
    border-bottom: 1px solid #CCCCCC;
    margin-bottom: 30px;
}

    .product-brandname-wrapper:last-child {
        border-bottom: none;
        margin: 0;
    }

.product-brandname-title-wrapper {
    margin-bottom: 30px;
    width: 65%;
}

.product-brandname-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--expense-red);
    line-height: 0.9;
    margin-bottom: 20px;
}

    .product-brandname-title span.brandname {
        font-size: 27px;
        font-weight: 400;
        color: #666666;
        margin-left: 30px;
    }

    .product-brandname-title span.series {
        font-size: 36px;
        font-weight: 400;
        color: #666666;
        font-style: italic;
        font-family: sans-serif;
    }

.product-brandname-text {
    font-size: 14px;
}

.product-button-wrapper {
    width: 35%;
}

.product-button {
    float: right;
    background-color: var(--expense-red);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 10px 30px;
    border-radius: 20px;
    text-transform: uppercase;
}

.product-page .page-subsections .news-subsection .news-info-wrapper {
    width: 95%;
}

.product-page .page-subsections .events-subsection .event-card {
    height: 50px;
    margin-right: 0;
}

.news-subsection .news-wrapper-left .image-wrapper {
    margin-top: 10px;
}

.news-subsection .news-wrapper-left .news-image {
    position: relative;
    max-width: unset;
    width: 140px;
}

.news-subsection .news-wrapper-left .news-category {
    position: absolute;
}

.product-page .tabs-header-wrapper {
    margin: 40px 0 0;
    border-bottom-color: var(--expense-red);
}

.product-overview .tab-content {
    padding-left: 0;
    padding-right: 0;
}

.product-page ul.tabs li {
    color: var(--expense-red);
}

    .product-page ul.tabs li.current {
        color: #000;
    }

.product-overview .product-brandname-title {
    font-size: 48px;
    line-height: 0.8;
}

    .product-overview .product-brandname-title span.brandname {
        font-size: 36px;
    }

    .product-overview .product-brandname-title span.series {
        font-size: 48px;
    }

.product-overview .hero-banner {
    display: flex;
    margin: 30px 0 50px;
}

.product-overview .hero-info-wrapper {
    width: 60%;
    padding: 30px 0 0 40px;
}

.product-overview .page-header-text {
    margin-bottom: 25px;
}

.product-overview .product-button {
    float: none;
}

.product-overview .white-card {
    padding: 20px;
}

.product-overview .guide-card .image-wrapper {
    width: 40%;
    margin: 10px 0;
}

.product-overview .guide-card .news-image {
    width: 90%;
}

.product-overview .guide-card .news-info-wrapper {
    width: 60%;
    margin: 15px 0 0;
}

.product-overview .white-card .news-title,
.product-overview .guide-card .news-desc span.doc-pipe {
    color: var(--expense-red);
}

.product-overview .white-card .news-title {
    font-size: 14px;
}

.product-overview .link-noBtn {
    width: 100%;
    margin: 0 auto;
}

.product-overview .form-card .news-info-wrapper {
    width: 100%;
    margin: 15px 0;
    border-bottom: 1px solid #CCCCCC;
}

    .product-overview .form-card .news-info-wrapper:nth-last-child(2) {
        border-bottom: none;
    }

.product-overview .form-card .news-desc {
    margin-bottom: 0;
}

.product-overview .training-card .image-wrapper,
.product-overview .training-card .news-info-wrapper {
    width: 85%;
    margin: 15px auto;
}

.product-overview .training-card .news-image {
    width: 100%;
}

.product-overview .training-card .news-info-wrapper {
    margin-top: 10px;
    margin-bottom: 0;
}

.product-overview .page-subsections.white-cards {
    padding-bottom: 10px;
}

.product-overview .archive-selector {
    margin-left: 0;
    margin-bottom: 40px;
    justify-content: space-between;
    align-items: flex-end;
}

    .product-overview .archive-selector .product-button {
        height: 30px;
        line-height: 1;
    }

.table-col1 {
    width: 55%;
}

.product-overview table .image-wrapper,
.product-overview table .news-info-wrapper,
.product-overview table .news-image {
    width: unset;
    max-width: unset;
}

.product-overview table .image-wrapper,
.product-overview table .news-info-wrapper {
    margin-top: 0;
    margin-bottom: 0;
}

.product-overview table a {
    color: var(--expense-red);
}

.product-overview .forms-table th:first-child,
.product-overview .forms-table td:first-child {
    font-weight: 700;
}

.product-overview .forms-table th:first-child {
    color: #000000;
}

.product-overview .forms-table th:last-child,
.product-overview .forms-table td:last-child {
    text-align: left;
}

.training-cards {
    margin-bottom: 50px;
}

    .training-cards .white-card {
        padding: 0;
    }

    .training-cards .image-wrapper,
    .training-cards .news-image {
        width: 100%;
        margin: 0;
    }

    .training-cards .news-info-wrapper {
        width: 100%;
        padding: 15px;
        margin: 0;
    }

    .training-cards .news-desc {
        margin: 0;
    }

.training-links {
    border-right: 1px solid #CCCCCC;
}

    .training-links:last-child {
        border-right: none;
    }

    .training-links .news-desc {
        margin-bottom: 0;
    }

    .training-links .news-title {
        color: var(--expense-red);
    }

@media screen and (max-width: 1005px) {

    .product-market .page-header-section {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .product-market .page-header-wrapper {
        max-width: 50%;
    }

    .product-market .sidebar-wrapper {
        position: relative;
        max-width: 45%;
        top: 0;
    }
}

@media screen and (max-width: 992px) {

    .product-page .page-subsections .news-subsection .news-info-wrapper {
        width: 80%;
    }

    .product-market .image-wrapper,
    .product-market .news-wrapper-left,
    .product-overview .news-subsection .news-wrapper-left,
    .product-overview .news-subsection .image-wrapper,
    .product-overview .guide-card .image-wrapper,
    .product-overview .guide-card .news-wrapper-left,
    .product-overview .guide-card .news-info-wrapper,
    .product-overview .form-card .news-desc,
    .product-overview .training-card .image-wrapper,
    .product-overview .training-card .news-wrapper-left,
    .product-overview .training-card .news-info-wrapper,
    .product-overview .training-links .news-desc {
        display: block;
        width: 95%;
    }

    .product-overview .guide-card .news-wrapper-left,
    .product-overview .guide-card .news-info-wrapper,
    .product-overview .training-card .news-wrapper-left,
    .product-overview .training-card .news-info-wrapper {
        width: 100%;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .product-overview .guide-card .image-wrapper,
    .product-overview .training-card .image-wrapper {
        width: 60%;
        margin-left: auto;
        margin-right: auto;
    }

    .product-overview .white-card.no-flex {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
    }

    .product-overview .form-card .news-info-wrapper {
        margin-top: 0;
    }

    .product-overview .product-brandname-title,
    .product-overview .product-brandname-title span.series {
        font-size: 36px;
    }

        .product-overview .product-brandname-title span.brandname {
            font-size: 27px;
        }

    .product-overview .tab-link {
        font-size: 12px;
    }

    .product-overview .hero-info-wrapper {
        padding-top: 0;
    }
}

/* Commission Report & Policy Detail */
.commission-report .news-subtitle {
    color: #707070;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.detail-print-wrapper {
    margin-top: 50px;
}

.commission-detail-wrapper {
    color: #222;
}

    .commission-detail-wrapper .news-title,
    .policy-section .news-title {
        font-size: 20px;
        font-weight: 700;
        color: #000;
        font-family: sans-serif;
    }

.agent-info-wrapper {
    display: flex;
    margin-bottom: 15px;
    padding-left: 0;
    padding-right: 0;
}

.agent-num-wrapper {
    margin-right: 100px;
}

.agent-info-wrapper .agent-text {
    font-size: 16px;
    font-weight: 600;
}

.print-btn {
    color: #fff;
    background-color: var(--amer-blue);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 8px 50px;
    border-radius: 20px;
    border: 1px solid var(--amer-blue);
    float: right;
}

    .print-btn:hover,
    .print-btn:focus,
    .print-btn:active {
        opacity: 0.7
    }

.table-section-wrapper {
    margin: 40px 0;
}

    .table-section-wrapper .news-subtitle {
        margin-bottom: 20px;
    }

.comm-table-wrapper {
    overflow-x: scroll;
}

.commission-table th,
.commission-table td {
    min-width: 100px;
    text-transform: uppercase;
    vertical-align: middle;
}

    .commission-table th:first-child {
        color: #222;
        font-weight: 700;
    }

.commission-table td {
    color: #000;
}

    .commission-table td:first-child {
        color: var(--link-blue);
        font-weight: 700;
    }

.commission-table td {
    padding-top: 15px;
    padding-bottom: 15px;
}

.summary-row td {
    color: #666666;
    font-weight: 700;
}

.policy-section .news-title {
    margin: 40px 0;
}

.summary-wrapper .white-card {
    padding: 30px;
    color: #222;
}

.summary-wrapper .news-title {
    text-transform: uppercase;
}

.summary-wrapper .news-subtitle {
    margin-bottom: 5px;
    color: #707070;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
}

.summary-wrapper .news-text-lg {
    font-size: 18px;
    margin-bottom: 30px;
}

.summary-wrapper td {
    padding: 3px 10px 3px 0;
}

.policy-info-wrapper .news-text,
.policy-status-wrapper .news-text {
    font-size: 14px;
    color: #000;
}

.policy-status-wrapper a.news-text {
    color: var(--link-blue);
    font-weight: 600;
}

.coverage-wrapper {
    margin-bottom: 40px;
}

    .coverage-wrapper .white-card {
        padding: 30px;
        color: #222;
    }

        .coverage-wrapper .white-card .news-subtitle {
            color: #303030;
            font-weight: 700;
            font-size: 14px;
            margin-bottom: 30px;
        }

        .coverage-wrapper .white-card td {
            font-size: 12px;
        }

            .coverage-wrapper .white-card td:last-child {
                font-weight: 700;
            }

.edit-button {
    background-color: transparent;
    color: var(--link-blue);
    border: none;
    font-size: 16px;
    padding: 0;
    float: right;
}

.requirement-table-wrapper {
    margin-bottom: 50px;
}

.requirement-table th:last-child {
    text-align: center;
}

.requirement-table-row {
    height: 120px;
}

.requirement-table td {
    padding-bottom: 5px;
}

.requirement-table a {
    font-size: 16px;
    font-weight: 700;
}

.requirement-table .news-desc {
    margin: 0;
    max-width: 100%;
}

.detail-row {
    text-align: left !important;
    padding-top: 0 !important;
    padding-bottom: 5px;
}

.checkout-image {
    margin-right: 15px;
}

.billing-wrapper,
.client-wrapper {
    margin-bottom: 50px;
}

    .billing-wrapper .white-card {
        padding: 30px;
        color: #222;
    }

    .client-wrapper .white-card {
        padding: 30px;
        color: #222;
    }

@media screen and (max-width: 992px) {

    .coverage-wrapper .grid-1x3-wrapper,
    .preferences-section .grid-1x3-wrapper,
    .delegation-section .grid-1x3-wrapper {
        -ms-grid-columns: minmax(0,1fr) minmax(0,1fr);
        grid-template-columns: minmax(0,1fr) minmax(0,1fr);
    }
}

@-ms-viewport {
    width: device-width;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    max-width: 0;
}

@media (min-width: 320px) {
    .container {
        max-width: 320px;
    }
}

@media (min-width: 568px) {
    .container {
        max-width: 568px;
    }
}

@media (min-width: 667px) {
    .container {
        max-width: 667px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 992px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

@media (min-width: 1440px) {
    .container {
        max-width: 1440px;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1600px;
    }
}

.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

    .no-gutters > .col,
    .no-gutters > [class*="col-"] {
        padding-right: 0;
        padding-left: 0;
    }

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-xxs-1, .col-xxs-2, .col-xxs-3, .col-xxs-4, .col-xxs-5, .col-xxs-6, .col-xxs-7, .col-xxs-8, .col-xxs-9, .col-xxs-10, .col-xxs-11, .col-xxs-12, .col-xxs,
.col-xxs-auto, .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs,
.col-xs-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto, .col-xxl-1, .col-xxl-2, .col-xxl-3, .col-xxl-4, .col-xxl-5, .col-xxl-6, .col-xxl-7, .col-xxl-8, .col-xxl-9, .col-xxl-10, .col-xxl-11, .col-xxl-12, .col-xxl,
.col-xxl-auto, .col-xxxl-1, .col-xxxl-2, .col-xxxl-3, .col-xxxl-4, .col-xxxl-5, .col-xxxl-6, .col-xxxl-7, .col-xxxl-8, .col-xxxl-9, .col-xxxl-10, .col-xxxl-11, .col-xxxl-12, .col-xxxl,
.col-xxxl-auto {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}

.col-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
}

.col-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
}

.col-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
}

.col-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

.col-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
}

.col-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
}

.col-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.col-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
}

.col-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
}

.col-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
}

.col-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
}

.col-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
}

.col-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.order-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
}

.order-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
}

.order-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
}

.order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

.order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}

.order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
}

.order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
}

.order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
}

.order-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
}

.order-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
}

.order-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
}

.order-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
}

.order-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
}

.order-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
}

.order-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
}

.offset-1 {
    margin-left: 8.33333%;
}

.offset-2 {
    margin-left: 16.66667%;
}

.offset-3 {
    margin-left: 25%;
}

.offset-4 {
    margin-left: 33.33333%;
}

.offset-5 {
    margin-left: 41.66667%;
}

.offset-6 {
    margin-left: 50%;
}

.offset-7 {
    margin-left: 58.33333%;
}

.offset-8 {
    margin-left: 66.66667%;
}

.offset-9 {
    margin-left: 75%;
}

.offset-10 {
    margin-left: 83.33333%;
}

.offset-11 {
    margin-left: 91.66667%;
}

@media (min-width: 320px) {
    .col-xxs {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-xxs-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .col-xxs-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }

    .col-xxs-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-xxs-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-xxs-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-xxs-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

    .col-xxs-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-xxs-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    .col-xxs-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

    .col-xxs-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-xxs-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .col-xxs-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }

    .col-xxs-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-xxs-first {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }

    .order-xxs-last {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13;
    }

    .order-xxs-0 {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
    }

    .order-xxs-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .order-xxs-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .order-xxs-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }

    .order-xxs-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }

    .order-xxs-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }

    .order-xxs-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6;
    }

    .order-xxs-7 {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7;
    }

    .order-xxs-8 {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8;
    }

    .order-xxs-9 {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9;
    }

    .order-xxs-10 {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10;
    }

    .order-xxs-11 {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11;
    }

    .order-xxs-12 {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12;
    }

    .offset-xxs-0 {
        margin-left: 0;
    }

    .offset-xxs-1 {
        margin-left: 8.33333%;
    }

    .offset-xxs-2 {
        margin-left: 16.66667%;
    }

    .offset-xxs-3 {
        margin-left: 25%;
    }

    .offset-xxs-4 {
        margin-left: 33.33333%;
    }

    .offset-xxs-5 {
        margin-left: 41.66667%;
    }

    .offset-xxs-6 {
        margin-left: 50%;
    }

    .offset-xxs-7 {
        margin-left: 58.33333%;
    }

    .offset-xxs-8 {
        margin-left: 66.66667%;
    }

    .offset-xxs-9 {
        margin-left: 75%;
    }

    .offset-xxs-10 {
        margin-left: 83.33333%;
    }

    .offset-xxs-11 {
        margin-left: 91.66667%;
    }
}

@media (min-width: 568px) {
    .col-xs {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-xs-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .col-xs-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }

    .col-xs-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-xs-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-xs-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-xs-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

    .col-xs-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-xs-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    .col-xs-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

    .col-xs-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-xs-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .col-xs-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }

    .col-xs-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-xs-first {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }

    .order-xs-last {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13;
    }

    .order-xs-0 {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
    }

    .order-xs-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .order-xs-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .order-xs-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }

    .order-xs-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }

    .order-xs-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }

    .order-xs-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6;
    }

    .order-xs-7 {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7;
    }

    .order-xs-8 {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8;
    }

    .order-xs-9 {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9;
    }

    .order-xs-10 {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10;
    }

    .order-xs-11 {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11;
    }

    .order-xs-12 {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12;
    }

    .offset-xs-0 {
        margin-left: 0;
    }

    .offset-xs-1 {
        margin-left: 8.33333%;
    }

    .offset-xs-2 {
        margin-left: 16.66667%;
    }

    .offset-xs-3 {
        margin-left: 25%;
    }

    .offset-xs-4 {
        margin-left: 33.33333%;
    }

    .offset-xs-5 {
        margin-left: 41.66667%;
    }

    .offset-xs-6 {
        margin-left: 50%;
    }

    .offset-xs-7 {
        margin-left: 58.33333%;
    }

    .offset-xs-8 {
        margin-left: 66.66667%;
    }

    .offset-xs-9 {
        margin-left: 75%;
    }

    .offset-xs-10 {
        margin-left: 83.33333%;
    }

    .offset-xs-11 {
        margin-left: 91.66667%;
    }
}

@media (min-width: 667px) {
    .col-sm {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-sm-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .col-sm-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }

    .col-sm-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-sm-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-sm-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-sm-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

    .col-sm-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-sm-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    .col-sm-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

    .col-sm-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-sm-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .col-sm-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }

    .col-sm-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-sm-first {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }

    .order-sm-last {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13;
    }

    .order-sm-0 {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
    }

    .order-sm-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .order-sm-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .order-sm-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }

    .order-sm-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }

    .order-sm-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }

    .order-sm-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6;
    }

    .order-sm-7 {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7;
    }

    .order-sm-8 {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8;
    }

    .order-sm-9 {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9;
    }

    .order-sm-10 {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10;
    }

    .order-sm-11 {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11;
    }

    .order-sm-12 {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12;
    }

    .offset-sm-0 {
        margin-left: 0;
    }

    .offset-sm-1 {
        margin-left: 8.33333%;
    }

    .offset-sm-2 {
        margin-left: 16.66667%;
    }

    .offset-sm-3 {
        margin-left: 25%;
    }

    .offset-sm-4 {
        margin-left: 33.33333%;
    }

    .offset-sm-5 {
        margin-left: 41.66667%;
    }

    .offset-sm-6 {
        margin-left: 50%;
    }

    .offset-sm-7 {
        margin-left: 58.33333%;
    }

    .offset-sm-8 {
        margin-left: 66.66667%;
    }

    .offset-sm-9 {
        margin-left: 75%;
    }

    .offset-sm-10 {
        margin-left: 83.33333%;
    }

    .offset-sm-11 {
        margin-left: 91.66667%;
    }
}

@media (min-width: 768px) {
    .col-md {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-md-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .col-md-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }

    .col-md-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-md-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-md-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-md-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

    .col-md-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-md-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    .col-md-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

    .col-md-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-md-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .col-md-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }

    .col-md-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-md-first {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }

    .order-md-last {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13;
    }

    .order-md-0 {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
    }

    .order-md-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .order-md-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .order-md-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }

    .order-md-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }

    .order-md-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }

    .order-md-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6;
    }

    .order-md-7 {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7;
    }

    .order-md-8 {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8;
    }

    .order-md-9 {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9;
    }

    .order-md-10 {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10;
    }

    .order-md-11 {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11;
    }

    .order-md-12 {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12;
    }

    .offset-md-0 {
        margin-left: 0;
    }

    .offset-md-1 {
        margin-left: 8.33333%;
    }

    .offset-md-2 {
        margin-left: 16.66667%;
    }

    .offset-md-3 {
        margin-left: 25%;
    }

    .offset-md-4 {
        margin-left: 33.33333%;
    }

    .offset-md-5 {
        margin-left: 41.66667%;
    }

    .offset-md-6 {
        margin-left: 50%;
    }

    .offset-md-7 {
        margin-left: 58.33333%;
    }

    .offset-md-8 {
        margin-left: 66.66667%;
    }

    .offset-md-9 {
        margin-left: 75%;
    }

    .offset-md-10 {
        margin-left: 83.33333%;
    }

    .offset-md-11 {
        margin-left: 91.66667%;
    }
}

@media (min-width: 992px) {
    .col-lg {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-lg-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .col-lg-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }

    .col-lg-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-lg-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-lg-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-lg-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

    .col-lg-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-lg-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    .col-lg-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

    .col-lg-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-lg-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .col-lg-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }

    .col-lg-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-lg-first {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }

    .order-lg-last {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13;
    }

    .order-lg-0 {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
    }

    .order-lg-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .order-lg-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .order-lg-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }

    .order-lg-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }

    .order-lg-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }

    .order-lg-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6;
    }

    .order-lg-7 {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7;
    }

    .order-lg-8 {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8;
    }

    .order-lg-9 {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9;
    }

    .order-lg-10 {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10;
    }

    .order-lg-11 {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11;
    }

    .order-lg-12 {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12;
    }

    .offset-lg-0 {
        margin-left: 0;
    }

    .offset-lg-1 {
        margin-left: 8.33333%;
    }

    .offset-lg-2 {
        margin-left: 16.66667%;
    }

    .offset-lg-3 {
        margin-left: 25%;
    }

    .offset-lg-4 {
        margin-left: 33.33333%;
    }

    .offset-lg-5 {
        margin-left: 41.66667%;
    }

    .offset-lg-6 {
        margin-left: 50%;
    }

    .offset-lg-7 {
        margin-left: 58.33333%;
    }

    .offset-lg-8 {
        margin-left: 66.66667%;
    }

    .offset-lg-9 {
        margin-left: 75%;
    }

    .offset-lg-10 {
        margin-left: 83.33333%;
    }

    .offset-lg-11 {
        margin-left: 91.66667%;
    }
}

@media (min-width: 1200px) {
    .col-xl {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-xl-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .col-xl-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }

    .col-xl-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-xl-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-xl-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-xl-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

    .col-xl-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-xl-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    .col-xl-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

    .col-xl-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-xl-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .col-xl-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }

    .col-xl-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-xl-first {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }

    .order-xl-last {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13;
    }

    .order-xl-0 {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
    }

    .order-xl-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .order-xl-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .order-xl-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }

    .order-xl-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }

    .order-xl-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }

    .order-xl-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6;
    }

    .order-xl-7 {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7;
    }

    .order-xl-8 {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8;
    }

    .order-xl-9 {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9;
    }

    .order-xl-10 {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10;
    }

    .order-xl-11 {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11;
    }

    .order-xl-12 {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12;
    }

    .offset-xl-0 {
        margin-left: 0;
    }

    .offset-xl-1 {
        margin-left: 8.33333%;
    }

    .offset-xl-2 {
        margin-left: 16.66667%;
    }

    .offset-xl-3 {
        margin-left: 25%;
    }

    .offset-xl-4 {
        margin-left: 33.33333%;
    }

    .offset-xl-5 {
        margin-left: 41.66667%;
    }

    .offset-xl-6 {
        margin-left: 50%;
    }

    .offset-xl-7 {
        margin-left: 58.33333%;
    }

    .offset-xl-8 {
        margin-left: 66.66667%;
    }

    .offset-xl-9 {
        margin-left: 75%;
    }

    .offset-xl-10 {
        margin-left: 83.33333%;
    }

    .offset-xl-11 {
        margin-left: 91.66667%;
    }
}

@media (min-width: 1440px) {
    .col-xxl {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-xxl-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .col-xxl-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }

    .col-xxl-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-xxl-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-xxl-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-xxl-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

    .col-xxl-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-xxl-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    .col-xxl-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

    .col-xxl-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-xxl-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .col-xxl-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }

    .col-xxl-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-xxl-first {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }

    .order-xxl-last {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13;
    }

    .order-xxl-0 {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
    }

    .order-xxl-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .order-xxl-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .order-xxl-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }

    .order-xxl-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }

    .order-xxl-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }

    .order-xxl-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6;
    }

    .order-xxl-7 {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7;
    }

    .order-xxl-8 {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8;
    }

    .order-xxl-9 {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9;
    }

    .order-xxl-10 {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10;
    }

    .order-xxl-11 {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11;
    }

    .order-xxl-12 {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12;
    }

    .offset-xxl-0 {
        margin-left: 0;
    }

    .offset-xxl-1 {
        margin-left: 8.33333%;
    }

    .offset-xxl-2 {
        margin-left: 16.66667%;
    }

    .offset-xxl-3 {
        margin-left: 25%;
    }

    .offset-xxl-4 {
        margin-left: 33.33333%;
    }

    .offset-xxl-5 {
        margin-left: 41.66667%;
    }

    .offset-xxl-6 {
        margin-left: 50%;
    }

    .offset-xxl-7 {
        margin-left: 58.33333%;
    }

    .offset-xxl-8 {
        margin-left: 66.66667%;
    }

    .offset-xxl-9 {
        margin-left: 75%;
    }

    .offset-xxl-10 {
        margin-left: 83.33333%;
    }

    .offset-xxl-11 {
        margin-left: 91.66667%;
    }
}

@media (min-width: 1600px) {
    .col-xxxl {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-xxxl-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .col-xxxl-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }

    .col-xxxl-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-xxxl-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-xxxl-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-xxxl-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

    .col-xxxl-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-xxxl-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    .col-xxxl-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

    .col-xxxl-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-xxxl-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .col-xxxl-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }

    .col-xxxl-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-xxxl-first {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }

    .order-xxxl-last {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13;
    }

    .order-xxxl-0 {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
    }

    .order-xxxl-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .order-xxxl-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .order-xxxl-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }

    .order-xxxl-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }

    .order-xxxl-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }

    .order-xxxl-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6;
    }

    .order-xxxl-7 {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7;
    }

    .order-xxxl-8 {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8;
    }

    .order-xxxl-9 {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9;
    }

    .order-xxxl-10 {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10;
    }

    .order-xxxl-11 {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11;
    }

    .order-xxxl-12 {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12;
    }

    .offset-xxxl-0 {
        margin-left: 0;
    }

    .offset-xxxl-1 {
        margin-left: 8.33333%;
    }

    .offset-xxxl-2 {
        margin-left: 16.66667%;
    }

    .offset-xxxl-3 {
        margin-left: 25%;
    }

    .offset-xxxl-4 {
        margin-left: 33.33333%;
    }

    .offset-xxxl-5 {
        margin-left: 41.66667%;
    }

    .offset-xxxl-6 {
        margin-left: 50%;
    }

    .offset-xxxl-7 {
        margin-left: 58.33333%;
    }

    .offset-xxxl-8 {
        margin-left: 66.66667%;
    }

    .offset-xxxl-9 {
        margin-left: 75%;
    }

    .offset-xxxl-10 {
        margin-left: 83.33333%;
    }

    .offset-xxxl-11 {
        margin-left: 91.66667%;
    }
}

.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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.d-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
}

@media (min-width: 320px) {
    .d-xxs-none {
        display: none !important;
    }

    .d-xxs-inline {
        display: inline !important;
    }

    .d-xxs-inline-block {
        display: inline-block !important;
    }

    .d-xxs-block {
        display: block !important;
    }

    .d-xxs-table {
        display: table !important;
    }

    .d-xxs-table-row {
        display: table-row !important;
    }

    .d-xxs-table-cell {
        display: table-cell !important;
    }

    .d-xxs-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .d-xxs-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

@media (min-width: 568px) {
    .d-xs-none {
        display: none !important;
    }

    .d-xs-inline {
        display: inline !important;
    }

    .d-xs-inline-block {
        display: inline-block !important;
    }

    .d-xs-block {
        display: block !important;
    }

    .d-xs-table {
        display: table !important;
    }

    .d-xs-table-row {
        display: table-row !important;
    }

    .d-xs-table-cell {
        display: table-cell !important;
    }

    .d-xs-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .d-xs-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

@media (min-width: 667px) {
    .d-sm-none {
        display: none !important;
    }

    .d-sm-inline {
        display: inline !important;
    }

    .d-sm-inline-block {
        display: inline-block !important;
    }

    .d-sm-block {
        display: block !important;
    }

    .d-sm-table {
        display: table !important;
    }

    .d-sm-table-row {
        display: table-row !important;
    }

    .d-sm-table-cell {
        display: table-cell !important;
    }

    .d-sm-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .d-sm-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

@media (min-width: 768px) {
    .d-md-none {
        display: none !important;
    }

    .d-md-inline {
        display: inline !important;
    }

    .d-md-inline-block {
        display: inline-block !important;
    }

    .d-md-block {
        display: block !important;
    }

    .d-md-table {
        display: table !important;
    }

    .d-md-table-row {
        display: table-row !important;
    }

    .d-md-table-cell {
        display: table-cell !important;
    }

    .d-md-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .d-md-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

@media (min-width: 992px) {
    .d-lg-none {
        display: none !important;
    }

    .d-lg-inline {
        display: inline !important;
    }

    .d-lg-inline-block {
        display: inline-block !important;
    }

    .d-lg-block {
        display: block !important;
    }

    .d-lg-table {
        display: table !important;
    }

    .d-lg-table-row {
        display: table-row !important;
    }

    .d-lg-table-cell {
        display: table-cell !important;
    }

    .d-lg-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .d-lg-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

@media (min-width: 1200px) {
    .d-xl-none {
        display: none !important;
    }

    .d-xl-inline {
        display: inline !important;
    }

    .d-xl-inline-block {
        display: inline-block !important;
    }

    .d-xl-block {
        display: block !important;
    }

    .d-xl-table {
        display: table !important;
    }

    .d-xl-table-row {
        display: table-row !important;
    }

    .d-xl-table-cell {
        display: table-cell !important;
    }

    .d-xl-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .d-xl-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

@media (min-width: 1440px) {
    .d-xxl-none {
        display: none !important;
    }

    .d-xxl-inline {
        display: inline !important;
    }

    .d-xxl-inline-block {
        display: inline-block !important;
    }

    .d-xxl-block {
        display: block !important;
    }

    .d-xxl-table {
        display: table !important;
    }

    .d-xxl-table-row {
        display: table-row !important;
    }

    .d-xxl-table-cell {
        display: table-cell !important;
    }

    .d-xxl-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .d-xxl-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

@media (min-width: 1600px) {
    .d-xxxl-none {
        display: none !important;
    }

    .d-xxxl-inline {
        display: inline !important;
    }

    .d-xxxl-inline-block {
        display: inline-block !important;
    }

    .d-xxxl-block {
        display: block !important;
    }

    .d-xxxl-table {
        display: table !important;
    }

    .d-xxxl-table-row {
        display: table-row !important;
    }

    .d-xxxl-table-cell {
        display: table-cell !important;
    }

    .d-xxxl-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .d-xxxl-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

@media print {
    .d-print-none {
        display: none !important;
    }

    .d-print-inline {
        display: inline !important;
    }

    .d-print-inline-block {
        display: inline-block !important;
    }

    .d-print-block {
        display: block !important;
    }

    .d-print-table {
        display: table !important;
    }

    .d-print-table-row {
        display: table-row !important;
    }

    .d-print-table-cell {
        display: table-cell !important;
    }

    .d-print-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .d-print-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

.flex-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
}

.flex-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
}

.flex-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
}

.flex-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
}

.flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
}

.flex-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
}

.justify-content-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
}

.justify-content-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
}

.justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.justify-content-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}

.justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
}

.align-items-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
}

.align-items-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
}

.align-items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}

.align-items-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
}

.align-items-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
}

.align-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
}

.align-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
}

.align-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
}

.align-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
}

.align-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
}

.align-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
}

.align-self-auto {
    -ms-flex-item-align: auto !important;
    -ms-grid-row-align: auto !important;
    align-self: auto !important;
}

.align-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
}

.align-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
}

.align-self-center {
    -ms-flex-item-align: center !important;
    -ms-grid-row-align: center !important;
    align-self: center !important;
}

.align-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
}

.align-self-stretch {
    -ms-flex-item-align: stretch !important;
    -ms-grid-row-align: stretch !important;
    align-self: stretch !important;
}

@media (min-width: 320px) {
    .flex-xxs-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .flex-xxs-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .flex-xxs-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

    .flex-xxs-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }

    .flex-xxs-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .flex-xxs-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .flex-xxs-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .justify-content-xxs-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .justify-content-xxs-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .justify-content-xxs-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .justify-content-xxs-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .justify-content-xxs-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }

    .align-items-xxs-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-xxs-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-xxs-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .align-items-xxs-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .align-items-xxs-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }

    .align-content-xxs-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }

    .align-content-xxs-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }

    .align-content-xxs-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }

    .align-content-xxs-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }

    .align-content-xxs-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }

    .align-content-xxs-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }

    .align-self-xxs-auto {
        -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important;
    }

    .align-self-xxs-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }

    .align-self-xxs-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }

    .align-self-xxs-center {
        -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important;
    }

    .align-self-xxs-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }

    .align-self-xxs-stretch {
        -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
    }
}

@media (min-width: 568px) {
    .flex-xs-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .flex-xs-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .flex-xs-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

    .flex-xs-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }

    .flex-xs-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .flex-xs-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .flex-xs-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .justify-content-xs-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .justify-content-xs-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .justify-content-xs-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .justify-content-xs-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .justify-content-xs-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }

    .align-items-xs-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-xs-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-xs-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .align-items-xs-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .align-items-xs-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }

    .align-content-xs-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }

    .align-content-xs-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }

    .align-content-xs-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }

    .align-content-xs-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }

    .align-content-xs-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }

    .align-content-xs-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }

    .align-self-xs-auto {
        -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important;
    }

    .align-self-xs-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }

    .align-self-xs-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }

    .align-self-xs-center {
        -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important;
    }

    .align-self-xs-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }

    .align-self-xs-stretch {
        -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
    }
}

@media (min-width: 667px) {
    .flex-sm-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .flex-sm-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .flex-sm-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

    .flex-sm-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }

    .flex-sm-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .flex-sm-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .flex-sm-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .justify-content-sm-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .justify-content-sm-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .justify-content-sm-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .justify-content-sm-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .justify-content-sm-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }

    .align-items-sm-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-sm-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-sm-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .align-items-sm-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .align-items-sm-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }

    .align-content-sm-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }

    .align-content-sm-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }

    .align-content-sm-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }

    .align-content-sm-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }

    .align-content-sm-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }

    .align-content-sm-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }

    .align-self-sm-auto {
        -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important;
    }

    .align-self-sm-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }

    .align-self-sm-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }

    .align-self-sm-center {
        -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important;
    }

    .align-self-sm-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }

    .align-self-sm-stretch {
        -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
    }
}

@media (min-width: 768px) {
    .flex-md-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .flex-md-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .flex-md-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

    .flex-md-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }

    .flex-md-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .flex-md-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .flex-md-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .justify-content-md-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .justify-content-md-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .justify-content-md-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .justify-content-md-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .justify-content-md-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }

    .align-items-md-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-md-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-md-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .align-items-md-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .align-items-md-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }

    .align-content-md-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }

    .align-content-md-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }

    .align-content-md-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }

    .align-content-md-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }

    .align-content-md-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }

    .align-content-md-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }

    .align-self-md-auto {
        -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important;
    }

    .align-self-md-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }

    .align-self-md-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }

    .align-self-md-center {
        -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important;
    }

    .align-self-md-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }

    .align-self-md-stretch {
        -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
    }
}

@media (min-width: 992px) {
    .flex-lg-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .flex-lg-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .flex-lg-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

    .flex-lg-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }

    .flex-lg-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .flex-lg-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .flex-lg-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .justify-content-lg-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .justify-content-lg-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .justify-content-lg-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .justify-content-lg-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .justify-content-lg-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }

    .align-items-lg-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-lg-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-lg-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .align-items-lg-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .align-items-lg-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }

    .align-content-lg-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }

    .align-content-lg-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }

    .align-content-lg-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }

    .align-content-lg-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }

    .align-content-lg-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }

    .align-content-lg-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }

    .align-self-lg-auto {
        -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important;
    }

    .align-self-lg-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }

    .align-self-lg-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }

    .align-self-lg-center {
        -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important;
    }

    .align-self-lg-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }

    .align-self-lg-stretch {
        -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
    }
}

@media (min-width: 1200px) {
    .flex-xl-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .flex-xl-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .flex-xl-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

    .flex-xl-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }

    .flex-xl-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .flex-xl-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .flex-xl-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .justify-content-xl-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .justify-content-xl-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .justify-content-xl-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .justify-content-xl-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .justify-content-xl-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }

    .align-items-xl-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-xl-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-xl-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .align-items-xl-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .align-items-xl-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }

    .align-content-xl-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }

    .align-content-xl-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }

    .align-content-xl-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }

    .align-content-xl-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }

    .align-content-xl-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }

    .align-content-xl-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }

    .align-self-xl-auto {
        -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important;
    }

    .align-self-xl-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }

    .align-self-xl-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }

    .align-self-xl-center {
        -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important;
    }

    .align-self-xl-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }

    .align-self-xl-stretch {
        -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
    }
}

@media (min-width: 1440px) {
    .flex-xxl-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .flex-xxl-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .flex-xxl-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

    .flex-xxl-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }

    .flex-xxl-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .flex-xxl-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .flex-xxl-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .justify-content-xxl-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .justify-content-xxl-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .justify-content-xxl-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .justify-content-xxl-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .justify-content-xxl-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }

    .align-items-xxl-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-xxl-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-xxl-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .align-items-xxl-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .align-items-xxl-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }

    .align-content-xxl-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }

    .align-content-xxl-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }

    .align-content-xxl-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }

    .align-content-xxl-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }

    .align-content-xxl-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }

    .align-content-xxl-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }

    .align-self-xxl-auto {
        -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important;
    }

    .align-self-xxl-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }

    .align-self-xxl-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }

    .align-self-xxl-center {
        -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important;
    }

    .align-self-xxl-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }

    .align-self-xxl-stretch {
        -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
    }
}

@media (min-width: 1600px) {
    .flex-xxxl-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .flex-xxxl-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .flex-xxxl-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

    .flex-xxxl-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }

    .flex-xxxl-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .flex-xxxl-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .flex-xxxl-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .justify-content-xxxl-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .justify-content-xxxl-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .justify-content-xxxl-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .justify-content-xxxl-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .justify-content-xxxl-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }

    .align-items-xxxl-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-xxxl-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-xxxl-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .align-items-xxxl-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .align-items-xxxl-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }

    .align-content-xxxl-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }

    .align-content-xxxl-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }

    .align-content-xxxl-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }

    .align-content-xxxl-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }

    .align-content-xxxl-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }

    .align-content-xxxl-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }

    .align-self-xxxl-auto {
        -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important;
    }

    .align-self-xxxl-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }

    .align-self-xxxl-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }

    .align-self-xxxl-center {
        -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important;
    }

    .align-self-xxxl-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }

    .align-self-xxxl-stretch {
        -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
    }
}
/*# sourceMappingURL=main.css.map */
