body,
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    min-width: 320px;
    min-height: 100%;
}

body {
    font-family: sans-serif;
    font-size: 17px;
    line-height: 24px;
    font-weight: 400;
    color: #000;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

h1 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    color: #906;
    margin-bottom: 15px;
}

h2 {
    font-size: 23px;
    line-height: 33px;
    font-weight: 500;
    color: #906;
    margin-bottom: 15px;
}

h3 {
    font-size: 23px;
    line-height: 30px;
    font-weight: bold;
    margin-bottom: 15px;
}

.button {
    display: block;
    border-radius: 24px;
    background: linear-gradient(45deg, #4d30be 0, #b805a4 100%);
    font-size: 14px;
    font-weight: bold;
    line-height: 14px;
    color: #fff;
    padding: 15px 20px 17px;
    text-align: center;
}


/* header */

.sticky-content.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.logo-w {
    font-family: sans-serif;
    font-size: 50px;
    color: #be007f;
    display: block;
    padding: 16px 10px 15px;
    margin-right: 30px;
}

.sticky-content.fixed .logo-w {
    color: #fff;
    background: #be007f;
}

.header {
    padding-top: 15px;
}

.header__bottom {
    background: #fff;
    position: relative;
    z-index: 999;
}

.header__bottom::before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 2px;
    background: #be007f;
}

header ul {
    list-style: none;
}

.header__top .login {
    color: #9e9e9e;
    display: inline-flex;
    align-items: center;
    margin-right: 20px;
}

.header__top .login a {
    margin-right: 10px;
}

.header__middle {
    text-align: center;
    padding: 10px 0 25px;
}

.header__bottom {
    display: flex;
    align-items: center;
}

.header__bottom .menu {
    margin-right: 40px;
    margin-top: 8px;
}

.header-navigation-top {
    display: flex;
}

.header-navigation-top a {
    font-weight: bold;
    font-size: 14px;
    letter-spacing: .5px;
    margin: 0 10px;
    text-transform: uppercase;
}

.header-navigation-top li {
    padding-top: 13px;
    padding-bottom: 15px;
    z-index: 1;
}

.header-navigation-top .pink {
    border-top: 2px solid #e45fc5;
}

.header-navigation-top .purple {
    border-top: 2px solid #b983f8;
}

.header-navigation-top .blue {
    border-top: 2px solid #6877f5;
}

.header-navigation-top .yellow {
    border-top: 2px solid #f7df6a;
}

.header-navigation-top .green {
    border-top: 2px solid #8adc9b;
}

.header-navigation-top .brown {
    border-top: 2px solid #edac8a;
}

.header-navigation-top .blue-green {
    border-top: 2px solid #62b8ba;
}

.header-navigation-top .forum {
    color: #fff;
    background-color: #be007f;
    padding: 4px 8px 5px;
    border-radius: 4px;
}

.header-navigation-bottom {
    display: flex;
    justify-content: center;
}

.header-navigation-bottom a {
    margin: 0 10px;
}

.header__bottom2 {
    background-color: #f4f4f4;
    padding: 10px 20px;
    z-index: 999;
}

.header-navigation-bottom a {
    font-size: 14px;
    font-weight: 500;
}


/* main */

.about-article {
    display: flex;
    align-items: center;
    color: #9e9e9e;
    margin-bottom: 15px;
}

.about-article div {
    margin-right: 20px;
}

.about-article__first {
    display: flex;
}

.about-article__last {
    margin-left: auto;
}

figure {
    text-align: center;
    margin-bottom: 20px;
}

figure img {
    width: 100%;
    max-width: 700px;
}

figcaption {
    font-family: sans-serif;
    color: #9e9e9e;
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    text-align: center;
}

.main {
    padding: 20px 0;
}

.main p {
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 16px;
}

.main .link {
    color: #3b7cf9;
}


/* doctor-block */

.doctor-block {
    border: 2px solid red;
    padding: 20px 20px 10px;
}

.doctor-block__img {
    text-align: center;
}

.doctor-block img {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 10px;
}


/* border-block */

.border-block {
    border: 2px solid red;
    padding: 20px;
}


/* comments */

.comments h3 {
    font-size: 24px;
    line-height: 32px;
}

.comments__guest {
    display: grid;
    grid-template-columns: 64px auto;
    grid-column-gap: 20px;
    margin-top: 20px;
}

.comments__guest-right .border {
    border: 1px solid #9e9e9e;
    width: 100%;
    height: 150px;
    display: grid;
    grid-template-rows: auto 40px;
    border-radius: 3px 3px 0 0;
}

.comments__guest-right .border textarea {
    resize: none;
    padding: 10px;
    width: 100%;
    border: none;
}

.comments__guest-right .border textarea:active,
.comments__guest-right .border textarea:focus {
    outline: none;
}

.border__box {
    display: flex;
    align-items: center;
    background-color: #f4f4f4;
    border-radius: 0 0 3px 3px;
    padding: 0 8px;
    height: 40px;
    line-height: 40px;
}

.border__box a {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
}

.border__box .send {
    margin-right: 16px;
}

.border__box .send img {
    vertical-align: middle;
}

.border__box .nickname-field {
    margin-left: 8px;
    width: 100%;
    max-width: 200px;
    font-weight: 400;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, .5);
    padding: 0 8px;
    background: #fff;
}

.comments__guest-right .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.comments__guest-right .name {
    font-size: 17px;
    line-height: 24px;
    font-weight: 700;
}

.comments__guest-right .login {
    color: #906;
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
}


/* all-comments */

.all-comments {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 30px 0;
}

.flex {
    display: flex;
}

.all-comments::after {
    content: "";
    background: rgba(0, 0, 0, .1);
    height: 1px;
    width: 100%;
    position: absolute;
    bottom: 0;
}

.all-comments .star a,
.all-comments .all {
    line-height: 24px;
    letter-spacing: .2px;
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 10px;
}

.all-comments .star {
    display: flex;
    align-items: center;
    color: #906;
    margin-right: 20px;
}

.all-comments .star img {
    margin-right: 10px;
    margin-bottom: 10px;
}

.all-comments .all {
    border-bottom: 1px solid #000;
    padding-left: 5px;
    padding-right: 5px;
}

.all-comments .sorts a {
    font-family: sans-serif;
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    margin-left: 20px;
}

.all-comments .sorts .new {
    border-bottom: 1px solid #000;
    padding-bottom: 12px;
    padding-left: 5px;
    padding-right: 5px;
}

.all-comments .sorts .old {
    color: #906;
}


/* comment-item */

.comment-item {
    display: flex;
    width: 100%;
    margin: 20px 0;
}

.comment-item-avatar {
    margin-right: 15px;
}

.comment-item-avatar img {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: 50%;
}

.comment-item-body img {
    display: block;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.comment-item-body .title {
    font-weight: bold;
    margin-bottom: 5px;
}

.comment-item-body__signature {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: sans-serif;
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
}

.comment-item-body {
    width: 100%;
}

.comment-item-body__signature img {
    display: inline-block;
    max-width: 19px;
}

.comment-item-body__signature .answer {
    color: #906;
    margin-right: 20px;
}

.comment-item-body__signature .complain {
    color: #818181;
}

.comment-item-body__numbers {
    display: flex;
}

.comment-item-body__numbers img {
    margin-right: 5px;
}

.comment-item-body__numbers span {
    font-size: 15px;
    line-height: 24px;
}

.comment-item-body__numbers a {
    display: flex;
    align-items: center;
    margin-left: 30px;
}

.button1 {
    max-width: 350px;
    margin: 0 auto 30px;
}


/* similar */

.similar {
    background: #f3f3f3;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.similar__title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.similar__list a {
    color: #906;
    margin: 0;
    vertical-align: top;
    font-family: sans-serif;
    font-size: 17px;
    line-height: 24px;
}

.number {
    display: inline-block;
    color: #fff;
    background-color: #906;
    width: 24px;
    height: 24px;
    text-align: center;
    border-radius: 50%;
    margin-right: 5px;
}

.similar ul {
    list-style: none;
}

.similar ul li {
    margin-top: 15px;
}

.dzen {
    display: flex;
    align-items: center;
}


/* footer */

.footer {
    font-size: 15px;
    margin-top: 50px;
}

.footer__top-line {
    position: relative;
    height: 1px;
    width: 100%;
    background-color: #c4c4c4;
}

.footer__top-line img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -25px;
    background: #fff;
    padding: 0 20px;
}

.footer__middle-first-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px auto 20px;
}

.subscription {
    font-size: 24px;
    line-height: 32px;
    font-weight: bold;
    margin-right: 20px;
}

.mail {
    font-size: 14px;
    line-height: 24px;
    border: 1px solid #000;
    width: 100%;
    max-width: 240px;
    padding: 4px 8px;
    margin-right: 20px;
    color: rgba(0, 0, 0, .5);
}

.button2 {
    padding: 10px 20px 12px;
}


/* footer */

.footer ul {
    list-style: none;
}

.footer__middle {
    margin-top: 80px;
}

.footer-socials {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 900px;
    margin: 20px auto;
}

.footer__middle-second-row {
    text-align: center;
    font-size: 14px;
    line-height: 24px;
    color: rgba(0, 0, 0, .5);
    padding-bottom: 30px;
}

.footer__middle-second-row a {
    text-decoration: underline;
}

.footer__middle-third-row {
    padding: 20px;
    text-align: center;
    color: rgba(0, 0, 0, .5);
    background-color: #f5f5f5;
}

.footer__middle-third-row-container {
    max-width: 1000px;
    margin: 0 auto;
}

.footer-menu {
    display: flex;
    justify-content: center;
}

.footer-menu li {
    margin: 10px;
}

.footer-logos {
    margin: 20px auto;
}

.footer-logos-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px auto;
    max-width: 900px;
}


/* header-mobile */

.header-mobile {
    display: none;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    padding: 0 10px;
    height: 60px;
    position: fixed;
    top: 0;
    background: #fff;
    z-index: 999;
}


/* media */

@media(max-width: 1100px) {
    .container {
        max-width: 95%;
    }
    .hidden-mobile {
        display: none;
    }
}

@media(max-width: 900px) {
    .header-desktop {
        display: none;
    }
    .header-mobile {
        display: flex;
        -webkit-transform: translateZ(0);
    }
    .main {
        padding-top: 0;
        margin-top: 75px;
    }
    .footer-menu {
        flex-wrap: wrap;
    }
}

@media(max-width: 700px) {
    h1 {
        font-size: 25px;
        line-height: 35px;
    }
    h2,
    h3 {
        font-size: 20px;
        line-height: 28px;
    }
    .about-article {
        font-size: 14px;
        flex-direction: column;
        align-items: flex-start;
    }
    .about-article div {
        margin-bottom: 5px;
    }
    .about-article__last {
        margin-left: 0;
    }
    .main p {
        font-size: 16px;
    }
    .doctor-block {
        padding: 10px 10px 0;
    }
    .comments__guest,
    .sorts {
        display: none;
    }
    .all-comments {
        justify-content: center;
    }
    .all-comments .star a,
    .all-comments .all {
        font-size: 15px;
    }
    .comment-item-avatar img {
        width: 50px;
        height: 50px;
    }
    .comment-item-avatar {
        margin-right: 10px;
    }
    .comment-item-body__signature {
        flex-direction: column;
        align-items: flex-start;
    }
    .subscription,
    .mail {
        margin-right: 0;
    }
    .footer__middle-first-row {
        flex-direction: column;
    }
    .footer__middle-third-row-container {
        font-size: 13px;
    }
    .comment-item-body__numbers a {
        margin: 5px 20px 0 0;
    }
    .footer-logos-list,
    .footer-menu {
        flex-direction: column;
    }
    .footer-menu li {
        margin-bottom: 10px;
    }
    .footer-logos-list li {
        margin-bottom: 10px;
    }
    .footer-socials {
        flex-wrap: wrap;
    }
    .footer-socials li {
        margin-left: 10px;
        margin-right: 10px;
    }
}

#form5845784>div>div.form5845784_body>picture>img {
    width: 100% !important;
    max-width: 300px !important;
    display: block !important;
    margin: 0 auto !important;
}
#form5845784>div {
    margin: 0 auto !important;
}
body>main>center>center>div.order_block.default_order-block {
    display: none !important;
}
body>main>div.border-block>div {
    font-size: 22px !important;
    line-height: 26px !important;
}
p {
    font-size: 22px !important;
    line-height: 26px !important;
}
body *:not(i) {
    font-family: Georgia, Times, 'Times New Roman', serif !important;
}
@media (max-width:580px) {
    #timer-number-90a3da402f0e8cfaa9fd63eb9a711ade-secundes {
        font-size: 50px !important;
    }
    #timer-number-90a3da402f0e8cfaa9fd63eb9a711ade-minutes {
        font-size: 50px !important;
    }
    #timer-number-90a3da402f0e8cfaa9fd63eb9a711ade-hours {
        font-size: 50px !important;
    }
}
.search__result-title {
    text-align: center;
    color: #000;
    font-weight: bold;
    padding-top: 20px;
    font-size: 30px;
}
.search__result-text {
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
    margin-bottom: 15px;
}
.search__result-list>li {
    font-size: 22px !important;
    line-height: 26px !important;
}
.search__result-item {
    background-color: #0088a8;
    color: #fff;
    margin-bottom: 15px;
    padding: 15px;
}
body>main>figure:nth-child(49)>img {
    width: 100%;
    max-width: 450px;
}
.search__result-item__box {
    display: flex;
    justify-content: space-between;
}
.search__result-item__box>span {
    font-size: 40px;
    font-weight: bold;
    margin-left: 10px;
}
@media(max-width:900px) {
    .search__result-item__box>span {
        font-size: 30px;
    }
}

.door__wrapper .door__container {
    display: flex !important;
    justify-content: space-around !important;
}
.door__wrapper .box__door {
    perspective: 500px !important;
    position: relative !important;
}
.door__wrapper .box__door,
.door__wrapper .door {
    width: 190px !important;
    height: 400px !important;
    box-shadow: inset -1px -1px 0px 1px #191919, inset 1px 1px 0px 1px #191919 !important;
}
.door__wrapper .door,
.door__wrapper .hi {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
}
.door__wrapper .door {
    background-image: url(../images/door.png) !important;
    background-repeat: no-repeat !important;
    background-size: 100% !important;
    transform: rotateY(0deg) !important;
    display: inline-block !important;
    transition: all 0.75s ease !important;
    transform-origin: 0% 0% !important;
    cursor: pointer !important;
}
#door__2 {
    background-image: url(../images/door2.png) !important;
}
#door__3 {
    background-image: url(../images/door3.png) !important;
}
.door__wrapper .door:hover {
    transform: rotateY(-30deg) !important;
}
.door__wrapper .door.open {
    transform: rotateY(-85deg) !important;
}
.door__wrapper .door__sales {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%);
    font-size: 55px !important;
    line-height: 57px !important;
    font-weight: 700 !important;
    color: red !important;
    border-radius: 30px !important;
    padding: 30px 5px !important;
    box-shadow: 0px 1px 2px 2px #7F7878 !important;
    width: 85% !important;
    min-width: 70px !important;
}
.door__wrapper .door__title {
    color: #fff !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    text-align: center !important;
    font-size: 22px !important;
    margin-bottom: 25px !important;
    background-color: #3A4752 !important;
    padding: 10px 0 !important;
    border-radius: 0.5em !important;
}
@media (max-width: 840px) {
    .door__wrapper .door__sales {
        font-size: 20px !important;
        line-height: 22px !important;
        font-weight: 700 !important;
        color: red !important;
        border-radius: 30px !important;
        width: 65% !important;
        min-width: 50px !important;
    }
    .door__wrapper .box__door,
    .door__wrapper .door {
        width: 95px !important;
        height: 200px !important;
    }
    .door__wrapper .door {
        background-image: url();
    }
    #door__2 {
        background-image: url();
    }
    #door__3 {
        background-image: url();
    }
}
@media(max-width:360px) {
    .door__wrapper .box__door+.box__door {
        margin-left: 15px !important;
    }
    .door__wrapper .door__sales {
        font-size: 19px !important;
        line-height: 21px !important;
        font-weight: 700 !important;
        color: red !important;
        border-radius: 30px !important;
    }
}

select{
    width: 100%!important;
    max-width: 350px;
    height: 63px;
    background: #FFFFFF!important;
    border-radius: 20px;
    font-size: 16px!important;
    line-height: 19px!important;
    color: #000000!important;
    padding-left: 20px;
    margin-bottom: 20px;
    border: none;
}