@font-face {
    font-family: 'Noto Sans';
    src: url('/fonts/NotoSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Noto Sans';
    src: url('/fonts/NotoSans-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: 'Noto Sans';
    src: url('/fonts/NotoSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Noto Sans';
    src: url('/fonts/NotoSans-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}
*{
    box-sizing: border-box;
}
a {
    text-decoration: none;
    color: #99A77D;
    transition: .4s;
}
p {
    margin-bottom: 15px;
}
body{
    margin: 0;
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: #292B26;
    background: #fff;
    height: 100%;
}
button, input, select {outline: none}
html {
    height: 100%;
}
main {
    display: block;
    padding: 20px 0;
    background: #fff;
}
.flex{
    display: flex;
    align-items: center;
}
.inhe {
    align-items: inherit;
}
.start {
    align-items: flex-start;
}
.wrap {flex-wrap: wrap}
.jus {
    justify-content: space-between;
}
.column {
    flex-direction: column;
}
.center {
    justify-content: center;
}
.hid {
    display: none;
}
.notover {
    overflow: hidden;
    padding-right: 17px;
}
.relative {
    position: relative;
}
.text {
    position: absolute;
    top: 48px;
    left: 84px;
    font-size: 28px;
    width: 84%;
    display: block;
    line-height: normal;
}
.text2 {
    font-size: 20px;
    max-width: 80%;
    line-height: normal;
    margin-top: 12px;
}
.owl-carousel .owl-item img {
    height: 406px;
    object-fit: cover;
}
.container {
    width: 1430px;
    padding: 0 15px;
    margin: auto;
    position: relative;
}
.btn {
    background: #99A77D;
    border-radius: 4px;
    border: 0;
    display: inline-block;
    font-weight: 500;
    font-size: 18px;
    line-height: 19px;
    color: #FFFFFF;
    padding: 10px;
    cursor: pointer;
    transition: .4s;
}
input.btn, .ser {
    padding: 10px 15px
}
.ser {
    background: gray;
}
.btn:hover {
    background: #8e9978;
}
.alert {
    position: fixed;
    right: 15px;
    top: 15px;
    border-radius: 6px;
    background: #fff;
    padding: 15px 20px;
    font-size: 18px;
    box-shadow: 0 0 8px 0 #0000000f;
    z-index: 9;
}
.alert-danger {
    border-left: 8px solid red;
}
.alert-success {
    border-left: 8px solid green;
}

.alert p {
    margin: 0;
    padding: 5px;
}


.h1 {
    font-size: 44px;
    line-height: 58px;
    margin-top: 24px;
    font-weight: 700;
}
.modal {
    display: none;
    position: fixed;
    background: #0000007a;
    z-index: 102;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
    overflow-y: auto;
    padding: 60px 0;
}
.modal-body .fake_input {
    width: 100%;
}
.modal-body .agree {
    font-size: 16px;
    line-height: 24px;
    margin-top: 24px;
}
.modal-body .h2 {
    margin-bottom: 23px;
    font-weight: normal;
    font-size: 30px;
    line-height: 30px;
    color: #2B2A28;
}
.modal-body .agree a {
    color: #d48c34;
    font-weight: 600;
}
.modal-body .btn-default {
    margin-top: 20px;
    padding-left: 15px;
    padding-right: 15px;
}
.modal:before {
    display: inline-block;
    vertical-align: middle;
    content: " ";
    height: 100%;
}
.modal-content {
    background: #fff;
    padding: 15px 20px;
    position: relative;
    display: inline-block;
    text-align: left;
    vertical-align: middle;
}
.modal-body {
    width: 564px;
    padding-top: 20px;
    border-radius: 0px 40px 0px 0px;
    overflow: hidden;
}
.close_modal {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 9999;
}
.modal-caption {
    padding: 35px 72px;
}
header {
    padding: 15px 0;
    background: #EEF5F8;
}
.panel_profile {
    position: relative;
}
.panel_profile .user_name {
    font-weight: 600;
    padding: 0 10px;
}

.drops {
    display: none;
    position: absolute;
    top: 100%;
    background: #fff;
    right: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    min-width: 220px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.panel_profile:hover .drops {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    animation: dropFadeIn 0.3s ease-out;
}

.drops .li {
    margin: 0;
}
.drops .li a {
    display: block;
    padding: 12px 15px;
    margin: 0;
    transition: all 0.3s ease;
}

.drops .li a:hover {
    background: #99A77D;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.15);
}
.menu {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 250px;
}
#forgot [type="submit"] {
    width: 100%;
}
.menu svg {
    margin-right: 10px;
}
.menu a {
    padding: 10px 15px;
    border-radius: 4px;
}
.menu li + li {
    margin-top: 6px;
}
.menu a.active, .menu a:hover {
    background: #99A77D;
    color: #fff;
}
.content {
    width: 81.7%;
    padding-left: 30px;
}
.content h1 {
    margin-top: 0;
    line-height: normal;
    margin-bottom: 20px;
}
.radio input {
    display: none;
}
.radio span {
    padding: 6px 14px;
    display: inline-block;
    background: #e6dfdf;
    border-radius: 4px;
    cursor: pointer;
}
.radio + label {
    margin-left: 6px;
}
.radio input:checked + span, .radio span:hover {
    background: #99A77D;
    color: #fff;
}
.autof:not(.af) .input {
    width: 49%;
    margin-top: 0;
}
.af .relative {
    width: 49%;
    margin-top: 0;
}
.autof svg {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 25px;
    height: 25px;
    border-radius: 6px;
}
.lines {
    padding: 0px 0px 24px;
    border-bottom: 1px solid rgb(239, 237, 247);
    width: 48%;
    margin-bottom: 15px;
}
.lines > div {
    margin-top: 30px;
}
.checkbox input {
    display: none;
}
.check {
    position: relative;
    display: inline-block;
    width: 25px;
    height: 25px;
    margin-right: 10px;
    border: 1px solid #99a77d;
    border-radius: 4px;
}
.checkbox input:checked + .check:after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: #99a77d;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.checkbox + .checkbox {
    margin-left: 15px;
}
.last_lk:hover path, .last_lk.active path {
    fill: #ffffff
}
.lleft {
    width: 270px;
}
.cl {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 4px;
    border: 1px solid transparent;
}
.lleft img {
    max-width: 130px;
}
.cl2 + .cl2 {
    margin-top: 15px;
}
.content h2 {
    margin:0;
    padding: 10px 0 20px;
}
.rright {
    width: calc(100% - 270px);
}
.clinic h3 {
    margin-top: 0;
    margin-bottom: 20px;
}
address {
    margin-bottom: 15px;
}
.clinic {
    display: none;
}
.clinic.active {
    display: block;
}
.special {
    position: absolute;
    z-index: 1;
    bottom: 15px;
    left: 15px;
    padding: 6px 18px;
    background: #ffffffba;
    border-radius: 4px;
    color: #292B26;
    backdrop-filter: blur(6px);
}
a.cl.active {
    border: 1px solid #9aa87d;
    display: inline-block;
    padding: 8px 15px;
    border-radius: 4px;
}
.owl-nav {
    position: absolute;
    top: 48%;
    left: 0;
    right: 0;
    height: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.owl-nav span {
    font-size: 34px;
    color: #9aa87d;
    display: inline-block;
}
.owl-prev {
    background: #fff !important;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    left: 15px;
    position: relative;
}
.owl-next {
    background: #fff !important;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    right: 15px;
    position: relative;
}
.event {
    position: relative;
    margin-bottom: 15px;
}
.events h2 {
    border-top: 1px solid #9aa87d;
    padding-top: 30px;
}
span.eg {
    background: red;
    color: #fff;
    border-radius: 4px;
    padding: 3px 6px;
    display: inline-block;
    position: absolute;
    top: 0;
    right: 15px;
}
.me > span {
    line-height: normal;
    max-width: 99%;
}
.news img {
    max-width: 100%;
    display: block;
    margin: auto;
}
.pad {
    padding-right: 15px;
    padding-left: 15px;
}
.item {
    border-radius: 4px;
    overflow: hidden;
}
.zap {
    position: absolute;
    right: 15px;
    padding-right: 15px;
    padding-left: 15px;
}
.se {
    width: 40%;
    text-align: center;
}
.se img {
    max-width: 100%;
    display: block;
    margin: auto;
}
.se span {
    margin-top: 15px;
    display: block;
}
.se + .se {
    margin-left: 15px;
}
body > .apm_background_mask, .close-button, div.newrecord-select-page1 {
    display: none!important;
}
div.apm_background_mask {
    position: relative!important;
}
div.apm_main {
    width: 100%!important;
    margin: 0!important;
    padding: 0!important;
    border-radius: 0!important;
    border: 0!important;
    background: transparent!important;
    box-shadow: none!important;
}
img.vrach_foto {
    margin: 0 auto!important;
}
.price-row__title_border th, .price-row__title_border td {
    padding: 15px 24px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.18);
    text-align: left;
}
.news {
    display: flex;
    flex-direction: column;
    width: 33%;
    padding: 0 15px;
}
.news a {
    color: initial;
    box-shadow: 0 0 8px 0 #0000000d;
    border-radius: 10px;
    display: block;
    padding: 15px;
    position: relative;
}
.news span {
    display: inline-block;
    margin-top: 15px;
}
.row {
    margin: 0 -15px;
}
.input {
    width: 62%;
    padding: 6px 10px;
    border: 1px solid #9aa87d;
    margin-bottom: 15px;
    border-radius: 6px;
}
.tabpane {
    display: none;
}
.tabpane.active {
    display: block;
}
a.tab {
    display: inline-block;
    padding: 4px 10px;
    background: #eee;
    border-radius: 6px;
    margin-right: 8px;
}
a.tab.active {
    background: #9aa87d;
    color: #fff;
}
.news2 {
    margin-top: 15px;
}
.me {
    margin-bottom: 12px;
    cursor: pointer;
}
.mes {
    display: none;
    padding-bottom: 17px;
    border-bottom: 1px solid #eee;
}
.tab-content {
    padding-top: 15px;
}
.mes .btn {
    padding-left: 15px;
    padding-right: 15px;
}
.cla {
    display: block;
}
.cla + .cla {
    margin-top: 6px;
}
.mzp {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 18px;
}
.overflow-y {
    overflow-y: auto;
    scrollbar-color: #54B0AC #54B0AC;
    scrollbar-width: thin;
}
.modal {
    display: none;
    position: fixed;
    background: #0000007a;
    z-index: 102;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
    overflow-y: auto;
    padding: 60px 0;
}
.overflow-y {
    overflow-x: hidden;
}
.modal:before {
    display: inline-block;
    vertical-align: middle;
    content: " ";
    height: 100%;
}
.modal-content {
    background: #fff;
    padding: 15px;
    position: relative;
    display: inline-block;
    text-align: left;
    vertical-align: middle;
    width: 800px;
    max-height: 415px
}
#modal_specials img {
    max-width: 100%;
}
.close {
    position: absolute;
    right: 30px;
    top: 30px;
    z-index: 101;
}
@media (max-width: 767px) {
    .container {
        width: 100%;
    }
    .owl-carousel .owl-item img {
        height: 172px;
    }
    .text {
        top: 16px;
        left: 62px;
        font-size: 20px;
        width: 76%;
    }
    .text2 {
        font-size: 14px;
        max-width: 90%;
        margin-top: 6px;
    }
    .h1 {
        font-size: 22px;
        line-height: 28px;
    }
    #forgot [type="submit"] {
        width: 100%;
        margin-top: 15px;
    }
    .modal-content {
        width: 90%;
    }
    .event {
        margin-top: 20px;
    }
    #login [type="submit"] {
        margin-top: 15px;
    }
    .cl2 {
        margin: 12px 0;
    }
    .btn.save {
        margin-top: 15px!important;
        margin-bottom: 0!important;
    }
    .se {
        width: 100%;
        margin-bottom: 20px;
        margin-left: 0;
    }
    .se + .se {
        margin-left: 0;
    }
    .autof svg {
        right: 8px;
        top: 27px;
        width: 20px;
        height: 20px;
    }
    .input {
        margin-top: 15px!important;
    }
    .sf .input {
        width: 100% !important
    }
    .autof {
        margin-bottom: 20px;
    }
    .content h2 {
        margin-bottom: 4px;
        line-height: normal;
        font-size: 16px;
    }
    .menu {
        display: none;
    }
    .mos {
        display: block;
        text-align: center;
        width: 100%;
        border: 1px solid #9aa87d;
        border-radius: 4px;
        padding: 10px 0;
        margin-bottom: 12px;
    }
    .af .relative {
        width: 100%;
    }
    [name="old_password"] {
        order: 1
    }
    [name="password"] {
        order: 2
    }
    [name="password_confirmation"] {
        order: 3
    }
    .lines {
        width: 100%;
    }
    .content h1 {
        margin-bottom: 24px;
        font-size: 22px;
    }
    .sf .btn.save, .af .btn.save {
        order: 4;
        width: 100% !important;
    }
    .news span {
        font-size: 12px;
    }
    .news {
        width: 100%;
    }
    .input {
        margin-bottom: 0;
    }
    div.newrecord-select-page4 {
        width: 100% !important;
    }
    div.apm_calendar_time {
        margin: 0 !important;
        margin-top: 10px !important;
    }
    .menu {
        width: 100%;
        margin-bottom: 15px;
    }
    .content {
        order: 1;
        width: 100%;
        padding: 0;
    }
    .lleft, .rright {
        width: 100%;
    }
    .zap {
        position: relative;
        right: 0;
        margin-bottom: 15px;
    }
    a.cl {
        border: 1px solid #fff;
        display: inline-block;
        padding: 8px 15px;
        border-radius: 4px;
    }
    .cl2 + .cl2 {
        margin-top: 0;
    }
    .cl {
        display: flex!important;
        align-items: center;
        justify-content: space-between;
    }
    .cl img {
        max-width: 74px;
        margin-right: 10px;
    }
    .clinic h3, .clin {
        display: none;
    }
    .panel_profile:hover .drops {
        display: none;
        right: auto;
        z-index: 9;
    }
    .zs h2 {
        margin-bottom: 20px;
    }
    .lleft {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        margin-bottom: 15px;
    }
    [name="search"] {
        width: 100% !important;
        margin-bottom: 20px!important;
    }
}
@media (min-width: 1200px) and (max-width: 1376px) {
    .content {
        width: 77.4%;
        padding-left: 20px;
    }
    .title-h4 {
        font-size: 18px!important;
    }
}
@media (min-width: 1377px) and (max-width: 1600px) {
    .content {
        width: 80.6%;
        padding-left: 30px;
    }
}
@media (min-width: 1200px) {
    .cl span {
        display: none;
    }
}
@media (min-width: 768px) {
    .hid-s {
        display: none;
    }
    .autof {
        margin-top: 15px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        width: 750px;
    }
    .news span {
        font-size: 12px;
    }
    .news {
        width: 50%;
    }
    .menu {
        order: 2;
        width: 100%;
        margin-top: 15px;
    }
    .zap {
        position: relative;
        right: 0;
        margin-bottom: 15px;
    }
    .content {
        order: 1;
        width: 100%;
        padding: 0;
    }
    .lleft, .rright {
        width: 100%;
    }
    a.cl {
        border: 1px solid #fff;
        display: inline-block;
        padding: 8px 15px;
        border-radius: 4px;
    }
    .cl2 + .cl2 {
        margin-top: 0;
    }
    .cl img, .clinic h3 {
        display: none;
    }
    .lleft {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        margin-bottom: 15px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        width: 970px;
    }
    .news {
        width: 50%;
    }
    .lleft {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        margin-bottom: 15px;
    }
    .lleft, .rright {
        width: 100%;
    }
    .content {
        width: 73.1%;
    }
    a.cl {
        border: 1px solid #fff;
        display: inline-block;
        padding: 8px 15px;
        border-radius: 4px;
    }
    .cl2 + .cl2 {
        margin-top: 0;
    }
    .cl img, .clinic h3 {
        display: none;
    }
}

.profiles{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}
.profile_item {
    display: inline-block;
    padding: 10px 15px;
    border: 2px solid #9aa87d;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.profile_item.active {
    background-color: #9aa87d;
    color: #f5f7f0;
    border-color: #9aa87d;
}

.profile_item:hover {
    background-color: #f5f7f0;
    color: #9aa87d;
    border-color: #7b8763;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
