@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');
* {
  box-sizing: border-box;
}
*::before,
*::after {
  box-sizing: border-box;
}
.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.flex-st {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
p {
  margin-top: 0;
}
a {
  color: inherit;
}
input,
textarea,
select,
option {
  font-family: inherit;
  font-size: inherit;
}
:focus {
  outline: 0;
}
table {
  border-collapse: collapse;
}
body {
  padding: 0;
  margin: 0;
}
body {
  color: #3c3c3c;
  font-family: "Open Sans";
  font-size: 16px;
  background: #fff;
}
input,
textarea {
  border: none;
  display: block;
  border-radius: 8px;
}
a {
  color: #1f9d9b;
  cursor: pointer;
}
.form label {
  display: block;
  margin: 0 0 20px;
  width: 100%;
}
.form label .t {
  font-weight: 600;
}
.form label input,
.form label select {
  display: block;
  width: 100%;
  border-radius: 8px;
  border: 1px solid #1f9d9b;
  line-height: 20px;
  padding: 10px 20px;
}
.form button {
  border: none;
  display: block;
  width: 100%;
}
.invalid {
  border-color: red;
  box-shadow: 0 0 3px red;
  color: red;
}
.container {
  max-width: 1218px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1218px) {
  .container {
    padding: 0 10px;
  }
}
.block-title {
  font-weight: 600;
  margin: 0 0 10px;
  font-size: 18px;
}
.gradient-grey {
  background: linear-gradient(0, #faf9f9, #fff);
  padding: 0 0 1px;
}
.gradient-grey.main-head {
  padding: 0 0 221px;
}
@media (max-width: 1218px) {
  .gradient-grey.main-head {
    padding: 0 0 1px;
  }
}
.gradient-grey.first {
  margin: 0 0 50px;
}
@media (max-width: 1218px) {
  .gradient-grey.first {
    margin: 0 0 20px;
  }
}
.btn {
  background: #1f9d9b;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  padding: 13px;
  line-height: 20px;
  transition: 0.2s;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.btn:hover {
  background: #067771;
}
.btn.active {
  background: #067771;
}
.btn.grey {
  background: #797777;
}
.btn.grey:hover {
  background: #666;
}
.header {
  padding: 18px 0 20px;
}
@media (max-width: 1218px) {
  .header {
    padding: 10px;
  }
}
.header .logo {
  display: block;
  background: url("/usertpl/i/logo.png") no-repeat center / contain;
  max-width: 380px;
  width: 100%;
  height: 86px;
  margin: 0 0 20px;
}
@media (max-width: 1218px) {
  .header .logo {
    margin: 0 0 15px;
  }
}
.header .searchblock {
  width: 300px;
  height: 48px;
  border-radius: 8px;
  position: relative;
  margin: 22px 0 20px;
}
@media (max-width: 1218px) {
  .header .searchblock {
    display: none;
  }
}
.header .searchblock input {
  background: #edecec;
  width: 100%;
  height: 48px;
  padding: 0 60px 0 28px;
  font-weight: 300;
  font-family: "Roboto Condensed";
}
.header .searchblock .icon {
  background: url("/usertpl/i/icon-search.png") no-repeat center #1f9d9b;
  border-radius: 8px;
  position: absolute;
  right: 0;
  top: 0;
  width: 48px;
  height: 48px;
  cursor: pointer;
}
.header .searchblock .results {
  display: none;
  position: absolute;
  top: 46px;
  left: 0;
  border: 1px solid #ddd8d4;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  padding: 3px 16px;
  z-index: 5;
  max-height: 286px;
  overflow-y: scroll;
}
@media (max-width: 1218px) {
  .header .searchblock .results {
    width: 340px;
  }
}
.header .searchblock .results.vis {
  display: block;
}
.header .searchblock .results .item {
  padding: 12px 0;
  border-bottom: 1px solid #e1e1e1;
}
.header .searchblock .results .item:last-child {
  border: none;
}
.header .searchblock .results .item .img {
  display: block;
  width: 58px;
  height: 68px;
  background: no-repeat center / contain;
}
.header .searchblock .results .item .r {
  width: calc(100% - 75px);
  padding: 8px 0;
}
.header .searchblock .results .item .r .title {
  color: #1f9d9b;
  font-size: 19px;
  font-weight: 900;
  margin: 0 0 2px;
  text-decoration: none;
  overflow: hidden;
  height: 26px;
  line-height: 26px;
  display: block;
}
.header .searchblock .results .item .r .priceblock .t {
  color: #747472;
  font-size: 13px;
  font-weight: 300;
  margin: 0 7px 0 0;
}
.header .searchblock .results .item .r .priceblock .price {
  font-size: 16px;
  font-weight: 600;
  color: #1f9d9b;
}
.header .contactblock {
  margin: 22px 0 20px;
  font-family: "Roboto Condensed";
}
@media (max-width: 1218px) {
  .header .contactblock {
    margin: 0 0 20px;
  }
}
.header .contactblock .phone {
  margin: 0 0 5px;
  line-height: 21px;
  text-decoration: none;
  font-size: 20px;
  color: #3c3c3c;
}
.header .contactblock .phone .icon-phone {
  background: url("/usertpl/i/icon-phone.png") no-repeat center #1f9d9b;
  margin: 0 5px 0 0;
  width: 21px;
  height: 21px;
  cursor: pointer;
  border-radius: 8px;
}
.header .contactblock .phone span {
  display: block;
}
.header .contactblock .place {
  line-height: 21px;
  font-size: 17px;
  cursor: pointer;
  position: relative;
}
.header .contactblock .place .icon-arrow-down {
  background: url("/usertpl/i/icon-arrow-down.png") no-repeat center #1f9d9b;
  margin: 0 5px 0 0;
  width: 21px;
  height: 21px;
  cursor: pointer;
  border-radius: 8px;
}
.header .contactblock .place .icon-wa {
  background: url("/usertpl/i/icon-soc-wa.png") no-repeat center #1f9d9b;
  background-size: 14px;
  margin: 0 5px 0 0;
  width: 21px;
  height: 21px;
  cursor: pointer;
  border-radius: 8px;
}
.header .contactblock .place .title {
  border-bottom: 1px dashed #1f9d9b;
  /*width: 136px;*/
  overflow: hidden;
  height: 22px;
}
.header .contactblock .place .list {
  position: absolute;
  top: 22px;
  background: #fff;
  padding: 5px 10px 5px 27px;
  width: 160px;
  font-size: 14px;
  overflow-x: hidden;
  border-radius: 8px;
  display: none;
  z-index: 10;
}
.header .contactblock .place .list.opened {
  display: block;
}
.header .contactblock .place .list::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 80px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), #ffffff);
}
.header .contactblock .place .list .option {
  width: 160px;
  overflow: hidden;
  height: 20px;
  line-height: 20px;
  margin: 0 0 5px;
}
.header .contactblock .place .list .option:last-child {
  margin: 0;
}
.header .contactblock .place .list .t {
  margin: 0 0 5px;
}
.header .profile {
  background: url("/usertpl/i/icon-profile.png") no-repeat center #1f9d9b;
  height: 48px;
  width: 48px;
  border-radius: 8px;
  margin: 22px 0 20px;
  display: block;
  cursor: pointer;
}
@media (max-width: 1218px) {
  .header .profile {
    margin: 0 0 20px;
  }
}
.header .cart {
  background: #edecec;
  text-align: center;
  position: relative;
  height: 48px;
  width: 162px;
  border-radius: 8px;
  margin: 22px 0 20px;
  text-decoration: none;
}
@media (max-width: 1218px) {
  .header .cart {
    width: 48px;
    margin: 0 0 20px;
  }
}
.header .cart .text {
  color: #cb2f3e;
  padding: 14px 48px 14px 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
}
@media (max-width: 1218px) {
  .header .cart .text {
    display: none;
  }
}
.header .cart .icon-cart {
  border-radius: 8px;
  width: 48px;
  height: 48px;
  background: url("/usertpl/i/icon-cart.png") no-repeat center #1f9d9b;
  position: absolute;
  top: 0;
  right: 0;
}
.menu {
  margin: 0 auto -20px;
}
@media (max-width: 1218px) {
  .menu {
    display: none;
  }
}
.menu.main {
  margin: 0 auto 38px;
}
.menu .item {
  display: block;
  background: #edecec;
  margin: 0 10px 10px 0;
  transition: 0.2s;
  text-decoration: none;
  text-align: center;
  padding: 13px 32px;
  line-height: 20px;
  font-size: 15px;
  font-weight: bold;
  border-radius: 25px;
  color: #3c3c3c;
}
.visible {
  visibility: visible;
}
.menu .item:hover {
  background: #067771;
  color: #fff;
}
.menu .item.active {
  background: #067771;
  color: #fff;
}
.menu .item.hidden {
  display: none;
}
.menu .item.more {
  margin: 0 0 10px;
}
.menu-mobile {
  font-size: 15px;
  font-weight: bold;
  display: none;
  border-radius: 8px;
  background: #1f9d9b;
  margin: 0 0 20px;
}
.menu-mobile.opened .title {
  display: none;
}
.menu-mobile.opened .close,
.menu-mobile.opened .catalog-menu,
.menu-mobile.opened .search {
  display: block;
}
.menu-mobile.opened .other-menu {
  display: flex;
}
@media (max-width: 1218px) {
  .menu-mobile {
    display: block;
  }
}
.menu-mobile a {
  color: inherit;
  text-decoration: none;
}
.menu-mobile .title {
  color: #fdfdfd;
  background: url("/usertpl/i/menu.png") no-repeat center / 28px;
  width: 48px;
  height: 48px;
  cursor: pointer;
}
.menu-mobile .close {
  background: url("/usertpl/i/menu-close.png") no-repeat center;
  cursor: pointer;
  width: 45px;
  height: 45px;
  display: none;
}
.menu-mobile .catalog-menu {
  padding: 25px;
  background: #1f9d9b;
  color: #fdfdfd;
  display: none;
}
.menu-mobile .catalog-menu .item {
  display: block;
  position: relative;
  padding: 0 0 0 40px;
  margin: 0 0 20px;
}
.menu-mobile .catalog-menu .item::before {
  content: '';
  display: block;
  background: #edecec;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
}
.menu-mobile .catalog-menu .item::after {
  content: '';
  display: block;
  background: url("/usertpl/i/menu-arrow-right.png") no-repeat center;
  width: 25px;
  height: 25px;
  position: absolute;
  left: 0;
  top: 0;
}
.menu-mobile .catalog-menu .item.opened::after {
  background-image: url("/usertpl/i/menu-arrow-down.png");
}
.menu-mobile .catalog-menu .item.opened .sub {
  display: block;
}
.menu-mobile .catalog-menu .item .sub {
  padding: 5px 0 0 8px;
  font-size: 14px;
  font-weight: 600;
  display: none;
}
.menu-mobile .catalog-menu .item .sub .sitem {
  margin: 0 0 5px;
  display: block;
}
.menu-mobile .catalog-menu .item .sub .sitem:last-child {
  margin: 0;
}
.menu-mobile .other-menu {
  background: #edecec;
  padding: 25px;
  border-radius: 0 0 8px 8px;
  display: none;
}
.menu-mobile .other-menu .item {
  display: block;
  position: relative;
  width: 145px;
  padding: 0 0 0 20px;
  height: 20px;
  line-height: 20px;
  margin: 0 0 10px;
}
.menu-mobile .other-menu .item::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #1f9d9b;
  position: absolute;
  left: 0;
  top: 5px;
}
.menu-mobile .search {
  padding: 0 25px;
  position: relative;
  display: none;
}
.menu-mobile .search .query {
  display: block;
  background: #edecec;
  height: 47px;
  border-radius: 8px;
  width: 100%;
  padding: 0 50px 0 20px;
}
.menu-mobile .search .btn {
  background: url("/usertpl/i/icon-search.png") no-repeat center #1f9d9b;
  width: 44px;
  height: 44px;
  position: absolute;
  right: 27px;
  top: 2px;
  border-radius: 8px;
}
.mainslider {
  margin: -222px auto 1px;
}
@media (max-width: 1218px) {
  .mainslider {
    margin: 0 auto 20px;
  }
}
.mainslider .wrap .item {
  display: block;
  width: 100%;
  height: 445px;
  background: no-repeat center / cover;
  border-radius: 8px;
}
@media (max-width: 1218px) {
  .mainslider .wrap .item {
    height: 354px;
  }
}
.mainslider .wrap .owl-nav {
  position: absolute;
  width: 100%;
}
.mainslider .wrap .owl-nav button.owl-prev {
  background: url("/usertpl/i/icon-arrow-left.png") no-repeat center #edecec;
  width: 47px;
  height: 47px;
  border-radius: 50%;
  position: absolute;
  left: -24px;
  top: -250px;
}
@media (max-width: 1218px) {
  .mainslider .wrap .owl-nav button.owl-prev {
    width: 25px;
    height: 25px;
    background-size: 8px;
    left: -6px;
    top: -200px;
  }
}
.mainslider .wrap .owl-nav button.owl-next {
  background: url("/usertpl/i/icon-arrow-right.png") no-repeat center #edecec;
  width: 47px;
  height: 47px;
  border-radius: 50%;
  position: absolute;
  right: -24px;
  top: -250px;
}
@media (max-width: 1218px) {
  .mainslider .wrap .owl-nav button.owl-next {
    width: 25px;
    height: 25px;
    background-size: 8px;
    right: -6px;
    top: -200px;
  }
}
.footer {
  padding: 53px 0 40px;
}
@media (max-width: 1218px) {
  .footer {
    padding: 40px 10px;
  }
}
.footer .fmenu {
  margin: 0 0 55px;
}
@media (max-width: 1218px) {
  .footer .fmenu {
    display: none;
  }
}
.footer .fmenu .item {
  display: block;
  background: #edecec;
  margin: 0 10px 10px 0;
  transition: 0.2s;
  text-decoration: none;
  text-align: center;
  padding: 13px 32px;
  line-height: 20px;
  font-size: 15px;
  font-weight: bold;
  border-radius: 25px;
  color: #3c3c3c;
}
.footer .fmenu .item:hover {
  background: #067771;
  color: #fff;
}
.footer .fmenu .item.active {
  background: #067771;
  color: #fff;
}
.footer .fmenu .item.hidden {
  display: none;
}
.footer .fmenu .item.more {
  margin: 0 0 10px;
}
@media (max-width: 1218px) {
  .footer .fmenu .item {
    width: 48%;
    margin: 0 0 20px;
    padding: 13px 20px;
  }
}
.footer .fmenu .age {
  color: #cb2f3e;
  border: 2px solid red;
  padding: 11px 15px;
  line-height: 20px;
  font-size: 18px;
  font-weight: 300;
  border-radius: 18px;
}
.footer .contacts {
  margin: 0 0 80px;
}
.footer .contacts .l {
  font-family: "Roboto Condensed";
  font-size: 18px;
  line-height: 30px;
}
.footer .contacts .l span {
  color: #1f9d9b;
}
.footer .contacts .l a {
  color: #1f9d9b;
  font-weight: bold;
  text-decoration: none;
}
.footer .contacts .soc .icon-soc {
  display: block;
  margin: 0 0 0 10px;
  width: 30px;
  height: 30px;
  background: no-repeat center #067771;
  border-radius: 50%;
}
.footer .contacts .soc .icon-soc.vk {
  background-image: url("/usertpl/i/icon-soc-vk.png");
}
.footer .contacts .soc .icon-soc.in {
  background-image: url("/usertpl/i/icon-soc-in.png");
}
.footer .contacts .soc .icon-soc.ml {
  background-image: url("/usertpl/i/icon-soc-ml.png");
}
.footer .contacts .soc .icon-soc.tg {
  background-image: url("/usertpl/i/icon-soc-tg.png");
}
.footer .contacts .soc .icon-soc.wa {
  background-image: url("/usertpl/i/icon-soc-wa.png");
}
.footer .contacts .soc .icon-soc.ok {
  background-image: url("/usertpl/i/icon-soc-ok.png");
}
.footer .bottom {
  font-family: "Roboto Condensed";
  font-weight: 300;
  color: #7b7b7b;
}
.contentblock {
  padding: 60px 0 40px;
}
@media (max-width: 1218px) {
  .contentblock {
    padding: 20px 10px;
  }
}
.contentblock .block-title {
  font: 43px "Roboto Condensed";
  font-weight: bold;
  margin: 0 0 35px;
}
@media (max-width: 1218px) {
  .contentblock .block-title {
    font-size: 26px;
    margin: 0 0 10px;
  }
}
.contentblock .ctl-list {
  margin: 0 0 60px;
}
@media (max-width: 1218px) {
  .contentblock .ctl-list {
    margin: 0 auto 40px;
  }
}
@media (max-width: 1218px) {
  .contentblock .ctl-list:nth-child(3n) {
    margin: 0 auto 40px;
  }
}
.ctl-list {
  width: 220px;
  text-align: center;
  margin: 0 100px 60px 0;
}
@media (max-width: 1218px) {
  .ctl-list {
    margin: 0 0 40px;
    width: 155px;
  }
}
.ctl-list:nth-child(3n) {
  margin: 0 0 60px;
}
@media (max-width: 1218px) {
  .ctl-list:nth-child(3n) {
    margin: 0 0 40px;
  }
}
.ctl-list .img {
  height: 190px;
  display: block;
  background: no-repeat center / contain;
  margin: 0 0 25px;
}
@media (max-width: 1218px) {
  .ctl-list .img {
    height: 150px;
  }
}
.ctl-list .title {
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  margin: 0 0 15px;
  line-height: 20px;
  min-height: 40px;
  display: block;
  color: #3c3c3c;
}
@media (max-width: 1218px) {
  .ctl-list .title {
    font-size: 14px;
    height: 40px;
    line-height: 20px;
    overflow: hidden;
  }
}
.ctl-list .pricedata {
  margin: 0 0 23px;
  justify-content: space-around;
}
.ctl-list .pricedata .weight {
  background: #edecec;
  height: 22px;
  line-height: 22px;
  padding: 0 5px;
  color: #1f9d9b;
  font-size: 15px;
  font-weight: 300;
}
@media (max-width: 1218px) {
  .ctl-list .pricedata .weight {
    font-size: 13px;
  }
}
.ctl-list .pricedata .price {
  color: #067771;
  font-size: 19px;
  font-weight: bold;
  line-height: 22px;
}
@media (max-width: 1218px) {
  .ctl-list .pricedata .price {
    font-size: 17px;
  }
}
.ctl-list .btn {
  width: 170px;
  margin: 0 auto;
  border-radius: 20px;
}
@media (max-width: 1218px) {
  .ctl-list .btn {
    width: 100%;
    font-size: 14px;
  }
}
.ctl .images {
  max-width: 420px;
  width: 100%;
}
.ctl .images .main {
  height: 480px;
  margin: 0 0 50px;
  background: no-repeat center / contain;
}
@media (max-width: 1218px) {
  .ctl .images .main {
    height: 300px;
    margin: 0 0 10px;
  }
}
.ctl .images .prev {
  margin: 0 0 150px;
}
@media (max-width: 1218px) {
  .ctl .images .prev {
    margin: 0 0 20px;
  }
}
.ctl .images .prev .item {
  width: 80px;
  height: 80px;
  background: no-repeat center / contain;
  cursor: pointer;
  margin: 0 33px 0 0;
}
@media (max-width: 1218px) {
  .ctl .images .prev .item {
    width: 77px;
    margin: 0 10px 0 0;
  }
}
.ctl .images .prev .item:nth-child(4n) {
  margin: 0;
}
.ctl .content {
  width: 100%;
  max-width: 620px;
  margin: 0 0 150px;
}
@media (max-width: 1218px) {
  .ctl .content {
    margin: 0 0 50px;
  }
}
.ctl .content .title {
  font-size: 33px;
  line-height: 31px;
  font-weight: bold;
  margin: 0 0 15px;
}
.ctl .content .price {
  color: #cb2f3e;
  font-size: 33px;
  font-weight: bold;
  line-height: 31px;
  margin: 0 0 30px;
}
.ctl .content .weight {
  background: #edecec;
  height: 35px;
  line-height: 35px;
  padding: 0 15px;
  color: #1f9d9b;
  font-size: 17px;
  font-weight: 300;
  margin: 0 0 20px;
  display: inline-block;
}
.ctl .content .availability {
  font-size: 17px;
  margin: 0 0 25px;
}
.ctl .content .availability span {
  color: #1f9d9b;
}
.ctl .content .incart {
  margin: 0 0 40px;
  width: 200px;
  border-radius: 20px;
}
.ctl .content .description {
  font-size: 16px;
}
.ctl-slider {
  position: relative;
}
.ctl-slider .wrap .owl-nav {
  position: absolute;
  top: -82px;
  right: 0;
  width: 108px;
  height: 47px;
}
@media (max-width: 1218px) {
  .ctl-slider .wrap .owl-nav {
    width: 56px;
    top: -38px;
    height: 25px;
  }
}
.ctl-slider .wrap .owl-nav button.owl-prev {
  background: url("/usertpl/i/icon-arrow-left.png") no-repeat center #edecec;
  width: 47px;
  height: 47px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 1218px) {
  .ctl-slider .wrap .owl-nav button.owl-prev {
    width: 25px;
    height: 25px;
    background-size: 8px;
  }
}
.ctl-slider .wrap .owl-nav button.owl-next {
  background: url("/usertpl/i/icon-arrow-right.png") no-repeat center #edecec;
  width: 47px;
  height: 47px;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 1218px) {
  .ctl-slider .wrap .owl-nav button.owl-next {
    width: 25px;
    height: 25px;
    background-size: 8px;
  }
}
.ctlotherblock {
  margin: 0 auto 40px;
}
@media (max-width: 1218px) {
  .ctlotherblock .wrap {
    justify-content: space-around;
  }
}
.section-title {
  font-size: 33px;
  line-height: 40px;
  font-weight: bold;
  margin: 0 0 35px;
}
.section-descr {
  margin: 0 auto 40px;
}
.section-list {
  margin: 0 auto 20px;
}
.section-list .item {
  margin: 0 20px 20px 0;
}
.section-list .item .descr {
  font-size: 12px;
}
.cols .col-l {
  width: 314px;
}
@media (max-width: 1218px) {
  .cols .col-l {
    width: 100%;
  }
}
.cols .col-r {
  max-width: 860px;
  width: 100%;
}
.paging {
  text-align: center;
  margin: 0 0 90px;
}
.paging .page {
  text-align: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: inline-block;
  text-decoration: none;
  margin: 0 3px;
  line-height: 38px;
  font-weight: 600;
  font-size: 16px;
}
.paging span {
  color: #1f9d9b;
  background: #fff;
}
.paging a {
  color: #fff;
  background: #1f9d9b;
}
.way {
  margin: 0 auto 60px;
  font-size: 14px;
  font-weight: 300;
  color: #898d8d;
}
@media (max-width: 1218px) {
  .way {
    margin: 0 0 20px;
  }
}
.way a {
  text-decoration: none;
  color: #1f9d9b;
}
.way .ctl-link {
  text-decoration: underline;
}
.sortblock {
  font-size: 14px;
  font-weight: 300;
  color: #8c8888;
  height: 40px;
  line-height: 20px;
  padding: 10px 0;
}
.sortblock a {
  margin: 0 0 0 20px;
  display: inline-block;
  text-decoration: none;
}
@media (max-width: 1218px) {
  .sortblock a {
    margin: 0 0 10px;
  }
}
.sortblock .item {
  background: no-repeat right 9px;
  padding: 0 15px 0 0;
}
.sortblock .item.asc {
  color: #1f9d9b;
  background-image: url("/usertpl/i/sort-arrow-asc.png");
}
.sortblock .item.desc {
  color: #1f9d9b;
  background-image: url("/usertpl/i/sort-arrow-desc.png");
}
.filter {
  background: #faf9f9;
  border-radius: 8px;
  padding: 30px 25px 45px;
}
.filter .param {
  margin: 0 0 25px;
  font-weight: 300;
  font-size: 14px;
}
.filter .param .title {
  font-weight: bold;
  font-size: 16px;
  margin: 0 0 15px;
}
.filter .param input {
  background: #fff;
  color: #8c8888;
  border-radius: 8px;
  display: inline-block;
  height: 42px;
  width: 85px;
  font-size: 16px;
  font-weight: normal;
  margin: 0 0 0 8px;
  text-align: center;
}
.filter .btn {
  margin: 0 0 18px;
  display: block;
  width: 100%;
}
.filter .reset {
  color: #067771;
  font-weight: bold;
  font-size: 13px;
  display: block;
  background: url("/usertpl/i/icon-reset.png") no-repeat right 5px;
  line-height: 18px;
  padding: 0 15px 0 0;
  width: 137px;
  margin: 0 auto;
}
.faq-sections {
  background: #faf9f9;
  border-radius: 8px;
  padding: 35px 25px 40px;
  margin: 0 0 11px;
}
.faq-sections .item {
  display: block;
  text-decoration: none;
  margin: 0 0 18px;
  padding: 0 0 0 31px;
  position: relative;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  color: #3c3c3c;
}
.faq-sections .item::before {
  display: block;
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  background: #1f9d9b;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  transition: 0.2s;
}
.faq-sections .item:hover::before {
  background: #067771;
}
.faq-sections .item:last-child {
  margin: 0;
}
.faq-btnoverlay {
  background: #faf9f9;
  border-radius: 8px;
  padding: 25px;
  margin: 0 0 20px;
}
.faq-btnoverlay .btn {
  width: 100%;
}
.faq-list {
  margin: 0 0 10px;
  color: #1f9d9b;
  width: 100%;
}
.faq-list .head {
  padding: 15px 25px 25px 25px;
  line-height: 20px;
  cursor: pointer;
}
.faq-list .head .quest {
  font-size: 17px;
  font-weight: 600;
}
.faq-list .head .control {
  padding: 0 17px 0 0;
  text-decoration: underline;
  font-size: 14px;
  background: url("/usertpl/i/sort-arrow-desc.png") no-repeat right 9px;
}
.faq-list .answ {
  margin: 0 0 15px;
  display: none;
}
.faq-list.opened .answ {
  display: block;
  padding: 10px 20px 20px 53px;
  position: relative;
}
.faq-list.opened .answ::before {
  position: absolute;
  content: '';
  display: block;
  top: 8px;
  left: 33px;
  width: 2px;
  height: calc(100% - 20px);
  background: #067771;
}
.faq-list.opened .head .control {
  background-image: url("/usertpl/i/sort-arrow-asc.png");
}
.bg {
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  display: none;
}
.pop {
  margin: auto;
  max-width: 400px;
  width: 100%;
  display: none;
  position: relative;
  text-align: center;
}
.pop .title {
  background: #edecec;
  border-radius: 8px 8px 0 0;
  padding: 20px;
  line-height: 20px;
  font-size: 19px;
  font-weight: 900;
}
.pop .content {
  padding: 25px 55px;
  font-size: 14px;
  font-weight: 300;
  background: #faf9f9;
  border-radius: 0 0 8px 8px;
}
.pop .content span {
  color: #1f9d9b;
  cursor: pointer;
}
.pop .close {
  position: absolute;
  top: 0;
  right: 10px;
  font-size: 30px;
  transform: rotate(45deg);
  cursor: pointer;
  font-family: Arial;
}
.pop select {
  display: block;
  width: 100%;
  padding: 3px 18px;
  margin-bottom: 14px;
  line-height: 20px;
}
.pop input {
  display: block;
  width: 100%;
  padding: 12px 18px;
  margin-bottom: 14px;
  line-height: 20px;
}
.pop input[type="checkbox"] {
  width: auto;
  display: unset;
}
.pop textarea {
  display: block;
  width: 100%;
  padding: 8px 18px;
  margin-bottom: 14px;
  line-height: 20px;
}
.pop .btn {
  width: 100%;
  margin-bottom: 10px;
}
.pop .link {
  display: inline-block;
  border-bottom: 1px dashed;
  color: #1f9d9b;
  text-decoration: none;
}
.pop.auth .login {
  display: none;
}
.pop.auth label {
  width: 100%;
  display: block;
  text-align: left;
}
.loader {
  background: url(/usertpl/i/loader.svg) no-repeat center center / 25% rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: none;
}
.profile-reg-sender {
  margin: 0 auto 40px;
  max-width: 480px;
}
.profile-reg-sender .area-reg {
  display: block;
}
.profile-reg-sender .area-sms {
  display: none;
}
.profile-reg-recipient {
  margin: 0 auto 40px;
  max-width: 480px;
}
.profile-reg-recipient .area-reg {
  display: block;
}
.profile-sections {
  background: #faf9f9;
  border-radius: 8px;
  padding: 35px 25px 40px;
  margin: 0 0 11px;
}
.profile-sections .item {
  display: block;
  text-decoration: none;
  margin: 0 0 18px;
  padding: 0 0 0 31px;
  position: relative;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
}
.profile-sections .item::before {
  display: block;
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  background: #1f9d9b;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  transition: 0.2s;
}
.profile-sections .item:hover::before {
  background: #067771;
}
.profile-sections .item:last-child {
  margin: 0;
}
.profile-balanceoverlay {
  background: #faf9f9;
  border-radius: 8px;
  padding: 25px;
  margin: 0 0 20px;
}
.profile-balanceoverlay .title {
  font-weight: bold;
  margin: 0 0 10px;
}
.profile-balanceoverlay .balance {
  color: #1f9d9b;
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 25px;
}
.profile-balanceoverlay .btn {
  width: 100%;
  margin: 0 0 14px;
}
.profile-balance-table {
  width: 100%;
}
.profile-balance-table th,
.profile-balance-table td {
  text-align: right;
  padding: 3px 5px;
  border: 1px solid;
}
.cartpage .cart-info-overlay {
  background: #faf9f9;
  border-radius: 8px;
  padding: 25px 25px 45px;
}
.cartpage .cart-info-overlay .title {
  font-weight: bold;
}
.cartpage .cart-info-overlay .block-weight {
  margin: 0 0 7px;
}
.cartpage .cart-info-overlay .block-weight.danger {
  background: #f5e5e5;
  padding: 3px 7px;
}
.cartpage .cart-info-overlay .block-weight .weight {
  color: #1f9d9b;
  font-weight: bold;
  font-size: 24px;
}
.cartpage .cart-info-overlay .alert {
  margin: 0 0 7px;
  color: #cb2f3e;
  font-size: 13px;
  font-weight: 800;
  display: none;
}
.cartpage .cart-info-overlay .alert.vis {
  display: block;
}
.cartpage .cart-info-overlay .block-price {
  margin: 7px 0 25px;
}
.cartpage .cart-info-overlay .block-price .price {
  color: #1f9d9b;
  font-weight: bold;
  font-size: 24px;
}
.cartpage .cart-product-list {
  margin: 0 0 10px;
}
.cartpage .cart-product-list .cart-product {
  margin: 0 0 30px;
}
.cartpage .cart-product-list .cart-product .img {
  display: block;
  background: no-repeat center / contain;
  width: 85px;
  height: 65px;
  margin: -3px 0 0;
}
.cartpage .cart-product-list .cart-product .weight {
  background: #edecec;
  color: #1f9d9b;
  padding: 0 5px;
  width: 115px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  font-size: 15px;
  font-weight: 300;
}
.cartpage .cart-product-list .cart-product .price {
  color: #cb2f3e;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  width: 85px;
}
.cartpage .cart-product-list .cart-product .delete {
  background: url("/usertpl/i/cart-delete.png") no-repeat center;
  width: 10px;
  height: 22px;
  cursor: pointer;
}
.cartpage .cart-product-list .cart-product .info {
  width: 100%;
  max-width: 400px;
}
.cartpage .cart-product-list .cart-product .info .title {
  display: block;
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 10px;
  color: #3c3c3c;
  text-decoration: none;
}
.cartpage .cart-product-list .cart-product .info .weight {
  margin: 0 15px 0 0;
}
@media (max-width: 1218px) {
  .cartpage .cart-product-list .cart-product .info .weight {
    display: none;
  }
}
@media (max-width: 1218px) {
  .cartpage .cart-product-list .cart-product .info .price {
    display: none;
  }
}
.cartpage .cart-product-list .cart-product .control {
  margin: -4px 0 0;
  color: #1f9d9b;
  background: #faf9f9;
  width: 107px;
  height: 30px;
  line-height: 30px;
  font-size: 23px;
  font-weight: bold;
  border-radius: 8px;
  padding: 0 10px;
  cursor: pointer;
}
.cartpage .cart-product-list .cart-product .control .count {
  color: #3c3c3c;
  font-size: 16px;
  font-weight: normal;
}
.cartpage .cart-product-delivery {
  background: url("/usertpl/i/cart-delivery.png") no-repeat left center;
  height: 64px;
  line-height: 64px;
  padding: 0 158px 0 97px;
  margin: 0 0 100px;
}
@media (max-width: 1218px) {
  .cartpage .cart-product-delivery {
    line-height: 22px;
    padding: 0 0 0 97px;
    margin: 0 0 30px;
  }
}
.cartpage .cart-product-delivery .text {
  display: block;
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 10px;
  color: #3c3c3c;
  text-decoration: none;
}
@media (max-width: 1218px) {
  .cartpage .cart-product-delivery .text {
    margin: 0;
  }
}
.cartpage .cart-product-delivery .price {
  color: #cb2f3e;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
.cartpage .cart-form {
  margin: 0 0 80px;
}
@media (max-width: 1218px) {
  .cartpage .cart-form {
    margin: 0 0 20px;
  }
}
.cartpage .cart-form .label-nologin {
  margin: -20px 0 20px;
}
.cartpage .cart-form .label-nologin input[type="checkbox"] {
  width: auto;
  display: unset;
}
.cartpage .cart-form .label-name {
  display: none;
}
.cartpage .cart-form .label-name.vis {
  display: block;
}
.cartpage .cart-form .label-login {
  display: none;
}
.cartpage .cart-form .label-login.vis {
  display: block;
}
.cartempty {
  padding: 80px 0;
  text-align: center;
  font-size: 24px;
}
.order {
  margin: 0 0 20px;
}
.order.opened .more.open {
  display: none;
}
.order.opened .items {
  display: block;
}
.order .main {
  background: linear-gradient(0, #faf9f9, #fff);
  padding: 30px;
}
.order .main .title {
  font-size: 17px;
  color: #1f9d9b;
  font-weight: 600;
  margin: 0 0 25px;
}
.order .main .btn {
  height: 29px;
  line-height: 29px;
  width: 133px;
  font-weight: bold;
  padding: 0;
  font-size: 14px;
}
.order .main .block .param {
  margin: 0 50px 10px 0;
}
.order .main .block .param .v {
  font-weight: 600;
  margin: 0 0 0 5px;
}
.order .items {
  padding: 30px 0;
  display: none;
}
.order .items .order-item {
  margin: 0 0 30px;
}
.order .items .order-item .img {
  display: block;
  background: no-repeat center / contain;
  width: 85px;
  height: 65px;
  margin: -3px 0 0;
}
.order .items .order-item .weight {
  background: #edecec;
  color: #1f9d9b;
  padding: 0 5px;
  width: 115px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  font-size: 15px;
  font-weight: 300;
}
.order .items .order-item .price {
  color: #cb2f3e;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  width: 85px;
}
.order .items .order-item .delete {
  background: url("/usertpl/i/cart-delete.png") no-repeat center;
  width: 10px;
  height: 22px;
  cursor: pointer;
}
.order .items .order-item .info {
  width: 100%;
  max-width: 400px;
}
.order .items .order-item .info .title {
  display: block;
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 10px;
  color: #3c3c3c;
  text-decoration: none;
}
.order .items .order-item .info .weight {
  margin: 0 15px 0 0;
}
@media (max-width: 1218px) {
  .order .items .order-item .info .weight {
    display: none;
  }
}
@media (max-width: 1218px) {
  .order .items .order-item .info .price {
    display: none;
  }
}
.order .items .order-item .control {
  margin: -4px 0 0;
  color: #1f9d9b;
  background: #faf9f9;
  width: 107px;
  height: 30px;
  line-height: 30px;
  font-size: 23px;
  font-weight: bold;
  border-radius: 8px;
  padding: 0 10px;
  cursor: pointer;
}
.order .items .order-item .control .count {
  color: #3c3c3c;
  font-size: 16px;
  font-weight: normal;
}
.order .items .order-item .count {
  font-weight: 600;
}
.order .items .order-item .info {
  max-width: 520px;
}
.order .more {
  color: #1f9d9b;
  font-size: 14px;
  text-decoration: underline;
  padding: 0 18px 0 0;
  background: no-repeat right 8px;
  cursor: pointer;
}
.order .more.open {
  background-image: url("/usertpl/i/order-more-open.png");
}
.order .more.close {
  background-image: url("/usertpl/i/order-more-close.png");
}
.contentlist {
  margin: 0 auto 20px;
}
@media (max-width: 1218px) {
  .product-list {
    justify-content: space-around;
  }
}
.product-list.search .ctl-list {
  margin: 0 100px 60px 0;
}
@media (max-width: 1218px) {
  .product-list.search .ctl-list {
    margin: 0 20px 40px;
  }
}
.product-list.search .ctl-list:nth-child(4n) {
  margin: 0 0 60px;
}
@media (max-width: 1218px) {
  .product-list.search .ctl-list:nth-child(4n) {
    margin: 0 20px 40px;
  }
}
.product-list.other .ctl-list {
  margin: 0 100px 60px 0;
}
@media (max-width: 1218px) {
  .product-list.other .ctl-list {
    margin: 0 20px 40px;
  }
}
.product-list.other .ctl-list:nth-child(4n) {
  margin: 0 0 60px;
}
@media (max-width: 1218px) {
  .product-list.other .ctl-list:nth-child(4n) {
    margin: 0 20px 40px;
  }
}
.img-list {
  display: block;
  width: 235px;
  height: 200px;
  margin: 0 10px 10px 0;
  background: no-repeat center / cover;
}
.img-list:nth-child(5n) {
  margin: 0 0 10px;
}
.keyboard {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #144766;
  z-index: 10;
  padding: 20px 0;
  display: none;
}
.keyboard.opened {
  display: block;
}
