
:root {
    /* basic colors */
    --main-color: #000000;
    --main-secondary-color: #ffffff;
    --main-font-color: #000000;
    --main-bg-color: #ffffff;
    --main-error-color: #f04949;
    --main-card-bg-color: #F2F2F2;
    --main-shadow-basic-color: #000000;
    --main-footer-background-color: #333333;
    --main-footer-title-color: #EF4618;
    /* header colors */
    --header-nav-bg-color: var(--main-bg-color);
    --header-nav-item-color: var(--main-font-color);
    --header-bg-color: var(--main-bg-color);
    --header-nav-link-color: var(--main-color);
    --header-item-color: var(--main-color);
    --header-search-bg-color: var(--main-bg-color);
    --header-search-font-color: var(--main-font-color);
    --header-search-border-color: var(--main-color);
    /* mobile header colors */
    --mobile-header-bg-color: var(--main-color);
    --mobile-header-item-color: var(--main-secondary-color);
    --mobile-header-item-secondary-color: var(--main-color);
    --mobile-header-search-bg-color: var(--main-bg-color);
    --mobile-header-search-font-color: var(--main-font-color);
    --mobile-header-search-border-color: var(--main-secondary-color);
    --mobile-cart-item-color: var(--main-font-color);
    --mobile-cart-action-color: var(--main-color);
    /* footer colors */
    --footer-bg-color: var(--main-footer-background-color);
    --footer-line-color: #e0e6e8;
    --footer-item-color: #ffffff;
    --footer-title-color: var(--main-footer-title-color);
    /* card colors */
    --card-bg-color: var(--main-bg-color);
    --card-item-primary-color: var(--main-font-color);
    --card-item-secondary-color: var(--main-color);
    --card-action-primary-color: var(--main-color);
    --card-action-secondary-color: var(--main-secondary-color);
    --card-font-color: var(--main-font-color);
    /* modal card colors and childModal.vue component */
    --modal-card-bg-color: var(--main-bg-color);
    --modal-card-item-primary-color: var(--main-font-color);
    --modal-card-item-secondary-color: var(--main-secondary-color:);/*?:?*/
    --modal-card-action-primary-color: var(--main-color);
    --modal-card-action-secondary-color: var(--main-secondary-color);
    /* dropdown cards colors */
    --dropdown-card-bg-color: var(--main-bg-color);
    --dropdown-card-action-color: var(--main-color);
    --dropdown-card-item-color: var(--main-font-color);
    --dropdown-card-button-bg-color: var(--main-color);
    --dropdown-card-button-font-color: var(--main-secondary-color);
    /* sidebars colors */
    --sidebar-bg-color: var(--main-bg-color);
    --sidebar-item-color: var(--main-color);
    --sidebar-button-bg-color: var(--main-color);
    --sidebar-button-font-color: var(--main-secondary-color);
    /* slider colors */
    --slider-action-primary-color: var(--main-color);
    --slider-action-secondary-color: var(--main-font-color);
    /* special colors */
    --action-item-primary-color: var(--main-color);
    --action-item-secondary-color: var(--main-secondary-color);
    --input-font-color: var(--main-font-color);
    --search-font-color: var(--main-font-color);
    --block-title-color: var(--main-font-color);
    --checkbox-color: var(--main-color);
    /* shadows */
    --shadow: 0px 3px 5px 5px rgba(230, 230, 230, 0.456);
    --shadow-card: 10px 10px 0px 0px rgba(51,51,51,0.4);
    --shadow-hover: 0px 10px 10px 0px rgba(230, 230, 230, 0.656);
    --slide-overlay: linear-gradient(
        to bottom,
        rgba(237, 237, 237, 0) 0%,
        var(--main-bg-color) 100%
    );
    --image-ellipsis: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, .2) 20%,
        rgba(255, 255, 255, .8) 60%,
        var(--main-bg-color) 100%
    );
    --image-bg-color: linear-gradient(
        315deg,
        hsl(0, 0%, 40%) 0%,
        var(--main-bg-color) 74%
    );
    /* special variables */
    --breadcrumbs-main-color: var(--main-color);
    --breadcrumbs-active-color: var(--main-font-color);
    --breadcrumbs-divider: '/';
    /* skeleton placeholder */
    --placeholder-color: #d9d9d9;
    --placeholder-image: linear-gradient(315deg, #d9d9d9 0%, #f6f2f2 74%);
}
.active {
  opacity: 1 !important;
}
.active::before {
  position: absolute;
  left: 6px;
  font-size: 20px;
}
.check::before{
  content: '✓';
  color: #F1F1F1;
}
.group::after{
  /*margin-left: 10px;*/
  /*content: '✓';*/
}
.plus::before{
  content: '✓';
  color: #F1F1F1;
}
.plus .modifier-checker, .check .modifier-checker {
  background: #EF4618;
  border: 1px solid #EF4618;
}
@media (min-width: 768px) {
.tray-enter, .tray-leave-to {
      opacity: 0;
}
.tray-leave, .tray-enter-to {
      opacity: 1;
}
.tray-enter-active, .tray-leave-active {
      transition: opacity 200ms;
}
}
@media (max-width: 768px) {
.tray-enter-active {
      -webkit-animation: tray-in .5s;
              animation: tray-in .5s;
}
.tray-leave-active {
      animation: tray-in .5s reverse;
}
@-webkit-keyframes tray-in {
0% {
      transform: translateY(100%);
}
100% {
      transform: translateY(0%);
}
}
@keyframes tray-in {
0% {
      transform: translateY(100%);
}
100% {
      transform: translateY(0%);
}
}
}
.modal-card__overlay {
  position: fixed;
  top: 0;left: 0;right: 0;bottom: 0;
  background: rgba(51, 51, 51, 0.5);
  z-index: 25;
  overflow: auto;
  -webkit-filter: blur(0px);
}

/* chrome blur bag in popup's with overflow */
@media (max-width: 768px) {
.modal-card__overlay {
    top: 70px
}
}
.modal-card__block {
  display: flex;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  padding: 25px;
  transform: translate(-50%, -50%);
  height: auto;
  border-radius: 40px;
  z-index: 100;
  background: #F2F2F2;
}
@media (max-width: 768px) {
.modal-card__block {
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 95%;
    min-height: 100vh;
    top: 0;
    left: 0;
    transform: none;
    margin: 10px auto 30px;
    padding: 0
}
}
@media (max-width: 391px) {
.modal-card__block {
    border-radius: 20px
}
}
.product-modal-card__modifiers h4 {
  margin: 30px 0 20px 34px;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #333333;
}

/*.product-modal-card__modifiers h4:hover {*/

/*  color: var(--modal-card-action-primary-color);*/

/*}*/
.visible{
  display: flex!important;
  flex-direction: column;
}
.modifiers {
  display: none;
  cursor: pointer;
  height: 170px;
  overflow-y: scroll;
}
.modifier {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
  color: #333333;
  padding: 0;
}
.modifier:not(:last-child) {
  margin-bottom: 10px;
}
.modifier span{
  display: flex;
  align-items: center;
}
.modifier-checker {
  background: #F2F2F2;
  border: 1px solid #8F8C8C;
  border-radius: 5px;
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.modal-card__close-btn {
  position: absolute;
  width: 30px;
  height: 30px;
  top: -5px;
  right: -53px;
  cursor: pointer;
  z-index: 100;
}
@media (max-width: 480px) {
.modal-card__close-btn {
    display: none
}
}
.modal-card__close-btn--line {
  width: 100%;
  height: 4px;
  background-color: #F2F2F2;
}
.modal-card__close-btn--line:first-of-type {
  transform: rotate(45deg) translate(12px, 12px);
}
.modal-card__close-btn--line:last-of-type {
  transform: rotate(-45deg) translate(-9px, 9px);
}
.modal-card__down-btn {
  display: none;
  position: absolute;
  top: 15px;
  left: 15px;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  z-index: 100;
  background: #EBE6E6;
  transform: rotate(90deg);
  border-radius: 50%;
}
@media (max-width: 391px) {
.modal-card__down-btn {
    display: flex;
    justify-content: center
}
}
.modal-card__down-btn--icon {
  color: #333333;
  font-size: 15px;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
.modal-card__swipe-line {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translate(-50%, 0)
}
}
@media (max-width: 768px) {
.modal-card__swipe-line::before {
    content: '';
    position: absolute;
    margin-right: -50%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 50px;
    height: 4px;
    border-radius: 3px;
    background: color(#000000 lightness(40%));
    background: color(var(--modal-card-action-primary-color) lightness(40%))
}
}
.modal-card__body {
  padding: 0 30px;
}
@media (max-width: 480px) {
.modal-card__body {
    padding: 30px 20px;
    overflow: hidden
}
}
.modal-card__content {
  display: flex;
  height: 100%;
}
@media (max-width: 768px) {
.modal-card__content {
    flex-direction: column
}
}
@media (min-width: 480px) and (max-width: 768px) {
.modal-card__content {
    align-items: center
}
}
.modal-card__container-img {
  position: relative;
}
.modal-card__slider {
  position: relative;
  height: 490px;
}
@media (max-width: 480px) {
.modal-card__slider {
    height: 100%
}
}
.modal-card__slider--lg {
  display: flex;
}
@media (max-width: 480px) {
.modal-card__slider--lg {
    width: 100%
}
}
.modal-card__btn-next--lg, .modal-card__btn-prev--lg {
  display: none;
}
.modal-card__img {
  width: 490px;
  height: 490px;
  border-radius: 25px;
  overflow: hidden;
}
@media (max-width: 480px) {
.modal-card__img {
    width: 100%;
    transition: all ease .5s;
    padding: 0;
    border-radius: 20px 20px 0 0;
    height: 100%
}
}
@-webkit-keyframes placeHolderShimmer {
0% {
    background-position: -1200px 0
}
100% {
    background-position: 1200px 0
}
}
@keyframes placeHolderShimmer {
0% {
    background-position: -1200px 0
}
100% {
    background-position: 1200px 0
}
}
.modal-card__image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: placeHolderShimmer;
          animation-name: placeHolderShimmer;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  background: linear-gradient(to right, #e2e2e2 8%, #f2f2f2 40%, #e2e2e2 100%);
  background-size: 1200px 104px;
}
@media (min-width: 480px) {
.modal-card__image {
    height: 100%
}
}
@media (max-width: 480px) {
.modal-card__image {
    width: 100%
}
}
.modal-card__carousel {
  display: flex;
  align-items: center;
  justify-content: end;
  position: absolute;
  margin-top: 10px;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 480px) {
.modal-card__carousel {
    display: none
}
}
.modal-card__btn-next--sm, .modal-card__btn-prev--sm {
  display: block;
  position: absolute;
  height: 30px;
  padding: 10px;
}
.modal-card__btn-next--sm:focus, .modal-card__btn-prev--sm:focus {
  outline: none;
}
.modal-card__btn-next--sm:hover::before, .modal-card__btn-prev--sm:hover::after,
.modal-card__btn-prev--sm:hover::before, .modal-card__btn-next--sm:hover::after {
  background:#ffffff;
  background:var(--modal-card-bg-color);/*#b9bcc4 */
}
.modal-card__btn-next--sm::before, .modal-card__btn-prev--sm::after,
.modal-card__btn-prev--sm::before, .modal-card__btn-next--sm::after {
  transition: 0.3s ease-out;
}
.modal-card__btn-prev--sm {
  left: -25px;
}
.modal-card__btn-prev--sm::before {
  content: '';
  display: block;
  position: absolute;
  top: 12px;
  right: 10px;
  width: 3px;
  height: 20px;
  background-color: color(#000000 lightness(40%));
  background-color: color(var(--modal-card-action-primary-color) lightness(40%));
  transform: rotate(-45deg);
}
.modal-card__btn-prev--sm::after {
  content: '';
  display: block;
  position: absolute;
  top: 3px;
  right: 3px;
  width: 3px;
  height: 20px;
  background-color: color(#000000 lightness(40%));
  background-color: color(var(--modal-card-action-primary-color) lightness(40%));
  transform: rotate(45deg);
  transform-origin: 100% 0%;
}
.modal-card__btn-next--sm {
  right: -25px;
}
.modal-card__btn-next--sm::before {
  content: '';
  display: block;
  position: absolute;
  top: 10px;
  right: 7px;
  width: 3px;
  height: 20px;
  background-color: color(#000000 lightness(40%));
  background-color: color(var(--modal-card-action-primary-color) lightness(40%));
  transform: rotate(45deg);
}
.modal-card__btn-next--sm::after {
  content: '';
  display: block;
  position: absolute;
  top: -1px;
  right: 15px;
  width: 3px;
  height: 20px;
  background-color: color(#000000 lightness(40%));
  background-color: color(var(--modal-card-action-primary-color) lightness(40%));
  transform: rotate(-45deg);
  transform-origin: 100% 0%;
}
.modal-card__changer {
  overflow: hidden;
}
.modal-card__row {
  display: flex;
  transition: all ease .5s;
}
.modal-card__item {
  flex: 1 1 0%;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: white;
  margin-right: 10px;
  cursor: pointer;
}
.modal-card__item.visible{
  background: #EF4618;
}
.modal-card__item--img {
  border-radius: 7px;
  width: 75px;
  height: 75px;
  opacity: 0.5;
  transition: 0.15s ease-out;
}
@media (min-width: 480px) {
.modal-card__item--img {
    background-color: #ffffff;
    background-color: var(--modal-card-bg-color);
    background-image: linear-gradient(
        315deg,
        hsl(0, 0%, 40%) 0%,
        #ffffff 74%
    );
    background-image: var(--image-bg-color)
}
}
.modal-card__item--img:hover {
  border-radius: 7px;
  width: 75px;
  height: 75px;
  opacity: 1;
}
.visible {
  opacity: 1;
}
.modal-description {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  width: 495px;
}
@media (max-width: 768px) {
.modal-description {
    margin-left: 0px;
    width: 100%
}
}
.product-modal-card {
  display: flex;
  flex-direction: column;
  width: 415px;
}
@media (max-width: 480px) {
.product-modal-card {
    width: 100%
}
}
.product-modal-card__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: #333333;
  margin: 0;
}
@media (min-width: 768px) {
.product-modal-card__title {
    margin-top: 0
}
}
@media (max-width: 768px) {
.product-modal-card__title {
    font-size: 30px
}
}
@media (max-width: 480px) {
.product-modal-card__title {
    font-size: 24px;
    margin-bottom: 20px
}
}
.product-modal-card__desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #333333;
  margin: 30px 0 0 0;
}
@media (max-width: 768px) {
.product-modal-card__desc {
    font-size: 20px;
    margin-top: 0
}
}
@media (max-width: 480px) {
.product-modal-card__desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px
}
}
.product-modal-card__parameter {
  background-color: #ffffff;
  background-color: var(--modal-card-bg-color);
  height: 37px;
  display: flex;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  margin: 8px 0px;
}
.radio-product {
  position: relative;
  flex: 1 1 0%;
  text-align: center;
  transition: color 150ms ease 0s;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: #000000;
  color: var(--main-font-color);
  font-size: 12px;
  line-height: 32px;
}
.radio-product__title {
  line-height: 24px;
  font-size: 14px;
}
.radio-product__toggle {
  width: 100%;
  height: 100%;
}
.toggle {
  position: relative;
  height: 100%;
  transition: transform 200ms ease-out 0s, width;
}
.toggle::before {
  content: "";
  position: absolute;
  height: 92%;
  width: 98%;
  margin: 2px;
  display: block;
  background-color: #ffffff;
  background-color: var(--modal-card-bg-color);
  box-shadow: 0px 3px 5px 5px rgba(230, 230, 230, 0.456);
  box-shadow: var(--shadow);
  border-radius: 7px;
}
.toggle::before:hover{
      box-shadow: 0px 10px 10px 0px rgba(230, 230, 230, 0.656);
      box-shadow: var(--shadow-hover);
}
.radio-product__input {
  display: none;
  position: absolute;
}
.radio-product__label {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  height: 100%;
}
.modal-card__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-weight: 700;
  color: #333333;
}
.product-modal-card__btn {
  display: inline-block;
  border: none;
  border-radius: 25px;
  padding: 15px 40px;
  outline: none;
  font-style: normal;
  font-weight: 500;
  line-height: 19px;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  background: #EF4618;
  color: #FFFFFF;
}
@media (max-width: 786px) {
.product-modal-card__btn {
    width: 100%
}
}
.product-modal-card__btn--disabled {
  background: #E0E0E0;
  color: #8B8B8B;
  cursor: not-allowed
}
.product-modal-card__btn:hover {
  background: #F7967D;
  cursor: pointer;
}
.product-modal-card__btn:active {
  background: #9B2708;
}
.product-modal-card__controle {
  display: flex;
  align-items: center;
}
.modal__button {
  margin: auto 0 0 auto;
}
@media (max-width: 768px) {
.modal__button {
    display: none
}
}
.modal__button--mobile {
  display: none;
}
@media (max-width: 768px) {
.modal__button--mobile {
    display: block;
    position: relative;
    bottom: 0;
    width: 90%;
    background: none;
    box-shadow: none;
    box-sizing: border-box;
    padding: 12px 16px
}
}
@media (max-width: 480px) {
.modal__button--mobile {
    position: -webkit-sticky;
    position: sticky;
    width: 100%;
    background: none;
    box-shadow: none;
    padding: 20px 20px 10px
}
}



:root {
    /* basic colors */
    --main-color: #000000;
    --main-secondary-color: #ffffff;
    --main-font-color: #000000;
    --main-bg-color: #ffffff;
    --main-error-color: #f04949;
    --main-card-bg-color: #F2F2F2;
    --main-shadow-basic-color: #000000;
    --main-footer-background-color: #333333;
    --main-footer-title-color: #EF4618;
    /* header colors */
    --header-nav-bg-color: var(--main-bg-color);
    --header-nav-item-color: var(--main-font-color);
    --header-bg-color: var(--main-bg-color);
    --header-nav-link-color: var(--main-color);
    --header-item-color: var(--main-color);
    --header-search-bg-color: var(--main-bg-color);
    --header-search-font-color: var(--main-font-color);
    --header-search-border-color: var(--main-color);
    /* mobile header colors */
    --mobile-header-bg-color: var(--main-color);
    --mobile-header-item-color: var(--main-secondary-color);
    --mobile-header-item-secondary-color: var(--main-color);
    --mobile-header-search-bg-color: var(--main-bg-color);
    --mobile-header-search-font-color: var(--main-font-color);
    --mobile-header-search-border-color: var(--main-secondary-color);
    --mobile-cart-item-color: var(--main-font-color);
    --mobile-cart-action-color: var(--main-color);
    /* footer colors */
    --footer-bg-color: var(--main-footer-background-color);
    --footer-line-color: #e0e6e8;
    --footer-item-color: #ffffff;
    --footer-title-color: var(--main-footer-title-color);
    /* card colors */
    --card-bg-color: var(--main-bg-color);
    --card-item-primary-color: var(--main-font-color);
    --card-item-secondary-color: var(--main-color);
    --card-action-primary-color: var(--main-color);
    --card-action-secondary-color: var(--main-secondary-color);
    --card-font-color: var(--main-font-color);
    /* modal card colors and childModal.vue component */
    --modal-card-bg-color: var(--main-bg-color);
    --modal-card-item-primary-color: var(--main-font-color);
    --modal-card-item-secondary-color: var(--main-secondary-color:);/*?:?*/
    --modal-card-action-primary-color: var(--main-color);
    --modal-card-action-secondary-color: var(--main-secondary-color);
    /* dropdown cards colors */
    --dropdown-card-bg-color: var(--main-bg-color);
    --dropdown-card-action-color: var(--main-color);
    --dropdown-card-item-color: var(--main-font-color);
    --dropdown-card-button-bg-color: var(--main-color);
    --dropdown-card-button-font-color: var(--main-secondary-color);
    /* sidebars colors */
    --sidebar-bg-color: var(--main-bg-color);
    --sidebar-item-color: var(--main-color);
    --sidebar-button-bg-color: var(--main-color);
    --sidebar-button-font-color: var(--main-secondary-color);
    /* slider colors */
    --slider-action-primary-color: var(--main-color);
    --slider-action-secondary-color: var(--main-font-color);
    /* special colors */
    --action-item-primary-color: var(--main-color);
    --action-item-secondary-color: var(--main-secondary-color);
    --input-font-color: var(--main-font-color);
    --search-font-color: var(--main-font-color);
    --block-title-color: var(--main-font-color);
    --checkbox-color: var(--main-color);
    /* shadows */
    --shadow: 0px 3px 5px 5px rgba(230, 230, 230, 0.456);
    --shadow-card: 10px 10px 0px 0px rgba(51,51,51,0.4);
    --shadow-hover: 0px 10px 10px 0px rgba(230, 230, 230, 0.656);
    --slide-overlay: linear-gradient(
        to bottom,
        rgba(237, 237, 237, 0) 0%,
        var(--main-bg-color) 100%
    );
    --image-ellipsis: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, .2) 20%,
        rgba(255, 255, 255, .8) 60%,
        var(--main-bg-color) 100%
    );
    --image-bg-color: linear-gradient(
        315deg,
        hsl(0, 0%, 40%) 0%,
        var(--main-bg-color) 74%
    );
    /* special variables */
    --breadcrumbs-main-color: var(--main-color);
    --breadcrumbs-active-color: var(--main-font-color);
    --breadcrumbs-divider: '/';
    /* skeleton placeholder */
    --placeholder-color: #d9d9d9;
    --placeholder-image: linear-gradient(315deg, #d9d9d9 0%, #f6f2f2 74%);
}
.croppa-container {
   background-color: transparent;
   border: 2px solid #000000;
   border: 2px solid var(--main-color);/*grey */
}
.croppa-container:hover {
   opacity: 1;
   background-color: transparent;
}
.image-cropper__content {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
}
.image-cropper__cropper{
    width: 100%;
    height: 350px;
}
.image-cropper__croppa {
    width: 100%;
    height: 100%;
}
@media (max-width: 1440px) {
.image-cropper__cropper {
        height: 333px;
}
}
@media (max-width: 1200px) {
.image-cropper__cropper {
        height: 274px;
}
}
@media (max-width: 990px) {
.image-cropper__cropper {
        height: 210px;
}
}
@media (max-width: 768px) {
.image-cropper__cropper {
        height: 155px;
}
}
@media (max-width: 600px) {
.image-cropper__cropper {
        height: 148px;
}
}
@media (max-width: 414px) {
.image-cropper__cropper {
        height: 100px;
}
}
.actions {
    margin-top: 1rem;
}
.actions a {
    display: inline-block;
    padding: 5px 15px;
    background:#000000;
    background:var(--main-color); /*#0062cc;*/
    color: #ffffff;
    color: var(--main-secondary-color);/*white */
    text-decoration: none;
    border-radius: 3px;
    margin-right: 1rem;
    margin-bottom: 1rem;
}
.actions a:hover {
    background:rgb(0, 0, 0);
    background:rgb(0, 0, 0); /*#0062cc;*/
}

.sk-fading-circle {
  position: absolute; }
  .sk-fading-circle .sk-circle {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0; }
  .sk-fading-circle .sk-circle .sk-circle-indicator {
    display: block;
    margin: 0 auto;
    width: 15%;
    height: 15%;
    border-radius: 100%;
    -webkit-animation: sk-circleFadeDelay 1s infinite ease-in-out both;
            animation: sk-circleFadeDelay 1s infinite ease-in-out both; }
  .sk-fading-circle .sk-circle2 {
    transform: rotate(30deg); }
  .sk-fading-circle .sk-circle3 {
    transform: rotate(60deg); }
  .sk-fading-circle .sk-circle4 {
    transform: rotate(90deg); }
  .sk-fading-circle .sk-circle5 {
    transform: rotate(120deg); }
  .sk-fading-circle .sk-circle6 {
    transform: rotate(150deg); }
  .sk-fading-circle .sk-circle7 {
    transform: rotate(180deg); }
  .sk-fading-circle .sk-circle8 {
    transform: rotate(210deg); }
  .sk-fading-circle .sk-circle9 {
    transform: rotate(240deg); }
  .sk-fading-circle .sk-circle10 {
    transform: rotate(270deg); }
  .sk-fading-circle .sk-circle11 {
    transform: rotate(300deg); }
  .sk-fading-circle .sk-circle12 {
    transform: rotate(330deg); }
  .sk-fading-circle .sk-circle2 .sk-circle-indicator {
    -webkit-animation-delay: -0.91667s;
            animation-delay: -0.91667s; }
  .sk-fading-circle .sk-circle3 .sk-circle-indicator {
    -webkit-animation-delay: -0.83333s;
            animation-delay: -0.83333s; }
  .sk-fading-circle .sk-circle4 .sk-circle-indicator {
    -webkit-animation-delay: -0.75s;
            animation-delay: -0.75s; }
  .sk-fading-circle .sk-circle5 .sk-circle-indicator {
    -webkit-animation-delay: -0.66667s;
            animation-delay: -0.66667s; }
  .sk-fading-circle .sk-circle6 .sk-circle-indicator {
    -webkit-animation-delay: -0.58333s;
            animation-delay: -0.58333s; }
  .sk-fading-circle .sk-circle7 .sk-circle-indicator {
    -webkit-animation-delay: -0.5s;
            animation-delay: -0.5s; }
  .sk-fading-circle .sk-circle8 .sk-circle-indicator {
    -webkit-animation-delay: -0.41667s;
            animation-delay: -0.41667s; }
  .sk-fading-circle .sk-circle9 .sk-circle-indicator {
    -webkit-animation-delay: -0.33333s;
            animation-delay: -0.33333s; }
  .sk-fading-circle .sk-circle10 .sk-circle-indicator {
    -webkit-animation-delay: -0.25s;
            animation-delay: -0.25s; }
  .sk-fading-circle .sk-circle11 .sk-circle-indicator {
    -webkit-animation-delay: -0.16667s;
            animation-delay: -0.16667s; }
  .sk-fading-circle .sk-circle12 .sk-circle-indicator {
    -webkit-animation-delay: -0.08333s;
            animation-delay: -0.08333s; }
  @-webkit-keyframes sk-circleFadeDelay {
  0%,
  39%,
  100% {
    opacity: 0; }
  40% {
    opacity: 1; } }
  @keyframes sk-circleFadeDelay {
  0%,
  39%,
  100% {
    opacity: 0; }
  40% {
    opacity: 1; } }
  .croppa-container {
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  font-size: 0;
  align-self: flex-start;
  background-color: #e6e6e6;
}
  .croppa-container canvas {
  transition: all 0.3s;
}
  .croppa-container:hover {
  opacity: 0.7;
}
  .croppa-container.croppa--dropzone {
  box-shadow: inset 0 0 10px #333;
}
  .croppa-container.croppa--dropzone canvas {
  opacity: 0.5;
}
  .croppa-container.croppa--disabled-cc {
  cursor: default;
}
  .croppa-container.croppa--disabled-cc:hover {
  opacity: 1;
}
  .croppa-container.croppa--has-target {
  cursor: move;
}
  .croppa-container.croppa--has-target:hover {
  opacity: 1;
}
  .croppa-container.croppa--has-target.croppa--disabled-mz {
  cursor: default;
}
  .croppa-container.croppa--disabled {
  cursor: not-allowed;
}
  .croppa-container.croppa--disabled:hover {
  opacity: 1;
}
  .croppa-container.croppa--passive {
  cursor: default;
}
  .croppa-container.croppa--passive:hover {
  opacity: 1;
}
  .croppa-container svg.icon-remove {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  filter: drop-shadow(-2px 2px 2px rgba(0,0,0,0.7));
  z-index: 10;
  cursor: pointer;
  border: 2px solid #fff;
}



:root {
    /* basic colors */
    --main-color: #000000;
    --main-secondary-color: #ffffff;
    --main-font-color: #000000;
    --main-bg-color: #ffffff;
    --main-error-color: #f04949;
    --main-card-bg-color: #F2F2F2;
    --main-shadow-basic-color: #000000;
    --main-footer-background-color: #333333;
    --main-footer-title-color: #EF4618;
    /* header colors */
    --header-nav-bg-color: var(--main-bg-color);
    --header-nav-item-color: var(--main-font-color);
    --header-bg-color: var(--main-bg-color);
    --header-nav-link-color: var(--main-color);
    --header-item-color: var(--main-color);
    --header-search-bg-color: var(--main-bg-color);
    --header-search-font-color: var(--main-font-color);
    --header-search-border-color: var(--main-color);
    /* mobile header colors */
    --mobile-header-bg-color: var(--main-color);
    --mobile-header-item-color: var(--main-secondary-color);
    --mobile-header-item-secondary-color: var(--main-color);
    --mobile-header-search-bg-color: var(--main-bg-color);
    --mobile-header-search-font-color: var(--main-font-color);
    --mobile-header-search-border-color: var(--main-secondary-color);
    --mobile-cart-item-color: var(--main-font-color);
    --mobile-cart-action-color: var(--main-color);
    /* footer colors */
    --footer-bg-color: var(--main-footer-background-color);
    --footer-line-color: #e0e6e8;
    --footer-item-color: #ffffff;
    --footer-title-color: var(--main-footer-title-color);
    /* card colors */
    --card-bg-color: var(--main-bg-color);
    --card-item-primary-color: var(--main-font-color);
    --card-item-secondary-color: var(--main-color);
    --card-action-primary-color: var(--main-color);
    --card-action-secondary-color: var(--main-secondary-color);
    --card-font-color: var(--main-font-color);
    /* modal card colors and childModal.vue component */
    --modal-card-bg-color: var(--main-bg-color);
    --modal-card-item-primary-color: var(--main-font-color);
    --modal-card-item-secondary-color: var(--main-secondary-color:);/*?:?*/
    --modal-card-action-primary-color: var(--main-color);
    --modal-card-action-secondary-color: var(--main-secondary-color);
    /* dropdown cards colors */
    --dropdown-card-bg-color: var(--main-bg-color);
    --dropdown-card-action-color: var(--main-color);
    --dropdown-card-item-color: var(--main-font-color);
    --dropdown-card-button-bg-color: var(--main-color);
    --dropdown-card-button-font-color: var(--main-secondary-color);
    /* sidebars colors */
    --sidebar-bg-color: var(--main-bg-color);
    --sidebar-item-color: var(--main-color);
    --sidebar-button-bg-color: var(--main-color);
    --sidebar-button-font-color: var(--main-secondary-color);
    /* slider colors */
    --slider-action-primary-color: var(--main-color);
    --slider-action-secondary-color: var(--main-font-color);
    /* special colors */
    --action-item-primary-color: var(--main-color);
    --action-item-secondary-color: var(--main-secondary-color);
    --input-font-color: var(--main-font-color);
    --search-font-color: var(--main-font-color);
    --block-title-color: var(--main-font-color);
    --checkbox-color: var(--main-color);
    /* shadows */
    --shadow: 0px 3px 5px 5px rgba(230, 230, 230, 0.456);
    --shadow-card: 10px 10px 0px 0px rgba(51,51,51,0.4);
    --shadow-hover: 0px 10px 10px 0px rgba(230, 230, 230, 0.656);
    --slide-overlay: linear-gradient(
        to bottom,
        rgba(237, 237, 237, 0) 0%,
        var(--main-bg-color) 100%
    );
    --image-ellipsis: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, .2) 20%,
        rgba(255, 255, 255, .8) 60%,
        var(--main-bg-color) 100%
    );
    --image-bg-color: linear-gradient(
        315deg,
        hsl(0, 0%, 40%) 0%,
        var(--main-bg-color) 74%
    );
    /* special variables */
    --breadcrumbs-main-color: var(--main-color);
    --breadcrumbs-active-color: var(--main-font-color);
    --breadcrumbs-divider: '/';
    /* skeleton placeholder */
    --placeholder-color: #d9d9d9;
    --placeholder-image: linear-gradient(315deg, #d9d9d9 0%, #f6f2f2 74%);
}
.swiper-slide__block {
    position: relative;
    width: 100%;
    height: 500px;
}
.swiper-slide__description-align-right {
    align-items: flex-end !important;
    left: 68%;
}
.swiper-slide__description-align-right p, .swiper-slide__description-align-right h3 {
    text-align: right !important;
}
.swiper-slide__description-align-bottom {
    bottom: 0;
}
.swiper-slide__description {
    position: absolute;
    align-items: flex-start;
    display: flex;
    justify-content: flex-start;
    width: 25%;
    max-height: 85%;
    flex-direction: column;
    padding: 30px 50px;
    z-index: 10;
}
.swiper-slide__description h3 {
    flex-shrink: 0;
    margin: 0;
    max-width: 150%;
    word-wrap: break-word;
    overflow: hidden;
    font-size: 38px;
    font-weight: normal;
}
.swiper-slide__description p {
    max-width: 100%;
    word-wrap: break-word;
    overflow: hidden;
    font-size: 18px;
    line-height: 28px;
}
.swiper-slide__button {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    font-weight: 500;
    line-height: 19px;
    font-size: 16px;
    text-align: center;
    width: 197px;
    height: 45px;
    text-decoration: none;
    color: #F2F2F2;
    background: #EF4618;
}
.swiper-slide__img {
    right: 0;
}
.swiper-slide__img img {
    width: 100%;
    border-radius: 15px;
}
.swiper-slide__button:hover {
    cursor: pointer;
    background-color: rgb(0, 0, 0);
    background-color: rgb(0, 0, 0);/*color: #84b65d(blackness(+10%)) */
}
@media (max-width: 1440px) {
.swiper-slide {
        height: 333px;
}
}
@media (max-width: 1200px) {
.swiper-slide {
        height: 274px;
}
}
@media (max-width: 990px) {
.swiper-slide {
        height: 210px;
}
.swiper-slide__description {
        padding: 10px 30px;
}
.swiper-slide__description h3 {
        font-size: 30px;
}
.swiper-slide__description p {
        font-size: 14px;
}
}
@media (max-width: 768px) {
.swiper-slide {
        height: 155px;
}
.swiper-slide__description p {
        line-height: 1.5em;
}
}
@media (max-width: 600px) {
.swiper-slide {
        height: 148px;
}
.swiper-slide__description h3 {
        font-size: 24px;
}
.swiper-slide__description p {
        font-size: 12px;
        margin: 0;
}
.swiper-slide__button {
        padding: 6px 8px;
        min-width: auto;
        line-height: 10px;
        font-size: 12px;
}
}
@media (max-width: 414px) {
.swiper-slide {
        height: 100px;
}
.swiper-slide__description h3 {
        font-size: 18px;
}
.swiper-slide__description p {
        font-size: 10px;
}
.swiper-slide__button {
        padding: 4px 6px;
        min-width: auto;
        line-height: 10px;
        font-size: 10px;
}
}


[data-v-1a6afa8b]:root {
    /* basic colors */
    --main-color: #000000;
    --main-secondary-color: #ffffff;
    --main-font-color: #000000;
    --main-bg-color: #ffffff;
    --main-error-color: #f04949;
    --main-card-bg-color: #F2F2F2;
    --main-shadow-basic-color: #000000;
    --main-footer-background-color: #333333;
    --main-footer-title-color: #EF4618;
    /* header colors */
    --header-nav-bg-color: var(--main-bg-color);
    --header-nav-item-color: var(--main-font-color);
    --header-bg-color: var(--main-bg-color);
    --header-nav-link-color: var(--main-color);
    --header-item-color: var(--main-color);
    --header-search-bg-color: var(--main-bg-color);
    --header-search-font-color: var(--main-font-color);
    --header-search-border-color: var(--main-color);
    /* mobile header colors */
    --mobile-header-bg-color: var(--main-color);
    --mobile-header-item-color: var(--main-secondary-color);
    --mobile-header-item-secondary-color: var(--main-color);
    --mobile-header-search-bg-color: var(--main-bg-color);
    --mobile-header-search-font-color: var(--main-font-color);
    --mobile-header-search-border-color: var(--main-secondary-color);
    --mobile-cart-item-color: var(--main-font-color);
    --mobile-cart-action-color: var(--main-color);
    /* footer colors */
    --footer-bg-color: var(--main-footer-background-color);
    --footer-line-color: #e0e6e8;
    --footer-item-color: #ffffff;
    --footer-title-color: var(--main-footer-title-color);
    /* card colors */
    --card-bg-color: var(--main-bg-color);
    --card-item-primary-color: var(--main-font-color);
    --card-item-secondary-color: var(--main-color);
    --card-action-primary-color: var(--main-color);
    --card-action-secondary-color: var(--main-secondary-color);
    --card-font-color: var(--main-font-color);
    /* modal card colors and childModal.vue component */
    --modal-card-bg-color: var(--main-bg-color);
    --modal-card-item-primary-color: var(--main-font-color);
    --modal-card-item-secondary-color: var(--main-secondary-color:);/*?:?*/
    --modal-card-action-primary-color: var(--main-color);
    --modal-card-action-secondary-color: var(--main-secondary-color);
    /* dropdown cards colors */
    --dropdown-card-bg-color: var(--main-bg-color);
    --dropdown-card-action-color: var(--main-color);
    --dropdown-card-item-color: var(--main-font-color);
    --dropdown-card-button-bg-color: var(--main-color);
    --dropdown-card-button-font-color: var(--main-secondary-color);
    /* sidebars colors */
    --sidebar-bg-color: var(--main-bg-color);
    --sidebar-item-color: var(--main-color);
    --sidebar-button-bg-color: var(--main-color);
    --sidebar-button-font-color: var(--main-secondary-color);
    /* slider colors */
    --slider-action-primary-color: var(--main-color);
    --slider-action-secondary-color: var(--main-font-color);
    /* special colors */
    --action-item-primary-color: var(--main-color);
    --action-item-secondary-color: var(--main-secondary-color);
    --input-font-color: var(--main-font-color);
    --search-font-color: var(--main-font-color);
    --block-title-color: var(--main-font-color);
    --checkbox-color: var(--main-color);
    /* shadows */
    --shadow: 0px 3px 5px 5px rgba(230, 230, 230, 0.456);
    --shadow-card: 10px 10px 0px 0px rgba(51,51,51,0.4);
    --shadow-hover: 0px 10px 10px 0px rgba(230, 230, 230, 0.656);
    --slide-overlay: linear-gradient(
        to bottom,
        rgba(237, 237, 237, 0) 0%,
        var(--main-bg-color) 100%
    );
    --image-ellipsis: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, .2) 20%,
        rgba(255, 255, 255, .8) 60%,
        var(--main-bg-color) 100%
    );
    --image-bg-color: linear-gradient(
        315deg,
        hsl(0, 0%, 40%) 0%,
        var(--main-bg-color) 74%
    );
    /* special variables */
    --breadcrumbs-main-color: var(--main-color);
    --breadcrumbs-active-color: var(--main-font-color);
    --breadcrumbs-divider: '/';
    /* skeleton placeholder */
    --placeholder-color: #d9d9d9;
    --placeholder-image: linear-gradient(315deg, #d9d9d9 0%, #f6f2f2 74%);
}
.swiper-slide__block[data-v-1a6afa8b] {
    position: relative;
    width: 100%;
    height: 100%;
}
.swiper-slide__description-align-right[data-v-1a6afa8b] {
    align-items: flex-end;
    left: 40%;
}
.swiper-slide__description-align-right p[data-v-1a6afa8b], .swiper-slide__description-align-right h3[data-v-1a6afa8b] {
    text-align: right;
}
.swiper-slide__description-align-bottom[data-v-1a6afa8b] {
    bottom: 0;
}
.swiper-slide__description[data-v-1a6afa8b] {
    box-sizing: border-box;
    position: absolute;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 60%;
    max-height: 100%;
    height: 100%;
    flex-direction: column;
    padding: 91px 130px;
    z-index: 10;
}
.swiper-slide__description h3[data-v-1a6afa8b] {
    flex-shrink: 0;
    margin: 0;
    max-width: 150%;
    text-align: left;
    word-wrap: break-word;
    overflow: hidden;
    line-height: 97px;
    font-size: 80px;
    font-weight: 700;
}
.swiper-slide__description p[data-v-1a6afa8b] {
    max-width: 100%;
    word-wrap: break-word;
    text-align: left;
    overflow: hidden;
    font-weight: 400;
    font-size: 24px;
    line-height: 29px;
}
.swiper-slide__button[data-v-1a6afa8b] {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    font-weight: 500;
    line-height: 19px;
    font-size: 16px;
    text-align: center;
    width: 197px;
    height: 45px;
    text-decoration: none;
    color: #F2F2F2;
    background: #EF4618;
}
.swiper-slide__button[data-v-1a6afa8b]:hover {
    cursor: pointer;
    background-color: #F7967D;
}
.swiper-slide__button[data-v-1a6afa8b]:active {
    background: #9B2708;
}
.swiper-slide__img[data-v-1a6afa8b] {
    position: absolute;
    right: 0;
    height: 100%;
}
.swiper-slide__img img[data-v-1a6afa8b] {
    height: 100%;
    border-radius: 15px;
    -o-object-fit: cover;
       object-fit: cover;
}
@media (max-width: 768px) {
.swiper-slide__img[data-v-1a6afa8b] {
        padding-right: 45px;
}
}
.swiper[data-v-1a6afa8b] {
    height: 500px;
    width: 100%;
}
.swiper-slide[data-v-1a6afa8b] {
    height: 350px;
    width: 100%;
    display: flex;
    align-items: center;
    font-weight: bold;
    overflow: hidden;
}
.swiper-pagination[data-v-1a6afa8b] .swiper-pagination-bullet-active {
    background-color: #000000;
    background-color: var(--main-color);
}
.swiper-arrow[data-v-1a6afa8b] {
    color: #000000;
    color: var(--main-color);
    opacity:.3;
    transition: 0.3s;
}
.swiper-arrow[data-v-1a6afa8b]:hover {
    color: hsl(0, 0%, 10%);
    color: hsl(0, 0%, 10%);
    opacity:1;
}
@media (max-width: 1680px) {
.swiper-slide__description[data-v-1a6afa8b] {
        padding: 91px 100px;
}
}
@media (max-width: 1440px) {
.swiper-slide[data-v-1a6afa8b] {
        height: 333px;
}
.swiper-slide__description[data-v-1a6afa8b] {
        padding: 91px 50px;
}
.swiper[data-v-1a6afa8b] {
        height: 500px;
}
}
@media (max-width: 1200px) {
.swiper-slide[data-v-1a6afa8b] {
        height: 274px;
}
.swiper[data-v-1a6afa8b] {
        height: 400px;
        width: 100%;
}
}
@media (max-width: 990px) {
.swiper-slide[data-v-1a6afa8b] {
        height: 210px;
}
.swiper[data-v-1a6afa8b] {
        height: 300px;
        width: 100%;
}
.swiper-slide__description[data-v-1a6afa8b] {
        padding: 30px 12px 21px 12px;
}
.swiper-slide__description h3[data-v-1a6afa8b] {
        font-size: 30px;
}
.swiper-slide__description p[data-v-1a6afa8b] {
        font-size: 14px;
}
}
@media (max-width: 768px) {
.swiper-slide[data-v-1a6afa8b] {
        height: 155px;
}
.swiper-slide__description p[data-v-1a6afa8b] {
        line-height: 1.5em;
}
}
@media (max-width: 600px) {
.swiper-slide[data-v-1a6afa8b] {
        height: 148px;
}
.swiper-slide__description h3[data-v-1a6afa8b] {
        font-size: 24px;
        line-height: 1.2;
}
.swiper-slide__description p[data-v-1a6afa8b] {
        font-size: 16px;
        line-height: 1.2;
        margin: 0;
}
.swiper[data-v-1a6afa8b] {
        height: 230px;
}
.swiper-slide__button[data-v-1a6afa8b] {
        padding: 0 20px;
        min-width: auto;
        width: auto;
        height: 33px;
        line-height: 17px;
        font-size: 14px;
}
}
@media (max-width: 414px) {
.swiper-slide[data-v-1a6afa8b] {
        height: 100px;
}
.swiper-slide__description h3[data-v-1a6afa8b] {
        font-size: 18px;
}
.swiper[data-v-1a6afa8b] {
        height: 200px;
}
.swiper-slide__description p[data-v-1a6afa8b] {
        font-size: 10px;
}
}

/**
 * Swiper 5.4.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://swiperjs.com
 *
 * Copyright 2014-2020 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 16, 2020
 */

@font-face {
  font-family: 'swiper-icons';
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

/* 3D Effects */

.swiper-container-3d {
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */

.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(44px / 44 * 27);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: 44px;
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * 44px / 2);
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-theme-color);
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: 44px;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  -moz-font-feature-settings: normal, ;
       font-feature-settings: normal, ;
  font-variant: normal;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: 'prev';
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: 'next';
}

.swiper-button-prev.swiper-button-white,
.swiper-button-next.swiper-button-white {
  --swiper-navigation-color: #ffffff;
}

.swiper-button-prev.swiper-button-black,
.swiper-button-next.swiper-button-black {
  --swiper-navigation-color: #000000;
}

.swiper-button-lock {
  display: none;
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-theme-color);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Progress */

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-theme-color);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white {
  --swiper-pagination-color: #ffffff;
}

.swiper-pagination-black {
  --swiper-pagination-color: #000000;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */

:root {
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  */
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-theme-color);
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}

/* a11y */

.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

:root {
    /* basic colors */
    --main-color: #000000;
    --main-secondary-color: #ffffff;
    --main-font-color: #000000;
    --main-bg-color: #ffffff;
    --main-error-color: #f04949;
    --main-card-bg-color: #F2F2F2;
    --main-shadow-basic-color: #000000;
    --main-footer-background-color: #333333;
    --main-footer-title-color: #EF4618;
    /* header colors */
    --header-nav-bg-color: var(--main-bg-color);
    --header-nav-item-color: var(--main-font-color);
    --header-bg-color: var(--main-bg-color);
    --header-nav-link-color: var(--main-color);
    --header-item-color: var(--main-color);
    --header-search-bg-color: var(--main-bg-color);
    --header-search-font-color: var(--main-font-color);
    --header-search-border-color: var(--main-color);
    /* mobile header colors */
    --mobile-header-bg-color: var(--main-color);
    --mobile-header-item-color: var(--main-secondary-color);
    --mobile-header-item-secondary-color: var(--main-color);
    --mobile-header-search-bg-color: var(--main-bg-color);
    --mobile-header-search-font-color: var(--main-font-color);
    --mobile-header-search-border-color: var(--main-secondary-color);
    --mobile-cart-item-color: var(--main-font-color);
    --mobile-cart-action-color: var(--main-color);
    /* footer colors */
    --footer-bg-color: var(--main-footer-background-color);
    --footer-line-color: #e0e6e8;
    --footer-item-color: #ffffff;
    --footer-title-color: var(--main-footer-title-color);
    /* card colors */
    --card-bg-color: var(--main-bg-color);
    --card-item-primary-color: var(--main-font-color);
    --card-item-secondary-color: var(--main-color);
    --card-action-primary-color: var(--main-color);
    --card-action-secondary-color: var(--main-secondary-color);
    --card-font-color: var(--main-font-color);
    /* modal card colors and childModal.vue component */
    --modal-card-bg-color: var(--main-bg-color);
    --modal-card-item-primary-color: var(--main-font-color);
    --modal-card-item-secondary-color: var(--main-secondary-color:);/*?:?*/
    --modal-card-action-primary-color: var(--main-color);
    --modal-card-action-secondary-color: var(--main-secondary-color);
    /* dropdown cards colors */
    --dropdown-card-bg-color: var(--main-bg-color);
    --dropdown-card-action-color: var(--main-color);
    --dropdown-card-item-color: var(--main-font-color);
    --dropdown-card-button-bg-color: var(--main-color);
    --dropdown-card-button-font-color: var(--main-secondary-color);
    /* sidebars colors */
    --sidebar-bg-color: var(--main-bg-color);
    --sidebar-item-color: var(--main-color);
    --sidebar-button-bg-color: var(--main-color);
    --sidebar-button-font-color: var(--main-secondary-color);
    /* slider colors */
    --slider-action-primary-color: var(--main-color);
    --slider-action-secondary-color: var(--main-font-color);
    /* special colors */
    --action-item-primary-color: var(--main-color);
    --action-item-secondary-color: var(--main-secondary-color);
    --input-font-color: var(--main-font-color);
    --search-font-color: var(--main-font-color);
    --block-title-color: var(--main-font-color);
    --checkbox-color: var(--main-color);
    /* shadows */
    --shadow: 0px 3px 5px 5px rgba(230, 230, 230, 0.456);
    --shadow-card: 10px 10px 0px 0px rgba(51,51,51,0.4);
    --shadow-hover: 0px 10px 10px 0px rgba(230, 230, 230, 0.656);
    --slide-overlay: linear-gradient(
        to bottom,
        rgba(237, 237, 237, 0) 0%,
        var(--main-bg-color) 100%
    );
    --image-ellipsis: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, .2) 20%,
        rgba(255, 255, 255, .8) 60%,
        var(--main-bg-color) 100%
    );
    --image-bg-color: linear-gradient(
        315deg,
        hsl(0, 0%, 40%) 0%,
        var(--main-bg-color) 74%
    );
    /* special variables */
    --breadcrumbs-main-color: var(--main-color);
    --breadcrumbs-active-color: var(--main-font-color);
    --breadcrumbs-divider: '/';
    /* skeleton placeholder */
    --placeholder-color: #d9d9d9;
    --placeholder-image: linear-gradient(315deg, #d9d9d9 0%, #f6f2f2 74%);
}
:root {
    /* все переменные вынесены в файл variables.css */
}
/* default sets */
html,
body {
    position: relative;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    background: #EBE6E6;
}
.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.content {
    flex: 1 0 auto;
}
.footer {
    flex: 0 0 auto;
}
main {
    min-height: 500px;
}
@media (max-width: 767px) {
main {
        margin-top: 69px
}
    }
button {
    background: none;
    border: none;
}
h1, h2, h3, h4, h5, h6, p {
    color: #000000;
    color: var(--main-font-color);
}
button, a {
    cursor: pointer;
}
.hide {
    display: none !important;
}
/* special container addon to flexboxgrid2 class */
@media only screen and (min-width: 1440px) {
    .container {
        width: calc(1440px - 16px);
        max-width: 100%;
    }
}
.body-hide {
    overflow: hidden !important;
    position: relative !important;
    padding-left: 0px;
    padding-top: 0px;
    padding-right: 0px;
    margin-left: 0;
    margin-top: 0;
    margin-right: 0px !important;
}
/* a11y class for screenreaders */
.show-for-sr {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    border: 0;
}
/* breadcrumbs */
.breadcrumbs {
    display: flex;
    flex-flow: row nowrap;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.breadcrumbs__link {
    color: #000000;
    color: var(--breadcrumbs-main-color);
    text-decoration: none;
}
.breadcrumbs__link:hover {
        text-decoration: underline;
    }
.breadcrumbs__link_active {
    color: #000000;
    color: var(--breadcrumbs-active-color);
}
.breadcrumbs__divider {
    color: #000000;
    color: var(--breadcrumbs-active-color);
}
.breadcrumbs__divider:before {
        content: '/';
        content: var(--breadcrumbs-divider);
    }
/* custom checkbox */
.checkbox {
    display: none;
}
.checkbox + label {
        width: 17px;
        height: 17px;
        border: 1px solid #000000;
        border: 1px solid var(--checkbox-color);
        border-radius: 4px;
        background: inherit;
        margin-right: 6px;
        display: inline-block;
        position: relative;
    }
.checkbox + label:active {
        background: hsl(0, 0%, 90%);
        background: hsl(0, 0%, 90%);
    }
.checkbox + label:hover {
        background: hsl(0, 0%, 90%);
        background: hsl(0, 0%, 90%);
    }
.checkbox:checked + label {
        background: hsl(0, 0%, 90%);
        background: hsl(0, 0%, 90%);
        border: 1px solid #000000;
        border: 1px solid var(--checkbox-color);
        color: #000000;
        color: var(--checkbox-color);
    }
.checkbox:checked + label:after {
        content: "✔";
        font-size: 13px;
        position: absolute;
        top: 1px;
        left: 2px;
        color: #000000;
        color: var(--checkbox-color);
    }
/* base */
.nav__upper {
    color: rgba(51, 51, 51, 0.7);
    font-weight: 400;
    line-height: 19px;
    font-size: 16px;
}
@media (max-width: 768px) {
.nav__upper {
        display: none
}
    }
.nav__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 87%;
    padding: 55px 0 0 0;
}
.nav__location-indication {
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    min-width: 305px;
    min-height: 40px;
    border: none;
    padding: 10px;
    outline: none;
    font-style: normal;
    font-weight: 500;
    line-height: 19px;
    font-size: 16px;
    text-align: center;
    background: #EF4618;
    color: #F2F2F2;
}
.nav__location-indication:hover {
        background: #F7967D;
        cursor: pointer;
    }
.nav__location-indication:active {
        background: #9B2708;
    }
.nav__location-indication:disabled {
        background: #E0E0E0;
        color: #8B8B8B;
        cursor: not-allowed;
    }
.nav__block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-transform: none;
    padding: 2px 0;
}
.nav__block--justify-to-start {
    justify-content: flex-start;
}
.nav__block--justify-to-start .nav__link {
    margin: 0 36px 0 0;
}
.nav__link {
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #333333;
}
.nav__link:hover,
.nav__link:active {
    text-decoration: underline;
}
.nav__link__category {
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #333333;
    margin-right: 20px;
}
.nav__locale,
.nav__schedule{
    text-decoration: none;
    color: hsl(0, 0%, 40%);
    color: hsl(0, 0%, 40%);
}
.nav__locale-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 1100px;
    transform: translate(-50%, -50%);
    background: white;
    z-index: 40;
    visibility: hidden;
    opacity: 0;
    transition: 1s;
}
@media (max-width: 1100px) {
.nav__locale-modal {
        width: 85%
}
    }
.nav__locale-modal-auth {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 1100px;
    transform: translate(-50%, -50%);
    background: white;
    z-index: 40;
    visibility: hidden;
    opacity: 0;
    transition: 1s;
    border-radius: 15px;
}
@media (max-width: 1100px) {
.nav__locale-modal-auth {
        width: 85%
}
    }
.nav__locale-modal__visible {
    visibility: visible;
    opacity: 1;
}
.nav__locale-close {
    position: fixed;
    top: 45px;
    left: 87%;
    color: white;
    visibility: hidden;
    opacity: 0;
    transition: 1s;
    font-size: 40px;
    cursor: pointer;
    z-index: 40;
}
.nav__locale-close__visible {
    visibility: visible;
    opacity: 1;
}
.nav__locale-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(51, 51, 51, 0.5);
    z-index: 39;
    visibility: hidden;
    opacity: 0;
    transition: 1s;
}
.nav__locale-background__visible {
    visibility: visible;
    opacity: 1;
}
.nav__schedule span{
    margin:0 5px;
}
.nav__phone a {
    text-decoration: none;
    color: hsl(0, 0%, 40%);
    color: hsl(0, 0%, 40%);
}
.nav__profile {
    display: flex;
    align-items: end;
    justify-content: space-between;
}
.nav__profile-points {
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #333333;
    margin-right: 31px;
}
.nav__profile-button{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}
.nav__profile-button a{
    text-decoration: none;
    color: #333333;
}
.nav__profile button{
    display: flex;
    align-items: center;
    min-width: 172px;
    min-height: 40px;
    font-weight: 500;
    line-height: 19px;
    font-size: 16px;
    text-align: center;
    background: none;
    color: #333333;
}
.nav__profile button:hover {
        color: #F7967D;
        cursor: pointer;
    }
.nav__profile button:active {
        color: #9B2708;
    }
.nav__profile button:disabled {
        color: #8B8B8B;
        cursor: not-allowed;
    }
.header {
    width: 100%;
    z-index: 1;
    background: #EBE6E6;
    box-shadow: 0px 3px 5px 5px rgba(230, 230, 230, 0.456);
    box-shadow: var(--shadow);
}
@media (max-width: 768px) {
.header {
        padding: 12px 0;
        background: #000000;
        background: var(--mobile-header-bg-color)
}
    }
.nav {
    display: flex;
    flex-flow: column nowrap;
    font-weight: normal;
    line-height: 26px;
    font-size: 16px;
    letter-spacing: 0.5px;
}
@media (max-width: 768px) {
.nav {
        display: none
}
    }
.nav__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 0 0 20px 0;
}
.nav__company {
    display: flex;
    align-items: start;
    flex-direction: column;
}
.nav__company-logo {
    text-decoration: none;
}
.nav__company-logo-img {
    height: 34px;
}
.nav__company-name {
    text-decoration: none;
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    color: #333333;
}
.nav__search-wrapper {
    display: flex;
    flex-grow: 0.8;
    width: 35px;
    position: absolute;
    right: 170px;
    transition: width .5s ease;
}
.nav__search-wrapper form {
        width: 100%;
    }
.nav__search-wrapper:hover,
    .nav__search-wrapper[focus-within]{
        width: 300px;
        transition: width .5s ease;
    }
.nav__search-wrapper:hover,
    .nav__search-wrapper:focus-within{
        width: 300px;
        transition: width .5s ease;
    }
.nav__search-wrapper:hover .nav__search input,.nav__search-wrapper[focus-within] .nav__search input{
                width:90%;
                transition: width .5s ease;
            }
.nav__search-wrapper:hover .nav__search input,.nav__search-wrapper:focus-within .nav__search input{
                width:90%;
                transition: width .5s ease;
            }
.nav__search-wrapper--no-basket{
    right: 25px;
}
.nav__search {
    position: relative;
    box-sizing: border-box;
    border-radius: 200px;
    padding: 2px 7px;
    background: none;
    color: #333333;
}
.nav__search input {
    border: none;
    outline: none;
    font-style: normal;
    font-weight: normal;
    line-height: 20px;
    font-size: 14px;
    letter-spacing: 0.25px;
    color: #333333;
    background: none;
    width: 1px;
    transition: width .5s ease;
}
.nav__search input::-moz-placeholder {
    color: hsl(0, 0%, 60%);
    color: hsl(0, 0%, 60%);
    border-bottom: 1px solid hsl(0, 0%, 60%);
    border-bottom: 1px solid hsl(0, 0%, 60%);
}
.nav__search input:-ms-input-placeholder {
    color: hsl(0, 0%, 60%);
    color: hsl(0, 0%, 60%);
    border-bottom: 1px solid hsl(0, 0%, 60%);
    border-bottom: 1px solid hsl(0, 0%, 60%);
}
.nav__search input::placeholder {
    color: hsl(0, 0%, 60%);
    color: hsl(0, 0%, 60%);
    border-bottom: 1px solid hsl(0, 0%, 60%);
    border-bottom: 1px solid hsl(0, 0%, 60%);
}
.nav__search label {
    position: absolute;
    top: -10px;
    padding: 0 2px 0 2px;
    font-style: normal;
    font-weight: normal;
    line-height: 16px;
    font-size: 12px;
    letter-spacing: 0.4px;
    text-transform: capitalize;
    color: #000000;
    color: var(--header-item-color);
    background: #ffffff;
    background: var(--header-bg-color);
}
.nav__search button {
    position: absolute;
    right: 7px;
    top: 50%;
    border: none;
    background: none;
    color: #000000;
    color: var(--header-search-font-color);
    opacity: 0.6;
    padding: 0;
    transform: translateY(-50%);
}
.nav__search button:before {
        font-size: 19px;
    }
.nav__order-status {
    text-decoration: none;
    display: flex;
    align-items: center;
    border: none;
    outline: none;
    background: none;
    color: #000000;
    color: var(--header-item-color);
    border-radius: 50%;
}
.nav__order-status.mdi:before {
    font-size: 40px;
}
.nav__order-status:hover {
    color: rgb(0, 0, 0);
    color: rgb(0, 0, 0);
}
.nav__cart {
    position: relative;
    text-decoration: none;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    min-width: 152px;
    border: none;
    padding: 10px 35px;
    outline: none;
    font-style: normal;
    font-weight: 500;
    line-height: 19px;
    font-size: 16px;
    text-align: center;
    background: #EF4618;
    color: #F2F2F2
}
.dropmic--show .nav__cart {
    background: #9B2708;
}
.nav__cart:hover {
    background: #F7967D;
    cursor: pointer;
}
.nav__cart:active {
    background: #9B2708;
}
.nav__cart:disabled {
    background: #E0E0E0;
    color: #8B8B8B;
}
.nav__cart span:last-child::before {
        content: '|';
        position: absolute;
        transform: translateX(-12px);
    }
/* стили дропдауна */
.nav__cart-dropdown {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    z-index: 25;
    border: none;
    border-radius: 4px;
    background: #F2F2F2;
    /* overflow-y: scroll; */
    position: fixed;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 400px;
    max-width: none;
    max-height: none;
    transform: none !important;
}
.nav__cart-dropdown-background {
    position: fixed;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    max-width: none;
    width: 100%;
    max-height: none;
    transform: none !important;
    background: rgba(51, 51, 51, 0.5);
    z-index: 24;
}
.nav__cart-dropdown-close {
    position: absolute;
    right: 400px;
    top: 20px;
}
.nav__cart-dropdown-top {
    display: flex;
    align-items: end;
    padding: 10px 20px;
    width: 100%;
    height: 70px;
    background: #EBE6E6;
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    color: #333333;
}
.nav__cart-dropdown-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
    width: 100%;
    padding-bottom: 50px;
}
.nav__cart-dropdown-list {
    position: relative;
    overflow-y: auto;
    padding: 20px;
    padding-bottom:10px;
    width: 100%;
}
.nav__cart-dropdown-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    width: 100%;
    padding: 20px;
}
.nav__cart-dropdown-promocode, .nav__cart-dropdown-bonus, .nav__cart-dropdown-costing, .nav__cart-dropdown-delivery {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #333333;
    padding-bottom: 10px;
    width: 100%;
}
.cart-dropdown-promocode__button, .cart-dropdown-bonus__button {
    width: 24px;
    height: 24px;
    border: 1px solid rgba(51, 51, 51, 0.5);
    border-radius: 50%;
}
.nav__cart-dropdown-sum {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #333333;
    padding: 30px 0;
    width: 100%;
}
/* модалка промокода */
.promocode-modal, .paid-by-bonuses-modal {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: none;
}
.promocode-modal__background, .paid-by-bonuses-modal__background {
    position: relative;
    height: 100%;
    background: rgba(51, 51, 51, 0.5);
    display: none;
}
.promocode-modal__main, .paid-by-bonuses-modal__main  {
    position: absolute;
    bottom: -268px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    width: 100%;
    height: 0;
    background: #F2F2F2;
    border-radius: 15px 15px 0px 0px;
    padding: 0;
    transition: .5s;
    overflow: hidden;
}
.promocode-modal__header, .paid-by-bonuses-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.promocode-modal__header-title, .paid-by-bonuses-modal__header-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
}
.promocode-modal__input, .paid-by-bonuses-modal__input {
    border: none;
    background: none;
    width: 100%;
    border-bottom: 1px solid rgba(51, 51, 51, 0.2);
    padding: 10px 0;
}
.promocode-modal__input:focus, .paid-by-bonuses-modal__input:focus {
        border: none;
        outline: none;
        border-bottom: 1px solid #EF4618;
    }
.promocode-modal__button, .paid-by-bonuses-modal__button {
    text-decoration: none;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border: none;
    font-weight: 500;
    line-height: 19px;
    font-size: 16px;
    text-align: center;
    background: #EF4618;
    color: #F2F2F2;
    width: 305px;
    height: 50px;
}
.promocode-modal__button:hover, .paid-by-bonuses-modal__button:hover {
        background: #F7967D;
        cursor: pointer;
    }
.promocode-modal__button:active, .paid-by-bonuses-modal__button:active {
        background: #9B2708;
    }
.paid-by-bonuses-modal__description {
    align-self: flex-start;
    color: rgba(51,51,51,0.50196);
    font-size: 14px;
}
/* это хак, починить стили дропдаун плагина */
.dropmic--show::after,
.dropmic--show::before {
    display: none;
}
.dropdown-card {
    display: flex;
    justify-content: space-between;
    padding: 10px 0 10px 0;
}
.dropdown-card__left {
    padding-right: 20px;
}
.dropdown-card__right {
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-direction: column;
    width: 100%;
}
.dropdown-card:first-child {
    padding: 0 0 10px 0;
}
.dropdown-card:last-child {
    border-bottom: none;
}
.dropdown-card__header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    width: 100%;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #333333;
    text-transform: none;
    padding: 0 0 10px 0;
}
.dropdown-card__img--size {
    width: 88px;
    height: 88px;
}
.dropdown-card__img--none {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
    background: none;
    color: #000000;
    color: var(--card-font-color);
    border-radius: 5px;
}
.dropdown-card__img--none::before {
    content: '\f82a';
    color: lightgray;
    padding: 0 5px;
    display: inline-block;
    font: normal normal normal 12px/1 "Material Design Icons";
    font-size: 35px;
    text-rendering: auto;
    line-height: 24px;
}
.dropdown-card__dismiss {
    color: #333333;
    cursor: pointer;
}
.dropdown-card__description {
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-direction: column;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: rgba(51, 51, 51, 0.5);
    padding-bottom: 20px;
}
.dropdown-card__description-title {
    padding-bottom: 8px;
}
.dropdown-card__button {
    text-decoration: none;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border: none;
    font-style: normal;
    font-weight: 500;
    line-height: 19px;
    font-size: 16px;
    text-align: center;
    background: #EF4618;
    color: #F2F2F2;
    padding: 16px 58px;
}
.dropdown-card__button:hover {
        background: #F7967D;
        cursor: pointer;
    }
.dropdown-card__button:active {
        background: #9B2708;
    }
.dropdown-card__button:disabled {
        background: #E0E0E0;
        color: #8B8B8B;
        cursor: not-allowed
    }
.dropdown-card__info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #333333;
}
.dropdown-card__info-block {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
}
.info-title {
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0 0 5px 0;
}
.info-quantity {
    min-width: 20px;
    width: 88px;
    height: 29px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(51, 51, 51, 0.5);
    border-radius: 35px;
}
.info-quantity button {
    background: none;
    border: none;
    outline: none;
    color: #333333;
}
.info-quantity button:hover {
    color: #000000;
    color: var(--dropdown-card-item-color);
}
.info-quantity__count {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #333333;
}
.nav__cart-dropdown-button {
    text-decoration: none;
    display: inline-block;
    border: none;
    border-radius: 200px;
    padding: 6px 16px 6px 16px;
    margin: 0;
    outline: none;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    font-size: 14px;
    text-align: center;
    letter-spacing: 0.75px;
    text-transform: uppercase;
    background: #000000;
    background: var(--dropdown-card-button-bg-color);
    color: #ffffff;
    color: var(--dropdown-card-button-font-color);
}
.nav__cart-dropdown-button:hover {
    background: rgb(0, 0, 0);
    background: rgb(0, 0, 0);
}
.nav__cart-dropdown_empty {
    display: flex;
    justify-content: center;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
/* конец стилей дропдауна */
.nav-mobile {
    display: none;
}
@media (max-width: 768px) {
    .header{
        position: relative;
        z-index: 50;
        margin: 0;
        padding: 0;
    }

    .header .container {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

    .nav-mobile {
        position: fixed;
        width: calc(100% - 24px);
        height: 69px;
        padding: 0 12px;
        display: flex;
        flex-flow: row nowrap;
        justify-content: space-between;
        align-items: center;
        background-color: #000000;
        background-color: var(--mobile-header-bg-color);
        top: 0;
    }

    .nav-mobile__sidebar-button {
        background: none;
        border: none;
        color: #ffffff;
        color: var(--mobile-header-item-color);
        outline: none;
        margin-left: 15px;
    }

        @media (max-width: 575px) {

    .nav-mobile__sidebar-button {
            margin-left: 65px
    }
        }

    .nav-mobile__sidebar-button:hover {
        outline: 2px solid #ffffff;
        outline: 2px solid var(--mobile-header-item-color);
        outline-offset: 1px;
    }

    [sidebarjs-container] {
        width: 100%;
        max-width: 100%;
    }
    .nav-mobile__sidebar {
        background-color: #ffffff;
        background-color: var(--main-bg-color);
        color: #000000;
        color: var(--sidebar-item-color);
        display: flex;
        flex-flow: column nowrap;
        overflow: hidden;
        overflow-y: scroll;
        height: 100%;
    }

    .nav-mobile__sidebar-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 20px;
        height: 70px;
        background: #ffffff;
        background: var(--main-bg-color);
    }

    .nav-mobile__sidebar-item span,
    .nav-mobile__sidebar-item a {
        text-decoration: none;
        width: 100%;
        font-weight: 500;
        font-size: 24px;
        line-height: 29px;
        color: #333333;
        color: var(--main-footer-background-color);
    }

    .nav-mobile__sidebar-item span {
        width: auto;
    }

    .nav-mobile__sidebar-item span.nav-mobile__sidebar-item-subscript {
        margin-top: 5px;
        font-size: 12px;
        font-weight: 300;
    }

    .nav-mobile__sidebar-item a.nav-mobile__sidebar-item-company-name {
        font-size: 32px;
        line-height: 1.2;
        font-weight: 700;
    }

    .nav__sidebar-item a:hover {
        outline: 2px solid inherit;
        outline-offset: 2px;
    }

    .nav-mobile__sidebar-item-separator ~ .nav-mobile__sidebar-item {
        padding-left: 25px;
    }

    .nav-mobile__sidebar-item-separator {
        margin: 0 12px;
        width: calc(100% - 24px);
        height: 1px;
        background-color: #989898;
    }

    .sidebar-item__company-name {
        padding-bottom: 0;
    }

    .sidebar-item__points {
        display: flex;
        justify-content: space-between;
    }

    .sidebar-item__phone {
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 0;
    }

    .nav-mobile__sidebar-close {
        color: #f04949;
        color: var(--main-error-color);
        font-size: 24px;
    }

    .nav-mobile__sidebar-actions {
        display: flex;
        flex-flow: row nowrap;
        justify-content: space-around;
    }

    .nav-mobile__company {
        display: flex;
    }

    .nav-mobile__logo {
        text-decoration: none;
    }

    .nav-mobile__logo-img {
        height: 34px;
    }

    .nav-mobile__link {
        text-decoration: none;
        color: #ffffff;
        color: var(--mobile-header-item-color);
        font-size: 32px;
        line-height: 1.2;
        font-weight: 700;
    }

    .nav-mobile__search-wrapper {
        position: relative;
        display: flex;
        flex-flow: row nowrap;
        border: 2px solid #ffffff;
        border: 2px solid var(--mobile-header-search-border-color);
        box-sizing: border-box;
        border-radius: 200px;
        padding: 4px 16px;
        background: #ffffff;
        background: var(--mobile-header-search-bg-color);
        color: #000000;
        color: var(--mobile-header-search-font-color);
    }

    .nav-mobile__search-wrapper input {
        border: none;
        outline: none;
        font-style: normal;
        font-weight: normal;
        line-height: 20px;
        font-size: 14px;
        letter-spacing: 0.25px;
        width: 100%;
    }

    .nav-mobile__search-wrapper input::-moz-placeholder {
        color: hsl(0, 0%, 60%);
        color: hsl(0, 0%, 60%);
    }

    .nav-mobile__search-wrapper input:-ms-input-placeholder {
        color: hsl(0, 0%, 60%);
        color: hsl(0, 0%, 60%);
    }

    .nav-mobile__search-wrapper input::placeholder {
        color: hsl(0, 0%, 60%);
        color: hsl(0, 0%, 60%);
    }

    .nav-mobile__search-wrapper label {
        position: absolute;
        top: -10px;
        padding: 0 2px 0 2px;
        font-style: normal;
        font-weight: normal;
        line-height: 16px;
        font-size: 12px;
        letter-spacing: 0.4px;
        text-transform: capitalize;
        color: #ffffff;
        color: var(--mobile-header-item-color);
        background: #000000;
        background: var(--mobile-header-bg-color);
    }

    .nav-mobile__search-wrapper button {
        border: none;
        background: none;
        color: #000000;
        color: var(--mobile-header-search-font-color);
        opacity: 0.6;
    }

    .nav-mobile__search-form-md {
        flex-grow: 0.6;
    }
        @media (max-width: 575px) {

    .nav-mobile__search-form-md {
            display: none
    }
        }

    .nav-mobile__search-form-xs {
        width: 34px;
        height: 32px;
        background: #000000;
        background: var(--mobile-header-bg-color);
        border-radius: 50%;
        margin-left: auto;
    }

        @media (min-width: 576px) {

    .nav-mobile__search-form-xs {
            display: none
    }
        }

    .nav-mobile__search-button-xs {
        display: inline-block;
        border: none;
        padding: 8px;
        padding-bottom: 0;
        outline: none;
        line-height: 14px;
        text-align: center;
        background: #000000;
        background: var(--mobile-header-bg-color);
        color: #ffffff;
        color: var(--mobile-header-item-color);
    }
        .nav-mobile__search-button-xs:hover {
            cursor: pointer;
            /*background: color-mod(var(--mobile-header-bg-color) blackness(+10%));*/
        }

    .nav-mobile__search-panel-xs {
        padding: 12px;
        min-width: 250px;
        border: none;
        box-shadow: 0px 3px 5px 5px rgba(230, 230, 230, 0.456);
        box-shadow: var(--shadow);
    }
        .nav-mobile__search-panel-xs .nav-mobile__search-wrapper {
            border: 2px solid #000000;
            border: 2px solid var(--header-item-color);
            background: #ffffff;
            background: var(--header-search-bg-color);
            color: #000000;
            color: var(--header-search-font-color);
        }

    .nav-mobile__footer{
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        height: 64px;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        padding: 0 12px;
        background: transparent;
    }

    .nav-mobile__cart {
        position: relative;
        text-decoration: none;
        border-radius: 200px;
        display: flex;
        align-items: center;
        justify-content: space-around;
        min-width: 100px;
        border: none;
        padding: 8px 16px 8px 16px;
        outline: none;
        font-style: normal;
        font-weight: 500;
        line-height: 16px;
        font-size: 14px;
        text-align: center;
        letter-spacing: 0.75px;
        text-transform: uppercase;
        background: #EF4618;
        background: var(--main-footer-title-color); /*var(--mobile-header-item-color);*/
        color: #ffffff;
        color: var(--main-bg-color);
    }
        @media (max-width: 424px) {

    .nav-mobile__cart {
            justify-content: space-between;
            min-width: 50px;
            min-height: 18px
    }
        }

    .nav-mobile__cart:hover {
        background: rgb(230, 255, 255);
        background: rgb(230, 255, 255);
    }
}
.nav-mobile__cart-sum {
    font-size: 18px;
}
.nav-mobile__cart-list {
    display: flex;
    flex-flow: column nowrap;
    padding: 8px 20px 0 20px;
    background: #ffffff;
    background: var(--main-bg-color);
    overflow-y: scroll;
    height: 75%;
}
.mobile-cart-item {
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding: 0 0 8px 0;
    color: #000000;
    color: var(--mobile-cart-item-color);
}
.mobile-cart-item:not(:first-child) {
    padding: 8px 0;
}
.mobile-cart-item img {
    width: 100%;
}
.mobile-cart-item__left {
    width: 30%;
}
.mobile-cart-item__right {
    width: 65%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}
.mobile-cart-item__header {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
}
.mobile-cart-item__title {
    display: inline-block;
    color: #333333;
    color: var(--main-footer-background-color);
}
.mobile-cart-item__delete {
    color: #333333;
    color: var(--main-footer-background-color);
    cursor: pointer;
}
.mobile-cart-item__description {
    margin: 8px 0;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: rgba(51, 51, 51, 0.5);
}
.mobile-cart-item__options-block {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    padding: 8px 0;
    width: 100%;
}
.mobile-cart-item__option {
    display: flex;
    flex-flow: column nowrap;
}
.mobile-cart-item__option-title {
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: inherit;
}
.mobile-cart-item__option-price {
    padding: 4px 0;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    font-size: 14px;
    letter-spacing: 0.75px;
    text-transform: uppercase;
    color: inherit;
}
.mobile-cart-item__option-quantity {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 20px;
    width: 88px;
    height: 29px;
    border: 1px solid rgba(51, 51, 51, 0.5);
    border-radius: 35px;
    color: #333333;
    color: var(--main-footer-background-color);
}
.mobile-cart-item__option-quantity button {
        background: none;
        color: #EF4618;
        color: var(--main-footer-title-color);
    }
.option-quantity__count {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #333333;
    color: var(--main-footer-background-color);
}
.mobile-cart__button {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    text-decoration: none;
    display: inline-block;
    border: none;
    border-radius: 25px;
    outline: none;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    background: #EF4618;
    background: var(--main-footer-title-color);
    color: #ffffff;
    color: var(--main-bg-color);
    padding: 15px 0;
}
.mobile-cart__button:hover {
    background: rgb(0, 0, 0);
    background: rgb(0, 0, 0);
}
.nav-mobile__cart-empty {
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    font-size: 14px;
    letter-spacing: 0.75px;
    text-transform: uppercase;
    color: inherit;
}
/* footer */
.footer {
    background: #333333;
    background: var(--footer-bg-color);
    padding: 45px 0 0 0;
}
.footer__content {
    border-bottom: 1px solid #e0e6e8;
    border-bottom: 1px solid var(--footer-line-color);
    padding: 0 0 24px 0;
}
@media (max-width: 748px) {
.links_container {
        text-align: center
}
    }
.links {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    margin: 0 2px;
}
@media (max-width: 768px) {
.links {
        align-items: center;
        margin: 0 10px
}
    }
.links a {
    padding: 0 0 12px;
}
.links__button_group {
   display: inline-grid;
}
.links__title {
    font-weight: 500;
    line-height: normal;
    font-size: 18px;
    letter-spacing: 0.15px;
    text-transform: uppercase;
    color: #EF4618;
    color: var(--footer-title-color);
}
.links__item {
    text-decoration: none;
    font-weight: normal;
    line-height: 20px;
    font-size: 14px;
    letter-spacing: 0.25px;
    opacity: 0.6;
    text-transform: uppercase;
    color: #ffffff;
    color: var(--footer-item-color);
}
.links__button {
    border-radius: 5px;
    border: white 1px groove;
    width: 178px;
    margin-bottom: 20px;
    color: white;
}
.links__button__container {
    display: flex;
    padding: 4px;
}
.links__button__container .button-tittle__apple {
        font-size: 13px;
    }
.links__button__container .text__apple {
        font-size: 24px;
    }
.links__button__container .button-tittle__google_play {
        font-size: 11px;
        text-align: left;
    }
.links__button__container .text__google_play {
        font-size: 20px;
    }
.links__button__content {
    margin-left: 3px;
    line-height: 18px;
}
.links__item:hover {
    opacity: 0.95;
}
.margin-top-10 {
    margin-top: 10px;
}
.copyright {
    padding: 24px 32px 8px 32px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
}
@media (max-width: 320px) {
.copyright {
        padding: 16px 8px
}
    }
.copyright__date {
    font-style: normal;
    font-weight: normal;
    line-height: 16px;
    font-size: 12px;
    opacity: 0.6;
    color: #ffffff;
    color: var(--footer-item-color);
}
.copyright__link {
    text-decoration: none;
    font-style: normal;
    font-weight: normal;
    line-height: 16px;
    font-size: 12px;
    color: #ffffff;
    color: var(--footer-item-color);
    opacity: 0.6;
}
.copyright__link:hover {
    opacity: 0.95;
}
/* footer (mobile) */
@media (max-width: 390px) {
    .footer {
        padding: 20px 0;
    }

    .footer .links__title {
        padding: 0;
    }

    .footer .container {
        margin: 0 12px;
        padding: 0;
    }

    .footer .container .row.around-xs {
        flex-direction: column;
        margin: 0;
    }

    .footer .row.around-xs .links {
        align-items: flex-start;
        margin: 0;
    }

    .footer .row.around-xs .links__button_group {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer .row.around-xs .links__title {
        text-align: left;
    }
}
/* pages */
/* auth */
.auth {
    padding: 55px 20px 55px 20px;
}
.auth-container {
    display: flex;
    justify-content: center;
    width: 100%;
}
.auth-card {
    width: 100%;
    display: flex;
    background: #FFFFFF;
    border-radius: 15px;
    justify-content: center;
}
.auth-card__block_title {
    font-size: 32px;
    font-weight: 500;
    margin-top: 40px;
}
@media (max-width: 600px) {
.auth-card__block_title {
        margin-top: 0
}
    }
@media (max-width: 550px) {
.auth-card__block {
        width: 100%
}
    }
@media (max-width: 1028px) {
.auth-card__block:first-child {
        display: none
}
    }
.auth-card__block_input {
    margin-top: 40px;
}
@media (max-width: 550px) {
.auth-card__block_input {
        text-align: center
}
    }
.auth_card__block_input_tittle {
    width: 300px;
    font-size: 16px;
    color: rgba(51,51,51,0.50196);
    margin-bottom: 10px;
}
.auth-card__block_input_repeat_code {
    font-size: 13px;
    margin-top: -10px;
    cursor: pointer;
}
.auth-card__block_input_change_phone {
    font-size: 13px;
    margin-top: 0;
    cursor: pointer;
}
.auth-card__block_input_change_phone:hover, .auth-card__block_input_repeat_code:hover {
    color: #EF4618;
    color: var(--footer-title-color)
}
.auth-card__block_personal_data {
    word-wrap: break-word;
    max-width: 300px;
    margin-top: 10px;
    text-align: center;
    font-size: 14px;
    line-height: 14.52px;
    font-weight: 400;
    color: rgba(51,51,51,0.50196);
}
@media (max-width: 550px) {
.auth-card__block_personal_data {
        max-width: none
}
    }
/* about */
.about {
    padding: 20px 20px 55px 20px;
}
.about__content {
    color: #000000;
    color: var(--block-title-color);
    padding: 20px;
    margin: 0 auto;
    max-width: 750px;
    text-align: justify;
    border-radius: 4px;
    box-sizing: border-box;
    background: #ffffff;
    background: var(--card-bg-color);
    color: #000000;
    color: var(--card-item-primary-color);
    box-shadow: 0px 3px 5px 5px rgba(230, 230, 230, 0.456);
    box-shadow: var(--shadow);
}
.contacts {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    padding: 20px;
    margin: 0 auto;
    max-width: 750px;
    background: #ffffff;
    background: var(--card-bg-color);
    color: #000000;
    color: var(--card-item-primary-color);
    box-shadow: 0px 3px 5px 5px rgba(230, 230, 230, 0.456);
    box-shadow: var(--shadow);
    border-radius: 4px;
    box-sizing: border-box;
}
.contacts__title {
    margin-top: 0;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    font-size: 20px;
    letter-spacing: 0.15px;
}
.contacts__item {
    display: flex;
    flex-flow: row nowrap;
    text-decoration: none;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    font-size: 14px;
    letter-spacing: 1.5px;
}
.contacts__item span {
    padding: 0 8px 0 0;
}
.contacts__item a {
    text-decoration: none;
    opacity: 0.87;
    color: #000000;
    color: var(--action-item-primary-color);
}
.contacts__item a:hover {
    opacity: 1;
}
.feedback {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    padding: 20px 0 0 0;
    margin: 0 auto;
    max-width: 750px;
}
.feedback__button {
    display: inline-block;
    border: none;
    border-radius: 200px;
    padding: 8px 16px 8px 16px;
    outline: none;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    font-size: 20px;
    text-align: center;
    letter-spacing: 0.75px;
    text-transform: uppercase;
    background: #000000;
    background: var(--card-action-primary-color);
    color: #ffffff;
    color: var(--card-action-secondary-color);
    margin: 0 0 20px 0;
}
.yandex__container {
    max-width: 750px;
    margin: 30px auto;
}
.yandex__map {
    width: 100%;
    display: inline-block;
    position: relative;
}
.yandex__map--dummy {
    margin-top: 50%;
}
.yandex__map--api {
    position: absolute;
    top: 0;left: 0;right: 0;bottom: 0;
    box-sizing: border-box;
    box-shadow: 0px 3px 5px 5px rgba(230, 230, 230, 0.456);
    box-shadow: var(--shadow);
    background-color: #d9d9d9;
    background-color: var(--placeholder-color);
    background-image: linear-gradient(315deg, #d9d9d9 0%, #f6f2f2 74%);
    background-image: var(--placeholder-image);
    box-sizing: border-box;
    border-radius: 4px;
}
/* article and articles */
.article {
    padding: 20px;
}
.articles {
    padding: 20px;
}
.articles__title {
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    font-size: 34px;
    letter-spacing: 0.25px;
    color: #000000;
    color: var(--block-title-color);
}
.articles__description {
    position: relative;
    transition: box-shadow 0.25s;
    display: flex;
    flex-flow: row nowrap;
    border-radius: 15px;
    padding: 45px 30px 45px 30px;
    margin: 0 0 24px 0;
    background: #F2F2F2;
    background: var(--main-card-bg-color);
    color: #000000;
    color: var(--card-item-primary-color);
}
@media (max-width: 767px) {
.articles__description {
        flex-flow: column nowrap
}
    }
.articles__content * {
    box-sizing: border-box;
}
.articles__content {
    display: grid;
    grid-template-columns: minmax(350px, 413px) minmax(350px, 413px) minmax(350px, 413px);
    grid-gap: 30px 20px;
}
@media (max-width: 1228px) {
.articles__content {
        grid-template-columns: minmax(350px, 413px) minmax(350px, 413px)
}
    }
@media (max-width: 767px) {
.articles__content {
        grid-template-columns: minmax(350px, 413px)
}
    }
.article-card {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 15px;
    padding: 57px 30px 69px 30px;
    background-color: #F2F2F2;
    background-color: var(--main-card-bg-color);
    color: #000000;
    color: var(--card-item-primary-color);
    height: 305px;
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
}
@media (max-width: 767px) {

    }
.article-card--page {
    box-shadow: none;
}
.article-card__img img {
        border-radius: 2px;
        height: 300px;
    }
@media (max-width: 425px) {
        .article-card__img img {
            height: 280px;
        }
    }
@media (max-width: 374px) {
        .article-card__img img {
            height: 225px;
        }
    }
.article-card__content-preview {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    font-style: normal;
    font-weight: normal;
    line-height: 20px;
    font-size: 14px;
    letter-spacing: 0.25px;
    color: #F1F1F1; /*var(--card-item-primary-color);*/
}
.article-card__title {
    text-decoration: none;
    min-height: 60px;
    font-size: 24px;
    line-height: 29px;
    font-style: normal;
    font-weight: 700;
    padding-bottom: 5px;
    letter-spacing: 0.15px;
}
.article-card__title h4 {
        font-size: 22px;
        margin-top: 0;
        margin-bottom: 5px;
        color: #F1F1F1; /*var(--card-item-primary-color);*/
    }
.article-card__title small {
        padding: 0 0 0 8px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px;
        font-size: 14px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        opacity: 0.6;
    }
.article-card__title a {
        text-decoration: none;
    }
.article-card__title:hover {
        color: #000000;
        color: var(--card-action-primary-color);
    }
.article-card__title:hover small {
            color: #000000;
            color: var(--card-item-primary-color);
        }
.article-card__body {
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 70%;
    height: 80px;
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
    margin-top: -10px;

}
.article-card__body p {
        color: #F1F1F1;
        margin: 0;
        margin-top: 5px;
    }
.article-card__show-more-button {
    display: inline-block;
    border-radius: 200px;
    padding: 13px 16px;
    outline: none;
    font-style: normal;
    font-weight: 500;
    line-height: 19px;
    font-size: 16px;
    width: 150px;
    height: 45px;
    text-align: center;
    letter-spacing: 0.75px;
    text-decoration: none;
    background: #EF4618;
    background: var(--main-footer-title-color);
    color: #ffffff;
    color: var(--card-action-secondary-color);
    border: 1px solid #EF4618;
    border: 1px solid var(--main-footer-title-color);
}
.article-card__show-more-button:hover {
        cursor: pointer;
        background-color: #000000;
        background-color: var(--card-action-primary-color);
        color: #000000;
        color: var(--main-font-color);
        /*background: color-mod(var(--card-action-primary-color) blackness(+10%));*/
    }
@media (max-width: 420px) {
.article-card__show-more-button {
        width: 120px;
        height: 33px;
        padding: 8px 14px;
        line-height: 16px;
        font-size: 14px
}
    }
/* cart */
.cart {
    position: relative;
    min-height: inherit;
    padding: 20px;
}
@media (max-width: 425px) {
.cart {
        padding: 20px 0 20px 0
}
    }
.cart__button {
    display: inline-block;
    border: none;
    border-radius: 200px;
    padding: 8px 16px;
    outline: none;
    font-style: normal;
    font-weight: 500;
    line-height: 14px;
    font-size: 12px;
    text-align: center;
    letter-spacing: 0.75px;
    text-transform: uppercase;
    text-decoration: none;
    background: #000000;
    background: var(--card-action-primary-color);
    color: #ffffff;
    color: var(--card-action-secondary-color);
}
.cart__button:hover {
        cursor: pointer;
        background: rgb(0, 0, 0);
        background: rgb(0, 0, 0);
    }
.cart__button_disabled {
    opacity: 0.6;
}
.cart__button_disabled:hover {
    cursor: default;
    opacity: 0.6;
    background: #000000;
    background: var(--action-item-primary-color);
}
.cart__order-loader-wrapper {
    position: absolute;
    z-index: 150;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.order-loader {
    background: #ffffff;
    background: var(--card-bg-color);
    color: #000000;
    color: var(--card-item-primary-color);
    box-shadow: 0px 3px 5px 5px rgba(230, 230, 230, 0.456);
    box-shadow: var(--shadow);
    border-radius: 4px;
    padding: 24px;
    display: flex;
    flex-flow: column nowrap;
    color: #000000;
    color: var(--card-item-primary-color);
}
@media (max-width: 500px) {
.order-loader {
        padding: 12px
}
    }
@media (max-width: 350px) {
.order-loader h2 {
            font-size: 18px
    }
        }
.order-loader__in-progress {
    color: hsl(0, 0%, 70%);
    color: hsl(0, 0%, 70%);
}
.order__number {
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    font-size: 14px;
    letter-spacing: 1.5px;
}
.order__number small {
        color: hsl(0, 0%, 50%);
        color: hsl(0, 0%, 50%);
        line-height: 22px;
        font-size: 16px;
        letter-spacing: 2.5px;
    }
.cart-content-wrapper {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}
@media (max-width: 768px) {
.cart-content-wrapper {
        justify-content: space-around
}
    }
.cart__empty {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}
.cart__empty-label {
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    font-size: 18px;
    letter-spacing: 1.5px;
}
.cart__products {
    padding: 8px;
    display: flex;
    flex-flow: column nowrap;
    min-width: 300px;
    flex-shrink: 1;
}
@media (max-width: 400px) {
.cart__products {
        padding: 4px
}
    }
.cart__products-title {
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: 0;
    letter-spacing: 0.15px;
    color: #000000;
    color: var(--block-title-color);
}
.cart__nav {
    width: 400px;
    padding-left: 70px;
    flex-grow: 0;
}
@media (max-width: 1300px) {
.cart__nav {
        display: none
}
    }
.font-size-24 {
    font-size: 24px;
}
.font-size-32 {
    font-size: 32px;
}
.cart__delivery-price{
    font-style: normal;
    font-weight: 200;
    line-height: 12px;
    font-size: 16px;
    letter-spacing: 0.75px;
    text-transform: uppercase;
    color: #000000;
    color: var(--header-item-color);
}
.cart__sum {
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    font-size: 22px;
    letter-spacing: 0.75px;
    text-transform: uppercase;
    color: #000000;
    color: var(--header-item-color);
}
.cart__product-card {
    background: #ffffff;
    background: var(--card-bg-color);
    color: #000000;
    color: var(--card-item-primary-color);
    box-shadow: 0px 3px 5px 5px rgba(230, 230, 230, 0.456);
    box-shadow: var(--shadow);
    border-radius: 4px;
    display: flex;
    flex-flow: column nowrap;
    padding: 8px;
    margin: 8px 0;
}
.cart__product-card:first-child {
        margin-top: 0;
    }
.cart__product-card:last-child {
        margin-bottom: 0;
    }
.cart__clear-cart-button {
    display: inline-block;
    border: none;
    border-radius: 200px;
    margin: 8px 0;
    padding: 8px 16px 8px 16px;
    outline: none;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    font-size: 14px;
    text-align: center;
    letter-spacing: 0.75px;
    text-transform: uppercase;
    text-decoration: none;
    background: #f04949;
    background: var(--main-error-color);
    color: #ffffff;
    color: var(--card-action-secondary-color);
}
.cart__clear-cart-button:hover {
        cursor: pointer;
        background: rgb(215, 73, 73);
        background: rgb(215, 73, 73);
    }
.cart__map_container {
    height: 580px;
    width: 100%;
}
.cart__map_container iframe {
        border: none
    }
@media (max-width: 1100px) {
.cart__map_container {
        height: 400px
}
    }
.cart__client-info {
    display: flex;
    flex-flow: column nowrap;
    flex-shrink: 2;
}
.cart__client-info form {
        min-width: 0;
    }
.cart__content-wrapper {
    display: flex;
    justify-content: space-between;
}
.cart__delivery-info {
    padding: 4px;
    display: flex;
    flex-flow: column nowrap;
    flex: 1;
}
.cart__delivery-full-street {
    display: flex;
}
.cart__delivery-full-street-input {
    flex: 1
}
.cart__pickup-full-street-select {
    flex: 1
}
.cart__pickup-full-street-button {
    margin-top: 8px;
    margin-left: 10px;
}
.cart__delivery-full-street-button {
    margin-top: 8px;
    margin-left: 10px;
}
.delivery-type-preview {
    padding: 10px 20px 20px 20px;
}
.delivery {
    background: #ffffff;
    background: var(--card-bg-color);
    color: #000000;
    color: var(--card-item-primary-color);
    box-shadow: 0px 3px 5px 5px rgba(230, 230, 230, 0.456);
    box-shadow: var(--shadow);
    padding: 50px 85px 50px 85px;
    border-radius: 15px;
    display: flex;
    flex-flow: column nowrap;
}
@media (min-width: 990px) {
.delivery {
        min-width: 550px
}
    }
@media (max-width: 990px) {
.delivery {
        padding: 30px 20px 30px 20px
}
    }
@media (max-width: 350px) {
.delivery {
        padding: 30px 10px 30px 10px
}
    }
.delivery__options {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
}
.delivery-option-button {
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 200px;
    margin: 8px;
    padding: 8px 16px 8px 16px;
    outline: none;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    font-size: 14px;
    text-align: center;
    letter-spacing: 0.75px;
    text-transform: uppercase;
    text-decoration: none;
    background: #000000;
    background: var(--card-action-primary-color);
    color: #ffffff;
    color: var(--card-action-secondary-color);
}
@media (max-width: 500px) {
.delivery-option-button {
        font-size: 10px;
        line-height: 12px;
        padding: 4px 8px
}
    }
.delivery-option-button:hover {
        cursor: pointer;
        background: rgb(0, 0, 0);
        background: rgb(0, 0, 0);
    }
.delivery-option-button.active {
    background: rgb(0, 0, 0);
    background: rgb(0, 0, 0);
}
.delivery-option-button.disabled {
    pointer-events: none;
    background: hsl(0, 0%, 25%);
    background: hsl(0, 0%, 25%);
}
.delivery-way {
    display: none;
}
.delivery-way.active {
    display: flex;
    flex-flow: column nowrap;
}
.delivery-form {
    display: flex;
    flex-flow: row wrap;
}
.delivery-form .feedback-form__input-wrapper {
    margin: 8px;
}
.delivery-payments{
    display: flex;
}
@media (max-width: 770px) {
        .delivery-payments div {
            flex-basis: 40%;
        }
    }
.delivery-type {
    display: flex;
    padding-bottom: 10px;
}
.delivery-payments {
    display: flex;
    flex-wrap: wrap;
}
@media (max-width: 770px) {
.delivery-payments {
        justify-content: space-between
}

        .delivery-payments div {
            flex-basis: 30%;
            margin-top: 20px;
            margin-left: 0;
        }
    }
@media (max-width: 600px) {
.delivery-payment__title {
        margin-top: 0
}
    }
.delivery-payment-type {
    margin-left: 20px;
    cursor: pointer;
    width: 150px;
    height: 150px;
    padding: 15px 20px 15px 20px;
    border-radius: 15px;
    border: 1px solid rgba(51,51,51,0.50196);
}
.delivery-payment-type-active {
    border-color: #EF4618;
    border-color: var(--footer-title-color);
}
.radio-wrapper {
    display: flex;
    flex-flow: row nowrap;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    font-size: 24px;
    letter-spacing: 1.5px;
    margin: 8px 0;
}
.radio-wrapper input {
        margin: 0 4px 0 0;
    }
@media (max-width: 600px) {
.radio-wrapper {
        font-size: 16px
}
    }
@media (max-width: 380px) {
.radio-wrapper {
        font-size: 12px
}
    }
.radio-wrapper:last-child {
    margin-left: 20px;
}
input[type='radio']:after {
    background: #EF4618;
    background: var(--footer-title-color);
    border: #EF4618;
    border: var(--footer-title-color);
}
input[type="radio"]:checked:after {
    background: #EF4618;
    background: var(--footer-title-color);
    border: #EF4618;
    border: var(--footer-title-color);
}
.radio-button {
    border: #EF4618;
    border: var(--footer-title-color);
    width: 24px;
    height: 24px;
}
/* delivery and payment */
.delivery-and-payment {
    padding: 20px;
}
.d-and-p--content-padding {
    padding: 20px 0 0 0;
}
.delivery-and-payment__cards {
    display: flex;
    justify-content: space-between;
}
@media (max-width: 767px) {
.delivery-and-payment__cards {
        flex-basis: 80%;
        flex-direction: column
}
    }
.delivery-and-payment__card {
    box-shadow: 0px 3px 5px 5px rgba(230, 230, 230, 0.456);
    box-shadow: var(--shadow);
    flex-flow: column nowrap;
    justify-content: flex-start;
    padding: 20px 20px 20px 0;
    flex-basis: 20%;
    color: #000000;
    color: var(--card-item-primary-color);
}
@media (max-width: 767px) {
.delivery-and-payment__card {
        margin-bottom: 30px;
        align-items: center;
        display: flex;
        text-align: center
}
    }
.delivery-and-payment__card-img {
    margin-left: 10px;
    padding-bottom: 10px;
}
.delivery-and-payment__card-title {
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 29px;
    padding-bottom: 15px;
    color: #EF4618;
    color: var(--footer-title-color);
}
.delivery-and-payment__card-description {
    padding: 0 0 0 8px;
    margin: 0;
    font-style: normal;
    font-weight: normal;
    line-height: 19.36px;
    font-size: 16px;
    letter-spacing: 0.5px;
}
.delivery-and-payment__google_map_container {
    width: 100%;
    height: 750px;
}
.delivery-and-payment__google_map_container iframe {
        border: none;
    }
.payment-result,
.delivery-and-payment__delivery {
    display: flex;
    padding: 20px;
    margin-top: 40px;
    justify-content: space-around;
}
.payment-result .delivery-and-payment__margin-left, .delivery-and-payment__delivery .delivery-and-payment__margin-left {
        margin-left: 20px;
    }
@media (max-width: 1200px) {
.payment-result,
.delivery-and-payment__delivery {
        margin-bottom: 30px;
        flex-direction: column
}


        .payment-result .order-delivery, .delivery-and-payment__delivery .order-delivery {
            order: -1;
        }
    }
.delivery-and-payment__delivery_card {
    flex: 1;
    padding: 50px 34px 50px 34px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    background: #FFFFFF;
    border-radius: 15px;
}
.delivery-and-payment__delivery_card p {
        margin-top: 10px;
        font-size: 20px;
    }
.delivery-and-payment__delivery_card .feedback-form__input-wrapper {
        margin-top: 50px;
    }
.delivery-and-payment__delivery_card .delivery-and-payment__delivery_card_block_button {
        display: flex;
        justify-content: end;
    }
@media (max-width: 1200px) {
.delivery-and-payment__delivery_card {
        margin-left: 0!important;
        margin-right: 0!important
}
    }
.payment-result {
    max-width: 1064px;
    margin: 0 auto;
    background: #F2F2F2;
    border-radius: 15px;
    align-items: center;
}
.payment-result .payment-result__card-image {
        width: 500px;
        height: 500px;
    }
@media (max-width: 1024px) {
.payment-result {
        flex-direction: column
}
    }
@media (max-width: 767px) {
        .payment-result .payment-result__card-image {
            width: 326px;
            height: 326px;
        }
        .payment-result .payment-result__card > div {
            justify-content: center;
        }
    }
.payment-result__card .payment-result__card_block_button,
    .payment-result__card .payment-result__card-header,
    .payment-result__card .payment-result__card-text {
        max-width: 391px;
    }
.payment-result__card .payment-result__card-header {
        font-size: 32px;
        font-weight: 500;
        margin: 0;
    }
.payment-result__card .payment-result__card-text {
        font-size: 20px;
        margin: 30px 0 50px 0; 
    }
.payment-result__card .payment-result__card_block_button {
        display: flex;
        justify-content: end;        
        margin: 0;
    }
.payment-result__card .feedback-form__button {
        text-transform: none;
    }
.delivery-address {
    display: flex;
    justify-content: space-between;
}
.delivery-address div:first-child {
        flex-basis: 100%;
    }
.delivery-address div:nth-child(n+1) {
        flex-basis: 22%;
    }
.delivery-and-payment__delivery_prices {
    padding: 0 10px 10px 0;
}
.address-form__address-short-field {
    flex-basis: 22%!important;
}
.block-button-accept-order {
    justify-content: end;
    display: flex;
}
/* index */
.index {
    padding: 20px 0 55px 0;
}
@media (max-width: 768px) {
.index {
        padding: 0 0 55px 0
}
    }
@media (max-width: 320px) {
.index {
        padding: 10px 4px 0 8px
}
    }
.featured-categories {
    display: flex;
    flex-flow: column nowrap;
    padding: 20px 0;
    margin: 0 8px;
}
.featured-categories__title {
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    font-size: 34px;
    letter-spacing: 0.25px;
    color: #000000;
    color: var(--block-title-color);
    margin-top: 0;
    margin-bottom: 20px;
}
.featured-categories__content {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
}
.featured-categories__content_justify-to-start {
    justify-content: flex-start;
}
@media (max-width: 768px) {
.featured-categories__content_justify-to-start {
        justify-content: space-between
}
    }
.featured-categories__catalog-link-button-wrapper {
    display: flex;
    justify-content: center;
    padding: 0 0 24px 0;
}
.category-card {
    display: flex;
    flex-flow: column nowrap;
    position: relative;
    box-shadow: 0px 3px 5px 5px rgba(230, 230, 230, 0.456);
    box-shadow: var(--shadow);
    transition: 0.25s;
    border-radius: 0 50px;
    overflow: hidden;
    margin: 0 0 32px 0;
}
.category-card:hover .category-card__description {
        opacity: 1;
    }
.category-card:hover {
        box-shadow: 0px 10px 10px 0px rgba(230, 230, 230, 0.656);
        box-shadow: var(--shadow-hover);
        transform: translateY(-4px);
        opacity: 0.7;
    }
@media (max-width: 576px) {
.category-card {
        border-radius: 0 20px
}
    }
.category-card--justify-to-start {
    margin-right: 20px;
}
@media (max-width: 768px) {
.category-card--justify-to-start {
        margin-right: 0
}
    }
.category-card__image {
    display: flex;
    //height: 220px;
    height: 324px;
    filter: brightness(70%);
    border-radius: 0 50px;
}
@media (max-width: 576px) {
.category-card__image {
        height: 120px;
        border-radius: 0 20px
}
    }
.category-card__image_placeholder {
    opacity: 0;
}
.category-card__content-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-flow: column nowrap;
    padding: 15px;
    z-index: 23;
}
.category-card__content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    text-align: center;
}
.category-card__title {
    margin: 0;
    font-weight: 500;
    text-shadow: 0px 1px 3px black;
    line-height: 20px;
    font-size: 17px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffffff;
    color: var(--main-secondary-color);
}
.category-card__description {
    padding: 0 8px;
    line-height: 20px;
    font-size: 14px;
    letter-spacing: 0.25px;
    opacity: 0;
    transition: opacity 0.25s;
    color: #000000;
    color: var(--main-font-color);
}
@media (max-width: 768px) {
.category-card__description {
        opacity: 0.7
}
    }
@media (max-width: 576px) {
.category-card__description {
       display: none
}
    }
.catalog-link-button {
    display: inline-block;
    border: none;
    border-radius: 200px;
    padding: 8px 16px 8px 16px;
    outline: none;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    font-size: 18px;
    text-align: center;
    letter-spacing: 0.75px;
    text-transform: uppercase;
    text-decoration: none;
    background: #000000;
    background: var(--card-action-primary-color);
    color: #ffffff;
    color: var(--card-action-secondary-color);
}
.catalog-link-button:hover {
        cursor: pointer;
        background: rgb(0, 0, 0);
        background: rgb(0, 0, 0);
    }
/*Table order style*/
.table-order{
    background: #ffffff;
    background: var(--card-bg-color);
    color: #000000;
    color: var(--card-item-primary-color);
    box-shadow: 0px 3px 5px 5px rgba(230, 230, 230, 0.456);
    box-shadow: var(--shadow);
    border-radius: 4px;
    display: flex;
    flex-flow: column nowrap;
    padding: 15px;
}
@media (min-width: 600px) {
.table-order{
        min-width: 550px
}
    }
.table-order__identify{
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    border: 2px solid #000000;
    border: 2px solid var(--card-action-primary-color);
    box-sizing: border-box;
    border-radius: 4px;
    padding: 8px;
    margin-bottom: 28px;
}
.table-order__identify label{
    position: absolute;
    top: -10px;
    padding: 0 2px 0 2px;
    font-style: normal;
    font-weight: normal;
    line-height: 16px;
    font-size: 12px;
    letter-spacing: 0.4px;
    color: #000000;
    color: var(--card-action-primary-color);
    background: #ffffff;
    background: var(--card-bg-color);
}
.table-order__identify p{
    width: 100%;
    border: none;
    outline: none;
    font-style: normal;
    font-weight: normal;
    margin: 5px;
    line-height: 20px;
    font-size: 14px;
    letter-spacing: 0.25px;
    color: #000000;
    color: var(--input-font-color);
    background: #ffffff;
    background: var(--card-bg-color);
}
.table-order__description p{
    margin: 5px;
}
/* order status */
.order-status {
    padding: 20px;
}
.order-status__content-wrapper {
    box-shadow: 0px 3px 5px 5px rgba(230, 230, 230, 0.456);
    box-shadow: var(--shadow);
    border-radius: 4px;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    padding: 20px;
    background: #ffffff;
    background: var(--card-bg-color);
    color: #000000;
    color: var(--card-item-primary-color);
}
.last-order {
    flex-basis: 100%;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    font-size: 18px;
    letter-spacing: 1.5px;
    color: #000000;
    color: var(--card-item-primary-color);
}
.last-order span {
    font-style: normal;
    font-weight: normal;
    line-height: 28px;
    font-size: 18px;
    letter-spacing: 0.5px;
    opacity: 0.6;
}
.order-wrapper {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    flex-basis: 100%;
}
@media (max-width: 767px) {
.order-wrapper {
        flex-flow: row wrap
}
    }
.order-id {
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    flex-basis: 49.9%;
    padding: 20px 0 0 0;
}
@media (max-width: 320px) {
.order-id {
        flex-flow: row wrap
}
    }
.order-id button {
    background: none;
    display: inline-block;
    border: none;
    border-radius: 200px;
    padding: 8px 16px 8px 16px;
    margin: 0 0 0 8px;
    outline: none;
    font-style: normal;
    font-weight: 500;
    line-height: 14px;
    font-size: 12px;
    text-align: center;
    letter-spacing: 0.75px;
    text-transform: uppercase;
    background: #000000;
    background: var(--card-action-primary-color);
    color: #ffffff;
    color: var(--card-action-secondary-color);
}
@media (max-width: 320px) {
.order-id button {
        margin: 10px 0 0 0
}
    }
.order-id button:hover {
    background: rgb(0, 0, 0);
    background: rgb(0, 0, 0);
}
.order-id label {
    position: absolute;
    top: 12px;
    left: 8px;
    padding: 0 2px 0 2px;
    font-style: normal;
    font-weight: normal;
    line-height: 16px;
    font-size: 12px;
    letter-spacing: 0.4px;
    color: #000000;
    color: var(--card-item-secondary-color);
    background: #ffffff;
    background: var(--card-bg-color);
}
.order-id input {
    outline: none;
    border: 2px solid #000000;
    border: 2px solid var(--card-item-secondary-color);
    box-sizing: border-box;
    border-radius: 200px;
    padding: 8px 16px;
    font-style: normal;
    font-weight: normal;
    line-height: 20px;
    font-size: 14px;
    letter-spacing: 0.25px;
    color: #000000;
    color: var(--search-font-color);
    background: #ffffff;
    background: var(--card-bg-color);
    min-width: 200px;
}
@media (max-width: 767px) {
.order-id input {
        min-width: 50px
}
    }
@media (max-width: 320px) {
.order-id input {
        min-width: 200px
}
    }
.order-status {
    display: flex;
    flex-flow: column nowrap;
    flex-basis: 49.9%;
    padding: 20px 0 0 0;
    min-height: 130px;
}
.order-status h1 {
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    font-size: 20px;
    letter-spacing: 0.15px;
}
.order-status__none {
    padding: 0 0 0 8px;
    font-style: normal;
    font-weight: normal;
    line-height: 28px;
    font-size: 18px;
    letter-spacing: 0.5px;
    opacity: 0.6;
    color: #000000;
    color: var(--card-item-primary-color);
}
@media (max-width: 320px) {
.order-status__none {
        width: 100%
}
    }
.order-status__found {
    padding: 0 0 0 8px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    font-size: 18px;
    letter-spacing: 1.5px;
    color: #000000;
    color: var(--card-item-primary-color);
}
.order-status__found span {
    font-style: normal;
    font-weight: normal;
    line-height: 28px;
    font-size: 18px;
    letter-spacing: 0.5px;
    opacity: 0.6;
}
/* product */
.product {
    padding: 20px;
}
.product__content-wrapper {
    display: flex;
    flex-flow: column nowrap;
}
.product__header {
    display: flex;
    flex-flow: row nowrap;
}
.product__title {
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    font-size: 34px;
    letter-spacing: 0.25px;
    color: #000000;
    color: var(--block-title-color);
    margin: 0;
}
.product__price {
    display: inline-block;
    border: none;
    border-radius: 200px;
    padding: 8px 16px 8px 16px;
    outline: none;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    font-size: 18px;
    text-align: center;
    letter-spacing: 0.75px;
    text-transform: uppercase;
    background: #000000;
    background: var(--card-action-primary-color);
    color: #ffffff;
    color: var(--card-action-secondary-color);
}
.product__main-block {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    padding: 20px 0;
}
@media (max-width: 576px) {
.product__main-block {
        flex-flow: column nowrap;
        justify-content: space-around
}
    }
.product__image-wrapper {
    border-radius: 15px;
    overflow: hidden;
}
.product__image {
    height: 300px;
}
@media (max-width: 374px) {
.product__image {
        height: 250px
}
    }
.product__options-wrapper {
    display: flex;
    flex-flow: column nowrap;
    padding: 0 20px;
}
.product__options {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    padding: 0 0 16px 0;
    flex-direction: column;
}
@media (max-width: 576px) {
.product__options {
        flex-flow: column nowrap;
        justify-content: space-around
}
    }
.option-select {
    display: flex;
    flex-flow: column nowrap;
    position: relative;
    margin: 4px;
    min-width: 225px;
}
.option-select label {
        font-style: normal;
        font-weight: normal;
        line-height: 24px;
        font-size: 14px;
    }
.option-select--custom {
    background-color: #ffffff;
    background-color: var(--card-bg-color);
    box-shadow: 0px 3px 5px 5px rgba(230, 230, 230, 0.456);
    box-shadow: var(--shadow);
    border: none;
    border-radius: 4px;
}
.option-select__items div,
.option-select--custom {
    color: #000000;
    color: var(--card-item-primary-color);
    padding: 8px 16px;
    border: none;
    cursor: pointer;
}
.option-select__items {
    position: absolute;
    background-color: #ffffff;
    background-color: var(--card-bg-color);
    top: 95%;
    left: 0;
    right: 0;
    z-index: 99;
    box-shadow: 0px 3px 5px 5px rgba(230, 230, 230, 0.456);
    box-shadow: var(--shadow);
    border-radius: 4px;
}
.option-select--hidden {
    display: none;
}
.option-select__items div:hover,
.same-as-selected {
    border-radius: 4px;
    background: rgb(230, 255, 255);
    background: rgb(230, 255, 255);
}
/*arrow*/
.option-select--custom:after {
    position: absolute;
    content: "";
    top: 38px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #000000 transparent transparent transparent;
}
.option-select--custom.select-arrow-active:after {
    border-color: transparent transparent #000000 transparent;
    top: 31px;
}
.select-arrow-active.option-select--custom {
    background: rgb(230, 255, 255);
    background: rgb(230, 255, 255);
}
.option-quantity {
    display: flex;
    flex-flow: column nowrap;
    position: relative;
    margin: 4px;
    min-width: 225px;
}
.option-quantity label {
        font-style: normal;
        font-weight: normal;
        line-height: 24px;
        font-size: 14px;
    }
.option-quantity__actions {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    background-color: #ffffff;
    background-color: var(--card-bg-color);
    box-shadow: 0px 3px 5px 5px rgba(230, 230, 230, 0.456);
    box-shadow: var(--shadow);
    border: none;
    border-radius: 4px;
    max-width: 70px;
    padding: 6px;
}
.option-quantity__actions button {
        border: none;
        background: none;
        outline: none;
    }
.option-quantity__actions button:hover {
        cursor: pointer;
        color: #000000;
        color: var(--card-action-primary-color);
        outline: none;
    }
.product__description {
    display: flex;
    flex-flow: column nowrap;
    font-style: normal;
    font-weight: normal;
    line-height: 25px;
    font-size: 15px;
    letter-spacing: 0.25px;
    color: #000000;
    color: var(--block-title-color);
    margin: 5px 0;
}
.product__description p {
        text-align: justify;
    }
.product__description a {
        text-decoration: none;
        color: #000000;
        color: var(--action-item-primary-color);
    }
.product__description a:hover {
        text-decoration: underline;
    }
.product__description-specs {
    display: flex;
    flex-flow: column nowrap;
}
.spec {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    background: #ffffff;
    background: var(--card-bg-color);
    padding: 0 4px;
}
.spec:nth-child(2n + 1) {
    background: rgb(230, 255, 255);
    background: rgb(230, 255, 255);
}
.spec--title {
    padding: 8px 4px;
}
/* choose address */
.choose-address__container {
    display: flex;
    justify-content: center;
}
.choose-address__card {
    border-radius: 15px;
    padding: 42px 89px 42px 89px;
    background: white;
    max-width: 1000px;
    width: 100%;
}
@media (max-width: 1100px) {
.choose-address__card {
        padding: 20px 20px 20px 20px
}
    }
@media (max-width: 600px) {
.choose-address__card {
        padding: 10px 15px 10px 15px
}
    }
.choose-address__card-title {
    font-weight: 700;
    font-size: 24px;
}
.choose-address__card-radio {
    display: flex;
    padding: 15px 20px 25px 0;
    font-size: 24px!important;
    justify-content: space-between;
}
@media (max-width: 700px) {
.choose-address__card-radio {
       padding: 15px 0 15px 0
}
    }
.choose-address__card-radio-delivery {
    line-height: 38px;
}
@media (max-width: 700px) {
.choose-address__card-radio-delivery {
        line-height: 20px;
        font-size: 16px;
        text-align: right;
        font-weight: bold;
        margin-left: 10px;
        display: flex;
        align-items: center
}
    }
@media (max-width: 380px) {
.choose-address__card-radio-delivery {
        font-size: 12px
}
    }
.choose-address__card-radio-block {
    display: flex;
}
.choose-address__card-radio-block div:nth-child(2) {
        margin-left: 15px;
    }
@media (max-width: 400px) {
.choose-address__card-radio-block {
        font-size: 15px
}
    }
.choose-address__card_map {
    width: 100%;
    height: 580px;
}
.choose-address__card_map iframe {
        border: none;
    }
@media (max-width: 1100px) {
.choose-address__card_map {
        height: 350px
}
    }
.choose-address__card-delivery {
    display: flex;
}
@media (max-width: 874px) {
.choose-address__card-delivery {
        flex-direction: column;
        padding-bottom: 20px
}
    }
.choose-address__card-delivery-input {
    flex: 1;
}
.choose-address__card-delivery-button {
    padding-left: 20px;
}
@media (max-width: 874px) {
.choose-address__card-delivery-button {
        justify-content: center;
        display: flex;
        padding-left: 0
}
    }
.hidden-map {
    visibility: hidden;
    display: none;
}
/* products */
.catalog {
    padding: 20px;
}
@media (max-width: 374px) {
.catalog {
        padding: 20px 8px 0 8px
}
    }
.catalog__title {
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    font-size: 34px;
    letter-spacing: 0.25px;
    color: #000000;
    color: var(--block-title-color);
    margin: 0;
}
.categories-wrapper{
    overflow-x: scroll;
}
.categories-2wrapper{
    position: relative;
    background-color: #ffffff;
    background-color: var(--card-bg-color);
}
.categories-2wrapper:after {
    content: '';
    position: absolute;
    right:0;
    top:0;
    bottom: 0;
    width: 120px;
    background-color: #ffffff;
    background-color: var(--card-bg-color);
    z-index: 15;
}
.categories {
    list-style-type: none;
    display: flex;
    position: -webkit-sticky;
    position: sticky;
    top: 90px;
    z-index: 1;
    flex-flow: column wrap;
    justify-content: flex-start;
    padding: 8px;
    margin: 0;
    box-shadow: 0px 3px 5px 5px rgba(230, 230, 230, 0.456);
    box-shadow: var(--shadow);
    border: none;
    border-radius: 4px;
    background: #ffffff;
    background: var(--card-bg-color);
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    font-size: 14px;
    letter-spacing: 1.5px;
    min-width: 240px;
    background: #ffffff;
    background: var(--card-bg-color);
}
@media (max-width: 768px) {
.categories {
        display: none
}
    }
@media (max-width: 1200px) {
.categories {
        top: 100px
}
    }
.categories_top {
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 3px 8px;
    box-shadow: none;
    border-radius: 0;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding-right: 120px;
}
.categories_top .accordion-item{
        width: auto;
    }
.categories_top .accordion__header{
        padding: 4px 40px;
    }
.categories_scroll {
    cursor: -webkit-grab;
    cursor: grab;
}
.categories--top {
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 3px 8px;
    box-shadow: none;
    border-radius: 0;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding-right: 120px;
}
.categories--top .accordion-item{
        width: auto;
    }
.categories--top .accordion__header{
        padding: 4px 40px;
    }
.categories--scroll {
    cursor: -webkit-grab;
    cursor: grab;
}
.categories__item {
    text-decoration: none;
    color: #000000;
    color: var(--card-action-primary-color);
    padding: 8px;
}
.categories__item:hover {
        color: #000000;
        color: var(--card-item-primary-color);
    }
.subcategories {
    position: relative;
    min-width: 200px;
    padding: 8px 0;
}
.subcategories:hover {
    background: rgb(242, 255, 255);
    background: rgb(242, 255, 255);
}
.subcategories .categories {
    display: none;
    position: absolute;
    top: 30px;
    left: 75%;
    margin-top: -1px;
    z-index: 15;
    box-shadow: 0px 3px 5px 5px rgba(230, 230, 230, 0.456);
    box-shadow: var(--shadow);
}
.subcategories:nth-child(2n) {
    background: rgb(249, 255, 255);
    background: rgb(249, 255, 255);
}
.categories .subcategories:hover > .categories {
    display: flex;
    z-index: 10;
}
.accordion-item {
    display: flex;
    flex-flow: column nowrap;
    overflow: auto;
}
.accordion-item {
    background: #ffffff;
    background: var(--card-bg-color);
}
.accordion__header {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 4px 16px;
}
.accordion__header:hover {
        background: rgb(249, 255, 255);
        background: rgb(249, 255, 255);
    }
.accordion-arrow {
    color: #000000;
    color: var(--card-action-primary-color);
    width: 24px;
    height: 24px;
}
.accordion__header .accordion-arrow {
    transform: rotate(90deg);
}
.accordion__header_open .accordion-arrow {
    transform: none;
}
.accordion-item__content {
    display: none;
    overflow: auto;
    padding: 4px;
}
.accordion-item__content_category {
    flex-flow: column nowrap;
    padding: 0 0 0 20px;
}
.menu-filter-combo{
    position: -webkit-sticky;
    position: sticky;
    top: 0px;
    z-index:15;
}
.filters {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-end;
    position: -webkit-sticky;
    position: sticky;
    top: 0px;
    padding: 0 0 8px 0;
    z-index: 15;
    background: #ffffff;
    background: var(--main-bg-color);
}
@media (max-width: 768px) {
.filters {
        display: none
}
    }
.filters--combo{
    /*align-self: flex-end;
    flex-grow: 2;*/
}
.filters__actions {
    display: flex;
    flex-flow: row nowrap;
}
.filter__button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    border-radius: 200px;
    padding: 8px;
    margin: 8px 8px 8px 0;
    outline: none;
    font-style: normal;
    font-weight: 500;
    line-height: 14px;
    font-size: 12px;
    text-align: center;
    letter-spacing: 0.75px;
    text-transform: uppercase;
    text-decoration: none;
    background: #000000;
    background: var(--card-action-primary-color);
    color: #ffffff;
    color: var(--card-action-secondary-color);
}
.filter__button:hover {
        cursor: pointer;
        background: rgb(0, 0, 0);
        background: rgb(0, 0, 0);
    }
.dropmic--show > .filter__button {
    background: rgb(0, 0, 0);
    background: rgb(0, 0, 0);
}
.filter__button--drop {
    background: #f04949;
    background: var(--main-error-color);
}
.filter__button--drop:hover {
        background: rgb(215, 73, 73);
        background: rgb(215, 73, 73);
    }
.filter__button--apply {
    margin: 8px 8px 0 0;
}
.filter__dropdown {
    display: flex;
    flex-flow: column nowrap;
    border: none;
    z-index: 25;
    padding: 8px;
    min-height: 40px;
    box-shadow: 0px 3px 5px 5px rgba(230, 230, 230, 0.456);
    box-shadow: var(--shadow);
    overflow-y: scroll;
    background: #ffffff;
    background: var(--dropdown-card-bg-color);
}
.filter__dropdown-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 8px 0 0 0;
    border-top: 1px solid hsl(0, 0%, 80%);
    border-top: 1px solid hsl(0, 0%, 80%);
    background: #ffffff;
    background: var(--dropdown-card-bg-color);
}
.price-filter-wrapper {
    display: flex;
    flex-flow: column nowrap;
}
.price-filter {
    display: flex;
    flex-flow: row nowrap;
    margin: 4px 0 4px 0;
}
.price-filter__label {
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 4px 0 0 4px;
    padding: 8px 16px 8px 16px;
    outline: none;
    font-style: normal;
    font-weight: 500;
    line-height: 12px;
    font-size: 10px;
    text-align: center;
    letter-spacing: 0.75px;
    text-transform: uppercase;
    background: #000000;
    background: var(--dropdown-card-button-bg-color);
    color: #ffffff;
    color: var(--dropdown-card-button-font-color);
}
.price-filter__input {
    border: 2px solid #000000;
    border: 2px solid var(--dropdown-card-button-bg-color);
    border-radius: 0 4px 4px 0;
    box-sizing: border-box;
    padding: 6px;
    width: 80px;
    outline: none;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    font-size: 14px;
    text-align: center;
    letter-spacing: 0.75px;
    text-transform: uppercase;
}
@media (max-width: 768px) {
.price-filter__input {
        width: 60px
}
    }
.filter__title {
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.filter__options {
    list-style-type: none;
    padding: 0 8px;
    margin: 4px 0;
    max-height: 80px;
    overflow: hidden;
    overflow-y: scroll;
}
.filter__options li {
        padding: 4px 4px 4px 0;
    }
.filter__options li:nth-child(2n) {
        background: rgb(242, 255, 255);
        background: rgb(242, 255, 255);
    }
.filter__option {
    display: flex;
    align-items: center;
    padding: 4px 4px 4px 0;
}
.filter__option .option-label {
        display: inline-block;
        margin: 0 0 0 8px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px;
        font-size: 14px;
        letter-spacing: 1.5px;
    }
.filter__option .option-label:hover {
        color: #000000;
        color: var(--dropdown-card-action-color);
    }
.filter__option:hover .checkbox + label {
        background: hsl(0, 0%, 90%);
        background: hsl(0, 0%, 90%);
    }
.filters__item {
    padding: 8px 8px 8px 0;
}
.catalog__subheader {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}
@media (min-width: 769px) {
.catalog__subheader {
        display: none
}
    }
/* This is fix for plagin sidebarjs, that they were instantly hide from screen */
.sidebarjs--left {
    transform: translate(-100%);
}
.sidebarjs--right {
    transform: translate(100%);
    top: 69px;
}
.sidebar-accordion-item {
    display: flex;
    flex-flow: column nowrap;
    overflow: auto;
    background: #ffffff;
    background: var(--sidebar-bg-color);
    letter-spacing: 1px;
}
.sidebar-accordion__header {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 4px 16px;
}
.sidebar-accordion__header .sidebar-accordion-arrow {
    transform: rotate(90deg);
}
.sidebar-accordion__header_open .sidebar-accordion-arrow {
    transform: none;
}
.sidebar-accordion-item__content {
    display: none;
    overflow: auto;
    padding: 4px 0px 4px 8px;
}
.sidebar-accordion-item__content_filters {
    flex-flow: column nowrap;
}
.filter-mobile {
    padding: 6px 0 8px 12px;
    display: flex;
    align-items: center;
    color: #000000;
    color: var(--dropdown-card-item-color);
}
.filter-mobile > .option-label {
        line-height: 20px;
        font-size: 14px;
        letter-spacing: 1.5px;
    }
.sidebar-accordion-item__content_category {
    flex-flow: column nowrap;
}
.price-filter-mobile {
    display: flex;
    justify-content: space-around;
    width: 100%;
}
.price-filter-wrapper--mobile {
    width: 100%;
}
.filter__options--mobile {
    width: 100%;
}
.products-grid-wrapper {
    padding: 4px;
    display: grid;
    grid-template-columns: 1fr 3fr;
    grid-column-gap: 20px;
}
@media (min-width: 1200px) {
.products-grid-wrapper {
        grid-column-gap: 70px
}
    }
@media (max-width: 768px) {
.products-grid-wrapper {
        grid-template-columns: 1fr
}
    }
.products {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
}
@media (max-width: 576px) {
.products {
        justify-content: space-around
}
    }
.products__empty-page {
    color: #000000;
    color: var(--block-title-color);
}
.pagination__wrapper {
    display: flex;
    justify-content: center;
}
.pagination {
    display: flex;
    flex-flow: row nowrap;
    list-style: none;
    padding: 0;
}
.pagination__page {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    background: var(--card-bg-color);
    color: #000000;
    color: var(--card-item-primary-color);
    padding: 8px;
    margin: 8px;
    border-radius: 4px;
}
.pagination__page a {
        color: #000000;
        color: var(--card-item-primary-color);
        text-decoration: none;
    }
.pagination__page a:hover {
        color: #000000;
        color: var(--card-action-primary-color);
    }
@media (max-width: 424px) {
.pagination__page {
        margin: 4px
}
    }
.pagination__current {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000000;
    background: var(--card-action-primary-color);
    color: #ffffff;
    color: var(--card-action-secondary-color);
    padding: 8px;
    margin: 8px;
    border-radius: 4px;
}
@media (max-width: 424px) {
.pagination__current {
        margin: 4px
}
    }
.pagination__button {
    border: none;
    border-radius: 0;
    align-items: center;
    display: flex;
}
.pagination__button a {
        color: #000000;
        color: var(--card-item-primary-color);
    }
.pagination__button:hover a {
        color: #000000;
        color: var(--card-action-primary-color);
    }
/* components */
/* featured products */
.featured-products {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    margin: 0 8px;
}
@media (max-width:768px) {
.featured-products {
        margin: 0
}
    }
.featured-products__title {
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    font-size: 34px;
    letter-spacing: 0.25px;
    color: #000000;
    color: var(--block-title-color);
    margin-top: 0;
}
/* feedback form */
.feedback-form {
    display: flex;
    flex-flow: column nowrap;
    width: 100%;
    background: #ffffff;
    background: var(--card-bg-color);
    border-radius: 4px;
    box-sizing: border-box;
}
@media (max-width: 320px) {
.feedback-form {
        min-width: 250px
}
    }
.feedback-form-padding {
    padding: 28px;
}
.feedback-form__checkbox {
    display: flex;
    flex-flow: row nowrap;
    padding: 0 0 16px 0;
}
.feedback-form__checkbox-label {
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    font-size: 14px;
    letter-spacing: 1.5px;
    color: #000000;
    color: var(--card-item-primary-color);
}
.feedback-form__checkbox-label a {
        color: #000000;
        color: var(--card-action-primary-color);
        text-decoration: none;
    }
.feedback-form__checkbox-label a:hover {
        text-decoration: underline;
    }
.feedback-form__checkbox-label.invalid a {
    color: #f04949;
    color: var(--main-error-color);
}
.feedback-form__checkbox-content {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
}
.feedback-form__output-wrapper_half {
    box-sizing: border-box;
    flex-basis: 40%;
    margin: 8px;
    padding: 10px;
}
@media (max-width:560px) {
.feedback-form__output-wrapper_half {
        flex-basis: 90%
}        
    }
.feedback-form__input-wrapper_half {
    flex-basis: 40%;
}
@media (max-width:560px) {
.feedback-form__input-wrapper_half {
        flex-basis: 90%
}        
    }
.delivery-time {
    display: flex;
    justify-content: space-between;
}
@media (max-width: 600px) {
.delivery-time {
        flex-direction: column
}
    }
.delivery-interval {
    width: 45%;
}
@media (max-width: 600px) {
.delivery-interval {
        margin-top: -20px;
        width: 100%
}
    }
.delivery-date {
    width: 45%;
}
@media (max-width: 600px) {
.delivery-date {
        width: 100%
}
    }
.delivery-time-title {
    margin-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.delivery-title {
    margin-left: 20px;
    padding-bottom: 10px;
    margin-top: 0px;
    margin-bottom: 30px;
}
.delivery-intervals-select {
    width:100%;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    grid-area: select;
    border: none;
    font-size: 14px;
}
.delivery-intervals-select__triangle {
    width:100%;
    display: grid;
    grid-template-areas: "select";
    align-items: center;
    position: relative;
    padding: 0 10px;
    border: 1px solid black;
    border-radius: 5px;
    border: none;
}
.delivery-intervals-select__triangle:after {
    grid-area: select;
    content: "";
    justify-self: end;
    width: 0.8em;
    height: 0.5em;
    background-color: #000000;
    background-color: var(--main-font-color);
    opacity:.6;
    -webkit-clip-path: polygon(100% 0%, 0 0%, 50% 100%);
            clip-path: polygon(100% 0%, 0 0%, 50% 100%);
}
.feedback-form__input-wrapper {
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    border: 1px solid rgba(51,51,51,0.50196);
    box-sizing: border-box;
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 28px;
}
.feedback-form__input-wrapper input {
    width: 100%;
    border: none;
    outline: none;
    font-style: normal;
    font-weight: normal;
    line-height: 20px;
    font-size: 16px;
    letter-spacing: 0.25px;
    color: #000000;
    color: var(--input-font-color);
    background: #ffffff;
    background: var(--card-bg-color);
}
.disabled__input {
    background: gainsboro;
}
.feedback-form__input-wrapper .prompt-list {
    z-index: 9999;
    position: absolute;
    top: 46px;
    left: 2px;
    width: 100%;
    border-radius: 15px;
    border: black 1px solid;
    background: #FFFFFF;
    padding: 15px 0 15px 15px;
}
.feedback-form__input-wrapper .prompt-list .prompt {
        line-height: 19px;
        font-size: 16px;
        border-radius: 15px;
        cursor: pointer;
        padding: 8px 0 8px 20px;
    }
.feedback-form__input-wrapper .prompt-list .prompt:hover {
        background: #EF4618;
        background: var(--footer-title-color);
    }
.feedback-form__input-wrapper .prompt-list div:last-child {
        border-bottom: black 1px solid;
    }
.feedback-form__input-wrapper input::-moz-placeholder {
    color: hsl(0, 0%, 60%);
    color: hsl(0, 0%, 60%);
}
.feedback-form__input-wrapper input:-ms-input-placeholder {
    color: hsl(0, 0%, 60%);
    color: hsl(0, 0%, 60%);
}
.feedback-form__input-wrapper input::placeholder {
    color: hsl(0, 0%, 60%);
    color: hsl(0, 0%, 60%);
}
.feedback-form__input-wrapper label {
    position: absolute;
    top: -20px;
    padding: 0 2px 0 2px;
    font-style: normal;
    font-weight: normal;
    line-height: 16px;
    font-size: 12px;
    letter-spacing: 0.4px;
    color: rgba(51,51,51,0.50196);
    background: #ffffff;
    background: var(--card-bg-color);
}
.feedback-form__input-wrapper span {
    position: absolute;
    bottom: -18px;
    font-style: normal;
    font-weight: normal;
    line-height: 16px;
    font-size: 12px;
    letter-spacing: 0.4px;
    color: #f04949;
    color: var(--main-error-color);
}
.feedback-form__input-wrapper.invalid{
    border: 2px solid #f04949;
    border: 2px solid var(--main-error-color);
}
.feedback-form__input-wrapper label.invalid {
    color: #f04949;
    color: var(--main-error-color);
}
.feedback-form__textarea-wrapper {
    position: relative;
    display: flex;
    flex-flow: column nowrap;
    padding: 0 0 24px 0;
}
.feedback-form__textarea-wrapper textarea {
    outline: none;
    resize: none;
    border-radius: 4px;
    border: 2px solid #000000;
    border: 2px solid var(--card-action-primary-color);
    padding: 8px;
    font-style: normal;
    font-weight: normal;
    line-height: 20px;
    font-size: 14px;
    letter-spacing: 0.25px;
    color: #000000;
    color: var(--input-font-color);
    background: #ffffff;
    background: var(--card-bg-color);
}
.feedback-form__textarea-wrapper textarea::-moz-placeholder {
    color: hsl(0, 0%, 60%);
    color: hsl(0, 0%, 60%);
}
.feedback-form__textarea-wrapper textarea:-ms-input-placeholder {
    color: hsl(0, 0%, 60%);
    color: hsl(0, 0%, 60%);
}
.feedback-form__textarea-wrapper textarea::placeholder {
    color: hsl(0, 0%, 60%);
    color: hsl(0, 0%, 60%);
}
.feedback-form__textarea-wrapper label {
    position: absolute;
    top: -8px;
    left: 9px;
    padding: 0 2px 0 2px;
    font-style: normal;
    font-weight: normal;
    line-height: 16px;
    font-size: 12px;
    letter-spacing: 0.4px;
    color: #000000;
    color: var(--card-action-primary-color);
    background: #ffffff;
    background: var(--card-bg-color);
}
.feedback-form__button {
    display: inline-block;
    border: none;
    border-radius: 200px;
    padding: 8px 16px 8px 16px;
    outline: none;
    width: 300px;
    height: 50px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    font-size: 16px;
    text-align: center;
    letter-spacing: 0.75px;
    text-transform: uppercase;
    background: #EF4618;
    background: var(--footer-title-color);
    color: #ffffff;
    color: var(--card-action-secondary-color);
}
.feedback-form__button:hover {
        background: #F7967D;
        cursor: pointer;
    }
.feedback-form__button:active {
        background: #9B2708;
    }
.feedback-form__button:disabled {
        background: #E0E0E0;
        color: #8B8B8B;
    }
.feedback-form__button-large {
    width: 100%;
}
.scalable-img {
    width: 100%;
}
/* product card */
.card {
    display: flex;
    flex-flow: column nowrap;
    box-shadow: 0px 3px 5px 5px rgba(230, 230, 230, 0.456);
    box-shadow: var(--shadow);
    transition: 0.25s ease-out;
    border-radius: 0 50px;
    overflow: hidden;
    width: 23%;
    margin-bottom: 32px;
    margin:10px;
}
.card:hover {
        box-shadow: 0px 10px 10px 0px rgba(230, 230, 230, 0.656);
        box-shadow: var(--shadow-hover);
        transform: translateY(-4px);
    }
.card__image-wrapper {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    cursor: pointer;
}
.card__image {
    display: flex;
    width: 100%;
    border-radius: 0 50px 0 0;
}
.card__image--none {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
    background: none;
    color: #000000;
    color: var(--card-font-color);
    border-radius: 15px;
}
.card__image--none::before {
    content: '\f82a';
    color: lightgray;
    padding: 95px;
    display: inline-block;
    font: normal normal normal 24px/1 "Material Design Icons";
    font-size: 70px;
    text-rendering: auto;
    line-height: inherit;
}
.card__image-label {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 11px 21px;
    background: #EF8B18;
    border: 2px solid #EF8B18;
    border-radius: 20px;
    font-weight: 900;
    font-size: 14px;
    line-height: 17px;
    color: #F1F1F1;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.card__info {
    display: flex;
    flex-flow: column nowrap;
    height: 100%;
    padding: 11px 20px;
    background: #F2F2F2;
}
.card__main-info {
    display: flex;
    justify-content: space-between;
}
.card__title {
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    font-size: 20px;
    line-height: 24px;
    color: #333333;
}
.card__price {
    font-family: 'Inter';
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    font-size: 20px;
    line-height: 24px;
    color: #333333;
    min-width: 70px;
    padding: 8px 0;
}
.card__description {
    font-style: normal;
    font-weight: 300;
    line-height: 19px;
    font-size: 16px;
    color: rgba(51, 51, 51);
    opacity: .5;
    min-height: 32px;
}
.card__description p {
    margin: 20px 0;
}
.card__actions {
    margin: auto 0 0 0;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
}
.card__button {
    display: inline-block;
    border: none;
    border-radius: 20px;
    min-width: 152px;
    padding: 10px;
    outline: none;
    font-style: normal;
    font-weight: 500;
    line-height: 19px;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    color: #F2F2F2;
    background: #EF4618;
}
.card__button:hover {
        background: #F7967D;
        cursor: pointer;
    }
.card__button:active {
        background: #9B2708;
    }
.card__button:disabled {
        background: #E0E0E0;
        color: #8B8B8B;
    }
.card__button_disabled {
    opacity: 0.6;
}
.card__button_disabled:hover {
    cursor: default;
    opacity: 0.6;
    color: #000000;
    color: var(--card-action-primary-color);
}
/* product card (adaptive) */
@media (max-width: 1200px) {
    .card {
        width: 212px;
        height: 400px;
    }

    .card__image {
        height: 183px;
    }

    .card__info {
        padding: 8px 17px 0 14px;
    }

    .card__title {
        margin-bottom: 10px;
    }

    .card__description p {
        margin: 0 0 6px 0;

    }

    .card__actions {
        margin-bottom: 16px;
    }

    .card__price {
        padding: 4px 0;
    }

    .card__button {
        font-size: 12px;
        font-weight: 500;
        min-width: 99px;
        max-width: 109px;
        padding: 8px 10px;
        line-height: 14px;
        height: 31px;
        white-space: nowrap;
    }

}
/* product card (mobile) */
@media (max-width: 490px) {
    .card {
        width: 95%;
        flex-direction: row;
        border-radius: 20px;
        height: 130px;
    }

    .card__image {
        width: 130px;
        height: 130px;
        border-radius: 20px 0 0 20px;
    }

    .card__image-label {
        display: none;
    }

    .card__image-wrapper {
        width: auto;
    }

    .card__info {
        /*border-radius: 0 20px 0 0;*/
        padding: 5px 10px;
    }

    .card__title {
        font-size: 16px;
        font-weight: 500;
        line-height: 20px;
        margin-bottom: 4px;
    }

    .card__price {
        font-size: 16px;
        font-weight: 500;
        padding: 4px 0;
    }

    .card__description {
        font-size: 12px;
        font-weight: 300;
        flex-shrink: 2;
    }
        .card__description p {
            margin: 0;
            line-height: 15px;
            text-overflow: ellipsis;
            overflow: hidden;
        }

    .card__button {
        font-size: 12px;
        font-weight: 500;
        min-width: 99px;
        max-width: 109px;
        padding: 8px 10px;
        line-height: 14px;
        height: 31px;
        white-space: nowrap;
    }

    .featured-products .around-xs {
        flex-direction: column;
    }
}
/* slider */
.admin-slider {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
    padding: 10px 0;
    border-bottom: 1px solid #e5e5e5;
}
.admin-slider__title {
    margin: 0;
    line-height: 26px;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.admin-slider__link {
    position: relative;
    text-decoration: none;
    border-radius: 200px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    min-width: 100px;
    min-height: 34px;
    border: none;
    padding: 5px 20px;
    outline: none;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    font-size: 14px;
    text-align: center;
    letter-spacing: 0.75px;
    text-transform: uppercase;
    background: #000000;
    background: var(--header-item-color);
    color: #ffffff;
    color: var(--header-bg-color);
}
.admin-slider__link:hover {
    background: rgb(0, 0, 0);
    background: rgb(0, 0, 0);
    cursor: pointer;
}
.slider-wrapper {
    position: relative;
    background: #333333;
}
.slider__container {
    height: 100%;
}
.slide {
    position: relative;
}
.slide__shadow {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 22;
    background: linear-gradient(
        to bottom,
        rgba(237, 237, 237, 0) 0%,
        #ffffff 100%
    );
    background: var(--slide-overlay);
}
.prev,
.next {
    position: absolute;
    top: calc(50% - 36px / 2);
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
    color: #000000;
    color: var(--slider-action-secondary-color);
}
.prev:hover, .next:hover {
        color: #000000;
        color: var(--slider-action-primary-color);
    }
.prev {
    left: 0;
}
.next {
    right: 0;
}
.slide__img {
    width: 100%;
}
.slide__content {
    z-index: 23;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
    align-items: flex-end;
    padding: 20px;
}
.slide__info {
    display: flex;
    flex-flow: column nowrap;
}
.slide__title {
    margin: 0;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    font-size: 34px;
    letter-spacing: 0.25px;
}
@media (max-width: 767px) {
.slide__title {
        font-size: 24px
}
    }
.slide__body {
    margin: 0;
    font-style: normal;
    font-weight: normal;
    line-height: 28px;
    font-size: 18px;
    letter-spacing: 0.5px;
}
@media (max-width: 767px) {
.slide__body {
        line-height: 16px;
        font-size: 12px
}
    }
.slide__button {
    text-decoration: none;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    font-size: 20px;
    letter-spacing: 0.75px;
    text-transform: uppercase;
    color: #000000;
    color: var(--slider-action-primary-color);
}
.slide__button:hover {
        color: #000000;
        color: var(--slider-action-secondary-color);
    }
@media (max-width: 767px) {
.slide__button {
        line-height: 18px;
        font-size: 16px
}
    }
/* slide List */
.slide-list {
    position: relative;
    min-height: inherit;
    padding: 20px 0;
}
@media (max-width: 425px) {
.slide-list {
        padding: 20px 0
}
    }
.slide-list__content {
    counter-reset: li; 
    list-style: none; 
    font: 14px "Trebuchet MS", "Lucida Sans";
    padding: 0;
    text-shadow: 0 1px 0 rgba(255,255,255,.5);
}
.slide-list__content li {
    display: flex;
    margin-bottom: 10px;
}
.slide-list__content a {
    position: relative;
    display: block;
    border-radius: 5px;
    width: 100%;
    padding: .4em .4em .4em .8em;
    margin: 0 0 0 2.5em;
    background: #000000;
    background: var(--header-item-color);
    color: #000000;
    color: var(--header-nav-item-color);
    text-decoration: none;
    transition: all .3s ease-out;
}
.slide-list__content a:hover {
    background: rgb(0, 0, 0);
    background: rgb(0, 0, 0)
}
.slide-list__content a:before {
    content: counter(li);
    counter-increment: li;
    position: absolute;
    border-radius: 5px;
    left: -2.5em;
    top: 50%;
    margin-top: -1em;
    background: #000000;
    background: var(--header-item-color);
    color: #000000;
    color: var(--header-nav-item-color);
    height: 2em;
    width: 2em;
    line-height: 2em;
    text-align: center;
    font-weight: bold;
}
.slide-list__content a:after {
    position: absolute;
    content: "";
    border: .5em solid transparent;
    left: -1em;
    top: 50%;
    margin-top: -.5em;
    transition: all .3s ease-out;
}
.slide-list__content a:hover:after {
    left: -.5em;
    border-left-color: #000000;
    border-left-color: var(--header-item-color);
}
@media (max-width: 480px) {
.slide-list__create-new {
        padding-top: 10px;
        text-align: center
}
    }
.slide-list__button-delete {
    position: relative;
    text-decoration: none;
    border-radius: 200px;
    display: flex;
    align-items: center;
    background: #000000;
    background: var(--header-item-color);
    color: #ffffff;
    color: var(--header-bg-color);
    padding: 0px 20px;
}
.slide-list__button-create {
    float: right;
    padding: 10px 20px;
    align-items: center;
    text-decoration: none;
    border-radius: 200px;
    background: #000000;
    background: var(--header-item-color);
    color: #ffffff;
    color: var(--header-bg-color);
}
@media (max-width: 480px) {
.slide-list__button-create {
        float: none
}
    }
.slide-list__button-delete:hover,.slide-list__button-create:hover {
    background: rgb(0, 0, 0);
    background: rgb(0, 0, 0);
    cursor: pointer;
}
/* slide customization */
.slide-customization {
    position: relative;
    min-height: inherit;
    padding: 20px 0;
}
@media (max-width: 425px) {
.slide-customization {
        padding: 20px 0
}
    }
.slide-customization__title {
    font-family: Roboto;
    font-weight: normal;
    font-style: normal;
    font-size: 34px;
    letter-spacing: 0.25px;
    color: #000000;
    color: var(--main-font-color);
    margin-top: 0;
}
.slide-customization__image-wrapper {
    width: 100%;
}
.slide-customization__image-wrapper img {
    width: 100%;
    background-image: url('data:image/gif;base64,R0lGODlhCgAIAIABAN3d3f///yH5BAEAAAEALAAAAAAKAAgAAAINjAOnyJv2oJOrVXrzKQA7');
}
.slide-customization__options {
    display: flex;
    align-items: center;
    padding: 30px 0;
}
.slide-customization__customizationer {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}
.slide-customization__checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.slide-customization__lever {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}
.slide-customization__lever::before {
        position: absolute;
        border-radius: 50%;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        transition: .4s;
    }
.slide-customization__lever:hover {
        background-color: rgb(179, 204, 204);
    }
.slide-customization__checkbox:checked + .slide-customization__lever {
    background-color: #000000;
    background-color: var(--main-color);
}
/*#2196F3 */
.slide-customization__checkbox:checked + .slide-customization__lever:hover{
        background-color: rgb(0, 0, 0);
        background-color: rgb(0, 0, 0);
    }
.slide-customization__checkbox:focus + .slide-customization__lever {
    box-shadow: 0 0 1px #000000;
    box-shadow: 0 0 1px var(--main-color);/*#2196F3 */
}
.slide-customization__checkbox:checked + .slide-customization__lever::before {
    transform: translateX(26px);
}
.slide-customization__select {
    width: 49%;
    height: 35px;
    font-size: 1.2rem;
}
.slide-customization__input-field {
    position: relative;
    margin-top: 25px;
    padding: 15px 0 0;
    width: 50%;
}
.slide-customization__textarea {
    font-family: inherit;
    width: 100%;
    border: 0;
    border-bottom: 2px solid #9b9b9b;
    outline: 0;
    font-size: 1.3rem;
    padding: 7px 0;
}
.slide-customization__textarea::-moz-placeholder {
    color: transparent;
}
.slide-customization__textarea:-ms-input-placeholder {
    color: transparent;
}
.slide-customization__textarea::placeholder {
    color: transparent;
}
.slide-customization__textarea:-moz-placeholder-shown ~ .slide-customization__field-label {
    font-size: 1.3rem;
    cursor: text;
    top: 20px;
}
.slide-customization__textarea:-ms-input-placeholder ~ .slide-customization__field-label {
    font-size: 1.3rem;
    cursor: text;
    top: 20px;
}
.slide-customization__textarea:placeholder-shown ~ .slide-customization__field-label {
    font-size: 1.3rem;
    cursor: text;
    top: 20px;
}
.slide-customization__field-label {
    position: absolute;
    top: -15px;
    display: block;
    transition: 0.2s;
    font-size: 1rem;
}
.slide-customization__textarea:focus ~ .slide-customization__field-label {
    position: absolute;
    top: -15px;
    display: block;
    transition: 0.2s;
    font-size: 1rem;
    padding-bottom: 6px;
    font-weight: 400;
}
.slide-customization__action {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px 0;
}
.slide-customization__button {
    position: relative;
    text-decoration: none;
    border-radius: 200px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border: none;
    padding: 10px 20px;
    outline: none;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    font-size: 14px;
    text-align: center;
    letter-spacing: 0.75px;
    text-transform: uppercase;
    background: #000000;
    background: var(--header-item-color);
    color: #ffffff;
    color: var(--header-bg-color);
}
.slide-customization__button:hover {
    background: rgb(0, 0, 0);
    background: rgb(0, 0, 0);
    cursor: pointer;
}
/* slider */
.swiper-slide {
    height: 100% !important;
}
.swiper-slide__block {
    display: flex;
    align-items: center;
}
.swiper-slide__img {
    height: 100% !important;
    width: 130% !important;
    border-radius: none !important;
    transform: translateX(10%);
}
.swiper-slide__description h3{
    font-weight: 700;
    font-size: 80px;
    line-height: 97px;
    text-transform: uppercase;
}
.swiper-slide__description p{
    font-weight: 400;
    font-size: 24px;
    line-height: 29px;
    text-transform: lowercase;
}
.swiper-pagination-bullets {
    bottom: 30px;
}
.swiper-pagination-bullet {
    background-color: #F1F1F1 !important;
    opacity: 1;
}
@media (min-width: 768px) {
.swiper-pagination-bullet {
        height: 16px;
        width: 16px
}
    }
.swiper-pagination-bullet-active {
    background-color: #EF4618 !important;
}


/*# sourceMappingURL=styles.css.map*/