@charset "UTF-8";

.of-main-layout {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.of-main__box {
  padding: 20px 0 35px 18px;
  border-radius: 3px;
  border: 1px solid #ececec;
  overflow: hidden;
  margin-bottom: 16px;
}
@media (max-width:767px) {
  .of-main__box {
    padding: 0;
    border: none;
    margin-bottom: 64px;
  }
}
@media (max-width:767px) {
  .of-main__box-user .of-slide__icon {
    width: 0;
    padding-right: 10px;
  }
}

.of-main__box-heading {
  margin-bottom: 20px;
}

.of-main__box-slider {
  margin-bottom: 28px;
}

.of-main__box-slider .owl-nav {
  /*left: 10px!important;
  right: 10px!important;
  z-index: 5;*/
  position: static;
}

.of-main__box-slider .owl-nav button.owl-next,
.of-main__box-slider .owl-nav button.owl-prev,
.of-main__box-wrapper .owl-nav button.owl-prev,
.of-main__box-wrapper .owl-nav button.owl-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 51px;
  height: 51px;
  background-color: #fafafa;
  border:1px solid #3cc;
  border-radius: 50%;
  transition: all 0.3s ease;
  position: absolute;
  z-index: 5;
  top: calc(50% - 20px);
}

.of-main__box-slider .owl-nav button.owl-next,
.of-main__box-wrapper .owl-nav button.owl-next {
  right: 10px!important;
}
.of-main__box-slider .owl-nav button.owl-prev,
.of-main__box-wrapper .owl-nav button.owl-prev {
  left: 10px!important;
}

.of-main__box-slider .owl-nav button.owl-next span,
.of-main__box-slider .owl-nav button.owl-prev span,
.of-main__box-wrapper .owl-nav button.owl-next span,
.of-main__box-wrapper .owl-nav button.owl-prev span {
  position: absolute;
  background: url('../img/of-slider-arrow-right.png') no-repeat center/contain;
  font-size: 0;
  width: 9px;
  height: 16px;
}
@media (any-hover:hover) {
  .of-main__box-slider .owl-nav button.owl-next:hover,
  .of-main__box-slider .owl-nav button.owl-prev:hover,
  .of-main__box-wrapper .owl-nav button.owl-next:hover,
  .of-main__box-wrapper .owl-nav button.owl-prev:hover {
    background-color: #3cc;
  }
}

.of-main__box-slider .owl-nav button.owl-prev span,
.of-main__box-wrapper .owl-nav button.owl-prev span {
  -webkit-transform: translate(-10%,0) rotate(180deg);
  transform: translate(-10%,0) rotate(180deg);
}

.of-main__box-slider .owl-nav button.owl-next span,
.of-main__box-wrapper .owl-nav button.owl-next span {
  -webkit-transform: translate(10%,0);
  transform: translate(10%,0);
}

.of-main__box-slider .owl-nav .owl-next.disabled,
.of-main__box-slider .owl-nav .owl-prev.disabled,
.of-main__box-wrapper .owl-nav .owl-next.disabled,
.of-main__box-wrapper .owl-nav .owl-prev.disabled {
  opacity: 0;
  visibility: hidden;
}

.of-main__box-slider .owl-nav.disabled,
.of-main__box-wrapper .owl-nav.disabled {
  display: flex;
  opacity: 1;
}
@media (max-width:767px) {
  .of-main__box-slider .owl-nav.disabled,
  .of-main__box-wrapper .owl-nav.disabled {
    display: none;
  }
}

.of-main__box-button {
  display: flex;
  justify-content: center;
}

.of-main__box-button .btn {
  border: 1px solid #3cc;
  color: #3cc;
  max-width: 360px;
  width: 100%;
  background: 0 0;
  transition: all 0.3s ease;
  text-transform: none!important;
}
@media (max-width:767px) {
  .of-main__box-button .btn {
    max-width: none;
    width: auto;
    padding-left: 40px;
    padding-right: 40px;
  }
}

.of-box-heading {
  display: flex;
  align-items: center;
}

.of-box-heading__icon {
  display: flex;
  margin-right: 18px;
}

.of-box-heading__title {
  font-size: 21px;
  margin: 0;
}

.of-slide {
  position: relative;
  display: flex;
  justify-content: space-between;
  border-radius: 3px;
  border: 1px solid #ececec;
  overflow: hidden;
  padding: 24px 10px 30px;
  width: 420px;
  cursor: pointer;
  color: #999;
}
@media (max-width:767px) {
  .of-slide {
    width: 370px;
  }
}
@media (max-width:500px) {
  .of-slide {
    width: 285px;
  }
}

.of-slide--active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #3cc;
}

.of-slide--active .of-slide__data-title {
  font-weight: 700;
}

.of-slide--active .of-slide__icon svg path {
  fill: #3cc;
}

.of-slide__icon {
  width: 44px;
  padding-right: 8px;
}

.of-slide__icon svg path {
  fill: #999;
}

.of-slide__data {
  flex-grow: 1;
}

.of-slide__data-title {
  font-size: 18px;
  color: #333;
  margin-bottom: 16px;
}

.of-slide__data-email,
.of-slide__data-tel,
.of-slide__data-title {
  letter-spacing: 1.05px;
}
@media (max-width:767px) {
  .of-slide__data-email,
  .of-slide__data-tel,
  .of-slide__data-title {
    letter-spacing: 0;
  }
}

.of-slide__data-address,
.of-slide__data-email,
.of-slide__data-payment,
.of-slide__data-tel {
  font-size: 14px;
  line-height: 120%;
}

.of-slide__data-time {
  font-size: 12px;
  letter-spacing: 0.9px;
}

.of-slide__button {
  display: flex;
  position: absolute;
  right: 0px;
  top: 0px;
  width: 19px;
  height: 21px;
  position: relative;
  z-index: 99;
}

.of-slide__button-edit {
  border: none;
  background: 0 0;
}

.checkbox-block {
  cursor: pointer;
  position: relative;
  z-index: 5;
}

.checkbox-block__label {
  position: relative;
  padding-left: 50px;
  cursor: pointer;
  line-height: 120%;
  color: #999;
}

.checkbox-block input[type=checkbox] {
  opacity: 0;
  visibility: hidden;
  width: 0;
  height: 0;
  display: none;
}

.checkbox-block input[type=checkbox]+label:before {
  content: '';
  position: absolute;
  color: #fff;
  background: #e0e0e0;
  left: 0;
  display: block;
  top: 0;
  height: 18px;
  width: 33px;
  border-radius: 10px;
}

.checkbox-block input[type=checkbox]:checked+label:before {
  color: #fff;
  background: #31c9c9;
}

.checkbox-block input[type=checkbox]+label:after {
  content: '';
  font-size: 0;
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  border-radius: 100%;
  background: #fff;
  width: 14px;
  height: 14px;
  border: none;
  margin: 2px;
  left: 0;
  box-shadow: 0 3px 6px 0 rgba(0,0,0,.3);
  transition: left 0.1s ease-in;
  z-index: 11;
}

.checkbox-block input[type=checkbox]:checked+label:after {
  left: 15px;
}

.of-block__aside {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex-shrink: 0;
  min-width: 0;
  position: static;
  height: auto;
}

.of-block__aside .bx-soa-cart-total {
  position: sticky;
  top: 82px;
}
@media (max-width:992px) {
  .of-block__aside {
    width: 100%;
  }
}
@media (max-width:992px) {
  .of-block .of-aside {
    padding-bottom: 80px;
  }

  .of-block .of-aside #of-aside__button.of-aside__button.bx-soa-cart-total-button-container {
    display: block!important;
  }
}

.of-block #bx-soa-order .bx-soa-cart-total {
  padding: 0;
  border: none;
}

.of-block .bx-soa-cart-total-inner {
  padding: 21px 28px 22px;
  border: 1px solid #ececec;
  border-radius: 0;
  background: #fff;
  border-radius: 3px;
}

.of-block .of-cart-pr-sum {
  display: flex;
  flex-direction: column;
}

.of-block .of-cart-pr-sum._active .of-cart-numbers-icon svg {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.of-block .bx-soa-cart-total-line-top .bx-soa-cart-t {
  cursor: pointer;
}

.of-block .bx-soa-cart-total-line-bottom {
  padding-top: 0;
  padding-bottom: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.of-block .bx-soa-cart-total-line-bottom-inner {
  padding-top: 6px;
  padding-bottom: 6px;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.of-block .of-cart-product-name {
  display: inline-flex;
  font-size: 13px;
  line-height: 110%;
  color: #888;
}

.of-block .of-cart-product-name:not(:last-child) {
  margin-bottom: 4px;
}

.of-block .of-cart-cupon-box-triger {
  font-size: 12px;
  line-height: 100%;
  margin-top: 24px;
  display: flex;
  align-items: center;
  color: #3cc;
  cursor: pointer;
}

.of-block .of-cart-cupon-box-triger .of-cart-cupon-triger-icon {
  margin-right: 10px;
}

.of-block .of-cart-cupon-box-body {
  display: none;
}

.of-block .of-cart-cupon-box-body._active {
  display: block;
}

.of-block .of-cart-cupon-box-body-inner {
  padding-top: 8px;
}

.of-block .of-cart-cupon-input {
  width: 100%;
  border-radius: 3px;
  padding: 12px;
  background: #fafafa;
  border: 1px solid #ececec;
}

.of-block .bx-soa-cart-d {
  color: #999;
}

.of-block .bx-soa-price-free {
  color: #999;
}

.of-block .of-cart-police-text {
  margin-top: 20px;
  font-size: 13px;
  line-height: 120%;
  color: #999;
  padding-bottom: 20px;
}

.of-block .of-cart-police-text a {
  color: #3cc;
  transition: all 0.3s ease;
}

.of-block .of-cart-order-total-sum {
  color: #333;
}

.of-block #bx-soa-order .bx-soa-cart-total .bx-soa-cart-total-line-total .of-cart-order-total-text {
  font-size: 18px;
}

.oc-page-content {
  display: flex;
  flex-direction: column;
  padding-top: 53px;
  padding-bottom: 40px;
}
@media (max-width:767px) {
  .oc-page-content {
    padding-top: 28px;
  }
}

.oc-block {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 15px;
}

.oc-block__heading,
.oc-block__text {
  padding-left: 50px;
}

.oc-block__heading {
  position: relative;
}

.oc-block__heading h1 {
  margin: 0;
}
@media (max-width:767px) {
  .oc-block__heading h1 {
    font-size: 24px;
  }
}

.oc-block__heading h3 {
  margin: 0;
}

.oc-block__heading-3 {
  margin-bottom: 32px;
}
@media (max-width:767px) {
  .oc-block__heading-3 {
    margin-bottom: 23px;
    margin-top: 10px;
  }
}

.oc-block__heading-icon {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 34px;
  display: flex;
  justify-content: center;
}

.oc-block__text {
  color: #999;
  line-height: 120%;
  padding-top: 5px;
  padding-bottom: 30px;
  margin-top: 12px;
  margin-bottom: 14px;
  font-size: 16px;
}
@media (max-width:767px) {
  .oc-block__text {
    font-size: 14px;
    line-height: 135%;
    padding-bottom: 13px;
  }
}

.oc-block__text a {
  border-bottom: 1px solid #2db9b9;
}
@media (any-hover:hover) {
  .oc-block__text a:hover {
    border-color: #999;
  }
}

.oc-block__text p {
  margin: 0;
}

.oc-block__text p:not(:last-child) {
  margin-bottom: 4px;
}

.oc-block__text--less {
  font-size: 15px;
  margin-top: 7px;
  padding-bottom: 17px;
}
@media (max-width:767px) {
  .oc-block__text--less {
    padding-bottom: 0;
    margin-bottom: 2px;
  }
}

.oc-block__text--line {
  position: relative;
}

.oc-block__text--line::after {
  content: '';
  position: absolute;
  left: 17px;
  top: 0;
  width: 1px;
  height: 100%;
  background: #ebece7;
}

.oc-block__text-address {
  font-weight: 600;
}

.oc-block__text--strong {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.sf-block {
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}
@media (max-width:767px) {
  .sf-block {
    flex-direction: column;
  }
}

.sf-block__box,
.sf-block__cta {
  width: 100%;
}

.sf-block__cta {
  max-width: 210px;
}
@media (max-width:767px) {
  .sf-block__cta {
    max-width: none;
  }
}

.sf-block__box {
  max-width: 1006px;
}

.sf-box,
.sf-cta {
  border-radius: 3px;
  border: 1px solid #ececec;
}

.sf-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 26px;
  margin-right: 18px;
  overflow: hidden;
}
@media (max-width:767px) {
  .sf-cta {
    margin-right: 0;
    margin-bottom: 36px;
  }
}

.sf-cta__img {
  margin-bottom: 24px;
  display: flex;
}

.sf-cta__text {
  text-align: center;
  padding-bottom: 14px;
  font-size: 14px;
  line-height: 120%;
  color: #999;
  flex-grow: 1;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #ebece7;
  width: calc(100% - 26px);
}
@media (max-width:767px) {
  .sf-cta__text {
    width: 100%;
    border: none;
  }
}

.sf-cta__button {
  width: 100%;
  text-align: center;
}

.sf-cta__button-triger {
  color: #333;
  transition: all 0.3s ease;
  display: inline-flex;
  justify-content: center;
  width: 100%;
  padding: 12px 0;
}
@media (any-hover:hover) {
  .sf-cta__button-triger:hover {
    color: #fff;
    background: #2db9b9;
  }
}
@media (max-width:767px) {
  .sf-cta__button-triger {
    color: #fff;
    background: #2db9b9;
  }
}

.sf-box {
  padding: 26px 18px 0;
}

.sf-box__text {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 24px;
  color: #999;
  font-size: 16px;
  line-height: 120%;
}

.sf-box__gb {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #ebece7;
  padding: 24px 0;
  width: 100%;
}
@media (max-width:767px) {
  .sf-box__gb {
    padding: 33px 0;
  }
}

.sf-box__gb-item:not(:last-child) {
  margin-right: 93px;
}
@media (max-width:1408px) {
  .sf-box__gb-item:not(:last-child) {
    margin-right: calc(50px + 43 * ((100vw - 320px)/ 1088));
  }
}

body.lock {
  overflow: hidden;
}

.dm-modal {
  position: fixed!important;
  width: 100%;
  height: 100%;
  background: rgba(29,29,29,.8);
  top: 0;
  left: 0;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  overflow-x: hidden;
  transition: all 0.5s ease 0s;
}

.dm-modal__body {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 10px;
}

.dm-modal__content {
  background: #fff;
  color: #000;
  max-width: 572px;
  width: 100%;
  padding: 42px 58px 60px;
  position: relative;
  opacity: 0;
  transition: all 0.5s ease 0s;
  border-radius: 3px;
  border: 1px solid #ececec;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width:767px) {
  .dm-modal__content {
    padding: 24px 24px 32px;
  }
}

.dm-modal__content._sending {
  background: red;
}

.dm-modal__content .color-req {
  color: red;
}

.color-acc {
  color: #3cc;
  cursor: pointer;
}

.dm-modal.open {
  opacity: 1;
  visibility: visible;
  position: fixed;
  z-index: 9999;
}

.dm-modal.open .dm-modal__content {
  opacity: 1;
}

.dm-modal__close {
  position: absolute;
  right: 19px;
  top: 19px;
  background: 0 0;
  border: none;
}
@media (max-width:767px) {
  .dm-modal__close {
    top: 10px;
    right: 10px;
  }
}

.dm-modal__description {
  flex-grow: 1;
  min-height: 90px;
}

.dm-modal__title {
  color: #333;
  font-size: 26px;
  line-height: 24px;
  text-shadow: none;
  margin-bottom: 12px;
}

.dm-modal__text {
  color: #999;
  font-size: 16px;
  line-height: 135%;
  margin-bottom: 18px;
}

.dm-form {
  margin: 0 auto;
}

.dm-form * {
  outline: 0;
}

.dm-form__gr {
  display: flex;
}

.dm-form__gr:first-child {
  margin-bottom: 36px;
}

.dm-form__gr-row .dm-form__label-checkbox {
  padding: 16px 4px;
  text-align: center;
  letter-spacing: 0.9px;
  font-size: 18px;
  border: 1px solid #ececec;
  background-color: #fafafa;
}

.dm-form__gr-row .dm-form__input-checkbox:checked+.dm-form__label-checkbox {
  background-color: #3cc;
  border: 1px solid #3cc;
  color: #fff;
  /*font-weight: 700;*/
  letter-spacing: 0.2px;
}

.dm-form__gr-row .dm-form__gr-item:not(:last-child) {
  margin-right: 16px;
}
@media (max-width:370px) {
  .dm-form__gr-row-radio {
    flex-direction: column;
  }

  .dm-form__gr-row-radio .dm-form__gr-item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 16px;
  }
}

.dm-form__gr-col {
  flex-direction: column;
  margin-bottom: 32px;
}

.dm-form__gr-col .dm-form__gr-item:not(:last-child) {
  margin-bottom: 20px;
}

.dm-form__gr-col .dm-form__label-checkbox {
  margin-bottom: 0;
  padding: 14px;
  display: flex;
  align-items: center;
  font-size: 16px;
  letter-spacing: 0.8px;
  border: 1px solid #777;
}

.dm-form__gr-col .dm-form__label-checkbox .dm-label-icon {
  display: flex;
  margin-right: 10px;
}

.dm-form__gr-col .dm-form__label-checkbox .dm-label-icon svg path {
  fill: #777;
}

.dm-form__gr-col .dm-form__input-checkbox:checked+.dm-form__label-checkbox {
  font-weight: 700;
  border-color: #3cc;
}

.dm-form__gr-col .dm-form__input-checkbox:checked+.dm-form__label-checkbox .dm-label-icon svg path {
  fill: #3cc;
}

.dm-form__gr-item {
  width: 100%;
}

.dm-form__input-checkbox {
  display: none;
}

.dm-form__label-checkbox {
  border-radius: 3px;
  width: 100%;
  line-height: 100%;
  color: #333;
  cursor: pointer;
}

.dm-form__item {
  margin-bottom: 34px;
}

.dm-form__item-req {
  font-size: 13px;
  color: red;
  line-height: 120%;
  margin-top: 8px;
  display: none;
}

.dm-form__label {
  font-size: 13px;
  line-height: 120%;
  color: #999;
  display: block;
  margin-bottom: 10px;
}

.dm-form__input {
  color: #383838;
  font-size: 16px!important;
  height: 45px!important;
  padding: 12px;
  border-radius: 5px;
  width: 100%;
  border: 1px solid #ececec;
  transition: all 0.3s ease 0s;
}

.dm-form__input._error {
  background-color: #fee;
}

.dm-form__input-code {
  font-size: 24px!important;
  line-height: 100%;
  text-align: center;
  letter-spacing: 2.4px;
  color: #333;
}

.dm-form__block-checkbox {
  margin-bottom: 46px;
}

.dm-form__buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width:550px) {
  .dm-form__buttons {
    flex-direction: column;
    align-items: center;
  }

  .dm-form__buttons .dm-form__button:not(:last-child) {
    margin-bottom: 24px;
  }
}

.dm-form__button {
  background: 0 0;
  border: none;
  color: #3cc;
  font-size: 13px;
}

.dm-form__button.btn {
  padding: 14px 48px;
  background-color: #3cc;
  border-color: #3cc;
  color: #fff;
}
@media (any-hover:hover) {
  .dm-form__button.btn:hover {
    color: #fff;
  }
}

.dm-form__input-textarea {
  min-height: auto;
  overflow: hidden;
}

.dm-modal-delivery-options .dm-modal__content {
  padding: 30px 50px 40px;
}
@media (max-width:767px) {
  .dm-modal-delivery-options .dm-modal__content {
    padding: 24px 10px 32px;
  }
}

.dm-modal-delivery-options .dm-modal__description {
  min-height: auto;
}

.dm-modal-delivery-options .dm-modal__title {
  margin-bottom: 30px;
}

.dm-modal-delivery-options .dm-form__item {
  margin-bottom: 26px;
}
@media (max-width:767px) {
  .dm-modal-delivery-options .dm-form__item {
    margin-bottom: 18px;
  }
}

.dm-modal-delivery-options .dm-form__buttons {
  justify-content: center;
}

.dm-modal-user-options .dm-modal__content {
  padding: 30px 50px 40px;
}
@media (max-width:767px) {
  .dm-modal-user-options .dm-modal__content {
    padding: 24px 10px 32px;
  }
}

.dm-modal-user-options .dm-modal__description {
  min-height: auto;
}

.dm-modal-user-options .dm-modal__title {
  margin-bottom: 30px;
}

.dm-modal-user-options .dm-form__buttons {
  justify-content: center;
}

.dm-modal-user-change .dm-modal__content {
  padding: 30px 50px 40px;
}
@media (max-width:767px) {
  .dm-modal-user-change .dm-modal__content {
    padding: 24px 10px 32px;
  }
}

.dm-modal-user-change .dm-modal__description {
  min-height: auto;
}

.dm-modal-user-change .dm-modal__title {
  margin-bottom: 30px;
}

.dm-modal-user-change .dm-form__item {
  margin-bottom: 16px;
}

.dm-modal-user-change .dm-form__gr-row {
  margin-bottom: 16px;
}
@media (max-width:767px) {
  .dm-modal-user-change .dm-form__gr-row {
    flex-direction: column;
  }
}

.dm-modal-user-change .dm-form__block-checkbox {
  margin-bottom: 32px;
}

.dm-modal-user-change .dm-form__buttons {
  justify-content: center;
}

.dm-modal-payment-account .dm-modal__content {
  padding: 30px 50px 40px;
}
@media (max-width:767px) {
  .dm-modal-payment-account .dm-modal__content {
    padding: 24px 10px 32px;
  }
}

.dm-modal-payment-account .dm-modal__description {
  min-height: auto;
}

.dm-modal-payment-account .dm-modal__title {
  margin-bottom: 30px;
}

.dm-modal-payment-account .dm-form__item {
  margin-bottom: 32px;
}
@media (max-width:767px) {
  .dm-modal-payment-account .dm-form__item {
    margin-bottom: 16px;
  }
}

.dm-modal-payment-account .dm-form__buttons {
  justify-content: center;
  margin-top: 48px;
}
@media (max-width:767px) {
  .dm-modal-payment-account .dm-form__buttons {
    margin-top: 24px;
  }
}

.dm-modal-delivery-methods .dm-modal__content,
.dm-modal-payment-methods .dm-modal__content {
  padding: 30px 50px 40px;
}
@media (max-width:767px) {
  .dm-modal-delivery-methods .dm-modal__content,
  .dm-modal-payment-methods .dm-modal__content {
    padding: 24px 10px 32px;
  }
}

.dm-modal-delivery-methods .dm-modal__description,
.dm-modal-payment-methods .dm-modal__description {
  min-height: auto;
}

.dm-modal-delivery-methods .dm-modal__title,
.dm-modal-payment-methods .dm-modal__title {
  margin-bottom: 30px;
}

.dm-modal-delivery-methods .dm-form__buttons,
.dm-modal-payment-methods .dm-form__buttons {
  justify-content: center;
}

.dm-modal-delivery-methods .dm-cell-info__name,
.dm-modal-payment-methods .dm-cell-info__name {
  display: inline-flex;
  margin-bottom: 8px;
}

.dm-modal-delivery-methods .dm-cell-sum,
.dm-modal-payment-methods .dm-cell-sum {
  margin-left: auto;
}

.dm-modal-delivery-methods .dm-cell-edit,
.dm-modal-payment-methods .dm-cell-edit {
  top: -4px;
}

.dm-modal-delivery-methods .dm-cell-label,
.dm-modal-payment-methods .dm-cell-label {
  padding: 16px 13px 24px;
}

.dm-modal-delivery-methods .dm-form__button.btn,
.dm-modal-payment-methods .dm-form__button.btn {
  padding: 14px 18px;
}

.dm-modal-delivery-methods .dm-cell-info__name,
.dm-modal-delivery-methods .dm-cell-info__text,
.dm-modal-payment-methods .dm-cell-info__name,
.dm-modal-payment-methods .dm-cell-info__text {
  letter-spacing: 0;
}

.dm-modal-delivery-add .dm-modal__content,
.dm-modal-payment-add .dm-modal__content {
  padding: 30px 50px 40px;
}
@media (max-width:767px) {
  .dm-modal-delivery-add .dm-modal__content,
  .dm-modal-payment-add .dm-modal__content {
    padding: 24px 10px 32px;
  }
}

.dm-modal-delivery-add .dm-modal__description,
.dm-modal-payment-add .dm-modal__description {
  min-height: auto;
  display: flex;
  margin-bottom: 30px;
}

.dm-modal-delivery-add .dm-modal__description .button-comeback,
.dm-modal-payment-add .dm-modal__description .button-comeback {
  background: 0 0;
  border: none;
  cursor: pointer;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  display: flex;
  align-items: center;
  margin-right: 6px;
  transition: all 0.3s ease;
}
@media (any-hover:hover) {
  .dm-modal-delivery-add .dm-modal__description .button-comeback:hover,
  .dm-modal-payment-add .dm-modal__description .button-comeback:hover {
    -webkit-transform: rotate(180deg) translateX(2px);
    transform: rotate(180deg) translateX(2px);
  }
}

.dm-modal-delivery-add .dm-modal__description .button-comeback path,
.dm-modal-payment-add .dm-modal__description .button-comeback path {
  transition: all 0.3s ease;
  fill: #c1c1c1;
}
@media (any-hover:hover) {
  .dm-modal-delivery-add .dm-modal__description:hover path,
  .dm-modal-payment-add .dm-modal__description:hover path {
    fill: #3cc;
  }
}

.dm-modal-delivery-add .dm-modal__title,
.dm-modal-payment-add .dm-modal__title {
  margin: 0;
}

.dm-modal-delivery-add .dm-form__buttons,
.dm-modal-payment-add .dm-form__buttons {
  justify-content: center;
}

.dm-modal-delivery-add .dm-form__gr-col,
.dm-modal-payment-add .dm-form__gr-col {
  margin-bottom: 0;
}

.dm-modal-delivery-add .dm-label-desc,
.dm-modal-payment-add .dm-label-desc {
  display: flex;
  width: 100%;
}

.dm-modal-delivery-add .dm-label-desc__price,
.dm-modal-payment-add .dm-label-desc__price {
  color: #989898;
  font-weight: 400;
  padding-left: 10px;
  margin-left: auto;
}
@media (max-width:370px) {
  .dm-modal-delivery-add .dm-form__gr-col .dm-form__label-checkbox,
  .dm-modal-payment-add .dm-form__gr-col .dm-form__label-checkbox {
    padding: 12px 10px;
  }
}

.dm-form-cell:not(:last-child) {
  margin-bottom: 20px;
}

.dm-form-cell__input {
  display: none;
}

.dm-form-cell__input:checked+.dm-cell-label {
  border: 1px solid #3cc;
}

.dm-form-cell__input:checked+.dm-cell-label .dm-cell-label__circle {
  background: #3cc;
  border-color: #3cc;
}

.dm-cell-label {
  display: flex;
  border: 1px solid #ececec;
  border-radius: 3px;
  padding: 20px 16px 20px 20px;
  cursor: pointer;
}

.dm-cell-label__circle {
  display: flex;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 10px;
  border: 1px solid #ececec;
  background-color: #fafafa;
  transition: all 0.3s ease;
  position: relative;
  top: -3px;
  flex-shrink: 0;
}

.dm-cell-label__circle::after {
  content: '';
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #fafafa;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}

.dm-cell-label__info {
  padding-right: 10px;
  width: 100%;
}

.dm-cell-info {
  line-height: 120%;
  display: flex;
  flex-direction: column;
  margin-right: auto;
}

.dm-cell-info__name {
  color: #333;
  margin-bottom: 16px;
  letter-spacing: 1.35px;
  font-size: 18px;
  font-weight: 700;
}

.dm-cell-info__text {
  letter-spacing: 1.05px;
  font-size: 14px;
  color: #999;
}

.dm-cell-info__address {
  margin-bottom: 16px;
  max-width: 250px;
}

.dm-cell-info .dm-cell-sum {
  font-size: 16px;
  padding-left: 8px;
}
@media (max-width:767px) {
  .dm-cell-info .dm-cell-sum {
    font-size: 13px;
  }
}

.dm-cell-edit {
  position: relative;
  display: flex;
  justify-content: center;
  width: 6px;
  height: 20px;
  cursor: pointer;
  margin-left: auto;
}

.dm-cell-edit img {
  -o-object-fit: cover;
  object-fit: cover;
}

.dm-cell-modal {
  display: flex;
  flex-direction: column;
  border-radius: 3px;
  background-color: #fff;
  border: 1px solid #ececec;
  position: absolute;
  z-index: 10;
  top: calc(100% + 6px);
  left: 50%;
  -webkit-transform: translate(-50%,0);
  transform: translate(-50%,0);
  width: 256px;
  opacity: 0;
  visibility: hidden;
}
@media (max-width:767px) {
  .dm-cell-modal {
    left: auto;
    right: -10px;
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}

.dm-cell-modal.active {
  opacity: 1;
  visibility: visible;
}

.dm-cell-modal__item {
  width: 100%;
  padding: 10px 15px;
  font-size: 13px;
  line-height: 120%;
  color: #777;
}

.dm-cell-modal__item:not(:last-child) {
  border-bottom: 1px solid #ececec;
}
@media (any-hover:hover) {
  .dm-cell-modal__item:hover {
    background-color: #ece9e7;
  }
}

.ld-page-laout {
  display: flex;
  flex-direction: column;
}
@media (min-width:992px) {
  .ld-page-laout {
    min-height: 100vh;
    flex-direction: row;
  }
}

.ld-page-content {
  display: flex;
}
@media (min-width:992px) {
  .ld-page-content {
    flex: 0 0 100%;
  }
}

.ld-page-container {
 /* max-width: 1408px;*/
  width: 100%;
  padding: 0 0px;
  margin: 0 auto;
  background: #fff;
  display: flex;
}
@media (max-width:767px) {
  .ld-page-container {
    padding: 0 16px;
  }
}
@media (min-width:992px) {
  .ld-page-body {
    max-width: 430px;
    padding-right: 16px;
      padding-left: 30px;
  }
}

.ld-page-map {
  width: calc(100% - 430px);
  position: relative;
  flex-grow: 1;
  height:100vh;
}
@media (max-width:991px) {
  .ld-page-map {
    height: 700px;
    width: 100%;
  }
  .ld-page-container {flex-wrap: wrap}
}
@media (min-width:992px) {
  .ld-page-map {
   /*flex: 0 0 calc((100vw - 60px) * .68 + 16px);
    -webkit-transform: translate(-100%,0);
    transform: translate(-100%,0);*/
    z-index: 5;

  }

}
@media (min-width:1408px) {
  .ld-page-map {
    //flex: 0 0 calc(50vw + 231.84px);
  }
}

.ld-page-map iframe {
  width: 100%;
  height: 100%;
}

.ld-page-body__inner {
  padding-top: 24px;
  padding-bottom: 24px;
}

.ld-btn-back__link {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.ld-btn-back__icon {
  display: flex;
  align-items: center;
  margin-right: 8px;
}

.ld-btn-back__text {
  font-size: 18px;
  color: #999;
}

.ld-page-title {
  margin-top: 48px;
  margin-bottom: 24px;
}

.ld-page-title h2 {
  font-size: 24px;
}

.ld-page__text p {
  margin: 0;
}

.ld-page__text-bl {
  text-align: left;
  font-size: 14px;
  color: #333;
  line-height: 120%;
}

.ld-page__text-lt {
  text-align: left;
  color: #999;
  font-size: 13px;
  line-height: 120%;
}

.ld-triger-btn {
  display: flex;
  align-items: center;
  background: 0 0;
  border: none;
  cursor: pointer;
}

.ld-triger-btn__icon {
  display: flex;
  margin-right: 5px;
  width: 21px;
  flex-shrink: 0;
  justify-content: center;
}

div.ld-triger-btn {
  cursor: auto;
}

.ld-page__triger {
  margin-top: 10px;
  margin-bottom: 10px;
}

.ld-page__timework {
  margin-top: 32px;
  margin-bottom: 24px;
  font-size: 16px;
}

.ld-page__how .ld-page__text-bl,
.ld-page__timework .ld-page__text-bl {
  font-size: 16px;
}

.ld-page__how .ld-page__text-lt,
.ld-page__timework .ld-page__text-lt {
  font-size: 14px;
}

.ld-page__form {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
  margin-bottom: 24px;
}

.ld-page__form-label {
  margin-bottom: 8px;
}

.ld-page__form-input {
  padding: 12px 16px;
  border: 1px solid #ececec;
  background-color: #c2c2c2;
  border-radius: 5px;
}

.ld-page__payment {
  margin-top: 42px;
}

.ld-page__payment .ld-page__text-bl {
  margin-bottom: 16px;
}

.ld-page__payment-box {
  display: flex;
  flex-wrap: wrap;
}

.ld-page__payment-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
}

.ld-page__payment-img:not(:last-child) {
  margin-right: 32px;
  margin-bottom: 12px;
}

/*body div.header_wrap.visible-md.visible-lg, body div.top-block-wrapper {display: none !important;}*/
#order_map {position: fixed !important; display: none;
  width: 100%;
  z-index: 1000035 !important;
  top: 0;
  left: 0;
  background: #fff;}

.auth-form {padding: 30px;}
.dm-modal .auth-form {padding: 0;}
.auth-form-email {display: none}

.fld_req {    font-size: 13px;
  color: red;
  top: -3px;}
.openAuth {
  cursor: pointer;}

.auth-form .input-error {
  background-color: #f2dede;
}

.of-slide__data-title {padding-right: 4px;}
.owl-nav .disabled {display: none !important;}

.dm-form__gr-col .dm-form__label-checkbox.disabled {opacity: 0.5;
  cursor: default;}

