@charset "UTF-8";
.black-arrow.slick-slider .slick-prev {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 44px;
  height: 44px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  left: -35px;
  z-index: 10;
}
.black-arrow.slick-slider .slick-prev:hover::before {
  background: transparent;
}
.black-arrow.slick-slider .slick-prev:before {
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 5px;
  background: transparent;
}
.black-arrow.slick-slider .slick-prev.slick-disabled:before, .black-arrow.slick-slider .slick-next.slick-disabled:before {
  opacity: 0;
}
.black-arrow.slick-slider .slick-prev.slick-disabled:after, .black-arrow.slick-slider .slick-next.slick-disabled:after {
  opacity: 0;
}
.black-arrow.slick-slider .slick-prev:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: no-repeat 50% 50% url(../images/icon/arrow-next.svg);
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.black-arrow.slick-slider .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 44px;
  height: 44px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  right: -35px;
  z-index: 10;
}
.black-arrow.slick-slider .slick-next:hover::before {
  background: transparent;
}
.black-arrow.slick-slider .slick-next:before {
  position: absolute;
  opacity: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  border-radius: 5px;
  background: transparent;
}
.black-arrow.slick-slider .slick-next:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: no-repeat 50% 50% url(../images/icon/arrow-next.svg);
}

.modal-enter {
  opacity: 0;
}

.modal-leave-active {
  opacity: 0;
}

.modal-enter .modal-wrapper,
.modal-leave-active .modal-wrapper {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.modal-mask {
  position: fixed;
  z-index: 10001;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}
.modal-mask .modal-wrapper {
  width: calc(100% - 20px);
  max-width: 411px;
  margin: 0px auto;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
  position: relative;
}
.modal-mask .modal-wrapper .modal-container {
  width: 100%;
  height: 100%;
}
.modal-mask .modal-wrapper .modal-container .modal-header {
  padding: 15px 15px 0 15px;
}
@media screen and (min-width: 661px) {
  .modal-mask .modal-wrapper .modal-container .modal-header {
    padding: 20px 20px 0 20px;
  }
}
.modal-mask .modal-wrapper .modal-container .modal-header .modal-header-close-button {
  font-size: 0;
  text-align: right;
  width: 16px;
  height: 16px;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='16' height='16' viewBox='0 0 23 23' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cline x1='1.20592' y1='21.3798' x2='21.2929' y2='1.29285' stroke='black' stroke-width='2'%3e%3c/line%3e%3cline x1='1.70711' y1='1.29289' x2='21.7941' y2='21.3799' stroke='black' stroke-width='2'%3e%3c/line%3e%3c/svg%3e");
  background-repeat: no-repeat;
}
.modal-mask .modal-wrapper .modal-container .modal-header .modal-header-title {
  font-family: "akrobat", sans-serif;
  font-style: normal;
  font-weight: 900;
  color: #978cbf;
  font-size: 18px;
  padding: 0 0 20px 0;
  text-align: left;
}
@media screen and (min-width: 661px) {
  .modal-mask .modal-wrapper .modal-container .modal-header .modal-header-title {
    padding: 0 10px 10px 10px;
    font-size: 24px;
  }
}
.modal-mask .modal-wrapper .modal-container .modal-body {
  padding: 20px 15px 25px 15px;
}
@media screen and (min-width: 661px) {
  .modal-mask .modal-wrapper .modal-container .modal-body {
    padding: 20px 30px 25px 30px;
  }
}
.modal-mask .modal-wrapper .modal-container .modal-body .info {
  text-align: left;
  padding-bottom: 20px;
}
.modal-mask .modal-wrapper .modal-container .modal-body .info br {
  content: "A" !important;
  display: block !important;
  margin-bottom: 15px !important;
}
.modal-mask .modal-wrapper .modal-container .modal-body .form-in-modal {
  display: grid;
  grid-gap: 18px;
  grid-template-columns: repeat(1, 1fr);
}
.modal-mask .modal-wrapper .modal-container .modal-body .field {
  display: block;
  width: 100%;
  outline: none;
  border-width: 1px;
  border-style: solid;
  border-radius: 5px;
  font-family: "akrobat", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  padding: 0 15px;
}
.modal-mask .modal-wrapper .modal-container .modal-body .field.warning {
  border-width: 1px;
  border-style: solid;
}
.modal-mask .modal-wrapper .modal-container .modal-body .field-text {
  height: 47px;
}
.modal-mask .modal-wrapper .modal-container .modal-body .field-textarea {
  resize: none;
  padding: 15px;
  height: 82px;
  box-sizing: border-box;
}
.modal-mask .modal-wrapper .modal-container .modal-body .check-label {
  font-size: 15px;
}
.modal-mask .modal-wrapper .modal-container .modal-body .descr {
  text-align: center;
  margin-bottom: 20px;
}
.modal-mask .modal-wrapper .modal-container .modal-body .code {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.modal-mask .modal-wrapper .modal-container .modal-body .code .input-number {
  width: 55px;
  height: 60px;
  border-width: 1px;
  border-style: solid;
  box-sizing: border-box;
  border-radius: 5px;
  font-family: "akrobat", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 39px;
  text-align: center;
  -moz-appearance: textfield;
}
.modal-mask .modal-wrapper .modal-container .modal-body .code .input-number::-webkit-outer-spin-button, .modal-mask .modal-wrapper .modal-container .modal-body .code .input-number::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.modal-mask .modal-wrapper .modal-container .modal-body .code .input-number:focus {
  border-width: 1px;
  border-style: solid;
}
.modal-mask .modal-wrapper .modal-container .modal-body .code-timer {
  text-align: center;
  margin: 20px 0;
  cursor: pointer;
}
.modal-mask .modal-wrapper .modal-container .modal-body .get-new-code {
  margin: 20px auto;
  cursor: pointer;
  border-radius: 5px;
  width: 100%;
  max-width: 200px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-mask .modal-wrapper .modal-container .modal-body .text-new-code {
  text-align: center;
  margin: 20px 0;
}
.modal-mask .modal-wrapper .modal-container .modal-body .get-code {
  margin: 20px auto;
  cursor: pointer;
  border-radius: 5px;
  width: 100%;
  max-width: 160px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: -moz-linear-gradient(0deg, #ffb11b 0%, #ff9000 100%);
  background-image: -webkit-linear-gradient(0deg, #ffb11b 0%, #ff9000 100%);
  background-image: -ms-linear-gradient(0deg, #ffb11b 0%, #ff9000 100%);
  color: #fff;
}
.modal-mask .modal-wrapper .modal-container .modal-body .link-phone, .modal-mask .modal-wrapper .modal-container .modal-body .link-email {
  text-align: center;
  padding-top: 0;
  cursor: pointer;
  color: #777777;
}
.modal-mask .modal-wrapper .modal-container .modal-body .link-phone:hover, .modal-mask .modal-wrapper .modal-container .modal-body .link-email:hover {
  color: #ffa800;
  text-decoration: underline;
}
.modal-mask .modal-wrapper .modal-container .modal-footer {
  padding: 5px 30px 60px 30px;
}
@media screen and (min-width: 768px) {
  .modal-mask .modal-wrapper .modal-container .modal-footer {
    padding: 40px 30px 60px 30px;
  }
}
.modal-mask .modal-wrapper .modal-container .modal-footer .modal-close-button {
  margin: 0 auto;
  width: 212px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 6px;
  background-image: -moz-linear-gradient(0deg, #ffb11b 0%, #ff9000 100%);
  background-image: -webkit-linear-gradient(0deg, #ffb11b 0%, #ff9000 100%);
  background-image: -ms-linear-gradient(0deg, #ffb11b 0%, #ff9000 100%);
  box-shadow: 0px 18px 21px 0px rgba(0, 0, 0, 0.1);
  font-size: 18px;
  font-family: "akrobat", sans-serif;
  font-style: normal;
  font-weight: 700;
  color: white;
  line-height: normal;
}
.modal-mask.modal-calc .modal-wrapper {
  height: 700px;
  max-height: 100%;
}
@media screen and (min-width: 768px) {
  .modal-mask.modal-calc .modal-wrapper {
    min-width: 530px;
  }
}
.modal-mask.modal-error .modal-wrapper {
  height: 246px;
  max-height: 100%;
}

body {
  max-width: 1920px;
  margin: 0 auto;
  line-height: normal;
}

@media (min-width: 1490px) {
  .container {
    max-width: 1460px;
  }
}

.body-overflow {
  overflow: hidden;
}

/*main-slider*/
.main-slider {
  background-color: #f3f2f6;
  height: auto;
}
@media (min-width: 1490px) {
  .main-slider {
    background-image: url("/templates/kss_fe_public_new/images/circlefan.png");
    background-position: 0 365px;
    background-repeat: no-repeat;
    max-height: 740px;
  }
}
.main-slider .container {
  padding: 60px 15px 0 15px;
}
@media (min-width: 566px) {
  .main-slider .container {
    padding: 110px 15px 0 15px;
  }
}
@media (min-width: 991px) {
  .main-slider .container {
    padding: 120px 15px;
  }
}
.main-slider .container .fan-carousel-caption {
  text-align: left;
}
.main-slider .item {
  display: block;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .main-slider .item {
    display: flex;
  }
}
.main-slider a {
  text-decoration: none;
}
.main-slider .title {
  font-size: 30px;
  font-family: "akrobat", sans-serif;
  font-style: normal;
  font-weight: 900;
  color: #978cbf;
  line-height: normal;
  margin-bottom: 50px;
}
@media (min-width: 566px) {
  .main-slider .title {
    font-size: 40px;
  }
}
@media (min-width: 768px) {
  .main-slider .title {
    font-size: 60px;
  }
}
.main-slider .text {
  width: 100%;
  font-size: 20px;
  font-family: "akrobat", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #777777;
  line-height: 1.334;
}
@media (min-width: 566px) {
  .main-slider .text {
    font-size: 24px;
  }
}
@media (min-width: 768px) {
  .main-slider .text {
    width: 70%;
    font-size: 30px;
  }
}
.main-slider .slider-button {
  margin-top: 110px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .main-slider .slider-button {
    padding: 20px 0;
  }
}
.main-slider .slider-button span {
  cursor: pointer;
  border-radius: 6px;
  background-image: -moz-linear-gradient(0deg, #ffb11b 0%, #ff9000 100%);
  background-image: -webkit-linear-gradient(0deg, #ffb11b 0%, #ff9000 100%);
  background-image: -ms-linear-gradient(0deg, #ffb11b 0%, #ff9000 100%);
  box-shadow: 0px 18px 21px 0px rgba(0, 0, 0, 0.1);
  padding: 12px 45px;
  font-size: 18px;
  font-family: "akrobat", sans-serif;
  font-style: normal;
  font-weight: 700;
  color: white;
  line-height: normal;
}
@media (min-width: 768px) {
  .main-slider .slider-button span {
    padding: 20px 55px;
  }
}
.main-slider img {
  max-height: 358px;
  max-width: 100%;
}
.main-slider .tovar-title {
  margin: 40px 0 20px 0;
  font-size: 30px;
  font-family: "akrobat", sans-serif;
  font-style: normal;
  font-weight: 700;
  text-align: center;
  color: black;
  line-height: normal;
}
.main-slider .tovar-price {
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-slider .tovar-price .new-price {
  font-size: 48px;
  font-family: "akrobat", sans-serif;
  font-style: normal;
  font-weight: 700;
  color: #ffa800;
  line-height: normal;
  margin-right: 20px;
}
.main-slider .tovar-price .old-price {
  font-size: 24px;
  font-family: "akrobat", sans-serif;
  font-style: normal;
  font-weight: 700;
  color: #999999;
  text-decoration: line-through;
  line-height: normal;
}

/*main-slider конец*/
/*akcii-slider*/
.akcii-slider .top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 70px;
}
.akcii-slider .top-content .title {
  font-size: 30px;
  font-family: "akrobat", sans-serif;
  font-style: normal;
  font-weight: 900;
  color: #978cbf;
  line-height: normal;
}
@media (min-width: 768px) {
  .akcii-slider .top-content .title {
    font-size: 48px;
  }
}
.akcii-slider .top-content .link a {
  font-size: 18px;
  font-family: "akrobat", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: black;
  line-height: normal;
}
.akcii-slider .top-content .link a:after {
  content: url(/templates/kss_fe_public_new/images/arrow.png);
  width: 20px;
  height: 14px;
  margin-left: 15px;
}
@media (min-width: 1230px) {
  .akcii-slider .slider-content {
    padding: 0 20px;
  }
}
.akcii-slider .slider-content .item {
  display: flex;
  justify-content: center;
  padding: 5px;
}
@media (min-width: 1230px) {
  .akcii-slider .slider-content .item {
    padding: 15px;
  }
}
.akcii-slider .slider-content img {
  border-radius: 20px;
  max-width: 100%;
  max-height: 100%;
}

/*akcii-slider конец*/
/*popular-stores*/
.popular-stores {
  background-color: #f3f2f6;
  height: auto;
}
.popular-stores .top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.popular-stores .top-content .title {
  font-size: 30px;
  font-family: "akrobat", sans-serif;
  font-style: normal;
  font-weight: 900;
  color: #978cbf;
}
@media (min-width: 768px) {
  .popular-stores .top-content .title {
    font-size: 48px;
    line-height: normal;
  }
}
.popular-stores .top-content .link {
  margin-top: 8px;
}
.popular-stores .top-content .link a {
  font-size: 18px;
  font-family: "akrobat", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: black;
  line-height: normal;
}
.popular-stores .top-content .link a:after {
  content: url(/templates/kss_fe_public_new/images/arrow.png);
  width: 20px;
  height: 14px;
  margin-left: 15px;
}
.popular-stores .shop-content {
  margin-top: 60px;
}
.popular-stores .shop-content .popular-stores-flags {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(4, 1fr);
}
@media only screen and (min-width: 560px) {
  .popular-stores .shop-content .popular-stores-flags {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media only screen and (min-width: 1024px) {
  .popular-stores .shop-content .popular-stores-flags {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media only screen and (min-width: 1280px) {
  .popular-stores .shop-content .popular-stores-flags {
    grid-template-columns: repeat(8, 1fr);
  }
}
.popular-stores .shop-content .popular-stores-flags .flag {
  min-width: 0;
  cursor: pointer;
  height: 85px;
  width: auto;
  overflow: hidden;
  border-radius: 10px;
}
.popular-stores .shop-content .popular-stores-flags .flag picture .kss-picture {
  border-radius: 10px;
  height: 85px;
  width: auto;
}
.popular-stores .shop-content .popular-stores-logo {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 20px;
}
@media only screen and (min-width: 560px) {
  .popular-stores .shop-content .popular-stores-logo {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media only screen and (min-width: 1024px) {
  .popular-stores .shop-content .popular-stores-logo {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media only screen and (min-width: 1280px) {
  .popular-stores .shop-content .popular-stores-logo {
    grid-template-columns: repeat(6, 1fr);
  }
}
.popular-stores .shop-content .popular-stores-logo .logo {
  position: relative;
  display: block;
  cursor: pointer;
  background-color: #fff;
  border-radius: 10px;
}
.popular-stores .shop-content .popular-stores-logo .logo:after {
  content: "";
  display: block;
  padding-top: 100%;
}
.popular-stores .shop-content .popular-stores-logo .logo .logo-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
@media (min-width: 768px) {
  .popular-stores .shop-content .popular-stores-logo .logo .logo-wrap {
    padding: 20px;
  }
}
.popular-stores .shop-content .popular-stores-logo .logo .logo-wrap picture {
  text-align: center;
  width: 100%;
  height: auto;
}
.popular-stores .shop-content .popular-stores-logo .logo .logo-wrap picture img {
  max-width: 100%;
  height: auto;
}

/*popular-stores конец*/
/*joint-purchases*/
.joint-purchases .first-col {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .joint-purchases .first-col {
    margin-bottom: 0;
  }
}
.joint-purchases .first-col .title {
  font-size: 30px;
  font-family: "akrobat", sans-serif;
  font-style: normal;
  font-weight: 900;
  color: #978cbf;
  line-height: normal;
  margin-bottom: 40px;
  text-align: center;
}
@media (min-width: 768px) {
  .joint-purchases .first-col .title {
    font-size: 48px;
    margin-bottom: 60px;
    text-align: left;
  }
}
.joint-purchases .first-col .text {
  width: 100%;
  font-size: 18px;
  font-family: "akrobat", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #999999;
  line-height: normal;
  text-align: center;
}
@media (min-width: 768px) {
  .joint-purchases .first-col .text {
    width: 80%;
    text-align: left;
  }
}
.joint-purchases .second-col .title {
  font-size: 30px;
  font-family: "akrobat", sans-serif;
  font-style: normal;
  font-weight: 700;
  color: #ffa800;
  line-height: normal;
  text-align: center;
}
@media (min-width: 768px) {
  .joint-purchases .second-col .title {
    text-align: left;
  }
}
.joint-purchases .second-col .social {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  margin: 30px 0 60px 0;
}
.joint-purchases .second-col .social a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background-color: #978cbf;
  border-radius: 20px;
  color: white;
  padding: 10px 20px;
  width: 210px;
  font-family: "akrobat", sans-serif;
  font-style: normal;
  font-weight: 700;
}
.joint-purchases .second-col .social a img {
  width: 24px;
  height: 24px;
}
.joint-purchases .second-col a {
  text-decoration: none;
}
.joint-purchases .second-col .joint-purchases-button {
  padding: 20px 0;
  text-align: center;
}
@media (min-width: 768px) {
  .joint-purchases .second-col .joint-purchases-button {
    padding: 20px 0;
    text-align: left;
  }
}
.joint-purchases .second-col .joint-purchases-button span {
  cursor: pointer;
  border-radius: 6px;
  background-image: -moz-linear-gradient(0deg, #ffb11b 0%, #ff9000 100%);
  background-image: -webkit-linear-gradient(0deg, #ffb11b 0%, #ff9000 100%);
  background-image: -ms-linear-gradient(0deg, #ffb11b 0%, #ff9000 100%);
  box-shadow: 0px 18px 21px 0px rgba(0, 0, 0, 0.1);
  padding: 20px 75px;
  font-size: 18px;
  font-family: "akrobat", sans-serif;
  font-style: normal;
  font-weight: 700;
  color: white;
  line-height: normal;
}

/*joint-purchases конец*/
/*products*/
.products {
  background-color: #f3f2f6;
  height: auto;
}
.products .top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .products .top-content {
    margin-bottom: 60px;
  }
}
.products .top-content .title {
  font-size: 30px;
  font-family: "akrobat", sans-serif;
  font-style: normal;
  font-weight: 900;
  color: #978cbf;
  line-height: normal;
}
@media (min-width: 768px) {
  .products .top-content .title {
    font-size: 48px;
  }
}
.products .top-content .title .link a {
  font-size: 18px;
  font-family: "akrobat", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: black;
  line-height: normal;
}
.products .top-content .title .link a:after {
  content: url(/templates/kss_fe_public_new/images/arrow.png);
  width: 20px;
  height: 14px;
  margin-left: 15px;
}
.products .products-content .product {
  display: block;
  background-color: #fff;
  text-align: center;
  max-width: 333px;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 30px;
  width: 48%;
}
@media (min-width: 768px) {
  .products .products-content .product {
    padding: 30px;
    width: 23.5%;
  }
}
.products .products-content .product .product-shop {
  font-size: 14px;
  font-family: "akrobat", sans-serif;
  font-style: normal;
  font-weight: 700;
  color: #978cbf;
}
@media (min-width: 768px) {
  .products .products-content .product .product-shop {
    font-size: 18px;
  }
}
.products .products-content .product .product-image {
  overflow: hidden;
  padding: 50%;
  position: relative;
}
.products .products-content .product .product-image img {
  max-width: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  vertical-align: middle;
  display: block;
}
.products .products-content .product .product-title {
  font-size: 14px;
  font-family: "akrobat", sans-serif;
  font-style: normal;
  font-weight: 700;
  color: black;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 768px) {
  .products .products-content .product .product-title {
    font-size: 18px;
  }
}
.products .products-content .product .product-price {
  display: flex;
  align-items: center;
  justify-content: center;
}
.products .products-content .product .product-price .new-price {
  font-size: 20px;
  font-family: "akrobat", sans-serif;
  font-style: normal;
  font-weight: 700;
  color: #ffa800;
  line-height: normal;
  margin-right: 10px;
}
@media (min-width: 768px) {
  .products .products-content .product .product-price .new-price {
    font-size: 24px;
    margin-right: 20px;
  }
}
.products .products-content .product .product-price .old-price {
  font-size: 14px;
  font-family: "akrobat", sans-serif;
  font-style: normal;
  font-weight: 700;
  color: #999999;
  text-decoration: line-through;
  line-height: normal;
}
@media (min-width: 768px) {
  .products .products-content .product .product-price .old-price {
    font-size: 18px;
  }
}

/*products конец*/
/*calculator*/
.calculator {
  background-image: url(/templates/kss_fe_public_new/images/calc.jpg);
  height: auto;
  background-size: cover;
}
.calculator .title {
  text-align: center;
  font-size: 30px;
  font-family: "akrobat", sans-serif;
  font-style: normal;
  font-weight: 900;
  color: white;
  line-height: normal;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .calculator .title {
    font-size: 48px;
    margin-bottom: 60px;
  }
}
.calculator .kss-modal-calc .logo-wrap img {
  max-width: 130px;
}
.calculator .calc .calc-col {
  width: 100%;
  margin-right: 0;
  height: 60px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .calculator .calc .calc-col {
    width: auto;
    margin-right: 20px;
  }
}
.calculator .calc .calc-col.calc-range {
  display: flex;
  flex-wrap: nowrap;
}
.calculator .calc .calc-col .range-wrap {
  width: 100%;
}
@media (min-width: 992px) {
  .calculator .calc .calc-col .range-wrap {
    width: 230px;
  }
}
.calculator .calc .calc-col .range-wrap .range-label, .calculator .calc .calc-col .range-wrap .range-0 {
  font-size: 18px;
  font-family: "akrobat", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: white;
  line-height: 12px;
}
.calculator .calc .calc-col .range-wrap .vue-slider {
  padding-left: 0 !important;
}
.calculator .calc .calc-col .range-wrap .vue-slider .vue-slider-rail {
  position: relative;
  display: block;
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.5);
}
.calculator .calc .calc-col .range-wrap .vue-slider .vue-slider-rail .vue-slider-process {
  background-color: #fff;
}
.calculator .calc .calc-col .range-wrap .vue-slider .vue-slider-dot .vue-slider-dot-handle {
  border-radius: 0;
  background-color: transparent;
  background-image: url(/templates/kss_fe_public_new/images/polzunok.png);
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: pointer;
  z-index: 4;
}
.calculator .calc .calc-col .range-value {
  border-style: solid;
  border-width: 2px;
  border-color: white;
  border-radius: 6px;
  width: 90px;
  height: 60px;
  font-size: 18px;
  font-family: "akrobat", sans-serif;
  font-style: normal;
  font-weight: 700;
  color: white;
  margin-left: 15px;
  background: transparent;
  text-align: center;
}
.calculator .calc .calc-col .range-value:focus {
  outline: none;
}
.calculator .calc .calc-row-main {
  /*calculator Поле страна*/
  /*calculator Поле страна конец*/
  /*calculator Поле город*/
  /*calculator Поле город конец*/
  /*calculator Поле город и страна общее*/
  /*calculator Поле город и страна общее конец*/
}
@media (min-width: 992px) {
  .calculator .calc .calc-row-main {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
}
.calculator .calc .calc-row-main .calc-country {
  position: relative;
}
.calculator .calc .calc-row-main .calc-country .vs__dropdown-toggle {
  border: 2px solid #fff;
  border-radius: 6px;
  width: auto;
  height: 60px;
  padding: 0 12px 0 0;
  padding-left: 70px;
}
@media (min-width: 992px) {
  .calculator .calc .calc-row-main .calc-country .vs__dropdown-toggle {
    width: 332px;
  }
}
.calculator .calc .calc-row-main .calc-country label {
  position: absolute;
  left: 16px;
  top: 19px;
  font-size: 18px;
  font-family: "akrobat", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: white;
}
.calculator .calc .calc-row-main .calc-city {
  position: relative;
}
.calculator .calc .calc-row-main .calc-city .vs__dropdown-toggle {
  padding: 0 12px 0 0;
  padding-left: 130px;
  border: 2px solid #fff;
  border-radius: 6px;
  width: auto;
  height: 60px;
}
@media (min-width: 992px) {
  .calculator .calc .calc-row-main .calc-city .vs__dropdown-toggle {
    width: 462px;
  }
}
.calculator .calc .calc-row-main .calc-city label {
  position: absolute;
  left: 16px;
  top: 19px;
  font-size: 18px;
  font-family: "akrobat", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: white;
}
.calculator .calc .calc-row-main .vs__dropdown-toggle .vs__search, .calculator .calc .calc-row-main .vs__dropdown-toggle .vs__selected {
  padding: 0;
  margin: 0;
  line-height: normal;
}
.calculator .calc .calc-row-main .vs__open-indicator, .calculator .calc .calc-row-main .vs__clear {
  fill: white;
  line-height: 0;
}
.calculator .calc .calc-row-main .vs__dropdown-menu {
  display: block;
  box-sizing: border-box;
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  z-index: 1000;
  padding: 5px 0;
  margin: 0;
  width: 100%;
  max-height: 350px;
  min-width: 160px;
  overflow-y: auto;
  box-shadow: none;
  border: 1px solid #ffa800;
  border-top-style: none;
  border-radius: 4px;
  text-align: left;
  list-style: none;
  background: #fff;
}
.calculator .calc .calc-row-main .vs__dropdown-option--highlight {
  background: #ffa800 !important;
  color: #fff;
}
.calculator .calc .calc-button {
  display: block;
  margin: 0 auto;
  border: none;
  border-radius: 6px;
  background-color: #fff;
  width: 213px;
  height: 60px;
  box-shadow: 0px 18px 21px 0px rgba(0, 0, 0, 0.1);
}
@media (min-width: 992px) {
  .calculator .calc .calc-button {
    display: none;
  }
}
.calculator .calc .calc-button-top {
  border: none;
  border-radius: 6px;
  background-color: #fff;
  width: 213px;
  height: 60px;
  box-shadow: 0px 18px 21px 0px rgba(0, 0, 0, 0.1);
  display: none;
}
@media (min-width: 992px) {
  .calculator .calc .calc-button-top {
    display: block;
  }
}
.calculator .calc .calc-open-show {
  text-align: center;
  margin: 30px 0;
  font-size: 18px;
  font-family: "akrobat", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: white;
  cursor: pointer;
}
.calculator .calc .calc-open-show:after {
  content: url(/templates/kss_fe_public_new/images/arrow_down.png);
  width: 9px;
  height: 13px;
  margin-left: 15px;
}
.calculator .calc .calc-open-show.open:after {
  content: url(/templates/kss_fe_public_new/images/arrow_up.png);
  width: 9px;
  height: 13px;
  margin-left: 15px;
}
@media (min-width: 992px) {
  .calculator .calc .calc-row-dop {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
}

/*calculator конец*/
/*how_it_work*/
.how_it_work .top-content {
  display: block;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .how_it_work .top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
  }
}
.how_it_work .top-content .title {
  font-size: 30px;
  font-family: "akrobat", sans-serif;
  font-style: normal;
  font-weight: 900;
  color: #978cbf;
  line-height: normal;
  text-align: center;
}
@media (min-width: 992px) {
  .how_it_work .top-content .title {
    font-size: 48px;
    text-align: left;
  }
}
.how_it_work .top-content .link {
  display: none;
}
@media (min-width: 992px) {
  .how_it_work .top-content .link {
    display: block;
  }
}
.how_it_work .top-content .link a {
  font-size: 18px;
  font-family: "akrobat", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: black;
  line-height: normal;
}
@media (min-width: 1490px) {
  .how_it_work .row {
    background: url("/templates/kss_fe_public_new/images/footprints.png") 290px 0 no-repeat;
  }
}
.how_it_work .row > div {
  text-align: center;
}
.how_it_work .row img {
  margin: 0 auto 20px auto;
  max-width: 100%;
  max-height: 100%;
}
.how_it_work .row h3 {
  font-size: 20px;
  font-family: "akrobat", sans-serif;
  font-style: normal;
  font-weight: 700;
  color: #ffa800;
  text-align: center;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .how_it_work .row h3 {
    font-size: 30px;
  }
}
.how_it_work .row .text {
  font-size: 14px;
  font-family: "akrobat", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #999999;
  line-height: normal;
  text-align: center;
}
@media (min-width: 992px) {
  .how_it_work .row .text {
    font-size: 18px;
  }
}

/*how_it_work конец*/
/*why*/
.why {
  background-color: #f3f2f6;
  height: auto;
}
.why .title {
  text-align: center;
  font-size: 30px;
  font-family: "akrobat", sans-serif;
  font-style: normal;
  font-weight: 900;
  color: #978cbf;
  line-height: normal;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .why .title {
    font-size: 48px;
    margin-bottom: 60px;
  }
}
.why .row .why-pic {
  height: 210px;
  width: 100%;
  margin-bottom: 20px;
  text-align: center;
}
.why .row .why-pic img {
  max-width: 100%;
  height: 210px;
}
.why .why-text {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .why .why-text {
    padding-left: 20px;
  }
}
.why .why-text h3 {
  font-size: 30px;
  font-family: "akrobat", sans-serif;
  font-style: normal;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: black;
}
@media (min-width: 992px) {
  .why .why-text h3 {
    font-size: 30px;
    text-align: left;
  }
}

/*why конец*/
/*reviews*/
.reviews .top-content {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
@media (min-width: 500px) {
  .reviews .top-content {
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .reviews .top-content {
    margin-bottom: 60px;
  }
}
.reviews .top-content .title {
  font-size: 30px;
  font-family: "akrobat", sans-serif;
  font-style: normal;
  font-weight: 900;
  color: #978cbf;
  line-height: normal;
  padding: 5px 0;
}
@media (min-width: 768px) {
  .reviews .top-content .title {
    font-size: 48px;
  }
}
.reviews .top-content .link {
  padding: 5px 0;
}
.reviews .top-content .link a {
  font-size: 14px;
  font-family: "akrobat", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: black;
  line-height: normal;
}
@media (min-width: 768px) {
  .reviews .top-content .link a {
    font-size: 18px;
  }
}
.reviews .top-content .link a:after {
  content: url(/templates/kss_fe_public_new/images/arrow.png);
  width: 20px;
  height: 14px;
  margin-left: 15px;
}
.reviews .row-review {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.reviews .row-review .review-container {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  background-color: #f3f2f6;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .reviews .row-review .review-container {
    padding: 20px;
  }
}
@media (min-width: 1200px) {
  .reviews .row-review .review-container {
    width: 48%;
    padding: 30px;
  }
}
.reviews .row-review .review-container.noactive {
  background-color: #ffeee6;
}
.reviews .row-review .review-container .review {
  display: flex;
  flex-wrap: nowrap;
}
.reviews .row-review .review-container .review .first-col .photos .photo img {
  border-radius: 10px;
  min-width: 100px;
  height: 100px;
}
@media (min-width: 768px) {
  .reviews .row-review .review-container .review .first-col .photos .photo img {
    min-width: 180px;
    height: 180px;
  }
}
@media (min-width: 1200px) {
  .reviews .row-review .review-container .review .first-col .photos .photo img {
    min-width: 200px;
    height: 200px;
  }
}
.reviews .row-review .review-container .review .second-col {
  padding-left: 10px;
  flex-grow: 1;
}
@media (min-width: 768px) {
  .reviews .row-review .review-container .review .second-col {
    padding-left: 20px;
  }
}
.reviews .row-review .review-container .review .second-col .review-data {
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.reviews .row-review .review-container .review .second-col .review-data .review-user-info {
  font-size: 14px;
  font-family: "akrobat", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: black;
}
@media (min-width: 768px) {
  .reviews .row-review .review-container .review .second-col .review-data .review-user-info {
    font-size: 24px;
  }
}
.reviews .row-review .review-container .review .second-col .review-data .review-date {
  font-size: 14px;
  font-family: "akrobat", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #999999;
}
@media (min-width: 768px) {
  .reviews .row-review .review-container .review .second-col .review-data .review-date {
    font-size: 18px;
  }
}
.reviews .row-review .review-container .review .second-col .review-text {
  font-size: 14px;
  font-family: "akrobat", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: black;
}
@media (min-width: 768px) {
  .reviews .row-review .review-container .review .second-col .review-text {
    font-size: 18px;
  }
}
.reviews .row-review .review-container .review .second-col .admin_action {
  margin-top: 20px;
  font-size: 14px;
  font-family: "akrobat", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: black;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .reviews .row-review .review-container .review .second-col .admin_action {
    font-size: 18px;
  }
}
.reviews .row-review .review-container .review .second-col .rating {
  margin: 20px 0;
}

/*reviews конец*/

/*# sourceMappingURL=kss-page-main.css.map */
