@charset "UTF-8";
main {
  padding: 20px 50px;
  background: #f5f6f6;
}
main .nav_bottom-mob {
  z-index: 9999;
  background: white;
  bottom: 0;
  left: 0;
  -webkit-box-shadow: 0 -1px 10px 0px rgba(0, 0, 0, 0.1411764706);
          box-shadow: 0 -1px 10px 0px rgba(0, 0, 0, 0.1411764706);
}
main .nav_bottom-mob .sub-nav-block {
  border-bottom: solid #c5c5c5 0.5px;
}
main .nav_bottom-mob .sub-nav-block .standard-blue-btn {
  background: #101a33;
  color: white;
  border-radius: 30px;
  font-size: 1.3em;
  font-weight: 600;
}
main .nav_bottom-mob .sub-nav-block .standard-blue-btn:active {
  -webkit-box-shadow: 0 0 0px 2px #0d6efd, inset 0 0 0 100px rgba(13, 109, 253, 0.1411764706);
          box-shadow: 0 0 0px 2px #0d6efd, inset 0 0 0 100px rgba(13, 109, 253, 0.1411764706);
}
main .nav_bottom-mob .bottom-link {
  font-size: 14px;
  font-weight: 500;
  color: #6d6d6d;
}
main .nav_bottom-mob .bottom-link .img_wrapper {
  height: 30px;
}
main .nav_bottom-mob .bottom-link .img_wrapper .ico {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
main .nav_bottom-mob .sendOrderBtn {
  color: white;
}
main .nav_bottom-mob .nav-bottom-btn_active {
  font-size: 14px;
  font-weight: 500;
  color: #0d6efd;
}
main .nav_bottom-mob .nav-bottom-btn_active .ico {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
main .cost {
  color: #7c7c7c;
}
main .cost span {
  color: #101a33;
  font-weight: 600;
  font-size: 1.5em;
}
main .add_to_cart_wrapper .add-to-cart {
  min-width: 205px;
  background: #101a33;
  border-radius: 2.1em;
  color: white;
  font-size: 1.3em;
  font-weight: 500;
  line-height: 0.75;
}
main .add_to_cart_wrapper .add-to-cart .img_wrapper {
  max-height: 40px;
  height: 60%;
}
main .add_to_cart_wrapper .add-to-cart img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
main .add_to_cart_wrapper .add-to-cart .load {
  display: block;
  border: solid 3px #ddd;
  border-left: solid 3px transparent;
  border-radius: 50%;
  width: 17px;
  height: 17px;
  -webkit-animation-name: spin;
          animation-name: spin; /* Применяем анимацию вращения */
  -webkit-animation-duration: 1s;
          animation-duration: 1s; /* Период вращения */
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite; /* Если не указать, то сделает только одно вращение */
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear; /* Для того, чтобы вращение было равномерным */
}
main .add_to_cart_wrapper .add-to-cart-added {
  background: #4dae4b;
}
main .add_to_cart_wrapper .add-to-cart-error {
  min-width: 205px;
  background: #fa0d05;
  border-radius: 2.1em;
  color: white;
  font-size: 1.5em;
  font-weight: 500;
  line-height: 1;
}
main .add_to_cart_wrapper .add-to-cart-error .img_wrapper {
  height: 100%;
}
main .add_to_cart_wrapper .add-to-cart-error .img_wrapper {
  display: block;
  position: relative;
  width: 15px;
  height: 15px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
main .add_to_cart_wrapper .add-to-cart-error .img_wrapper::after,
main .add_to_cart_wrapper .add-to-cart-error .img_wrapper::before {
  content: "";
  top: -10%;
  left: 50%;
  position: absolute;
  width: 3px;
  height: 100%;
  border-radius: 3px;
  background-color: white;
}
main .add_to_cart_wrapper .add-to-cart-error .img_wrapper::before {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
main .add_to_cart_wrapper .buy-now {
  min-width: 200px;
  border: solid #0d6efd 1px;
  background: none;
  border-radius: 2.1em;
  font-size: 1.3em;
  font-weight: 600;
  line-height: 0.75;
  color: #0d6efd;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@media (max-width: 770px) {
  main .add_to_cart_wrapper .add-to-cart {
    min-width: 180px;
    width: calc(50% - 10px);
  }
  main .add_to_cart_wrapper .add-to-cart .img_wrapper {
    height: 20px;
  }
  main .add_to_cart_wrapper .buy-now {
    min-width: 180px;
    width: calc(50% - 10px);
  }
}
@media (max-width: 540px) {
  main .add_to_cart_wrapper {
    padding: 0 10px;
  }
  main .add_to_cart_wrapper .add-to-cart {
    min-width: 180px;
    width: calc(50% - 10px);
  }
  main .add_to_cart_wrapper .add-to-cart .img_wrapper {
    height: 20px;
  }
  main .add_to_cart_wrapper .buy-now {
    min-width: 120px;
    width: calc(50% - 20px);
  }
}
main .crumbs {
  font-size: 0.9em;
  color: #949494;
  margin-bottom: 0.9em;
}
main .crumbs a {
  color: #101a33 !important;
  text-decoration: none;
}
main .crumbs a:hover {
  color: #0a58ca !important;
  text-decoration: underline;
}
main .grade_wrapper .stars {
  font-size: 1.5em;
  letter-spacing: 6px;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #ffb904), color-stop(55%, #ffb904), color-stop(0, #e4e4e4), to(#e4e4e4));
  background: linear-gradient(90deg, #ffb904 0, #ffb904 55%, #e4e4e4 0, #e4e4e4 100%);
  -webkit-background-clip: text;
  color: transparent;
  line-height: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
main .grade_wrapper .review {
  color: #5a5a5a;
  font-size: 0.9em;
}
main .preview-section .sliders_wrapper {
  background: white;
  border-radius: 1.9em;
  height: 534px;
}
main .preview-section .sliders_wrapper .swiper-nav_wrapper {
  border-radius: 0 24px 24px 0;
  background: #f5f6f6;
  position: relative;
  height: 85%;
}
main .preview-section .sliders_wrapper .swiper-nav_wrapper .swiper-wrapper {
  padding: 2px;
}
main .preview-section .sliders_wrapper .swiper-nav_wrapper .swiper {
  width: 100%;
  height: 100%;
}
main .preview-section .sliders_wrapper .swiper-nav_wrapper .swiper-slide {
  overflow: hidden;
  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;
  width: 60px;
  height: 60px;
  background-color: white;
  padding: 10px;
  border-radius: 15px;
}
main .preview-section .sliders_wrapper .swiper-nav_wrapper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
main .preview-section .sliders_wrapper .swiper-nav_wrapper .swiper-slide-thumb-active {
  -webkit-box-shadow: 0 0 0 1px #0d6efd;
          box-shadow: 0 0 0 1px #0d6efd;
}
main .preview-section .sliders_wrapper .swiper-nav_wrapper .swiper-nav-button-next,
main .preview-section .sliders_wrapper .swiper-nav_wrapper .swiper-nav-button-prev {
  position: absolute;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #f4f4f4 url("../img/svg/arrow-blue.svg");
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  bottom: -55px;
  left: calc(50% - 25px);
}
main .preview-section .sliders_wrapper .swiper-nav_wrapper .swiper-nav-button-prev {
  bottom: auto;
  top: -55px;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
main .preview-section .sliders_wrapper .swiper-main_wrapper {
  margin: auto;
  position: relative;
  height: 100%;
  width: 80%;
}
main .preview-section .sliders_wrapper .swiper-main_wrapper .swiper {
  width: 100%;
  height: 100%;
}
main .preview-section .sliders_wrapper .swiper-main_wrapper .swiper-slide {
  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;
}
main .preview-section .sliders_wrapper .swiper-main_wrapper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
main .preview-section .sliders_wrapper .swiper-main-button-next,
main .preview-section .sliders_wrapper .swiper-main-button-prev {
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f4f4f4 url("../img/svg/arrow-blue.svg");
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: center;
  top: calc(50% - 18px);
  right: -20px;
  z-index: 99;
}
main .preview-section .sliders_wrapper .swiper-main-button-prev {
  right: auto;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  left: -20px;
}
main .preview-section .swiper-main .swiper-slide-active:hover #img-2,
main .preview-section .swiper-main .swiper-slide-active:active #img-2 {
  opacity: 1;
}
main .preview-section #img-2 {
  width: 225px;
  height: 225px;
  background: url("../img/product-slide.jpg") no-repeat #fff;
  background-size: 150%;
  -webkit-box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.3);
          box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.3);
  pointer-events: none;
  position: absolute;
  opacity: 0;
  border: 4px solid whitesmoke;
  z-index: 99;
  border-radius: 100%;
  display: block;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
main .preview-section .swiper-main-pagination {
  position: relative;
  z-index: 1;
}
main .preview-section .swiper-main-pagination .swiper-pagination-bullet {
  position: relative;
  background: #0d6efd;
}
@media (max-width: 770px) {
  main .preview-section .sliders_wrapper {
    height: 351px;
  }
}
main .preview-section .product_info {
  background: white;
  border-radius: 1.9em;
}
main .preview-section .product_info .copy-btn {
  border: none;
  background: none;
}
main .preview-section .product_info .copy-btn p {
  color: #5a5a5a;
}
main .preview-section .product_info h1 {
  font-weight: 600;
  line-height: 1;
  color: #101a33;
  font-size: 2em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  box-orient: vertical;
}
main .preview-section .product_info .category {
  font-weight: 300;
  color: #7c7c7c;
}
main .preview-section .product_info .price {
  font-size: 2em;
  font-weight: 700;
}
main .preview-section .product_info .colors-block {
  font-size: 1.25em;
  font-weight: 500;
  color: #5a5a5a;
}
main .preview-section .product_info .colors-block .color_wrapper {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
main .preview-section .product_info .colors-block .color_wrapper .color {
  border-radius: inherit;
  width: 100%;
  height: 100%;
  background: initial;
  border: solid white 6px;
}
main .preview-section .product_info .colors-block .color_wrapper:nth-child(2) {
  border: solid rgba(203, 187, 161, 0) 1px;
}
main .preview-section .product_info .colors-block .color_wrapper:nth-child(2) .color {
  background: #cbbba1;
}
main .preview-section .product_info .colors-block .color_wrapper:nth-child(4) {
  border: solid rgba(232, 232, 232, 0) 1px;
}
main .preview-section .product_info .colors-block .color_wrapper:nth-child(4) .color {
  background: #e8e8e8;
}
main .preview-section .product_info .colors-block .color_wrapper:nth-child(6) {
  border: solid rgba(51, 51, 51, 0) 1px;
}
main .preview-section .product_info .colors-block .color_wrapper:nth-child(6) .color {
  background: #333333;
}
main .preview-section .product_info .colors-block input:checked + .color_wrapper:nth-child(2) {
  border: solid #cbbba1 1px;
}
main .preview-section .product_info .colors-block input:checked + .color_wrapper:nth-child(4) {
  border: solid #e8e8e8 1px;
}
main .preview-section .product_info .colors-block input:checked + .color_wrapper:nth-child(6) {
  border: solid #333333 1px;
}
main .preview-section .product_info .show-marketplaces {
  position: relative;
  border-radius: 35px;
  background: #cbbba1;
  font-size: 1.5em;
  color: white;
  font-weight: 500;
  z-index: 4;
}
main .preview-section .product_info .show-marketplaces::after {
  position: absolute;
  right: 10px;
  top: calc(50% - 20px);
  content: "";
  width: 40px;
  height: 40px;
  background: url("../img/svg/arrow-white.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
main .preview-section .product_info .marketplaces-wrapper {
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1019607843);
  overflow: hidden;
  width: 100%;
  background: white;
  height: 0;
  z-index: 3;
  font-size: 1.5em;
  color: #5a5a5a;
  font-weight: 500;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0 0 24px 24px;
  top: calc(100% - 25px);
}
main .preview-section .product_info .availability .marker {
  width: 15px;
  height: 15px;
  background: #4dae4b;
  border-radius: 50%;
}
main .preview-section .counter[type=number]::-webkit-inner-spin-button,
main .preview-section .counter[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
main .preview-section .counter_wrapper {
  height: 38px;
  border: solid #333333 1px;
  border-radius: 20px;
  width: 126px;
}
main .preview-section .counter_wrapper .counter-btn-dec,
main .preview-section .counter_wrapper .counter-btn-inc {
  position: relative;
  background: none;
  font-size: 2em;
}
main .preview-section .counter_wrapper .counter-btn-dec::before,
main .preview-section .counter_wrapper .counter-btn-inc::before,
main .preview-section .counter_wrapper .counter-btn-inc::after {
  position: absolute;
  top: calc(50% - 1px);
  left: calc(50% - 7px);
  content: "";
  width: 15px;
  height: 2px;
  border-radius: 2px;
  background-color: #333333;
}
main .preview-section .counter_wrapper .counter-btn-inc::after {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
main .preview-section .counter_wrapper .counter-btn-non-active::after,
main .preview-section .counter_wrapper .counter-btn-non-active::before {
  background-color: #7c7c7c;
}
main .preview-section .counter_wrapper .counter {
  font-size: 1.2em;
  font-weight: 500;
  color: #333333;
  border: none;
  width: 2.1em;
}
main .preview-section .counter_wrapper .counter:focus {
  outline: none;
}
@media (max-width: 770px) {
  main .preview-section .counter_wrapper {
    height: 30px;
    width: 85px;
  }
  main .preview-section .counter_wrapper .counter-btn-dec .scale-elem,
  main .preview-section .counter_wrapper .counter-btn-inc .scale-elem {
    padding: 0 !important;
  }
  main .preview-section .counter_wrapper .counter-btn-dec::before,
  main .preview-section .counter_wrapper .counter-btn-inc::before,
  main .preview-section .counter_wrapper .counter-btn-inc::after {
    position: absolute;
    top: calc(50% - 1px);
    left: calc(50% - 5px);
    content: "";
    width: 11px;
    height: 2px;
    border-radius: 2px;
    background-color: #333333;
  }
  main .preview-section .counter_wrapper .counter {
    width: 2.1em;
    font-size: 1.2em;
  }
}
@media (max-width: 540px) {
  main .preview-section .counter_wrapper {
    height: 23px;
    width: 77px;
  }
  main .preview-section .counter_wrapper .counter-btn-dec .scale-elem,
  main .preview-section .counter_wrapper .counter-btn-inc .scale-elem {
    padding: 0 !important;
  }
  main .preview-section .counter_wrapper .counter-btn-dec::before,
  main .preview-section .counter_wrapper .counter-btn-inc::before,
  main .preview-section .counter_wrapper .counter-btn-inc::after {
    position: absolute;
    top: calc(50% - 1px);
    left: calc(50% - 4px);
    content: "";
    width: 9px;
    height: 2px;
    border-radius: 2px;
    background-color: #333333;
  }
  main .preview-section .counter_wrapper .counter {
    width: 1.6em;
    font-size: 1em;
  }
}
main .about-section .content {
  background-color: white;
  border-radius: 1.9em;
  padding: 40px;
}
main .about-section .nav-wrapper {
  background: white;
  border-radius: 24px;
}
main .about-section .nav-wrapper .personal-data {
  margin-bottom: 1.25em;
}
main .about-section .nav-wrapper .personal-data .avatar_wrapper {
  min-width: 50px;
  width: 25%;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
main .about-section .nav-wrapper .personal-data .avatar_wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
main .about-section .nav-wrapper .personal-data .name {
  font-size: 1.5em;
  font-weight: 600;
  color: #101a33;
}
main .about-section .nav-wrapper .personal-data .phone {
  font-size: 1.25em;
  color: #989898;
}
main .about-section .nav-wrapper .tab-wrapper .tab-btn {
  background: none;
  padding: 1em 1.25em;
  border: solid transparent 1px;
  border-bottom: solid #c5c5c5 1px;
}
main .about-section .nav-wrapper .tab-wrapper .tab-btn span {
  color: #333333;
  font-weight: 600;
}
main .about-section .nav-wrapper .tab-wrapper:hover .tab-btn {
  border: solid #0d6efd 1px;
  -webkit-box-shadow: 0 0 0 1px #0d6efd;
          box-shadow: 0 0 0 1px #0d6efd;
  border-radius: 0.5em;
}
main .about-section .nav-wrapper .tab-wrapper .tab-btn-active {
  border: solid #0d6efd 1px;
  -webkit-box-shadow: 0 0 0 1px #0d6efd;
          box-shadow: 0 0 0 1px #0d6efd;
  border-radius: 0.5em;
}
main .about-section .nav-wrapper .tab-wrapper .tab-btn-active .img-wrapper {
  margin-right: 1em;
}
main .about-section .nav-wrapper .tab-wrapper .tab-btn-active span {
  color: #0d6efd;
}
main .about-section .nav-wrapper .edit {
  background: none;
  right: 0;
}
main .about-section .list_wrapper {
  background: white;
  border-radius: 1.9em;
}
main .about-section .list_wrapper .list .item_btn-wrapper {
  margin-bottom: 30px;
}
main .about-section .list_wrapper .list .item_btn-wrapper .item_btn {
  background: none;
  color: #101a33;
  font-size: 1.25em;
  font-weight: 600;
  padding: 0.5em 0.7em;
  border: solid transparent 1px;
}
main .about-section .list_wrapper .list .item_btn-wrapper .item_btn:last-child {
  margin-bottom: 0;
}
main .about-section .list_wrapper .list .item_btn-wrapper .item_btn-active {
  padding: 0.5em 0.7em;
  border: solid #0d6efd 1px;
  border-radius: 2.5em;
  text-align: center;
  color: #0d6efd;
}
main .about-section .reviews-content > div:nth-of-type(1) {
  border-bottom: solid #c5c5c5 1px;
}
main .about-section .reviews-content > div:nth-of-type(1) div:nth-of-type(1) h3 {
  font-size: 1.75em;
  font-weight: 700;
}
main .about-section .reviews-content > div:nth-of-type(1) div:nth-of-type(1) span {
  font-size: 1.25em;
  color: #5a5a5a;
}
main .about-section .reviews-content > div:nth-of-type(1) div:nth-of-type(1) p span {
  font-size: 4em;
  font-weight: 700;
  color: #101a33;
}
main .about-section .reviews-content > div:nth-of-type(1) div:nth-of-type(1) .grade_wrapper {
  max-width: 130px;
  margin-left: 1.25em;
}
main .about-section .reviews-content > div:nth-of-type(1) div:nth-of-type(1) .grade_wrapper .review {
  font-size: 0.9em;
  color: #7c7c7c;
}
main .about-section .reviews-content > div:nth-of-type(1) ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
main .about-section .reviews-content > div:nth-of-type(1) ul li span {
  width: 1em;
}
main .about-section .reviews-content > div:nth-of-type(1) ul li .line {
  height: 6px;
  border-radius: 3px;
  width: 100%;
  background: #e4e4e4;
}
main .about-section .reviews-content > div:nth-of-type(1) ul li .line .filling {
  height: inherit;
  border-radius: inherit;
  width: 70%;
  background: #ffb904;
}
main .about-section .make-review {
  width: 250px;
}
main .about-section .make-review h5 {
  font-size: 1.4em;
  font-weight: 600;
}
main .about-section .make-review p {
  font-size: 1.25em;
  color: #7c7c7c;
}
main .about-section .make-review button {
  width: 100%;
  background: none;
  border: solid #0d6efd 1px;
  border-radius: 1.9em;
}
main .about-section .make-review button p {
  font-weight: 500;
  color: #0d6efd;
}
main .about-section .make-review button div {
  height: 100%;
}
main .about-section .make-review button div img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}
main .about-section .comments {
  border-bottom: none !important;
}
main .about-section .comments .comment {
  border-bottom: solid #c5c5c5 1px;
  padding-bottom: 1.25em;
}
main .about-section .comments .comment .name {
  font-size: 1.5em;
  font-weight: 600;
}
main .about-section .comments .comment .date {
  color: #7c7c7c;
}
main .about-section .comments .comment .comment-text {
  color: #101a33;
  font-size: 1.25em;
}
main .about-section .comments .shoeMore {
  font-size: 1.25em;
  color: #0d6efd;
  background: none;
}
@media (max-width: 770px) {
  main .about-section .make-review {
    width: auto;
  }
}
main .about-section .characteristics-content h3 {
  color: #101a33;
  font-weight: 700;
}
main .about-section .characteristics-content .characteristics-title {
  width: 200px;
  font-size: 1em;
  color: #101a33;
  font-weight: 600;
}
main .about-section .characteristics-content ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
main .about-section .characteristics-content ul li {
  font-size: 1em;
  color: #5a5a5a;
  border-bottom: solid #c5c5c5 1px;
}
main .about-section .characteristics-content ul li .value {
  font-weight: 500;
}
main .about-section .characteristics-content .showMore {
  color: #0d6efd;
  background: none;
  font-size: 1.4em;
}
main .about-section .warranty-content h3 {
  font-weight: 700;
  color: #101a33;
}
main .about-section .warranty-content p {
  font-size: 1em;
  color: #474747;
}
main .about-section .warranty-content p b {
  font-weight: 600;
}
main .about-section .warranty-content .remark {
  font-size: 0.9em;
  color: #7c7c7c;
}
main .about-section h3 {
  font-size: 1.75em;
  font-weight: 600;
  color: #101a33;
}
main .about-section .method {
  max-width: 236px;
}
main .about-section .method h5 {
  color: #101a33;
  font-size: 1.25em;
  font-weight: 600;
}
main .about-section .method p {
  font-size: 1em;
  color: #7c7c7c;
}
main .about-section .map {
  max-width: 506px;
  width: 25%;
}
main .about-section .map div {
  width: 100%;
  height: 100%;
  background: url("../img/FakeMap.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
main .about-section .return_conditions h5,
main .about-section .return_conditions p {
  font-size: 1.25em;
  color: #474747;
}
main .about-section .return_conditions h5,
main .about-section .return_conditions b {
  font-size: 1.26em;
  font-weight: 600;
}
main .about-section .return_conditions ol li::marker {
  font-size: 1.26em;
}
main .about-section .error-content h2 {
  font-size: 2em;
  font-weight: 600;
}
main .about-section .error-content p {
  font-size: 1.3em;
  color: #7c7c7c;
}

@media (max-width: 770px) {
  main .about-section .content {
    padding: 20px;
  }
}