/*---------------------------------------------*/
/*--BASIC STYLES-------------------------------*/
/*---------------------------------------------*/
/*#region BASIC STYLES*/
/*#endregion*/

/*#region BASIC STYLES*/

/*
    COLORS:
    MISTRAS blue: #014b92
    MISTRAS dark blue: #0d2149
    MISTRAS orange: #cc5c28 
    MISTRAS charcoal gray: #414042
    MISTRAS light gray: #ebebeb
    MISTRAS medium gray: #b6b6b6
*/

html, body {
    height: 100%;
    font-family: "Exo 2", sans-serif;
    background-color: white;
    color: #414042;
}

body {
    overflow-x: hidden;
}

::-webkit-input-placeholder,
::-moz-placeholder,
:-ms-input-placeholder,
:-moz-placeholder {
    font-style: italic;
}

b, strong {
    font-weight: 700;
}

/* Fixes horizontal scroll caused by animate.js */
section {
    overflow-x: hidden !important;
}

/* Fixes finality dropdown issue cased by above fix */
@media (min-width: 576px) {
    section {
        overflow-x: visible !important;
    }
}

a, a:hover {
    color: #08182C;
}

    a:hover {
        text-decoration: none;
        /*color: #F76457 !important;*/
    }

p {
    font-size: 18px;
    margin: 20px 0;
}

abbr, abbr[title], acronym, acronym[title] {
    text-decoration: none;
    border-bottom: 1px dotted #aaaaaa;
    cursor: help;
}

.cf:before, .cf:after, .fs-clear:before, .fs-clear:after {
    content: " ";
    display: table;
}

.cf:after, .fs-clear {
    clear: both;
}

.cf, .fs-clear {
    *zoom: 1;
}


body > .responsive-detector {
    position: relative;
    z-index: 1;
}

.button, input[type="submit"], button[type="submit"] {
    display: inline-block;
    margin: 20px 0 0 0;
    padding: 5px 15px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    background-color: #F76457;
    color: white;
    cursor: pointer;
    transition: all 0.25s;
    border-radius: 0;
    border: none;
    line-height: 1.5;
}

.button:hover, input[type="submit"]:hover, button[type="submit"]:hover {
    color: white;
    text-decoration: none;
    transform: scale(1.1);
    box-shadow: 0px 10px 30px rgba(0,0,0,.10);
}

.button:active, input[type="submit"]:active, button[type="submit"]:active {
    transform: scale(1.05);
    background-color: #b93b12;
}

.button .svg-inline--fa {
    margin-right: 10px;
}

iframe {
    border: none;
    display: block;
}

/* Make a button element look like a plain-text link */
.plain-text,
input[type="submit"].plain-text {
    background: none;
    border: none;
    margin: 0;
    padding: 0;
    color: #014b92;
    font-size: inherit;
    text-transform: inherit;
    cursor: pointer;
    font-weight: inherit;
    transition: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .plain-text:hover,
    input[type="submit"].plain-text:hover,
    .plain-text:active,
    input[type="submit"].plain-text:active {
        text-decoration: underline;
        transform: none;
        box-shadow: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .plain-text:hover {
        color: #cc5c28;
    }


/*-----------------------------------------------------*/
/*--STANDARD BREAKPOINTS: 576px, 768px, 992px, 1260px--*/
/*-----------------------------------------------------*/

@media (min-width: 576px) {
    body > .responsive-detector {
        z-index: 2;
    }
}

@media (min-width: 768px) {
    body > .responsive-detector {
        z-index: 3;
    }
}

@media (min-width: 992px) {
    body > .responsive-detector {
        z-index: 4;
    }
}

@media (min-width: 1260px) {
    body > .responsive-detector {
        z-index: 5;
    }
}

/*#endregion*/

/*---------------------------------------------*/
/*--GLOBAL UTILITY CLASSES---------------------*/
/*---------------------------------------------*/

/*#region GLOBAL UTILITY CLASSES*/

.no-wrap {
    white-space: nowrap;
}

.no-caps {
    text-transform: none !important;
}

.no-padding {
    padding: 0 !important;
}

.padding-right-30 {
    padding: 0 30px 0 0 !important;
}

.padding-left-30 {
    padding: 0 0 0 30px !important;
}

.divider:not(span) {
    background-color: #b6b6b6;
    width: 50%;
    height: 2px;
    margin: 50px auto;
}

@media (max-width: 767px) {
    .divider:not(span) {
        width: 100%
    }
}

/*#endregion*/

/*---------------------------------------------*/
/*--HEADER  -----------------------------------*/
/*---------------------------------------------*/

.main-header {
    background-size: cover;
    background-position: center center;
    position: relative;
}

html.no-jquery .main-header > .container {
    position: relative;
    z-index: 100;
}

    .main-header .header-text {
        text-align: left;
        color: white;
        margin: 50px 0 80px 0;
        transition: all 0.8s;
    }

    .main-header h1 {
        float: left;
        font-size: 30px;
        line-height: 40px;
        font-weight: 700;
        margin: 0;
        clear: both;
    }

        .main-header h1 small {
            float: left;
            margin: 0;
            display: block;
            padding: 0 0 10px 0;
            color: white;
            font-size: 20px;
            font-weight: 700;
            line-height: 20px;
            border-bottom: 16px solid #F76457;
            clear: both;
        }

    .main-header br {
        clear: both;
    }

    .main-header p {
        float: left;
        font-size: 18px;
        line-height: 24px;
        margin: 0;
        clear: both
    }

    .main-header:before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: black;
        opacity: .3;
    }

    .main-header.overlay-opacity-10 .main-header:before {
        opacity: .1;
    }

a.hiddencrumbs {
    margin: 0 0 0 0;
    top: -3px;
    display: inline;
    position: relative;
    font-size: 30px;
    line-height: 0;
}

@media (max-height: 750px) {

    .breadcrumb-bar {
        padding: 5px 0 !important;
        font-size: 14px !important;
    }
}

@media (min-width: 576px) {

    .main-header {
        margin-top: -120px;
        padding-top: 120px;
    }

        .main-header h1 {
            font-size: 40px;
            line-height: 50px;
        }
}


@media (min-width: 576px) and (max-height: 750px) {

    .main-header .header-text {
        margin: 40px 0 !important;
    }
}


@media (min-width: 768px) {

    .main-header {
        padding-bottom: 200px;
    }

    .condensed-header .main-header {
        padding-bottom: 75px;
    }

        .main-header .header-text {
            font-size: 50px;
            line-height: 50px;
            margin: 80px 0 80px 0;
        }

    .condensed-header .main-header .header-text {
        margin: 0px 0 40px 0;
    }
}

@media (min-width: 992px) {

    .main-header {
        margin-top: -160px;
        padding-top: 160px;
    }

        .main-header h1 {
            font-size: 50px;
            line-height: 50px;
        }
}


@media (min-width: 992px) and (max-height: 750px) {

    .main-nav-container {
        height: 140px !important;
    }

        .main-nav-container .main-nav {
            margin: 30px 0;
        }
}

html.no-jquery .main-header .banner-slideshow > div::before {
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    background: rgba(0,0,0,.3);
}


/*---------------------------------------------*/
/*--HEADER CTA --------------------------------*/
/*---------------------------------------------*/

.main-header .header-text {
    display: inline-block;
}

.main-header .container .content-wrapper {
    flex: none;
    display: inline-block;
    width: 100%;
}

.main-header .container .cta-button-outer {
    margin: 20px 0 0 0;
    display: inline-block;
    align-self: center;
    padding: 15px;
    background: rgba(0,0,0,0.7);
}

.main-header .container .cta-button-outer .button {
    margin: 0;
    vertical-align: top;
    min-width: 150px;
    font-size: 20px;
    padding: 10px 10px;
    text-align: center;
    line-height: 1.2;
    max-width: 250px;
}

@media (min-width: 992px) {

    .main-header .header-text {
        display: flex;
    }

    .main-header .container .content-wrapper {
        flex: 1 1 auto;
        width: auto;
    }

    .main-header .container .cta-button-outer {
        margin: 0 0 0 44px;
        display: inline-flex;
        padding: 30px;
    }

    .main-header .container .cta-button-outer .button {
        min-width: 150px;
        font-size: 24px;
        padding: 10px 10px;
        max-width: 250px;
    }
}




    /*----------------------*/
    /*-- ROW STYLES --------*/
    /*----------------------*/

    .row-plain {
        padding: 140px 0;
    }

    .row-plain.inverted {
        background-color: #414042;
        color: #fff !important;
    }

    @media (max-width:992px) {
        .row-plain {
            padding: 100px 0;
        }
    }

    @media (max-width:500px) {
        .row-plain h2 .no-border {
            display: block;
            border-top: none;
        }
    }


    /*----------------------*/
    /*-- ROW TITLE ---------*/
    /*----------------------*/

    .row h2 {
        font-size: 50px;
        color: #414042;
    }

    .row h2 strong {
        text-transform: uppercase;
        /*border-top: 16px solid #cc5c28;*/
    }

    .row h2 small {
        display: block;
        font-size: 20px;
        margin: 0 0 25px 0;
        font-weight: bold;
    }

    .row.inverted h2 {
        color: #fff;
    }

    .row .title-container {
        width: 100%;
        text-align: center;
        margin-bottom: 40px;
    }

    @media (max-width:768px) {
        .row h2 {
            font-size: 40px;
        }

        .row h2 small {
            font-size: 18px;
        }
    }

    @media (max-width:400px) {
        .row h2 {
            font-size: 30px;
        }
    }

    /*----------------------------------------*/
    /*--FLEX WRAPPER -------------------------*/
    /*----------------------------------------*/

    .list-wrapper {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        width: 100%;
    }


    /*---------------------------------------------*/
    /*--FLOATING DETAILS BAR ----------------------*/
    /*---------------------------------------------*/

    .floating-details-bar {
        background-color: rgba(0, 0, 0, 0.7);
        color: #fff;
        font-size: 16px;
        font-weight: bold;
        position: fixed;
        left: 0;
        right: 0;
        top: 60px;
        z-index: 1099;
        display: none;
    }

    @media (max-width:992px) {
        .floating-details-bar {
            font-size: 18px;
            text-align: center;
        }
    }

    @media (max-width:650px) {
        .floating-details-bar {
            font-size: 14px;
        }
    }

    /*---------------------------------------------*/
    /*--FULL WIDTH BACKGROUND IMAGE SLIDER --------*/
    /*---------------------------------------------*/

    .row-bg-slideshow {
        padding: 0 !important;
    }

    .row-bg-slideshow .slick-slider {
        height: auto;
        width: 100%;
    }

    .row-bg-slideshow .slick-slide {
        background-repeat: no-repeat;
        background-size: cover;
    }


    .row-bg-slideshow .overlay-bullet-list {
        background: #fff;
        filter: alpha(opacity=85);
        background: rgba(255, 255, 255, 0.85);
        padding: 30px;
        overflow: hidden;
        margin: 120px auto;
        /*	width:85%;*/
    }

    .row-bg-slideshow.inverted .overlay-bullet-list {
        background: rgba(65, 64, 66, 0.85);
    }

    @media (max-width: 1260px) {
        .row-bg-slideshow .overlay-bullet-list {
            padding: 30px;
        }
    }

    @media (max-width: 600px) {
        .row-bg-slideshow .overlay-bullet-list {
            padding: 15px;
        }
    }

    /*---------------------------------------------*/
    /*--KNOWLEDGE CENTER GRID----------------------*/
    /*---------------------------------------------*/

    .knowledge-center .knowledge-row {
        padding: 0 10px;
        text-align: center;
    }

    .knowledge-row-background {
        background-image: url("/media/1026/knowledge-background.jpg");
        background-color: #0059ae;
        background-size: cover;
        background-position: center center;
        text-align: center;
    }

    .knowledge-row h2 {
        color: #fff;
    }

    .knowledge-row .button {
        color: #cc5c28;
        background-color: #fff;
        margin: 0;
    }

    .knowledge-row .col-inner {
        -webkit-transition: all 1s ease-out;
        -o-transition: all 1s ease-out;
        transition: all 1s ease-out;
        -webkit-transform-style: preserve-3d;
        -ms-transform-style: preserve-3d;
        transform-style: preserve-3d;
        -webkit-perspective: 600px;
        perspective: 600px;
    }

    .knowledge-row .col-inner img {
        max-width: none;
        width: 100%;
    }

    .knowledge-row .col-inner .front,
    .knowledge-row .col-inner .back {
        -webkit-transition: all .5s ease-out;
        -o-transition: all .5s ease-out;
        transition: all .5s ease-out;
        -webkit-transform-style: preserve-3d;
        -ms-transform-style: preserve-3d;
        transform-style: preserve-3d;
    }

    .knowledge-row .col-inner .front {
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    .knowledge-row .col-inner .back {
        -webkit-transform: rotateY(-180deg);
        -ms-transform: rotateY(-180deg);
        transform: rotateY(-180deg);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: -1;
    }

    .knowledge-row .col-inner .front .content,
    .knowledge-row .col-inner .back .content {
        padding: 0 60px;
        -webkit-transform: translateZ(4em);
        -ms-transform: translateZ(4em);
        transform: translateZ(4em);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        font-size: 16px;
        color: white;
        text-transform: uppercase;
        font-weight: bold;
        text-align: center;
    }

    .knowledge-row .col-inner .back .content {
        font-size: 14px;
        text-transform: none;
        font-weight: normal;
    }

    .knowledge-row .col-inner .back .inner,
    .knowledge-row .col-inner .front .inner {
        position: absolute;
        top: 0px;
        right: 0px;
        bottom: 0px;
        left: 0px;
        background-color: rgba(0,0,0,.6)
    }

    .knowledge-row .col-inner .back .inner {
        background-color: rgba(0,0,0,.8)
    }

    .knowledge-row .col-inner .inner .content {
        width: 100%;
    }

    .knowledge-row .col-inner .inner .content p {
        font-size: inherit;
        color: inherit;
    }

    .knowledge-row .icon {
        margin: 0 auto 10px auto;
        display: block;
        background-image: url("/media/1027/knowledge-sprite.png");
        width: 40px;
        height: 40px;
        background-position: 0 0;
        background-repeat: no-repeat;
    }

    .knowledge-row .icon:after {
        clear: both;
    }

    .knowledge-row .icon.literature, .knowledge-row .icon.Literature {
        background-position: 0px 0;
    }

    .knowledge-row .icon.video, .knowledge-row .icon.Video {
        background-position: -40px 0;
    }

    .knowledge-row .icon.presentation, .knowledge-row .icon.Presentation {
        background-position: -80px 0;
    }

    .knowledge-row .col-inner {
        margin: 22px;
    }

    .knowledge-row .knowledge-item.video .content p, .knowledge-row .knowledge-item.Video .content p {
        margin: 10px 0;
    }

    .knowledge-row .knowledge-item.video .content .button, .knowledge-row .knowledge-item.Video .content .button {
        margin-top: 0px;
    }

    .knowledge-row .knowledge-item {
        width: 100%;
    }

    .search-results-row {
        text-align: center;
        padding-top: 40px;
    }

    @media (max-width:350px) {
        .knowledge-row .button {
            font-size: 14px;
        }

        .knowledge-row .col-inner {
            margin: 10px;
        }
    }

    @media (max-width:470px) {

        .knowledge-row .button {
            margin: 0;
            font-size: 12px;
        }

        .knowledge-row .col-inner .front .content,
        .knowledge-row .col-inner .back .content {
            padding: 0 25px;
        }

        .knowledge-row .knowledge-item .button {
            margin: 0;
        }

        .knowledge-row .icon {
            margin: 0 auto;
        }

        .knowledge-row .col-inner .front .content,
        .knowledge-row .col-inner .back .content {
            padding: 0 20px;
            margin: 10px 0;
        }

        .knowledge-row .col-inner .inner .content p {
            font-size: 14px;
        }

        .knowledge-row .knowledge-item .button {
            font-size: 12px;
        }

        .knowledge-row .col-inner {
            padding: 10px 0;
        }
    }

    @media (min-width: 576px) {
        .knowledge-row .col-inner:hover .front {
            -webkit-transform: rotateY(-180deg);
            -ms-transform: rotateY(-180deg);
            transform: rotateY(-180deg);
        }

        .knowledge-row .col-inner:hover .back {
            -webkit-transform: rotateY(-360deg);
            -ms-transform: rotateY(-360deg);
            transform: rotateY(-360deg);
            z-index: 1;
        }
    }

    @media (min-width: 768px) {

        .knowledge-row .knowledge-item {
            width: 50%;
        }
    }

    @media (min-width: 992px) {
    }

    @media (min-width: 1260px) {

        .knowledge-row .knowledge-item {
            width: 33.3%;
        }
    }

    @media (min-width: 1400px) {
    }


    /*---------------------------------------------*/
    /*--CUSTOM CARDS-------------------------------*/
    /*---------------------------------------------*/

    .card-custom-row .card-custom {
        padding-left: 15px;
        padding-right: 15px;
        text-decoration: none;
        margin-bottom: 30px;
    }

    .card-custom-row .card-custom img {
        width: 100%;
        height: auto;
        filter: grayscale(100%);
        -webkit-filter: grayscale(100%);
    }

    .card-custom-row .card-custom:hover img {
        filter: grayscale(0);
        -webkit-filter: grayscale(0);
    }

    .card-custom-row .card-custom .inner {
        padding: 30px;
        background-color: #ebebeb;
        border-bottom: 8px #414042 solid;
    }

    .card-custom-row .card-custom .tag {
        display: inline-block;
        /*background-color: #cc5c28;*/
        background-color: #f76457;
        color: white;
        font-size: 16px;
        padding: 5px 12px 5px 12px;
        font-weight: bold;
        /*width: 73px;*/
        text-align: center;
    }

    .card-custom-row .card-custom .title {
        font-size: 25px;
        font-weight: bold;
        margin: 30px 0 30px 0;
        color: #414042;
    }

    .card-custom-row .card-custom .icon {
        width: 40px;
        height: 36px;
        display: block;
        background-image: url("/media/1083/post_link_icon.png");
        background-position: 0 0;
        margin-left: auto;
        margin-right: 0;
        overflow: hidden;
    }

    .card-custom-row .card-custom:hover {
        text-decoration: none;
    }

    .card-custom-row .card-custom:hover .inner .tag {
        background-color: #ffffff;
        color: #cc5c28;
    }

    .card-custom-row .card-custom:hover .inner .title {
        color: #ffffff;
        text-decoration: none;
    }

    .card-custom-row .card-custom:hover .inner {
        /*background-color: #cc5c28;*/
        /*border-color: #014b92;*/
        background-color: #f76457;
        border-color: #0055a5;
    }

    .card-custom-row .card-custom:hover .icon {
        background-position: -40px 0;
    }

    @media (max-width: 410px) {
        .card-custom-row .card-custom {
            width: 100%;
        }
    }

    @media (min-width: 576px) {
        .card-custom-row .card-custom {
            width: 100%;
        }
    }

    @media (min-width: 768px) {
        .card-custom-row .card-custom {
            width: 50%;
        }
    }

    @media (min-width: 992px) {
        .card-custom-row .card-custom {
            width: 50%;
        }
    }

    @media (min-width: 1260px) {
        .card-custom-row .card-custom {
            width: 33.33%;
        }
    }

    @media (min-width: 1400px) {
        .card-custom-row .card-custom {
            width: 33.33%;
        }
    }


    /*---------------------------------------------*/
    /*--PAGINATION --------------------------------*/
    /*---------------------------------------------*/

    .pagination {
        margin: 40px 0 30px 0;
    }

    .pagination.top {
        margin-top: 0;
    }

    .pagination .page,
    .pagination a.page {
        width: 30px;
        padding: 3px 0 4px 0;
        margin: 0 10px 0 0;
        text-align: center;
        color: #014b92;
        cursor: pointer;
    }

    .pagination .page.selected,
    .pagination .page.disabled {
        color: #b2b2b2;
        font-weight: bold;
        cursor: text;
        border: 1px solid #cccccc;
    }

    .pagination .page.selected:hover {
        color: #b2b2b2;
    }

    .pagination .page.prev.selected,
    .pagination .page.next.selected {
        border: none;
        font-weight: normal;
    }

    .pagination .page:hover {
        text-decoration: none;
    }

    /* INVERTED PAGINATION STYLES */
    .inverted .pagination .page,
    .inverted .pagination a {
        color: #fff;
    }

    .inverted .pagination .page.selected,
    .inverted .pagination .page.disabled {
        color: #b2b2b2;
    }

    .pagination .pager {
        width: auto;
    }

    .pagination .page.selected a,
    .pagination .page.disabled a {
        color: #b2b2b2;
        cursor: text;
        text-decoration: none;
    }

    .pagination .page a:hover {
        text-decoration: none;
    }

    .pagination .pager.page.selected,
    .pagination .pager.page.disabled {
        border: none;
        font-weight: normal;
    }


    /*---------------------------------------------*/
    /*--Form Controls------------------------------*/
    /*---------------------------------------------*/




    /*---------------------------------------------*/
    /*--Newsletter Sign Up Form Styles-------------*/
    /*---------------------------------------------*/

    .onesource_form {
        font-size: 0px;
    }

    .translated .onesource_form {
    }

    .newsletter-text {
        color: #08182C;
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 20px;
        line-height: 20pt;
    }

    #fieldEmail {
        width: 55%;
        padding: 7px 0 9px 10px;
        font-size: 16px;
        margin: 0 0 0 0;
        border: 0;
        background-color: #ebebeb;
    }

    .onesource_button {
        margin: 0 0 0 -5px;
        padding: 7px 0 8px 0;
        border: 0;
        background-color: #cc5c28;
        color: #ffffff;
        font-size: 16px;
        cursor: pointer;
        width: 39%;
        font-weight: bold;
    }

    .translated #fieldEmail {
        width: 54%
    }

    .translated .onesource_button {
        width: 45%;
        margin-top: 0;
    }


    /*---------------------------------------------*/
    /*--Filter Styles------------------------------*/
    /*---------------------------------------------*/

    .filter-row .input-clear {
        display: none;
        position: absolute;
        top: 13px;
        right: 10px;
        background-color: #a09fa0;
        border-radius: 100px;
        color: white;
        padding: 5px;
        line-height: 10px;
        cursor: pointer;
    }

    .filter-row .input-clear span {
        display: inline-block;
        width: 0px;
        overflow: hidden;
        transition: 0.5s all;
        line-height: 12px;
    }

    .filter-row .input-clear:hover span {
        margin: 0 5px;
        width: 40px;
        display: inline-block;
    }

    .filter-row .radio-buttons div,
    .filter-row .radio-buttons a {
        background-color: white;
        color: #a09fa0;
        height: 100%;
        max-height: 80px;
        text-align: center;
        line-height: 50px;
        cursor: pointer;
        font-size: 16px;
    }


    .filter-row .radio-buttons div.selected,
    .filter-row .radio-buttons a.selected {
        background-color: #d9d9d9;
        color: #414042;
        cursor: default;
    }

    .filter-row .radio-buttons a:hover {
        text-decoration: none;
    }

    .filter-row {
        position: relative;
        z-index: 900;
        background-color: #ebebeb;
    }

    .body-content .filter-row .container {
        padding-bottom: 15px;
    }

    .container.edge-to-edge > .row {
        margin-left: -22px;
        margin-right: -22px;
    }

    .filter-row > .row {
        height: 100%;
        padding-bottom: 15px;
    }

    .filter-row .filter-item {
        margin-top: 15px;
    }

    .filter-row .select2.select2-container {
        width: 100%;
    }

    .filter-row .select2 .select2-selection {
        width: 100%;
        border-radius: 0;
        border: none;
        padding: 12px 0 12px 10px;
        height: auto;
    }

    .filter-row .select2 .select2-selection__arrow {
        margin-top: 12px;
    }

    .filter-row .select2 .select2-dropdown {
        border: none;
        box-shadow: 0 10px 20px rgba(0,0,0,.2);
    }

    .filter-row .filter-item {
        margin-top: 15px;
    }

    .filter-row p {
        margin: 0;
        font-size: 16px;
        margin-top: 0px;
    }

    .filter-row input {
        display: inline-block;
        padding: 15px 15px;
        font-size: 16px;
        line-height: 16px;
    }

    .filter-row .search {
        width: 100%;
        height: 100%;
        border: none;
    }

    .filter-row .general-button,
    .filter-row .search-button {
        width: 100%;
        padding: 9px 0 10px 0;
        background-color: white;
        color: #666666;
        font-size: 20px;
        text-align: center;
        cursor: pointer;
        border-left: 1px solid #ebebeb;
    }

    .filter-row .general-button

    .filter-row .search-button .fa-search {
        height: 20px;
        width: 20px;
    }


    .filter-row .general-button:hover,
    .filter-row .locate:hover,
    .filter-row .search-button:hover {
        color: #cc5c28;
    }

    .custom-dropdown {
        background-color: #ffffff;
        width: 100%;
        border-radius: 0;
        border: none;
        padding: 14px 0 14px 10px;
    }

    .filter-row .custom-dropdown {
        height: 100%;
    }

    .custom-search {
        height: 49px;
        width: 86%;
        border: none;
        padding: 15px 15px;
        font-size: 16px;
        line-height: 16px;
        float: left;
    }

    .custom-search-button {
        background-color: #ffffff;
        height: 100%;
        float: left;
        width: 14%;
        padding: 9px 0 10px 0;
        background-color: white;
        color: #666666;
        font-size: 20px;
        text-align: center;
        cursor: pointer;
        border-right: 1px solid #ebebeb;
    }

    .custom-search-button .svg-inline--fa {
        vertical-align: -5px;
    }

    .filter-row .filter-button {
        background: white;
        padding: 15px;
        transition: all 0.15s;
    }

    .filter-row .filter-button:hover {
        cursor: pointer;
        transform: scale(1.03);
        box-shadow: 0 5px 10px rgba(0,0,0,.2);
    }


    @media (min-width: 576px) {

        .filter-row .search-button {
            border-top: none;
        }
    }

    @media (min-width: 768px) {

        .container > .row {
            margin: 0;
        }

        .filter-row {
            background: transparent;
        }

        .body-content .filter-row .container {
            background-color: #ffffff;
            background-color: rgba(255,255,255,.6);
        }
    }

    @media (min-width: 992px) {
        .filter-row .select2 {
            font-size: 14px;
        }

        .filter-row input {
            font-size: 14px;
            padding: 17px 15px 16px 15px;
        }

        .filter-row p {
            margin-top: 0px;
        }
    }

    @media (min-width: 1260px) {
        .filter-row .select2 {
            font-size: 16px;
        }

        .filter-row input {
            font-size: 16px;
            padding: 15px 14px;
        }
    }


    /*---------------------------------------------*/
    /*--BODY CONTENT-------------------------------*/
    /*---------------------------------------------*/

    .body-content {
        padding: 0 0 90px 0;
        position: relative;
        z-index: 1000;
    }

    .body-content > .container,
    .body-content > .umb-block-list > .container {
        padding-top: 44px;
        padding-bottom: 44px;
        background-color: white;
    }

    /* This should be global but was breaking at least some pages */
    .error-page-template .body-content > .container {
        min-height: 200px;
    }

    @media (min-width: 576px) {
    }

    @media (min-width: 768px) {

        .body-content {
            margin-top: -200px;
        }

        .condensed-header .body-content {
            margin-top: -80px;
        }
    }

    @media (min-width: 992px) {
    }

    @media (min-width: 1260px) {
    }

    /*---------------------------------------------*/
    /*--List View----------------------------------*/
    /*---------------------------------------------*/

    .list-view {
        text-align: left;
        font-size: 18px;
    }

    .list-view .list-header {
        background-color: #014b92;
        color: white;
        font-weight: bold;
    }

    .list-view .row {
        padding: 15px 0;
    }

    .list-view .list-row {
        background-color: white;
    }

    .list-view .list-row.alt {
        background-color: #f4f4f4;
    }

    /*---------------------------------------------*/
    /*--Global Icons-------------------------------*/
    /*---------------------------------------------*/
    .global-icons:before {
        content: "";
        display: block;
        background: url(/media/o5gbpaoq/global_icons_sprite.png) no-repeat;
        min-width: 60px;
        height: 60px;
        float: left;
        margin: 0 25px 0 0;
    }

    .global-icons.calendar-icon:before {
        background-position: 0 0;
    }

    .global-icons.price-icon:before {
        background-position: -60px 0;
    }

    .global-icons.clock-icon:before {
        background-position: -120px 0;
    }

    .global-icons.location-icon:before {
        background-position: -180px 0;
    }

    .global-icons.map-icon:before {
        background-position: -120px -120px;
    }

    .global-icons.fax-icon:before {
        background-position: 0 -60px;
    }

    .global-icons.phone-icon:before {
        background-position: -60px -60px;
    }

    .global-icons.email-icon:before {
        background-position: -120px -60px;
    }

    .global-icons.user-icon:before {
        background-position: -180px -62px;
    }

    .global-icons.close-icon:before {
        background-position: -10px -120px;
    }

    .global-icons.arrow-left-icon {
        background-position: -60px -120px;
    }

    .global-icons.arrow-right-icon {
        background-position: -99px -120px;
    }

    .global-icons.arrow-right-icon,
    .global-icons.arrow-left-icon,
    .global-icons.close-icon:before {
        min-width: 40px;
        height: 40px;
    }

    /*---------------------------------------------*/
    /*--CARD FLIP----------------------------------*/
    /*---------------------------------------------*/

    #calendar-card {
        height: 100%;
    }

    #calendar-card .front {
        position: absolute;
        top: 0;
        left: 0;
        background-color: #0d2149;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        transform-style: preserve-3d;
        z-index: 1;
        height: 100%;
        width: 100%;
        transition: all 0.5s ease-out;
    }

    #calendar-card .back {
        top: 0;
        left: 0;
        bottom: 0;
        width: 100%;
        background-color: #0d2149;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        transform-style: preserve-3d;
        position: relative;
        z-index: 0;
        height: 100%;
        transform: rotateY(-180deg);
        transition: all 0.5s ease-out;
    }

    .inverted #calendar-card .front,
    .inverted #calendar-card .back {
        background: #fff;
    }

    /*--------------------------------------------------*/
    /*--CARD (BACK) CALENDAR EVENT INFORMATION DISPLAY--*/
    /*--------------------------------------------------*/

    .card-flip .back {
        padding: 30px;
    }

    .card-flip .front {
        padding: 20px 10px;
    }

    .card-flip .back .calendar-event-info,
    .card-flip .back .calendar-event-info h3,
    .card-flip .back .calendar-event-info p {
        color: #fff;
    }

    .calendar-event-info h3 {
        text-transform: uppercase;
        font-size: 36px;
        font-weight: bold;
        margin-top: 30px;
    }

    .inverted .card-flip .back .calendar-event-info h3,
    .inverted .card-flip .back .calendar-event-info p {
        color: #414042;
    }

    .calendar-event-info small {
        font-size: 20px;
    }

    .calendar-event-info p {
        font-size: 24px;
        margin: 0;
        align-self: center;
    }

    .inverted .calendar-event-info small,
    .inverted .calendar-event-info p {
        color: #000;
    }

    .calendar-event-info .global-icons.close-icon::before {
        z-index: -5;
    }

    .calendar-event-info .global-icons {
        padding: 15px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        text-align: left
    }

    .calendar-event-info .global-icons.close-icon {
        position: absolute;
        right: 0;
        top: 15px;
        cursor: pointer;
        z-index: 0;
        padding: 0 !important;
    }

    .calendar-event-info p {
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
        text-transform: uppercase;
        font-weight: bold;
    }

    .calendar-event-info p span {
        font-weight: normal;
        text-transform: none;
    }

    .calendar-event-btn {
        margin: 10px 20px 0 20px;
    }

    @media (max-width:576px) {

        .calendar-event-info small {
            font-size: 18px;
        }

        .card-flip .back .calendar-event-info h3 {
            font-size: 28px;
        }

        .calendar-event-btn {
            margin: 10px 10px 0 10px;
            display: block;
        }

        .calendar-event-info .global-icons.close-icon {
            right: -10px;
        }

        .global-icons:before {
            margin: 0 15px 0 0;
            transform: scale(0.8);
        }
    }

    @media (max-width:450px) {

        .calendar-event-info .global-icons {
            padding: 15px 0;
        }

        .calendar-event-info p {
            font-size: 18px;
        }

        .calendar-event-info small {
            font-size: 16px;
        }

        .card-flip .back .calendar-event-info h3 {
            font-size: 23px;
        }

        .global-icons:before {
            margin: 0 10px 0 0;
            transform: scale(0.6);
        }

        .fc .fc-button-group .fc-button.fc-state-default {
            transform: scale(0.8);
        }
    }

    /*---------------------------------------------*/
    /*--FULL CALENDAR CONTAINER (2 Cols)-----------*/
    /*---------------------------------------------*/

    .fullCalendar-events-container,
    .fullCalendar-training-container {
        border: 2px solid #0d2149;
        width: 100%;
        text-align: center;
    }

    .inverted .fullCalendar-events-container,
    .inverted .fullCalendar-training-container {
        border: 2px solid #fff;
    }

    @media (max-width:576px) {

        .fullCalendar-events-container,
        .fullCalendar-training-container {
            border: none;
        }
    }

    /*---------------------------------------------*/
    /*--FULL CALENDAR STYLES-----------------------*/
    /*---------------------------------------------*/
    #calendar-card.card-flip {
        min-height: 620px;
    }

    .calendar {
        color: #fff;
        background-color: #0d2149;
        height: 100%;
    }

    .inverted .calendar {
        background-color: #fff;
        color: #0d2149;
    }

    .fc-toolbar.fc-header-toolbar {
        margin: 0 !important;
        padding: 10px 0;
        height: 80px;
    }

    .fc .fc-toolbar > * > *,
    .fc-toolbar.fc-header-toolbar .fc-left {
        float: none !important;
        margin-left: 0;
    }

    .fc-toolbar .fc-left h2,
    body .fc .fc-toolbar-title {
        font-size: 34px;
        text-transform: uppercase;
        margin: 0;
        color: #ffffff;
        margin-left: 20px;
    }

    .inverted .fc-toolbar .fc-left h2,
    body .inverted .fc .fc-toolbar-title {
        color: #0d2149;
    }

    .fc-toolbar .fc-right {
        float: none;
        position: relative;
        top: -40px;
        width: 100%;
    }

    .fc-toolbar .fc-right .fc-today-button {
        display: none;
    }

    .fc .fc-button-group > * {
        float: none;
        margin: 0;
        background: url("/media/o5gbpaoq/global_icons_sprite.png") no-repeat;
        background-color: transparent;
        height: 40px;
        width: 20px;
        outline: none;
        position: absolute;
    }

    .fc .fc-button-group .fc-button {
        padding: 0;
        background-color: transparent;
        border: none;
        margin-right: 20px;
    }

    .fc .fc-button-group .fc-button.fc-state-default {
        box-shadow: none;
        border: none;
    }

    .fc .fc-button-group .fc-button:hover,
    .fc .fc-button-group .fc-button:active {
        background-color: transparent;
        border: none;
    }

    .fc .fc-button-group > :first-child {
        background-position: -60px -120px;
        /*left: 20px;
    top: 0;*/
    }

    .fc .fc-button-group > :last-child {
        background-position: -99px -120px;
        /*right: 20px;
    top: 0;*/
    }

    .fc-button .fc-icon {
        display: none;
    }

    .fc-view-container .fc-head-container .fc-row.fc-widget-header {
        margin-bottom: 20px;
    }

    .fc-view-container .fc-body .fc-widget-content .fc-day-grid .fc-row.fc-week.fc-widget-content {
        height: auto !important;
    }

    .calendar-col .fc td {
        border: none;
        text-transform: uppercase;
    }

    .fc .fc-row .fc-content-skeleton table,
    .fc .fc-row .fc-content-skeleton td,
    .fc .fc-row .fc-helper-skeleton td {
        text-align: center;
    }

    .fc-ltr .fc-basic-view .fc-day-top .fc-day-number {
        float: none !important;
        font-size: 20px
    }

    .fc th, .fc td {
        border: none !important;
        text-transform: uppercase;
    }

    .fc-unthemed td.fc-today,
    .inverted .fc-unthemed td.fc-today {
        background: none !important;
        color: #cc5c28;
        font-weight: bold;
    }

    .fc-unthemed .fc-week .fc-bg td.fc-today {
        background-color: none;
    }

    .fc-view-container .fc-view .fc-widget-content .fc-scroller.fc-day-grid-container {
        overflow-y: hidden !important;
        height: auto !important;
    }

    .fc-widget-content .fc-highlight-skeleton td.fc-highlight {
        background-color: #cc5c28;
        opacity: 0.5;
    }

    .fc-event:hover {
        cursor: pointer;
    }

    .fc-day-grid-event .fc-content {
        white-space: inherit !important;
        font-size: 12px;
        overflow: hidden;
        padding: 2px;
    }

    .inverted .fc-day-grid-event .fc-content {
        color: #fff;
    }


    body .fc .fc-scrollgrid-section-sticky > * {
        background: none;
    }

    body .fc-theme-standard .fc-scrollgrid {
        border: none;
    }

    body .fc .fc-daygrid-day.fc-day-today {
        background-color: rgba(0,0,0,.3);
    }

    body .fc-h-event {
        position: relative;
        display: block;
        font-size: .75rem;
        line-height: 1.3;
        border-radius: 3px;
        border: 1px solid #668fee;
        background-color: #668fee;
    }

    body .fc .fc-daygrid-day-number {
        margin: auto;
        font-size: 20px;
    }

    body .fc-toolbar.fc-header-toolbar {
        padding: 0 0 20px 0;
    }

    body .fc-daygrid-block-event .fc-event-time, .fc-daygrid-block-event .fc-event-title {
        white-space: normal;
    }

    @media (max-width:500px) {
        .fc-toolbar .fc-left h2 {
            font-size: 28px;
        }

        .fc .fc-button-group > :first-child {
            background-position: -60px -120px;
            left: 5px;
        }

        .fc .fc-button-group > :last-child {
            background-position: -99px -120px;
            right: 5px;
        }

        .fc-toolbar.fc-header-toolbar {
            height: unset;
        }
    }

    @media (max-width:400px) {
        .fc .fc-button-group > :first-child {
            left: -5px;
        }

        .fc .fc-button-group > :last-child {
            right: -5px;
        }
    }

    /*---------------------------------------------*/
    /*--CALENDAR EVENTS LIST-----------------------*/
    /*---------------------------------------------*/

    .calendar-events,
    .training-events {
        padding: 30px 30px 0 30px;
    }

    .calendar-events h3 {
        text-transform: uppercase;
        font-size: 36px;
        font-weight: bold;
        color: #414042;
        margin-bottom: 20px;
    }

    .inverted .calendar-events h3 {
        color: #fff;
    }

    .events-list .events-list-item {
        border-bottom: 1px solid #868686;
        font-size: 20px !important;
        font-weight: bold;
        text-align: left;
        padding: 10px 15px;
        margin: 0;
        width: 100%;
        color: #014b92;
        -webkit-transition: background-color 0.1s color 0.1s;
        -o-transition: background-color 0.1s color 0.1s;
        transition: background-color 0.1s color 0.1s;
        cursor: pointer;
    }

    .inverted .events-list .events-list-item {
        border-bottom: 1px solid #fff;
        color: #fff;
    }

    .events-list .events-list-item p {
        font-size: 16px !important;
        font-weight: 500;
        color: #414042;
        margin: 0;
    }

    .inverted .events-list .events-list-item p {
        color: #fff;
    }

    .events-list .events-list-item:hover {
        background-color: #ebebeb;
        border-bottom: 2px solid #f76457;
    }

    .inverted .events-list .events-list-item:hover {
        color: #014b92;
    }

    .inverted .events-list .events-list-item:hover p {
        color: #414042;
    }

    .events-list .events-list-item.active {
        background-color: #f76457;
        color: #ffffff;
        border-bottom: 2px solid #f76457;
    }

    .events-list .events-list-item.active p {
        color: #ffffff;
    }

    .inverted .events-list .events-list-item.active:hover {
        background-color: #f76457;
        color: #ffffff;
        border-bottom: 2px solid #f76457;
    }

    .inverted .events-list .events-list-item.active:hover p {
        color: #ffffff;
    }

    @media (min-width:576px) {
        .calendar-events,
        .training-events {
            padding: 30px;
        }
    }

    @media (max-width:992px) {

        .events-list .events-list-item {
            text-align: center;
        }
    }

    @media (max-width:576px) {

        .fullCalendar-events-container {
            border: none;
        }

        .calendar-events h3 {
            font-size: 28px;
        }
    }

    /*---------------------------------------------*/
    /*--CALENDAR Training LIST---------------------*/
    /*---------------------------------------------*/

    .calendar-training {
        padding: 30px;
    }

    .calendar-training h3 {
        text-transform: uppercase;
        font-size: 36px;
        font-weight: bold;
        color: #414042;
        margin-bottom: 20px;
    }

    .inverted .calendar-training h3 {
        color: #fff;
    }

    .training-list .training-list-item {
        display: block;
        text-decoration: none;
        border-bottom: 1px solid #868686;
        font-size: 20px !important;
        font-weight: bold;
        text-align: left;
        padding: 10px 15px;
        margin: 0;
        width: 100%;
        color: #014b92;
        -webkit-transition: background-color 0.1s color 0.1s;
        -o-transition: background-color 0.1s color 0.1s;
        transition: background-color 0.1s color 0.1s;
        cursor: pointer;
    }

    .inverted .training-list .training-list-item {
        border-bottom: 1px solid #fff;
        color: #fff;
    }

    .training-list .training-list-item p {
        font-size: 16px !important;
        font-weight: 500;
        color: #414042;
        margin: 0;
    }

    .inverted .training-list .training-list-item p {
        color: #fff;
    }

    .training-list .training-list-item:hover {
        background-color: #ebebeb;
        border-bottom: 2px solid #cc5c28;
    }

    .inverted .training-list .training-list-item:hover {
        color: #014b92;
    }

    .inverted .training-list .training-list-item:hover p {
        color: #414042;
    }

    .training-list .training-list-item.active {
        background-color: #014b92;
        color: #ffffff;
        border-bottom: 2px solid #cc5c28;
    }

    .training-list .training-list-item.active p {
        color: #ffffff;
    }

    .inverted .training-list .training-list-item.active:hover {
        background-color: #014b92;
        color: #ffffff;
        border-bottom: 2px solid #cc5c28;
    }

    .inverted .training-list .training-list-item.active:hover p {
        color: #ffffff;
    }


    .training-info-container .global-icons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        text-align: left
    }

    .training-info-container p {
        /*-ms-flex-item-align:center;
	-ms-grid-row-align:center;
	align-self:center;*/
        text-transform: uppercase;
        font-weight: bold;
    }

    .training-info-container p span {
        font-weight: normal;
        text-transform: none;
    }

    .training-btn {
        margin: 10px 20px 0 20px;
    }

    .course-info .global-icons {
        margin: 30px auto 30px;
    }

    @media (max-width:992px) {

        .training-list .training-list-item {
            text-align: center;
        }
    }

    @media (max-width:576px) {

        .calendar-training h3 {
            font-size: 28px;
        }

        .training-info-container small {
            font-size: 18px;
        }

        .training-info-container h3 {
            font-size: 28px;
        }

        .training-btn {
            margin: 10px 10px 0 10px;
            display: block;
        }

        .training-info-container .global-icons.close-icon {
            right: -10px;
        }

        .global-icons:before {
            margin: 0 15px 0 0;
            transform: scale(0.8);
        }
    }

    @media (max-width:450px) {

        .training-info-container .global-icons {
            padding: 15px 0;
        }

        .training-info-container p {
            font-size: 18px;
        }

        .training-info-container small {
            font-size: 16px;
        }

        .training-info-container h3 {
            font-size: 23px;
        }

        .global-icons:before {
            margin: 0 10px 0 0;
            transform: scale(0.6);
        }
    }



    /*---------------------------------------------*/
    /*--Angled Split View--------------------------*/
    /*---------------------------------------------*/

    .angled-split-view {
        overflow: hidden;
        background-color: #eeeeee;
    }

    .angled-split-view .col-inner {
    }

    .angled-split-view .col-inner.left {
        margin: 0 -15px 0 -15px;
        padding: 10px 0;
        background-color: #3b3a3d;
        height: 100%;
        transform-origin: top;
        background-image: url("/media/1103/account-center-bg.png");
    }

    .angled-split-view .col-inner.right {
        margin: 40px 0px;
    }

    .angled-split-view .col-inner.left .title-stripe {
        margin: 20px 0;
        background-color: #014b92;
        color: white;
        padding: 20px;
        z-index: 100;
        position: relative;
        text-align: center;
        text-transform: uppercase;
    }

    .angled-split-view .col-inner.left .title-stripe .title {
        font-style: normal;
        line-height: 20px;
        margin: 20px 10px;
    }

    .angled-split-view .col-inner.left .title-stripe .title strong {
        font-weight: bold;
        font-size: 37px;
    }

    .angled-split-view .col-inner.left .title-stripe .title p {
        font-size: 28px;
        margin: 0;
    }

    @media (min-width: 576px) {

        .angled-split-view .col-inner.left {
            margin: 0 0 0 -100%;
        }

        .angled-split-view .col-inner.left {
            transform: skewX(-5deg);
        }

        .angled-split-view .col-inner.left .title-stripe {
            margin: 100px 0 0 0;
            text-align: right;
        }

        .angled-split-view .col-inner.left .title-stripe .title {
            transform: skewX(5deg);
        }
    }

    @media (min-width: 768px) {
    }

    @media (min-width: 992px) {
    }

    @media (min-width: 1260px) {
    }


    /*---------------------------------------------*/
    /*--Content Viewer Bar-------------------------*/
    /*---------------------------------------------*/

    .body-content .content-viewer-bar .container {
        background-color: black;
        color: white;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .body-content .content-viewer-bar a {
        color: white;
    }

    .body-content .content-viewer-bar a .svg-inline--fa {
        color: #cc5c28;
    }

    .body-content .content-viewer-bar.pinned {
        position: fixed;
        width: 100%;
        top: 60px;
        background-color: black;
        z-index: 1000;
    }

    /*---------------------------------------------*/
    /*--Description Bar----------------------------*/
    /*---------------------------------------------*/

    .description-bar {
        background-color: #414042;
        color: white;
        margin: 0 0 60px 0;
        padding: 30px 0;
    }

    .description-bar p {
        margin: 0;
    }

    /*---------------------------------------------*/
    /*--SVG Icons ---------------------------------*/
    /*---------------------------------------------*/

    .svg-inline--fa {
        display: inline-block;
        font-size: inherit;
        height: 1em;
        overflow: visible;
        vertical-align: -.125em;
    }

    .svg-inline--fa.fa-w-16 {
        width: 1em;
    }

    /*---------------------------------------------*/
    /*--Status message banner ---------------------*/
    /*---------------------------------------------*/

    .status-message {
        width: 100%;
        background-color: #014b92;
        text-transform: uppercase;
        font-weight: bold;
        text-align: center;
        padding: 10px;
        font-size: 24px;
        color: #ffffff;
        margin: 0 0 44px 0;
    }

    .status-message:empty {
        display: none;
    }


    /*---------------------------------------------*/
    /*--OVERLINE-----------------------------------*/
    /*---------------------------------------------*/

    .overline {
        border-top: 16px solid #cc5c28 !important;
    }


/*---------------------------------------------*/
/*--SWIPER JS (NO-JQUERY CAROUSEL)-------------*/
/*---------------------------------------------*/

.swiper-container {
    overflow: hidden;
    position: relative;
}

:root body {
    --swiper-navigation-top-offset: 100%;
    --swiper-theme-color: white;
    --swiper-navigation-size: 20px;
    --swiper-pagination-bullet-size: 16px;
    --swiper-pagination-bottom: 12px;
}

.solution-slideshow .swiper-button-next,
.solution-slideshow .swiper-button-prev {
    top: unset !important;
    bottom: 0%;
    margin-bottom: 10px;
}

/*---------------------------------------------*/
/*--Choices JS----------------------------------*/
/*---------------------------------------------*/

.choices-js {
    width: 100%;
}

.choices-js .choices__inner {
    border-radius: 0;
}

.onesource-choices {

}
