:root {
  --color-primary: #010066;
  --color-secondary: #01BFFB;
  --color-black: #212641;
  --color-content: #373A3C;
  --color-orange: #EB5757;
  --form-control-size: 42px;
}

*,
*::before,
*::after {
  box-sizing: border-box !important;
  outline: none;
}

html, body {
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  line-height: 1.3;
  overflow-x: hidden;
}
html.header--mobile, body.header--mobile {
  overflow: hidden;
}

a,
a:active,
a:hover {
  text-decoration: none;
  color: inherit;
}

p {
  padding: 0;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  color: #000;
}

.app {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

img {
  -webkit-backface-visibility: hidden;
  /* IE 9 */
  /* Chrome, Safari, Opera */
  transform: translateZ(0);
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.form-search {
  display: flex;
  align-items: center;
  padding: 3px;
  border: 1px solid #E3E4E8;
  border-radius: 4px;
}
.form-search svg {
  margin: 0 10px;
}
.form-search .btn.btn-primary {
  height: 40px;
}
.form-search:focus {
  border-color: var(--color-black);
}
.form-search .form-control {
  font-size: 16px;
  border: none;
  padding: 0 100px 0 3px;
}
.form-search .form-control:focus {
  border: none;
  box-shadow: none;
}
.form-search .form-control:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #9FA1AD;
}
.form-search .form-control::-moz-placeholder {
  color: #9FA1AD;
}
.form-search .form-control::placeholder {
  color: #9FA1AD;
}

[v-cloak] {
  display: none !important;
}

.main {
  flex: 1;
}

.section {
  padding: 30px 0;
}
.section.section--gray {
  background: #EBF3FE;
}
.section.section--yellow {
  background: var(--color-yellow);
}
@media only screen and (min-width: 1024px) {
  .section {
    padding: 65px 0;
  }
}

.app-heading {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 0 20px;
  color: var(--color-grey-20);
}
.app-heading.app-heading--left {
  justify-content: flex-start;
}
@media only screen and (min-width: 768px) {
  .app-heading {
    padding: 0 0 25px;
  }
}

.app-heading.app-heading--horizontal .app-title {
  margin-bottom: 0;
}
.app-heading.app-heading--horizontal .app-heading__muted {
  font-size: 16px;
  color: #545D69;
  margin-left: 12px;
  transform: translateY(2px);
}

.app-title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 0;
}
@media only screen and (min-width: 1024px) {
  .app-title {
    font-size: 24px;
  }
}

.app-subtitle {
  font-weight: bold;
  font-size: 18px;
}
@media only screen and (min-width: 768px) {
  .app-subtitle {
    font-size: 24px;
    line-height: 24px;
  }
}

.app-content {
  overflow-x: hidden;
  font-size: 16px;
  line-height: 24px;
}
.app-content p + p {
  margin-top: 15px;
}
.app-content img {
  max-width: 100%;
  height: auto;
}
.app-content ul {
  list-style: inside;
}
@media only screen and (min-width: 768px) {
  .app-content p + p {
    margin-top: 22px;
  }
}

.app-page {
  padding: 20px 0 25px;
}
.app-page.app-page--gray {
  background: #E5E5E5;
}
@media only screen and (min-width: 768px) {
  .app-page {
    padding: 50px 0 55px;
  }
}

.app-link {
  font-size: 16px;
  line-height: 22px;
  text-decoration: underline;
  color: var(--color-primary);
}
.app-link:hover {
  color: #010033;
}

.img--radius {
  border-radius: 16px;
}

.page-header {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  background: var(--color-secondary);
}
.page-header .container {
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 768px) {
  .page-header {
    height: 100px;
  }
}

.page-header__title {
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  margin-bottom: 0;
}
@media only screen and (min-width: 1024px) {
  .page-header__title {
    font-size: 32px;
  }
}

.page-header.page-header--center {
  justify-content: center;
}
.page-header.page-header--center .page-header__title {
  font-size: 32px;
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  .page-header.page-header--center .page-header__title {
    max-width: 687px;
    margin: 0 auto;
  }
}

.page-main {
  padding: 30px 0 40px;
}
@media only screen and (min-width: 1024px) {
  .page-main {
    padding: 50px 0 60px;
  }
}

.page-main__title {
  font-size: 24px;
  line-height: 1;
  margin-bottom: 20px;
}
@media only screen and (min-width: 1024px) {
  .page-main__title {
    font-size: 32px;
    margin-bottom: 30px;
  }
}

.img-shifted {
  --offset: 10px;
  position: relative;
  border-radius: 16px;
  background: var(--color-secondary);
}
.img-shifted img {
  display: block;
  transform: translate(var(--offset), calc(var(--offset) * -1));
  border-radius: 16px;
}
@media only screen and (min-width: 1024px) {
  .img-shifted {
    --offset: 20px;
  }
}

.form--inline {
  display: flex;
  align-items: flex-end;
}
.form--inline label,
.form--inline .form-group {
  margin-bottom: 0;
}
.form--inline .form-group {
  display: block;
  max-width: 320px;
  margin-right: 15px;
}

.top-bar {
  display: none;
  font-size: 14px;
  padding: 8px 0;
  color: #F5F6F6;
  background: var(--color-black);
}
@media only screen and (min-width: 1024px) {
  .top-bar {
    display: block;
  }
}

.top-bar .container {
  display: flex;
  justify-content: flex-end;
}

.top-bar-menu {
  display: flex;
  align-items: center;
}

.top-bar-menu-item + .top-bar-menu-item {
  margin-left: 16px;
}
.top-bar-menu-item img {
  align-self: start;
  display: block;
  margin-right: 6px;
}

.top-bar-menu-item__link {
  display: flex;
  align-items: center;
}
.top-bar-menu-item__link:hover {
  color: #FFF;
}

.header {
  --header-height: 60px;
  background: #FFF;
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.05);
}

.header__logo {
  width: 100px;
  height: auto;
}
@media only screen and (min-width: 1024px) {
  .header__logo {
    width: auto;
  }
}

.header__trigger {
  --size: 42px;
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--size);
  height: var(--size);
  border-radius: 4px;
  background: var(--color-primary);
  transform: translateX(0);
  transition: transform 0.25s, width 0.2s;
  margin-right: 14px;
}
.header__trigger span,
.header__trigger span:before,
.header__trigger span:after {
  content: "";
  position: relative;
  display: block;
  width: 30px;
  height: 3px;
  border-radius: 1px;
  background: #FFF;
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.1);
  transform-origin: 50% 50%;
  transition: width 0.25s, transform 0.25s;
}
.header__trigger span:before {
  position: absolute;
  bottom: 9px;
  right: 0;
}
.header__trigger span:after {
  position: absolute;
  top: 9px;
  right: 0;
}
.header--mobile .header__trigger {
  position: static;
  z-index: 12;
  top: 8px;
  right: 8px;
}
.header--mobile .header__trigger span {
  background-color: transparent;
  box-shadow: none;
}
.header--mobile .header__trigger span:before,
.header--mobile .header__trigger span:after {
  width: 28px;
  background: #FFF;
}
.header--mobile .header__trigger span:before {
  bottom: 0;
  transform: rotate(45deg);
}
.header--mobile .header__trigger span:after {
  top: 0;
  transform: rotate(-45deg);
}
@media only screen and (min-width: 1024px) {
  .header__trigger {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
    opacity: 0;
    visibility: visible;
  }
  .header--mobile .header__trigger {
    position: absolute;
  }
}

.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #E3E4E8;
}

.header-main .form-search {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .header-main .form-search {
    display: flex;
  }
}

.header-main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-navigation {
  /*z-index: 3;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  overflow-y: auto;*/
  display: none;
}
.header--mobile .header-navigation {
  display: block;
}
@media only screen and (min-width: 1024px) {
  .header-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: static;
    width: 100%;
    background: none;
    overflow: visible;
  }
  .header--mobile .header-navigation {
    display: flex;
  }
}

.header-navigation .container {
  padding: 0;
}
@media only screen and (min-width: 1024px) {
  .header-navigation .container {
    padding: 0 100px;
  }
}

.header-search {
  --header-search-form-heigth: 43px;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 1024px) {
  .header-search {
    display: none;
  }
}

.header-search .container {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
}

.header-search .form-control {
  height: 40px;
  padding: 5px 5px 5px 15px;
}
.header-search .form-control svg {
  width: 24px;
}

.header-search .form-search {
  flex: 1;
  padding: 0;
  height: var(--header-search-form-heigth);
}

.header-menu {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}
@media only screen and (min-width: 1024px) {
  .header-menu {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
}

.header-menu > .menu-item {
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-bottom: 1px solid #E6E5E5;
}
.header-menu > .menu-item > a {
  display: flex;
  align-items: center;
  height: 46px;
  width: 100%;
  transition: color 0.2s;
  color: var(--color-black);
}
.header-menu > .menu-item > a:hover {
  color: var(--color-secondary);
}
.header-menu > .menu-item.current-menu-parent > a, .header-menu > .menu-item.current_page_item > a {
  color: var(--color-secondary);
}
@media only screen and (min-width: 1024px) {
  .header-menu > .menu-item {
    padding: 0;
    border-bottom: none;
  }
  .header-menu > .menu-item + .menu-item {
    margin-left: 14px;
  }
  .header-menu > .menu-item > a {
    display: flex;
    align-items: center;
    height: var(--header-height);
    padding: 0;
  }
}

.header-menu .menu-item.menu-item-has-children {
  position: relative;
}
.header-menu .menu-item.menu-item-has-children::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  margin-left: 5px;
  background: url("./imgs/chevron.svg") center center no-repeat;
  transition: transform 0.25s;
}

.header .sub-menu {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  position: absolute;
  z-index: 2;
  top: 100%;
  left: 0;
  width: 100%;
  display: none;
  background: #FFF;
  border: 1px solid #F5F6F6;
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
@media only screen and (min-width: 1024px) {
  .header .sub-menu {
    left: -20px;
    width: 256px;
  }
}

.header .sub-menu a {
  display: block;
  padding: 12px 15px;
  font-size: 14px;
  color: var(--color-black);
}
.header .sub-menu a:hover {
  color: #000;
  text-decoration: underline;
}

.header .sub-menu .menu-item.current_page_item a {
  color: var(--color-primary);
}

.header-user-img {
  --size: 26px;
  display: block;
  width: var(--size);
  height: var(--size);
  border-radius: 100%;
}
@media only screen and (min-width: 1024px) {
  .header-user-img {
    --size: 40px;
  }
}

.header-action {
  display: flex;
  align-items: center;
}

.header-action-item img {
  align-self: start;
}
.header-action-item + .header-action-item {
  margin-left: 16px;
}
@media only screen and (min-width: 1024px) {
  .header-action-item + .header-action-item {
    margin-left: 26px;
  }
}

.header-action-item__trigger {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header-action-item__label {
  display: none;
  font-weight: 500;
  font-size: 14px;
  color: var(--color-black);
  margin-top: 5px;
}
@media only screen and (min-width: 1024px) {
  .header-action-item__label {
    display: block;
  }
}

.header-wc-cart-count {
  --size: 20px;
  position: absolute;
  top: -10px;
  right: -6px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--size);
  height: var(--size);
  font-size: 12px;
  line-height: 1;
  color: #FFF;
  border-radius: 100%;
  background: var(--color-orange);
  visibility: hidden;
  pointer-events: none;
}
.header-wc-cart-count.is-visible {
  visibility: inherit;
  pointer-events: auto;
}

.footer-newsletter {
  padding: 20px 0;
  background: var(--color-secondary);
}

.footer-newsletter__headline {
  display: flex;
  align-items: center;
}
.footer-newsletter__headline img {
  width: 45px;
}
@media only screen and (min-width: 768px) {
  .footer-newsletter__headline img {
    width: auto;
  }
}

.footer-newsletter__title {
  display: inline-block;
  font-size: 15px;
  color: var(--color-primary);
  margin: 0 0 0 15px;
}
@media only screen and (min-width: 1024px) {
  .footer-newsletter__title {
    font-size: 20px;
    line-height: 25px;
  }
}

.footer-main {
  padding: 40px 0 16px;
  color: #FFF;
  background: var(--color-black);
}

.footer-items {
  flex-direction: column;
  flex-wrap: wrap;
}
@media only screen and (min-width: 768px) {
  .footer-items {
    flex-direction: row;
  }
}

.footer-item {
  width: 100%;
  padding: 0 15px;
}
.footer-item + .footer-item {
  margin-top: 24px;
}
.footer-item:last-child {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .footer-item {
    width: 50%;
  }
}
@media only screen and (min-width: 1024px) {
  .footer-item {
    width: 25%;
  }
  .footer-item + .footer-item {
    margin-top: 0;
  }
}
@media only screen and (min-width: 1170px) {
  .footer-item {
    width: 20%;
  }
  .footer-item:last-child {
    width: auto;
  }
}

.footer-item__title {
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  margin: 0 0 12px;
}

.footer-item-menu {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
}

.footer-item-menu__item + .footer-item-menu__item {
  margin-top: 14px;
}

.footer-item-menu__link {
  display: flex;
  font-size: 15px;
  color: #CFD0D6;
}
.footer-item-menu__link img {
  align-self: start;
  margin-right: 8px;
}

.footer__copyright {
  font-size: 13px;
  text-align: center;
  color: #DADEE3;
  margin: 30px 0 5px;
}

.slick-container {
  /*.slick-prev{
    left: -20px;
    transform: translate(-100%, -50%);
  }

  .slick-next{
    right: -20px;
    transform: translate(100%, -50%);
  }*/
}
.slick-container .slick-prev,
.slick-container .slick-next {
  --size: 40px;
  position: absolute;
  z-index: 1;
  top: 50%;
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: var(--size);
  height: var(--size);
  border-radius: 100%;
  text-indent: 1000%;
  color: #FFF;
  background: #FFF;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.16);
  border: none;
  overflow: hidden;
  transition: color 0.3s;
}
.slick-container .slick-prev:hover,
.slick-container .slick-next:hover {
  background: #010033;
}
.slick-container .slick-prev:hover svg path,
.slick-container .slick-next:hover svg path {
  stroke: #FFF;
}
@media only screen and (min-width: 768px) {
  .slick-container .slick-prev,
.slick-container .slick-next {
    --size: 47px;
  }
}
.slick-container .slick-prev {
  left: 0;
  transform: translate(-15%, -50%);
}
.slick-container .slick-next {
  right: 0;
  transform: translate(15%, -50%);
}

.slick-dots {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.slick-dots li + li {
  margin-left: 12px;
}
.slick-dots button {
  --size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--size);
  height: var(--size);
  border-radius: 100%;
  padding: 0;
  margin: 0;
  text-indent: 100%;
  box-shadow: none;
  border: 2px solid #A5ABB3;
  background: #FFF;
  overflow: hidden;
}
.slick-dots button:hover {
  background: #f1f1f1;
}
.slick-dots li.slick-active button {
  border: none;
  background: #545D69;
}

.slick-container.slick-container--margin {
  margin-left: -15px;
  margin-right: -15px;
}

.slick-container:not(.slick-initialized) {
  display: none;
  min-height: 150px;
}
.slick-container.slick-initialized {
  display: block;
}

.article-item-wrapper {
  margin-bottom: 50px;
}

.article-item {
  display: block;
}

.article-item__img {
  display: block;
  border-radius: 8px 8px 0 0;
}

.article-item__main {
  padding: 16px 16px 50px;
  background: #F4F6F9;
  border-radius: 0 0 8px 8px;
}

.article-item__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  padding: 12px;
  background: #FFF;
  border-radius: 50em;
  margin-bottom: 12px;
}

.article-item__title {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 14px;
}

.article-item__date {
  color: #858C94;
}

.article-item.article-item--big {
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
}
.article-item.article-item--big .article-item__date {
  margin: 25px 0 10px;
}
.article-item.article-item--big .article-item__title {
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
}
@media only screen and (min-width: 1024px) {
  .article-item.article-item--big {
    flex-direction: row;
  }
  .article-item.article-item--big .article-item__main {
    flex: 1;
    padding: 20px 40px;
    border-radius: 0 8px 8px 0;
  }
  .article-item.article-item--big .article-item__img {
    display: block;
    border-radius: 8px 0 0 8px;
  }
}

.production-item-wrapper {
  margin-bottom: 35px;
}

.production-item {
  display: flex;
}
.production-item-wrapper--not-mini .production-item {
  flex-direction: column;
}
.production-item:hover .production-item__title {
  color: #333;
}
@media only screen and (min-width: 768px) {
  .production-item {
    flex-direction: column;
  }
}

.production-item__img {
  display: block;
  border-radius: 8px;
  margin-right: 10px;
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  align-self: flex-start;
}
.production-item-wrapper--not-mini .production-item__img {
  width: auto;
  height: auto;
  margin-bottom: 14px;
  border-radius: 16px;
}
@media only screen and (min-width: 768px) {
  .production-item__img {
    width: auto;
    height: auto;
    margin-bottom: 14px;
    border-radius: 16px;
  }
}

.production-item__title {
  font-weight: 500;
  font-size: 16px;
}

.production-item__date {
  display: flex;
  align-items: center;
  color: #515469;
  font-size: 14px;
  margin-bottom: 5px;
}
.production-item__date span {
  display: block;
  margin-left: 6px;
  margin-top: 5px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
}
.pagination.pagination--end {
  justify-content: flex-end;
}
@media only screen and (min-width: 1024px) {
  .pagination {
    margin-top: 40px;
  }
}

.pagination-items {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination-item + .pagination-item {
  margin-left: 12px;
}

.pagination .next,
.pagination .prev,
.page-number {
  --size: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--size);
  height: var(--size);
  font-weight: 500;
  border-radius: 100%;
  background: #FFF;
}
.pagination .next.current,
.pagination .prev.current,
.page-number.current {
  background: var(--color-secondary);
}
.pagination .next:hover,
.pagination .prev:hover,
.page-number:hover {
  background: #f1f1f1;
}

.pagination .next,
.pagination .prev {
  background: none;
}

.pagination.pagination--gray .pagination .next,
.pagination.pagination--gray .pagination .prev,
.pagination.pagination--gray .page-number {
  background: #E5E5E5;
}
.pagination.pagination--gray .pagination .next.current,
.pagination.pagination--gray .pagination .prev.current,
.pagination.pagination--gray .page-number.current {
  background: var(--color-secondary);
}

.breadcrumbs {
  --space: 6px;
  display: block;
  margin-bottom: 18px;
  color: #9FA1AD;
  font-size: 13px;
}
.breadcrumbs a {
  margin: 0 var(--space);
}
.breadcrumbs > span > span > a {
  margin-left: 2px;
}
.breadcrumbs .breadcrumb_last {
  margin-left: var(--space);
}

.card-mini + .card-mini {
  margin-top: 20px;
}

.card-mini {
  display: flex;
}

.card-mini__img {
  --size: 70px;
  display: block;
  align-self: start;
  width: var(--size);
  height: var(--size);
  border-radius: 8px;
}

.card-mini__title {
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  margin-left: 12px;
  text-transform: lowercase;
}
.card-mini__title:first-letter {
  text-transform: uppercase;
}

@media only screen and (min-width: 1024px) {
  .sidebar {
    margin-top: 190px;
  }
}

.sidebar-item + .sidebar-item {
  margin-top: 45px;
}
@media only screen and (min-width: 1024px) {
  .sidebar-item + .sidebar-item {
    margin-top: 60px;
  }
}

.sidebar-item__title {
  font-size: 18px;
  margin-bottom: 24px;
}

.faq-item + .faq-item {
  border-top: 1px solid #C4C4C4;
}

.faq-item-btn {
  border: none;
  box-shadow: none;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-weight: 500;
  font-size: 18px;
  padding: 20px 0;
}
@media only screen and (min-width: 1024px) {
  .faq-item-btn {
    font-size: 32px;
  }
}

.faq-item-btn__icon {
  --size: 20px;
  position: relative;
  display: block;
  width: var(--size);
  height: var(--size);
}
.faq-item-btn__icon:before, .faq-item-btn__icon:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: var(--size);
  height: 2px;
  background: #000;
  transition: transform 0.3s;
}

.faq-item__content {
  display: none;
  line-height: 26px;
  padding: 10px 0 25px;
}

.faq-item.is-active .faq-item-btn__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

@media only screen and (min-width: 768px) {
  .contact-form {
    max-width: 70%;
  }
}

.wpcf7-form label {
  display: block;
  width: 100%;
  font-weight: 500;
  font-size: 14px;
  color: #5C5C5C;
}
.wpcf7-form .form-control {
  min-height: 48px;
  border-radius: 4px;
  border: 1px solid #858C94;
}
.wpcf7-form .wpcf7-form-control-wrap {
  display: block;
  margin-top: 4px;
}
.wpcf7-form p {
  margin-top: 20px;
}
.wpcf7-form .wpcf7-not-valid-tip {
  display: inline-block;
  margin-top: 6px;
}

.wpcf7-response-output {
  margin-left: 0 !important;
  padding: 10px 20px !important;
  background: #ecf0f1;
  border: none !important;
  border-left: 3px solid #333 !important;
}

.wpcf7-form.invalid .wpcf7-response-output {
  background: #faf0a8;
  border-left: 3px solid #e18c41 !important;
}

.wpcf7-form.sent .wpcf7-response-output {
  background: #2ecc71;
  border-left: 3px solid #16a085 !important;
}

.product-price-box {
  display: flex;
  align-items: center;
  margin-bottom: 13px;
}

.product-item-wrapper {
  margin-bottom: 28px;
}

.product-item .btn.is--cart span {
  display: none;
}
.product-item .btn.is-favorite-desktop {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .product-item .btn.is-favorite-mobile {
    display: none;
  }
  .product-item .btn.is-favorite-desktop {
    display: flex;
  }
  .product-item .btn.is--cart span {
    display: inline-block;
  }
}

.product-item__main {
  padding: 12px 0;
}

.product-item__header {
  position: relative;
  display: block;
  overflow: hidden;
}
.product-item__header:hover .btn {
  transform: translate(-50%, -15px);
}

.product-item__header .btn {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 50px);
  bottom: 0;
  border-radius: 50em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  height: 40px;
  padding: 0 15px;
  transition: transform 0.3s;
}
.product-item__header .btn svg {
  display: block;
  margin-right: 10px;
}

.product-item__img {
  display: block;
  border-radius: 16px;
}

.product-item__title {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 6px;
}

.product-item__info {
  font-weight: 500;
  font-size: 15px;
  margin-top: 11px;
}

.product-item__link {
  color: var(--color-primary);
  text-decoration: underline;
}

.product-item__price {
  font-weight: 500;
  font-size: 17px;
  color: #EB5757;
}
.product-item__price.product-price--regular {
  position: relative;
  color: #2e2e2e;
  margin-left: 10px;
}
.product-item__price.product-price--regular:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  width: 100%;
  background: #2e2e2e;
}

.product-item__actions {
  display: flex;
}
.product-item__actions .btn.btn--primary {
  height: 40px;
}
.product-item__actions .btn:not(:last-child) {
  margin-right: 12px;
}
@media only screen and (min-width: 1024px) {
  .product-item__actions .btn:not(:last-child) {
    margin-right: 12px;
  }
}

.modal-content {
  border-radius: 16px;
  border: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.22);
}

.modal-header {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom: none;
  padding: 20px 20px 0;
}

.modal-body {
  padding: 1rem 20px 20px;
}
.modal-body .form-control {
  height: 45px;
}

.modal-title {
  font-size: 18px;
  line-height: 1.2;
}
@media only screen and (min-width: 768px) {
  .modal-title {
    font-size: 24px;
  }
}

@media only screen and (min-width: 768px) {
  .modal-sm {
    max-width: 384px;
  }
}
.modal-sm button[type=submit] {
  width: 100%;
}

.md-footer {
  display: flex;
  justify-content: center;
  border-top: 1px solid #9FA1AD;
  margin-top: 24px;
  padding: 22px 0;
}

form label {
  width: 100%;
}

form label > span {
  display: inline-block;
  margin-bottom: 5px;
  color: #09101D;
}

.form-control {
  height: 42px;
  border: 1px solid #858C94;
  box-sizing: border-box;
  border-radius: 8px;
}

.invalid-feedback {
  display: block;
  font-size: 14px;
  text-transform: lowercase;
}
.invalid-feedback::first-letter {
  text-transform: uppercase;
}

.app-form sup {
  color: #DA1414;
}

.app-form__subtitle {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 12px;
}

.alert-feedback {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 15px;
  width: 100%;
  padding: 8px 20px;
  margin: 5px 0 15px;
  border-radius: 8px;
}
.alert-feedback.alert-feedback--danger {
  color: #DA1414;
  background: #FEEFEF;
}
.alert-feedback.alert-feedback--success {
  color: #34775C;
  background: #E6FAEE;
}

.inside-box {
  max-width: 370px;
  padding: 24px;
  margin: 60px auto;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.22);
  border-radius: 16px;
}
.inside-box .btn {
  width: 100%;
}

.inside-box__title {
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 8px;
}

.inside-box__subtitle {
  font-size: 14px;
  margin-bottom: 12px;
}

.blue-box-wrapper:not(:last-child) {
  margin-bottom: 35px;
}
@media only screen and (min-width: 1024px) {
  .blue-box-wrapper:not(:last-child) {
    margin-bottom: 0;
  }
}

.blue-box {
  padding: 4px 15px 20px;
  background: #F4F6F9;
  border-radius: 16px;
}
.blue-box .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.blue-box-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid #DADEE3;
}

.blue-box-header__btn {
  height: 32px;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 24px;
}

.blue-box__title {
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  margin: 0;
}

.blue-empty-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 35px 0;
}

.blue-empty-box__icon {
  display: block;
  margin-bottom: 28px;
}

.blue-empty-box__content {
  text-align: center;
  margin-bottom: 20px;
}

.blue-list {
  margin-bottom: 10px;
}

.blue-list-item {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}
.blue-list-item b {
  font-weight: 500;
}
.blue-list-item:not(:last-child) {
  border-bottom: 1px solid #DADEE3;
}

.blue-list-item__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blue-list-item__main.is-primary {
  color: var(--color-primary);
}

.blue-list-iem__muted {
  font-size: 14px;
  color: #545D69;
  margin-top: 10px;
}

.checkbox-box {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #09101D;
}
.checkbox-box .form-control {
  width: auto;
  height: 50px;
  margin-right: 10px;
  margin-bottom: 0;
}

.blue-box-products {
  margin-top: 15px;
}

.blue-box-product {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
.blue-box-product:not(:last-child) {
  margin-bottom: 5px;
}
@media only screen and (min-width: 768px) {
  .blue-box-product {
    font-size: 16px;
  }
}

.table-custom.table td, .table th {
  padding: 22px 0.75rem;
}

.table-custom.table-custom--cart td, .table th {
  padding: 15px 0.75rem;
}

.table-custom.table thead th {
  font-weight: 500;
  border-bottom-width: 1px;
  border-top: none;
}

.table-custom .link {
  color: var(--color-primary);
  text-decoration: underline;
}

.table-custom.table .product-quantity {
  margin-bottom: 0;
}

.nav-custom {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media only screen and (min-width: 768px) {
  .nav-custom {
    flex-direction: row;
  }
}

.nav-custom .nav-item:not(:last-child) {
  margin-bottom: 15px;
}
@media only screen and (min-width: 768px) {
  .nav-custom .nav-item:not(:last-child) {
    margin-right: 20px;
    margin-bottom: 0;
  }
}

.nav-custom .nav-link {
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  color: #515469;
  padding: 10px 16px;
  border: 1px solid #E5E5E5;
  border-radius: 40px;
}
.nav-custom .nav-link.active {
  border-color: var(--color-secondary);
  color: #FFF;
  background: var(--color-secondary);
}

.app-badge {
  display: inline-block;
  font-weight: 500;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 24px;
}
.app-badge::first-letter {
  text-transform: uppercase;
}

.app-badge.app-badge--success {
  color: #27AE60;
  background: #EDF9F0;
}

.app-badge.app-badge--primary {
  color: #4661B9;
  background: #EEF2FA;
}

.app-badge.app-badge--unknown {
  color: #2c3e50;
  background: #34495e1c;
}

.btn {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  line-height: 1;
  padding: 0 15px;
  height: 40px;
  border: none;
  border-radius: 4px;
}
.btn span {
  display: inline-block;
  margin-left: 8px;
}

.btn.btn--center {
  text-align: center;
}

.btn.btn-primary,
.btn.btn--primary {
  color: #FFF;
  background: var(--color-primary);
}
.btn.btn-primary:hover,
.btn.btn--primary:hover {
  background: #010085;
}

.btn.btn--secondary {
  color: #FFF;
  background: #01BFFB;
}
.btn.btn--secondary:hover {
  background: #01a8dd;
}

.btn.btn--favorite {
  color: #FFF;
  background: #EB5757;
}
.btn.btn--favorite:hover {
  background: #e83c3c;
}

.btn.btn--square {
  --size: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: var(--size);
  height: var(--size);
  padding: 0;
  /*&:hover{
    background: #f1f1f1;
  }*/
}

.modal .btn {
  height: 45px;
  text-align: center;
  justify-content: center;
}

.newsletter-box-wrapper {
  margin-top: 20px;
}
@media only screen and (min-width: 768px) {
  .newsletter-box-wrapper {
    display: flex;
    align-items: center;
    margin-top: 0;
  }
}

.newsletter-box {
  width: 100%;
}

.mc4wp-form-fields {
  display: flex;
  align-items: center;
}
.mc4wp-form-fields label {
  margin-bottom: 0;
  margin-right: 15px;
}
.mc4wp-form-fields .form-control {
  border: none;
  border-radius: 4px;
}
.mc4wp-form-fields .form-control,
.mc4wp-form-fields .btn.btn-primary {
  height: 42px;
}
@media only screen and (min-width: 768px) {
  .mc4wp-form-fields .form-control,
.mc4wp-form-fields .btn.btn-primary {
    height: 48px;
  }
}

.user-order-detail {
  display: none;
}

.user-order-detail__heading {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.user-order-detail__close {
  --size: 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: var(--size);
  height: var(--size);
}

.user-order-detail__title {
  font-weight: 500;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 0;
  margin-left: 8px;
}

.user-order-detail-meta {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.user-order-detail-meta__item {
  display: flex;
  align-items: center;
}
.user-order-detail-meta__item b {
  font-weight: 500;
}
.user-order-detail-meta__item .separator {
  display: inline-block;
  margin: 0 4px;
}
.user-order-detail-meta__item:not(:last-child):after {
  content: "|";
  display: inline-block;
  color: #C4C4C4;
  margin: 0 18px;
}

.image-dots {
  display: flex;
  margin-top: 30px;
  margin-bottom: 30px;
}
@media only screen and (min-width: 1024px) {
  .image-dots {
    margin-bottom: 0;
  }
}

.image-dot:not(:last-child) {
  margin-right: 10px;
}
.image-dot.is-active {
  border: 2px solid var(--color-secondary);
}
@media only screen and (min-width: 1024px) {
  .image-dot:not(:last-child) {
    margin-right: 20px;
  }
}

.image-dot {
  display: block;
  padding: 3px;
  border-radius: 8px;
  border: 2px solid transparent;
}
@media only screen and (min-width: 1024px) {
  .image-dot {
    padding: 7px;
    border-radius: 12px;
  }
}

.image-dot img {
  display: block;
  width: 70px;
  border-radius: 8px;
}
@media only screen and (min-width: 1024px) {
  .image-dot img {
    width: 100px;
    border-radius: 12px;
  }
}

.section-item:not(:last-child) {
  margin-bottom: 36px;
}
@media only screen and (min-width: 1024px) {
  .section-item:not(:last-child) {
    margin-bottom: 60px;
  }
}

.slick-container.home-hero-items {
  margin-bottom: 30px;
}
.slick-container.home-hero-items .slick-prev {
  left: 20px;
  transform: translate(0, -50%);
}
.slick-container.home-hero-items .slick-next {
  right: 20px;
  transform: translate(0, -50%);
}
@media only screen and (min-width: 1024px) {
  .slick-container.home-hero-items {
    margin-bottom: 0;
  }
}

.home-hero-item {
  position: relative;
}
.home-hero-item:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  border-radius: 24px;
  background: linear-gradient(0deg, #000000 0%, rgba(196, 196, 196, 0) 69.62%);
}

.home-hero-item__img {
  display: block;
  border-radius: 24px;
}

.home-hero-item__main {
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  padding: 20px;
  color: #FFF;
}

.home-hero-item__title {
  font-weight: 700;
  font-size: 24px;
}
@media only screen and (min-width: 1024px) {
  .home-hero-item__title {
    font-size: 32px;
  }
}

.home-hero-item__description {
  font-size: 14px;
  line-height: 20px;
}
@media only screen and (min-width: 1024px) {
  .home-hero-item__description {
    font-size: 16px;
    line-height: 22px;
  }
}

.home-hero-products {
  margin: 0 -15px;
  display: flex;
  justify-content: center;
}
.home-hero-products .slick-prev {
  left: 0;
  transform: translate(-15%, -50%);
}
.home-hero-products .slick-next {
  right: 0;
  transform: translate(15%, -50%);
}
@media only screen and (min-width: 1024px) {
  .home-hero-products {
    margin: auto;
  }
}

.home-hero-product {
  border: 1px solid #CFD0D6;
  border-radius: 24px;
  padding: 15px;
}
@media only screen and (min-width: 1024px) {
  .home-hero-product {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.product-categories {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 1024px) {
  .product-categories {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
    gap: 25px;
    grid-template-areas: "first a b" "first c d";
  }
}

.product-category {
  position: relative;
  display: block;
  border-radius: 16px;
  margin-bottom: 15px;
}
.product-category:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  border-radius: 24px;
  background: linear-gradient(0deg, #000000 0%, rgba(196, 196, 196, 0) 69.62%);
}
.product-category:nth-child(1) {
  grid-area: first;
}
.product-category:nth-child(2) {
  grid-area: a;
}
.product-category:nth-child(3) {
  grid-area: b;
}
.product-category:nth-child(4) {
  grid-area: c;
}
.product-category:nth-child(5) {
  grid-area: d;
}

.product-category__img {
  display: block;
  border-radius: 16px;
}

.product-category__main {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px;
  color: #FFF;
}
@media only screen and (min-width: 1024px) {
  .product-category__main {
    padding: 20px;
  }
}

.product-category__title {
  font-size: 18px;
}
@media only screen and (min-width: 1024px) {
  .product-category__title {
    font-size: 24px;
  }
}

.product-category__description {
  font-size: 14px;
  color: #F5F6F6;
}
@media only screen and (min-width: 1024px) {
  .product-category__description {
    font-size: 16px;
  }
}

.article-single .social-share {
  margin: 15px 0 20px;
}
@media only screen and (min-width: 768px) {
  .article-single .social-share {
    margin: 30px 0 40px;
  }
}

.article-single__img {
  display: block;
}

.article-sidebar__title {
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 30px;
}

.article-similar {
  display: flex;
  margin: 0 0 20px;
}

.article-similar__img {
  --size: 75px;
  align-self: start;
  display: block;
  width: var(--size);
  height: var(--size);
}

.article-similar__title {
  font-size: 14px;
  margin-left: 10px;
}

.article-social-box {
  display: flex;
  align-items: center;
  padding: 18px 0;
  margin: 30px 0;
  border-top: 1px solid #C4C4C4;
  border-bottom: 1px solid #C4C4C4;
}
@media only screen and (min-width: 1024px) {
  .article-social-box {
    margin: 40px 0;
  }
}

.article-social-box__title {
  margin-right: 14px;
}

.card-item-wrapper + .card-item-wrapper {
  margin-top: 35px;
}
@media only screen and (min-width: 1024px) {
  .card-item-wrapper + .card-item-wrapper {
    margin-top: 0;
  }
}

.card-item {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 1024px) {
  .card-item {
    flex-direction: row;
  }
}

@media only screen and (min-width: 1024px) {
  .card-item__main {
    margin-left: 15px;
  }
}

.card-item__img {
  align-self: start;
  display: block;
  margin-bottom: 12px;
}
@media only screen and (min-width: 1024px) {
  .card-item__img {
    margin-bottom: 0;
  }
}

.card-item__title {
  font-weight: 500;
  font-size: 18px;
  margin: 0 0 10px;
}

.card-item__content li + li {
  margin-top: 12px;
}

.card-ico {
  font-size: 14px;
}
.card-ico + .card-ico {
  margin-top: 20px;
}

.card-ico__headline {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.card-ico__title {
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  margin: 0 0 0 8px;
  color: var(--color-black);
}

.card-ico__content {
  margin-left: 32px;
}
.card-ico__content p + p {
  margin-top: 6px;
}

.our {
  flex-direction: column-reverse;
}
.our .btn {
  margin-top: 22px;
}
@media only screen and (min-width: 1024px) {
  .our {
    flex-direction: row;
  }
}

.our__inner {
  margin-top: 15px;
}
@media only screen and (min-width: 1024px) {
  .our__inner {
    margin-top: 50px;
  }
}

.our__title {
  font-weight: 500;
  font-size: 32px;
  margin-bottom: 10px;
}

.section-timetable__img {
  display: block;
  margin-bottom: 30px;
}
@media only screen and (min-width: 1024px) {
  .section-timetable__img {
    margin-bottom: 0;
  }
}

.section-timetable-item + .section-timetable-item {
  margin-top: 34px;
}
@media only screen and (min-width: 768px) {
  .section-timetable-item + .section-timetable-item {
    margin-top: 0;
  }
}

.section-timetable-item__title {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--color-primary);
}
@media only screen and (min-width: 1170px) {
  .section-timetable-item__title {
    font-size: 24px;
    margin-bottom: 18px;
  }
}

.partner-item {
  display: flex;
  justify-content: center;
}
.partner-item img {
  align-self: center;
}

@media only screen and (min-width: 1024px) {
  .contact-form-section__inner {
    max-width: 840px;
    margin: 0 auto;
  }
}

.production__main {
  margin-bottom: 50px;
}
@media only screen and (min-width: 1024px) {
  .production__main {
    margin-bottom: 0;
  }
}

.production__title {
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 15px;
}
@media only screen and (min-width: 1024px) {
  .production__title {
    font-size: 32px;
  }
}

.production-meta {
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
}
@media only screen and (min-width: 1024px) {
  .production-meta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.production-date {
  font-weight: 500;
  margin-bottom: 10px;
}
@media only screen and (min-width: 1024px) {
  .production-date {
    margin-bottom: 0;
  }
}

.production-date__label {
  color: #9FA1AD;
  margin-right: 5px;
}

.production-slide {
  margin-bottom: 35px;
}

.production__img {
  display: block;
  border-radius: 16px;
}

.social-share {
  display: flex;
  align-items: center;
}

.social-share__title {
  margin-right: 6px;
  font-weight: 500;
}

.product-archive-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.product-archive-header__main {
  display: flex;
  align-items: flex-end;
}

.product-archive-header__title {
  font-weight: 500;
  font-size: 24px;
  line-height: 1;
  padding: 0;
  margin: 0 8px 0 0;
}

.product-archive-header__count {
  font-weight: 500;
  color: #9FA1AD;
}

.product-filter-wrapper {
  position: relative;
}

@media only screen and (min-width: 1170px) {
  .product-filter-trigger.btn {
    display: none;
  }
}

.product-filter {
  position: absolute;
  z-index: 8;
  top: 100%;
  right: 0;
  padding: 15px 10px 10px;
  display: none;
  flex-direction: column;
  background: #FFFFFF;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.16);
  border-radius: 8px;
  min-width: 190px;
}
.product-filter.is-active {
  display: flex;
}
@media only screen and (min-width: 1170px) {
  .product-filter {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
  }
}

.product-filter-item {
  font-size: 14px;
  color: #9FA1AD;
}
.product-filter-item label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
  color: var(--color-black);
}
.product-filter-item label span {
  display: inline-block;
  margin-left: 4px;
}
.product-filter-item .btn {
  padding: 0;
  margin: 0;
}
.product-filter-item:first-child {
  display: none;
}
.product-filter-item:not(:last-child) {
  margin: 0 0 10px;
}
@media only screen and (min-width: 1170px) {
  .product-filter-item {
    font-size: 15px;
    margin: 0 6px !important;
  }
  .product-filter-item:first-child {
    display: block;
  }
  .product-filter-item:not(:last-child) {
    margin: 0;
  }
}

.price-filter-items {
  /*position: fixed;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px 15px 15px;
  border-radius: 24px 24px 0 0;
  background: #FFF;*/
}

.price-filter-item {
  font-size: 15px;
}
.price-filter-item:not(:last-child) {
  margin-bottom: 14px;
}

.price-filter-item label {
  display: flex;
  align-items: center;
}

.price-filter-item__label {
  display: inline-block;
  margin-left: 8px;
  color: #09101D;
}

.price-filter-item__count {
  color: #9FA1AD;
  margin-left: 4px;
}

.product__title {
  font-size: 24px;
  margin-bottom: 18px;
}
@media only screen and (min-width: 1024px) {
  .product__title {
    font-size: 32px;
  }
}

.product__img {
  display: block;
  border-radius: 16px;
}

.product__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
@media only screen and (min-width: 1024px) {
  .product__header {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 10px;
  }
}

.product__price {
  font-weight: 500;
  font-size: 25px;
  color: var(--color-orange);
}
.product__price.product-price--regular {
  position: relative;
  color: #2e2e2e;
  margin-left: 10px;
}
.product__price.product-price--regular:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  width: 100%;
  background: #2e2e2e;
}
@media only screen and (min-width: 1024px) {
  .product__price {
    font-size: 32px;
  }
}

@media only screen and (min-width: 1024px) {
  .product__main {
    padding-left: 25px;
  }
}

.info-box {
  margin-top: 20px;
}
@media only screen and (min-width: 1024px) {
  .info-box {
    margin-top: 40px;
  }
}

.info-box__title {
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
}

.product-quantity {
  display: flex;
  align-items: center;
}
.product-quantity__btn {
  border: none;
  box-shadow: none;
  background: none;
  --size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--size);
  height: var(--size);
  border: 1px solid #9FA1AD;
  border-radius: 100%;
}
.product-quantity__btn svg,
.product-quantity__btn svg path {
  stroke: #9FA1AD;
}
.product-quantity__btn:hover {
  border: 1px solid #000;
}
.product-quantity__btn:hover svg,
.product-quantity__btn:hover svg path {
  stroke: #000;
}

.product-quantity__value {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 20px;
  margin: 0 20px;
}

.profile-user {
  display: flex;
  border-bottom: 1px solid #CFD0D6;
  padding-bottom: 22px;
  margin-bottom: 20px;
}

.profile-user__img {
  align-self: flex-start;
  width: 65px;
  border-radius: 50%;
}

.profile-user__name {
  font-size: 24px;
}

.profile-user__main {
  padding-left: 15px;
}

.cart-items {
  margin: 0 0 20px 0;
}

.cart-item {
  display: flex;
  align-items: center;
  padding: 14px 0;
}
.cart-item:not(:last-child) {
  border-bottom: 1px solid #DADEE3;
}

.cart-item-cell:first-child {
  flex: 1;
}

.cart-item__main {
  display: flex;
  align-items: center;
}

.cart-item__img {
  --size: 80px;
  display: block;
  width: var(--size);
  height: var(--size);
  border-radius: 16px;
  margin: 0 15px 0 0;
}

.cart-item__info {
  display: flex;
  flex-direction: column;
}

.cart-item__name {
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  margin-bottom: 2px;
}

.cart-item__price {
  font-size: 18px;
  color: #858C94;
}

.cart-item__actions {
  display: flex;
  flex-direction: column;
}

.cart-wrapper {
  position: relative;
}

.cart-wrapper-overlay {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0.25s;
}
.cart-wrapper-overlay.is-visible {
  visibility: visible;
  pointer-events: auto;
}

.order-preview {
  margin-bottom: 35px;
}
@media only screen and (min-width: 1024px) {
  .order-preview {
    margin-bottom: 70px;
  }
}

.order-preview-heading {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.order-preview-heading__title {
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  margin: 0 0 0 10px;
}
@media only screen and (min-width: 1024px) {
  .order-preview-heading__title {
    font-size: 32px;
  }
}

@media only screen and (min-width: 1024px) {
  .order-preview-items {
    max-width: 500px;
  }
}

.order-preview-item {
  display: flex;
  flex-direction: column;
}
.order-preview-item:not(:last-child) {
  margin-bottom: 15px;
}
@media only screen and (min-width: 768px) {
  .order-preview-item {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .order-preview-item:not(:last-child) {
    margin-bottom: 10px;
  }
}

.order-preview-item__label {
  color: #515469;
  margin-bottom: 4px;
}
@media only screen and (min-width: 1024px) {
  .order-preview-item__label {
    margin-bottom: 0;
  }
}

.order-preview-item__value {
  font-weight: 500;
}

.debug {
  display: block;
  font-size: 14px;
  color: #7f8c8d;
  margin-bottom: 2px;
}
.debug:first-letter {
  text-transform: uppercase;
}
