.header {
    background: #fff;
    padding: 16px 0;
}
.header .header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header .header--left {
    display: flex;
    align-items: center;
    width: 35%;
}
.header .header--center {
    display: flex;
    justify-content: center;
    flex: 1;
}
.header .header--right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 36%;
}
.header .btn-navbar {
    display: inline-block;
    background: none;
    border: none;
    padding: 0;
    position: relative;
    outline: none;
    cursor: pointer;
}
.header .btn-navbar:before {
    content: 'MENU';
    font-size: 15px;
    text-transform: uppercase;
    color: #343B62;
    font-weight: bold;
    position: absolute;
    transition: 0.3s;
    left: 108%;
    top: 4px;
}
.header .btn-navbar:hover:before{
    color: #45D3C6;
}
.header .btn-navbar:hover span.line3 {
    width: 24px;
}
.header .btn-navbar span {
    display: block;
    width: 24px;
    height: 2px;
    background: #343B62;
    border-radius: 2px;
    margin: 6px;
    transition: 0.3s;
}
.header .btn-navbar span.line3{
    width: 16px;
}
.header .logo {
    display: inline-block;
    text-decoration: none;
}
.header .logo img {
    width: 230px;
}
.header .header-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    margin: 0;
    list-style: none;
}
.header .header-menu li {
    padding: 0;
    margin: 0;
}
.header .header-menu li a {
    display: inline-block;
    text-decoration: none;
    padding: 10px 15px;
    color: #343B62;
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s;
}
.header .header-menu li a:hover {
    color: #45D3C6;
}
.header .header-menu li.dropdown {
    margin: 0 10px;
}
.header .header-menu li.dropdown a.dropdown-toggle {}
.header .header-menu li.dropdown a.dropdown-toggle:before {
    content: '';
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iNTEyIiBoZWlnaHQ9IjUxMiIgdmlld0JveD0iMCAwIDI4NC45MjkgMjg0LjkyOSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMjg0LjkyOSAyODQuOTI5OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PGc+PGc+Cgk8cGF0aCBkPSJNMjgyLjA4Miw3Ni41MTFsLTE0LjI3NC0xNC4yNzNjLTEuOTAyLTEuOTA2LTQuMDkzLTIuODU2LTYuNTctMi44NTZjLTIuNDcxLDAtNC42NjEsMC45NS02LjU2MywyLjg1NkwxNDIuNDY2LDE3NC40NDEgICBMMzAuMjYyLDYyLjI0MWMtMS45MDMtMS45MDYtNC4wOTMtMi44NTYtNi41NjctMi44NTZjLTIuNDc1LDAtNC42NjUsMC45NS02LjU2NywyLjg1NkwyLjg1Niw3Ni41MTVDMC45NSw3OC40MTcsMCw4MC42MDcsMCw4My4wODIgICBjMCwyLjQ3MywwLjk1Myw0LjY2MywyLjg1Niw2LjU2NWwxMzMuMDQzLDEzMy4wNDZjMS45MDIsMS45MDMsNC4wOTMsMi44NTQsNi41NjcsMi44NTRzNC42NjEtMC45NTEsNi41NjItMi44NTRMMjgyLjA4Miw4OS42NDcgICBjMS45MDItMS45MDMsMi44NDctNC4wOTMsMi44NDctNi41NjVDMjg0LjkyOSw4MC42MDcsMjgzLjk4NCw3OC40MTcsMjgyLjA4Miw3Ni41MTF6IiBkYXRhLW9yaWdpbmFsPSIjMDAwMDAwIiBjbGFzcz0iYWN0aXZlLXBhdGgiIHN0eWxlPSJmaWxsOiMzNDNCNjIiIGRhdGEtb2xkX2NvbG9yPSIjMDAwMDAwIj48L3BhdGg+CjwvZz48L2c+IDwvc3ZnPg==);
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    position: absolute;
    top: 50%;
    margin-top: -5px;
    right: -4px;
    width: 12px;
    height: 12px;
}
.header .header-menu li.dropdown .dropdown-menu {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    max-width: 100%;
    width: auto;
    min-width: 270px;
    float: none;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 0;
    margin: 0;
    margin-top: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}
.header .header-menu li.dropdown .dropdown-menu:before {
    content: '';
    position: absolute;
    top: -9px;
    left: 50%;
    margin-left: -11px;
    width: 23px;
    height: 9px;
    background-image: url("../../images/covid19/sprite-min.png");
    background-repeat: no-repeat;
    -webkit-background-size: 300px;
    background-size: 300px;
    background-position: -108px -90px;
}
.header .header-menu li.dropdown .dropdown-menu li {
    width: 100%;
}
.header .header-menu li.dropdown .dropdown-menu li a {
    font-size: 14px;
    text-decoration: none;
    display: block;
    padding: 11px 70px 11px 20px;
    color: #343B62;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    border-bottom: 1px solid #efefef;
}
.header .header-menu li.dropdown .dropdown-menu li a:hover {
    background: #71c1ef ;
    color: #fff;
}
.header .header-menu li.dropdown .dropdown-menu li a:before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    right: 5px;
    top: 6px;
    background-image: url("../../images/covid19/sprite-min.png");
    background-repeat: no-repeat;
    -webkit-background-size: 300px;
    background-size: 300px;
}
.header .header-menu li.dropdown .dropdown-menu li a.fatd-sprite-special-dc:before {
    width: 24px;
    height: 24px;
    -webkit-background-size: 600px;
    background-size: 600px;
    background-position: -576px 0;
}
.header .header-menu li.dropdown .dropdown-menu li a.fatd-sprite-special-dc:hover:before {
    background-position: -576px -24px;
}
.header .header-menu li.dropdown .dropdown-menu li a.fatd-sprite-special-ds:before {
    width: 24px;
    height: 24px;
    -webkit-background-size: 600px;
    background-size: 600px;
    background-position: -576px -144px;
}
.header .header-menu li.dropdown .dropdown-menu li a.fatd-sprite-special-ds:hover:before {
    background-position: -576px -168px;
}
.header .header-menu li.dropdown .dropdown-menu li a.fatd-sprite-special-mp:before {
    width: 24px;
    height: 24px;
    -webkit-background-size: 600px;
    background-size: 600px;
    background-position: -576px -96px;
}
.header .header-menu li.dropdown .dropdown-menu li a.fatd-sprite-special-mp:hover:before {
    background-position: -576px -120px;
}
.header .header-menu li.dropdown .dropdown-menu li a.fatd-sprite-special-sy:before {
    width: 24px;
    height: 24px;
    -webkit-background-size: 600px;
    background-size: 600px;
    background-position: -576px -48px;
}
.header .header-menu li.dropdown .dropdown-menu li a.fatd-sprite-special-sy:hover:before {
    background-position: -576px -72px;
}
.header .header-menu li.dropdown .dropdown-menu li a.fatd-sprite-hh:before {
    background-position: -90px -105px;
}
.header .header-menu li.dropdown .dropdown-menu li a.fatd-sprite-hh:hover:before {
    background-position: -90px -135px;
}
.header .header-menu li.dropdown .dropdown-menu.big-menu {
    min-width: 600px;
    left: auto;
    right: 0;
    transform: translateX(0);
}
.header .header-menu li.dropdown .dropdown-menu.big-menu:before {
    left: 100%;
    margin-left: -71px;
}
.header .header-menu li.dropdown .dropdown-menu.big-menu .row {
    margin: 0;
}
.header .header-menu li.dropdown .dropdown-menu.big-menu li a:before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    right: 5px;
    top: 8px;
    background-image: url("../../images/covid19/for_doctors_icons.png");
    background-repeat: no-repeat;
    -webkit-background-size: 216px;
    background-size: 216px;
}
.header .header-menu li.dropdown .dropdown-menu.big-menu li a.menu-cat-title {
    display: block;
    padding: 11px 70px 11px 50px;
    font-size: 18px;
    position: relative;
}
.header .header-menu li.dropdown .dropdown-menu.big-menu li a.menu-cat-title:before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    left: 10px;
    top: 6px;
    background: url("../../images/covid19/sprite-min.png") no-repeat;
    -webkit-background-size: 300px;
    background-size: 300px;
}
.header .header-menu li.dropdown .dropdown-menu.big-menu li a.menu-cat-title.fatd-sprite-mct-health:before {
    background-position: -240px -165px;
}
.header .header-menu li.dropdown .dropdown-menu.big-menu li a.fatd-sprite-fd-pm:before {
    background-position: 0 0;
}
.header .header-menu li.dropdown .dropdown-menu.big-menu li a.fatd-sprite-fd-dr:before {
    background-position: -24px 0;
}
.header .header-menu li.dropdown .dropdown-menu.big-menu li a.fatd-sprite-fd-bx:before {
    background-position: -48px 0;
}
.header .header-menu li.dropdown .dropdown-menu.big-menu li a.fatd-sprite-fd-cn:before {
    background-position: -72px 0;
}
.header .header-menu li.dropdown .dropdown-menu.big-menu li a.fatd-sprite-fd-dl:before {
    background-position: -96px 0;
}
.header .header-menu li.dropdown .dropdown-menu.big-menu li a.fatd-sprite-fd-me:before {
    background-position: -192px 0;
}
.header .header-menu li.dropdown .dropdown-menu.big-menu li a.empty-icon:before {
    background: none;
}
.header {}

@media (max-width: 991px) {
    .header {
        background: #fff;
        padding: 10px 0;
    }
    .header .logo img {
        width: 190px;
    }
    .header .header-menu {
        display: none;
    }
}

@media (max-width: 767px) {
    .header .logo img {
        width: 155px;
    }
    .header .header-row {
        flex-direction: row;
    }
    .header .header--left {
        order: 3;
        justify-content: flex-end;
    }
    .header .header--center {
        order: 2;
    }
    .header .header--right {
        order: 1;
        justify-content: flex-start;
    }
    .header .btn-navbar:before {
        display: none;
    }
    .header .btn-navbar span {
        position: relative;
        height: 2px;
        border-radius: 5px;
        left: 0;
    }
    .header .btn-navbar span.line3 {
        left: 8px;
    }
    .header .btn-navbar:hover span.line3 {
        left: 0;
    }
}

.columns-50:after {
    clear: both;
    content: '';
    display: table;
}
.columns-50 li {
    float: left;
    width: 50%;
}
.fpmOverlay {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    transition: all .3s ease-in-out;
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #FFF;
    z-index: 1001;
    overflow-y: auto;
    padding-top: 0;
}
.header-combined .fpmOverlay {
    top: 0;
}
.fpmOverlay.open-navbar {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.fpmOverlay .fpm-overlay-header .btn-fpm-close {
    position: absolute;
    background: none;
    font-size: 50px;
    margin: 0;
    padding: 0;
}
.fpmOverlay .fpm-overlay-header .nav-fpm-search-form {
    margin: 42px 0;
    text-align: center;
}
.fpm-logos {
    display: block;
    width: 245px;
    margin: 0 auto;
}
.fpm-logos img {
    max-width: 100%;
}
.fpm-logos .fpm-logo-fatd {
    display: block;
}
.fpm-logos .fpm-logo-hj {
    display: none;
}
body.hj .fpm-logos {
    width: 275px;
}
body.hj .fpm-logos .fpm-logo-fatd {
    display: none;
}
body.hj .fpm-logos .fpm-logo-hj {
    display: block;
}
.fpmOverlay .fpm-overlay-header .nav-fpm-search-form .form-control {
    display: inline-block !important;
    width: 600px;
    border-radius: 4px;
    height: 37px;
    padding: 5px 12px 5px 38px;
    font-size: 16px
}
.fpmOverlay .fpm-overlay-header .nav-fpm-search-form .form-control:focus {
    border-color: #836cc3;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px #836cc3;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px #836cc3
}
.fpmOverlay .fpm-overlay-header .nav-fpm-search-form .form-group {
    position: relative
}
.fpmOverlay .fpm-overlay-header .nav-fpm-search-form .btn-default {
    position: absolute;
    height: 37px;
    width: 37px;
    padding: 0 5px;
    margin-left: -600px;
    border: 0;
    background-color: transparent
}
.fpmOverlay .fpm-overlay-header .nav-fpm-search-form .btn-default .search-icon {
    display: inline-block;
    font-size: 20px;
    color: #836cc3;
    background: none;
    margin: 2px 0 0 2px;
}
.fpmOverlay .fpm-overlay-header {
    /*display: none*/
}
.fpmOverlay .container {
    padding-top: 20px
}
.fpmOverlay h3,  .fpmOverlay h4 {
    color: #836cc3;
    font-weight: 600
}
.fpmOverlay h3 a,  .fpmOverlay h4 a {
    color: inherit
}
.fpmOverlay h3 a:hover,
.fpmOverlay h4 a:hover,
.fpmOverlay h3 a:active,
.fpmOverlay h4 a:active,  .fpmOverlay h3 a:focus,  .fpmOverlay h4 a:focus {
    color: inherit
}
.fpmOverlay h3 {
    position: relative;
    z-index: 1;
    border-bottom: 1px solid #CCC;
    padding-bottom: 10px;
    margin: 20px 0 0;
    font-size: 19px;
    letter-spacing: .05em
}
.fpmOverlay h3.topline {
    border-bottom: 0;
    padding-bottom: 0;
    border-top: 1px solid #CCC;
    padding-top: 10px
}
.fpmOverlay h3.media {
    color: #98519f;
    font-size: 24px
}
.fpmOverlay h3.hj-menu {
    padding-left: 40px
}
.fpmOverlay h3.hj-menu .hj-icon {
    position: absolute;
    display: block;
    top: -8px;
    left: 0;
    width: 32px;
    height: 32px;
    background: transparent url("../../images/covid19/icon-hj-menu.png") center center no-repeat
}
.fpmOverlay h3 img {
    position: absolute;
    top: -5px;
    left: 0
}
.fpmOverlay h4 {
    margin-top: 20px
}
.fpmOverlay .view-all {
    display: inline-block;
    margin-left: 5px;
    font-size: 14px;
    cursor: pointer;
    text-transform: uppercase;
    color: #836cc3
}
.fpmOverlay .view-all:hover {
    text-decoration: none;
}
@media (min-width: 1200px) {
    .fpmOverlay .view-all .icon-view-all {
        display: inline-block;
        width: 14px;
        height: 14px;
        margin-bottom: -2px;
        background: transparent url("../../images/covid19/icon-view-all.png") center center no-repeat;
    }
}
.fpmOverlay .columns {
    margin-top: -1px
}
.columns-2 {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
}
.fpmOverlay ul li {
    position: relative;
    border-top: 1px solid #e5e5e5;
    margin-bottom: 0
}
.fpmOverlay ul li:first-child {
    border-top: transparent
}
.fpmOverlay ul li .hidden {
    display: none
}
.fpmOverlay ul li a {
    display: block;
    color: #000;
    padding: 10px 5px 10px 5px
}
.fpmOverlay ul li a:hover {
    color: #FFF;
    background-color: #b4a0dd;
    text-decoration: none
}
.fpmOverlay ul.has-icons li a {
    padding-left: 32px
}
.fpmOverlay ul.has-icons li a:before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    left: 0;
    top: 6px;
    background-image: url("../../images/covid19/sprite-min.png");
    background-repeat: no-repeat;
    -webkit-background-size: 300px;
    background-size: 300px
}
.fpmOverlay ul.has-icons li a.fatd-sprite-wh:before {
    background-position: 0 -105px
}
.fpmOverlay ul.has-icons li a.fatd-sprite-wh:hover:before {
    background-position: 0 -135px
}
.fpmOverlay ul.has-icons li a.fatd-sprite-mh:before {
    background-position: -30px -105px
}
.fpmOverlay ul.has-icons li a.fatd-sprite-mh:hover:before {
    background-position: -30px -135px
}
.fpmOverlay ul.has-icons li a.fatd-sprite-ag:before {
    background-position: -60px -105px
}
.fpmOverlay ul.has-icons li a.fatd-sprite-ag:hover:before {
    background-position: -60px -135px
}
.fpmOverlay ul.has-icons li a.fatd-sprite-hh:before {
    background-position: -90px -105px
}
.fpmOverlay ul.has-icons li a.fatd-sprite-hh:hover:before {
    background-position: -90px -135px
}
.fpmOverlay ul.has-icons li a.fatd-sprite-pa:before {
    background-position: -120px -105px
}
.fpmOverlay ul.has-icons li a.fatd-sprite-pa:hover:before {
    background-position: -120px -135px
}
.fpmOverlay ul.has-icons li a.fatd-sprite-pr:before {
    background-position: -150px -105px
}
.fpmOverlay ul.has-icons li a.fatd-sprite-pr:hover:before {
    background-position: -150px -135px
}
.fpmOverlay ul.has-icons li a.fatd-sprite-dn:before {
    background-position: -180px -105px
}
.fpmOverlay ul.has-icons li a.fatd-sprite-dn:hover:before {
    background-position: -180px -135px
}
.fpmOverlay ul.has-icons li a.fatd-sprite-dc:before {
    background-position: 0 -165px
}
.fpmOverlay ul.has-icons li a.fatd-sprite-dc:hover:before {
    background-position: 0 -195px
}
.fpmOverlay ul.has-icons li a.fatd-sprite-ds:before {
    background-position: -30px -165px
}
.fpmOverlay ul.has-icons li a.fatd-sprite-ds:hover:before {
    background-position: -30px -195px
}
.fpmOverlay ul.has-icons li a.fatd-sprite-mp:before {
    background-position: -60px -165px
}
.fpmOverlay ul.has-icons li a.fatd-sprite-mp:hover:before {
    background-position: -60px -195px
}
.fpmOverlay ul.has-icons li a.fatd-sprite-lm:before {
    background-position: -90px -165px
}
.fpmOverlay ul.has-icons li a.fatd-sprite-lm:hover:before {
    background-position: -90px -195px
}
.fpmOverlay ul.has-icons li a.fatd-sprite-li:before {
    background-position: -120px -165px
}
.fpmOverlay ul.has-icons li a.fatd-sprite-li:hover:before {
    background-position: -120px -195px
}
.fpmOverlay ul.has-icons li a.fatd-sprite-hl:before {
    background-position: -210px -105px
}
.fpmOverlay ul.has-icons li a.fatd-sprite-hl:hover:before {
    background-position: -210px -135px
}
.fpmOverlay ul.has-icons li a.fatd-sprite-vi:before {
    background-position: -180px -165px
}
.fpmOverlay ul.has-icons li a.fatd-sprite-vi:hover:before {
    background-position: -180px -195px
}
.fpmOverlay ul.has-icons li a.fatd-sprite-sh:before {
    background-position: -210px -165px
}
.fpmOverlay ul.has-icons li a.fatd-sprite-sh:hover:before {
    background-position: -210px -195px
}
.fpmOverlay ul.has-icons li a.fatd-sprite-sy:before {
    background-position: -270px -165px
}
.fpmOverlay ul.has-icons li a.fatd-sprite-sy:hover:before {
    background-position: -270px -195px
}
.fpmOverlay ul.has-icons li a.fatd-sprite-ig:before {
    background-position: -270px -225px
}
.fpmOverlay ul.has-icons li a.fatd-sprite-ig:hover:before {
    background-position: -270px -255px
}
.fpmOverlay ul.has-icons li a.fatd-sprite-none:before {
    background: none !important
}
.fpmOverlay .medical-experts-btns .btn {
    border-bottom-left-radius: 0;
    background-color: #67c0d3;
    color: #FFF;
    font-size: 15px;
    font-weight: 400;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 4px 8px
}

@media screen and (max-width: 991px) {
    .fpmOverlay {
        top: 0!important;
    }
    .fpmOverlay .user-actions-menu {
        text-align: center;
        margin-top: 20px;
        margin-bottom: 20px;
        display: block!important;
    }
    .fpmOverlay .user-actions-menu .anonymous .dropdown .dropdown-menu {
        min-width: 150px;
        background: #f8f8f8;
        top: 35px;
        right: 0;
        left: auto;
    }
    .fpmOverlay .user-actions-menu .anonymous .dropdown .dropdown-menu li {
        padding: 4px 6px;
        width: 100%;
    }
    .fpmOverlay .user-actions-menu .anonymous .dropdown .dropdown-menu li .btn-doctor,
    .fpmOverlay .user-actions-menu .anonymous .dropdown .dropdown-menu li .btn-patient {
        width: 100%;
        color: #07afe0;
        background: 0;
        border: 1px solid #07afe0;
    }
    .fpmOverlay .user-actions-menu .anonymous .dropdown .dropdown-menu li .btn-doctor {
        color: #8868c9;
        background: 0;
        border: 1px solid #8868c9;
    }
    .fpmOverlay .navbar-right {
        display: none;
    }
}


@media (max-width: 767px) {
    .columns-50 li {
        float: none;
        width: 100%;
    }
    .fpm-logos {
        width: 140px;
    }
    .fpmOverlay .fpm-overlay-header .nav-fpm-search-form {
        margin: 15px 0;
    }
    .fpmOverlay .fpm-overlay-header .nav-fpm-search-form .form-control {
        width: 100%;
    }
    .fpmOverlay .fpm-overlay-header .nav-fpm-search-form .btn-default {
        margin-left: 0;
        top: 0;
        left: 0;
    }
}