@charset "UTF-8";

.yd-message-box .apteka__filter__item {
    position: relative;
    display: flex;
    align-items: center;
}
.yd-message-box .apteka__list__item.hidden {
    display: none;
}
.yd-message-box .apteka__list__item[data-available="0"] {
    cursor: not-allowed;
}
.yd-message-box .apteka__list__item .product__price {
    margin-top: 10px;
    margin-bottom: 0;
}
.yd-message-box .apteka__filter__item::before {
    display: block;
    content: "";
    height: 17px;
    width: 17px;
    background-color: #00A0E3;
    position: absolute;
    border-radius: 3px;
    left: 0;
}
.yd-message-box .apteka__filter__item input {
    display: none;
}
.yd-message-box .apteka__filter__item label {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    color: #586077;
    font-weight: 400;
    margin: 0;
    padding-left: 1.6em;
}
.yd-message-box .apteka__filter__item:not(.apteka-choose-right__available) label::before {
    content: "";
    display: inline-block;
    height: 25px;
    width: 25px;
    margin-top: -1px;
    margin-left: -2px;
    margin-right: 1px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.yd-message-box .apteka__filter__item label::after {
    display: block;
    content: "";
    height: 8px;
    width: 4px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    position: absolute;
    top: 45%;
    left: 6px;
    opacity: 0;
    transform: translate(0, -50%) rotate(45deg);
    transition: opacity 200ms;
}
.yd-message-box .apteka__filter__item input[type=checkbox]:checked + label::after {
    opacity: 1;
}
.yd-message-box .apteka__list__item .apteka__item__head__status {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    flex-shrink: 0;
    color: #fff;
    white-space: nowrap;
    text-align: center;
    background-color: #739CE5;
    border-radius: 50px;
    padding: 2px 10px;
}
.yd-message-box .apteka__item__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.yd-message-box .apteka__list__item[data-available="2"] .apteka__item__head__status {
    background-color: #f3744b;
}
.yd-message-box .apteka__list__item[data-available="1"] .apteka__item__head__status {
    background-color: #70A545;
}
.yd-message-box .apteka__item__hidden__props {
    display: none;
}
@media (min-width: 721px) {
    .yd-message-box .chosen__apteka__items {
        height: 100vh;
        position: fixed;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        top: 0;
        right: 0;
        z-index: 5;
    }
}
.yd-message-box .chosen__apteka__products_head.available {
    background: #70A545;
}
.yd-message-box .chosen__apteka__products_head.available_on_request {
    background: #739CE5;
    margin-bottom: 15px;
}
.yd-message-box .chosen__apteka__products_head.not_available {
    background: #DA251D;
}
.yd-message-box .basket__box_outer-circle-overlay {
    z-index: 8;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.6);
}
.yd-message-box .basket__box_outer-circle-overlay.hidden {
    display: none;
}
.yd-message-box .basket__box_outer-circle {
    display: flex;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    background-color: #fff;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
}
.yd-message-box .basket__box_outer-circle.hidden {
    display: none;
}
.yd-message-box .basket__box_inner-circle {
    border-radius: inherit;
    background-image: conic-gradient(rgba(0, 160, 227, 0), rgb(0, 160, 227), rgb(0, 160, 227));
    position: absolute;
    z-index: -1;
    margin: auto;
    top: -0.8rem;
    bottom: -0.8rem;
    left: -0.8rem;
    right: -0.8rem;
    animation: circle-anim 0.5s linear infinite;
}
.yd-message-box .basket__box_inner-text {
    top: 90px;
    position: relative;
    white-space: nowrap;
    font-size: 20px;
    cursor: default;
}
@keyframes circle-anim {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.yd-message-box .success-order-title {
    font-size: 20px;
    text-align: center;
}
.yd-message-box .order__number_numb {
    font-weight: 600;
    color: green;
    font-size: 22px;
}
.yd-message-box .order__wrap {
    margin: 0 10px;
}
.yd-message-box-overlay {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4666666667);
    justify-content: center;
    align-items: center;
    z-index: 5;
}
.yd-message-box-overlay.show {
    display: flex;
}
.yd-message-box {
    display: none;
    position: absolute;
    background: #fff;
    padding: 5px;
    border-radius: 15px;
    flex-direction: column;
    max-width: 600px;
    max-height: 80%;
    overflow-y: auto;
}
.yd-message-box.show {
    display: flex;
}
.yd-message-box-title {
    font-weight: 700;
    text-align: center;
}
.yd-message-box {
    min-width: 300px;
    margin: 0 10px;
}
.yd-message-box-bottom {
    display: inherit;
}
.yd-message-box-bottom-message {
    padding: 0 10px;
}
.yd-message-box-button {
    padding: 10px 15px;
    border-radius: 24.3774px;
    margin: 0 0 10px 10px;
    width: fit-content;
    cursor: pointer;
    background: #00A0E3;
    color: #fff;
}
.yd-message-box-button.hidden {
    display: none;
}
.yd-message-box-text {
    margin: 0 0 5px 0;
}
.yd-message-box .non-available {
    cursor: not-allowed;
}
.yd-message-box .apteka__list__item.region-hidden, .yd-message-box .apteka__list__item.rayon-hidden, .yd-message-box .apteka__list__item.available-hidden, .yd-message-box .apteka__list__item.full__day-hidden, .yd-message-box .apteka__list__item.lenoblfarm-hidden {
    display: none;
}
.yd-message-box .office-manager-box {
    display: flex;
    flex-direction: column;
    padding: 10px;
}
.yd-message-box .office-manager-box input {
    margin-bottom: 10px;
    height: 42px;
    border: 1.5px solid #DEE6EA;
    border-radius: 79px;
    padding-left: 18px;
}
.yd-message-box .office-manager-box-button {
    padding: 10px 25px;
    border-radius: 24.3774px;
    width: fit-content;
    cursor: pointer;
    background: #00A0E3;
    color: #fff;
}
.yd-message-box-bottom-buttons {
    position: absolute;
    right: 10px;
    top: 10px;
    color: #fff;
}
.yd-message-box .Popup.showPopup {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
}
.yd-message-box .container__form.deliv #confirmAddress {
    margin-top: 20px;
}
.yd-message-box ::placeholder {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    color: #A0A9B9;
}
.yd-message-box *:focus {
    outline: none;
}
.yd-message-box ::placeholder {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    color: #A0A9B9;
}
.yd-message-box *:focus {
    outline: none;
}
.yd-message-box .Popup {
    z-index: 2000;
    display: none;
}
.yd-message-box .Popup {
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
    border-radius: 0 0 8px 8px;
}
.yd-message-box .datetime {
    margin-bottom: 15px;
}
.yd-message-box .datetime select, .yd-message-box select.custom[name=type] {
    line-height: 35px;
    min-height: 35px;
    margin-right: 10px;
    border-radius: 6px;
    border: 2px solid #ccc;
}
.yd-message-box #deliveryDateTime select, .yd-message-box #deliveryDateTime option, .yd-message-box select.custom[name=type] {
    font-size: 14px;
    letter-spacing: 0;
    font-weight: bold;
    height: 52px;
    line-break: 63px;
    padding: 0 21px;
    flex: 1;
    border-radius: 79px;
    background: #fff;
    color: #000;
}
.yd-message-box .custom-select {
    display: inline-block;
}
.yd-message-box .custom-select .custom {
    position: absolute;
    left: -10000px;
}
.yd-message-box .custom-select-label {
    display: inline-block;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff !important;
    color: #858796;
    box-sizing: border-box;
    font-size: 18px;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.2;
    letter-spacing: -0.01em;
    box-shadow: inset 0 0 0 2px #CBD1DC;
    outline: none;
    font-family: "Roboto", sans-serif;
    padding-top: 17px;
    padding-right: 21px;
    padding-bottom: 21px;
    transition: box-shadow 300ms;
    position: relative;
}
.yd-message-box .custom-select-label:after {
    display: block;
    content: "";
    position: absolute;
    right: 30px;
    z-index: 1;
    top: 46%;
    height: 11px;
    width: 11px;
    border-right: 2px solid #97a2b4;
    border-bottom: 2px solid #97a2b4;
    transform: rotate(45deg) translate(0, -50%);
}
.yd-message-box .custom-select-options.Popup {
    background: #fff;
    z-index: 200000;
}
.yd-message-box .custom-option {
    position: relative;
    z-index: 2;
    display: block;
    max-width: 200px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: 0;
    touch-action: manipulation;
    font-size: 14px;
    letter-spacing: 0;
    color: #75736f;
    transition: all 0.15s;
    padding: 12px 32px 11px;
    cursor: pointer;
    font-weight: bold;
}
.yd-message-box .custom-option.disabled {
    cursor: default;
}
.yd-message-box .custom-select-options.Popup {
    max-width: 200px;
}
.yd-message-box .custom-select {
    position: relative;
}
.yd-message-box .custom-option.disabled {
    opacity: 0.5;
}
.yd-message-box .custom-select-options {
    max-height: 250px;
    overflow: auto;
}
.yd-message-box input:focus {
    outline: none;
}
.yd-message-box ::placeholder {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    color: #A0A9B9;
}
.yd-message-box *:focus {
    outline: none;
}
.yd-message-box * {
    font-family: "rubik";
}
.yd-message-box input:focus {
    outline: none;
}
.yd-message-box ::placeholder {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    color: #A0A9B9;
}
.yd-message-box *:focus {
    outline: none;
}
.yd-message-box .Popup {
    z-index: 2000;
    display: none;
}
.yd-message-box .Popup {
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
    border-radius: 0 0 8px 8px;
}
.yd-message-box .amber-section_theme_white {
    background: #fff;
}
.yd-message-box .amber-section_roundBorders_all {
    border-radius: 0 0 8px 8px;
}
.yd-message-box .amber-section {
    position: relative;
}
.yd-message-box .amber-row {
    box-sizing: border-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    list-style: none;
    position: relative;
    max-width: 100%;
}
.yd-message-box .amber-col {
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    max-width: 100%;
    position: relative;
}
.yd-message-box .amber-radio-button {
    font-family: Yandex Sans Text Web, Arial, sans-serif;
    color: #21201f;
}
.yd-message-box .amber-radio-button__radio {
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: 0;
    touch-action: manipulation;
    font-size: 14px;
    letter-spacing: 0;
    color: #75736f;
    transition: all 0.15s;
}
.yd-message-box .amber-radio-button__radio {
    text-align: center;
    padding: 12px 32px 11px;
    cursor: pointer;
}
.yd-message-box .amber-radio-button__radio_checked {
    color: #21201f;
}
.yd-message-box .amber-radio-button__radio_checked {
    cursor: default;
}
.yd-message-box .amber-radio-button .amber-radio-button__radio, .yd-message-box .amber-radio-button .amber-radio-button__radio-text {
    z-index: auto;
}
.yd-message-box .amber-radio-button__control {
    opacity: 0;
    position: absolute;
}
.yd-message-box .amber-radio-button__radio-text {
    position: relative;
    z-index: 1;
}
.yd-message-box .amber-radio-button__radio-box:before {
    position: absolute;
    top: 0;
    bottom: 0;
    content: "";
    left: 0;
    right: 0;
}
.yd-message-box .amber-radio-button__radio-box:after {
    position: absolute;
    top: 0;
    bottom: 0;
    content: "";
}
.yd-message-box .amber-section_vertical .amber-radio-button {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
}
.yd-message-box .amber-section_vertical .amber-radio-button__radio {
    display: flex;
    flex: 0 0 100%;
}
.yd-message-box #deliveryDoorToDoor {
    width: 100%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}
.yd-message-box .container__form input {
    display: block;
    height: 52px;
    text-indent: 18px;
    box-sizing: border-box;
}
.yd-message-box #bx-soa-location-notifications {
    display: none;
}
.yd-message-box #deliveryDateTime {
    display: flex;
    flex-wrap: wrap;
}
.yd-message-box #deliveryDateTime .custom-select:not(:last-child) {
    margin-bottom: 10px;
}
.yd-message-box #deliveryDateTime .custom-select {
    width: calc(50% - 10px);
    min-width: 161px;
}
.yd-message-box #deliveryDateTime .custom-select-label {
    width: 100%;
    margin-bottom: 0;
}
.yd-message-box #deliveryDateTime .custom-select:first-child {
    margin-right: auto;
}
.yd-message-box .form__address .field {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.yd-message-box .container__form.deliv .checkout__form__input.comment {
    width: 100%;
    margin-bottom: 0;
}
.yd-message-box .container__form.deliv .checkout__form__input.field__input {
    width: 100%;
}
.yd-message-box ymaps {
    max-width: none;
    max-height: none;
}
.yd-message-box .container__form.delivery .checkout__heading {
    margin-bottom: 12px;
}
.yd-message-box .container__form.delivery .after__hour {
    font-size: 19px;
}
.yd-message-box .checkout__form__submit {
    margin: 0;
}
.yd-message-box .container__form.checkout.delivery.deliv {
    width: 100%;
    margin-bottom: 25px;
}
@media screen and (max-width: 550px) {
    .yd-message-box select.custom {
        margin-top: 10px;
    }
}
.yd-message-box .checkout__form__input.address:nth-child(2n) {
    margin-left: 0;
    margin-right: 0;
}
.yd-message-box .container__form.deliv .checkout__form__input {
    width: calc(50% - 6px);
}
.yd-message-box .chosen__product__notice {
    font-size: 13px;
    color: red;
    font-weight: 700;
    margin-top: 10px;
}
.yd-message-box .product__labels {
    margin-top: 5px;
    top: 0;
}
.yd-message-box .chosen__product__container, .yd-message-box .chosen__product__qtyprice {
    align-items: flex-start;
    margin-top: 20px;
}
@media screen and (max-width: 620px) {
    .yd-message-box .product__labels {
        top: 8px;
    }
}
.yd-message-box .confirm-order {
    padding: 15px;
}
.yd-message-box .confirm-order-title {
    font-size: 16px;
    width: max-content;
    color: #fff;
    padding: 2px 10px;
    border-radius: 15px;
    font-weight: 400;
}
.yd-message-box .confirm-order-title.available {
    background-color: #70A545;
}
.yd-message-box .confirm-order-title.noavailable {
    background-color: red;
}
.yd-message-box .confirm-order-description {
    margin-top: 5px;
    color: #535B69;
    margin-left: 3px;
}
.yd-message-box .confirm-order-summ {
    margin-top: 20px;
}
.yd-message-box .confirm-order-summ-text {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #DEE6EA;
}
.yd-message-box .confirm-order-summ-text span:nth-child(2) {
    font-weight: 600;
}
.yd-message-box .confirm-order-summ-text {
    margin-bottom: 10px;
    align-items: center;
}
.yd-message-box .chosen__product__qtyprice {
    align-items: center;
}
.yd-message-box .confirm-order-items .simple_price {
    font-weight: 700;
    font-size: 21px;
    line-height: 27px;
    color: #FF4134;
    margin: 0;
}
.yd-message-box .confirm-order-submit span {
    display: block;
    cursor: pointer;
    border-radius: 64px;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 15px;
    background: #fff;
    border: 2px solid #00A0E3;
    color: #00A0E3;
}
.yd-message-box .confirm-order .chosen__apteka__product:first-child {
    border-bottom: 1px solid #DEE6EA;
}
.yd-message-box .confirm-order .chosen__apteka__product:last-child {
    border-bottom: 0;
}
.yd-message-box .apteka__list__item .product__price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 24px;
    position: absolute;
    right: 0;
    bottom: 12px;
    line-height: normal;
}
.yd-message-box .apteka__list__item .product__price .old_price {
    position: unset;
}
.yd-message-box .apteka__list__item .ruble_sign {
    font-size: 20px;
}
.yd-message-box .apteka__list__item .simple_price {
    padding: 2px 11px;
}
@media screen and (max-width: 720px) {
    .yd-message-box .choise__apteka__item {
        display: none;
    }
}
.yd-message-box .chosen__apteka__products .economy__price {
    margin-top: 10px;
}
@media screen and (max-width: 600px) {
    .yd-message-box .chosen__apteka__products .economy__price {
        position: unset;
        line-height: unset;
        margin-top: 10px;
    }
}
.yd-message-box .chosen__apteka__items .economy__price__cost {
    text-decoration: line-through;
}
.yd-message-box .chosen__product__price .product__price {
    margin-top: 0;
    margin-bottom: 0;
}
@media screen and (min-width: 620px) {
    .yd-message-box .chosen__product__price .old_price {
        position: static;
        margin-left: 0;
    }
    .yd-message-box .chosen__product__price .discount_price {
        bottom: -10px;
        right: 0;
        margin: 0;
    }
    .yd-message-box .chosen__product__price .product__price {
        font-size: 25px;
    }
    .yd-message-box .chosen__product__price .super_price::before {
        height: 33px;
        width: 33px;
        background-size: 33px 33px;
    }
    .yd-message-box .chosen__product__price .super_price {
        padding: 2px 10px 2px 36px;
    }
    .yd-message-box .chosen__product__price .product__price {
        margin-top: 0;
        margin-bottom: 0;
    }
}
@media screen and (max-width: 620px) {
    .yd-message-box .chosen__product__price .product__price {
        font-size: 22px;
    }
    .yd-message-box .chosen__product__price .super_price::before {
        height: 30px;
        width: 30px;
        background-size: 30px 30px;
    }
    .yd-message-box .chosen__product__price .super_price {
        padding: 2px 7.65px 2px 32.43px;
    }
    .yd-message-box .chosen__product__price .old_price {
        position: static;
        margin-left: 0;
    }
    .yd-message-box .chosen__product__price .discount_price {
        bottom: -10px;
        right: 0;
    }
}
.yd-message-box .placemark-style {
    background: #fff;
    width: fit-content;
    width: -moz-fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    font-weight: 600;
    padding: 3px 8px;
    color: #9a9a9a;
    white-space: nowrap;
    border: 1.25px solid #DEE6EA;
}
.yd-message-box .placemark-type-style {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 5px;
}
.yd-message-box .choice__that__apteka, .yd-message-box .choice__that__apteka_delivery, .yd-message-box .choice__that__apteka_request {
    line-height: unset;
    padding: 8px;
}
.yd-message-box .confirm-order-store {
    margin: 10px 0 20px;
}
.yd-message-box .confirm-order-store-address, .yd-message-box .confirm-order-store-time, .yd-message-box .confirm-order-store-phone {
    position: relative;
    padding-left: 1.2em;
    margin-bottom: 5px;
}
.yd-message-box .confirm-order-store-address:before {
    background-image: url(images/map.svg);
}
.yd-message-box .confirm-order-store-time:before {
    background-image: url(images/clock.svg);
}
.yd-message-box .confirm-order-store-phone:before {
    background-image: url(images/phone.svg);
}
.yd-message-box .confirm-order-store-address:before, .yd-message-box .confirm-order-store-time:before, .yd-message-box .confirm-order-store-phone:before {
    width: 1em;
    height: 1em;
    display: block;
    content: "";
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 0;
}