:root {
    --color-1: #212121;
    --color-2: #5C7BC8;
    --color-3: #4A65A7;
    --bg-color-1: #f7f7f7;
    --gray-text: #757575;
}
@media screen and (min-width: 576px) and (max-width: 1200px) {
    .container {
        max-width: 100%;
    }
}
#bx-panel {
    z-index: 99999!important;
}

body {
    font-family: 'Montserrat';
    color: var(--color-1);
    background-color: var(--bg-color-1);
}
a {
    color: #212121;
    text-decoration: none;
}
h1 {
    font-size: 32px;
    line-height: 120%;
    font-weight: 700;
}
h2 {
    font-size: 28px;
    line-height: 120%;
    font-weight: 700;
}
h3 {
    font-size: 20px;
    line-height: 120%;
    font-weight: 600;
}
.lead-text {
    font-size: 24px;
    line-height: 130%;
}
.large-text {
    font-size: 20px;
    font-weight: 500;
}
.main-text {
    font-size: 16px;
    line-height: 130%;
}
.subscription-text {
    font-size: 14px;
    line-height: 110%;
}
.gray-text {
    color: var(--gray-text);
}
ul.hl-marker {
    padding-left: 1.5rem;
}
ul.hl-marker li::marker {
    color: var(--color-3);
    font-size: 20px;
}
@media screen and (max-width: 992px) {
    h1 {
        font-size: 28px;
        line-height: 120%;
        font-weight: 700;
    }
    h2 {
        font-size: 24px;
        line-height: 120%;
        font-weight: 700;
    }
    h3 {
        font-size: 18px;
        line-height: 120%;
        font-weight: 600;
    }
    .lead-text {
        font-size: 22px;
        line-height: 130%;
    }
    .large-text {
        font-size: 18px;
        font-weight: 500;
    }
    .subscription-text {
        font-size: 13px;
    }
}
@media screen and (max-width: 576px) {
    h1 {
        font-size: 24px;
        line-height: 120%;
        font-weight: 700;
    }
    h2 {
        font-size: 20px;
        line-height: 120%;
        font-weight: 700;
    }
    h3 {
        font-size: 16px;
        line-height: 120%;
        font-weight: 600;
    }
    .lead-text {
        font-size: 18px;
        line-height: 130%;
    }
    .large-text {
        font-size: 16px;
        font-weight: 500;
        line-height: 120%;
    }
    .main-text {
        font-size: 14px;
        line-height: 130%;
    }
    .subscription-text {
        font-size: 12px;
    }
}


header {
    position: fixed;
    width: 100%;
    top: 0;
    background-color: var(--bg-color-1);
    box-shadow: 0 4px 5px 0px #0000001a;
    z-index: 9999;
}
header .container {
    background-color: var(--bg-color-1);
}
.header-nav.navbar {
    padding: 20px 0;
}
.header-nav .navbar-collapse {
    justify-content: flex-end;
}
.header-nav .navbar-nav {
    gap: 16px;
}
.header-nav .navbar-nav .nav-item .nav-link {
    transition: all .2s;
    padding: 10px;
    color: var(--color-1);
}
.header-nav .navbar-nav .nav-item:hover .nav-link {
    transition: all .2s;
    color: var(--color-2);
}
.navbar-expand-lg .navbar-nav .dropdown-menu {
    top: calc(100% + 20px);
    margin-top: 0;
    padding: 0;
    border-radius: 0;
    border-top: 2px solid var(--color-3);
}
.navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-item {
    padding: 10px;
}
.navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-item:hover {
    background-color: var(--color-2);
}
.search-header {
    height: 100%;
    display: flex;
}
.search-form {
    background: #E9E9E9;
    border-radius: 10px;
}
.search-form input[type='text'] {
    background: unset;
    border: unset;
    padding: 10px;
}
.search-form input[type='text']:focus-visible {
    outline-width: 0;
}
.search-form input[type='submit'] {
    width: 24px;
    margin-right: 10px;
    background: unset;
    border: unset;
    background-image: url('/upload/img/search-icon.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px;
}

.navbar-toggler {
    border: unset;
}
.navbar-toggler:focus {
    box-shadow: unset;
}
.navbar-toggler .navbar-toggler-icon      {
    background-image: url('/upload/img/burg-close-btn.svg');
    background-position: center;
    background-size: 24px;
    transition: all .2s ease;
}
.navbar-toggler.collapsed .navbar-toggler-icon {
    background-image: url('/upload/img/burg-btn.svg');
    background-size: 30px;
    transition: all .2s ease;
}
.dropdown-toggle::after {
    border: none;
    background-image: url('/upload/img/nav-arrow-b.svg');
    background-repeat: no-repeat;
    background-size: contain;
    width: 12px;
    height: 7px;
    top: 2px;
    position: relative;
    margin-left: 0;
    transition: all .2s ease;
}
.nav-item.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
    transition: all .2s ease;
    background-image: url('/upload/img/nav-arrow-t.svg');
}

.logo {
    max-height: 33px;
}

@media screen and (min-width: 993px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
    }
    ul.navbar-nav>li {
        padding: 20px 0;
    }
    .header-nav.navbar {
        padding: 0;
    }
    .navbar-expand-lg .navbar-nav .dropdown-menu {
        top: 100%;
    }
}

@media screen and (max-width: 992px) {
    header {
        height: 84px;
    }
    .navbar-nav {
        margin-top: 20px;
    }
    .navbar-nav>li {
        order: 1;
    }
    .navbar-nav>li.nav-item {
        order: 2;
    }
    .search-form {
        width: 100%;
    }
    .search-form input[type='text'] {
        width: calc(100% - 40px);
    }
    .nav-item.dropdown .dropdown-menu {
        display: block;
    }
    .dropdown-toggle::after {
        display: none;
    }
    .navbar-expand-lg .navbar-nav .dropdown-menu {
        border-top: none;
        background-color: unset;
        border: none;
        list-style: disc;
        padding-left: 30px;
    }
    .navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-item {
        padding-left: 0;
    }
}
@media screen and (max-width: 576px) {}

footer {
    padding: 63px 0 12px;
    background-image: url('/upload/img/novobenon/bg-footer.jpg');
}
.footer-top {
    color: #fff;
}

.footer-title {
    margin-bottom: 1rem;
}
.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-menu a {
    font-size: 16px;
    line-height: 130%;
    color: #fff;
}

footer .pph-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-bottom {
    display: flex;
    justify-content: flex-start;
    gap: 35%;
    margin-top: 130px;
    color: #B2B1B1;
}
.footer-disc {
    padding: 20px;
    color: #ccc;
    font-weight: bold;
    background-color: #2f3e5b;
}
@media screen and (max-width: 992px) {
    footer {
        padding: 24px 0 12px;
    }
    .footer-logo {
        margin-bottom: 40px;
    }
    .pph-info {
        margin-top: 24px;
    }
    .footer-bottom {
        margin-top: 60px;
        justify-content: space-between;
     }
}
@media screen and (max-width: 576px) {
    .footer-menu a {
        font-size: 14px;
    }

     .footer-bottom {
        margin-top: 30px;
        flex-direction: column;
        gap: 12px;
     }
}

.main {
    padding-top: 84px;
}
.inner-page {
    padding: 164px 0 120px;
}
.inner-page h1 {
    margin-bottom: 24px;
}
@media screen and (max-width: 992px) {
    .inner-page {
        padding: 132px 0 72px;
    }
    .inner-page h1 {
        margin-bottom: 8px;
    }   
}
@media screen and (max-width: 576px) {
    .inner-page {
        padding: 132px 0 56px;
    }   
}

section {
    padding-top: 80px;
}
.section-title {}
.section-flex-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.section-flex-title {}
.section-flex-link {
    font-size: 16px;
    font-weight: 600;
    color: #212121;
    text-decoration: none;
    border-bottom: 1px solid #21212159;
}
.section-flex-link:hover {
    color: var(--color-2);
    border-color:  var(--color-2);
}
.section-flex-link:active {
    color: var(--color-3);
    border-color:  var(--color-3);
}
@media screen and (max-width: 992px) {
    section {
        padding-top: 48px;
    }
}
@media screen and (max-width: 576px) {
    section {
        padding-top: 32px;
    }
}

.index-banner {
    color: #fff;
    padding: 0;
    height: 400px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.index-banner .container {
    height: 100%;
}
.index-banner-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 30px 0;
}
.index-banner-title {
    max-width: 630px;
    margin-bottom: 12px;
}
.index-banner-desc {
    max-width: 530px;
}
.index-banner-extra {
    display: inline-block;
    padding: 15px 12px;
    margin-top: 12px;
    background-color: #332F5C;
    outline: 2px solid #ccc;
    border-radius: 2px 2px 33px 2px;
}
.index-banner-extra h3 {
    margin-bottom: 0;
}
.index-banner-inner-bottom {}
.index-banner-button {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    height: 52px;
    max-width: 306px;
    background-color: var(--color-3);
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}
.index-banner-img {
    position: absolute;
    top: 12px;
    right: 0;
}
@media screen and (max-width: 992px) {
    .index-banner-inner {
        padding: 24px 12px;
    }
    .index-banner-title {
        max-width: 410px;
    }
    .index-banner-desc {
        max-width: 410px;
    }
    .index-banner-button {
        position: relative;
        z-index: 10;
        max-width: 100%;
    }
    .index-banner-img {
        max-width: 215px;
        top: 17px;
        right: -3px;
        z-index: 1;
    }
}
@media screen and (max-width: 576px) {
    .index-banner-inner {
        padding: 12px 0;
    }
    .index-banner-desc {
        font-size: 14px;
    }
    .index-banner-img {
        max-width: 135px;
        top: unset;
        right: 0;
        left: 0;
        margin: 0 auto;
        bottom: 16px;
    }
}

.adv {}
.adv-top-header {
    text-align: center;
    margin-bottom: 12px;
}
.adv-top-text {
    text-align: center;
    max-width: 630px;
    margin: 0 auto;
}
.adv-list {
    margin-top: 32px;
    row-gap: 30px;
}
.adv-item-inner {
    display: grid;
    gap: 8px;
    grid-template-columns: 100px auto;
}
.adv-item-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.adv-item-title {}
@media screen and (max-width: 992px) {
    .adv-item-inner {
        grid-template-columns: 70px auto;
    }
    .adv-item-inner img {
        max-width: 100%;
    }
}

.text-home {}
.text-home h2 {
    text-align: center;
}
.text-home .text-home-top {
    text-align: center;
    max-width: 856px;
    margin: 0 auto;
    margin-bottom: 12px;
}
.text-home .text-home-list {
    margin-top: 90px;
    margin-bottom: 90px;
}
.text-home .text-home-list-inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.text-home .text-home-list .text-home-list-item {
    padding-left: 16px;
    background-image: url('/upload/img/novobenon/orange-dot.svg');
    background-position: left 7px;
    background-repeat: no-repeat;
}
.text-home .text-home-list .text-home-list-img {
    text-align: center;
}
.text-home .text-home-bottom {
    text-align: center;
    max-width: 856px;
    margin: 0 auto;
}
@media screen and (max-width: 992px) {
    .text-home .text-home-list {
        margin-top: 50px;
        margin-bottom: 25px;
    }
    .text-home-list .text-home-list-inner {
        order: 2;
    }
    .text-home-list-img {
        order: 1;
        padding-bottom: 45px;
    }
    
}

.video {}
.video-inner {
    margin: 0 auto;
    max-width: 1070px;
}



.buy {
    padding-bottom: 120px;
}
.buy-home-list {
    margin-top: 25px;
}
.buy-home-item-inner {
    text-decoration: none;
}
.buy-home-img {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 134px;
    padding: 20px;
    border-radius: 10px;
}
.buy-home-img img {
    max-width: 100%;
}
.buy-home-title {
    margin-top: 8px;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
}
.buy-home-item-inner:hover .buy-home-title {
    color: var(--color-2);
}
.buy-home-item-inner:active .buy-home-title {
    color: var(--color-3);
}
@media screen and (max-width: 576px) {
    .buy {
        padding-bottom: 60px;
    }
    .buy-home-list.row::-webkit-scrollbar {
        display: none;
    }
    .buy-home-list.row {
        flex-wrap: nowrap;
        overflow: scroll;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }    
    .buy-home-list.row .col-12 {
        width: 90%;
        padding: 0 6px;
    }
}

.video-inner {
    /*padding-bottom: 46.5%;*/
    /*position: relative;*/
}
.video-js {
    width: 100%;
    height: 100%;
    /*position: absolute;*/
    padding-bottom: 56.5%;
}
.video-js .vjs-poster img {
    object-fit: cover;
}
.video-js .vjs-big-play-button {
    border-radius: 50%;
    height: 100px;
    width: 100px;
}
.video-js .vjs-big-play-button .vjs-icon-placeholder:before {
    content: '';
    background-image: url('/upload/img/videojs-play-icon.svg');
    background-position: 60% center;
    background-repeat: no-repeat;
}

/* Страница Где купить */
.buy-page-list {
    margin-top: 25px;
    row-gap: 24px;
}
.buy-page-item-inner {
    text-decoration: none;
}
.buy-page-img {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 134px;
    padding: 20px;
    border-radius: 10px;
}
.buy-page-img img {
    max-width: 100%;
}
.buy-page-title {
    margin-top: 8px;
    text-align: center;
}
.buy-page-item-inner:hover .buy-page-title {
    color: var(--color-2);
}
.buy-page-item-inner:active .buy-page-title {
    color: var(--color-3);
}
@media screen and (max-width: 992px) {    
    .buy-page-list {
        row-gap: 24px;
    }
}
@media screen and (max-width: 576px) {    
    .buy-page-list {
        row-gap: 16px;
    }
}

/* Страница Контакты */
.contact-page {}
.contacts-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 415px;
}
.contact-list-item {
    display: flex;
    flex-direction: row;
    gap: 12px;
}
.contacts-form {
    background-color: #fff;
    padding: 24px;
    border-radius: 20px;
    margin-bottom: 120px;
}
.contacts-form input {
    border: none;
    border-bottom: 1px solid #212121;
    width: 100%;
}
.contacts-form textarea {
    border: none;
    border-bottom: 1px solid #212121;
    width: 100%;
    height: 100px;
}
.contacts-form-agrv {
    display: grid;
    grid-template-columns: 14px auto;
    gap: 8px;
    align-items: start;
}
.contacts-form-btn {
    width: 100%;
    padding: 16px;
    margin-top: 20px;
    color: #fff;
    background-color: var(--color-3);
    border: none;
    border-radius: 10px;
}
@media screen and (max-width: 992px) {
    .contact-page {
        gap: 24px;
    }
    .contacts-form {
        margin-bottom: 70px;
    }
}
@media screen and (max-width: 567px) {
    .contacts-form .contacts-form-body .row {
        gap: 16px;
    }
}

/* Страница Клинические */
.clinic-page {}
.clinic-page .sp_top-info {
    margin-top: 12px;
    margin-bottom: 40px;
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
}
.clinic-page .sp_top-info .bottom-info {
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
}
.clinic-page .sp_top-info .bottom-info .subscription-text {
    color: var(--gray-text);
}
.clinic-page .sp_effective {
    margin: 12px 0 40px;
}
.clinic-page .sp_effective-item {
    margin-bottom: 12px;
}
.clinic-page .sp_effective .sp_effective-title {
    margin-bottom: 4px;
    font-weight: bold;
    padding-left: 16px;
    background-image: url('/upload/img/novobenon/orange-dot.svg');
    background-position: left 7px;
    background-repeat: no-repeat;
}
.clinic-page .sp_effective .sp_effective-text {
    max-width: 856px;
}
.clinic-page .sp_links {
    margin-top: 20px;
}
.clinic-page .sp_links-item-img {
    margin-bottom: 12px;
    padding-bottom: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

/* Страница Врачам общая*/

.docinfo-list {
    row-gap: 23px;
    margin-top: 24px;
    margin-bottom: 32px;
    /*display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 24px;*/
}
.docinfo-list-item {
    padding: 16px;
    display: block;
    border-radius: 10px;
    background: linear-gradient(90deg, rgb(34 0 255 / 20%), rgb(254 130 36 / 20%));
}
.docinfo-list-item-img {
    text-align: right;
}
.vracham-pdf {
    display: flex;
    gap: 11px;
}
@media screen and (max-width: 992px) {
    .docinfo-list {
        row-gap: 12px;
        margin-bottom: 24px;
    }
}
@media screen and (max-width: 567px) {
    .docinfo-list {
        row-gap: 12px;
        margin-top: 20px;
    }
    .docinfo-list-item-img img {
        max-width: 92px;
    }
}

/* Страница О препарате */
.about {}
.about-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    background-color: #fff;
    border-radius: 10px;
    max-width: 1076px;
}
.about-top_left {}
.about-top_left img {
    max-width: 100%;
}
.about-top_left-text {
    max-width: 404px;
    padding: 24px 12px;
    color: var(--gray-text);
}
.about-top_right {
    padding: 20px 0;
}
.about-top_right-hl {
    display: inline-block;
    padding: 8px 15px;
    margin: 20px 0;
    border-radius: 10px;
    background-color: var(--color-3);
    color: #fff;
}
.about-top_right-table {
    max-width: 415px;
}
.about-top_right-table_row {
    display: grid;
    grid-template-columns: auto 196px;
    padding: 12px 0;
    border-bottom: 1px solid #21212166;
}
.about-top_right-table_row:first-child {
    border-top: 1px solid #21212166;
}
.about-top_right-table_row .about-top_right-table_col:nth-child(1) {
    color: var(--gray-text);
}
.about-top_right-table_row .about-top_right-table_col:nth-child(2) {}

.about-bottom {
    max-width: 768px;
    margin-top: 32px;
}
.about-pdf {
    display: flex;
    gap: 11px;
    margin: 20px 0;
}

@media screen and (max-width: 992px) {
    .about-top {
        grid-template-columns: auto 450px;
    }
    .about-top_left {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .about-top_left-img {
        height: 400px;
        display: flex;
        align-items: center;
    }
    .about-top_right {
        padding-right: 12px;
    }
}
@media screen and (max-width: 567px) {
    .about-top {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .about-top_right-hl {
            margin: 5px 0 15px;
    }
    .about-top_right {
        padding: 20px 0 5px;
    }
    .about-top_right-table_row {
        grid-template-columns: auto 110px;
    }
}

/* Страница Статьи для врачей */
.article-page {
    max-width: 1076px;
}
.article-item {
    margin-bottom: 40px;
}
.article-item_video .article-item-name {
    margin-bottom: 20px;
}
.article-item_text .article-item_inner {
    background-color: #fff;
    border-radius: 10px;
    padding: 12px;
}
.article-item_text .article-item-name {
    margin-bottom: 12px;
}
.article_full-text {
    margin-top: 12px;
    margin-bottom: 16px;
}
.article-item_text-bottom {
    display: flex;
    justify-content: space-between;
}

/* Warning Попап */
.mfp-bg {
    background: #5f5f5f85;
    opacity: unset;
    backdrop-filter: blur(10px);
}

#warning-popup {
    background-color: #fff;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 20px;
    padding: 40px 30px;
}
#warning-popup .mfp-close {
    display: none;
}
.warning-popup-text {
    text-align: center;
}
.warning-popup-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 30px;
}
.warning-popup-button-yes {
    padding: 16px;
    text-align: center;
    color: var(--color-3);
    border-radius: 10px;
    border: 2px solid var(--color-3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.warning-popup-button-no {
    padding: 16px;
    text-align: center;
    color: #fff;
    background-color: var(--color-3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media screen and (max-width: 567px) {
    #warning-popup {
        max-width: 100%;
    }
}