﻿/*
Style sheet for the entire site (things that overlap for registration and the logged in site)
*/
/*----------------------------------
BOOTSTRAP OVERRIDES & ADDITIONAL CSS
Overrides the default CSS Rules
as well as creates new rules for additional
functionalities
----------------------------------*/
.text-transform--none {
    text-transform: none !important;
}

.d-hidden {
    visibility: hidden;
}

.col-md-10 {
    max-width: none;
}


.btn-primary,
.btn-outline-primary {
    text-transform: uppercase;
}

.form-group > label,
.label-faded {
    color: #c2c2c2;
}

/*.page {
    padding-bottom: 50px
}*/

.table {
    margin-bottom: 0px
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
}

.custom-checkbox .custom-control-label {
    cursor: pointer;
}

    .custom-checkbox .custom-control-label::before {
        border-radius: 2px;
    }
/*----------------------------------
NAV-BAR
Bootstrap nav with Bottom Bar UI
----------------------------------*/

.nav-bar .nav-link {
    display: flex;
    color: #4a4a4a;
    font-weight: 400;
    letter-spacing: 0.39px;
    position: relative;
    transition: all 0.3s;
    align-items: center;
    height: 100%;
}

    .nav-bar .nav-link i {
        font-size: 20px;
        margin-right: 10px;
    }

    .nav-bar .nav-link span {
        font-size: 14px;
    }

    .nav-bar .nav-link::after {
        content: "";
        width: 100%;
        height: 0px;
        background: #82aee2;
        position: absolute;
        bottom: 0px;
        transition: all 0.3s;
        right: 0px;
        left: 0px;
        margin: auto;
    }

    .nav-bar .nav-link:hover, .nav-bar .nav-link.active {
        color: #82aee2;
        text-decoration: none;
        cursor: pointer;
    }

        .nav-bar .nav-link:hover::after,
        .nav-bar .nav-link.active::after {
            height: 4px
        }

/*----------------------------------
NAV STEPS
----------------------------------*/
.nav-steps {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 2px solid #82aee2;
    border-bottom: none;
}

    .nav-steps > li + li {
        margin-left: 20px;
    }

    .nav-steps .nav-link {
        border: none;
        font-size: 16px;
        color: #cfcfcf;
        font-weight: normal;
        position: relative;
        padding-left: 0;
        padding-right: 0;
        cursor: pointer;
    }

        .nav-steps .nav-link::before {
            content: "";
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid #cfcfcf;
            background: #cfcfcf;
            margin: 0 auto;
            display: inline-block;
            position: absolute;
            top: -8px;
            left: 50%;
            margin-left: -9px;
        }

        .nav-steps .nav-link.active, .nav-steps .nav-link:hover {
            border: none;
            color: #82aee2;
            font-weight: bold;
        }

            .nav-steps .nav-link.active::before, .nav-steps .nav-link:hover::before {
                border-color: #82aee2;
                background: #fff;
                width: 15px;
                height: 15px;
            }

@media (min-width: 768px) {
    .nav-steps > li + li {
        margin-left: 100px;
    }
}

.dropdown-menu {
    overflow: hidden;
}

.dropdown-item {
    font-size: 14px;
    padding: 10px 20px;
    cursor: pointer;
}

    .dropdown-item + .dropdown-item,
    .dropdown-item--signout {
        border-top: 1px solid #f2f2f2;
    }

.dropdown-border {
    background: rgba(242, 242, 242, 0.27);
    border: 1px solid #f2f2f2;
    padding: 0 5px;
}

.dropdown .btn {
    padding: 3px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #4a4a4a;
}

.dropdown-item:hover label::after,
.dropdown-item:focus label::after,
.dropdown-item.active label::after,
.dropdown-item:active label::after {
    color: #fff;
}



.btn {
    text-decoration: none !important;
    padding: 10px 15px;
    font-size: 14px;
    border-radius: 2px !important;
    cursor: pointer;
}

    .btn.btn-icon {
        border-radius: 50% !important;
    }

    .btn:active {
        box-shadow: none !important;
    }

    .btn:not(.btn-link) {
        text-transform: uppercase;
    }

    .btn i {
        margin: 0px 10px;
    }

.cta-btn {
    padding: 10px 25px
}

    .cta-btn .fa-bolt {
        margin-left: 10px
    }

.btn-outline-primary {
    background-color: #fff;
}

.btn-remove {
    display: flex;
    align-items: center;
}

    .btn-remove i {
        display: none;
    }


/*----------------------------------
CUSTOM CSS
CRL Specific CSS Rules
----------------------------------*/

/***
    Provider and Affiliate Overview box
*/

.report-card {
    border-radius: 4px;
    border: solid 1px #f2f2f2;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative
}

.report-card--short {
    height: 90%;
}

.report-card--info {
    border-top: 5px solid #3379d0
}

.report-card--best,
.report-card--gray {
    background: #f2f2f2
}

    .report-card--best .membership-ribbon_left {
        display: block;
        position: absolute;
        top: -38px;
        left: -20px;
    }

.report-card--danger {
    border-top: 5px solid #c03941
}

.report-card__header {
    text-align: center;
    border-bottom: 1px solid #82aee2
}

    .report-card__header h5 {
        font-weight: 700;
        font-size: 18px;
        line-height: 26px;
        color: #3379d0;
        font-family: "Open Sans", sans-serif
    }

        .report-card__header h5 span {
            font-size: 21px;
        }

        .report-card__header h5 sup {
            margin: 0px 2px;
            top: -10px;
        }

.report-card__price {
    text-align: center;
    border-bottom: 1px solid #82aee2
}

    .report-card__price h4 {
        color: #82aee2;
        font-size: 24px !important
    }

    .report-card__price span {
        text-transform: uppercase;
        font-size: 11px
    }

.report-card .provider-logo {
    width: 50%;
}

.report-card__logo {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 5px
}


    .report-card__logo span {
        padding: 0px 10px;
        color: #3379d0
    }

    .report-card__logo strong {
        font-family: "open sans";
        font-size: 18px
    }

.report-card .provider-logo-small { /*this is logo between blue lines*/
    width: 110px
}

.report-card__logo::before,
.report-card__logo::after {
    content: "";
    flex: 1;
    height: 2px;
    background: #82aee2
}

.report-card__text {
    text-align: center
}

    .report-card__text p {
        font-size: 13px;
        margin: 0px
    }

.report-card__action {
    text-align: center;
    margin-top: auto
}

    .report-card__action .btn {
        border-width: 2px
    }

.points {
    list-style: none;
    padding: 0px;
    margin: 0px
}

    .points > li {
        font-size: 14px;
        position: relative;
        display: flex;
        align-items: center
    }

        .points > li i {
            color: #82aee2;
            margin-right: 5px;
            font-size: 16px
        }

        .points > li + li {
            margin-top: 15px
        }

.membership-ribbon_left {
    display: none;
}

    .membership-ribbon_left img {
        width: 142px;
    }

.membership-ribbon_right {
    position: absolute;
    top: -38px;
    right: -20px
}

    .membership-ribbon_right img {
        width: 142px
    }

.coming-soon-btn {
    border: 2px solid #c2c2c2;
    color: #c2c2c2
}

    .coming-soon-btn:hover {
        background: #c2c2c2;
        color: #fff;
        border: 2px solid #c2c2c2
    }

.unavailable-btn {
    border: 2px solid #c2c2c2;
    color: #c2c2c2;
    word-spacing: 8px;
}

    .unavailable-btn:hover {
        background: #c2c2c2;
        color: #fff;
        border: 2px solid #c2c2c2
    }


.tab-content__header {
    max-width: 80%;
    margin: 0 auto
}

    .tab-content__header h4 {
        font-size: 22px;
        font-weight: bold
    }

.tab-content__report h4 {
    font-size: 22px;
    font-weight: bold
}

.report-list {
    justify-content: center;
}

@media(max-width: 767.98px) {
    .tab-content__header {
        max-width: 100%;
        /*text-align: left !important*/
    }

    .tab-content__report {
        padding-top: 10px;
    }

    .tab-content__header h4 {
        font-size: 22px;
        line-height: 36px
    }

    .tab-content__header p br {
        display: none
    }

    .tab-content__report > h4 {
        margin-top: 50px;
        font-size: 22px;
        line-height: 32px;
        text-align: left !important
    }

    .report-list {
        padding: 0px !important;
    }

        .report-list .col-md-4 + .col-md-4 {
            margin-top: 50px
        }

    .report-card__text p {
        line-height: 22px
    }
}

.tab-content--report {
    position: relative;
}

    .tab-content--report .tab-content__header .btn {
        position: absolute;
        left: 34px;
        top: 25px;
        font-size: 16px;
        padding-left: 0;
    }

    .tab-content--report .tab-content__header h2 {
        color: #3379d0;
        font-weight: bold;
        font-family: "Open Sans", sans-serif
    }

        .tab-content--report .tab-content__header h2 span {
            font-size: 32px
        }

        .tab-content--report .tab-content__header h2 sup {
            font-size: 16px;
            top: -20px
        }

    .tab-content--report .tab-content__header p {
        font-size: 21px;
        font-weight: bold;
        margin: 0 auto
    }

        .tab-content--report .tab-content__header p span {
            font-size: 21px;
            font-weight: bold;
            font-style: italic;
            margin-right: 5px
        }

.report-card__aside.report-card {
    height: auto
}

.report-row__aside .report-card {
    height: auto
}


@media(max-width: 767.98px) {
    .tab-content--report .tab-content__header {
        max-width: 100%;
        /*text-align: center !important;*/
        margin-bottom: 30px
    }

        .tab-content--report .tab-content__header h2 {
            font-size: 24px
        }

            .tab-content--report .tab-content__header h2 span {
                font-size: 24px;
                display: block
            }

        .tab-content--report .tab-content__header p {
            width: 100%
        }

        .tab-content--report .tab-content__header .btn {
            left: 1px;
        }

    .report-row {
        margin-top: 0 !important;
        padding: 0 !important
    }

    .report-row__aside {
        margin-top: 70px
    }
}

@media(max-width: 575.98px) {
    .tab-content--report {
        padding-left: 0px !important;
        padding-right: 0px !important
    }
}
/*----------------------------------
HEADER
----------------------------------*/
.header {
    height: 75px;
}

    .header .container, .header .row {
        height: 100%;
    }

/*.header__name {
    font-size: 14px;
    color: #82aee2;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1.2;
    display: block;
}*/

.header__name img {
    width: 100%;
}

.header__action {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #82aee2;
}

    .header__action i {
        font-size: 32px;
    }

    .header__action:focus {
        outline: none;
    }

    .header__action:hover {
        text-decoration: none
    }

#Div_BelowFixedTop {
    margin-top: 75px;
}



.logo {
    font-size: 24px;
    font-weight: 700;
}

    .logo img {
        height: 50px;
    }

    .logo:hover {
        text-decoration: none;
    }

.header__name {
    text-transform: uppercase;
}

@media (min-width: 768px) {
    /*.header {
        height: 95px;
    }*/

    .header__name {
        font-size: 16px;
    }
}

@media(max-width: 575.98px) {
    .header .col-6 {
        padding: 0px
    }

    #Div_BelowFixedTop {
        margin-top: 80px;
    }

    .logo img {
        height: auto;
    }
}
/*----------------------------------
NAVIGATION
----------------------------------*/
.navigation {
    position: relative;
    height: 92px;
    box-shadow: 0 2px 6px 0 rgba(218, 218, 218, 0.5);
}

    .navigation .nav-link {
        height: 92px;
        padding: 0 25px;
        text-transform: uppercase;
    }

.navigation__close {
    display: none;
}

.close-nav:hover {
    text-decoration: none
}

.nav-bar .nav-link {
    font-weight: 300
}

    .nav-bar .nav-link.active {
        font-weight: bold
    }

/*ipad and iphone x*/
@media(max-width: 813px) {
    .navigation .nav-link {
        padding: 0 15px;
    }
}

@media (max-width: 767.98px) {
    .navigation {
        width: 300px;
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        height: 100%;
        overflow: auto;
        background: #82aee2;
        z-index: 1031; /*must be higher than fixed-top to display the side nav properly on mobile*/
        transform: translate(-310px, 0px);
        transition: all 0.3s;
    }

        .navigation.active {
            transform: translate(0px, 0px);
        }

        .navigation .nav-bar {
            flex-direction: column;
        }

        .navigation .nav-link {
            color: #fff;
            height: auto;
            padding: 15px 30px;
            font-size: 18px;
        }

            .navigation .nav-link.active, .navigation .nav-link:hover {
                color: #fff;
                background-color: #6da1dd;
            }

            .navigation .nav-link:after {
                display: none;
            }

    .navigation__close {
        width: 50px;
        height: 50px;
        font-size: 24px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
    }

    .nav-steps {
        border-top: 2px solid #cfcfcf;
        padding-bottom: 10px !important
    }
}

@media (max-width: 575.98px) {
    .page-header__tabs {
        width: 100%;
    }

    .nav-bar {
        justify-content: space-between;
    }

        .nav-bar .nav-link {
            padding: 10px 7px;
        }

    .navigation .nav-link {
        padding: 10px 40px
    }

        .navigation .nav-link i {
            margin-right: 20px;
            width: 24px;
            text-align: center
        }

    .navigation .nav-item + .nav-item {
        margin-top: 10px
    }

    .nav-steps .nav-item + .nav-item {
        margin-left: 30px
    }

    .nav-steps .nav-link {
        font-size: 12px;
        padding-top: 15px
    }
}

.btn.btn-icon {
    height: 48px;
    width: 48px;
    padding: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}

    .btn.btn-icon.btn-sm {
        font-size: 16px;
        width: 31px;
        height: 31px;
    }

    .btn.btn-icon.btn-xs {
        font-size: 8px;
        width: 18px;
        height: 18px;
    }

.btn-round {
    border-radius: 50%;
}

.btn-pill {
    border-radius: 10rem;
    border: none;
}

.btn-link-dark {
    color: #343a40;
}

.btn-light {
    color: #fff;
}

.btn--small {
    height: 38px;
    padding: 0 !important
}

.btn--wide {
    padding: 10px 50px
}

.btn--wider {
    padding: 10px 60px
}

.btn-font--wider {
    font-size: 16px
}

.btn-gray {
    color: #979797;
}

.btn-gray--bg {
    background: #cfcfcf;
    color: #fff;
    border: 1px solid transparent
}

    .btn-gray--bg:hover {
        background: #979797;
        border: 1px solid transparent
    }

.btn-warning {
    color: #f5a623;
    background-color: #fff;
}

    .btn-warning:hover {
        color: #e7940b;
        background: #fff;
    }

.btn-border {
    background: #c2c2c2;
    margin-bottom: 3px;
    color: white;
    border-radius: 50px;
    border: 1px solid;
    cursor: pointer;
}

.rounded-2 {
    border-radius: 2px
}



.wrap {
    background: #f7f8fb;
}

.gap-x > * + * {
    margin-left: 10px;
}

.gap-x-lg > * + * {
    margin-left: 20px;
}

.gap-y > * + * {
    margin-top: 10px;
}

.gap-y-lg > * + * {
    margin-top: 20px;
}

.ul-reset {
    padding: 0;
    list-style: none
}

/*----------------------------------
PAGE HEADER
----------------------------------*/
.page-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 40px 0 40px;
}

.page-header--second {
    padding: 20px 0 20px;
}

.page-header .btn-primary.disabled {
    border: none;
    background-color: #c2c2c2;
    cursor: not-allowed;
}

.page-header--account {
    justify-content: space-between;
    padding-top: 40px;
    margin-top: 0px;
    margin-bottom: 10px
}

@media(max-width: 768px) {
    .page-header {
        padding: 0px;
    }
}

.dropdown a:hover {
    text-decoration: none;
}

.page-name { /*not sure where this belongs - see when developing - there's already this class in style.css*/
    display: none
}

.page-header__cta {
    margin-left: 20px;
}

.badge-primary {
    font-weight: normal;
    padding: 5px 15px
}


#upload-file__link {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center
}

#upload-file {
    display: none
}

.acc--btn .btn.disabled {
    border: none;
    background-color: #e1e1e1;
    cursor: not-allowed
}

.create-acc--btn:disabled {
    border: none;
    background-color: #e1e1e1;
    cursor: not-allowed
}

/*.pl-0 {
    padding-left: 0px
}*/
.wrap {
    min-height: 90vh;
}

@media (max-width: 991.98px) {

    .wrap {
        min-height: 80vh;
    }

    .page-header {
        justify-content: center;
        margin: 20px 0;
    }

    .page-header__cta {
        margin: 0;
        position: fixed;
        bottom: 0;
        right: 0;
        left: 0;
        z-index: 99;
    }

        .page-header__cta .btn {
            width: 100%;
            border-radius: 0;
            line-height: 2.5;
        }

        .page-header__cta .btn-link {
            background-color: white;
        }
}

@media(max-width: 767.98px) {
    .page-header--account {
        display: block
    }
}
/*----------------------------------
FILTER HEADER
----------------------------------*/
.filter-header .btn-pill {
    text-transform: initial;
}

@media (min-width: 768px) {
    .filter-header {
        box-shadow: 0 2px 4px 0 rgba(226, 226, 226, 0.5);
        background: #fff;
    }
}
/*----------------------------------
CALLOUT
----------------------------------*/
.callout {
    border: 1px solid #82aee2;
    padding: 10px;
}

@media (max-width: 767.98px) {
    .pagebacklink .back-link,
    .page-steps-backlink .back-link {
        display: none;
    }

    .page-header-back .back-link {
        display: block;
    }

    .page-header-back .nav--bar {
        display: none;
    }
}

/*@media(max-width: 575.98px) {
 

    .page-name {
        display: block
    }
}*/

/*----------------------------------
FORM ELEMENT
----------------------------------*/
.form-title {
    border-bottom: 1px solid #82aee2;
    margin-bottom: 20px
}

    .form-title h4 {
        font-size: 20px;
        margin-bottom: 20px
    }

.form-element label {
    /*color: #82aee2;*/
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px
}

.form-element input:not(.btn),
.form-element select {
    border-radius: 3px;
    border: solid 1px #82aee2;
    background-color: #f2f2f2;
    color: #4a4a4a;
    height: 38px;
    padding: .5rem 1rem
}

.form-element .input-group-append {
    border-radius: 3px;
    border: solid 1px #82aee2;
    background-color: #f2f2f2;
    color: #4a4a4a;
    height: 38px;
    padding: .5rem 1rem
}

.form-element .input-group-text {
    border: none;
    background-color: inherit;
}

.form-element input::placeholder,
.form-element select::placeholder {
    color: #c2c2c2
}

.form-element input[type=password] {
    color: #82aee2
}

.form-element .custom-control-label {
    color: #4a4a4a;
    font-weight: normal
}

.form-element select {
    padding: 0px 10px
}

.form-element .btn.btn-icon.btn-xs {
    width: 13px;
    height: 13px;
    margin-top: 4px;
    padding: 0
}

.form-element .fa-info {
    color: #fff;
    font-size: 6px
}

.form-element p {
    font-size: 12px;
    line-height: 22px
}

.form-element .form-group {
    margin-bottom: 1.5rem !important
}

.form-element .custom-checkbox label {
    text-transform: none;
    font-size: 16px
}


@media(max-width: 767.98px) {

    .form-element h2 {
        margin-top: 30px
    }

    .form-element label {
        font-size: 14px
    }

    .form-element .btn {
        padding: 10px 5px
    }

    .form-element .custom-checkbox label.label-sm-mobile {
        font-size: 14px
    }
}


/*Form with data that can be editable*/

.form-element--personal label {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 0px;
    color: #9b9b9b;
}

.form-element--personal .form-control:not(.edit) {
    font-size: 16px;
    font-weight: bold;
    padding: 0rem 0 15px;
    border: none !important;
    border-bottom: 1px solid #f2f2f2 !important;
    box-shadow: none;
    border-radius: 0px;
    height: 30px;
    background: #fff
}

.form-element--personal select.form-control:not(.edit) {
    padding-bottom: 0px;
}

.form-element--personal .form-control::placeholder {
    color: #4a4a4a
}

@media(max-width: 767.98px) {

    .form-element--personal .form-group {
        margin-bottom: .5rem !important
    }
}

.form-group__label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px
}

    .form-group__label div {
        flex: 1;
        display: flex;
        justify-content: space-between
    }

    .form-group__label .btn {
        height: 30px
    }

    .form-group__label .btn-cancel {
        display: none
    }

    .form-group__label .btn-save {
        display: none
    }

    .form-group__label.active .btn-cancel,
    .form-group__label.active .btn-save {
        display: block
    }

    .form-group__label.active .btn-edit {
        display: none
    }


.card--profile .btn {
    height: 38px;
    padding: 0px 15px;
    border-radius: 3px !important
}

.card--profile .form-element--personal .form-control {
    height: 38px;
    padding: 0px
}

.card--profile .form-control.edit-input {
    border: 1px solid #82aee2 !important;
    background-color: #f2f2f2;
    border-radius: 3px;
    padding: 0px 10px
}


@media(max-width: 767.98px) {
    .card--profile .form-element .btn {
        padding: 0px 10px
    }

    .card--profile .form-element--personal .form-control {
        font-size: 14px
    }

    .w-xs-100 {
        width: 100%
    }
}
/*----------------------------------
POPOVER
----------------------------------*/
.popover {
    padding: 10px;
    text-align: center;
}

    .popover .popover-header {
        border: none;
        font-size: 16px;
        font-weight: bold;
    }

    .popover .popover-body {
        font-size: 14px;
        line-height: 20px;
    }

/*  --------------
  ALERT
------------------ */
.alert p { /*used in mainsite and on smartcreditcredentials (for linking account)*/
    margin: 0px;
    font-weight: normal
}
/*  --------------
  MODAL
------------------ */
/**
    Modal
*/
.modal .close {
    margin-left: auto;
    color: #82aee2;
    padding: 1rem 0rem
}

    .modal .close:focus {
        outline: none;
    }

.modal .form-group .form-control {
    height: 30px;
    padding: 0 0.5rem;
}

.modal .form-group textarea.form-control {
    height: auto;
    font-size: 14px;
    padding: 10px 20px 10px 10px;
    border-radius: 0;
    border-color: #82aee2;
}

.modal-header {
    border-bottom: 1px solid #ececec;
    margin: 0 15px;
}

.modal-title {
    font-weight: bold;
    text-align: center;
    flex: 1 1 auto;
}

.modal-alert {
    background: #fcf4f4;
    text-align: center;
    font-size: 15px;
    line-height: 25px;
    letter-spacing: 0.2px;
    color: #4a4a4a;
    font-weight: normal;
    padding: 10px 20px;
    margin: 0 -15px;
}

.modal-footer {
    margin: 0rem 1rem 1rem;
    padding: 1rem 0 0 0;
    border-top: 1px solid #f2f2f2;
}

.modal-body__FooterBtn {
    margin-top: 15px;
    margin-left: unset;
    margin-right: unset;
}

.modal-border {
    border: none;
}

.modal-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    width: 70px;
    height: 70px;
    background: #82aee2;
    border-radius: 50%;
    color: #fff;
    margin: 30px auto;
}

.modal-content {
    border: 2px solid #82aee2;
}

.modal-dialog.modal-wide {
    max-width: 900px; /*override bootstrap's max-width 500px*/
}
/*
    Footer
*/
.footer {
    padding-top: 30px;
}



.footer-top .col-md-2 {
    flex: 0 0 20% !important;
    max-width: 20% !important
}

.footer-title {
    color: #9b9b9b;
    font-size: 14px
}

.footer-links {
    margin-top: 20px
}

    .footer-links li + li {
        margin-top: 10px
    }

    .footer-links a {
        font-weight: 100
    }

.footer-bottom {
    background: #f7f8fb;
    padding: 30px 0
}

.footer-social,
.footer-copy {
    display: flex;
    align-items: center;
    justify-content: center
}

    .footer-social li,
    .footer-copy li {
        color: #82aee2;
        font-weight: 300
    }

        .footer-social li + li,
        .footer-copy li + li {
            margin-left: 22px
        }

    .footer-social i,
    .footer-copy i {
        font-size: 25px
    }

    .footer-social a,
    .footer-copy a {
        font-weight: 300
    }

.ftr-twitter {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #82aee2
}

    .ftr-twitter i {
        font-size: 16px;
        color: #fff
    }

    .ftr-twitter:hover {
        text-decoration: none
    }

/*.footer-section {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
}*/
@media(max-width: 767.98px) {
    .footer-top .col-md-2 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        margin-bottom: 30px
    }
    /*.footer-section {
            flex-basis: auto;
            flex-grow: inherit;
            max-width: 100%;
        }*/

    .footer-top .footer-logo {
        flex: 0 0 100% !important;
        max-width: 100% !important
    }

    .footer-copy {
        display: block;
        text-align: center;
        margin-top: 30px
    }

        .footer-copy li + li {
            margin-left: 0;
            margin-top: 15px
        }
}


.default-color {
    color: #82aee2 !important;
}

.provider-logo {
    width: 25%;
}

@media(max-width: 767.98px) {

    .provider-logo {
        width: 50%;
    }
}

.dropdown-toggle {
    height: 100%;
    background-color: white;
}

/*  --------------
  Restricted Content
------------------ */
.wraprc {
    filter: blur(2px);
    user-select: none;
    pointer-events: none;
}

#paywall-wrapper {
    background-color: white;
    /* background-color: rgba(0,0,0,.5); */
    opacity: .9;
    z-index: 28;
    width: 34%;
    left: 33%;
    top: 45%;
    padding: 35px;
    border-radius: 5px;
    position: fixed;
    margin-bottom: 30px;
    box-shadow: 0px 0px 20px -1px rgba(0,0,0,0.20);
}

    #paywall-wrapper * {
        text-align: center;
    }


@media(max-width: 575.98px) {
    #paywall-wrapper {
        width: 72%;
        left: 16%;
        top: 35%;
    }
}

/*Bootstrap toggle overrides*/
.toggle-handle { /*bootstrap toggle needed to be overriden or the white handle is to large*/
    position: relative;
    margin: 0 auto;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    height: 100% !important;
    width: 0 !important;
    border-width: 0 1px;
    background-color: #fff;
}

.toggle-group label {
    color: white;
}

.toggle-group label {
    padding-right: 2.4rem !important
}


.fa-brands::before, 
.fa-regular::before ,
.fa-solid::before

{
    font-family: 'Font Awesome 5 Brands';
}
