/*!**********************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!./src/scss/style.scss ***!
  \**********************************************************************************************************************************************************************/
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-ExtraLight.woff2") format("woff2"),
    url("../fonts/Inter-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Light.woff2") format("woff2"),
    url("../fonts/Inter-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2"),
    url("../fonts/Inter-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Black.woff2") format("woff2"),
    url("../fonts/Inter-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format("woff2"),
    url("../fonts/Inter-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Medium.woff2") format("woff2"),
    url("../fonts/Inter-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-ExtraBold.woff2") format("woff2"),
    url("../fonts/Inter-ExtraBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Thin.woff2") format("woff2"),
    url("../fonts/Inter-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Bold.woff2") format("woff2"),
    url("../fonts/Inter-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@keyframes smoothScroll {
  0% {
    transform: translateY(-60px);
  }
  to {
    transform: translateY(0);
  }
}

@-webkit-keyframes slide-in-bottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(1000px);
    transform: translateY(1000px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slide-in-bottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(1000px);
    transform: translateY(1000px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes slide-in-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(1000px);
    transform: translateX(1000px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slide-in-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(1000px);
    transform: translateX(1000px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes slide-in-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slide-in-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.slide-in-bottom {
  -webkit-animation: fadeInUp 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: fadeInUp 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.slide-in-right {
  -webkit-animation: slide-in-right 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94)
    both;
  animation: slide-in-right 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.slide-in-left {
  -webkit-animation: slide-in-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
    both;
  animation: slide-in-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

button {
  cursor: pointer;
}

a {
  text-decoration: none;
}

.block {
  display: block;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.content-center {
  justify-content: center;
}

.content-between {
  justify-content: space-between;
}

.cursor-pointer {
  cursor: pointer;
}

.color-white,
.text-white {
  color: #fff;
}

.wrap {
  flex-wrap: wrap;
}

.w-half {
  width: 50%;
}

.w-20 {
  width: 20%;
}

.mt-100 {
  margin-top: 100px;
}

.mb-100 {
  margin-bottom: 100px;
}

.nowrap {
  white-space: nowrap;
}

.text-left {
  text-align: left !important;
}

.items-end {
  align-items: flex-end;
}

.text-center {
  text-align: center !important;
}

.w-full {
  width: 100%;
  max-width: 100%;
}

@media (max-width: 1023px) {
  .mobile-full {
    width: 100% !important;
  }
  
}

.modal {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .modal:before {
    display: inline-block;
    vertical-align: middle;
    content: " ";
    height: 100%;
  }
}


.modal-dialog {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
}

.modal {
  z-index: 9999999999;
}

.modal-dialog {
  width: 500px;
  max-width: 100%;
}

.modal_type2 .modal-dialog {
  width: 620px;
  max-width: 100%;
}

.modal-body {
  padding: 20px;
  overflow-y: auto;
}

.modal-backdrop {
  background: #25344f;
}

.modal-backdrop.in {
  opacity: 0.3;
}

.modal-content {
  box-shadow: none;
  border: none;
  height: 100%;
}

.modalwrapper {
  height: 100%;
}

button.close {
  top: 15px;
  right: 15px;
  z-index: 999;
  position: absolute;
  font-size: 35px;
}

.modal-title {
  font-style: normal;
  font-weight: 700;
  font-size: 26px;
  line-height: 31px;
  margin-top: 15px;
  text-align: center;
  color: #3a3a3a;
  margin-bottom: 24px;
}
.modal-subtitle {
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  margin-top: 15px;
  text-align: center;
  color: #3a3a3a;
  margin-bottom: 24px;
}

.modal_type2 .modal-title {
  font-style: normal;
  font-weight: 700;
  font-size: 26px;
  line-height: 31px;
  text-align: left;
  color: #3a3a3a;
}

.modal-content {
  border: none;
  box-shadow: none;
  background: #ffffff;
  border-radius: 15px;
  padding: 24px 30px;
}

.deliverytabs__header {
  margin-bottom: 24px;
  background: #f3f5f8;
  border-radius: 5555px;
  overflow: hidden;
  padding: 5px;
}
.deliverytabs__header ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
}
.deliverytabs__header li {
  width: 50%;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: rgba(37, 52, 79, 0.4);
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
}
.deliverytabs__header li.active {
  background: #fff;
  border-radius: 5555px;
  color: #04a3e9;
}

.deliverytabs__item {
  display: none;
}
.deliverytabs__item.active {
  display: block;
}

.deliverytabs__inputrow {
  display: flex;
  margin: 0 -7px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.deliverytabs__inputcol {
  padding: 0 7px;
  width: 33.3333%;
  margin-bottom: 14px;
}

label {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  /* identical to box height */
  display: block;
  margin-bottom: 7px;
  color: #3b435a;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"] {
  display: block;
  width: 100%;
  align-items: center;
  background-color: #f3f3f7;
  border-radius: 8px;
  display: flex;
  height: 56px;
  padding: 0 20px;
  width: 100%;
  border: none;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  border: 2px solid #f3f3f7;
  /* identical to box height */
  color: #3b435a;
}
input[type="text"].input-error,
input[type="email"].input-error,
input[type="tel"].input-error,
input[type="password"].input-error {
  border-color: #ff585f;
}

textarea {
  display: block;
  width: 100%;
  align-items: center;
  background-color: #f3f3f7;
  border-radius: 8px;
  display: flex;
  padding: 16px 20px;
  width: 100%;
  border: none;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  border: 2px solid #f3f3f7;
  /* identical to box height */
  color: #3b435a;
}
textarea.input-error {
  border: 2px solid #ff585f;
}
textarea:focus {
  border: 2px solid #04a3e9;
}

.modal-body {
  padding: 0;
  overflow: visible;
}

.deliverytabs__map {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
}

button.close {
  background: none;
  border: none;
  height: initial;
  padding: 0;
  font-size: 10px;
  top: 21px;
  right: 21px;
  opacity: 0.4;
}

button.close:hover {
  opacity: 1;
}

.modal-dialog_product {
  width: 1174px;
}

.modal .cartproduct {
  margin-bottom: 30px;
}

.modal .cartproduct__image {
  height: 100px;
  max-width: 100px;
  min-width: 100px;
}

.cartproduct__img img {
  border-radius: 10px;
  overflow: hidden;
}

.modal__buttons .cartproduct__img {
  height: 100%;
}

.modal__buttons .btn_main,
.modal__buttons .btn_border {
  height: 55px;
  line-height: 55px;
  padding: 0 15px;
  text-align: center;
  width: 100%;
  min-width: unset;
  max-width: 100%;
}

.modal__buttons .btn_border {
  line-height: 51px;
}

#modal_video .modal-content {
  border-radius: 0;
}

#modal_video .modal-dialog {
  width: 768px;
}

#modal_video div#video-view iframe {
  height: initial !important;
  min-height: 480px;
}

#modal_video button.close {
  top: 10px;
  right: 10px;
}

.blogpage__items .blogslider__item {
  margin-bottom: 20px;
}

@media only screen and (max-width: 1023px) {
  .pickuplist__addr {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .dtime__item {
    font-size: 10px;
    padding: 4px 9px;
    margin-right: 5px;
    margin-bottom: 5px;
  }
  .dtime__item b {
    display: block;
  }
  .pickuplist__addr {
    margin-bottom: 0;
  }
  .pickuptabs__search {
    margin-bottom: 21px;
  }
  .pickuplist__item {
    padding-bottom: 11px;
    margin-bottom: 13px;
  }
  .pickuplist__address {
    margin-right: 12px;
    display: flex;
    align-items: center;
  }
  .pickuplist__address:last-child {
    margin-right: 0;
  }
  .pickuplist__address img {
    width: 11px;
  }
  .pickuplist__address span {
    padding-left: 4px;
    font-size: 12px;
    line-height: 100%;
  }
  .input-errortext {
    line-height: 1;
    font-size: 11px;
  }
  .pickuplist__header {
    font-size: 12px;
    line-height: 100%;
    margin-bottom: 10px;
  }
  .modal-content {
    padding: 24px 16px 21px 16px;
  }
  .modal-dialog {
    margin: 18px auto;
    width: calc(100% - 36px) !important;
  }
  button.close {
    width: 15px;
    height: 15px;
    opacity: 0.7 !important;
    right: 17px;
    top: 17px;
  }
  .modal-title,
  .modal_type2 .modal-title {
    margin-bottom: 13px;
    font-size: 18px;
    line-height: 100%;
  }
  .deliverytabs__header li {
    height: 32px;
    line-height: 32px;
    font-size: 14px;
  }
  .deliverytabs__header {
    margin-bottom: 16px;
  }
  .deliverytabs__inputcol {
    width: 50%;
  }
  input {
    height: 36px;
    padding: 0 10px;
  }
  label {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 4px;
  }
  .deliverytabs__inputcol {
    padding: 0 3px;
    margin-bottom: 9px;
  }
  .deliverytabs__inputrow {
    margin-bottom: 10px;
  }
  .deliverytabs__map {
    margin-bottom: 19px;
  }
  #modal_video .modal-content {
    border-radius: 0;
    padding: 30px 0;
  }
  #modal_video .modal-dialog {
    width: 768px;
  }
  #modal_video div#video-view iframe {
    height: initial !important;
    min-height: 480px;
  }
  #modal_video button.close {
    top: 10px;
    right: 10px;
  }
}

.detailslider {
  margin-bottom: 55px;
}

.detailslider .swiper {
  width: 100%;
  height: 100%;
}

.detailslider .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.detailslider .swiper-slide img {
  display: block;
  /* width: 100%;
		height: 100%;
		*/
  -o-object-fit: cover;
  object-fit: cover;
}

.detailslider .swiper {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.detailslider .swiper-slide {
  background-size: cover;
  background-position: center;
}

.detailslider .detailswiper {
  width: 100%;
}

.detailslider .detailswiper img {
  /* width: 100%;
		*/
  border-radius: 15px;
}

.detailslider .detailswiperpreview {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-bottom: 14px;
  margin-top: 20px;
}

.detailslider .swiper-scrollbar-drag {
  background: #08105b;
  border-radius: 0;
}

.detailslider .swiper-scrollbar.swiper-scrollbar-vertical,
.detailslider .swiper-vertical > .swiper-scrollbar {
  width: 4px;
  background: #f3f3f6;
}

.detailslider .detailswiperpreview .swiper-slide {
  height: 80px;
  width: 80px;
  overflow: hidden;
  opacity: 0.3;
  border-radius: 12px;
  cursor: pointer;
}

.detailslider .detailswiperpreview .swiper-slide-thumb-active {
  opacity: 1;
}

.detailslider .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
}

.detailslider .swiper-slide img {
  display: block;
  /* width: 100%;
		height: 100%;
		*/
  -o-object-fit: cover;
  object-fit: cover;
}

.detailslider .detailswiperpreview .swiper-slide img {
  max-height: 100%;
  max-width: initial;
  border-radius: 12px;
}

.productpage__left {
  position: relative;
  width: calc(100% - 650px);
  border-radius: 15px;
}

.productpage__left .productcard__stickers {
  left: 130px;
}

.detailslider__wrapper {
  width: 100%;
}

.detailslider-pagination {
  display: none;
}

.productpage__right {
  min-width: 680px;
}

.cardrating_large .score-wrap {
  width: 90px;
  font-size: 16px;
}

.cardrating_large .stars-inactive {
  color: rgba(37, 52, 79, 0.1);
}

.detailinfo__title h1 {
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  /* identical to box height */
  margin-bottom: 14px;
  margin-top: 0;
  max-width: 400px;
  color: #3a3a3a;
}

.detailinfo__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 24px;
}

.detailinfo__reviews {
  margin-right: 22px;
}

.detailinfo__count a {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  margin-left: 5px;
  border-bottom: 1px solid #25344f;
  color: #25344f;
}

.wishlist__icon {
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #d8d9da;
  border-radius: 5555px;
}

.wishlist__text {
  margin-left: 12px;
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #0eb6ff;
}

.wishlist__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.detailbuy__options {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #f3f5f8;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 29px;
}

.imgcheckbox__icon {
  margin-right: 10px;
}

.imgcheckbox__title {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #25344f;
}

.minicard__count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* Customize the label (the container) */
.imgcheckbox {
  display: inline-block;
  position: relative;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.imgcheckbox .imgcheckbox__label {
  padding: 0;
  margin: 0;
  list-style: none;
  margin-right: 5px;
  cursor: pointer;
}

.imgcheckbox .imgcheckbox__label:last-child {
  margin-right: 0;
}

/* Hide the browser's default checkbox */
.imgcheckbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.imgcheckbox__content {
  background: #f3f5f8;
  border-radius: 8px;
  height: 43px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 18px 0 11px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* On mouse-over, add a grey background color */
.imgcheckbox:hover input ~ .imgcheckbox__content {
  background-color: #d9f1fc;
}

/* When the checkbox is checked, add a blue background */
.imgcheckbox input:checked ~ .imgcheckbox__content {
  background-color: #d9f1fc;
}

/* Create the checkmark/indicator (hidden when not checked) */
.imgcheckbox__content:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.containimgcheckboxer input:checked ~ .imgcheckbox__content:after {
  display: block;
}

.tocart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 193px;
}

.tocart img {
  width: 20px;
  margin: 0;
}

.tocart span {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
}

.tocart span {
  padding-left: 30px;
  background-image: url(../img/addtocart.svg);
  background-repeat: no-repeat;
  background-position: left center;
}

.tocart__after {
  display: none;
}

.tocart.active span {
  background-image: url(../img/selected_icon.svg);
  background-repeat: no-repeat;
  background-position: left center;
}

.tocart.active .tocart__before {
  display: none;
}

.tocart.active .tocart__after {
  display: inherit;
}

.productcard__pricecaption {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: rgba(52, 60, 75, 0.5);
}

.detailbuy__buyblock .productcard__pricevalue {
  font-size: 36px;
  line-height: 42px;
}

.detailbuy__buyblock .productcard__priceunit {
  font-size: 25px;
  line-height: 1.2;
  padding-left: 7px;
}

.detailbuy__buyblock .productcard__badge {
  background: #ffd600;
  border-radius: 555px;
  font-size: 14px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 100%;
  padding: 0;
  text-align: center;
}

.detailinfo__buyblock {
  margin-bottom: 36px;
}

.detailinfo__moreinfo {
  margin-bottom: 24px;
}

.detailtable__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
}

.detailtable__col {
  background: #f9f9f9;
  border-radius: 0px;
  padding: 12px;
  flex: 1;
  margin: 0 1px;
}
.detailtable__col:first-child {
  border-radius: 15px 0px 0px 15px;
}
.detailtable__col:last-child {
  border-radius: 0px 15px 15px 0px;
}

.derailtable__param {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  /* identical to box height */
  color: rgba(83, 90, 103, 0.4);
  text-align: center;
  margin-bottom: 4px;
}

.detailtable__val {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  /* identical to box height */
  text-align: center;
  color: #3a3a3a;
}

.detailtable__col {
  width: 90px;
  text-align: center;
}

.productpage__right {
  padding-left: 60px;
}

.infomessage {
  margin: 24px 0;
}

.infomessage__wrapper {
  padding: 20px 28px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.infomessage__wrapper--success {
  background: rgba(12, 186, 122, 0.1);
}

.infomessage__icon {
  margin-right: 24px;
  min-width: 22px;
}

.infomessage__text {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #25344f;
}

.infoicons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 27px 0;
}

.infoicons .badge {
  padding: 0;
}

.infoicons .badge img {
  min-width: 24px;
}

.infoicons__item {
  margin-right: 30px;
}

.badge_tr {
  background: none;
}

.badge_main .badge__text {
  color: #25344f;
}

.detailinfo__content {
  max-width: 590px;
}

.sitetabs__content {
  display: none;
}

.sitetabs__content.active {
  display: block;
}

.description h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  margin: 31px 0 15px 0;
  color: #3a3a3a;
}

.description p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 15px;
  color: #3a3a3a;
}

.description ul {
  padding-left: 20px;
  margin-top: 5px;
}

.description div p {
  margin-bottom: 5px;
}

.description__cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -45px;
}

.description__col {
  padding: 0 45px;
  width: 50%;
}

.sitetabs__content {
  margin-bottom: 70px;
}

.itemslistslider__notslider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.itemslistslider__notslider .itemslistslider__slide {
  width: 25%;
  margin-bottom: 25px;
}

.reviews__title {
  margin-bottom: 59px;
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 26px;
  /* identical to box height */
  color: #25344f;
}

.reviews__title a {
  text-decoration: underline;
}

.reviews__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 32px;
  margin-bottom: 25px;
  border-bottom: 2px solid rgba(37, 52, 79, 0.1);
}

.reviews__info {
  min-width: 148px;
  max-width: 148px;
}

.reviews__name {
  margin-bottom: 6px;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 21px;
  /* identical to box height */
  color: #25344f;
}

.reviews__date {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  /* identical to box height */
  margin-bottom: 11px;
  color: rgba(37, 52, 79, 0.4);
}

.reviews__rating .rating__count {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  /* identical to box height */
  color: #25344f;
}

.reviews__main {
  padding-left: 38px;
}

.reviews__text p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  /* or 25px */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #25344f;
}

.detailslider .swiper-wrapper {
  display: flex;
  align-items: center;
}

.zoom-box {
  border-radius: 15px;
  overflow: hidden;
}

.detailslider .detailswiper {
  max-height: 620px;
  border-radius: 15px;
  overflow: hidden;
}

.detailswiper .swiper-slide {
  opacity: 0 !important;
}

.detailswiper .swiper-slide.swiper-slide-active {
  opacity: 1 !important;
}

.productpage__code {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 7px;
  color: rgba(83, 90, 103, 0.4);
}

.detailinfo__title {
  margin-bottom: 14px;
}

.detailinfo__priceblock {
  margin-bottom: 22px;
}

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

.productcard__mainprice {
  margin-right: 15px;
}

.productcard__pricevalue {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  color: #08105b;
}

/* .productcard__pricecaption {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: rgba(8, 16, 91, 0.4);
} */

.detailstock {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #3a3a3a;
}

.detailstock__value {
  padding-left: 20px;
}

.detailstock__in {
  background-image: url(../img/instock.svg);
  background-repeat: no-repeat;
  background-position: left center;
}

.detailstock__out {
  background-image: url(../img/outstock.svg);
  background-repeat: no-repeat;
  background-position: left center;
}

.detailinfo__params {
  margin-bottom: 23px;
}

.detailinfo__param {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #3a3a3a;
  margin-bottom: 13px;
}

.detailparam__title {
  display: inline-block;
}

.detailparam__content {
  font-weight: 500;
  display: inline-block;
  position: relative;
  padding-right: 20px;
}

.info {
  position: absolute;
  right: 0;
  top: 0;
}

.help-tooltip__text {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: #3a3a3a;
}

.help-tooltip__content {
  padding: 17px 22px;
  position: relative;
  display: block;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: #3a3a3a;
}

.help-tooltip__content:after {
  content: url(/local/templates/azlog/public/css/../images/tooltip.svg);
  position: absolute;
  top: 100%;
  left: 25px;
}

.help-tooltip__info {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: #3a3a3a;
  display: block;
}

.help-tooltip {
  white-space: initial;
  visibility: hidden;
  position: absolute;
  z-index: 9999;
  transition: 0.4s all ease !important;
  top: 0;
  left: calc(100% + 10px);
  width: 266px;
  background: #fff;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0px 4px 8px rgba(26, 26, 26, 0.1);
}

.help-tooltip a {
  transition: unset;
}

.info {
  display: block;
  cursor: pointer;
}

.info:hover .help-tooltip {
  visibility: visible;
}

.detailtable__title {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #3a3a3a;
  margin-bottom: 16px;
}

.infoicons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 27px 0;
}

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

.infoicons__icon {
  min-width: 40px;
  max-width: 40px;
}

.infoicons__item {
  margin-right: 54px;
}
.infoicons__item:last-child {
  margin-right: 0;
}

.infoicons__text {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  margin-left: 20px;
  color: #3a3a3a;
}

.detailbuy {
  max-width: 431px;
  margin-top: 30px;
}
.detailbuy .buyblock__quantity {
  margin-right: 20px;
}
.detailbuy .buyblock__quantity {
  padding: 7px 20px 7px 10px;
}
.detailbuy .detailcard__addtocart {
  min-width: 220px;
}
.detailbuy .detailcard__addtocart .btn_main_type2 {
  width: 100%;
}

.productcard__buy {
  margin-bottom: 20px;
}

.detailbuy__fav a {
  background: #f9f9f9;
  border-radius: 15px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.detailbuy__fav .catalog-fav {
  position: initial;
}

.detailbuy__fav .catalog-fav.active svg,
.detailbuy__fav .catalog-fav.active svg path,
.detailbuy__fav .catalog-fav:hover svg,
.detailbuy__fav .catalog-fav:hover svg path,
.detailbuy__fav .product-fav.active svg path {
  stroke: #f6874d;
}

.detailinfo__link {
  margin-top: 25px;
}
.detailinfo__link a {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-decoration-line: underline;
  color: #08105b;
}

.description__table td {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  padding-bottom: 16px;
  vertical-align: top;
  color: #3a3a3a;
}

.description__table td:last-child {
  max-width: 759px;
}

.description__table td:first-child {
  font-weight: 600;
  padding-right: 36px;
  white-space: nowrap;
}

.blogcard__mask {
  display: block;
}

.sitetabs__content .reviewsblock__review {
  height: 100%;
  border-radius: 15px;
}

.sitetabs__content .blogcard_type2 .blogcard__img {
  padding-top: 61%;
}

.sitetabs__content .blogslider__item {
  margin-bottom: 20px;
}

.sitetabs__content .blogcard {
  padding: 0;
}

.blogcard__date {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  /* identical to box height */
  margin-bottom: 13px;
  color: #ffffff;
}

.buyblock__buttons.flex.items-center {
  width: 100%;
}

/* .buyblock__buttons.flex.items-center {
  margin-right: 20px;
} */
.detailbuy__text {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  max-width: 188px;
  min-width: 188px;
  color: #3a3a3a;
  margin-right: 27px;
  width: 100%;
}

.detailbuy_out {
  max-width: 100%;
}
.detailbuy_out .detailcard__addtocart {
  min-width: unset;
  width: 100%;
  white-space: nowrap;
}

.productcard__pricevalue {
  white-space: nowrap;
}

.detailparam__text_large {
  height: 18px;
  overflow: hidden;
  display: block;
}

.detailparam__text_large.active {
  height: initial;
}

.detailparam__text_large {
  position: relative;
}
.detailparam__text_large:after {
  content: url(../img/toggler.svg);
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
}

body {
  min-width: 320px;
  font-family: "Inter";
  font-style: normal;
  font-weight: normal;
  padding: 0;
  margin: 0;
  list-style: none;
  scroll-behavior: smooth;
  color: #25344f;
  overflow-x: hidden;
  width: 100%;
}

* {
  font-family: "Inter";
  font-style: normal;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none !important;
  line-height: 1;
}

/* main {
		overflow: hidden;
}
*/
a {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #08105b;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: none;
}

img {
  max-width: 100%;
  max-height: 100%;
  width: initial;
  height: initial;
}

.jsbackdrop {
  background: rgba(52, 60, 75, 0.5);
  display: none;
  position: fixed;
  z-index: 99999;
  height: 100%;
  min-height: 100vh;
  left: 0;
  top: 80px;
  width: 100%;
}

.jsbackdrop.active {
  display: block;
}

.footer__dev a {
  align-items: center;
  display: flex;
}

.footer__dev span {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  opacity: 0.5;
  padding-right: 4px;
}

.asidewrapper_asideblock {
  width: 285px;
  margin-right: 20px;
}

@media (min-width: 1024px) {
  .onlyMobile {
    display: none !important;
  }
}

@media only screen and (max-width: 1023px) {
  .onlyMobile {
    display: initial;
  }
  .onlyDesktop {
    display: none !important;
  }
}

.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 15px;
}

.header__topline {
  background: #08105b;
  padding: 15px 0;
}

.headertop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.headertop__leftitems {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.headertop__leftitems > * {
  margin-right: 40px;
}

.headertop__leftitems > *:last-child {
  margin-right: 0;
}

.popupaddress {
  position: absolute;
  top: calc(100% + 8px);
  left: calc(100% - 10px);
  width: 480px;
  max-height: 745px;
  overflow: auto;
  background: #ffffff;
  box-shadow: 0px 4px 8px rgba(26, 26, 26, 0.1);
  padding: 20px;
  z-index: 999;
  border-radius: 5px;
  visibility: hidden;
  transition: 0.4s all ease !important;
}

.addresslink {
  display: block;
  padding-right: 15px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding-right: 15px;
}
.addresslink:after {
  content: url("../img/ChevronDown-gray.svg");
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
  position: absolute;
  right: 0;
  top: 48%;
  transform: translate(0, -50%);
}
.addresslink:hover .popupaddress {
  visibility: visible;
}

.popupaddress__icon {
  margin-right: 11px;
}

.popupaddress__item {
  margin-bottom: 10px;
  display: flex;
}

.popupaddress__title {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  /* identical to box height */
  color: #3a3a3a;
  margin-bottom: 6px;
}

.popupaddress__text {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  /* identical to box height */
  text-transform: lowercase;
  color: #535a67;
  opacity: 0.5;
}

.topmenu__icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 19px;
}

.topmenu__text {
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 17px;
  /* identical to box height */
  color: #ffffff;
  display: inline-block;
  vertical-align: middle;
}

.topmenu__items ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.topmenu__items ul li {
  margin-left: 38px;
  position: relative;
}
.topmenu__items ul li:first-child {
  margin-left: 0;
}
.topmenu__items ul li a {
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 17px;
  /* identical to box height */
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.topmenu__items ul li a:hover span {
  color: #fff;
  opacity: 0.9;
}
.topmenu__items ul li a:focus span {
  color: #fff;
  opacity: 0.8;
}

.topmenu__dropdown {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding-right: 15px;
}
.topmenu__dropdown:after {
  content: url("../img/ChevronDown-gray.svg");
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
  position: absolute;
  right: 0;
  top: 48%;
  transform: translate(0, -50%);
}

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

.sitetitle__item {
  margin-right: 16px;
}
.sitetitle__item:last-child {
  margin-right: 0;
}

.headermain {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 20px 0;
}

#headermain.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: #fff;
  -webkit-box-shadow: 0px 0px 40px rgba(37, 52, 79, 0.15);
  box-shadow: 0px 0px 40px rgba(37, 52, 79, 0.15);
  z-index: 999999;
}

.headercontainer.fixed {
  position: fixed;
  top: 0;
  z-index: 999;
}

.headermain__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: calc(100% - 420px);
  padding-right: 30px;
}

.headermain__descr {
  margin-left: 20px;
}

.cols {
  display: flex;
}

.cols_asideblock {
  min-width: 285px;
  max-width: 285px;
  margin-right: 20px;
}

.cols_mainblock {
  width: calc(100% - 305px);
}

.mainmenubtn {
  width: 100%;
  height: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 10px;
  background: transparent;
  border: 2px solid #08105b;
  border-radius: 15px;
  cursor: pointer;
  /* 	 &:focus {
		opacity: 1;
		background-color: #0896D5;
	 }
	  */
}
.mainmenubtn .closeicon {
  display: none;
}
.mainmenubtn img {
  width: 35px;
}
.mainmenubtn span {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #08105b;
  padding-left: 20px;
}
.mainmenubtn .icon--blue {
  display: none;
}
.mainmenubtn.active {
  background: #08105b;
}
.mainmenubtn.active .closeicon {
  display: block;
}
.mainmenubtn.active .burgericon {
  display: none;
}
.mainmenubtn:hover {
  opacity: 1;
  background-color: #08105b;
}
.mainmenubtn:hover span {
  color: #fff;
}
.mainmenubtn.disabled,
.mainmenubtn:disabled {
  opacity: 1;
  background-color: rgba(4, 163, 233, 0.2);
}
.mainmenubtn.disabled span,
.mainmenubtn:disabled span {
  color: #fff;
  opacity: 0.5;
}
.mainmenubtn.disabled .icon--blue,
.mainmenubtn:disabled .icon--blue {
  display: initial;
}
.mainmenubtn.disabled .icon--white,
.mainmenubtn:disabled .icon--white {
  display: none;
}

.headermain__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.headermain__contacts {
  margin-right: 15px;
}
.headermain__contacts .contacts__phone {
  margin-right: 28px;
}
.headermain__contacts .contacts__phone a {
  font-style: normal;
  font-weight: 600;
  font-size: 23px;
  line-height: 28px;
  /* identical to box height */
  white-space: nowrap;
  color: #3a3a3a;
}

.headermain__callback {
  margin-right: 28px;
}

.iconlinks__item {
  margin-right: 20px;
}

.iconlinks__item:last-child {
  margin-right: 0;
}

.iconlinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.iconlinks .iconlinks__item:last-child {
  margin-right: 0;
}

.iconlinks__link {
  display: block;
  width: 35px;
  text-align: center;
  position: relative;
}

.iconlinks__text {
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 14px;
  /* identical to box height */
  display: block;
  text-align: center;
  margin-top: 6px;
  color: #25344f;
}

.iconlinks__badge {
  position: absolute;
  right: -7px;
  top: 0;
  font-style: normal;
  font-weight: 500;
  font-size: 10px;
  background: #f6874d;
  min-width: 15px;
  height: 15px;
  text-align: center;
  line-height: 15px;
  border-radius: 15px;
  color: #ffffff;
}

.mobilenav__item .iconlinks__badge {
  font-size: 11px;
  top: -4px;
  right: 8px;
}

.mobilenav__item_center {
  position: static !important;
}

.searchinput {
  border-radius: 8px;
  height: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  position: relative;
}
.searchinput input {
  width: 100%;
  background: transparent;
  border: none;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  width: 100%;
  height: 55px;
  padding: 0 20px;
  color: #535a67;
  border: 1px solid rgba(83, 90, 103, 0.4);
  border-radius: 15px;
}
.searchinput input:focus {
  border: 2px solid #f3f3f7;
}
.searchinput button {
  border: none;
  background: none;
  display: flex;
  position: absolute;
  width: 35px;
  height: 35px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f6874d;
  border-radius: 9px;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgba(83, 90, 103, 0.4);
}

::-moz-placeholder {
  /* Firefox 19+ */
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgba(83, 90, 103, 0.4);
}

:-ms-input-placeholder {
  /* IE 10+ */
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgba(83, 90, 103, 0.4);
}

:-moz-placeholder {
  /* Firefox 18- */
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgba(83, 90, 103, 0.4);
}

.headermain__search {
  width: 100%;
  max-width: 955px;
}

.logo {
  display: block;
  width: 97px;
}

.headermenu__item_dropdown a {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding-right: 15px;
  color: rgba(83, 90, 103, 0.4);
}
.headermenu__item_dropdown a:after {
  content: url("../img/ChevronDown-gray.svg");
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
  position: absolute;
  right: 0;
  top: 48%;
  transform: translate(0, -50%);
}

.headermenu {
  z-index: 9999;
  position: relative;
}

.headermenu__items {
  margin: 30px 0;
}
.headermenu__items ul {
  /* display: flex;
				align-items: center;
				*/
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0;
  margin: 0;
  list-style: none;
}

.headermenu__link {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #25344f;
  padding: 10px 10px;
  white-space: nowrap;
}

.headermenu__icon {
  margin-right: 10px;
}

.headerbottom {
  background: #f9f9f9;
  padding: 20px 0;
}

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

.headermain__menu {
  margin-right: 30px;
}

.mainslider {
  margin-bottom: 55px;
}
.mainslider .swiper {
  width: 100%;
  height: 100%;
}
.mainslider .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.mainslider .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.mainslider .swiper {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
}
.mainslider .swiper-slide {
  background-size: cover;
  background-position: center;
}
.mainslider .mainswiper {
  height: 545px;
  width: calc(100% - 349px);
  border-radius: 10px;
}
.mainslider .mainswiper img {
  width: 100%;
}
.mainslider .mainswiperpreview {
  height: 545px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 326px;
  padding-right: 14px;
  padding-top: 5px;
  padding-left: 5px;
  padding-bottom: 5px;
}
.mainslider .swiper-scrollbar-drag {
  background: #04a3e9;
  border-radius: 0;
}
.mainslider .swiper-scrollbar.swiper-scrollbar-vertical,
.mainslider .swiper-vertical > .swiper-scrollbar {
  width: 4px;
  background: #f3f3f6;
}
.mainslider .mainswiperpreview .swiper-slide {
  height: 156px;
  opacity: 0.5;
  border-radius: 10px;
  border: 2px solid #fff;
  cursor: pointer;
}
.mainslider .mainswiperpreview .swiper-slide-thumb-active {
  opacity: 1;
  outline: 3px solid #0084fe !important;
}
.mainslider .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
}
.mainslider .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}
.mainslider .mainslider__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pageblock {
  margin-bottom: 50px;
}

h2 {
  font-style: normal;
  font-weight: 600;
  font-size: 36px;
  line-height: 42px;
  margin-bottom: 28px;
  color: #25344f;
}

.indexcat__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -5px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.indexcat__item {
  padding: 5px;
  width: 25%;
}

.indexcat__wrapper {
  padding: 32px 40px;
  position: relative;
  height: 280px;
  border-radius: 10px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: right bottom;
}

.indexcat__content {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.indexcat__count {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #25344f;
  margin-top: 2px;
}

.indexcat__text {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  /* or 18px */
  max-width: 307px;
  color: #25344f;
}

.indexcat__image {
  position: absolute;
  right: 0;
  bottom: 0;
}

.indexcat__title {
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 26px;
  /* identical to box height */
  margin-bottom: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #25344f;
}

.indexcat__item_large {
  width: 50%;
}
.indexcat__item_large .indexcat__title {
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 37px;
  color: #25344f;
  margin-bottom: 4px;
}

.hover-slider-indicator {
  position: absolute;
  right: 0;
  top: auto;
  bottom: -13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.hover-slider-indicator-dot {
  background-color: #d9d9d9;
  opacity: 0.75;
  border-radius: 50%;
  height: 6px;
  width: 6px;
  margin-left: 6px;
  margin-right: 0;
}

.hover-slider-indicator-dot.active {
  background-color: #0084fe;
  opacity: 1;
}

.productcard {
  max-width: 100%;
  margin: auto;
  min-width: 302px;
}

.productcard__img {
  position: relative;
  width: 100%;
  height: 272px;
  border-radius: 15px;
  overflow: hidden;
}
.productcard__img img {
  /* height: 100%;
				width: initial;
				max-width: initial;
				*/
}

.blockheader {
  margin-bottom: 33px;
}
.blockheader a {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  /* identical to box height */
  display: block;
  margin-left: 25px;
  color: #04a3e9;
}
.blockheader a:hover {
  opacity: 0.5;
}
.blockheader a:focus {
  opacity: 0.8;
}
.blockheader a.disabled,
.blockheader a:disabled {
  opacity: 0.4;
}

.blockheader__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sliderarrow {
  border: 2px solid #08105b;
  border-radius: 15px;
  transform: matrix(-1, 0, 0, 1, 0, 0);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.sliderarrow:hover {
  background: #08105b;
  cursor: pointer;
}
.sliderarrow:hover svg path {
  stroke: #fff;
}

.productslider__container {
  position: relative;
}

.sliderarrows__left {
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateX(-100%) translateY(-50%);
}

.sliderarrows__right {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateX(100%) translateY(-50%);
}

.productcard__images {
  display: block;
}

.productcard__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.productcard__rating {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  color: #343c4b;
}

.productcard__title {
  margin-bottom: 7px;
  min-height: 48px;
}
.productcard__title a {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #3a3a3a;
  min-height: 72px;
  display: block;
}

.productcard__buy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.productslider__slide .productcard__prices {
  display: block;
}

.productcard__topprice {
  margin-bottom: 4px;
}

.productcard__oldprice {
  display: inline-block;
  vertical-align: middle;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-decoration-line: line-through;
  color: rgba(8, 16, 91, 0.4);
}

.productcard__badge {
  display: inline-block;
  vertical-align: middle;
  background-image: url(../img/badge.svg);
  width: 38px;
  height: 16px;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 100%;
  /* identical to box height, or 12px */
  padding-left: 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #343c4b;
}

.productcard__price {
  font-style: normal;
  font-weight: 700;
  font-size: 26px;
  line-height: 31px;
  display: flex;
  align-items: center;
  color: #293243;
}

.productcard__pricevalue {
  display: inline-block;
}

.productcard__priceunit {
  display: inline-block;
}

.catalog-fav {
  position: absolute;
  z-index: 9;
  right: 26px;
  top: 26px;
}

.catalog-fav svg {
  width: 30px;
  height: 30px;
  transition: all 0.2s ease;
}

.catalog-fav svg path {
  transition: all 0.2s ease;
}

.product-fav svg {
  width: 35px;
  height: 35px;
}

.catalog-item_large .image-wrap {
  height: 529px;
}

.catalog-fav.active svg path,
.catalog-fav:hover svg path {
  fill: #f6874d;
  stroke: #fff;
}

.product-fav.active svg path {
  fill: #f6874d;
  stroke: #fff;
}

.catalog-fav.active svg,
.catalog-fav:hover svg {
  fill: #f6874d;
  stroke: #fff;
}

.product-fav.active svg {
  fill: #f6874d;
}

.catalog-fav--active svg path {
  fill: #f6874d;
}

.catalog-fav--active svg {
  fill: #f6874d;
}

.productcard__stickers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: calc(100% - 100px);
}

.productcard__sticker {
  margin-right: 5px;
}

.productsticker {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 55px;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  color: #ffffff;
}

.productsticker__text {
  transform: rotate(-16.57deg);
  padding-top: 10px;
}

.productsticker_orange {
  background-image: url(../img/badge_sale.svg);
}

.productsticker_green {
  background-image: url(../img/badge_new.svg);
}

.productsticker_blue {
  background-image: url(../img/badge_blue.svg);
}

.productsticker_default {
  background: #ffffff;
  border-radius: 30px;
  margin-top: 16px;
  margin-left: 16px;
  width: unset;
  height: unset;
  padding: 5px 8px;
  display: flex;
  align-items: center;
}
.productsticker_default .productsticker_icon {
  margin-right: 6px;
  display: inline-block;
}
.productsticker_default .productsticker__text {
  padding: 0;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  /* identical to box height */
  transform: none;
  color: #3a3a3a;
}

.productcard__wrapper {
  position: relative;
  height: 100%;
}
.not-available {
  margin-left: 5px;
  font-size: 13px;
  color: #08105b;
  font-weight: 600;
  border: 2px solid #08105b;
  display: block;
  padding: 10px 8px;
  border-radius: 10px 0 10px 10px;
  width: 90px;
}
.not-available:hover {
  background: #08105b;
  color: #fff;
}
.productcard__stickers {
  position: absolute;
  z-index: 9;
  left: 8px;
  top: 8px;
}

.productcard__params {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.productcard__param {
  min-height: 15px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  text-align: right;
  color: #535a67;
}

.productcard_light {
  color: rgba(83, 90, 103, 0.4);
}

.btn {
  background: #08105b;
  border-radius: 15px 0px 15px 15px;
  border: none;
  text-align: center;
  display: inline-block;
  padding: 15px;
}
.btn img {
  margin: auto;
}
.btn:hover {
  opacity: 0.8;
}
.btn:focus {
  opacity: 0.7;
}

.productcard__addtocart {
  width: 60px;
  height: 60px;
  background-image: url(../img/addtocart.svg);
  background-repeat: no-repeat;
  background-position: center;
}

/* .productcard__addtocart.active {
  background-image: url(../img/selected_icon.svg);
  background-repeat: no-repeat;
  background-position: center;
} */
.btn_icon {
  width: 48px;
  height: 48px;
  padding: 0;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.fa {
  font-family: "FontAwesome";
}

.productcard__rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  transform: translateY(-50%);
  margin-left: 10px;
}
.productcard__rating .cardrating__form {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 30px;
  padding: 3px 6px;
}
.productcard__rating .cardrating__value {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  /* identical to box height */
  padding-left: 2px;
  color: #3a3a3a;
}

.blockslider {
  margin: 60px 0;
}

.blockslider__wrapper {
  position: relative;
}

.blockslider__content a {
  display: block;
  height: 0;
  padding-top: 24.65%;
  position: relative;
  overflow: hidden;
}
.blockslider__content a img:not([role="presentation"]) {
  position: absolute;
  left: -9999px;
  right: -9999px;
  top: -9999px;
  bottom: -9999px;
  margin: auto;
  width: 100% !important;
  max-height: initial !important;
  height: initial !important;
}

.blockslider-button-next {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
}

.blockslider-button-prev {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 2px;
}

.blockslider-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
  text-align: center;
  bottom: -10px;
  position: relative;
}

.blockslider__container {
  padding-bottom: 10px;
}

.swiper-button-disabled {
  opacity: 0.3;
}

.swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  background: #08105b;
}

/* .productslider__slider {
  width: calc(100% + 30px);
  padding: 0 15px;
  margin-left: -15px;
  overflow: hidden;
} */
/* .productslider .slick-list {
  overflow: visible;
} */
.productcard__wrapper {
  background: #f9f9f9;
  border-radius: 15px;
  padding: 15px 15px 20px 15px;
}

/* .productslider .productcard__wrapper {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.productslider .slick-active .productcard__wrapper {
  -webkit-box-shadow: 8px 8px 40px rgba(48, 54, 64, 0.1);
  box-shadow: 8px 8px 40px rgba(48, 54, 64, 0.1);
} */
.productcard__content {
  margin-bottom: 16px;
}

.cardrating__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.productcard__count {
  margin-bottom: -4px;
}

.productslider__slide {
  padding: 0;
}

.productslider .blockheader {
  margin-bottom: 0;
}

.itemslistslider__slider {
  margin: 0 -9px;
}

.itemslistslider__slide {
  padding: 0 9px;
}

.itemslistcard__image {
  margin-bottom: 16px;
  display: block;
}

.itemslistcard__img {
  border-radius: 10px;
  overflow: hidden;
  display: block;
  height: 0;
  padding-top: 63.89%;
  position: relative;
  overflow: hidden;
}
.itemslistcard__img img:not([role="presentation"]) {
  position: absolute;
  left: -9999px;
  right: -9999px;
  top: -9999px;
  bottom: -9999px;
  margin: auto;
  height: 100% !important;
  max-width: initial !important;
  width: initial !important;
}

.itemslistcard_news .itemslistcard__img {
  display: block;
  height: 0;
  padding-top: 63.89%;
  position: relative;
  overflow: hidden;
}
.itemslistcard_news .itemslistcard__img img:not([role="presentation"]) {
  position: absolute;
  left: -9999px;
  right: -9999px;
  top: -9999px;
  bottom: -9999px;
  margin: auto;
  width: 100% !important;
  max-height: initial !important;
  height: initial !important;
}

.itemslistcard_news .itemslistcard__img {
  display: block;
  height: 0;
  padding-top: 63.89%;
  position: relative;
  overflow: hidden;
}
.itemslistcard_news .itemslistcard__img img:not([role="presentation"]) {
  position: absolute;
  left: -9999px;
  right: -9999px;
  top: -9999px;
  bottom: -9999px;
  margin: auto;
  width: 100% !important;
  max-height: initial !important;
  height: initial !important;
}

.itemslistcard_news .itemslistcard_step {
  display: block;
  height: 0;
  padding-top: 65.7%;
  position: relative;
  overflow: hidden;
}
.itemslistcard_news .itemslistcard_step img:not([role="presentation"]) {
  position: absolute;
  left: -9999px;
  right: -9999px;
  top: -9999px;
  bottom: -9999px;
  margin: auto;
  height: 100% !important;
  max-width: initial !important;
  width: initial !important;
}

.itemslistcard__caption {
  margin: 16px 0 0 0;
}

.red {
  color: #ed1e26;
}

.itemslist__title {
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 26px;
  margin-bottom: 16px;
}

.itemslistcard__title {
  margin-bottom: 7px;
  margin-top: 30px;
}
.itemslistcard__title a {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #3a3a3a;
}

.itemslistcard__params {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.itemslistcard__param {
  margin-right: 11px;
}

.itemslistcard__text {
  color: rgba(37, 52, 79, 0.4);
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  display: inline-block;
  vertical-align: middle;
}

.page {
  padding-bottom: 65px;
}

.itemslistcard__icon {
  margin-right: 6px;
  display: inline-block;
  vertical-align: middle;
}

.pageblock {
  margin: 60px 0;
}

.pageblocksl {
  margin: 20px 0;
}

.fitchesline {
  padding: 49px 0;
  background: #f8f8fb;
}

.fitchesline__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.fitchesline__item {
  padding: 0 13px;
  width: 20%;
}

.fitchescard__image {
  margin-bottom: 21px;
  text-align: center;
}

.fitchescard__text {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  text-align: center;
  color: #25344f;
}

.aboutblock__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.aboutblock__left {
  width: calc(100% - 700px);
}

.aboutblock__header {
  margin-bottom: 38px;
}

.aboutblock__video {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
  width: 100%;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.aboutblock__right {
  width: 588px;
  padding: 0;
}

.aboutblock__text p {
  color: rgba(37, 52, 79, 0.7);
  margin-bottom: 26px;
}

.aboutblock__text .bigtext {
  font-style: normal;
  font-weight: 600;
  font-size: 26px;
  line-height: 100%;
  /* or 26px */
  color: #25344f;
}

.docblock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.docblock__icon {
  margin-right: 13px;
}

.docblock__title {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  color: #25344f;
}

.docblock__text {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  /* or 18px */
  color: rgba(37, 52, 79, 0.7);
}

.aboutblock__img {
  margin-bottom: 18px;
}

.beyond-button-next {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
}

.beyond-button-prev {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
}

.slider-wrapper {
  position: relative;
  margin: 0 -20px;
  overflow: hidden;
  padding: 0 20px;
  width: calc(100% + 40px);
}
.slider-wrapper .slick-list {
  overflow: visible;
}

.imgslider__slide {
  padding: 40px 7px;
}

.imgslider__content {
  display: block;
  border-radius: 10px;
}
.imgslider__content:hover {
  background: #ffffff;
  -webkit-box-shadow: 4px 4px 40px rgba(48, 54, 64, 0.1);
  box-shadow: 4px 4px 40px rgba(48, 54, 64, 0.1);
}

.imgslider__img {
  width: 230px;
  height: 143px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10px 6px;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: rgba(37, 52, 79, 0.5);
}

::-moz-placeholder {
  /* Firefox 19+ */
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: rgba(37, 52, 79, 0.5);
}

:-ms-input-placeholder {
  /* IE 10+ */
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: rgba(37, 52, 79, 0.5);
}

:-moz-placeholder {
  /* Firefox 18- */
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: rgba(37, 52, 79, 0.5);
}

.footer {
  background: #08105b;
}

.footer__main {
  padding: 55px 0 61px 0;
}

.footer__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -41px;
  width: calc(100% + 82px);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer__col {
  padding: 0 41px;
}

.footer__title {
  font-style: normal;
  font-weight: 600;
  font-size: 26px;
  line-height: 30px;
  margin-bottom: 21px;
  color: #25344f;
}

.footer__menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
  column-count: 2;
}
.footer__menu ul li {
  margin-bottom: 22px;
  min-width: 250px;
}
.footer__menu ul li a {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  /* identical to box height */
  display: block;
  color: #ffffff;
}
.footer__menu ul li a:hover {
  opacity: 0.5;
}
.footer__menu ul li a:focus {
  opacity: 0.5;
}

.contacts__info {
  max-width: 166px;
}
.contacts__info a {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #ffffff;
}

.footer__contacts {
  margin-bottom: 60px;
}
.footer__contacts .contacts__phone a {
  font-style: normal;
  font-weight: 600;
  font-size: 23px;
  line-height: 28px;
  /* identical to box height */
  color: #ffffff;
}

.footer__col_contacts {
  max-width: 514px;
  width: 100%;
}

.contacts__callback a {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  text-decoration: underline;
  color: #ffffff;
}

.contacts__phones {
  text-align: right;
}

.socials__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 -4px;
}

.socials__item {
  padding: 0 4px;
}
.socials__item a {
  width: 46px;
  height: 46px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 13px;
  -webkit-filter: drop-shadow(4px 4px 10px rgba(37, 52, 79, 0.05));
  filter: drop-shadow(4px 4px 10px rgba(37, 52, 79, 0.05));
}
.socials__item a:hover {
  -webkit-filter: none;
  filter: none;
  background: #0cba7a;
}
.socials__item a:hover path {
  fill: #fff;
}
.socials__item a:focus {
  -webkit-filter: none;
  filter: none;
  background: #089763;
}
.socials__item a:focus path {
  fill: #fff;
}

.footer__bottom {
  padding: 17px 0;
  border-top: 1px solid #ffffff;
}

.footer__maincopy {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
}
.footer__maincopy a {
  color: #ffffff;
  text-decoration: underline;
}

.fdev__title {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  /* identical to box height, or 14px */
  display: block;
  margin-bottom: 3px;
  color: #25344f;
}

.headercontainer {
  position: relative;
}

.swiper-slide.swiper-slide-next {
  opacity: 0;
}

.mainmenu {
  /*  display: none;
  position: absolute;
  left: 49px;
  top: calc(100% + 15px); */
  /* background: #ffffff;
  border-radius: 10px;
  z-index: 9999999;
  -webkit-filter: drop-shadow(0px 0px 40px rgba(37, 52, 79, 0.15));
  filter: drop-shadow(0px 0px 40px rgba(37, 52, 79, 0.15)); */
  /* overflow: hidden;
		*/
  position: relative;
}
.mainmenu ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.mainmenu.active {
  display: block;
}

.mainmenu__level_1 a {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  /* identical to box height */
  color: #3a3a3a;
}

.mainmenuLevelOne__parent a.mainmenuLevelOne__link {
  position: relative;
  background-image: url(../img/menuarrow0.svg);
  background-position: right 25px center;
  background-repeat: no-repeat;
  width: 100%;
}

.mainmenuLevelOne__parent a.mainmenuLevelOne__link:hover {
  background-image: url(../img/menuarrow.svg);
}

.mainmenu__name {
  padding-right: 30px;
}

li.mainmenuLevelOne__item {
  /* margin-bottom: 25px;
		*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2px;
}
li.mainmenuLevelOne__item:last-child {
  margin-bottom: 0;
}
li.mainmenuLevelOne__item:first-child > a {
  border-radius: 15px 15px 0px 0px;
}
li.mainmenuLevelOne__item:last-child > a {
  border-radius: 0px 0px 15px 15px;
}
li.mainmenuLevelOne__item > a {
  width: 100%;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  /* identical to box height */
  color: #3a3a3a;
  height: 55px;
  background: #f9f9f9;
}
li.mainmenuLevelOne__item a:hover {
  color: #f6874d;
}

.mainmenuLevelOne__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0;
  padding-left: 30px;
  padding-right: 24px;
}

.mainmenu__icon {
  min-width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
}

.mainmenu__name {
  margin-left: 20px;
}

.mainmenuLevelTwo__item {
  margin-bottom: 15px;
}
.mainmenuLevelTwo__item a {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  /* or 29px */
  color: #3a3a3a;
  display: block;
  width: 100%;
}

.mainmenuLevelOne__item {
  position: relative;
}

.mainmenu__level_2 {
  padding: 14px 30px;
  position: absolute;
  left: 100%;
  top: 0;
  background: #ffffff;
  box-shadow: 4px 4px 8px rgba(26, 26, 26, 0.1);
  border-radius: 0px 5px 5px 0px;
  width: 220px;
  z-index: 10;
  display: none;
}

.mainmenuLevelOne__parent:hover .mainmenu__level_2 {
  display: block;
}

.mainmenuLevelTwo {
  overflow: auto;
  height: 100%;
}

.mainmenu__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mainmenu__banner {
  height: 100%;
  padding: 23px 27px 25px 30px;
  position: absolute;
  background: #fff;
  left: calc(100% - 10px);
  width: 343px;
  top: 0;
  overflow: auto;
  overflow: hidden;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-left: 2px solid rgba(37, 52, 79, 0.1);
  z-index: 11;
}

.mainmenu a.active {
  color: #08105b;
}

.mainmenu a:hover {
  color: #08105b;
}

.headermenu__items ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mainslider .slick-dotted.slick-slider {
  margin-bottom: 45px;
}

.mainslider {
  margin-bottom: 62px;
}

.mainslide__wrapper {
  height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
}

.mainslider__slider {
  width: 100%;
}

.mainslider-slide {
  width: 100%;
}

.mainslide__content {
  max-width: 485px;
  margin: 0 62px;
}

.mainslide__title {
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  color: #3a3a3a;
}

.mark {
  background: #f6874d;
  border-radius: 12px 0px 12px 12px;
  color: #fff;
  padding: 4px 8px;
  display: inline-block;
}

.mainslide__subtitle {
  font-style: normal;
  font-weight: 600;
  font-size: 26px;
  line-height: 31px;
  margin-bottom: 29px;
  color: #3a3a3a;
}

.mainslide__text {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #3a3a3a;
  margin-bottom: 35px;
}

.fullgallery__container {
  position: relative;
}

.fullgallery {
  width: 100%;
}

.slick-dots li {
  height: 6px;
  margin: 0 3px;
  width: 6px;
}

.slick-dots li button {
  background-color: #d9d9d9;
  border-radius: 50%;
  height: 6px;
  padding: 0;
  opacity: 0.75;
  width: 6px;
}

.slick-dots li.slick-active button {
  background-color: #0084fe;
  opacity: 1;
}

.slick-dots li button:before {
  display: none;
}

.slick-dots {
  bottom: -42px;
}

.slick-dots li {
  width: unset;
  height: 15px;
  margin: 0 5px;
}

.slick-dots li button {
  width: 25px;
  height: 15px;
  opacity: 1;
  transition: all 0.3s linear;
  background: #d9d9d9;
  border-radius: 5px;
}

.slick-dots li.slick-active button {
  background-color: #f6874d;
  width: 50px;
  opacity: 1;
}

.slick-dots li button:before {
  display: none;
}

#header {
  margin-bottom: 40px;
}

.btn_main, tfoot input[type="submit"] {
  text-align: center;
  background: #08105b;
  border-radius: 15px;
  height: 55px;
  min-width: 180px;
  padding-top: 0;
  padding-bottom: 0;
  /* 	 */
  display: inline-block;
  padding-left: 20px;
  padding-right: 20px;
  line-height: 55px;
  white-space: nowrap;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  cursor: pointer;
}
.btn_main:hover, tfoot input[type="submit"]:hover {
  opacity: 0.8;
  background-color: #08105b;
  color: #fff;
}
.btn_main:focus, tfoot input[type="submit"]:focus {
  opacity: 0.7;
  background-color: #08105b;
}
.btn_main.disabled,
.btn_main:disabled {
  opacity: 1;
  background-color: rgba(4, 163, 233, 0.2);
}
.btn_main.disabled span,
.btn_main:disabled span {
  color: #08105b;
  opacity: 0.5;
}
.btn_main.disabled .icon--blue,
.btn_main:disabled .icon--blue {
  display: initial;
}
.btn_main.disabled .icon--white,
.btn_main:disabled .icon--white {
  display: none;
}

.mainbanners__items {
  display: flex;
  margin: 0 -10px;
}

.mainbanners__item {
  padding: 0 10px;
  width: calc(100% / 3);
}

.mainbanner {
  background: #f9f9f9;
  border-radius: 15px;
  height: 245px;
  overflow: hidden;
  position: relative;
  padding: 17px 20px;
  display: block;
}

.mainbanner__title {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #3a3a3a;
}

.mainbanner__text {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: rgba(83, 90, 103, 0.7);
}

.mainbanner__image {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.mainbanner__wrapper > * {
  z-index: 1;
}

.mainbanner__badge_orange {
  background-image: url(../img/badge_orange.png);
}

.mainbanner__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.mainbanner__badge {
  position: absolute;
  right: 0;
  bottom: 70px;
  width: 109px;
  height: 78px;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mainbanner__badge span {
  font-style: normal;
  font-weight: 700;
  font-size: 26px;
  line-height: 31px;
  padding-top: 10px;
  padding-left: 10px;
  color: #ffffff;
  transform: rotate(14.51deg);
}

.mainbanner__content {
  max-width: 213px;
}

h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  /* identical to box height */
  margin-bottom: 31px;
  color: #3a3a3a;
}

.indexblock {
  margin-bottom: 97px;
}

.pageblocksl {
  margin-bottom: 97px;
}

.score {
  display: block;
  font-size: 14px;
  line-height: 1;
  position: relative;
  overflow: hidden;
  margin-right: 5px;
}

.score-wrap {
  display: inline-block;
  position: relative;
  line-height: 1;
  width: 125px;
  text-align: left;
}

.score .stars-active {
  color: #ffd600;
  position: relative;
  z-index: 10;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  vertical-align: middle;
}

.score .rat-stars-active {
  color: #ffd600;
  position: relative;
  z-index: 10;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  vertical-align: middle;
}

.score .stars-inactive {
  color: rgba(52, 60, 75, 0.4);
  position: absolute;
  top: 0px;
  left: 0;
  -webkit-text-stroke: initial;
  vertical-align: middle;
  /* overflow: hidden;
      */
}

.reviewsblock__value {
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}

.reviewsblock__items {
  display: flex;
  margin: 0 -10px;
}
.reviewsblock__items .reviewsblock__item:nth-child(1) {
  background-position: bottom right;
}
.reviewsblock__items .reviewsblock__item:nth-child(1) .reviewsblock__answer {
  background-image: url(../img/figure1.svg);
}
.reviewsblock__items .reviewsblock__item:nth-child(2) .reviewsblock__answer {
  background-image: url(../img/figure2.svg);
  background-position: top right;
}
.reviewsblock__items .reviewsblock__item:nth-child(3) .reviewsblock__answer {
  background-image: url(../img/figure3.svg);
  background-position: left bottom;
}

.reviewsblock__item {
  padding: 0 10px;
  border-radius: 15px;
  width: calc(100% / 3);
  flex: 1;
}

.reviewsblock__review {
  background: #f9f9f9;
  padding: 26px 30px;
  border-radius: 15px 15px 0 0;
  height: calc(100% - 245px);
}

.reviewsblock__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 19px;
}

.reviewsblock__name {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #3a3a3a;
  margin-bottom: 6px;
}

.reviewsblock__date {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: rgba(83, 90, 103, 0.4);
}

.reviewsblock__text {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #3a3a3a;
}
.reviewsblock__text p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #3a3a3a;
}

.reviewsblock__answer {
  height: 245px;
  padding: 24px 30px;
  background: #08105b;
  border-radius: 15px 0px 15px 15px;
  background-repeat: no-repeat;
  overflow: auto;
  scrollbar-width: thin;
}

.reviewsblock__answer .reviewsblock__header {
  margin-bottom: 17px;
}
.reviewsblock__answer .reviewsblock__name {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 0;
  color: #ffffff;
}
.reviewsblock__answer .reviewsblock__text {
  color: #ffffff;
  font-weight: 300;
}
.reviewsblock__answer .reviewsblock__text p {
  color: #ffffff;
  font-weight: 300;
}

.blockheader__subtitle {
  margin: 0 0 38px 0;
  font-style: normal;
  font-weight: 400;
  font-size: 26px;
  line-height: 31px;
}

#video-close {
  position: absolute;
  right: 40px;
  top: 40px;
  z-index: 99999;
  color: #fff;
  font-size: 50px;
  cursor: pointer;
}

div#video-popup {
  display: none;
  position: fixed;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  z-index: 99;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}

div#video-view {
  width: 100%;
  height: 100%;
}

div#video-view iframe {
  width: 100% !important;
  height: 100% !important;
}

.videoslider__cols {
  display: flex;
  justify-content: center;
}

.videoslider__col_main {
  height: 520px;
  width: calc(100% - 410px);
}

.videoslider__video {
  padding: 10px;
}

.blogcard {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.blogcard__item {
  overflow: hidden;
}
.blogcard__item img {
  max-width: initial;
  width: 100%;
}

.videoslider__col_main .blogcard__img {
  display: block;
  height: 0;
  padding-top: 62%;
  position: relative;
  overflow: hidden;
}
.videoslider__col_main .blogcard__img img:not([role="presentation"]) {
  position: absolute;
  left: -9999px;
  right: -9999px;
  top: -9999px;
  bottom: -9999px;
  margin: auto;
  height: 100% !important;
  max-width: initial !important;
  width: initial !important;
}

.blogcard__img {
  display: block;
  height: 0;
  padding-top: 63%;
  position: relative;
  overflow: hidden;
}
.blogcard__img img:not([role="presentation"]) {
  position: absolute;
  left: -9999px;
  right: -9999px;
  top: -9999px;
  bottom: -9999px;
  margin: auto;
  height: 100% !important;
  max-width: initial !important;
  width: initial !important;
}

.blogcard__info {
  position: absolute;
  z-index: 9;
  bottom: 30px;
  left: 30px;
}

.blogcard__mask {
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(15, 15, 15, 0) 0%,
    rgba(15, 15, 15, 0.11) 28.12%,
    rgba(15, 15, 15, 0.24) 50.35%,
    rgba(15, 15, 15, 0.47) 69.41%,
    #0f0f0f 100%
  );
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 9;
  opacity: 0.6;
}

.blogcard__icon {
  margin-right: 20px;
}

.blogcard__name {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 7px;
  color: #ffffff;
  max-width: 287px;
}

.blogcard__duration {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
}

.videoslider__container {
  position: relative;
  height: 100%;
}

.blogcard__item {
  position: relative;
}

.videoslider_col_aside {
  width: 410px;
}
.videoslider_col_aside .blogcard__item {
  height: 250px;
}
.videoslider_col_aside .blogcard__icon {
  width: 60px;
  height: 60px;
}
.videoslider_col_aside .blogcard__name {
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  max-width: 227px;
}
.videoslider_col_aside .blogcard__duration {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
}

.videoslider {
  margin-bottom: 54px;
}

.blogcard_type2 {
  width: 410px;
}
.blogcard_type2 .blogcard__img {
  display: block;
  height: 0;
  padding-top: 64.5%;
  position: relative;
  overflow: hidden;
}
.blogcard_type2 .blogcard__img img:not([role="presentation"]) {
  position: absolute;
  left: -9999px;
  right: -9999px;
  top: -9999px;
  bottom: -9999px;
  margin: auto;
  width: 100% !important;
  max-height: initial !important;
  /*   height: initial !important; */
}

[data-slidercontainer] {
  position: relative;
}

.subscribeblock__wrapper {
  background-color: #f9f9f9;
  border-radius: 15px;
  background-image: url(../img/subbg.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  height: 375px;
  position: relative;
}

.subscribeblock__container {
  padding: 0 60px;
  height: 100%;
}

.subscribeblock__items {
  display: flex;
  align-items: center;
  height: 100%;
}

.subscribeblock__content {
  width: 625px;
}

.subscribeblock__title {
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 21px;
  color: #3a3a3a;
}

button {
  border: none;
}

.subscribeblock__row {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.subscribeblock__input {
  margin-right: 20px;
}
.subscribeblock__input input {
  background: #ffffff;
  border: 1px solid rgba(83, 90, 103, 0.4);
  border-radius: 15px;
  height: 60px;
  padding: 0 20px;
  width: 300px;
}

.subscribeblock__confirm {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #535a67;
  max-width: 395px;
  opacity: 0.4;
}
.subscribeblock__confirm a {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  text-decoration: underline;
  color: #535a67;
}

.subscribeblock__image {
  width: calc(100% - 625px);
  text-align: center;
  position: relative;
  height: 100%;
}

.subscribeblock__img {
  height: 100%;
}
.subscribeblock__img img {
  max-height: initial;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
}

.blockheader__left h1 {
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  /* identical to box height */
  color: #3a3a3a;
}

.fitchesblock__items {
  display: flex;
  margin: 0 -10px;
}

.fitchesblock__item {
  padding: 0 10px;
  flex: 1;
}

.fitchesblock__wrapper {
  background: #f9f9f9;
  border-radius: 15px;
  padding: 30px;
  height: 100%;
}

.fitchesblock__header {
  display: flex;
  align-items: center;
  min-height: 60px;
}

.fitchesblock__icon {
  margin-right: 20px;
  min-width: 60px;
  max-width: 60px;
  height: 60px;
}

.fitchesblock__title {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #3a3a3a;
}

.fitchesblock__content {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  margin-top: 21px;
  color: #3a3a3a;
}

.seoblock__items {
  display: flex;
}

.sseoblock__item {
  flex: 1;
}

.seoblock__left {
  padding-right: 75px;
}

.seoblock__text p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #3a3a3a;
  margin-bottom: 19px;
}

.seoblock__text a {
  color: #08105b;
  text-decoration: underline;
}

.seoblock__item {
  width: 50%;
}

.seoblock__right {
  min-height: 335px;
}

.seoblock__image {
  height: 100%;
}

.seoblock__img {
  height: 100%;
  border-radius: 15px 0px 15px 15px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.fitchesblock__img {
  width: 100%;
  height: 100%;
}

.fitchesblock__number {
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  /* identical to box height */
  background: #f6874d;
  border-radius: 15px 0px 15px 15px;
  color: #ffffff;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .blockheader h2 {
  margin-bottom: 0;
} */
.fitchesblock_type2 .fitchesblock__items {
  flex-wrap: wrap;
}

.fitchesblock_type2 .fitchesblock__item {
  flex: unset;
  width: 50%;
  margin-bottom: 20px;
}

.formblock__wrapper {
  background-image: url(../img/formblockbg.png);
  background-size: cover;
  background-position: center;
  background-color: #f9f9f9;
  border-radius: 15px;
  position: relative;
  min-height: 450px;
}

.formblock__container {
  padding: 60px;
  height: 100%;
}

.formblock__items {
  display: flex;
  height: 100%;
  justify-content: space-between;
}

.formblock__content {
  max-width: 510px;
}

.formblock__title {
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  /* identical to box height */
  margin-bottom: 26px;
  color: #3a3a3a;
}

.formblock__text {
  font-style: normal;
  font-weight: 400;
  font-size: 26px;
  line-height: 31px;
  color: #3a3a3a;
}

.formblock__form {
  width: 450px;
}

.formblock__input {
  padding-bottom: 20px;
  position: relative;
}

.formblock__button {
  padding: 0 10px 0 10px;
}
.formblock__button a,
.formblock__button button,
.formblock__button input {
  width: 100%;
}

.pageblocksl .formblock__confirm {
  max-width: 399px;
  margin-left: auto;
  margin-right: auto;
}

.formblock__confirm {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  color: #535a67;
  margin-top: 16px;
  opacity: 0.4;
}
.formblock__confirm a {
  text-decoration: underline;
  color: #535a67;
}

.formblock input,
.formblock textarea {
  background: #fff;
  border: 1px solid rgba(83, 90, 103, 0.4);
  border-radius: 15px;
  padding: 20px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  resize: none;
}

textarea:focus,
input:focus {
  border-color: #08105b;
}

.footerpanel__items {
  display: flex;
  margin: 0 -9px;
  width: calc(100% + 18px);
}

.footerpanel__item {
  padding: 0 9px;
}

/* .footerpanel__search {
  max-width: 280px;
  min-width: 280px;
} */
.footersearch {
  position: relative;
}
.footersearch input {
  background: #293076;
  border-radius: 15px;
  display: flex;
  align-items: center;
  border: none;
  padding: 0 20px 0 54px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
}
.footersearch ::-webkit-input-placeholder {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
}
.footersearch ::-moz-placeholder {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
}
.footersearch :-ms-input-placeholder {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
}
.footersearch :-moz-placeholder {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
}
.footersearch button {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
}

.iconbutton {
  display: flex;
  width: 55px;
  height: 55px;
  align-items: center;
  justify-content: center;
  background: #293076;
  border-radius: 15px;
}

.blogcard,
.blogcard__item,
.blogcard__content,
.youtubepopup,
.blogcard__image,
.blogcard__img {
  height: 100%;
  display: block;
}

.blogcard__img {
  background-size: cover;
}

.btn_border, tfoot input[type="reset"]{
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  padding:  20px;
  border: 2px solid #08105b;
  border-radius: 15px;
  display: block;
  color: #08105b;
  white-space: nowrap;
}
tfoot input[type="reset"] {
  padding: 15px 20px;

}
.btn_border:hover,tfoot input[type="reset"]:hover {
  color: #fff;
  background-color: #08105b;
}

.btn_default {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  padding: 20px 0;
  border-radius: 15px;
  display: block;
  color: #08105b;
  white-space: nowrap;
  background: #f9f9f9;
  border-radius: 15px;
  border: 2px solid #f9f9f9;
}
.btn_default:hover {
  border-color: #08105b;
}

.breadcrumbs {
  margin-bottom: 29px;
}

.breadcrumbs__items ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
    -moz-appearance:textfield; /* Firefox */
}

.breadcrumbs__items ul li {
  position: relative;
  padding-right: 5px;
  margin-right: 12px;
  display: inline-block;
  vertical-align: middle;
}

.breadcrumbs__items ul li:after {
  content: url(../img/arrow_right.svg);
  position: absolute;
  right: -6px;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  color: rgba(37, 52, 79, 0.5);
}

.breadcrumbs__items ul li:last-child:after {
  display: none;
}

.breadcrumbs__items ul img {
  line-height: 1;
  vertical-align: bottom;
}

.breadcrumbs__items ul span {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  /* identical to box height */
  color: #535a67;
}

.breadcrumbs__items ul a span {
  line-height: 16px;
  color: rgba(83, 90, 103, 0.4);
}
.breadcrumbs__items ul a span:hover {
  color: #535a67;
}

.pageheader__type2 {
  margin-bottom: 26px;
}

.dropdownblock {
  position: absolute;
  top: calc(100% + 5px);
  min-width: 180px;
  display: none;
}

.dropdownblock.active {
  display: block;
  z-index: 999;
}

.dropdownblock__wrapper {
  background: #ffffff;
  -webkit-box-shadow: 5px 5px 60px rgba(36, 40, 43, 0.1);
  box-shadow: 5px 5px 60px rgba(36, 40, 43, 0.1);
  border-radius: 6px;
  padding: 15px 15px;
}

.fdropdown__item {
  margin-bottom: 10px;
}

.fdropdown__button {
  cursor: pointer;
}
.fdropdown__button * {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.fdropdown__button svg {
  width: 10px;
}
.fdropdown__button span {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #3a3a3a;
  padding-right: 2px;
}

.fdropdown__button.active span {
  color: #08105b;
}

.fdropdown__button.active svg {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fdropdown {
  position: relative;
}

.dropdownpanel {
  margin-bottom: 36px;
  display: flex;
  align-items: center;
}

.dropdownpanel__item {
  margin-right: 38px;
}

a.dropdownpanel__link {
  display: block;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #3a3a3a;
}

.catalogaside .cols_asideblock {
  margin-right: 39px;
}

.productcard__img {
  display: block;
  height: 0;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}
.productcard__img img:not([role="presentation"]) {
  position: absolute;
  left: -9999px;
  right: -9999px;
  top: -9999px;
  bottom: -9999px;
  margin: auto;
  width: 100% !important;
  max-height: initial !important;
  height: initial !important;
}

.cataloglist__items {
  display: flex;
  flex-wrap: wrap;
  margin: -10px;
  justify-content: flex-start;
}

.cataloglist__item {
  margin: 10px;
  flex: 1;
  max-width: 302px;
}
.cataloglist__item .productcard {
  height: 100%;
  min-width: 302px;
}

.catalognav__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 15px;
}

.pagination__arrLeft {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.pagination {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pagination > a {
  height: 60px;
  display: flex;
  align-items: center;
}

.pagination ul {
  display: inline-block;
  padding: 0;
  margin: 0 10px;
}

.pagination ul li {
  float: left;
  margin: 0 10px;
  list-style: none;
}

.pagination ul li > span {
  vertical-align: sub;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  opacity: 0.4;
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #535a67;
}

.pagination ul li a {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #535a67;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  border: 2px solid #535a67;
  border-radius: 15px;
  min-width: 60px;
  opacity: 0.4;
}

.pagination > span {
  float: left;
  display: block;
  padding-right: 3px;
}

.pagination ul li.active a {
  border-color: #08105b;
  color: #08105b;
  opacity: 1;
}

.pagination ul li a:hover {
  border-color: #08105b;
  color: #08105b;
  opacity: 1;
}

.paginationblock {
  padding: 24px 0;
}

.pagination__content {
  margin: auto;
}

/* .cataloglist__items {
  margin-bottom: 20px;
} */
.catalognav {
  margin: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.showmorelink {
  min-width: 302px;
}

.productslider__wrapper__inner .productslider__container {
  padding: 0 !important;
}

.container .container {
  padding: 0;
}

.blockheader {
  position: relative;
}
.blockheader .sliderarrows {
  display: flex;
  flex-wrap: nowrap;
}
.blockheader .sliderarrow {
  position: initial;
  transform: none;
  margin-left: 10px;
}

.catalogrelated .sliderarrows {
  display: none;
}

.seoblock__text ul {
  padding: 0;
  margin: 0;
  list-style: none;
  margin-bottom: 25px;
}
.seoblock__text ul li {
  min-height: 25px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 15px;
  color: #3a3a3a;
  padding-left: 40px;
  background-image: url(../img/listcheck.svg);
  background-position: left top;
  background-repeat: no-repeat;
}

.fitchesblock_col3 .fitchesblock__item {
  width: calc(100% / 3);
}

.fitchesblock_notext .fitchesblock__wrapper {
  display: flex;
  align-items: center;
}

.fitchesblock_notext .fitchesblock__header {
  height: 60px;
}

p,
.text ul {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  margin: 0 0 20px 0;
  color: #3a3a3a;
}

.textcontainer {
  max-width: 869px;
}

.cataloglinks {
  width: 100%;
}

.cataloglinks {
  margin-bottom: 38px;
}

.cataloglinks__menu {
  opacity: 1;
  padding-bottom: 10px;
  background: none;
  /*   width: 100%;
  overflow-x: auto; */
}
.cataloglinks__menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
}
.cataloglinks__menu ul li {
  margin-right: 20px;
}
.cataloglinks__menu ul li a {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  height: 55px;
  color: #3a3a3a;
  background: #f9f9f9;
  border-radius: 15px;
  padding: 18px;
  white-space: nowrap;
  border: 2px solid #f9f9f9;
}
.cataloglinks__menu ul li a:hover {
  border: 2px solid #08105b;
  background: #fff;
  color: #08105b;
}

.pageheader__right .cataloglinks {
  margin-bottom: 0;

}

.pageheader__right .cataloglinks__menu {
  opacity: 1;
  background: none;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
}
.pageheader__right .cataloglinks__menu ul {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
.pageheader__right .cataloglinks__menu ul li {
  margin-right: 20px;
}
.pageheader__right .cataloglinks__menu ul li a {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  height: 55px;
  color: #3a3a3a;
  background: #f9f9f9;
  border-radius: 15px;
  padding: 18px;
  white-space: nowrap;
  border: 2px solid #f9f9f9;
}
.pageheader__right .cataloglinks__menu ul li a:hover {
  border: 2px solid #08105b;
  background: #fff;
  color: #08105b;
}
.pageheader__right .cataloglinks__menu ul li a.active {
  border: 2px solid #08105b;
  background: #fff;
  color: #08105b;
}

.dm-menu_submenu li:hover > ul {
  display: block;
}

.dm-menu_item-subindicator > ul > .dm-item_parent > a:before,
.dm-menu_item-subindicator > ul > .dm-item_parent > span:before {
  display: none;
}

.dm-menu > ul > li > span {
  display: block;
  cursor: pointer;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  height: 55px;
  line-height: 55px;
  color: #3a3a3a;
  background: #f9f9f9;
  border-radius: 15px;
  padding: 0 18px;
  white-space: nowrap;
  border: 2px solid #f9f9f9;
}
.dm-menu > ul > li > span:hover {
  border: 2px solid #08105b;
  background: #fff;
  color: #08105b;
}

.dm-menu_submenu li ul {
  z-index: 999;
}

.dm-item_submenu-overflow ul li {
  margin-right: 0 !important;
}

.dm-item_submenu-overflow ul li a {
  background: none !important;
  margin-right: 0 !important;
  border: none !important;
}

a.dropdownpanel__link {
  white-space: nowrap;
}

.fdropdown__button {
  cursor: pointer;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.catalogpage__main {
  width: calc(100% - 324px);
}

.pageheader__left h1 {
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  /* identical to box height */
  margin: 0;
  color: #3a3a3a;
}

.pagelinktab {
  margin: 38px 0;
}
.pagelinktab ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  width: 100%;
}
.pagelinktab ul li {
  flex: 1;
}
.pagelinktab ul li a,
.pagelinktab ul li span {
  display: block;
  padding: 25px 32px;
  border-bottom: 3px solid #e1e1e1;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: rgba(83, 90, 103, 0.4);
  height: 100%;
  cursor: pointer;
}
.pagelinktab ul li a.active,
.pagelinktab ul li a:hover,
.pagelinktab ul li span.active,
.pagelinktab ul li span:hover {
  color: #08105b;
  border-color: #08105b;
}

.blogpage .videoslider__cols {
  margin: 0 -10px;
}

.blogpage .videoslider_col_aside {
  padding: 10px;
}

.blogpage .videoslider__col_main {
  height: unset;
  padding: 10px;
  width: 66.4%;
}
.blogpage .videoslider__col_main .videoslider__video {
  padding: 0;
}

.blogpage .videoslider__video {
  margin-bottom: 20px;
  padding: 0;
}

.blogpage .videoslider_col_aside {
  width: 33.3%;
}
.blogpage .videoslider_col_aside .blogcard__item {
  height: 250px;
}

.blogpage__item {
  margin-bottom: 60px;
}

.blogslider__items {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.blogslider__items .blogslider__item {
  width: 33.3%;
  padding: 0 10px;
}

.blogpage__item:last-child {
  margin-bottom: 0;
}

.blognav {
  justify-content: center;
}
.blognav .showmorelink {
  min-width: 230px;
}

.blogpage {
  margin-bottom: 120px;
}

.pagelinktab ul li a {
  white-space: nowrap;
}

.blogpage__header {
  margin: 58px 0;
}

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

.blogheader__item {
  flex: 1;
}

.blogheader__content {
  padding-right: 83px;
}

.blogheader__date {
  background: #08105b;
  border-radius: 10px 0px 10px 10px;
  color: #fff;
  padding: 10px 15px;
  margin-bottom: 12px;
  display: inline-block;
}

.blogheader__date_orange {
  background: #f6874d;
}

.blogheader__title,
.blogheader__title h1 {
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  color: #3a3a3a;
}

.blogheader__image {
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
}

.blogheader__img {
  height: 100%;
  display: block;
  height: 0;
  padding-top: 66%;
  position: relative;
  overflow: hidden;
}
.blogheader__img img:not([role="presentation"]) {
  position: absolute;
  left: -9999px;
  right: -9999px;
  top: -9999px;
  bottom: -9999px;
  margin: auto;
  width: 100% !important;
  max-height: initial !important;
  height: initial !important;
}

.blogheader {
  margin-bottom: 120px;
/*   min-height: 420px; */
}

.blogpage__main {
  background: #f9f9f9;
  margin-bottom: 70px;
}

.blogpage__main {
  padding: 54px 0;
}

.catalogrelated .blockheader h2 {
  margin-bottom: 20px;
}

.blogmain__items {
  display: flex;
}

.blogmain__item {
  flex: 1;
}

.blogmain__item_list {
  padding-right: 80px;
}

.blogheader__info {
  margin-top: 15px;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: rgba(83, 90, 103, 0.4);
}

.blogmain__content,
.textinfo {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #3a3a3a;
}
.blogmain__content h3,
.textinfo h3 {
  margin-bottom: 28px;
  font-style: normal;
  font-weight: 600;
  font-size: 26px;
  line-height: 31px;
  margin-top: 0;
  color: #3a3a3a;
}
.blogmain__content ul,
.textinfo ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.blogmain__content li,
.textinfo li {
  margin-bottom: 15px;
}
.blogmain__content ol li,
.textinfo ol li {
  margin-bottom: 30px;
}
.blogmain__content ol,
.textinfo ol {
  counter-reset: my-awesome-counter;
  list-style: none;
  padding: 0;
  margin: 0;
  list-style: none;
  margin-bottom: 6px;
}
.blogmain__content ol li,
.textinfo ol li {
  counter-increment: my-awesome-counter;
  position: relative;
  padding-left: 59px;
  min-height: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.blogmain__content ol li:last-child,
.textinfo ol li:last-child {
  margin-bottom: 0;
}
.blogmain__content ol li::before,
.textinfo ol li::before {
  content: counter(my-awesome-counter);
  background: #f6874d;
  border-radius: 10px 0px 10px 10px;
  position: absolute;
  width: 40px;
  height: 40px;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  line-height: 40px;
  color: #ffffff;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

blockquote {
  background: #ffffff;
  border-radius: 0px 15px 15px 0px;
  padding: 17px 23px 16px 34px;
  border-left: 5px solid #f6874d;
  margin: 36px 0;
  max-width: 500px;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #3a3a3a;
}
blockquote > * {
  margin-bottom: 15px;
}
blockquote.blockquote_large {
  max-width: 750px;
  padding: 25px 23px 34px 25px;
}

.catalogrelated .productslider__container {
  width: 100%;
}

.catalogrelated .productslider__slider {
  display: flex;
  margin: -5px;
  flex-wrap: wrap;
}

.catalogrelated .productslider__slide {
  margin: 5px;
}

.blogheader_type2 {
  background: #f9f9f9;
  border-radius: 15px;
}
.blogheader_type2 .blogheader__content {
  padding-left: 59px;
}
.blogheader_type2 .blogheader__content {
  padding-right: 55px;
}

ul.checklist {
  padding: 0;
  margin: 0;
  list-style: none;
  margin-bottom: 25px;
}
ul.checklist li {
  min-height: 25px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 15px;
  color: #3a3a3a;
  padding-left: 40px;
  background-image: url(../img/listcheck.svg);
  background-position: left top;
  background-repeat: no-repeat;
}

ul.redslist {
  padding: 0;
  margin: 0;
  list-style: none;
  margin-bottom: 25px;
}
ul.redslist li {
  min-height: 25px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #3a3a3a;
  display: flex;
  align-items: center;
  padding-left: 27px;
  background-image: url(../img/reds.svg);
  background-position: left center;
  background-repeat: no-repeat;
}

.bannerblock {
  margin: 37px 0 52px 0;
}

.bannerblock__wrapper {
  background: #08105b;
  border-radius: 15px;
  padding: 30px;
}

.bannerblock__items {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bannerblock__title {
  font-style: normal;
  font-weight: 700;
  font-size: 26px;
  line-height: 31px;
  color: #ffffff;
}

.btn_white {
  background: #ffffff;
  border-radius: 15px;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  display: block;
  color: #08105b;
  padding: 18px 24px;
  white-space: nowrap;
  border: 2px solid #08105b;
}
.btn_white:hover {
  background: #08105b;
  border-color: #fff;
  color: #fff;
}

.cartblock {
  margin: 30px 0 10px 0;
}

.cartblock__header {
  border-radius: 10px;
  overflow: hidden;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: #3a3a3a;
}
.cartblock__header .cartblock__items {
  margin: 0 -1px;
}
.cartblock__header .cartblock__item {
  padding: 0 1px;
  padding: 18px 0;
  background: #f9f9f9;
}

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

.cartblock__item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cartblock__row {
  margin-bottom: 10px;
}

.cartblock__item_image {
  min-width: 370px;
}

.cartblock__item_price {
  /*   min-width: 233px; */
}

.cartblock__item_count {
  /*  min-width: 223px; */
}

.cartblock__item_total {
  /*  min-width: 223px; */
}

.cartblock__item_delete {
  /*   min-width: 223px; */
}

.cartblock__content {
  margin-top: 15px;
}
.cartblock__content .cartblock__item {
  padding: 15px 30px;
}
.cartblock__content .cartblock__item_image {
  justify-content: flex-start;
}

.cartproduct {
  display: flex;
  align-items: center;
}
.cartproduct .productcard__stickers {
  transform: scale(0.5);
  width: 100%;
  left: -26px;
  position: absolute;
  top: -18px;
  z-index: 9;
}

.cartproduct__image {
  position: relative;
  min-width: 80px;
  max-width: 80px;
  height: 80px;
}

.cartproduct__img {
  border-radius: 10px;
  overflow: hidden;
}

.cartproduct__info {
  margin-left: 20px;
}

.cartproduct__title {
  margin-bottom: 10px;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  /* identical to box height */
  color: #3a3a3a;
}

.cartproduct__param {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #535a67;
  opacity: 0.4;
}

.cartproduct__oldprice {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-decoration-line: line-through;
  color: #08105b;
  opacity: 0.4;
}

.cartproduct__newprice {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #f6874d;
}

.buyblock__quantity {
  border: 1px solid #535a67;
  border-radius: 15px;
  background: #fff;
  padding: 11px 10px 10px 20px;
  width: 110px;
}

.quantity__blocks {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.quantity__title {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  /* identical to box height */
  color: #535a67;
  opacity: 0.4;
  margin-bottom: 5px;
}

.quantity__input input {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  border: none;
  width: 100%;
  color: #3a3a3a;
  background: #fff;
}

.quantity-plus {
  margin-bottom: 4px;
}

.cartproduct__total {
  min-width: 100px;
}

.cartproduct__totalprice {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 5px;
  color: #293243;
}

.cartproduct__discount {
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  /* identical to box height */
  color: #ffffff;
  padding: 7px 10px;
  white-space: nowrap;
  background: #f6874d;
  border-radius: 10px;
}

.quantity__button {
  width: 20px;
  height: 20px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-size: 24px;
  line-height: 1;
  border: none;
  background: #f9f9f9;
  border-radius: 5px;
}

.cartproductDelete {
  opacity: 0.4;
  display: block;
  transition: all 0.3s ease;
}
.cartproductDelete:hover {
  opacity: 1;
}

.cartproduct__price {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #293243;
}

.link {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  text-decoration: underline;
  color: #08105b;
}

.bannerblock_white .bannerblock__wrapper {
  background: #fff;
}

.bannerblock_white .bannerblock__title {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #3a3a3a;
}
.bannerblock_white .bannerblock__title a {
  font-weight: bold;
  color: #08105b;
  text-decoration: underline;
}
.bannerblock_white .bannerblock__title a:hover {
  text-decoration: none;
}

.bannerblock__item_aside {
  min-width: 180px;
}

.cartsummary {
  background: #efefef;
  border-radius: 15px;
  padding: 30px 60px;
}

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

.cartsummary__colleft {
  margin-right: 30px;
  min-width: 335px;
  max-width: 335px;
  width: 100%;
}

.cartsummary__promocode input {
  background: #fff;
  border: none;
  height: unset;
  padding: 0 0 0 10px;
}

.promocode {
  position: relative;
  width: 100%;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border: 1px dashed rgba(83, 90, 103, 0.4);
  padding: 10px;
  border-radius: 15px;
}

.promocode__button {
  background: #f6874d;
  border-radius: 9px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.promocode__button:hover {
  opacity: 0.8;
}

.cartsummary__colright {
  max-width: 658px;
}

.cartsummary__totalblock {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cartsummary__values {
  display: flex;
  align-items: flex-end;
}

.cartsummary__caption {
  font-style: normal;
  font-weight: 700;
  font-size: 26px;
  line-height: 31px;
  margin-right: 17px;
  color: #3a3a3a;
}

.cartsummary__prices {
  margin-right: 23px;
}

.cartsummary__oldprice {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-decoration: line-through;
  color: #3a3a3a;
  opacity: 0.4;
}

.cartsummary__price {
  font-style: normal;
  font-weight: 700;
  font-size: 26px;
  line-height: 31px;
  color: #3a3a3a;
}

.cartsummary__discount {
  background: #f6874d;
  border-radius: 10px;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  /* identical to box height */
  color: #ffffff;
  padding: 7px 10px;
}

.cartsummary__disclaimer {
  background: #ffffff;
  border-radius: 10px;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: #535a67;
  padding: 12px 9px 14px;
}

.bannerblock.bannerblock_white {
  margin-bottom: 20px;
}

.cartsummary {
  margin: 20px 0;
}

.catalogrelated .productslider__slider {
  margin: -10px;
}

.catalogrelated .productslider__slide {
  padding: 10px;
}
.productslider__slide {
  padding: 10px;
}

.orderblock__item {
  margin-bottom: 49px;
}

.orderblock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.orderblock__main {
  margin-right: 58px;
  width: calc(100% - 530px);
}

.orderblock__aside {
  min-width: 530px;
  max-width: 530px;
}

.infocard__title {
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  /* identical to box height */
  margin-bottom: 28px;
  color: #3a3a3a;
}

.radioinput {
  display: flex;
}

.formcheckbox {
  position: relative;
  padding-left: 31px;
  cursor: pointer;
}

.formcheckbox .checkmark {
  border: 1px solid #babdc2;
  border-radius: 50%;
  height: 14px;
  left: 0;
  position: absolute;
  top: 4px;
  width: 14px;
}

.formcheckbox .checkmark:after {
  border-radius: 50%;
  content: "";
  height: 8px;
  left: 2px;
  position: absolute;
  top: 2px;
  width: 8px;
  display: none;
  background: #f6874d;
}

.formcheckbox input:checked ~ .checkmark:after {
  display: block;
}

.formcheckbox input {
  cursor: pointer;
  height: 0;
  opacity: 0;
  position: absolute;
  width: 0;
}

.orderform__name {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  display: block;
  color: #3a3a3a;
}

.orderform__tedt {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  /* identical to box height */
  margin-top: 10px;
  display: block;
  color: #535a67;
  margin-bottom: 15px;
  opacity: 0.4;
}

.orderform__input {
  margin-bottom: 15px;
}
.orderform__input:last-child {
  margin-bottom: 0;
}

.formcheckbox input:checked ~ .ordeform__inputcontent .orderform__name {
  font-weight: 600;
}

.orderform__block {
  margin-bottom: 49px;
}

.check label {
  cursor: pointer;
  display: inline-block;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  margin-bottom: 13px;
  color: rgba(83, 90, 103, 0.4);
  padding-left: 29px;
  position: relative;
}

.check input[type="checkbox"] {
  display: none;
}

.check label a {
  color: #25344f;
  text-decoration: underline;
}

.check label a:hover {
  text-decoration: none;
}

.check label:before {
  background-color: #f6874d;
  border-radius: 3px;
  content: "";
  height: 15px;
  left: 0;
  position: absolute;
  width: 15px;
  top: 3px;
}

.check input[type="checkbox"]:checked + label:before {
  background-image: url(../img/checkbox_checked.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.btn_full {
  width: 100%;
}

.orderform__submit {
  margin-top: 17px;
}

.orderform__block.formblock {
  width: 530px;
  max-width: 100%;
}

.carttotal {
  background: #f9f9f9;
  border-radius: 15px;
  padding: 26px 30px;
}

.carttotal__title {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 26px;
  color: #3a3a3a;
}

.carttotal__product {
  margin-bottom: 30px;
}
.carttotal__product:last-child {
  margin-bottom: 0;
}

.carttotal__items {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.carttotal__item_count {
  min-width: 50px;
  max-width: 50px;
}

.carttotal__item_image {
  min-width: 234px;
  max-width: 234px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  /* identical to box height */
  color: #3a3a3a;
}

.carttotal__item_count {
  min-width: 90px;
  max-width: 90px;
  text-align: center;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  white-space: nowrap;
  /* identical to box height */
  color: #3a3a3a;
}

.carttotal__item_price {
  min-width: 90px;
  max-width: 90px;
  text-align: right;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  white-space: nowrap;
  line-height: 17px;
  /* identical to box height */
  color: #3a3a3a;
}

.carttotal__product .cartproduct__title {
  font-size: 14px;
  line-height: 17px;
  font-weight: 600;
  margin-bottom: 4px;
}

.carttotal__product .cartproduct__param {
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
}

.carttotal__product .cartproduct__image {
  max-width: 60px;
  min-width: 60px;
  height: 60px;
}

.carttotal__product .cartproduct .productcard__stickers {
  transform: scale(0.48);
}

.carttotal__product .productsticker {
  font-size: 20px;
}

.carttotal__product .productcard__stickers {
  left: -24px;
  top: -26px;
}

.product-params {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  margin-bottom: 15px;
}

.product-params li {
  margin-bottom: 15px;
  display: flex;
}
.product-params li:last-child {
  margin-bottom: 0;
}

.product-params span {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  /* identical to box height */
  color: #3a3a3a;
  text-align: left;
}

span.product-params_left {
  width: 100%;
  display: inline;
  float: left;
  padding: 5px 0;
  white-space: nowrap;
}

span.product-params_left > span {
  border-bottom: 1px dashed;
  border-color: rgba(83, 90, 103, 0.4);
  width: 100%;
  display: inherit;
}

span.product-params_left > span > span {
  padding-right: 5px;
  position: relative;
  bottom: -4px;
  background: #f9f9f9;
  font-size: 14px;
  white-space: nowrap;
}

span.product-params_right {
  float: left;
  /* width: 100%; */
  /* max-width: 300px; */
  text-align: left;
  position: relative;
  bottom: -4px;
  padding: 5px;
  white-space: nowrap;
  font-weight: 700;
}

.carttotal__products {
  margin-bottom: 36px;
}

.carttotal__message {
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  /* identical to box height */
  margin: 9px 0;
  color: #3a3a3a;
}

@media (min-width: 1024px) {
  .sticky {
    position: fixed;
    top: 55px;
    z-index: 999;
    height: auto;
  }
  .stop {
    position: relative;
    z-index: 101;
  }
}

.asidewrapper {
  display: flex;
}

.asidewrapper__aside .asidewrapper__menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.asidewrapper__aside .asidewrapper__menu li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2px;
}
.asidewrapper__aside .asidewrapper__menu li a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
  padding-left: 30px;
  padding-right: 24px;
  background: #f9f9f9;
  color: #3a3a3a;
  font-size: 16px;
  line-height: 19px;
  font-style: normal;
  font-weight: 600;
  height: 55px;
  width: 100%;
}
.asidewrapper__aside .asidewrapper__menu li:hover a {
  color: #f6874d;
}
.asidewrapper__aside .asidewrapper__menu li:first-child a {
  border-radius: 15px 15px 0 0;
}
.asidewrapper__aside .asidewrapper__menu li:last-child a {
  border-radius: 0 0 15px 15px;
}

.asidewrapper__aside .asidewrapper__menu li.active a {
  color: #f6874d;
}

.grayblock {
  background: #f9f9f9;
  border-radius: 15px;
  padding: 26px 30px;
}

.personalblock {
  margin-bottom: 20px;
}

.grayblock__title {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #3a3a3a;
  margin-bottom: 11px;
}

.grayblock__text {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  /* identical to box height */
  color: #3a3a3a;
  margin-bottom: 10px;
}

.personalblock__text2 {
  margin-bottom: 3px;
}

.grablock__bigtext {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #293243;
}

.asidewrapper_asideblock > * {
  margin-bottom: 20px;
}

main {
  min-height: 450px;
}

.personalcontent {
  padding: 53px 60px;
  background: #f9f9f9;
  border-radius: 15px;
}

.personalcontent__title,
.personalcontent__title h1 {
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  /* identical to box height */
  color: #3a3a3a;
  margin-bottom: 31px;
}

.formblock__row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.asidewrapper__aside .cols_asideblock {
  margin-right: 20px;
}

.formblock__input {
  padding: 0 10px 20px 10px;
}

.formblock__input_col3 {
  width: 33.3%;
}

.formblock__input_col2 {
  width: 50%;
}

.btn_main_type2 {
  height: 60px;
  line-height: 60px;
}

.input-errortext {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  /* or 12px */
  position: absolute;
  bottom: 5px;
  left: 10px;
  color: #ff585f;
}

.input-inform {
  color: rgba(83, 90, 103, 0.4);
}

.formblock__submit {
  margin-top: 20px;
}

.personalcontent__text {
  font-style: normal;
  font-weight: 400;
  font-size: 26px;
  line-height: 31px;
  color: #3a3a3a;
  margin-bottom: 34px;
}

.orderlist__table {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
}

.orderlist {
  margin: 0 -30px;
  width: calc(100% + 60px);
}
.orderlist table thead th {
  background: #ffffff;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  /* identical to box height */
  text-align: center;
  padding: 5px 14px;
  min-height: 40px;
  color: #3a3a3a;
}
.orderlist table thead th:first-child {
  border-radius: 10px 0px 0px 10px;
}
.orderlist table thead th:last-child {
  border-radius: 0px 10px 10px 0px;
}
.orderlist table tbody td {
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  line-height: 12px;
  text-align: center;
  padding: 17px 6px 0 6px;
  color: #3a3a3a;
  vertical-align: top;
  min-width: 85px;
}
.orderlist table .cartproduct__title {
  margin-bottom: 6px;
}
.orderlist table .cartproduct__image {
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  border-radius: 10px;
}
.orderlist table .cartproduct__info {
  margin-left: 10px;
  text-align: left;
}
.orderlist table .cartproduct__title {
  margin-bottom: 6px;
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  line-height: 12px;
  color: #3a3a3a;
}
.orderlist table .cartproduct__param {
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  /* identical to box height */
  opacity: 1;
  color: #3a3a3a;
}
.orderlist table .orderlist__product {
  min-width: 190px;
}
.orderlist table .cartproduct {
  max-width: 156px;
  margin: auto;
}
.orderlist .orderlist__price {
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  /* identical to box height */
  text-align: center;
  color: #3a3a3a;
}
.orderlist .cartproductlist__item {
  margin-bottom: 20px;
}

.subscribeblock__text {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  /* identical to box height */
  color: #3a3a3a;
}

.personalcontent__text {
  max-width: 744px;
}
.personalcontent__text p {
  color: #3a3a3a;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 31px;
  margin-bottom: 34px;
}

p a {
  color: #08105b;
  font-weight: bold;
  text-decoration: underline;
}

.catalogrelated .productcard__buy .productcard__prices,
.cataloglist__item .productcard__buy .productcard__prices {
  display: block;
}

.detailbuy__fav {
  margin-left: 20px;
}

.detailbuy.detailbuy_out .detailcard__addtocart {
  width: calc(100% - 20px - 20px - 60px - 188px);
}

/* .detailbuy__click {
  width: 100%;
}
.buyblock__buttons {
  flex-wrap: wrap;
} */
p a {
  white-space: nowrap;
}

.textinfo a {
  color: #08105b;
  font-weight: 700;
  text-decoration: underline;
}

.modal__buttons {
  display: flex;
  margin: 0 -5px;
}

.modal__button {
  padding: 0 5px;
  flex: 1;
}

.cartproduct__param_price {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  opacity: 1;
  color: #293243;
  margin-top: 13px;
}

.cartproduct__param_default {
  color: #3a3a3a;
  opacity: 1;
}

.formblock__info {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  margin: 27px 0 22px 0;
  color: #3a3a3a;
}
.formblock__info a {
  color: #08105b;
  text-decoration: underline;
}

.check label a {
  color: rgba(83, 90, 103, 0.4);
}

.productcard__addtocart {
  transition: all 0.3s ease;
}

.productcard__addtocart.active {
  background-color: #70ac1f !important;
  background-image: url(../img/selected_icon.svg) !important;
  background-position: 50% !important;
  background-repeat: no-repeat !important;
}

.seoblock__text p a {
  font-weight: normal;
}

a:hover {
  text-decoration: none;
}

#footer a:hover {
  opacity: 0.7;
}

a,
button {
  transition: all 0.3s ease;
}

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

.formrating .fa-star {
  font-size: 23px;
  cursor: pointer;
  margin-right: 5px;
}

.formrating .score-wrap {
  width: 148px;
}

.formrating__text {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #3a3a3a;
  white-space: nowrap;
  margin-right: 24px;
}

.formrating__value {
  display: none;
}

.reviewspage .reviewsblock__items {
  flex-wrap: wrap;
}

.reviewspage .reviewsblock__item {
  width: 100%;
  flex: unset;
  margin-bottom: 20px;
  /* &:nth-child(4) {
      .reviewsblock__answer {
        background-image: url(../img/reviewsblock__answer4.svg) !important;
        background-position: right bottom !important;
      }
    }
    &:nth-child(5) {
      .reviewsblock__answer {
        background-image: url(../img/reviewsblock__answer5.svg) !important;
        background-position: right top !important;
      }
    }
    &:nth-child(6) {
      .reviewsblock__answer {
        background-image: url(../img/reviewsblock__answer6.svg) !important;
        background-position: right bottom !important;
      }
    } */
}
.reviewspage .reviewsblock__item:nth-child(3n - 2) .reviewsblock__answer {
  background-image: url(../img/reviewsblock__answer1.svg) !important;
  background-position: right bottom !important;
}
.reviewspage .reviewsblock__item:nth-child(3n - 1) .reviewsblock__answer {
  background-image: url(../img/reviewsblock__answer2.svg) !important;
  background-position: right top !important;
}
.reviewspage .reviewsblock__item:nth-child(3n) .reviewsblock__answer {
  background-image: url(../img/reviewsblock__answer3.svg) !important;
  background-position: right bottom !important;
}
.reviewspage .reviewsblock__item .reviewsblock__answer {
  height: initial;
}
.reviewspage .reviewsblock__item .reviewsblock__review {
  height: initial;
}
.reviewspage .reviewsblock__item .reviewsblock__text p:last-child {
  margin-bottom: 0;
}

.reviewspage .reviewsblock__info {
  display: flex;
  align-items: center;
  margin-right: 26px;
}

.reviewspage .reviewsblock__name {
  margin-right: 8px;
  margin-bottom: 0;
}

.reviewspage .reviewsblock__header {
  justify-content: flex-start;
}

.reviewspage h2 {
  margin-top: 0;
  margin-bottom: 0;
}

.pagebanner {
  margin: 60px 0 100px 0;
}

.pagebanner__wrapper {
  background-size: cover;
  background-color: #f9f9f9;
  border-radius: 15px;
  overflow: hidden;
}

.pagebanner__content {
  display: flex;
  min-height: 420px;
  padding: 0 60px;
}

.pagebanner__left {
  min-height: 100%;
  display: flex;
  align-items: center;
  padding-right: 49px;
}

.pagebanner__main {
  max-width: 490px;
}

.pagebanner__title {
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 56px;
  /* identical to box height */
  color: #3a3a3a;
}

.pagebanner_type2 .pagebanner__main {
  max-width: 609px;
}

.pagebanner_type2 .pagebanner__title {
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  /* identical to box height */
  color: #3a3a3a;
}

.pagebanner_type2 .pagebanner__image {
  margin-left: -120px;
}

.pagebanner__right {
  min-height: 100%;
}

.pagebanner__image {
  min-height: 100%;
  display: flex;
  align-items: flex-end;
}

.pagebanner__img img {
  display: flex;
}

.blocklist__item {
  margin-bottom: 20px;
}

.blocklist__wrapper {
  padding: 24px 29px;
  background: #f9f9f9;
  border-radius: 15px;
  position: relative;
}
.blocklist__wrapper:before {
  content: url(../img/blocklist.svg);
  position: absolute;
  left: -5px;
  top: -5px;
  z-index: 3;
}

.blocklist__title {
  font-style: normal;
  font-weight: 400;
  font-size: 26px;
  line-height: 31px;
  color: #3a3a3a;
  margin-bottom: 13px;
}

.blocklist__text {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #535a67;
}

.blockheader h2 {
  margin-bottom: 0;
}

.blocklist__item b {
  white-space: nowrap;
  font-weight: 600;
}

.deliveryblock .blocklist {
  min-width: 500px;
  max-width: 500px;
  width: 100%;
}

.cols__col {
  flex: 1;
}
.cols__col:first-child {
  padding-right: 69px;
}

.textinfo h2 {
  margin-top: 0;
}

.colsblock {
  margin: 60px 0;
}

.blockcontent {
  padding: 22px 29px;
  background: #f9f9f9;
  border-radius: 15px;
}

.blockcontent__title h1 {
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  /* identical to box height */
  margin: 0 0 20px 0;
  color: #3a3a3a;
}

.blockcontent__text {
  margin-bottom: 36px;
}
.blockcontent__text p:last-child {
  margin-bottom: 0;
}

.blockcontent__link .btM-main {
  min-width: 230px;
  max-width: 100%;
}

.pagebanner__text {
  margin-top: 25px;
  font-style: normal;
  font-weight: 400;
  font-size: 26px;
  line-height: 31px;
  color: #3a3a3a;
}

.fitchesblock_type3 .fitchesblock__item {
  width: calc(100% / 3);
}

.bonusblock__content {
  width: 756px;
  max-width: 100%;
  margin-right: 56px;
}

.bonusblock__title {
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  color: #3a3a3a;
  margin-bottom: 24px;
}

.bonusblock__text {
  font-style: normal;
  font-weight: 400;
  font-size: 26px;
  line-height: 31px;
  color: #3a3a3a;
  margin-bottom: 24px;
}

.bonusblock__items {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: 640px;
}

.bonusblock__item {
  width: 50%;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  padding-right: 30px;
}
.bonusblock__item:nth-child(2n) {
  padding-right: 0;
}

.bonusblock__icon {
  margin-right: 20px;
  min-width: 60px;
  height: 60px;
}

.bonusblock__caption {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #3a3a3a;
}

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

.bonusblock__small {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #3a3a3a;
  margin-left: 38px;
}

.bannerblock {
  color: #fff;
}

.bannerblock__text {
  margin-top: 15px;
  font-style: normal;
  font-weight: 400;
  font-size: 26px;
  line-height: 31px;
  color: #ffffff;
}

.bannerblock_large .bannerblock__title {
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  /* identical to box height */
  color: #ffffff;
}

.bannerblock_bg .bannerblock__wrapper {
  padding: 31px 40px;
  background-image: url(../img/bannerblock__wrapperbg.svg);
  background-repeat: no-repeat;
  background-position: right center;
}

.contactspage__cols {
  display: flex;
}

.contactspage__col_aside {
  min-width: 408px;
  max-width: 408px;
  margin-right: 62px;
}

.contactspage__title h1 {
  margin: 0 0 27px 0;
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  /* identical to box height */
  color: #3a3a3a;
}

.contactspage__item {
  margin-bottom: 20px;
}
.contactspage__item a {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  text-transform: lowercase;
  display: block;
  color: #3a3a3a;
}

a.phoneicon {
  background-image: url(../img/tel.svg);
  background-position: left center;
  background-repeat: no-repeat;
  padding-left: 30px;
  display: block;
}

a.emailicon {
  background-image: url(../img/email.svg);
  background-position: left center;
  background-repeat: no-repeat;
  padding-left: 30px;
  display: block;
}

.rekv__title {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #3a3a3a;
  margin-bottom: 15px;
}

.rekv__item p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #3a3a3a;
  margin-bottom: 15px;
}

[data-contenttabs] {
  display: none;
}

[data-contenttabs].active {
  display: block;
}

.contactspage__col.contactspage__col_main {
  width: 100%;
}

.contactspage__header ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  margin-bottom: 30px;
}

.contactspage__header li {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  background: #f9f9f9;
  border-radius: 15px;
  padding: 16px 22px;
  color: #3a3a3a;
  border: 2px solid #f9f9f9;
  margin-right: 20px;
}

.contactspage__header li.active {
  border-color: #08105b;
  background: #fff;
}

.pagemap {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 60px;
}

.bannerblock__icon {
  min-width: 100px;
  max-width: 100px;
  margin-right: 40px;
}

.bannerblock_hasicon .bannerblock__items {
  justify-content: flex-start;
}

.bannerblock_hasicon .bannerblock__text {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #ffffff;
  margin: 15px 0 0 0;
}

[data-headertabs] li {
  cursor: pointer;
}

.contactspage__cols {
  margin-bottom: 60px;
}

.contactsitems {
  padding-bottom: 40px;
}

.contactsitems__select select {
  cursor: pointer;
  border: none;
  background: #fff;
  border-radius: 5px;
  width: 170px;
  display: block;
  height: 39px;
  font-size: 14px;
  color: #000;
  padding: 0 18px;
  background-image: url(../img/select.svg);
  background-position: right center;
  background-repeat: no-repeat;
  outline: 0 !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  padding-right: 15px;
  color: #3a3a3a;
}

.contactsitems__filter {
  margin-bottom: 20px;
}

.contactsitems__select {
  display: inline-block;
}

.contactsitems__search {
  width: 330px;
  display: inline-block;
  position: relative;
}
.contactsitems__search .searchinput input {
  padding: 20px 60px 20px 20px;
}
.contactsitems__search .searchinput button {
  right: 10px;
}

.contactsitems__select {
  margin-right: 22px;
}

.contactsitemstable__table {
  overflow-x: auto;
  width: 100%;
  padding: 12px;
  background: #fff;
}

.contactsitemstable__table table {
  width: 100%;
  background: #fff;
  border-spacing: 0;
}

/* .contactsitemstable__table table, 
.contactsitemstable__table table * {

  border-color: transparent;

} */
.contactsitemstable__table thead th {
  background: #f9f9f9;
}
.contactsitemstable__table thead th:first-child {
  background: #f9f9f9;
  border-radius: 15px 0 0 15px;
  overflow: hidden;
}
.contactsitemstable__table thead th:last-child {
  background: #f9f9f9;
  border-radius: 0 15px 15px 0;
  overflow: hidden;
}

.contactsitemstable__table thead th span {
  display: block;
  text-align: center;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  padding: 18px;
  color: #3a3a3a;
}

.contactsitemstable__table tbody td span {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  /* identical to box height */
  text-align: center;
  color: #3a3a3a;
  color: #000;
  display: block;
  padding: 15px 5px;
  min-width: 170px;
  display: block;
  text-align: center;
}

.contactsitemstable__table tbody td {
  border-bottom: 1px solid rgba(83, 90, 103, 0.4);
}

.contactsitemstable__table tbody tr:last-child td {
  border-bottom: none;
}

.contactspage__map .pageblocksl {
  margin-bottom: 20px;
}

.cataloglist__items {
  margin-bottom: 40px;
}

.addfav_delete {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e14a4a;
}
.addfav_delete img {
display: inline-block;
margin-left: 10px;
}

.pageheader.flex.items-center.content-between {
  margin-bottom: 30px;
}

input.btn.btn-primary {
  color: #fff;
}


@media only screen and (max-width: 1440px) {
  .asidewrapper_asideblock {
    width: 240px;
  }
  .asidewrapper_asideblock .grayblock {
    padding: 26px 15px;
  }
  .asidewrapper__aside .asidewrapper__menu li a {
    padding-left: 15px;
    padding-right: 15px;
  }
  .orderlist table tbody td {
    padding: 10px 2px 0 2px;
    min-width: unset;
  }
  .orderlist table .orderlist__product {
    min-width: 140px;
  }
  .cartsummary {
    padding: 30px;
  }
  .cartsummary__colleft {
    min-width: 220px;
  }
  .pagelinktab ul li a {
    font-size: 16px;
    padding: 15px;
  }
  .blogpage .videoslider__col_main {
    min-width: 66.4%;
  }
  .blogpage .videoslider__col_main {
    flex: 1;
  }
  .blogpage .videoslider_col_aside {
    flex: 1;
    margin: -10px 0;
  }
  .blogpage .videoslider_col_aside .videoslider__video {
    margin-bottom: 0;
    padding: 10px 0;
  }
  .blogpage .videoslider__video {
    height: 50%;
  }
  .blogpage .videoslider_col_aside .blogcard__item {
    height: 100%;
  }
  .blogpage .videoslider__col_main .blogcard__img {
    background-position: center;
  }
/*   [data-slidercontainer] {
    padding: 0 60px;
  } */
  [data-slidercontainer] {
   
  }
  .sliderarrows__right {
    right: 60px;
  }
  .sliderarrows__left {
    left: 60px;
  }
  .footer__col {
    padding: 0 20px;
  }
  .footer__items {
    margin: 0 -20px;
    width: calc(100% + 40px);
  }
  .videoslider__col_main .videoslider__video,
  .videoslider__col_main .blogcard,
  .videoslider__col_main .blogcard__item,
  .videoslider__col_main .blogcard__content,
  .videoslider__col_main .youtubepopup,
  .videoslider__col_main .blogcard__image,
  .videoslider__col_main .blogcard__img {
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    padding: 0;
  }
  .videoslider__col_main .videoslider__video {
    padding: 10px;
  }
  .videoslider__col_main img {
    height: 100%;
    width: initial;
  }
  .videoslider_col_aside .videoslider__video,
  .videoslider_col_aside .blogcard,
  .videoslider_col_aside .blogcard__item,
  .videoslider_col_aside .blogcard__content,
  .videoslider_col_aside .youtubepopup,
  .videoslider_col_aside .blogcard__image,
  .videoslider_col_aside .blogcard__img {
    border-radius: 15px;
    overflow: hidden;
  }
  .videoslider_col_aside .blogcard__item {
    height: 180px;
  }
  .videoslider_col_aside .blogcard__name {
    font-size: 14px;
    line-height: 17px;
  }
  .videoslider_col_aside .blogcard__info {
    left: 10px;
    bottom: 10px;
  }
  .videoslider_col_aside {
    width: 330px;
  }
  .videoslider__col_main {
    width: calc(100% - 330px);
    height: 400px;
  }
  .headertop__leftitems {
    margin-right: 30px;
  }
  .topmenu__items ul li {
    margin-left: 20px;
  }
  .productslider__item {
    padding: 0 5px;
  }
  .blogcard {
    padding: 0 5px;
    width: 100%;
  }
  .formblock__content {
    padding-right: 50px;
  }
  main {
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .mainbanners__items {
    margin: 0;
  }
  .productcard__img {
    height: 252px;
  }
  .blogcard__mask {
    border-radius: 15px;
  }
  .pagination ul li > span,
  .pagination ul li a {
    width: 50px;
    height: 50px;
  }
  .showmorelink {
    min-width: unset;
  }
  .pagination ul li a {
    min-width: 50px;
  }
  .orderblock__aside {
    min-width: 480px;
    max-width: 480px;
  }
  .personalcontent {
    padding: 30px;
  }
  /*  .catalogrelated .productslider__container {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
} */
  .catalogrelated .productslider__slider {
    flex-wrap: nowrap;
  }
}

@media (min-width: 1024px) {

  .mainslide__wrapperMobile {
    background-image: none !important;
  }
  .sitetitle__item:last-child {
    margin-top: 5px;
  }
  .mainmenubtn {
    min-width: 285px;
  }
  .reviewsblock__nav {
    display: flex;
    margin: 40px 0;
    justify-content: center;
  }
  .reviewsblock__all {
    padding-left: 31px;
    padding-right: 45px;
    margin-right: 20px;
  }
  .bonusblock__small {
    font-size: 16px;
    line-height: 1.2;
  }
  .contactspage__col_aside {
    max-width: 280px;
    min-width: 280px;
    margin-right: 20px;
  }
}

@media only screen and (max-width: 1023px) {
  body {
    min-width: 375px;
  }
  /* main {
    min-height: initial;
  } */
  /*  * {
    flex-wrap: wrap;
  } */
  .catalogrelated .sliderarrows {
    display: flex;
  }
  .reviewsblock__item {
    width: 100%;
  }
  .fitchesblock__item {
    width: 100%;
  }
  .cols_mainblock {
    width: 100%;
  }
  .mainbanners__item {
    width: 100%;
  }
  .videoslider__col_main {
    width: 100%;
  }
  .videoslider_col_aside {
    width: 100%;
  }
  .seoblock__item {
    width: 100%;
  }
  .formblock__wrapper {
    min-height: initial;
  }
  .mainslide__wrapper {
    height: initial;
  }
  .subscribeblock__wrapper {
    height: unset;
  }
  header * {
    max-width: 100%;
  }
  .indexblock .mainmenu {
    display: none !important;
  }
  .mobilemenu .cols_asideblock {
    width: 100%;
    margin: 0;
  }
  .header__topline {
    display: none;
  }
  .headermain__left {
    width: 100%;
  }
  .headermain__left {
    padding-right: 0;
  }
  .headermain__contacts .contacts__phone a {
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
  }
  .headermain__callback a.btn_main {
    background: none;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    /* identical to box height */
    min-width: unset;
    text-align: right;
    text-decoration: underline;
    padding: 0;
    height: unset;
    color: #3a3a3a;
  }
  .headermain__contacts {
    margin-right: 0;
    width: 100%;
  }
  .headermain__right {
    justify-content: flex-end;
    text-align: right;
    width: calc(100% - 200px);
  }
  .headermain__left {
    max-width: calc(100% - 122px);
  }
  .headermain {
    flex-wrap: nowrap;
    margin: 11px 0;
  }
  .headermain__logo {
    max-width: 50px;
    min-width: 50px;
  }
  .sitetitle {
    max-width: 125px;
  }
  .headermain__descr {
    margin-left: 15px;
  }
  .headermain__contacts .contacts__phone {
    margin-right: 0;
  }
  .headermain__callback {
    margin-right: 0;
  }
  .container {
    padding: 0 20px;
  }
  .headerbottom__wrapper {
    flex-wrap: nowrap;
  }
  .mainmenubtn span {
    display: none;
  }
  .mainmenubtn {
    width: initial;
    padding: 0;
    margin: 0;
    border: none;
    height: initial;
  }
  .headermain__menu {
    min-width: 35px;
    max-width: 35px;
  }
  .headerbottom {
    background: none;
  }
  input {
    border-radius: 8px;
    height: 35px;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    padding-left: 10px;
    padding-right: 10px;
  }
  ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
  }
  ::-moz-placeholder {
    /* Firefox 19+ */
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
  }
  :-ms-input-placeholder {
    /* IE 10+ */
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
  }
  :-moz-placeholder {
    /* Firefox 18- */
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
  }
  .searchinput input {
    border-radius: 8px;
    height: 35px;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .searchinput button {
    background: none;
    right: 0;
  }
  .searchinput {
    height: 35px;
  }
  .headermain__search {
    width: calc(100% - 35px - 30px - 94px - 14px);
  }
  .iconlinks__item {
    max-width: 26px;
    margin-right: 0;
    margin-left: 8px;
  }
  .headermain__icons {
    margin-left: 6px;
  }
  #header {
    background: #ffffff;
    box-shadow: 0px 4px 8px rgba(23, 23, 23, 0.1);
  }
  .mobilemenu {
    position: fixed;
    z-index: 99999;
    background: #fff;
    top: 0;
    display: block;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    padding: 10px 20px;
    min-width: 375px;
    /*  display: none; */
    left: -100%;
    transition: all 0.3s ease;
  }
  .mobilemenu .mobilemenu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
  }
  .mobilemenu .mainmenuLevelOne__parent a.mainmenuLevelOne__link {
    background-image: none;
  }
  .mobilemenu .mobilemenu__logo {
    width: 50px;
    margin-right: 30px;
  }
  .mobilemenu .headermain__search {
    width: calc(100% - 50px - 30px - 35px - 30px);
  }
  .mobilemenu .mainmenu {
    display: block;
  }
  .mobilemenu .mainmenuLevelOne li {
    display: none;
  }
  .mobilemenu .mainmenuLevelOne li.mainmenuLevelOne__item_showmore {
    display: block;
  }
  .mobilemenu .mainmenuLevelOne li.active {
    display: block !important;
  }
  .mobilemenu .mainmenu__level_1 {
    width: 100%;
  }
  .mobilemenu .mainmenuLevelOne__item_showmore a {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mobilemenu .mainmenuLevelOne__item_showmore a:focus {
    background: #f9f9f9;
  }
  .mobilemenu .mainmenuLevelOne__item_showmore a span {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    /* identical to box height */
    text-align: center;
    color: #08105b;
    display: block;
    margin: 0;
    padding: 0;
  }
  .mobilemenu__button {
    margin-right: 30px;
  }
  .mobilemenu.active {
    left: 0;
  }
  .mobilemenu__links {
    padding: 28px 20px;
  }
  .mobilemenu__links ul {
    padding: 0;
    margin: 0;
    list-style: none;
  }
  .mobilemenu__links li {
    margin-bottom: 15px;
  }
  .mobilemenu__links li a {
    display: block;
    background-image: url(../img/mobilemenu__links.svg);
    background-repeat: no-repeat;
    background-position: right center;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    /* identical to box height */
    color: #3a3a3a;
  }
  .mobilemenu__login {
    padding: 16px 20px;
    background: #f9f9f9;
    border-radius: 15px;
  }
  .mobilelogin__title {
    margin-bottom: 5px;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    /* identical to box height */
    color: #3a3a3a;
  }
  .mobilelogin__text {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #3a3a3a;
    margin-bottom: 15px;
  }
  .btn_main_small {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    height: initial;
    /* identical to box height */
    padding: 11px 39px;
    text-align: center;
    min-width: unset;
    color: #ffffff;
    border-radius: 10px;
  }
  .mobilemenu__contancts {
    padding: 30px 0;
  }
  .mobilecontacts {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .socials__items {
    margin: 0;
    flex-wrap: nowrap;
  }
  .socials__items a {
    min-width: 25px;
    max-width: 25px;
    height: 25px;
    display: block;
    padding: 0;
    margin-right: 10px;
  }
  .mobilecontacts__phone a {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    text-align: right;
    text-decoration: underline;
    color: #3a3a3a;
  }
  .container .container {
    padding: 0;
  }
  #header {
    margin-bottom: 20px;
  }
  .mainslide__wrapper {
    padding: 24px 30px;
    height: 500px;
  }
  .mainslide__wrapper .btn_main {
    height: 60px;
    line-height: 60px;
  }
  .mainslide__content {
    margin: 0;
    max-width: 100%;
  }
  .mainslide__title {
    font-weight: 700;
    font-size: 26px;
    line-height: 31px;
    margin-bottom: 11px;
  }
  .mainslide__subtitle {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 20px;
    max-width: calc(100% - 49px);
  }
  .mainslide__text {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 26px;
  }
  .mainbanners {
    width: 100%;
    overflow-x: auto;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
  }
  .mainbanners::-webkit-scrollbar {
    display: none;
  }
  .mainbanner {
    height: 190px;
  }
  .mainbanners__items {
    flex-wrap: nowrap;
  }
  .mainbanners__item {
    min-width: 290px;
    max-width: 290px;
    padding: 0;
    margin-right: 20px;
  }
  .mainbanners__item:last-child {
    margin-right: 0;
  }
  .mainbanner__image {
    max-width: 187px;
    right: 16px;
  }
  .mainbanner__bg {
    left: 24px;
  }
  .mainbanner__title {
    margin-bottom: 6px;
    font-size: 18px;
    line-height: 22px;
  }
  .mainbanner__badge {
    background-size: cover;
    height: 51px;
    width: 68px;
    bottom: 38px;
  }
  .mainbanner__badge span {
    font-size: 16px;
    line-height: 19px;
    padding-left: 8px;
    padding-top: 6px;
  }
  .indexblock,
  .pageblocksl {
    margin-bottom: 54px;
  }
  h2 {
    font-size: 26px;
    line-height: 31px;
    margin: 0 0 29px 0;
  }
  .blockheader.flex {
    margin: 0 0 29px 0;
  }
  .blockheader.flex h2 {
    margin-bottom: 0;
  }
  .sliderarrows {
    display: flex;
    flex-wrap: nowrap;
  }
  .sliderarrow {
    position: initial;
    transform: none;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    margin-left: 10px;
  }
  .sliderarrow svg {
    width: 13px;
  }
  [data-slidercontainer] {
    padding: 0;
  }
  .productslider__item {
    width: 162px;
    padding: 0;
    margin-right: 10px;
  }
  .productcard__wrapper {
    padding: 10px;
  }
  .productcard__img {
    height: 142px;
  }
  .productcard__stickers {
    transform: scale(0.75);
    left: -5px;
    position: absolute;
    top: -10px;
    z-index: 9;
  }
  .productsticker .productsticker_default {
    white-space: nowrap;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
  }
  .productsticker_default {
    flex-wrap: nowrap;
  }
  .productsticker_default .productsticker__text {
    white-space: nowrap;
  }
  .productsticker_default .productsticker_icon {
    min-width: 7px;
  }
  .productcard__rating .cardrating__value {
    font-size: 14px;
    line-height: 17px;
  }
  .productcard__title a {
    font-size: 14px;
    line-height: 17px;
    margin-bottom: 5px;
    min-height: 51px;
    display: block;
  }
  .productcard__param {
    font-size: 12px;
    line-height: 15px;
  }
  .cataloglist__item .productcard__addtocart {
    background-image: url(../img/addtocart2.svg);
    width: 40px;
    height: 40px;
    padding: 10px;
    border-radius: 12px 0px 12px 12px;
  }
  .productslider__slide .productcard__addtocart {
    background-image: url(../img/addtocart2.svg);
    width: 36px;
    height: 36px;
    padding: 10px;
    border-radius: 12px 0px 12px 12px;
  }
  .productcard__oldprice {
    font-size: 12px;
    line-height: 15px;
  }
  .productcard__price {
    font-size: 16px;
    line-height: 19px;
  }
  .catalog-fav svg {
    width: 20px;
    height: 20px;
  }
  .catalog-fav {
    top: 20px;
    right: 20px;
  }
  .reviewsblock__review {
    padding: 15px 20px;
  }
  .reviewsblock__name {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 3px;
  }
  .reviewsblock__date {
    font-size: 12px;
    line-height: 15px;
  }
  .reviewsblock__header {
    margin-bottom: 15px;
  }
  .reviewsblock__rating {
    margin-top: 3px;
  }
  .score {
    margin-right: 0;
  }
  .reviewsblock__text,
  .reviewsblock__text p {
    font-size: 14px;
    line-height: 17px;
    margin: 0;
  }

  .reviewsblock__nav {
    display: block;
  }
  .reviewsblock__nav a {
    margin: 10px 0;
    display: block;
  }
  .blockheader {
    margin-bottom: 15px;
  }
  .blockheader__subtitle {
    margin-bottom: 30px;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: #3a3a3a;
  }
  .videoslider__col_main {
    height: 190px;
  }
  .blogcard {
    padding: 0;
  }
  .blogcard__info {
    flex-wrap: nowrap;
  }
  .blogcard__icon,
  .videoslider_col_aside .blogcard__icon {
    width: 50px;
    height: 50px;
    margin-right: 10px;
  }
  .blogcard__name,
  .videoslider_col_aside .blogcard__name {
    font-size: 14px;
    line-height: 17px;
  }
  .blogcard__info,
  .videoslider_col_aside .blogcard__info {
    left: 20px;
    bottom: 20px;
  }
  .videoslider__col_main .videoslider__video {
    padding: 0;
   
  }
  .videoslider__cols {
    padding-bottom: 20px;
  }
  .videoslider_col_aside .videoslider__video {
    padding: 0;
  }
  .videoslider__video {
    margin-right: 20px;
  }
  .blogcard__img {
    display: block;
    height: 0;
    padding-top: 66%;
    position: relative;
    overflow: hidden;
  }
  .blogcard__img img:not([role="presentation"]) {
    position: absolute;
    left: -9999px;
    right: -9999px;
    top: -9999px;
    bottom: -9999px;
    margin: auto;
    height: 100% !important;
    max-width: initial !important;
    width: initial !important;
  }
  .videoslider_col_aside .blogcard__item {
    height: 190px;
  }
  .videoslider__slider {
    width: 100%;
    overflow-x: auto;
    display: flex;
    flex-wrap: nowrap;
  }
  .videoslider__cols {
    display: flex;
    flex-wrap: nowrap;
  }
  .videoslider_col_aside {
    display: flex;
    flex-wrap: nowrap;
  }
  .videoslider__slide {
    width: initial;
  }
  .videoslider__video {
    width: 290px;
  }
  .blogslider__slide {
    width: 290px;
    margin-right: 20px;
  }
  .blogcard_type2 .blogcard__name {
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    padding-right: 20px;
  }
  .blogcard_type2 .blogcard__info {
    bottom: 16px;
    left: 19px;
  }
  .subscribeblock__container {
    padding: 0;
  }
  .subscribeblock__wrapper {
    background-image: none;
    padding: 20px;
    border-radius: 12px 0px 12px 12px;
  }
  .subscribeblock__title {
    font-style: normal;
    font-weight: 700;
    font-size: 26px;
    line-height: 31px;
    margin-bottom: 24px;
    width: calc(100% - 24px);
  }
  .subscribeblock__input {
    margin-bottom: 20px;
  }
  .subscribeblock__button .btn_main {
    height: 60px;
    display: block;
    width: 100%;
  }
  .subscribeblock__confirm {
    font-size: 12px;
    line-height: 15px;
  }
  .subscribeblock__button {
    width: 100%;
  }
  .subscribeblock__content {
    width: 100%;
  }
  .subscribeblock__input input {
    width: 100%;
  }
  .subscribeblock__image {
    display: none;
  }
  .subscribeblock__input {
    margin-right: 0;
  }
  .fitchesblock__item {
    margin-bottom: 20px;
  }
  .fitchesblock__header {
    flex-wrap: nowrap;
  }
  .fitchesblock__title {
    font-size: 18px;
    line-height: 22px;
  }
  .fitchesblock__icon {
    height: 50px;
    margin-right: 20px;
    max-width: 50px;
    min-width: 50px;
  }
  .fitchesblock__content {
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
  }
  .fitchesblock__wrapper {
    padding: 20px;
  }
  .seoblock__text p {
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
  }
  .seoblock__right {
    min-height: 205px;
  }
  .seoblock__left {
    padding-right: 0;
    margin-bottom: 8px;
  }
  .fitchesblock_type2 .fitchesblock__item {
    width: 100%;
  }
  .fitchesblock__number {
    font-size: 26px;
    line-height: 31px;
  }
  .formblock__container {
    padding: 0;
  }
  .formblock__wrapper {
    background-image: none;
    padding: 20px;
    border-radius: 15px;
  }
  .formblock__title {
    font-style: normal;
    font-weight: 700;
    font-size: 26px;
    line-height: 31px;
    margin-bottom: 24px;
    margin-bottom: 15px;
  }
  .formblock__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 20px;
  }
  .formblock__input {
    padding-bottom: 20px;
  }
  .formblock__button .btn_main {
    height: 60px;
    display: block;
    width: 100%;
  }
  .formblock__confirm {
    font-size: 12px;
    line-height: 15px;
  }
  .formblock__button {
    width: 100%;
  }
  .formblock__content {
    width: 100%;
    padding-right: 0;
  }
  .formblock__input input {
    width: 100%;
  }
  .formblock__image {
    display: none;
  }
  .footer__menu ul {
    column-count: 1;
  }
  .footer__toppanel {
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 30px;
  }
  .sitetitle__items {
    flex-wrap: wrap;
  }
  .headermain__right {
    flex-wrap: wrap;
  }
  .cols_asideblock {
    display: none;
  }
  .headermain__right {
    flex-wrap: wrap;
  }
  .subscribeblock__row {
    flex-wrap: wrap;
  }
  .subscribeblock__input {
    width: 100%;
  }
  .blockheader__left h1 {
    font-style: normal;
    font-weight: 700;
    font-size: 26px;
    line-height: 31px;
  }
  .fitchesblock__items {
    flex-wrap: wrap;
  }
  .seoblock__items {
    flex-wrap: wrap;
  }
  .formblock__items {
    flex-wrap: wrap;
  }
  .footer__items {
    flex-wrap: wrap;
  }
  .footerpanel__items {
    flex-wrap: wrap;
  }
  .contacts {
    flex-wrap: wrap;
  }
  .footer_logo {
    min-width: 110px;
    max-width: 110px;
    margin-right: 20px;
  }
  .footer__main {
    padding: 30px 0;
  }
  .footersearh__input {
    margin-bottom: 10px;
  }
  .iconbutton {
    width: 45px;
    height: 45px;
    padding: 10px;
  }
  .footerpanel__item {
    padding: 0;
    margin-right: 10px;
  }
  .footerpanel__items {
    padding: 0;
    width: 100%;
  }
  .footersearch {
    position: relative;
  }
  .footersearch input {
    background: #293076;
    border-radius: 15px;
    display: flex;
    align-items: center;
    border: none;
    padding: 0 19px 0 54px;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #ffffff;
  }
  .footersearch ::-webkit-input-placeholder {
    font-size: 14px;
    line-height: 17px;
    font-weight: 400;
  }
  .footersearch ::-moz-placeholder {
    font-size: 14px;
    line-height: 17px;
    font-weight: 400;
  }
  .footersearch :-ms-input-placeholder {
    font-size: 14px;
    line-height: 17px;
    font-weight: 400;
  }
  .footersearch :-moz-placeholder {
    font-size: 14px;
    line-height: 17px;
    font-weight: 400;
  }
  .footer__menu ul li {
    margin-bottom: 10px;
    min-width: unset;
  }
  .contacts__info {
    max-width: 100%;
    width: 100%;
    margin-bottom: 20px;
  }
  .contacts__phones {
    text-align: left;
  }
  .footer__contacts {
    margin-bottom: 0px;
  }
  .footer__maincopy {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
  }
  .headerbottom__wrapper {
    justify-content: space-between;
  }
  .footerpanel__search {
    width: 100%;
  }
  .reviewsblock__items .reviewsblock__item:first-child .reviewsblock__answer {
    background-position: bottom right;
  }
  .cataloglist__items {
    justify-content: center;
  }
  .cataloglist__item {
    max-width: 162px;
    min-width: 162px;
  }
  .cataloglist__item .productcard {
    min-width: unset;
    max-width: 166px;
  }
  .catalogpage__main {
    width: 100%;
  }
  .catalogpage__aside.catalogaside {
    display: none;
  }
  .catalogpanel {
    margin-bottom: 20px;
  }
  .dropdownpanel {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 10px;
    padding-bottom: 250px;
    margin-bottom: -250px;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
  }
  .dropdownpanel::-webkit-scrollbar {
    display: none;
  }
  .catalognav {
    flex-wrap: wrap;
  }
  .pagination ul li {
    margin: 0 2px;
  }
  .catalognav__showmore {
    width: 100%;
  }
  .container {
    max-width: 800px;
  }
  .cataloglinks__menu.dm-menu_item-subindicator ul li {
    margin-right: 13px;
  }
  .catalognav__pagination {
    margin-left: auto;
    margin-right: auto;
  }
  .productcard {
    max-width: 166px;
    min-width: 162px;
  }
  .seoblock__text ul li {
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
  }
  .dm-item_submenu-overflow ul li a {
    padding: 10px !important;
    height: initial !important;
  }
  .fitchesblock__title {
    width: 100%;
  }
  .fitchesblock__item {
    width: 100%;
    flex: unset;
  }
  .formblock__container,
  .subscribeblock__container {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .mainslide__content {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .mainslide__wrapperMobile {
    width: 100%;
    background-size: cover;
  }
  .pageheader.flex.items-center.content-between {
    flex-wrap: wrap;
  }
  .pageheader.flex.items-center.content-between .cataloglinks {
    width: 100%;
    margin-top: 20px;
  }
  .pagelinktab {
    margin: 20px 0;
    width: 100%;
    overflow-x: auto;
  }
  /* .blogpage {
    .videoslider__cols {
      flex-wrap: wrap;
    }
    .videoslider__col_main {
      flex: unset;
      width: 100%;
    }
    .videoslider_col_aside {
      flex: unset;
      width: 100%;
      flex-wrap: wrap;
      .videoslider__video {
        height: 190px;
      }
    }
    .videoslider__col_main {
      height: unset;
      .videoslider__video {
        height: 190px;
      }
    }
  }
  .blogslider__items {
    flex-wrap: wrap;
  } */
  /* .blogslider__items .blogslider__item {
    width: 100%;
     height: 187px;
     margin-bottom: 20px;
     width: 310px;
  }
  .blogpage__item {
    margin-bottom: 0px;
  }
  .blogpage .videoslider__col_main .videoslider__video, .blogpage .videoslider_col_aside .videoslider__video {
   padding: 0;
   margin-bottom: 20px;
  }
  .blogslider__items .blogslider__item {

  }
  .blogpage .videoslider_col_aside {
    padding: 0;
    margin: 0;
  }
  .blogpage .videoslider__col_main .videoslider__video {
    margin-bottom: 20px;
  }
  .blogpage .videoslider__col_main {
    padding: 0;
    .videoslider__video  {
      margin-bottom: 20px;
    }

  }
  .blogslider__items .blogslider__item {
    padding: 0;
  } */
  .blogpage .blogcard__info,
  .blogpage .videoslider_col_aside .blogcard__info {
    left: 10px;
    bottom: 10px;
  }
  .blogpage .videoslider__cols {
    flex-wrap: wrap;
  }
  .blogpage .videoslider__video {
    width: 100%;
  }
  .blogpage .blogcard_type2 .blogcard__name {
    font-size: 14px;
    line-height: 17px;
  }
  .blogpage .videoslider_col_aside {
    flex: unset;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
  }
  .blogpage .videoslider_col_aside .videoslider__video {
    height: unset;
    margin: 0;
    padding: 0 10px;
    max-height: 160px;
  }
  .blogpage .videoslider__col_main {
    padding: 0;
    height: unset;
  }
  .blogpage .videoslider__col_main .videoslider__video {
    height: unset;
    padding: 0 10px;
    margin: 0;
    max-height: 160px;
  }
  .blogslider__items {
    flex-wrap: wrap;
  }
  .blogpage__item {
    margin-bottom: 20px;
  }
  .blogpage .videoslider__col_main {
    width: 33.3%;
    min-width: 33.3%;
  }
  .blogpage .videoslider_col_aside {
    width: 66.7%;
  }
  .blogpage .videoslider_col_aside .videoslider__video {
    width: 50%;
  }
  .blogpage .videoslider__col_main .blogcard__img {
    padding-top: 66%;
  }
  .catalogrelated {
    /* .productslider__container {
      width: 100%;
      overflow-x: auto;
      overflow-y: hidden;
    } */
    /*  .productslider__slider {
      display: flex;
      margin: -5px;
      flex-wrap: nowrap;
    } */
  }
  .catalogrelated .productslider__slide {
    margin: 5px;
  }
  .blogheader__content {
    padding-right: 0;
    margin-bottom: 30px;
  }
  .blogheader__title {
    font-size: 24px;
    line-height: 26px;
  }
  .blogheader__item {
    width: 100%;
    flex: unset;
  }
  .blogheader__items {
    flex-wrap: wrap;
  }
  .blogheader {
    margin-bottom: 40px;
    min-height: unset;
  }
  .blogmain__item_list {
    padding-right: 0;
  }
  .blogmain__item {
    flex: unset;
    width: 100%;
    margin-bottom: 20px;
  }
  .blogmain__items {
    flex-wrap: wrap;
  }
  .blogpage__main {
    padding: 30px 0;
    margin-bottom: 40px;
  }
  .bannerblock__items {
    flex-wrap: wrap;
  }
  .bannerblock__title {
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  .cartblock {
    width: 100%;
    overflow-x: auto;
  }
  .cartblock__content .cartblock__item {
    padding: 10px;
    min-width: 120px;
  }
  .cartblock__header .cartblock__item {
    padding: 15px;
    white-space: nowrap;
  }
  .cartblock__content {
    margin-top: 0;
  }
  .cartblock__header {
    overflow: visible;
    width: max-content;
  }
  .cartproduct__title {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
  }
  .cartproduct__info {
    margin-left: 10px;
  }
  .cartproduct__oldprice,
  .cartproduct__param,
  .cartproduct__newprice,
  .cartproduct__price {
    white-space: nowrap;
    font-size: 14px;
    line-height: 1.3;
  }
  .cartproduct__param {
    font-size: 14px;
  }
  .cartblock__content {
    width: max-content;
  }
  .cartblock__header {
    font-size: 14px;
  }
  .cartblock__item {
    justify-content: flex-start;
    min-width: 130px !important;
    max-width: 130px !important;
  }
  .cartblock__item_image {
    min-width: 220px !important;
    max-width: 220px;
  }
  .cartsummary__cols {
    flex-wrap: wrap;
  }
  .cartsummary__totalblock {
    flex-wrap: wrap;
  }
  .cartsummary__price,
  .cartsummary__oldprice {
    white-space: nowrap;
  }
  .cartsummary__colleft {
    margin-right: 0;
  }
  .cartsummary {
    padding: 20px 10px;
  }
  .cartsummary__total {
    margin: 20px 0;
  }
  .cartsummary__price,
  .cartsummary__caption {
    font-size: 20px;
    line-height: 1.2;
  }
  .cartsummary__discount {
    white-space: nowrap;
  }
  .catalogrelated.mt-100.mb-100 {
    margin: 40px 0;
  }
  .cartblock__item.cartblock__item_delete {
    width: 14px !important;
    justify-content: center;
  }
  .orderblock {
    flex-wrap: wrap;
  }
  .orderblock > * {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
  }
  .infocard__title {
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  .orderform__name {
    font-size: 18px;
    line-height: 1.2;
  }
  .orderform__tedt {
    font-size: 16px;
    line-height: 1.2;
  }
  .orderform__block {
    margin-bottom: 30px;
  }
  .orderblock__aside {
    margin-bottom: 40px;
  }
  .carttotal__item_image {
    max-width: 50%;
    min-width: 50%;
  }
  .carttotal__item_count,
  .carttotal__item_price {
    max-width: 25%;
    min-width: 25%;
  }
  .carttotal {
    padding: 25px 10px;
  }
  .asidewrapper {
    flex-wrap: wrap;
  }
  .formblock__input_col3,
  .formblock__input_col2 {
    width: 100%;
  }
  .personalcontent {
    padding: 30px 10px;
  }
  .formblock .btn_main {
    width: 100%;
  }
  .personalcontent__title {
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 1.2;
  }
  .asidewrapper_asideblock {
    width: 100%;
    margin-right: 0;
  }
  .personalpage__aside.asidewrapper__aside {
    width: 100%;
  }
  .personalcontent__text {
    font-size: 20px;
    line-height: 1.2;
  }
  .orderlist {
    margin: 0;
    width: 100%;
  }
  .asidewrapper__main {
    width: 100%;
  }
  .personalcontent__text p {
    font-size: 20px;
    line-height: 1.2;
  }
  .productpage__main.flex.content-between {
    flex-wrap: wrap;
  }
  .productpage__main.flex.content-between > * {
    width: 100%;
  }
  .detailinfo__h1 {
    color: #3a3a3a;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 14px;
    margin-top: 0;
    max-width: 100%;
  }
  .productpage__right {
    padding-left: 0;
    min-width: 100%;
    width: 100%;
  }
  .productcard__buy {
    flex-wrap: wrap;
  }
  .catalogrelated .productcard__buy {
    flex-wrap: nowrap;
  }
  .detailtable__col {
    flex: 1;
  }
  .detailtable__row {
    align-items: unset;
  }
  .detailslider {
    margin-bottom: 20px;
  }
  .detail .quantity__input input {
    height: 25px;
  }
  .detail .buyblock__quantity {
    width: 99px;
  }
  .detailbuy .detailcard__addtocart .btn_main_type2 {
    font-size: 12px;
    min-width: unset;
    height: 60px;
  }
  .detailbuy .detailcard__addtocart .btn_main_type2 {
    width: initial;
    width: unset;
  }
  .detail .detailbuy .detailcard__addtocart {
    min-width: unset;
  }
  .detailbuy .buyblock__quantity {
    margin-right: 10px;
  }
  .productpage__content .pagelinktab ul li a,
  .productpage__content .pagelinktab ul li span {
    font-size: 12px;
    padding: 15px 10px;
  }
  .description__table td:first-child {
    white-space: initial;
    max-width: 140px;
  }
  .description__table td,
  .description p,
  .description {
    font-size: 14px;
    line-height: 1.2;
  }
  .productpage__content .reviewsblock__items {
    flex-wrap: wrap;
  }
  .productpage__content .blogslider__items .blogslider__item {
    width: 100%;
  }
  .reviewsblock__item {
    margin-bottom: 20px;
  }
  .productpage.detail {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }
  .detailbuy {
    max-width: 335px;
    margin-left: auto;
    margin-right: auto;
  }
  .infoicons {
    max-width: 485px;
    margin-left: auto;
    margin-right: auto;
  }
  .detailinfo__link {
    text-align: center;
  }
  .productcard__pricevalue {
    font-size: 20px;
  }
  .productcard__mainprice {
    margin-right: 15px;
  }
  .detailbuy_out {
    max-width: 100%;
  }
  .detailbuy__text {
    min-width: unset;
    font-size: 16px;
    width: 120px;
    line-height: 1.2;
  }
  .detail .detailbuy.detailbuy_out .detailcard__addtocart {
    width: 260px;
  }
  .detail .detailbuy.detailbuy_out .detailcard__addtocart .btn_border {
    height: 60px;
  }
  .detailbuy .buyblock__quantity {
    padding-left: 7px;
    padding-right: 7px;
  }
  .deliveryblock .blocklist {
    min-width: 400px;
  }
  .blogmain__content h3,
  .textinfo h3 {
    font-size: 20px;
    line-height: 1.2;
  }
  .blockcontent__title h1 {
    font-size: 24px;
    line-height: 1.2;
  }
  .pagebanner_type2 .pagebanner__title {
    font-size: 26px;
    font-weight: 700;
    line-height: 31px;
  }
  .pagebanner__left {
    padding-right: 0;
  }
  .pagebanner_type2 .pagebanner__left {
    padding-right: 0;
  }
  .pagebanner_type2 .pagebanner__image {
    margin-left: 0;
  }
  .pagebanner {
    margin: 30px 0 60px 0;
  }
  .bonusblock__title {
    font-size: 26px;
    line-height: 31px;
  }
  .bonusblock__text {
    font-size: 20px;
    line-height: 1.2;
  }
  .bannerblock_large .bannerblock__title {
    font-size: 26px;
    line-height: 1.2;
  }
  .bannerblock__text {
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 1.2;
  }
  .bonusblock__small {
    padding-left: 0;
    font-size: 14px;
    line-height: 1.2;
  }
  .bonusblock__small br {
    display: none;
  }
  .bonusblock__caption {
    font-size: 16px;
    line-height: 1.2;
  }
  .contactspage__cols {
    margin-bottom: 0px;
    flex-wrap: wrap;
  }
  .contactspage__cols > * {
    width: 100%;
  }
  .contactspage__col_aside {
    margin-bottom: 40px;
  }
  .contactsitemstable__table tbody td span {
    min-width: 135px;
  }
  .contactsitemstable__table thead th span {
    padding: 10px 5px;
    text-align: left;
    font-size: 14px;
    line-height: 1.2;
  }
  .contactsitemstable__table tbody td span {
    padding: 10px 5px;
    text-align: left;
    font-size: 12px;
    line-height: 1.2;
  }
  .contactsitems__select {
    width: 100%;
    display: block;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .contactsitems__select select {
    padding-left: 0;
  }
  .footer__dev {
    margin-top: 20px;
  }
  .description__table table {
    width: 100%;
  }
  .detailparam__content {
    max-width: 100%;
    word-break: break-all;
  }
  .description__table td:last-child {
    word-break: break-all;
  }
  .blogheader_type2 .blogheader__content {
    padding: 20px;
  }
}

.limitheight__button {
  display: none;
}

.personalpage .asidewrapper__main {
  width: 100%;
}

:root {
  scrollbar-color: #30ca4c #eaecf0;
  scrollbar-width: thin;
}

/* width */
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #eaecf0;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #08105b;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #ccc;
}

.pageabout {
  background-image: url(../img/about_bg.png);
  background-position: top right;
  background-repeat: no-repeat;
}

.pageabout__title {
  font-size: 32px;
  font-family: Inter;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  max-width: 749px;
  margin-bottom: 45px;
}

span.orange {
  color: #f6874d;
}

.text_large p {
  color: #3a3a3a;
  font-size: 20px;
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.pageabout__content {
  margin-bottom: 73px;
  margin-top: 73px;
}

.seoblock__left .seoblock__img {
  border-radius: 0 15px 15px 15px;
}

.text_bigger p {
  color: #3a3a3a;
  font-size: 28px;
  font-family: Inter;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.seoblock__items_center .seoblock__content {
  height: 100%;
  display: flex;
  align-items: center;
}

.text_lg p {
  color: #3a3a3a;
  font-size: 24px;
  font-family: Inter;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 40px;
}

.text_gray p {
  color: #3a3a3a;
  opacity: 0.6;
  font-size: 20px;
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.cashback__wrapper {
  border-radius: 15px;
  background: #f9f9f9;
  background-image: url(../img/cashback_bg.png);
  background-position: bottom right;
  background-repeat: no-repeat;
  min-height: 308px;
  padding: 60px 38px 38px 38px;
  min-width: 682px;
}

.cashback__title {
  color: #3a3a3a;
  font-size: 24px;
  font-family: Inter;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 16px;
}

.cashback__text {
  color: #3a3a3a;
  font-size: 20px;
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 35px;
}

.cashback__value {
  border-radius: 6px;
  border: 1.5px solid rgba(58, 58, 58, 0.1);
  background: #fff;
  padding: 21px 25px;
  color: #3a3a3a;
  font-size: 20px;
  font-family: Inter;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  position: relative;
  display: inline-block;
}
.cashback__value::before {
  content: url(../img/cashback__value.svg);
  position: absolute;
  top: calc(50% + 5px);
  left: 0;
  transform: translateX(-50%) translateY(-50%);
  z-index: 1;
}

.linebanner {
  margin: 50px 0;
}

.linebanner__wrapper {
  border-radius: 0 15px 15px 0;
  overflow: hidden;
  width: 100%;
}

.linebanner__content {
  display: flex;
  align-items: center;
  background-color: #f9f9f9;
  background-image: url(../img/linebanner_bg.svg);
  background-position: right bottom;
  background-repeat: no-repeat;
  height: 97px;
  border-radius: 555px 25px 25px 555px;
  width: 100%;
}

.linebanner__logo {
  margin-right: 32px;
  min-width: 98px;
}

.linebanner__text {
  color: #3a3a3a;
  font-size: 22px;
  font-family: Inter;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.fullgallery {
  margin: 75px 0;
}

.fullgallery__item {
  display: block;
  padding: 0 5px;
}

.sseoblock__item_typenumber2222 .seoblock__left {
  flex: unset;
  max-width: 502px;
  min-width: 502px;
  width: 100%;
  padding-right: 0;
  margin-right: 75px;
}

.sseoblock__item_typenumber3333 .seoblock__right {
  flex: unset;
  max-width: 682px;
  width: 100%;
}

.subscribeblock__input {
  position: relative;
}
.subscribeblock__input  .input-errortext {
  position: static;
}

@media only screen and (max-width: 1440px) {
  .cashback__wrapper {
    min-width: 100%;
  }
  .sseoblock__item_typenumber2222 .seoblock__left {
    flex: 1;
    width: unset;
    min-width: unset;
  }
  .sseoblock__item_typenumber3333 .seoblock__right {
    flex: 1;
    width: unset;
    min-width: unset;
  }
}
.mainslider .slick-dots {
  display: flex !important;
  justify-content: center;
    width: 100%;
    overflow: auto;
    padding-bottom: 10px;
}
@media only screen and (max-width: 1023px) {
  .pageheader__right {
    width: 100%;
    margin-bottom: 20px;
  }
  .sseoblock__item_typenumber3333 .seoblock__left,
  .sseoblock__item_typenumber3333 .seoblock__right {
    flex: unset;
    width: 100%;
  }
  .personalpage__aside .asidemenu__level_1 {
    width: 100%;
    overflow-x: auto;
  }
  .personalpage__aside .asidemenu__level_1 ul {
    display: flex;
  }
  .personalpage__aside .asidewrapper__menu li a {
    border-radius: 0 !important;
  }
  .reviewsblock {}
  .reviewsblock__items {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    margin-left: 0;
    margin-right: 0;
  }
  .reviewsblock__items .reviewsblock__item:nth-child(1) {
    margin-left: -10px;
  }
  .mainslider .slick-dots {
    bottom: unset;
    top: calc(100% + 10px)
  }
  .productcard__pricevalue {
    font-size: 18px;
  }
  .productcard__priceunit 	 {
    font-size: 12px;
  }
  .productcard__mainprice {
    margin-right: 5px;
  }
  .productslider__slide {
    padding: 5px;
  }
}

@media only screen and (max-width: 767px) {
  .cashback__wrapper {
    background-size: contain;
  }
  .fullgallery .slick-dots li button {
    height: 5px;
  }
  .fullgallery__item {
    padding: 0;
  }
  .pageabout__content {
    margin: 16px 0;
  }
  .pageabout {
    background-image: none;
  }
  .text_bigger p {
    font-size: 18px;
  }
  .text_large p {
    font-size: 14px;
  }
  .sseoblock__item_typenumber2222 .seoblock__item.seoblock__right {
    order: -1;
  }
  .sseoblock__item_typenumber2222 .seoblock__img {
    padding-top: 66%;
  }
  .sseoblock__item_typenumber2222 .seoblock__left {
    margin-right: 0;
    width: 100%;
    flex: unset;
  }
  .text_lg p {
    margin-bottom: 15px;
  }
  .text_gray p {
    font-size: 14px;
    font-family: Inter;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }
  .cashback__wrapper {
    padding: 25px 18px;
    min-height: unset;
  }
  .cashback__title {
    font-size: 16px;
    margin-bottom: 13px;
  }
  .cashback__text {
    margin-bottom: 11px;
    font-size: 14px;
  }
  .cashback__value {
    padding: 13px 19px;
    font-size: 16px;
  }
  .cashback__value::before {
    top: calc(50% + 2px);
  }
  .linebanner__content {
    height: unset;
    border-radius: 0;
    background-image: none;
    background-color: transparent;
    display: block;
  }
  .linebanner__logo {
    max-width: 48px;
    min-width: 48px;
    margin-bottom: 15px;
  }
  .linebanner__text {
    font-size: 18px;
  }
  .linebanner {
    margin: 40px 0;
  }
  .text_lg p {
    color: #3a3a3a;
    font-size: 18px;
    font-family: Inter;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
  .pageabout__title {
    font-size: 22px;
    font-family: Inter;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 25px;
  }
  .limitheight {
    position: relative;
    max-height: 484px;
    overflow: hidden;
  }
  .limitheight.active {
    max-height: unset;
  }
  .limitheight.active .fitchesblock__item {
    animation: none;
  }
  .limitheight__button {
    display: block;
    height: 225px;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.11) 21.12%,
      rgba(255, 255, 255, 0.24) 33.91%,
      rgba(255, 255, 255, 0.47) 52.13%,
      #ffffff 75.11%
    );
    opacity: 0.85;
    border-radius: 0px 0px 15px 15px;
    z-index: 9;
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }
  .limitheight__button span {
    display: block;
    padding-right: 15px;
    background-image: url(../img/limitheight.svg);
    background-position: right center;
    background-repeat: no-repeat;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #08105b;
  }
  .bonusblock__small {
    margin-left: 0;
    padding-left: 0;
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.2;
  }
  .bonusblock__small br {
    display: none;
  }
  .bonusblock__footer {
    flex-wrap: wrap;
  }
  .bonusblock br {
    display: none;
  }
  .bonusblock__content {
    width: 100%;
    margin-right: 0;
  }
  .bonusblock {
    flex-wrap: wrap;
  }
  .bonusblock .image {
    max-width: 320px;
    margin-top: 40px;
  }
  .fitchesblock_type3 .fitchesblock__item {
    width: 100%;
  }
  .bonusblock__item {
    width: 100%;
    padding-right: 0;
  }
  .flex.deliveryblock.items-end {
    flex-wrap: wrap;
  }
  .pagebanner__wrapper {
    background-image: none !important;
  }
  .deliveryblock .blocklist {
    min-width: 100%;
  }
  .blocklist__title {
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 5px;
  }
  .cols__col:first-child {
    padding-right: 0;
  }
  .flex.cols {
    flex-wrap: wrap;
  }
  .flex.cols > * {
    flex: unset;
  }
  .blocklist__wrapper {
    padding: 32px 15px;
  }
  .pagebanner__content {
    flex-wrap: wrap;
    padding: 30px 20px 0 20px;
    min-height: 300px;
  }
  .pagebanner__title {
    font-size: 22px;
    font-weight: 700;
    line-height: 31px;
  }
  .detailbuy__text {
    max-width: 100%;
    width: 100%;
    margin-bottom: 20px;
  }
  .detailbuy_out .buyblock__buttons.flex.items-center {
    flex-wrap: wrap;
  }
  .detail .detailbuy.detailbuy_out .detailcard__addtocart {
    width: calc(100% - 80px);
  }
  .infoicons {
    flex-wrap: wrap;
  }
  .infoicons__item {
    width: 100%;
    margin-bottom: 20px;
  }
  .container {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .mainslide__wrapperMobile {
    background-size: contain;
  }
  .blogpage .videoslider__col_main .videoslider__video {
    height: unset;
    max-height: unset;
    margin-bottom: 20px;
  }
  .blogpage .videoslider_col_aside .videoslider__video {
    height: unset;
    width: 100%;
  }
  .blogpage .videoslider__col_main .blogcard__img {
    padding-top: 66%;
  }
  .blogpage .videoslider_col_aside .videoslider__video {
    margin-bottom: 20px;
  }
  .blogpage .videoslider_col_aside .videoslider__video {
    padding: 0;
    width: 100%;
  }
  .blogpage .videoslider__col_main .videoslider__video {
    padding: 0;
    width: 100%;
    
  }
  .blogpage .videoslider_col_aside {
    padding: 0;
    margin: 0;
    width: 100%;
  }
  .blogpage .videoslider__col_main {
    padding: 0;
    width: 100%;
  }
  .blogpage .videoslider_col_aside .videoslider__video {
    margin-right: 0;
    max-height: unset;
  }
  .blogpage .blogslider__items .blogslider__item {
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }
  .blogpage__item {
    margin-bottom: 0;
  }
  .blogpage .videoslider__cols {
    margin: 0;
  }
  .blogslider__items {
    margin: 0;
  }
  .cartsummary__button {
    width: 100%;
  }
  .cartsummary__button .btn_main {
    width: 100%;
  }
  .modal__buttons {
    flex-wrap: wrap;
  }
  .modal__button {
    flex: unset;
    width: 100%;
    margin-bottom: 10px;
  }
  .mainslide__wrapper {
    height: initial;
    background-color: #f9f9f9;
    padding: 0;
    border-radius: 15px;
    overflow: hidden;
  }
  .mainslide__wrapper {
    background-image: none !important;
  }
  .mainslide__wrapperMobile {
    height: 341px;
    padding: 24px 30px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom center;
    border-radius: 15px;
    overflow: hidden;
    align-items: flex-start;
  }
  .cataloglist__item {
    /*  min-width: 50%; */
    /*  margin: 0 0 20px 0; */
    margin: 0;
    padding: 5px;
    min-width: 175px;
    max-width: 175px;
  }
  .pageblocksl_small {
    margin-bottom: 25px;
    margin-top: 37px;
  }
  .fullgallery {
    margin: 25px 0 80px 0;
  }
}

/*# sourceMappingURL=style.bundle.css.map*/

.orderform__inputcol.orderform__inputcol_full.orderform__inputcol_row {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
}
.orderform__inputcol.orderform__inputcol_full {
  padding: 10px;
}

.orderform__inputcol_row .check label {
  padding-left: 25px;
  margin-right: 15px;
  color: rgba(83, 90, 103, 1);
}

.bcard {
  margin-bottom: 12px;
}
.bcard__wrapper {
  border-radius: 15px;
  background: #f9f9f9;
  background-image: url(/images/bcard_wave.svg);
  background-position: top right;
  background-repeat: no-repeat;
  padding: 18px 24px;
}
.bcard__main {
  display: flex;
  align-items: center;
  padding-bottom: 6px;
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: 26px;
}
.bcard__image {
  margin-right: 14px;
}
.bcard__title {
  color: #3a3a3a;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  opacity: 0.5;
}

.bcard__total {
  color: #3a3a3a;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.bcard__total span {
  color: #3a3a3a;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;

  margin-bottom: 9px;
}
.bcard__total strong {
  color: #3a3a3a;
  font-family: Inter;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.bcard__avaible span.bcard__avcaption {
  color: #3a3a3a;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.bcard__avvalue span {
  color: #293076;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.14px;
}
.bcard__avvalue strong {
  color: #293076;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.switch {
  display: inline-block;
  width: 48px;
  height: 28px;
  position: relative;
  margin-bottom: 0;
}

.switches {
  display: flex;
  margin-bottom: 16px;
  align-items: center;
}

.toggle-thumb {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #475569;
  border-radius: 14px;
  cursor: pointer;
}

.toggle-thumb:before {
  content: "";
  height: 20px;
  width: 20px;
  position: absolute;
  left: 4px;
  bottom: 4px;
  border-radius: 50%;
  background-color: #fff;
  transition: 0.4s all ease;
}

.checkbox {
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox:checked + .toggle-thumb {
  background-color: rgba(48, 202, 76, 1);
}

.checkbox:checked + .toggle-thumb:before {
  transform: translateX(20px);
}
.toggle-thumb svg {
  display: inline-block;
  margin-left: 14px;
}

.checkbox__label {
  color: #3a3a3a;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-left: 13px;
}

.bcard__text {
  color: #3a3a3a;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.bcard__text a {
  color: #f6874d;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration: underline;
}
.bcard__text a:hover {
  text-decoration: none;
}

.bcard_noauth .bcard__title {
  opacity: 1;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.bcard_noauth .bcard__text a {
  color: #2295ff;
  text-decoration: none;
}
.bcard_noauth .bcard__text a:hover {
  text-decoration: underline;
}
.productslider__slider .slick-list {
  min-width: 100%;
}
.productslider__slider .slick-track {
  margin-left: 0;
  margin-right: 0;
}


.bx-searchtitle.theme-blue .bx-input-group .bx-form-control {
  border-color: transparent;
  padding: 7px 10px;
  height: 40px;
  background-color: #fff;
}

.bx-input-group {
  border-radius: 7px;
  overflow: hidden;
}

.bx-searchtitle .bx-input-group-btn button {
  background-image: url(/images/new_icon6.png);
  height: 40px;
}

.bx-searchtitle.theme-blue .bx-input-group-btn button {
  background-color: #fff !important;
}

.bx-searchtitle {
  margin-top: 0;
}
div.title-search-result {
  box-shadow: 0 10px 10px 6px #d6d6d6 !important;
}
/* 
.bx_smart_searche .bx_item_block_item_image  {
width: initial !important;
height: 50px !important;
} */
.bx_smart_searche.theme-blue .bx_item_block.all_result .all_result_button {
  text-align: center;
  background: #08105b !important;
  border-radius: 15px;
  height: 55px;
  min-width: 180px;
  display: inline-block;
  padding-left: 20px;
  padding-right: 20px;
  line-height: 55px;
  white-space: nowrap;
  font-style: normal;
border: none !important;
  font-weight: 500 !important;
  font-size: 16px;
  color: #ffffff  !important;
  cursor: pointer;
}

.bx_smart_searche .bx_item_block_href {
  border-bottom: 1px solid #ebebeb;
}

.search-page.theme-blue input[type=submit] {
  background-color: #2d2d2d !important;
  border-color: #2d2d2d;
}

.search-page.theme-blue input[type=text], .search-page.theme-blue .search-item {
  border-color: #2d2d2d;
}
.bx_smart_searche .bx_item_block_item_name_flex_align {
  font-size: 16px !important;
  font-weight: 500 !important
}
.bx_item_block_item_name b {
  color: #333 !important;
  font-weight: 500 !important;
  font-size: 16px !important;
}

button.btn_main.btn_main_type2.active {
  background-color: #70ac1f;
  background-image: url(/local/templates/new_maridelv3/public/img/selected_icon.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  transition: none;
}
span.productsticker.production__stiker_exc {
  background: #70ac1f;
  width: auto;
  padding: 10px;
  height: unset;
  border-radius: 23px;
}
button.btn_main.btn_main_type2.active span {
 display: none;
}
.blockheader.flex.items-center.content-between {
  margin-bottom: 30px;
}

.subscribe-edit p {
  margin-left: 10px;margin-right: 10px;
}

.subscribe-edit td[colspan="2"] {
  font-size: 20px;
  display: flex;
  align-items: center;
}

.subscribe-edit td {
padding: 5px 10px;
}
.newlkform__text p label {
  display: inline-block;
  vertical-align: middle;
  padding-left: 30px;
}
.newlkform__text input[type="radio"]:after {
  top: -3px;
}
 .subscribe-edit tfoot td {
  padding: 15px 10px;
}
.newlkform__text input[type="text"] {
  display: block;
  width: 100%;
  align-items: center;
  background-color: #f3f3f7;
  border-radius: 8px;
  display: flex;
  height: 56px;
  padding: 0 20px;
  width: 100%;
  border: none;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  border: 2px solid #f3f3f7;
  color: #3b435a;

  background: #fff;
    border: 1px solid rgba(83, 90, 103, 0.4);
    border-radius: 15px;
    padding: 20px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    resize: none;

}
.mainslider__slider {
  opacity: 0;
  transition:opacity .3s ease-out;

}
.mainslider__slider.slick-initialized{
  opacity:1;
}

.productpage__right .productcard__oldprice {
  display: flex;
  align-items: center;
  text-decoration-line: none;
  margin-bottom: 10px;
}
.productpage__right .productcard__oldprice-value {

  text-decoration-line: line-through;
}
.productpage__right .productcard__oldprice .productcard__oldprice-differ {
  margin-left: 15px;
  margin-right: 15px;

  color: #FFF;
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
border-radius: 4px;
background: #52B849;
padding: 2px 9px;
text-decoration: none;
text-decoration-line: none;
}
.orange {
  color: #f6874d;
}

.productcard__pricevalue_discount {
  color: #f6874d;
  font-size: 30px;
font-style: normal;
font-weight: 700;
line-height: normal;
margin-bottom: 11px;
}
.productcard__prices.productcard__prices_discount {
    align-items: flex-start;
}
.productcard__prices.productcard__prices_discount .detailinfo__stock {
  margin-top: 3px;
}

#newyear {
  max-width: unset;
  width: 100%;
}
#header {
  box-shadow: none;

}
.recaptcha-result {
  color: red;
  font-weight: 600;
  margin-top: 10px;
}
.header__tempbanner {
  padding: 15px 0;
  background: #f6874d;
}
.header__tempbanner .topmenu__text {
  text-align:center; font-weight: bold;
  margin: auto;
  display: block;
}

@media (max-width: 1023px) {
  .not-available {
    display: block;
    width: 100%;
    margin-top: 10px;
    margin-left: 0;
    padding: 10px 5px;
    text-align: center;
  }
  .header__tempbanner .topmenu__text {
    font-size: 13px;
    font-weight: 500;
  }
  #header {
    box-shadow: none;
    overflow-x: hidden;
  }
  .productpage__right .productcard__oldprice .productcard__oldprice-differ {
    color: #FFF;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 1px 4px;
  } 
  .productpage__right .productcard__oldprice  {
    margin-bottom: 8px;
  }

  .productcard__pricevalue_discount {
    color: #f6874d;
    font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 8px;
  }
  tfoot input[type="reset"] {
    height: unset;
  }
  .subscribe-edit td {
    font-size: 12px;
  }
  .subscribe-edit input {
    height: unset;
    padding-top: 0;
    padding-bottom: 0;
  }
  .newlkform__text input[type="radio"]:after {
    top: -3px;
}

.newlkform__text input[type="radio"] {
  top: 0;
}
  .reviewsblock__item {
    width: 33.3333%;
  }
  .reviewsblock__header {
    display: block;
  }
  .footer__col {
    width: 100%;
  }
}
.newlk__table.orderstable td, 
.newlk__table.orderstable th {
  text-align: left;
}
@media (max-width: 767px) {

  .slick-dots li button {
    width: 10px;
  }
  
.newlk__table.orderstable td{
  white-space: nowrap;
  padding: 5px;
}
.newlk__table .orderstable {
  width: 100%;
  overflow-x: auto;
}

  .nav.nav-tabs {
    flex-wrap: wrap;
  }
  .nav.nav-tabs li {
    width: 100%;
    margin-bottom: 15px;
  }
  /* .not-available {
    display: block;
    width: 100%;
    margin-top: 10px;
    margin-left: 0;
    padding: 10px 5px;
  } */
 .cataloglist__item .productcard__buy .productcard__prices {
    min-height: 42px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    width: min-content;
   
  }
  .cataloglist__item .productcard__buy .productcard__topprice {
    width: 100%;
  }
  .productcard__buy {
    min-height: 42px;
    align-items: flex-end;
  }
  .subscribe-edit td {
    font-size: 12px;
    display: block;
    width: 100%;
}
  .productcard__priceunit {
    font-size: 12px;
    line-height: 1.2;
  }
  .container {
    padding: 0 12px;
  }
 
  .productslider__slide .productcard__prices {
    margin-right: 5px;
  }
  .productcard__pricevalue {
    font-size: 18px !important;
    line-height: 1.2;
  }
  .productcard__mainprice {
    margin-right: 0;
  }
  .reviewsblock__item {
    width: 100%;
  }
  .reviewsblock__answer {
    min-height: 225px;
  /*   height: initial; */
  }
  .reviewsblock__review {
   /*  height: initial; */
  }
  .productslider__slide {
    margin: 5px;
    padding: 0;
  }
  .subscribe-edit td:first-child {
    font-weight: 600;
  }

  .productcard, .productcard__wrapper {
    height: 100%;
  }
  .productcard__title {
    min-height: 68px;
  }

  .productslider .slick-track
{
    display: flex !important;
}

.productslider .slick-slide
{
    height: inherit !important;
}
  .formblock__form {
    max-width: 100%;
  }
  .bcard__wrapper {
    padding: 10px;
  }
  .bcard__total strong {
    font-size: 22px;
  }
  .bcard__total span {
    font-size: 16px;
  }
  .checkbox__label {
    font-size: 16px;
  }
}
[data-login="active"] .asidewrapper__aside {
  display: none;
  
}

.loginpopup {
  display: none;
}

#modal_success_restore .modalcontent > p > a {
  display: block;
  text-align: center;
}

.nav.nav-tabs  {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  margin-bottom: 30px;
}
.nav.nav-tabs .nav-item .nav-link  {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
transition: all 0.3s ease;
  border-radius: 15px;
  padding: 16px 22px;
  color: #3a3a3a;
  border: 2px solid #f9f9f9;
  margin-right: 20px;
  cursor: pointer;
  border-color: #e2e2e2;
  display: block;
}

.nav.nav-tabs  .nav-item .nav-link.active  {
  border-color: #08105b;

  background: #fff;
}

.nav.nav-tabs  .nav-item  .nav-link:hover {
  background: #08105b;
  border-color: #08105b;
  color: #fff !important;
}

.tab-pane {
  display: none;
}
.tab-pane.show {
  display: block;
}

@media screen and (min-width: 1024px) {

  .productcard__priceunit {
    font-size: 20px;
}
.productcard {
  max-width: 302px;
}
.productcard__buy {
  min-height: 60px;
}
  .loginpopup__image {
    min-width: 35px;
  }
  .loginpopup__close {
    position: absolute;
    right: 15px;
    top: 15px;
  }

  .loginpopup {
    display: none;
    border-radius: 15px;
background: #FFF;
position: absolute;
box-shadow: 0px 4px 8px rgba(26, 26, 26, 0.1);
top: 100%;
right: 0;
z-index: 9;
padding: 26px 30px;
width: 463px;
  }
  .loginpopup.active {
    display: block;
  }
  .loginpopup__wrapper {
  }
  .loginpopup__close {
    cursor: pointer;
  }
  .loginpopup__main {
  }
  .loginpopup__title {
    color: #3A3A3A;
font-family: Inter;
font-size: 20px;
font-style: normal;
font-weight: 600;
line-height: normal;
margin-bottom: 14px;
  }
  .loginpopup__content {
    display: flex;
    align-items: center;
  }
  .loginpopup__image {
  }
  .loginpopup__text {
    color: #3A3A3A;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
margin-left: 14px;
  }
  .loginpopup__text a {
    color: #08105B !important;
    text-decoration: underline;
font-weight: 500;
display: inline !important;
  }
  .loginpopup__text a:hover {
   
    text-decoration: none;
  }

  
  [data-login="active"] {
    position: relative;
  }
  [data-login="active"] .asidewrapper__aside .asidewrapper__menu ul  {
    flex-wrap: wrap;
  } 
  [data-login="active"] .asidewrapper__aside .asidewrapper__menu li {
    width: 100%;
  }
  [data-login="active"] ul li {
    margin-left: 0 !important;
  }
  [data-login="active"]  ul li a:hover span{
    color: #f6874d !important;
  }
  [data-login="active"]  ul li a:hover{
    color: #f6874d !important;
  }
  [data-login="active"]  ul li a:focus{
    color: #f6874d !important;
  }
  [data-login="active"] .asidewrapper__aside {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 240px;
    background: #f9f9f9;
    z-index: 9;
    border-radius: 12px;
  }
  [data-login="active"]:hover .asidewrapper__aside  {
    display: block;

  }
  .newlk__table.orderstable {
    width: 100%;
    overflow-x: auto;
}
}
.placeholderpage {
    background: #08105B;
    min-height: 100vh;
}
.placeholderpage__header {
  text-align: center;
  padding: 54px 0 45px 0;
  background: #08105B;
}

.placeholderpage__main {
  border-radius: 20px 20px 0 0;
  background: #fff;
  padding: 44px 0;
  min-height: calc(100% - 208px);
}

.placeholderpage__email {
  margin: 21px 0;
text-align: center;
}

.placeholderpage__email a {
  font-weight: 600;
font-size: 16px;
color: #08105b;
border-bottom: 1px solid #f6874d;
padding-bottom: 4px;

}

.placeholderpage__table {
  margin: 51px 0;
}
.placeholderpage__title {
  margin: 46px 0 12px 0;

}
.placeholderpage__title h1 {
  margin: 0;
  font-weight: 700;
font-size: 36px;
color: #3a3a3a;text-align: center;
}
.placeholderpage__text {
  text-align: center;
}

.placeholderpage__table thead td {

}

.placeholderpage {
  position: relative;
}

.placeholderpage__main {
  position: relative;
  z-index: 1;
}
.placeholderpage__header {
  position: relative;
  z-index: 0;
}

#imageph_1 {
  position: absolute;
  left: 0;
  top: -48px;
  z-index: 1;
}

#imageph_2 {
  position: absolute;
  left: 285px;
  top: calc(286px);
  z-index: 1;
}
#imageph_3 {
  position: absolute;
  left: 222px;
  top: calc(483px);


  z-index: 1;
}
#imageph_4 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
#imageph_5 {
  position: absolute;
  right: 228px;
    top: calc(379px);
  z-index: 1;
}
#imageph_6 {
  position: absolute;
  right: 261px;
    top: calc(881px);
  z-index: 1;
}
#imageph_7 {
  position: absolute;
right: 0;
bottom: 0;   
  z-index: 1;
}

.placeholderpage__content .container {
  position: relative;
  z-index: 2;
}

.placeholderpage .contactsitemstable__table {
  background: transparent;
}

.placeholderpage .contactsitemstable__table table {
  background: rgba(255, 255, 255, 0.8);
}
#imageph_8 {
  display: none;
}

@media (max-width: 767px) {
  svg {
    max-width: 100%;
  }
  .placeholderpage__logo svg {
    max-width: 100%;
  }
  .placeholderpage__header {
    padding: 0 15px;
  }
  #imageph_3,
  #imageph_7,
  #imageph_4{
    display: none;
  }
  #imageph_2 {
    left: 30px;
    top: 30px;
    width: 21px;
  }
  #imageph_6 {
position: absolute;
right: 6px;
top: -6px;   
  z-index: 1;
  width: 30px;
}
#imageph_1 {
  width: 60px;
  top: -130px;

}
#imageph_8 {
  display: block;
  position: absolute;
  z-index: 1;
  right: 0;
  top: 51px;
}
.placeholderpage__main {
  min-height: unset;
  padding-top: 23px;
  padding-bottom: 0;
}
.placeholderpage__email {
  margin: 16px 0;
}
.placeholderpage__title  {
  margin: 24px 0 9px 0;
}
.placeholderpage__title h1 {
  font-weight: 700;
font-size: 18px;
}
.placeholderpage__table {
  margin-top: 0;
}
}