/*@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy.eot");
  src: url("../fonts/Gilroy.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy.woff") format("woff"), url("../fonts/Gilroy.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
}*/
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Medium.eot");
  src: url("../fonts/Gilroy-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-Medium.woff") format("woff"), url("../fonts/Gilroy-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-SemiBold.eot");
  src: url("../fonts/Gilroy-SemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-SemiBold.woff") format("woff"), url("../fonts/Gilroy-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Bold.eot");
  src: url("../fonts/Gilroy-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-Bold.woff") format("woff"), url("../fonts/Gilroy-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
}
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  display: block;
}
body {
  margin: 0;
  padding: 0;
  color: #000;
  font-size: 15px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.3;
  font-family: "Gilroy", sans-serif;
  background-color: #fff;

}
img {
  display: block;
  width: 100%;
  height: auto;
}
a {
  color: #000;
  text-decoration: none;
}
li {
  list-style-type: none;
}
input,
button,
textarea {
  display: block;
  font-family: "Gilroy", sans-serif;
  background-color: transparent;
  border: 0 none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  resize: none;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-apparance: none;
  appearance: none;
}
input[type='number'] {
  -moz-appearance: textfield;
  appearance: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  display: none;
  -webkit-apparance: none;
  appearance: none;
}
fieldset {
  border: 0 none;
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background-color: #DEE2E6;
  border-radius: 4px;
}
/* Null. */
.bone {
  width: 100%;
  max-width: 1248px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media only screen and (max-width: 768px) {
  .bone {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.breadcrumbs {
  margin-top: 12px;
}
.breadcrumbs ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  position: relative;
  line-height: 24px;
  font-size: 13px;
}
.breadcrumbs ul:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 16px;
  margin-top: calc(16px / -2);
  top: 10px;
  background-image: url('../images/icon/home.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.breadcrumbs li {
  position: relative;
  padding-left: 8px;
  white-space: nowrap;
}
.breadcrumbs li:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 4px;
  margin-top: calc(4px / -2);
  background-size: contain;
  background-color: #DEE2E6;
  border-radius: 50%;
}
.breadcrumbs li:first-child {
  margin-left: 20px;
}
.breadcrumbs li + li {
  margin-left: 4px;
}
.breadcrumbs li a {
  padding-bottom: 2px;
  color: #9FA2A1;
  border-bottom: 1px dotted transparent;
  transition: all 0.23s;
}
.breadcrumbs li a:hover,
.breadcrumbs li a:focus {
  color: #165DED;
  border-bottom-color: #165DED;
}
.breadcrumbs li div {
  color: #165DED;
  font-weight: 500;
}
.slider {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  margin-top: 16px;
}
@media only screen and (max-width: 768px) {
  .slider {
    display: none;
  }
}
.slider div + div {
  margin-left: 24px;
}
.slider_item {
  overflow: hidden;
  width: 72px;
  height: 72px;
  border: 1px solid transparent;
  transition: border 0.23s;
  cursor: pointer;
}
@media only screen and (max-width: 900px) {
  .slider_item {
    width: 40px;
    height: 40px;
  }
}
.slider_item.active,
.slider_item:hover {
  border-color: rgba(22, 93, 237, 0.5);
  border-radius: 5px;
}
.slider_arrow {
  width: 20px;
  height: 20px;
  background-image: url('../images/icon/arrow.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
  transition: transform 0.23s;
}
.slider_arrow:hover {
  transform: scale(1.2);
}
.slider_arrow.arrow-next {
  transform: rotate(200grad);
}
.slider_arrow.arrow-next:hover {
  transform: scale(1.2) rotate(200grad);
}
.calc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  font-size: 0;
}
.calc input {
  flex-grow: 1;
}
.calc input,
.calc button {
  display: inline-block;
  width: 60px;
  font-size: 19px;
  font-weight: 600;
  text-align: center;
  line-height: 38px;
  cursor: pointer;
  border: 1px solid #DEE2E6;
  transition: all 0.23s;
}
.calc input + input,
.calc button + input,
.calc input + button,
.calc button + button {
  margin-left: -1px;
}
.calc input:nth-child(1),
.calc button:nth-child(1) {
  border-radius: 5px 0 0 5px;
}
.calc input:nth-child(2),
.calc button:nth-child(2) {
  width: 52px;
}
.calc input:nth-child(3),
.calc button:nth-child(3) {
  border-radius: 0 5px 5px 0;
}
.calc input:hover,
.calc button:hover,
.calc input:focus,
.calc button:focus {
  border-color: #165DED;
  color: #165DED;
}
.calc input:hover + input,
.calc button:hover + input,
.calc input:focus + input,
.calc button:focus + input,
.calc input:hover + button,
.calc button:hover + button,
.calc input:focus + button,
.calc button:focus + button {
  border-left-color: transparent;
}
.calc input:active,
.calc button:active {
  border-color: #165DED;
}
.calc.inactive input,
.calc.inactive button {
  color: #9FA2A1 !important;
  cursor: no-drop;
  border-color: #DEE2E6 !important;
}
.calc.inactive button {
  background-color: #F7F7F7 !important;
}
.button {
  position: relative;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 38px;
  background-color: #165DED;
  border: 1px solid #165DED;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.23s;
}
button:disabled{
  opacity: 0.6;
  cursor: not-allowed;
}
a.button{
  display: block;
}
.button:hover,
.button:focus {
  border-color: #255AC7;
  background-color: #255AC7;
}
.load .button {
  border-color: #165DED !important;
  background-color: #165DED !important;
}
.load .button:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 28px;
  height: 28px;
  margin-top: calc(28px / -2);
  background-size: contain;
  left: 50%;
  margin-left: -14px;
  background-image: url('../images/icon/load.png');
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  animation: loadss 1s infinite linear;
}
.load .button:after {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-color: rgba(255, 255, 255, 0.8);
  background-color: rgba(255, 255, 255, 0.8);
}
.inactive .button {
  color: #9FA2A1;
  background-color: #DEE2E6 !important;
  border-color: #DEE2E6 !important;
  cursor: no-drop;
}
.checked .button {
  border-color: #3DBB53 !important;
  background-color: #3DBB53 !important;
}
.checked .button:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 12px;
  margin-top: calc(12px / -2);
  left: 50%;
  margin-left: -88px;
  background-image: url('../images/icon/checked.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.mail .button {
  color: #165DED;
  background-color: transparent !important;
}
.mail .button:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 16px;
  margin-top: calc(16px / -2);
  left: 50%;
  margin-left: -100px;
  background-image: url('../images/icon/bell.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@keyframes loadss {
  100% {
    transform: rotate(400grad);
  }
}
.feetback {
  margin-top: 80px;
  background-color: #F7F7F7;
}
.feetback_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 20px;
  padding-bottom: 20px;
}
.feetback_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 900px) {
  .feetback_wrapper {
    width: 100%;
  }
}
.feetback_label {
  font-size: 24px;
  font-weight: 600;
  white-space: nowrap;
}
@media only screen and (max-width: 600px) {
  .feetback_label {
    width: 100%;
  }
}
.feetback_text {
  margin-left: 24px;
  padding-left: 24px;
  font-size: 13px;
  line-height: 24px;
  border-left: 1px solid #9FA2A1;
}
@media only screen and (max-width: 600px) {
  .feetback_text {
    width: 100%;
    margin-top: 16px;
    margin-left: 0;
    padding-left: 0;
    border-left: 0 none;
  }
}
.feetback_form {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-grow: 1;
  max-width: 368px;
  margin-left: 28px;
}
@media only screen and (max-width: 900px) {
  .feetback_form {
    width: 100%;
    margin-top: 24px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 600px) {
  .feetback_form {
    margin-left: 0;
  }
}
.feetback_form input {
  width: 100%;
  height: 40px;
  padding: 0 14px;
  line-height: 38px;
  background-color: #fff;
  border: 1px solid #165DED;
  border-right: 0 none;
  border-radius: 5px 0 0 5px;
}
.feetback_form button {
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 0 5px 5px 0;
}
.footer {
  padding: 24px 24px 0;
  background-color: #0C1A30;
}
@media only screen and (max-width: 768px) {
  .footer {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.footer_flex {
  width: 100%;
  max-width: 1224px;
  margin: -12px auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 32px;
  color: #fff;
  line-height: 20px;
}
@media only screen and (max-width: 900px) {
  .footer_flex {
    flex-wrap: wrap;
  }
}
.footer_block {
  width: 100%;
  max-width: calc(100% / 3 - 24px);
  min-width: 25%;
  margin: 12px;
}
@media only screen and (max-width: 900px) {
  .footer_block {
    width: calc(100% / 2 - 24px) !important;
    max-width: none !important;
  }
  .footer_block.social {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100% !important;
  }
  .footer_block.social > div {
    width: calc(100% / 2 - 12px);
  }
}
@media only screen and (max-width: 600px) {
  .footer_block {
    width: 100% !important;
  }
  .footer_block.social {
    flex-direction: column;
  }
  .footer_block.social > div {
    width: 100%;
  }
}
.footer_label {
  width: 100%;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 600;
}
.footer li,
.footer a {
  font-size: 15px;
  color: #fff;
}
.footer li + li {
  margin-top: 12px;
}
.footer .info li,
.footer .info a {
  color: #9FA2A1;
}
.footer .info li:hover,
.footer .info a:hover,
.footer .info li:focus,
.footer .info a:focus {
  border-color: #9FA2A1;
}
.footer .info li:active,
.footer .info a:active {
  border-color: #9FA2A1;
  border-bottom-style: solid;
}
.footer a {
  border-bottom: 1px dotted transparent;
  transition: border 0.23s;
}
.footer a:hover,
.footer a:focus {
  border-color: #fff;
}
.footer a:active {
  border-color: #fff;
  border-bottom-style: solid;
}
.footer .nav {
  width: 260px;
  min-width: 260px;
}
.footer .nav .footer_wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.footer .nav .footer_wrapper ul + ul {
  margin-left: 32px;
}
@media only screen and (max-width: 600px) {
  .footer .nav .footer_wrapper ul + ul {
    margin-left: 0;
  }
}
.footer_social {
  display: inline-block;
  position: relative;
  margin-left: 32px;
  margin-bottom: 24px;
  font-weight: 500;
}
.footer_social + .footer_social {
  margin-left: 60px;
}
.footer_social:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  margin-top: calc(24px / -2);
  background-size: contain;
  left: -32px;
}
.footer_social.in:before {
  background-image: url('../images/icon/in.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.footer_social.vb:before {
  background-image: url('../images/icon/viber.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.footer_social.wa:before {
  background-image: url('../images/icon/wa.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.footer_bottom {
  margin: 0 -24px;
  font-size: 13px;
  background-color: #465160;
}
.footer_bottom_flex {
  width: 100%;
  max-width: 1248px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 8px 24px;
}
@media only screen and (max-width: 600px) {
  .footer_bottom {
    justify-content: center;
  }
  .footer_bottom p {
    margin-top: 8px;
  }
}
@media only screen and (max-width: 768px) {
  .footer_bottom {
    margin: 0 -16px;
    padding: 8px 16px;
  }
}
.footer_bottom a {
  color: #fff;
}
.footer_bottom p {
  color: #9FA2A1;
}
.min_footer .footer_block {
  max-width: calc(100% / 2 - 24px);
}
.min_footer .footer_block.social {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media only screen and (max-width: 900px) {
  .min_footer .footer_block.social {
    display: block;
    width: 212px !important;
  }
}
.min_footer .footer_block.social .social_wrapper {
  width: 100%;
}
.min_footer .footer_block.info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media only screen and (max-width: 1200px) {
  .min_footer .footer_block.info {
    flex-grow: 1;
    justify-content: flex-start;
  }
  .min_footer .footer_block.info ul a {
    display: block;
  }
  .min_footer .footer_block.info ul + ul {
    margin-left: 24px;
  }
}
.min_footer .footer_block.info .footer_label {
  width: 100%;
}
.header_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  width: 100%;
  max-width: 1248px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .header_top {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.header_logo {
  min-width: 172px;
}
.header_right {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header_right ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: 15px;
}
@media only screen and (max-width: 768px) {
  .header_right ul {
    display: none;
  }
  .header_right li a{
    font-size: 13px;
  }
}
.header_right ul li + li {
  margin-left: 32px;
}
.header_right ul a {
  font-size: 15px;
  font-weight: 500;
  line-height: 14px;
}
.header_right > a {
  margin-left: 40px;
  color: #9FA2A1;
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}
@media only screen and (max-width: 900px) {
  .header_right > a {
    display: none;
  }
}
.header_info {
  background-color: #165DED;
}
.header_info_flex {
  width: 100%;
  max-width: 1248px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  padding: 0 24px;
  color: #fff;
}
.header_info_button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 217px;
  height: 100%;
  padding: 0 15px;
  background-color: #255AC7;
  cursor: pointer;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .header_info_button {
    width: 52px;
  }
}
.header_info_button_burger {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-direction: column;
  width: 16px;
  height: 12px;
  transition: margin 0.23s;
}
.header_info_button_burger span {
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.23s;
}
.header_info_button_text {
  margin-left: 12px;
  font-size: 16px;
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  .header_info_button_text {
    display: none;
  }
}
.header_info_button:hover .header_info_button_burger {
  margin-left: 6px;
  margin-right: -6px;
}
.header_info_button:hover .header_info_button_burger span:nth-child(1) {
  -webkit-transform: rotate(50grad) translateY(7px);
  transform: rotate(50grad) translateY(7px);
}
.header_info_button:hover .header_info_button_burger span:nth-child(2) {
  opacity: 0;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
.header_info_button:hover .header_info_button_burger span:nth-child(3) {
  -webkit-transform: rotate(-50grad) translateY(-7px);
  transform: rotate(-50grad) translateY(-7px);
}
.header_info_search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
  margin-left: 24px;
  margin-right: 40px;
}
.header_info_search form {
  width: 100%;
  max-width: 560px;
  position: relative;
}
.header_info_search input {
  width: 100%;
  padding-left: 16px;
  padding-right: 52px;
  line-height: 36px;
  background-color: #fff;
  border-radius: 5px;
}
@media only screen and (max-width: 768px) {
  .header_info_search input {
    display: none;
  }
}
.header_info_favorite {
  width: 20px;
  height: 20px;
  margin-left: 20px;
  background-image: url('../images/icon/star-w.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: none;
}
@media only screen and (max-width: 768px) {
  .header_info_favorite {
    width: 30px;
    height: 30px;
    margin-right: 32px;
    background-image: url('../images/icon/star-checked.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
}
.header_info_cart {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  height: 100%;
  padding: 0 20px;
  background-color: #255AC7;
}
.header_info_cart > span {
  position: absolute;
  top: 0;
  left: 46px;
  padding: 6px 2px 0;
  font-size: 13px;
  background-color: #F52020;
}
.header_info_cart_img {
  width: 20px;
  height: 20px;
  background-image: url('../images/icon/cart.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.header_info_cart_right {
  margin-left: 28px;
}
.header_info_cart_txt {
  font-size: 13px;
}
.header_info_cart_price {
  position: relative;
  margin-top: 4px;
  padding-right: 12px;
  font-size: 15px;
  font-weight: 600;
}
@media only screen and (max-width: 768px){
  .header_info_cart_price{
    font-size: 12px;
  }
}
.header_info_cart_price:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  margin-top: calc(8px / -2);
  left: auto;
  right: 0;
  background-image: url('../images/icon/arrow-more_w.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.header .search_button {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background-image: url('../images/icon/search.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .header .search_button {
    display: block;
    position: static;
    width: 24px;
    height: 24px;
    margin-top: 1px;
  }
}
.min_header {
  border-bottom: 1px solid #DEE2E6;
}
.min_header_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
}
@media only screen and (max-width: 600px) {
  .min_header_flex {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media only screen and (max-width: 375px) {
  .min_header_logo {
    max-width: 120px;
  }
}
.min_header_tel {
  color: #9FA2A1;
  font-size: 18px;
  font-weight: 700;
}
.select {
  position: relative;
  font-size: 13px;
}
.select.active .select_info:before {
  transform: rotate(-200grad);
}
.select.active .select_wrapper {
  display: block;
}
.select_info {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding-right: 16px;
  color: #000;
  cursor: pointer;
}
.select_info:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 4px;
  margin-top: calc(4px / -2);
  left: auto;
  right: 0;
  background-image: url('../images/icon/arrow-more_black.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.23s;
}
.select span {
  font-weight: 700;
}
.select_wrapper {
  /*display: none;*/
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0;
  padding: 4px 0;
  background-color: #F0F1F1;
  border-radius: 0;
  /*box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.15);*/
  z-index: 99;
}
.catalog_block .select_wrapper{
  display: none;
  z-index: 2;
}
.select_wrapper ul{
  padding: 0;
  display: none;
  width: 220px;
}
.select_wrapper ul li{

  /*margin-bottom: 5px;*/
  padding-left: 13px;
  min-height: 28px;
  display: flex;
  align-items: center;
  margin-top: 8px;
  margin-bottom: 8px;
  position: relative;

}
.select_wrapper ul li:after{
  content: ' ';
  display: inline-block;
  background-image: url("../images/icon/chevron-right.svg");
  background-repeat: no-repeat;
  height: 16px;
  width: 16px;
  position: absolute;
  right: 10px;
  top: 6px;
}
.select_wrapper ul li.noBg:after{
  background-image: unset;
}
.container_cat_mob ul li.noBg:after{
  background-image: unset;
}
.select_wrapper_catalog_2lv ul li:after{
  content: ' ';
  background-image: unset;
}
.select_wrapper ul li a{
  display: block;
  font-size: 15px !important;
  /*border:1px solid red;*/
}
body .select_wrapper ul li a{
  font-size: 15px !important;
}
.select_wrapper ul li:hover,
.select_wrapper ul li.active{
  background: #ffffff;
}
.select_wrapper ul li a:hover,
.select_wrapper ul li.active a{
  color: #165DED;
}
.select_wrapper ul li span{
  color: #000;
  opacity: 0.7;
  cursor: text;
}
.select_wrapper_catalog.active{
  top:50px;
  display: flex;
  padding: 15px;

}
.select_wrapper ul li ul{
  /*display: none;*/
  position: absolute;
  left: 0;
  z-index: -1;
  background: #ffffff;

  /*top: 100%;*/
}
.select_wrapper_catalog_2lv{
  /*border:1px solid red;*/
  display: none;
  position: absolute;
  min-height: 351px;
  width: 280px;
  top: 0;
  left: 217px;
  background: #fff;
  overflow-y: auto;
}
.select_wrapper_catalog_2lv ul li{
  border:1px solid transparent;
}
.select_wrapper_catalog_2lv a{
  border:1px solid transparent;
  display: block;
  width: 100%;
}
@media only screen and (max-width: 768px){
  .select_wrapper_catalog.active{
    left: 0;
    background: #fff;
    width: 500%;
  }
}
.select_wrapper_catalog.active ul li{
  margin-bottom: 8px;
}
.select_option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px;
  white-space: nowrap;
  cursor: pointer;
}
.select_option:hover {
  background-color: #DEE2E6;
}
.range {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background-color: #DEE2E6;
}
.range_pin {
  position: relative;
  min-width: 24px;
  height: 24px;
  background-color: #fff;
  border: 1px solid #DEE2E6;
  border-radius: 50%;
  cursor: pointer;
}
.range_track {
  flex-grow: 1;
  height: 8px;
  margin-left: -12px;
  margin-right: -12px;
  background-color: #165DED;
}
.catalog_page ul {
  width: 100%;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 600px) {
  .catalog_page ul {
    margin-top: 24px;
  }
}
.catalog_page ul li {
  width: 40px;
  height: 40px;
  line-height: 40px;
}
@media only screen and (max-width: 600px) {
  .catalog_page ul li {
    width: 32px;
    height: 32px;
    line-height: 32px;
  }
}
.catalog_page ul li + li {
  margin-left: 12px;
}
.catalog_page ul .page_link {
  display: block;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  border: 1px solid transparent;
  border-radius: 50%;
  transition: all 0.23s;
}
.catalog_page ul .page_link:hover {
  border-color: #165DED;
}
.catalog_page ul .page_link.active {
  color: #165DED;
  border-color: #165DED;
}
.catalog_page ul .page_link:active {
  color: #fff;
  background-color: #165DED;
  border-color: #165DED;
}
.catalog_page ul .page_arrow{
  background-image: url('../images/icon/arrow-prew.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-size: 28px;
  cursor: pointer;
  height: 28px;

}
.catalog_page ul .page_arrow a{
  width: 28px;
  display: inherit;
  height: 28px;

}
@media only screen and (max-width: 600px) {
  .catalog_page ul .page_arrow {
    background-size: 20px;
  }
}
.catalog_page ul .page_arrow.next {
  transform: rotate(200grad);
}
.thank {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 60px;
  margin-bottom: 152px;
}
@media only screen and (max-width: 800px) {
  .thank {
    padding-top: 0;
    flex-wrap: wrap;
  }
}
.thank_left {
  width: 100%;
  max-width: 812px;
  border: 1px solid #DEE2E6;
  border-radius: 5px;
}
@media only screen and (max-width: 800px) {
  .thank_left {
    max-width: none;
    border: 0 none;
  }
}
.thank_right {
  width: 100%;
  max-width: 368px;
  min-width: 304px;
  margin-left: 24px;
  box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
}
@media only screen and (max-width: 800px) {
  .thank_right {
    max-width: none;
    margin-top: 24px;
    margin-left: 0;
  }
}
.thank_title {
  font-size: 24px;
  font-weight: 600;
  padding: 16px 24px;
  border-bottom: 1px solid #DEE2E6;
}
@media only screen and (max-width: 800px) {
  .thank_title {
    padding-left: 0;
    padding-right: 0;
    border-bottom: 0 none;
  }
  .thank_title br {
    display: block !important;
  }
}
.thank_title br {
  display: none;
}
.thank ul {
  padding: 20px 24px;
}
@media only screen and (max-width: 800px) {
  .thank ul {
    padding: 0;
  }
}
.thank ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 800px) {
  .thank ul li {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
.thank ul li .thank_li_left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 60%;
}
@media only screen and (max-width: 800px) {
  .thank ul li .thank_li_left {
    width: 100%;
  }
}
.thank ul li + li {
  margin-top: 16px;
}
.thank_img {
  width: 48px;
  min-width: 48px;
  height: 48px;
}
@media only screen and (max-width: 800px) {
  .thank_img {
    width: 72px;
    min-width: 72px;
    height: 72px;
  }
}
.thank_name {
  margin-left: 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  overflow: hidden;
  display: -moz-box;
  display: -webkit-box;
  text-overflow: ellipsis;
  -moz-box-orient: vertical;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  box-orient: vertical;
}
@media only screen and (max-width: 800px) {
  .thank_name {
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
}
.thank_num {
  margin-left: 24px;
  color: #9FA2A1;
  font-size: 13px;
  text-align: center;
}
.thank_num span {
  display: block;
  color: #000;
}
@media only screen and (max-width: 800px) {
  .thank_num {
    order: 1;
    margin-top: 12px;
  }
}
.thank_price {
  min-width: 88px;
  margin-left: 24px;
  font-size: 18px;
  font-weight: 700;
}
.thank_price span {
  font-size: 15px;
}
@media only screen and (max-width: 800px) {
  .thank_price {
    margin-top: 12px;
    margin-left: 96px;
  }
}
.thank_info {
  padding: 12px 20px;
  border-bottom: 1px solid #DEE2E6;
  font-size: 13px;
}
.thank_info_li + .thank_info_li {
  margin-top: 16px;
}
.thank_info_li-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.thank_info_li-flex .thank_info_text {
  margin-top: 0;
  text-align: right;
}
.thank_info_label {
  color: #9FA2A1;
}
.thank_info_text {
  margin-top: 8px;
}
.delivery {
  padding: 20px 0;
  background-color: #F7F7F7;
}
.delivery_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 900px) {
  .delivery_flex {
    align-items: flex-start;
    flex-direction: column;
  }
}
.delivery_li {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 900px) {
  .delivery_li + .delivery_li {
    margin-top: 24px;
  }
}
.delivery_txt {
  margin-left: 16px;
}
.delivery_title {
  font-size: 16px;
  font-weight: 600;
}
.delivery_text {
  margin-top: 4px;
  color: #9FA2A1;
  font-size: 13px;
}
.del h1 {
  margin-top: 24px;
  font-size: 24px;
  font-weight: 600px;
}
@media only screen and (max-width: 600px) {
  .del h1 {
    font-size: 18px;
  }
}
.del_block {
  display: flex;
  align-items: stretch;
  margin-top: 12px;
  padding: 32px 28px;
  border: 1px solid #DEE2E6;
}
@media only screen and (max-width: 900px) {
  .del_block {
    flex-direction: column;
    padding: 24px 16px;
  }
}
.del_block + .del_block {
  margin-top: 32px;
}
.del_block_info {
  padding-right: 32px;
}
@media only screen and (max-width: 900px) {
  .del_block_info {
    padding: 0;
  }
}
.del_block_title {
  font-size: 18px;
  font-weight: 600;
}
.del_block ul {
  margin-top: 20px;
}
.del_block ul li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.6;
}
.del_block ul li:before {
  content: '';
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #165DED;
  border-radius: 50%;
}
.del_block_time {
  margin-top: 24px;
  font-weight: 600;
}
.del_block_time_li {
  line-height: 24px;
}
.del_block_time_li:first-child {
  margin-top: 12px;
}
.del_block_pozor {
  margin-top: 24px;
  color: #F52020;
  font-weight: 600;
}
.del_block p {
  margin-top: 12px;
  line-height: 24px;
}
.del_block_map {
  min-width: 50%;
  margin: -32px -28px -32px 0;
}
@media only screen and (max-width: 900px) {
  .del_block_map {
    margin: 0 -16px -24px -16px;
  }
}
.del_block_map img {
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  object-position: center;
  transition: height 0.23s;
}
@media only screen and (max-width: 900px) {
  .del_block_map img {
    height: 0;
    min-height: 0;
  }
}
.del_block_map_mobile {
  height: 100%;
}
.del_block_map_mobile span {
  display: none;
  position: relative;
  margin-top: 16px;
  margin-bottom: 12px;
  padding-right: 12px;
  color: #165DED;
  padding: 0 16px;
  cursor: pointer;
}
@media only screen and (max-width: 900px) {
  .del_block_map_mobile span {
    display: inline-block;
  }
}
.del_block_map_mobile span:before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  background-image: url('../images/icon/arrow-more.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: transform 0.23s;
}
.del_block_map_mobile input:checked + span:before {
  transform: rotate(200grad);
}
.del_block_map_mobile input:checked ~ img {
  height: 100%;
}
.checkout {
  margin-bottom: 152px;
}
.checkout_wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 20px;
}
@media only screen and (max-width: 900px) {
  .checkout_wrapper {
    flex-wrap: wrap;
  }
}
.checkout_left {
  width: 100%;
  max-width: 812px;
  min-width: 600px;
  border-radius: 5px;
}
@media only screen and (max-width: 900px) {
  .checkout_left {
    max-width: none;
    min-width: 0;
    border: 0 none;
  }
}
.checkout_right {
  position: sticky;
  top: 40px;
  width: 100%;
  max-width: 368px;
  min-width: 220px;
  margin-left: 24px;
  box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
}
@media only screen and (max-width: 900px) {
  .checkout_right {
    max-width: none;
    margin-top: 24px;
    margin-left: 0;
  }
}
.checkout_back {
  display: block;
  width: 100%;
  margin-top: 12px;
  color: #165DED;
  font-size: 13px;
  font-weight: 500;
}
.checkout_info {
  padding: 12px 20px;
  border-bottom: 1px solid #DEE2E6;
  font-size: 13px;
}
.checkout_info_li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.checkout_info_li + .checkout_info_li {
  margin-top: 16px;
}
.checkout_info_label {
  color: #9FA2A1;
}
.checkout_info_text {
  text-align: right;
}
.checkout_info_text.red {
  color: #F52020;
}
.checkout_title {
  margin-top: 24px;
  font-size: 24px;
  font-weight: 600;
}
.checkout_form {
  margin-top: 8px;
  padding: 20px 24px;
  border: 1px solid #F7F7F7;
  border-radius: 5px;
}
@media only screen and (max-width: 600px) {
  .checkout_form {
    margin-top: 24px;
    padding: 0;
    border: 0 none;
  }
}
.checkout_form_top {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  margin: -12px;
}
@media only screen and (max-width: 600px) {
  .checkout_form_top {
    flex-wrap: wrap;
  }
}
.checkout_form_top_li {
  margin: 12px;
}
@media only screen and (max-width: 375px) {
  .checkout_form_top_li {
    width: 100%;
  }
}
.checkout_form input:checked + .checkout_form_delivery {
  background-color: rgba(218, 230, 255, 0.5);
  border-color: #165DED;
}
.checkout_form input:checked + .checkout_form_delivery:before {
  opacity: 1;
}
.checkout_form_delivery {
  display: block;
  position: relative;
  width: 172px;
  height: 152px;
  padding: 16px 4px 40px;
  text-align: center;
  border: 1px solid #DEE2E6;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.23s;
}
@media only screen and (max-width: 600px) {
  .checkout_form_delivery {
    width: 152px;
  }
}
@media only screen and (max-width: 375px) {
  .checkout_form_delivery {
    width: 100%;
  }
}
.checkout_form_delivery:hover {
  background-color: rgba(218, 230, 255, 0.5);
  border-color: #165DED;
}
.checkout_form_delivery:before {
  content: '';
  position: absolute;
  top: -12px;
  left: auto;
  right: -12px;
  width: 24px;
  height: 24px;
  opacity: 0;
  background-color: #165DED;
  background-image: url('../images/icon/checked.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-size: 10px;
  border-radius: 50%;
  transition: opacity 0.23s;
}
.checkout_form_delivery_name {
  color: #165DED;
  font-size: 15px;
  font-weight: 500;
}
.checkout_form_delivery_info {
  margin-top: 8px;
  color: #9FA2A1;
  font-size: 13px;
}
.checkout_form_delivery_price {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  font-size: 18px;
  font-weight: 600;
}
.checkout_form_inputs {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.checkout_form_input {
  width: 100%;
  max-width: 320px;
}
@media only screen and (max-width: 600px) {
  .checkout_form_input {
    max-width: none;
  }
}
.checkout_form_textarea {
  width: 100%;
}
.checkout_form_textarea textarea {
  min-height: 128px;
  padding-top: 8px !important;
  line-height: 20px !important;
}
.checkout_form_input,
.checkout_form_textarea {
  position: relative;
  margin-top: 20px;
}
.checkout_form_input input,
.checkout_form_textarea input,
.checkout_form_input textarea,
.checkout_form_textarea textarea {
  width: 100%;
  height: 38px;
  padding: 0 16px;
  font-size: 13px;
  line-height: 38px;
  border: 1px solid #DEE2E6;
  border-radius: 5px;
}
.checkout_form_input input:placeholder,
.checkout_form_textarea input:placeholder,
.checkout_form_input textarea:placeholder,
.checkout_form_textarea textarea:placeholder {
  color: #9FA2A1;
}
.checkout_form_input span,
.checkout_form_textarea span {
  visibility: hidden;
  position: absolute;
  top: -8px;
  left: 14px;
  color: #9FA2A1;
  font-size: 13px;
  background-color: #fff;
  opacity: 0;
  transition: all 0.23s;
}
.checkout_form_input.checked span,
.checkout_form_textarea.checked span {
  visibility: visible;
  opacity: 1;
}
.basket {
  padding: 0 24px 20px;
  border: 1px solid #DEE2E6;
}
@media only screen and (max-width: 600px) {
  .basket {
    padding-left: 0;
    padding-right: 0;
    border: 0 none;
  }
}
.basket_title {
  font-size: 24px;
  font-weight: 600;
  margin: 0 -24px;
  padding: 16px 24px;
  border-bottom: 1px solid #DEE2E6;
}
@media only screen and (max-width: 600px) {
  .basket_title {
    margin: 0;
    padding-left: 0;
    padding-right: 0;
    border-bottom: 0 none;
  }
}
.basket_min {
  width: 100%;
  margin-top: 16px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  line-height: 72px;
  background-color: #DEE2E6;
  border-radius: 5px;
  display: none;
}

@media only screen and (max-width: 600px) {
  .basket_min {
    width: auto;
    padding: 12px 0;
    margin: 0 -16px;
    font-size: 16px;
    line-height: 24px;
    display: none;
  }
}
.basket_li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}
@media only screen and (max-width: 600px) {
  .basket_li {
    flex-wrap: wrap;
  }
}
.basket_li > * {
  margin-left: 24px;
}
.basket_img {
  width: 48px;
  min-width: 48px;
  margin-left: 0;
  height: 48px;
}
@media only screen and (max-width: 600px) {
  .basket_img {
    width: 72px;
    min-width: 72px;
    height: 72px;
  }
}
@media only screen and (max-width: 600px) {
  .basket_info {
    width: calc(100% - 96px);
  }
}
.basket_info_text {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  overflow: hidden;
  display: -moz-box;
  display: -webkit-box;
  text-overflow: ellipsis;
  -moz-box-orient: vertical;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  box-orient: vertical;
}
@media only screen and (max-width: 600px) {
  .basket_info_text {
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
}
.basket_info_bottom {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 4px;
}
.basket_info_bottom_li {
  color: #165DED;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}
.basket_info_bottom_li:first-child{
  display: none;
}
.basket_info_bottom_li:hover {
  text-decoration: underline;
}
.basket_info_bottom_li + .basket_info_bottom_li {
  /*margin-left: 12px;*/
  /*padding-left: 12px;*/
  border-left: none;
}
.basket_price {
  min-width: 88px;
  margin-left: 24px;
  font-size: 18px;
  font-weight: 700;
}
.basket_price span {
  font-size: 15px;
}
@media only screen and (max-width: 600px) {
  .basket_price {
    margin-top: 12px;
    margin-left: 0;
  }
}
.basket_calc {
  min-width: 140px;
}
@media only screen and (max-width: 600px) {
  .basket_calc {
    margin-top: 12px;
    margin-left: 0;
  }
}
.basket_calc input {
  font-size: 13px;
}
.basket_calc button {
  width: 40px;
}
.basket_calc button:disabled{
  opacity: 0.4;
}
.modal {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
  /*z-index: 999;*/
  width: 50%;
  margin: auto;
  z-index: 100;
}


@media only screen and (max-height: 600px) {
  .modal {
    align-items: flex-start;
  }
}
@media only screen and (min-width: 768px) {
  .modal {
    width: 90%;

  }
}
@media only screen and (max-width: 768px) {
  .modal {
    width: 100%;
    align-items: stretch !important;
  }
}
.modal_wrapper {
  overflow: auto;
  width: 100%;
  max-width: 800px;
  max-height: 600px;
  margin: 0 40px;
  background-color: #fff;
  box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
}
@media only screen and (max-width: 768px) {
  .modal_wrapper {
    margin: 0;
    max-height: none;
  }
}
.modal_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid #DEE2E6;
}
.modal_title {
  font-size: 24px;
  font-weight: 600;
}
.modal_exit {
  width: 16px;
  height: 16px;
  background-image: url('../images/icon/xx.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
}
.modal_basket {
  border: 0 none;
}
@media only screen and (max-width: 768px) {
  .modal_basket {
    padding: 0 16px;
  }
}
.modal_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px 24px;
}
@media only screen and (max-width: 768px) {
  .modal_bottom {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.modal_bottom_left .button {
  width: 200px;
  color: #165DED;
  background-color: transparent;
}
@media only screen and (max-width: 768px) {
  .modal_bottom_left .button {
    display: none;
  }
}
.modal_bottom_right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 400px;
  padding: 0 24px;
  height: 100px;
  background-color: #F0F0F0;
  border-radius: 5px;
}
@media only screen and (max-width: 768px) {
  .modal_bottom_right {
    flex-wrap: wrap;
    padding-top: 20px;
    padding-bottom: 12px;
    width: 100%;
    height: auto;
  }
}
@media only screen and (max-width: 768px) {
  .modal_price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
  }
}
.modal_price span {
  font-size: 25px;
  font-weight: 700;
}
.modal_price span:first-child {
  display: none;
  font-size: 18px;
}
@media only screen and (max-width: 768px) {
  .modal_price span:first-child {
    display: block;
  }
}
.modal_button {
  width: 200px;
}
.modal_button a{
  display: block;
}
@media only screen and (max-width: 768px) {
  .modal_button {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }
}
.contact h1 {
  margin-top: 24px;
  font-size: 24px;
  font-weight: 600;
}
.contact_flex {
  display: flex;
  align-items: flex-start;
  position: relative;
}
.contact_info {
  flex-grow: 1;
  min-width: 652px;
}
@media only screen and (max-width: 900px) {
  .contact_info {
    min-width: 0;
  }
}
.contact_info p {
  margin-top: 16px;
  line-height: 1.6;
}
.contact_img {
  position: sticky;
  top: 0;
  width: 100%;
  max-width: 464px;
}
@media only screen and (max-width: 900px) {
  .contact_img {
    display: none;
  }
}
.contact_blocks {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: -16px;
}
.contact_blocks_title {
  width: 100%;
  margin-top: 32px;
  padding-left: 16px;
  font-size: 18px;
  font-weight: 600;
}
.contact_blocks_bottom {
  display: flex;
  align-items: center;
  margin-top: 24px;
}
@media only screen and (max-width: 600px) {
  .contact_blocks_bottom {
    flex-direction: column;
  }
}
.contact_blocks_bottom span {
  margin-left: 12px;
  color: #9FA2A1;
}
@media only screen and (max-width: 600px) {
  .contact_blocks_bottom span {
    margin-top: 12px;
  }
}
.contact_blocks_bottom span a {
  color: #165DED;
}
@media only screen and (max-width: 600px) {
  .contact_blocks_button {
    width: 100%;
  }
}
.contact_blocks_button .button {
  display: inline-block;
  width: auto;
  padding: 0 32px;
  color: #165DED;
  background: #fff;
}
@media only screen and (max-width: 600px) {
  .contact_blocks_button .button {
    width: 100%;
  }
}
.contact_block {
  min-width: 252px;
  max-width: 368px;
  margin: 16px;
  padding-left: 32px;
}
@media only screen and (max-width: 768px) {
  .contact_block {
    width: 100%;
    max-width: none;
  }
}
.contact_block li {
  line-height: 1.6;
  font-weight: 500;
  font-size: 15px;
}
.contact_block li:first-child {
  position: relative;
  font-weight: 400;
}
.contact_block li:first-child:before {
  content: '';
  position: absolute;
  top: 50%;
  left: -32px;
  width: 24px;
  height: 24px;
  margin-top: -12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.contact_block li.mes {
  position: relative;
  display: inline-block;
}
.contact_block li.mes:before,
.contact_block li.mes:after {
  content: '';
  position: absolute;
  top: 50%;
  right: -24px;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  background-image: url('../images/icon/vb.svg') !important;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.contact_block li.mes:after {
  right: -48px;
  background-image: url('../images/icon/ws.svg') !important;
}
.contact_block.pin li:before {
  background-image: url('../images/icon/pin.svg');
}
.contact_block.tel li:before {
  background-image: url('../images/icon/tel.svg');
}
.contact_block.email li:before {
  background-image: url('../images/icon/email.svg');
}
.contact_block.time li:before {
  background-image: url('../images/icon/time.svg');
}
.contact_block > span {
  display: inline-block;
  position: relative;
  margin-top: 8px;
  padding-top: 12px;
  padding-left: 24px;
  padding-right: 8px;
  padding-bottom: 12px;
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
  background: #E7EFFF;
  border: 1px solid #165DED;
  border-radius: 5px;
}
@media only screen and (max-width: 600px) {
  .contact_block > span {
    margin-left: -32px;
  }
}
.contact_block > span:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 4px;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  background-image: url('../images/icon/pin_blue.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.payment h1 {
  margin-top: 24px;
  font-size: 24px;
  font-weight: 600;
}
.payment_subtitle {
  margin-top: 16px;
  font-size: 15px;
}
.payment_title {
  margin-top: 36px;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}
.payment_blocks {
  margin-top: 24px;
  padding: 20px 0 32px;
  background-color: rgba(218, 230, 255, 0.5);
}
.payment_blocks_flex {
  display: flex;
  margin: -12px;
}
@media only screen and (max-width: 768px) {
  .payment_blocks_flex {
    flex-direction: column;
  }
}
.payment_block {
  width: calc(100% / 3 - 24px);
  margin: 12px;
}
@media only screen and (max-width: 768px) {
  .payment_block {
    width: calc(100% - 24px);
  }
}
.payment_block_num {
  color: #165DED;
  font-size: 64px;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .payment_block_num {
    text-align: center;
  }
}
.payment_block_title {
  font-size: 18px;
  font-weight: 500;
}
.payment_block p {
  margin-top: 8px;
  line-height: 1.6;
}
.payment_form {
  width: 100%;
  max-width: 476px;
  margin: 44px auto 0;
}
@media only screen and (max-width: 600px) {
  .payment_form {
    margin-top: 24px;
    padding: 0;
    border: 0 none;
  }
}
.payment_form_inputs {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.payment_form_input {
  width: 100%;
  max-width: 232px;
}
@media only screen and (max-width: 600px) {
  .payment_form_input {
    max-width: none;
  }
}
.payment_form_textarea {
  width: 100%;
}
.payment_form_textarea textarea {
  min-height: 128px;
  padding-top: 8px !important;
  line-height: 20px !important;
}
.payment_form_input,
.payment_form_textarea {
  position: relative;
  margin-top: 20px;
}
.payment_form_input input,
.payment_form_textarea input,
.payment_form_input textarea,
.payment_form_textarea textarea {
  width: 100%;
  height: 38px;
  padding: 0 16px;
  font-size: 13px;
  line-height: 38px;
  border: 1px solid #DEE2E6;
  border-radius: 5px;
}
.payment_form_input input:placeholder,
.payment_form_textarea input:placeholder,
.payment_form_input textarea:placeholder,
.payment_form_textarea textarea:placeholder {
  color: #9FA2A1;
}
.payment_form_input span,
.payment_form_textarea span {
  visibility: hidden;
  position: absolute;
  top: -8px;
  left: 14px;
  color: #9FA2A1;
  font-size: 13px;
  background-color: #fff;
  opacity: 0;
  transition: all 0.23s;
}
.payment_form_input.checked span,
.payment_form_textarea.checked span {
  visibility: visible;
  opacity: 1;
}
.payment_form_button .button {
  width: auto;
  min-width: 244px;
  margin: 32px auto 0;
  padding: 0 24px;
}
.about_items {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin-top: 24px;
}
@media only screen and (max-width: 600px) {
  .about_items {
    flex-direction: column;
  }
}
.about_items p {
  margin-top: 16px;
  line-height: 1.6;
}
.about_item {
  margin-top: 48px;
}
.about_item_title {
  font-size: 24px;
  font-weight: 600;
}
.about_item p {
  margin-top: 16px;
  line-height: 1.6;
}
.about_item_img img {
  width: 300px;
  min-width: 300px;
  height: 100%;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
}
@media only screen and (max-width: 600px) {
  .about_item_img img {
    margin-top: 32px;
  }
}
.about_title {
  margin-top: 44px;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}
.about_blocks {
  padding: 24px 0 36px;
  margin-top: 24px;
  background: rgba(218, 230, 255, 0.5);
}
.about_blocks_flex {
  display: flex;
  margin: -12px;
}
@media only screen and (max-width: 600px) {
  .about_blocks_flex {
    flex-direction: column;
  }
}
.about_block {
  text-align: center;
  margin: 12px;
}
.about_block_icon {
  width: 74px;
  height: 74px;
  margin: 0 auto;
}
.about_block_title {
  margin-top: 36px;
  font-size: 18px;
  font-weight: 600;
}
.about_block p {
  margin-top: 16px;
  line-height: 1.6;
}
.about_uls {
  display: flex;
  justify-content: space-between;
  margin: 36px -12px -12px;
}
@media only screen and (max-width: 768px) {
  .about_uls {
    flex-direction: column;
  }
}
.about_ul {
  margin: 12px;
}
.about_ul_title {
  font-size: 18px;
  font-weight: 600;
}
.about_ul ul li {
  position: relative;
  margin-top: 24px;
  padding-left: 20px;
  line-height: 24px;
}
.about_ul ul li:before {
  content: '';
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #165DED;
  border-radius: 50%;
}
.about_four {
  display: flex;
  flex-wrap: wrap;
  margin: 12px -12px -12px;
}
.about_four_li {
  width: calc(25% - 24px);
  margin: 12px;
}
@media only screen and (max-width: 768px) {
  .about_four_li {
    width: calc(50% - 24px);
  }
}
.about_four_img {
  width: 72px;
  height: 72px;
  padding: 16px;
  background-color: #165DED;
  border-radius: 50%;
}
.about_four_img img {
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.about_four p {
  margin-top: 24px;
  font-size: 18px;
  font-weight: 500;
}
.about_four p span {
  color: #165DED;
}
.home_top {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: 1fr 272px;
  grid-auto-rows: minmax(166px, auto);
  margin-top: 24px;
}
@media only screen and (max-width: 768px) {
  .home_top {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 600px) {
  .home_top {
    display: block;
  }
}
.home_slider {
  grid-row: 1/3;
  background-color: #9FA2A1;
}
@media only screen and (max-width: 768px) {
  .home_slider {
    grid-column: 1/3;
  }
}
@media only screen and (max-width: 600px) {
  .home_slider {
    max-height: 356px;
  }
}
.home_banner {
  background-color: #9FA2A1;
}
@media only screen and (max-width: 600px) {
  .home_banner {
    height: auto;
    margin-top: 24px;
  }
}
.home_title {
  margin-top: 24px;
  font-size: 24px;
  font-weight: 600;
}
.home_title_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home_title_arrows {
  display: flex;
  border: 1px solid #DEE2E6;
}
.home_title_arrows .home_block_text {
  display: block;
  position: relative;
  width: 28px;
  height: 28px;
  cursor: pointer;
  transition: background 0.23s;
}
.home_title_arrows .home_block_text:first-child {
  border-right: 1px solid #DEE2E6;
}
.home_title_arrows .home_block_text:first-child:before {
  transform: rotate(100grad);
}
.home_title_arrows .home_block_text:hover {
  background-color: #DEE2E644;
}
.home_title_arrows .home_block_text:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: url('../images/icon/arrow-more_black.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 8px;
  transform: rotate(-100grad);
}
.home_blocks {
  display: grid;
  grid-gap: 24px;
  grid-auto-flow: dense;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(80px, 80px);
  grid-auto-columns: minmax(68px, auto);
  margin-top: 16px;

}
.home_block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 14px;
  line-height: 12px;
  text-align: center;
  box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.09);
  /*white-space: nowrap;*/
  border-radius:15px;
}
.home_block_img {
  height: 100%;
  max-height: 200px;
}
.home_block img {
  height: 100%;
  object-fit: contain;
  object-position: center;
}
@media only screen and (max-width: 1000px) {
  .home_block img {
    max-width: 128px;
    max-height: 128px;
    margin: 0 auto;
  }
}
.home_block .home_block_text {
  margin-top: 8px;
  min-height: 40px;
  max-width: 128px;
  margin-left: auto;
  margin-right: auto;
}
.home_block:nth-child(1) {
  grid-row: 1/5;
  grid-column: 1/3;
}
.home_block:nth-child(1) .home_block_text{
  font-size: 18px;
  line-height: 20px;
  max-width: unset;
}
.home_block:nth-child(1) img {
  max-width: 200px;
  height: 100%;
  max-height: 200px;
  margin: 0 auto;
}
.home_block:nth-child(n + 2) {
  grid-row: 1/3;
  padding: 0 26px;
}
.home_block:nth-child(n + 6) {
  grid-row: 3/5;
}
@media only screen and (max-width: 1000px) {
  .home_block {
    padding: 0 20px !important;
  }
  .home_block:nth-child(1) {
    grid-row: 1/3;
    grid-column: 1/2;
  }
  .home_block:nth-child(1) img {
    max-width: 128px;
    max-height: 128px;
  }
  .home_block:nth-child(5) {
    grid-row: 3/5;
    grid-column: 1/2;
  }
  .home_block:nth-child(n + 8) {
    grid-row: auto;
    flex-direction: row;
    align-items: center;
    padding: 8px;
    white-space: normal;
  }
  .home_block:nth-child(n + 8) .home_block_text {
    text-align: center;
  }
  .home_blocks ~ .home_blocks .home_block:nth-child(n + 7) {
    grid-row: auto;
    flex-direction: row;
    align-items: center;
    padding: 8px;
    white-space: normal;
  }
  .home_blocks ~ .home_blocks .home_block:nth-child(n + 7) .home_block_text {
    text-align: center;
  }
  .home_block:nth-child(8) {
    grid-row: 4/5;
  }
  .home_blocks {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media only screen and (max-width: 800px) {
  .home_block {
    grid-row: auto !important;
    grid-column: auto !important;
    flex-direction: column !important;
    font-size: 11px;
    text-align: center;
  }
  .home_block:nth-child(1) {
    grid-row: 1/3 !important;
    grid-column: 1/3 !important;
  }
  .home_block:nth-child(1) img {
    max-width: 200px;
    max-height: 200px;
  }
  .home_block:nth-child(2n + 3) {
    grid-column: 2/3 !important;
  }
  .home_block:nth-child(n + 10) {
    display: none;
  }
  .home_blocks {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(184px, auto);
  }
  .home_blocks_three {
    display: block;
  }
  .home_blocks_three .home_block + .home_block {
    margin-top: 24px;
  }
}
@media only screen and (max-width: 600px) {
  .home_blocks {
    grid-auto-rows: minmax(164px, auto);
  }
}
@media only screen and (max-width: 375px) {
  .home_block {
    padding: 0 12px !important;
  }
}
.home_blocks ~ .home_blocks .home_block:nth-child(n + 9) {
  /*grid-row: unset;*/
  flex-direction: row;
  align-items: center;
  padding: 8px;
  white-space: normal;
}
.rows_a{
  margin-bottom: 10px;
}
.home_blocks ~ .home_blocks .home_block.home_block_last:nth-child(n + 9){
  /*grid-row: none inherit;*/
  flex-direction: column;


}
.home_blocks ~ .home_blocks .home_block:nth-child(n + 9) .home_block_text {
  text-align: left;
}
.home_blocks_three {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(80px, auto);
}
.home_blocks_three .home_block {
  grid-row: auto;
  grid-column: auto;
  padding: 60px 0 40px;
}
.home_blocks_three .home_block img {
  max-width: 200px;
  height: 100%;
  max-height: 200px;
  margin: 0 auto;
}
.home_blocks_three .home_block .home_block_text {
  font-size: 18px;
  line-height: 20px;
  max-width: none;
}
.home .catalog_block {
  margin-top: 16px;
  width: calc(100% / 6);
}
.card h1 {
  margin-top: 24px;
  font-size: 24px;
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  .card h1 {
    font-size: 18px;
  }
}
.card_top {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card_code {
  color: #9FA2A1;
  font-size: 13px;
  font-weight: 600;
}
@media only screen and (max-width: 600px) {
  .card_code {
    display: none;
  }
}
.card .wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 12px;
}
.card_info {
  width: calc(100% - 296px);
}
@media only screen and (max-width: 900px) {
  .card_info {
    width: 100%;
  }
}
.card_info_top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.card_images {
  width: calc(50% - 12px);
  margin-right: 12px;
}
@media only screen and (max-width: 768px) {
  .card_images {
    width: 100%;
    margin-right: 0;
  }
}
.card_pin {
  width: 8px;
  height: 8px;
  background-color: #165DED;
  border-radius: 50%;
  opacity: 0.5;
  cursor: pointer;
}
.card_pin + .card_pin {
  margin-left: 12px;
}
.card_pin.active {
  opacity: 1;
}
.card_pins {
  display: none;
}
@media only screen and (max-width: 768px) {
  .card_pins {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
  }
}
.card_sidebar {
  width: 272px;
}
@media only screen and (max-width: 900px) {
  .card_sidebar {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .card + .feetback + .footer,
  .card + .footer {
    margin-bottom: 72px;
  }
}
.card_labels {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  opacity: 0;
}
.card_labels .card_label {
  position: relative;
  font-size: 13px;
}
.card_labels .card_label + .card_label {
  margin-left: 28px;
  display:none;
}
.card_labels .card_label_pres {
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
}
.card_labels .card_label_pres:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 14px;
  margin-top: calc(14px / -2);
  background-image: url('../images/icon/war.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.card_labels .card_label_pres_after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 16px;
  margin-top: calc(16px / -2);
  left: auto;
  right: 0;
  background-image: url('../images/icon/i.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
}
.card_labels .card_label_pres_after:hover + .card_label_info {
  visibility: visible;
  opacity: 1;
}
.card_labels .card_label_info {
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 100%;
  width: 172px;
  margin-top: 12px;
  margin-left: -8px;
  padding: 4px 4px 12px 12px;
  font-size: 12px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: all 0.23s;
}
.card_labels .card_label_info:before {
  content: '';
  position: absolute;
  top: -6px;
  left: 0;
  border-bottom: 10px solid #fff;
  border-right: 13px solid transparent;
}
.card_labels .card_label label {
  position: relative;
  margin-left: 20px;
  padding-bottom: 2px;
  color: #9FA2A1;
  border-bottom: 1px dashed #9FA2A1;
  transition: all 0.23s;
  cursor: pointer;
}
.card_labels .card_label label:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 16px;
  margin-top: calc(16px / -2);
  left: -20px;
  background-image: url('../images/icon/star.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.23s;
}
.card_labels .card_label label:hover {
  color: #165DED;
  border-color: #165DED;
}
.card_labels .card_label label:hover:before {
  background-image: url('../images/icon/star-hover.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.card_labels .card_label input:checked + label {
  color: #165DED;
  border-color: #165DED;
}
.card_labels .card_label input:checked + label:before {
  background-image: url('../images/icon/star-checked.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.card_char {
  width: calc(50% - 12px);
  margin-left: 12px;
}
@media only screen and (max-width: 768px) {
  .card_char {
    width: 100%;
    margin-top: 24px;
    margin-left: 0;
  }
}
.card_char_label {
  font-size: 18px;
  font-weight: 600;
}
.card_char_ul {
  margin-top: 24px;
}
.card_char_li {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: nowrap;
  margin-top: 12px;
  font-size: 15px;
}
.card_char_li span {
  flex-grow: 1;
  height: 14px;
  margin: 0 4px;
  border-bottom: 1px dashed #9FA2A1;
}
.card_char_info {
  max-width: 145px;
  text-align: right;
}
.card_char_more {
  display: inline-block;
  position: relative;
  margin-top: 16px;
  padding-right: 12px;
  color: #165DED;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}
.card_char_more:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  margin-top: calc(8px / -2);
  left: auto;
  right: 0;
  background-image: url('../images/icon/arrow-more.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.card_info_txt {
  margin-top: 24px;
  line-height: 24px;
}
.card_info_txt_label {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 600;
}
.card_info_txt p {
  margin-bottom: 12px;
  font-size: 14px;
}
.card_info_txt h2 {
  margin-bottom: 12px;
  font-size: 18px;
}
.card_info_txt h3 {
  margin-bottom: 12px;
  font-size: 17px;
}
.card_info_txt ul,.card_info_txt ol {
  margin-bottom: 12px;
  font-size: 14px;
}
.card_info_txt ul li {
  margin-left: 25px;
  list-style: disc;
}
.card_info_txt ol li {
  margin-left: 25px;
  list-style: decimal;
}
.card_info_txt a {
  color:#165DED;
}
.card_info_txt a:hover,
.card_info_txt a:focus {
  text-decoration: underline;
}
.card_info_txt img {
  float: right;
  max-width: calc(50% - 24px);
  margin-left: 24px;
}
.card_advis {
  margin-top: 24px;
}
.card_advis_label {
  font-size: 18px;
  font-weight: 600;
}
.card_advis_blocks {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: nowrap;
  margin: 12px -12px -12px;
}
@media only screen and (max-width: 768px) {
  .card_advis_blocks {
    flex-wrap: wrap;
  }
}
.card_advis_block {
  width: calc(100% / 3 - 24px);
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  margin: 12px;
}
@media only screen and (max-width: 1200px) {
  .card_advis_block {
    width: calc(100% / 2 - 24px);
  }
  .card_advis_block:nth-child(n + 3) {
    display: none;
  }
}
@media only screen and (max-width: 600px) {
  .card_advis_block {
    display: flex !important;
    width: 100%;
  }
}
.card_advis_img {
  width: 74px;
  min-width: 74px;
  height: 74px;
}
.card_advis_info {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-left: 24px;
}
.card_advis_name {
  width: 100%;
  font-size: 13px;
  line-height: 24px;
  transition: color 0.23s;
}
.card_advis_name:hover {
  color: #165DED;
}
.card_advis_price {
  width: 100%;
  font-size: 18px;
  font-weight: 600;
}
.deliv {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid #DEE2E6;
  border-radius: 5px;
}
.deliv_label {
  position: relative;
  margin: -24px -24px 0;
  padding: 16px 24px 16px 52px;
  border-bottom: 1px solid #DEE2E6;
  font-size: 15px;
  font-weight: 600;
}
.deliv_label:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 16px;
  margin-top: calc(16px / -2);
  left: 24px;
  background-image: url('../images/icon/car.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.deliv_li {
  padding: 12px 0;
  border-bottom: 1px solid #DEE2E6;
}
.deliv_li_top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 600;
  line-height: 24px;
}
.deliv_li_name {
  max-width: 60%;
  color: #165DED;
  font-weight: 500;
}
.deliv_li_text {
  color: #9FA2A1;
  font-size: 13px;
  line-height: 24px;
}
.deliv_text {
  margin-top: 12px;
  color: #9FA2A1;
  font-size: 13px;
  line-height: 24px;
}
.deliv_more {
  display: inline-block;
  position: relative;
  margin-top: 16px;
  color: #165DED;
  font-size: 15px;
  font-weight: 500;
  line-height: 14px;
}
.deliv_more:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  margin-top: calc(8px / -2);
  left: auto;
  right: -12px;
  background-image: url('../images/icon/arrow-more.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.pay {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid #DEE2E6;
  border-radius: 5px;
}
.pay_label {
  position: relative;
  margin: -24px -24px 0;
  padding: 16px 24px 16px 52px;
  border-bottom: 1px solid #DEE2E6;
  font-size: 15px;
  font-weight: 600;
}
.pay_label:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 16px;
  margin-top: calc(16px / -2);
  left: 24px;
  background-image: url('../images/icon/card.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.pay p {
  margin-top: 16px;
  font-size: 13px;
  line-height: 24px;
}
.pay p span {
  color: #165DED;
}
.pay_more {
  display: inline-block;
  position: relative;
  margin-top: 16px;
  color: #165DED;
  font-size: 15px;
  font-weight: 500;
  line-height: 14px;
}
.pay_more:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  margin-top: calc(8px / -2);
  left: auto;
  right: -12px;
  background-image: url('../images/icon/arrow-more.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.cost {
  box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.09);
  padding: 24px;
  border-radius: 12px;
}
@media only screen and (max-width: 900px) {
  .cost {
    margin-bottom: 24px;
  }
}
.cost_top {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.cost_price {
  font-size: 25px;
  font-weight: 700;
  line-height: 30px;
}
.cost_sale {
  margin-left: 12px;
}
.cost_sale_info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  width: 100%;
  margin-top: 8px;
  font-size: 14px;
  line-height: 20px;
}
.cost_sale_perc {
  color: #fff;
  padding: 0 4px;
  background-color: #F52020;
  border-radius: 5px 0 0 5px;
}
.cost_sale_price {
  padding: 0 8px;
  background-color: #9fa2a133;
  border-radius: 0 5px 5px 0;
}
.cost_min {
  margin-top: 24px;
  color: #9FA2A1;
  font-size: 12px;
}
@media only screen and (max-width: 768px) {
  .cost_min {
    display: none;
  }
}
.cost_calc {
  margin-top: 4px;
}
@media only screen and (max-width: 768px) {
  .cost_calc {
    /*width: 100px;*/
    margin-top: 0;
  }
  .cost_calc button {
    /*display: none;*/
  }
}
.cost_button {
  margin-top: 24px;
}
@media only screen and (max-width: 768px) {
  .cost_button {
    flex-grow: 1;
    margin-top: 0;
    margin-left: 16px;
    width: 120px;
  }
}
@media only screen and (max-width: 768px) {
  .cost_bottom {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 16px;
    background-color: #ffffffe6;
    box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.15);
    z-index: 9;
  }
  .basket_calc .cost_bottom{
    position: unset;
    box-shadow: unset;
  }
}
.sale {
  position: relative;
  color: #9FA2A1;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
}
.sale:before {
  content: '';
  position: absolute;
  top: 50%;
  left: -2px;
  right: -2px;
  height: 2px;
  margin-top: -1px;
  background-color: #F52020;
}
.sale_1 {
  position: relative;
  color: #9FA2A1;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
}
.sale_1:before {
  content: '';
  position: absolute;
  top: 50%;
  left: -2px;
  right: -2px;
  height: 2px;
  margin-top: -1px;
  background-color: #F52020;
}
.opt {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .opt {
    flex-direction: column;
  }
}
.opt_left {
  width: calc(100%);
  padding-right: 24px;
}
@media only screen and (max-width: 900px) {
  .opt_left {
    margin-top: 24px;
    padding: 24px;
    box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
  }
}
@media only screen and (max-width: 768px) {
  .opt_left {
    margin-top: 0;
    padding: 0;
    box-shadow: none;
  }
}
.opt_left li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 600;
}
.opt_left li + li {
  margin-top: 28px;
}
.opt_left ul {
  margin-top: 40px;
}
.opt_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.opt_top {
  color: #9FA2A1;
  font-size: 16px;
  font-weight: 600;
}
.opt_piec span {
  display: block;
  margin-top: 8px;
  padding: 0 12px;
  color: #F52020;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  background-color: #fdbda133;
  border-radius: 10px;
}
.opt_price {
  font-weight: 700;
}
.opt_right {
  width: 272px;
  min-width: 272px;
  padding-left: 24px;
}
@media only screen and (max-width: 900px) {
  .opt_right {
    width: 100%;
    padding-left: 0;
  }
}
@media only screen and (max-width: 768px) {
  .opt_right {
    margin-top: 24px;
  }
}
.opt .blue {
  color: #165DED;
}
.catalog_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.catalog .msearch2 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.catalog_title {
  width: 100%;
  margin-top: 24px;
  margin-bottom: 32px;
}
.catalog_title_2{
  margin-bottom: 24px;
}
.catalog_title h1 {
  font-size: 24px;
  font-weight: 500;
}
.catalog_filtered_button {
  display: none;
  position: relative;
}
ul.catalog_links{
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 25px;
}
ul.catalog_links li{
  display: flex;
  background: #F4F4F4;
  border-radius: 41px;
  height: 30px;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 4px 10px 8px 10px;
}
ul.catalog_links li:hover{
  background:#E6E2E2;
}
ul.catalog_links li a{
   font-size: 15px;
   color: #000000;
 }
@media only screen and (max-width: 768px){
  ul.catalog_links li{
    display: flex !important;
    text-align: center;
    height: 47px;
    border-radius: 50px;
    align-items: center;
    justify-content: center;
  }
}
@media only screen and (max-width: 900px) {
  .catalog_filtered_button {
    width: calc(50% - 12px);
    display: block;
  }
  .catalog_filtered_button .button {
    padding-left: 20px;
    color: #165DED;
    background-color: transparent;
  }
  .catalog_filtered_button .button:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 18px;
    margin-left: -40px;
    margin-top: -9px;
    background-image: url('../images/icon/f.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
}
.catalog_sorting {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 15px;
}
.catalog_sorting_label {
  font-weight: 600;
}
.catalog_sorting ul {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.catalog_sorting li {
  margin-left: 16px;
  color: #165DED;
  cursor: pointer;
}
.catalog_sorting li.active {
  color: #000;
}
@media only screen and (max-width: 900px) {
  .catalog_sorting {
    position: relative;
  }
  .catalog_sorting_label {
    position: relative;
    padding-right: 12px;
    cursor: pointer;
  }
  .catalog_sorting_label:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 10px;
    height: 10px;
    margin-top: calc(10px / -2);
    left: auto;
    right: 0;
    background-image: url('../images/icon/arrows.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .catalog_sorting ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 88px;
    margin-top: 8px;
    padding: 4px 0;
    background-color: #fff;
    box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    z-index: 9;
  }
  .catalog_sorting ul li {
    width: 100%;
    margin-left: 0;
    padding: 4px 12px;
    white-space: nowrap;
    transition: background 0.23s;
  }
  .catalog_sorting ul li:hover {
    background-color: #DEE2E6;
  }
}
.catalog_looking {
  width: 100%;
  margin: 20px 12px 12px;
  padding: 16px;
}
.catalog_looking_title {
  font-size: 18px;
  font-weight: 700;
}
.catalog_looking ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 8px -8px -8px;
}
.catalog_looking ul li {
  width: calc(100% / 3 - 16px);
  margin: 8px;
}
@media only screen and (max-width: 1200px) {
  .catalog_looking ul li {
    width: calc(100% / 2 - 16px);
  }
}
@media only screen and (max-width: 600px) {
  .catalog_looking ul li {
    width: 100%;
  }
}
.catalog_looking ul li a {
  font-size: 15px;
  font-weight: 500;
}
.catalog_info ol li {margin-left: 25px;list-style: decimal;}
.catalog_info {
  margin-top: 24px;
  line-height: 24px;
}
.catalog_info h2 {
  margin-bottom: 12px;
  font-size: 21px;
  font-weight: 600;
}
.catalog_info > div:nth-child(2n + 2) img {
  float: left;
  margin-left: 0;
  margin-right: 24px;
}
.catalog_info > div h3 {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
}
.catalog_info > div p {
  margin-bottom: 12px;
  font-size: 14px;
}
.catalog_info ul {
  margin-bottom: 12px;
  font-size: 14px;
}
.catalog_info ul li {
  margin-left:25px;
  list-style: disc;
}
.catalog_info > div img {
  float: right;
  width: calc(50% - 24px);
  min-height: 300px;
  margin-left: 24px;
  margin-top: 24px;
  margin-bottom: 24px;
}
.catalog_info a {
  color:#165DED;
}
.catalog_info a:hover,
.catalog_info a:focus {
  text-decoration: underline;
}
@media only screen and (max-width: 900px) {
  .catalog_info > div img {
    width: 100%;
    margin: 24px 0 !important;
  }
}
.catalog_info > div q {
  display: inline-block;
  position: relative;
  margin-top: 24px;
  padding-left: 40px;
  color: #165DED;
  font-size: 24px;
  line-height: 28px;
}
.catalog_info > div q:before {
  content: '';
  position: absolute;
  top: 12px;
  left: 0;
  width: 18px;
  height: 18px;
  margin-top: -12px;
  background-image: url('../images/icon/q.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.catalog_info > div q:after {
  display: none;
}
.catalog_sidebar {
  position: relative;
  width: 172px;
}
.catalog_sidebar_exit {
  display: none;
}
@media only screen and (max-width: 900px) {
  .catalog_sidebar {
    overflow: auto;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: auto;
    height: 100%;
    padding: 16px;
    background-color: #fff;
    z-index: 11;
  }
  .catalog_sidebar_exit {
    display: block;
    position: absolute;
    top: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
    background-image: url('../images/icon/xx.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
  }
  .catalog_sidebar .catalog_sidebar_title {
    display: block;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
  }
  .catalog_sidebar .catalog_sidebar_filtered {
    position: relative;
    margin: 32px -16px 0;
    padding: 0 16px;
    padding-bottom: 24px;
    border-bottom: 1px solid #DEE2E6;
  }
  .catalog_sidebar .catalog_sidebar_filtered button {
    position: absolute;
    top: -18px;
    right: 0;
    color: #F52020;
    border: 0 none;
  }
  .catalog_sidebar .catalog_sidebar_filtered button:before {
    background-color: transparent;
  }
  .catalog_sidebar .catalog_sidebar_form_checked {
    margin-top: 18px;
  }
  .catalog_sidebar .catalog_sidebar_form_checked span {
    display: block;
  }
  .catalog_sidebar .catalog_sidebar_form_title {
    margin-top: 18px;
  }
  .catalog_sidebar .catalog_sidebar_form_li {
    padding-bottom: 18px;
  }
  .catalog_sidebar .catalog_sidebar_form_button {
    display: block;
    margin-top: 24px;
  }
}
.catalog_sidebar_title {
  display: none;
}
.catalog_sidebar_filtered_title {
  font-size: 15px;
  font-weight: 600;
}
.catalog_sidebar_filtered ul {
  margin: 0 -4px 0;
}
.catalog_sidebar_filtered li {
  position: relative;
  display: inline-block;
  padding-left: 8px;
  padding-right: 28px;
  margin: 12px 4px 0;
  font-size: 12px;
  line-height: 28px;
  border: 1px solid #DEE2E6;
  border-radius: 14px;
}

.catalog_sidebar_filtered a{
  position: relative;
  display: inline-block;
  padding-left: 8px;
  padding-right: 28px;
  margin: 12px 4px 0;
  font-size: 12px;
  line-height: 28px;
  border: 1px solid #DEE2E6;
  border-radius: 14px;
}
.catalog_sidebar_filtered a em{
  font-style: normal;
}
.catalog_sidebar_filtered a sup {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 4px;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background-color: #F0F1F1;
  background-image: url('../images/icon/x.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-size: 6px;
  border-radius: 50%;
  z-index: 1;
  cursor: pointer;
  color: transparent;
}
.catalog_sidebar_filtered li span {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 4px;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background-color: #F0F1F1;
  background-image: url('../images/icon/x.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-size: 6px;
  border-radius: 50%;
  z-index: 1;
  cursor: pointer;
}
/*.catalog_sidebar_filtered a {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 4px;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background-color: #F0F1F1;
  background-image: url('../images/icon/x.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-size: 6px;
  border-radius: 50%;
  z-index: 1;
  cursor: pointer;
}*/
/*.catalog_sidebar_filtered*/
button.clear_filters {
  position: relative;
  display: inline-block;
  padding-left: 8px;
  padding-right: 28px;
  margin-top: 12px;
  font-size: 12px;
  line-height: 28px;
  border: 1px solid red;
  border-radius: 14px;
  background: transparent;
  color:#000000;
  font-weight: 400;
}
button.clear_filters:before {
  content: '';
  position: absolute;
  top: 50%;
  right: 4px;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background-color: #F0F1F1;
  background-image: url('../images/icon/x.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-size: 6px;
  border-radius: 50%;
  z-index: 1;
  cursor: pointer;
}
.catalog_sidebar_form {
  margin-top: 16px;
}
.catalog_sidebar_form_button {
  display: none;
}
.catalog_sidebar_form_button.white {
  display: block;
}
.catalog_sidebar_form_button.white span {
  display: none;
}
.catalog_sidebar_form_button.white .button {
  color: #000;
  font-weight: 500;
  background-color: #fff;
  border-color: #F52020;
}
.catalog_sidebar_form_button.white .button:active {
  color: #fff;
  background-color: #F52020;
}
.catalog_sidebar_form_li {
  padding-bottom: 24px;
  border-bottom: 1px solid #DEE2E6;
}
.catalog_sidebar_form_li .button {
  display: none;
  margin-top: 16px;
  color: ;
  background-color: #fff;
  border-color: #fff;
}
.catalog_sidebar_form_li .mse2_number_slider {
  margin-top: 24px;
}
.catalog_sidebar_form_title {
  margin-top: 24px;
  font-size: 15px;
  font-weight: 600;
}
.catalog_sidebar_form_checked {
  display: block;
  margin-top: 24px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}
.catalog_sidebar_form_checked input:checked + span:after {
  margin-right: -16px;
  background-color: #165DED;
}
.catalog_sidebar_form_checked span {
  position: relative;
  padding-right: 44px;
}
.catalog_sidebar_form_checked span:before {
  content: '';
  position: absolute;
  top: 50%;
  left: auto;
  right: 0;
  width: 36px;
  height: 20px;
  margin-top: -10px;
  border: 1px solid #DEE2E6;
  border-radius: 10px;
}
.catalog_sidebar_form_checked span:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 16px;
  margin-top: calc(16px / -2);
  background-size: contain;
  left: auto;
  right: 18px;
  background-color: #9FA2A1;
  border-radius: 50%;
  transition: all 0.23s;
}
.catalog_sidebar_form_field {
  margin-top: 16px;
  border: 0 none;
}
.catalog_sidebar_form_field_range {
  margin-top: 16px;
  margin-bottom: 8px;
  width: 100%;
}
.catalog_sidebar_form_field.checkbox {
  display: flex;
  align-items: inherit;
  justify-content: flex-start;
  flex-direction: column;
  max-height: 200px !important;
}
@media only screen and (max-width: 900px) {
}
.catalog_sidebar_form_field.checkbox label {
  display: inline-block;
  font-size: 12px;
  cursor: pointer;
}
.catalog_sidebar_form_field.checkbox label + label {
  margin-top: 12px;
}
.catalog_sidebar_form_field.checkbox label input {
  visibility: hidden;
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.catalog_sidebar_form_field.checkbox label input:hover + span:before,
.catalog_sidebar_form_field.checkbox label input:focus + span:before {
  border-color: #165DED;
}
.catalog_sidebar_form_field.checkbox label input:active + span:before {
  border-color: #165DED;
}
.catalog_sidebar_form_field.checkbox label input:checked + span:before {
  background-color: #165DED;
  border-color: #165DED;
}
.catalog_sidebar_form_field.checkbox label span {
  position: relative;
  padding-left: 24px;
  line-height: 16px;
}
.catalog_sidebar_form_field.checkbox label span:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  background-image: url('../images/icon/check.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border: 1px solid #DEE2E6;
  border-radius: 5px;
  background-size: 8px 6px;
  cursor: pointer;
  transition: all 0.23s;
}
#mse2_results {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  margin: 12px;
}
@media only screen and (max-width: 900px) {
  #mse2_results {
    width: 100%;
    margin: 0;
  }
}
.catalog_block {
  position: relative;
  width: calc(100% / 5);
  padding: 12px;
  padding-bottom: 112px;
  line-height: 1;
}
.catalog_block_search{

}
@media only screen and (max-width: 1200px) {
  .catalog_block {
    width: calc(100% / 4);
  }
}
@media only screen and (max-width: 768px) {
  .catalog_block {
    width: calc(100% / 3);
  }
}
@media only screen and (max-width: 600px) {
  .catalog_block {
    width: calc(100% / 2);
    margin: 0;
  }
}
.catalog_block:hover {
  box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.09);
  border-radius:12px
}
.catalog_blocks {
  width: calc(100% - 172px);
  border-radius:12px
}
.catalog_blocks_serch{
  width: 100% !important;
}
@media only screen and (max-width: 900px) {
  .catalog_blocks {
    width: 100%;
  }
}
.catalog_block_img {
  display: block;
  position: relative;
  width: 100%;
  height: 172px;
  /*background-color: #DEE2E6;
  background-image: url('../images/icon/no_image.svg');*/
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-size: 90% 100%;
}
.catalog_block_img img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.catalog_block_img img.img-fluid{
    -o-object-fit:  contain;
    object-fit:  contain;
}
.catalog_block_img span {
  display: none;
}
.inactive .catalog_block_img {
  background-color: transparent;
  background-image: none;
}
.inactive .catalog_block_img img {
  opacity: 0.5;
}
.inactive .catalog_block_img span {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 104px;
  margin-left: -52px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  line-height: 24px;
  background-color: #9FA2A1;
  border-radius: 5px;
}
.catalog_block_desc {
  overflow: hidden;
  display: -moz-box;
  display: -webkit-box;
  margin-top: 12px;
  font-size: 13px;
  line-height: 20px;
  text-overflow: ellipsis;
  -moz-box-orient: vertical;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  box-orient: vertical;
  min-height: 40px;
}
.catalog_block_price {
  margin-top: 4px;
  font-size: 18px;
  font-weight: 700;
}
@media only screen and (max-width: 375px) {
  .catalog_block_price {
    font-size: 16px;
  }
}
.catalog_block_price .sale {
  position: relative;
  color: #9FA2A1;
  font-size: 15px;
}
@media only screen and (max-width: 375px) {
  .catalog_block_price .sale {
    font-size: 13px;
  }
}
.catalog_block_price span + span {
  display: block;
  margin-top: 4px;
}
.inactive .catalog_block_price {
  color: #9FA2A1;
}
.catalog_block_select {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 68px;
  color: #9FA2A1;
  border: 1px solid #DEE2E6;
  border-radius: 5px;
}
@media only screen and (max-width: 375px) {
  .catalog_block_select {
    font-size: 12px;
  }
}
.catalog_block_select .select_info {
  padding: 10px 24px 10px 10px;
  width: 100%;
}
@media only screen and (max-width: 375px) {
  .catalog_block_select .select_info {
    padding-left: 8px;
    padding-right: 16px;
  }
}
.catalog_block_select .select_info:before {
  right: 10px;
}
@media only screen and (max-width: 375px) {
  .catalog_block_select .select_info:before {
    right: 6px;
  }
}
.catalog_block_select .select_wrapper {
  left: -1px;
  right: -1px;
  border: 1px solid #DEE2E6;
  box-shadow: none;
}
.inactive .catalog_block_select {
  display: none;
}
.catalog_block_button {
  position: absolute !important;
  left: 12px;
  right: 12px;
  bottom: 12px;
}
.inactive .catalog_block_button {
  display: none;
}
.catalog_block_button .button {
  font-size: 14px;
}
.catalog_block_button .button:before {
  margin-left: -76px;
}
@media only screen and (max-width: 375px) {
  .catalog_block_button .button {
    font-size: 12px;
  }
}
@media only screen and (max-width: 600px) {
  .catalog_block_button.checked .button {
    padding: 0 12px;
    text-align: right;
  }
  .catalog_block_button.checked .button:before {
    margin-left: -64px;
  }
}
@media only screen and (max-width: 375px) {
  .catalog_block_button.checked .button:before {
    margin-left: -60px;
  }
}
.catalog_block_favorite {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
}
.catalog_block_favorite input:checked + label {
  background-image: url('../images/icon/star-checked.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.catalog_block_favorite label {
  display: block;
  width: 20px;
  height: 20px;
  background-image: url('../images/icon/star.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
  display: none;
}
.catalog_block_favorite label:hover {
  background-image: url('../images/icon/star-hover.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.checkout_title_addfile{
  color: #165DED;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 15px;
  margin-top: 15px;
}
/*# sourceMappingURL=main.css.map */