@font-face {
  font-family: 'Gothic';
  src: url('../fonts/gothic.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gothic';
  src: url('../fonts/gothic-bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gothic';
  src: url('../fonts/gothic-italic.woff') format('woff');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Gothic';
  src: url('../fonts/gothic-bold-italic.woff') format('woff');
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

/*@font-face {
  font-family: 'ProximaNova';
  src: url('../fonts/proxima-nova.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}*/

@font-face {
  font-family: 'NK30_D';
  src: url('../fonts/14704.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

a {
  text-decoration: none;
}

a, button {
  transition: all 0.3s;
}

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

.button {
  font-family: "ProximaNova", Arial, serif;
}

ul {
  list-style: none;
}

body {
  font-family: 'Gothic', Arial, sans-serif;
  font-size: 18px;
  color: #000000;
}

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

.visually-hidden:not(:focus):not(:active), input[type="checkbox"].visually-hidden, input[type="radio"].visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden;
  }

.main-menu {
  background-color: #ffffff;
  position: relative;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}

.nav li a {
  color: black;
  padding: 10px;
  margin: 0 10px;
  transition: all 0.3s;
  position: relative;
  display: inline-block;
  z-index: 1;
}

.nav li a::after {
  zoom: 1;
  filter: alpha(opacity=80);
  -webkit-opacity: .8;
  -moz-opacity: .8;
  opacity: .8;
  background-color: #1c7f89;
  content: '';
  overflow: hidden;
  position: absolute;
  left: 0;
  bottom: 20px;
  display: block;
  width: 0;
  height: 4px;
  -webkit-transition: all 400ms cubic-bezier(0,0.208,0.73,1.075);
  -moz-transition: all 400ms cubic-bezier(0,0.208,0.73,1.075);
  -o-transition: all 400ms cubic-bezier(0,0.208,0.73,1.075);
  transition: all 400ms cubic-bezier(0,0.208,0.73,1.075);
  z-index: -1;
}

.nav li a:hover::after {
  width: 100%;
}

.nav .active a::after {
  width: 100%
}

.video__wrapper {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
  margin-top: 50px
}

.video__wrapper iframe{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}

.social__link svg {
  fill: #ffffff;
  transition: all 0.3s;
}

.social__link:hover svg {
  fill: #3ec1fe;
}

.social__link--viber:hover svg {
  stroke: #3ec1fe;
}

.nav-collapse.collapse {
  height: auto;
  overflow: visible;
}

.navbar {
  display: none;
}

.box {
  border-radius: 2px;
  z-index: 1000;
  position: fixed;
  right: 5px;
  top: 5px;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background-color: #1d7c85;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.26);
}

.menu-mob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  cursor: pointer;
}

.menu-mob span {
  display: block;
  width: 100%;
  box-shadow: 0 2px 10px 0 rgba(0,0,0,0.3);
  border-radius: 3px;
  height: 5px;
  background: #fff;
  transition: all .3s;
  position: relative;
}

.menu-mob span:nth-child(2) {
  line-height: 6px;
  text-align: center;
}

.menu-mob span + span {
  margin-top: 7px;
}

.active span:nth-child(1) {
  animation: ease .7s top forwards;
}

.not-active span:nth-child(1) {
  animation: ease .7s top-2 forwards;
}

.active span:nth-child(2) {
  animation: ease .7s scaled forwards;
}

.not-active span:nth-child(2) {
  animation: ease .7s scaled-2 forwards;
}

.active span:nth-child(3) {
  animation: ease .7s bottom forwards;
}

.not-active span:nth-child(3) {
  animation: ease .7s bottom-2 forwards;
}

@keyframes top {
  0% {
    top: 0;
    transform: rotate(0);
  }
  50% {
    top: 12px;
    transform: rotate(0);
  }
  100% {
    top: 12px;
    transform: rotate(45deg);
  }
}

@keyframes top-2 {
  0% {
    top: 12px;
    transform: rotate(45deg);
  }
  50% {
    top: 12px;
    transform: rotate(0deg);
  }
  100% {
    top: 0;
    transform: rotate(0deg);
  }
}

@keyframes bottom {
  0% {
    bottom: 0;
    transform: rotate(0);
  }
  50% {
    bottom: 12px;
    transform: rotate(0);
  }
  100% {
    bottom: 12px;
    transform: rotate(135deg);
  }
}

@keyframes bottom-2 {
  0% {
    bottom: 12px;
    transform: rotate(135deg);
  }
  50% {
    bottom: 12px;
    transform: rotate(0);
  }
  100% {
    bottom: 0;
    transform: rotate(0);
  }
}

@keyframes scaled {
  50% {
    transform: scale(0);
  }
  100% {
    transform: scale(0);
  }
}

@keyframes scaled-2 {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

.social__link--viber {
  stroke: white;
  stroke-width: 1.5px;
}
.social--contacts .social__link--viber {
  stroke: black;
}
.sidebar__social {
  position: fixed;
  z-index: 3;
  right: 0;
  top: 30%;
  background-color: rgb(98, 98, 98, 0.7);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.sidebar__social .social {
  padding: 15px 10px;
  margin: 0;
}
.sidebar__social .social__item:not(:last-child) {
  margin-bottom: 15px;
}
.social__link--contacts svg {
  fill: #ff7300;
}
#mxcpr {
  padding: 0;
  font-size: 0;
}
#mxcpr a {
  padding: 0;
  font-size: 0;
}
.row-fluid [class*="sblock"]:first-child {
  padding-left: 0;
}
.row-fluid [class*="sblock"] {
  padding-left: 0;
}
.main-header {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  position: relative;
}
.webp .main-header {
  background-image: url("../../../images/newslid.png");
}
.no-webp .main-header {
  background-image: url("../../../images/newslid.png");
}
.main-title {
 /* font-family: "NK30_D", Arial, sans-serif;*/
  font-size: 60px;
  text-align: center;
  /*background: linear-gradient(90deg, #e2b33d 0%, #f2e584 50%, #e2b33d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;*/
  color: #000000;
  -webkit-filter: drop-shadow(2px 2px 5px rgba(0,0,0,0.5));
  filter: drop-shadow(2px 2px 5px rgba(0,0,0,0.5));
}
.header__hearts {
  display: block;
  margin-left: auto;
}
.promo-text {
  text-align: center;
  color: white;
  font-size: 25px;
  border: 3px solid #f50000;
  border-radius: 5px;
  display: inline-block;
  padding: 10px;
  background-color: rgba(0,0,0,0.7);
}
.disclaimer {
  line-height: 20px;
}
.hrcont li {
    display: inline;
}
.disclaimer__text {
    display: block;
    max-width: 615px;
    margin: 20px auto 0 auto;
    background-color: rgba(255,255,255,0.5);
    border-radius: 5px;
    padding: 5px 10px;
    position: relative;
}
.disclaimer__text::before {
    display: block;
    width: 103%;
    height: 120%;
    position: absolute;
    top: -10%;
    left: -1.5%;
    content: "";
    border: 1px solid gold;
}
.header__telephone, .header__time, .header__address {
  display: flex;
  margin-bottom: 5px;
  align-items: center;
  color: #000000;
  padding-top: 10px;
}
.header__address {
  align-items: flex-start;
}
.header__telephone img, .header__time img, .header__address img {
  margin-right: 15px;
}
.main-button {
  border-radius: 10px;
  background-image: -moz-linear-gradient( 0deg, #089ead 0%, #1b828e 50%, #236563 100%);
  background-image: -webkit-linear-gradient( 0deg, #089ead 0%, #1b828e 50%, #236563 100%);
  background-image: -ms-linear-gradient( 0deg, #089ead 0%, #1b828e 50%, #236563 100%);
  box-shadow: 0.436px 4.981px 10px 0px rgba(0, 0, 0, 0.3);
  font-weight: bold;
  color: white;
  padding: 20px 20px 20px 60px;
  position: relative;
  transition: all 0.3s;
}
.main-button::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 10px;
  width: 40px;
  height: 44px;
  background-image: url("../../../images/icons/check.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.main-button:hover {
  color: white;
  background-image: -moz-linear-gradient( 0deg, #236563 0%, #1b828e 50%, #089ead 100%);
  background-image: -webkit-linear-gradient( 0deg, #236563 0%, #1b828e 50%, #089ead 100%);
  background-image: -ms-linear-gradient( 0deg, #236563 0%, #1b828e 50%, #089ead 100%);
}
.header-master-link {
  display: inline-block;
  margin-top: 15px;
}
address {
  margin: 0
}
.massage-art__title {
    font-weight: bold;
    font-size: 42px;
    text-transform: uppercase;
    position: relative;
    text-align: center;

}
.massage-art__title::after {
  content: "";
  display: block;
  width: 241px;
  height: 8px;
  /*background-image: url("../../../images/title-underline.png");*/
  bottom: 0;
  left: 0;
  margin: 15px auto 15px auto;
}
.massage-art .container {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  position: relative;
}
.webp .massage-art .container {
  background-image: url("../../../images/newslid2.png");
}
.no-webp .massage-art .container {
  background-image: url("../../../images/newslid2.png");
}
.header-master-link {
  text-transform: uppercase;
}
.massage-art__p1 {
  font-size: 20px;
  line-height: 30px;
}
.massage-art__p2 {
  font-size: 25px;
  line-height: 30px;
  font-weight: bold;
  padding: 10px 20px;
  background-image: -moz-linear-gradient( 0deg, #089ead 0%, #1b828e 50%, #236563 100%);
  background-image: -webkit-linear-gradient( 0deg, #089ead 0%, #1b828e 50%, #236563 100%);
  background-image: -ms-linear-gradient( 0deg, #089ead 0%, #1b828e 50%, #236563 100%);
  box-shadow: 0.436px 4.981px 10px 0px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}
.massage-art__p3 {
    background-color: rgba(255,255,255,0.5);
    border-radius: 10px;
    padding: 10px 20px;
}
.massage-art__devider {
  display: block;
  margin: 0 auto;
}
.header-master-link {
  margin: 50px 0 75px 0;
}
.advantages__title, .shop-filter h3 {
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  position: relative;
}
.advantages__title::after {
  content: "";
  display: block;
  width: 288px;
  height: 8px;
  /*background-image: url("../../../images/title-underline-1.png");*/
  margin: 25px auto 25px auto;
}
.advantages .container {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  position: relative;
}
.webp .advantages .container {
  /*background-image: url("../../../images/advantages-background.png");*/
}
.no-webp .advantages .container {
  /*background-image: url("../../../images/advantages-background.png");*/
}
.advantages__desc {
  font-size: 16px;
}
.advantages__name {
  font-weight: bold;
  padding-top: 10px;
}
.advantages__list {
  margin-top: 50px;
}
.advantages__item {
  display: flex;
  align-items: flex-start;
}
.advantages__item img {
  margin-right: 10px;
  flex-shrink: 0;
}
.promo__link {
  width: 186px;
  display: block;
  margin: auto 15px 0 auto;
}
.jshop_list_product .image_block {
  padding: 0;
}
.promo__item {
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.promo__item img {
  border-radius: 9px;
}
.promo__title {
  font-size: 25px;
  font-weight: bold;
  color: #ff0000;
  max-width: 430px;
  display: block;
  margin: 15px auto;
  text-align: left;
}
.promo__desc {
  max-width: 430px;
  display: block;
  margin: 15px auto;
  text-align: left;
}
.promo__list {
  margin-top: 40px;
}
.footer {
  margin-top: 50px;
}
.red-line {
  background-image: -moz-linear-gradient( 0deg, rgb(35 20 6) 0%, rgb(8 158 173) 100%);
  background-image: -webkit-linear-gradient( 0deg, rgb(35 20 6) 0%, rgb(8 158 173) 100%);
  background-image: -ms-linear-gradient( 0deg, rgb(35 20 6) 0%, rgb(8 158 173) 100%);
  width: 866px;
  height: 2px;
  display: block;
  margin: 0 auto;
}
.footer__menu {
  margin: 30px 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.footer__menu a {
  color: black;
  padding: 10px;
  margin: 0 10px;
  transition: all 0.3s;
}
.footer__menu a:hover, .footer__menu a:focus {
  color: rgb(114,3,3);
}
.footer__telephone, .footer__time, .footer__address {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #000;
}
.footer__telephone img, .footer__time img, .footer__address img {
  margin-right: 10px;
}
.footer__address {
  align-items: flex-start;
}
.copyright {
  font-size: 13px;
  text-align: center;
  background-color: #ffffff;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}
.copyright span {
  font-size: 23px;
  background-color: #fff;
  font-weight: bold;
  display: inline-block;
  padding: 5px;
  margin-right: 15px;
  color: #000;
}
.copyright span:nth-child(2) {
  margin-left: 150px;
  width: 44px;
}
.jshop .product {
  position: relative;
}
.uf_wrappers {
  display:flex;
  align-items:flex-start;
  justify-content:space-around;
  flex-wrap:wrap;
  max-width:800px;
  margin:0 auto 50px auto;
  padding:0 15px 20px 15px;
  box-shadow:0 1px 3px 0 rgb(142, 36, 36);
  background-color:rgba(0,0,0,0.5);
  border-radius:10px;
}
[class^=uf_label_]{
  border:none !important;
  color:white !important;
  background:none !important;
  text-align:left !important;
  font-weight: normal !important;
}
.uf_trackbar_inputs input, .uf_inputreset {
  font-size:18px !important;
  height:29px !important;
  color:#07527A;
  font-weight:bold !important;
  max-width:44% !important;
  background:rgba(255,255,255,1);
  text-shadow:none !important;
  border:2px solid rgb(142, 36, 36) !important;
  border-radius:5px !important;
}
.chzn-container-single .chzn-single span {
  font-size:16px;
  color:#07527A;
}
#jshop_unijax_filter .uf_trackbar table.trackbar .l div span.limit,
#jshop_unijax_filter .uf_trackbar table.trackbar .r div span.limit {
  font-size:16px;
  color:white;
  padding:0 5px;
}
.uf_input {
  text-align:left;
  background-color:transparent !important;
  padding:5px 0 5px 5px !important;
  display:flex;
  align-items:center;
}
.uf_manufacturer,
.uf_category,
.uf_vendor {
  font-size:16px;
}
.uf_wrapper_prices {
  width:250px;
}
.uf_wrapper{
  min-width:20%;
}
.chzn-container .chzn-results li.active-result {
  font-size:16px;
}
.uf_options {
  border:2px solid rgb(142, 36, 36) !important;
  border-radius:5px;
}
.uf_select_options ul.chzn-choices {
  background-color:rgba(255,255,255,0.5) !important;
}
.uf_wrapper_categorys {
  display: flex;
  flex-wrap: wrap;
  width: 56%;
  flex-direction: column;
}
.uf_wrapper_categorys .uf_categorys_label {
  margin:0;
}
.uf_select_options ul.chzn-choices {
  padding: 0 !important;
}
.uf_wrapper_categorys .uf_options_category {
  display:flex;
  min-height:25px;
  flex-wrap:wrap;
  flex-direction: column;
  align-items: flex-start;
  background-color:rgba(255,255,255,0.5);
}
.shop-filter {
  margin-top:50px;
}
.chzn-container {
    display: block !important;
}
.uf_manufacturer, .uf_category, .uf_vendor {
    font-size: 16px !important;
}
.list_product .row-fluid:nth-child(2n+1) .sblock3:nth-child(2n) .name,
.list_product .row-fluid:nth-child(2n) .sblock3:nth-child(2n+1) .name {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(52,87,88,0.6);
    z-index: 2;
    transition: all 0.3s;
}
.list_product .row-fluid:nth-child(2n+1) .sblock3:nth-child(2n+1) .name,
.list_product .row-fluid:nth-child(2n) .sblock3:nth-child(2n) .name {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(29,82,71,0.6);
    z-index: 2;
    transition: all 0.3s;
}
.list_product .row-fluid .sblock3 .name a {
    font-size: 25px;
    color: white;
    text-transform: uppercase;
    padding: 5px 0;
}
.block_product .image_block {
    position: relative;
}
.block_product .image_block a::after {
    content: "";
    position: absolute;
    width: 86%;
    height: 90%;
    top: 5%;
    left: 7%;
    background: transparent;
    border: 1px solid #0d97a5;
    opacity: 0;
    transition: all 0.3s;
}

.block_product .image_block a:hover::after {
    opacity: 1;
}
.productfull .image_middle {
    width: auto !important;
}
.productfull h1, .jshop h1 {
    text-align: center;
    font-size: 30px;
    margin: 50px 0;
    text-transform: uppercase;
    font-weight: bold;
}
.productfull #block_price, .jshop_price {
    color: white;
    font-weight: bold;
    font-size: 20px !important; 
}
.jshop_list_product .buttons {
    display: none;
}
.sblock3 {
    margin-bottom: 30px;
}
.itemid-101 .sblock3 {
    margin-bottom: 0;
}
.itemid-101 .oiproduct {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 240px;
    /*background-color: rgba(255,255,255,0.5);*/
    border-radius: 5px;
    padding-left: 40px;
}
.productfull .text_zoom {
  color: white;
  font-size: 14px;
}
.master-spa-wr {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}
.master-spa-wr img {
    width: 250px;
}
.product:hover .name {
    background-color: rgb(11 153 168) !important;
}
.moduletable-header-contacts {
    padding-top: 10px;
}
.attention {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    color: #f50000;
    font-weight: bold;
    display: block;
    width: max-content;
    margin: 0 auto;
    padding: 8px 15px;
    font-size: 25px;
}
.extra_fields .label-name {
    font-weight: bold;
}
.moduletable .advantages {
    margin-top: 40px;
}






@media (max-width: 767px) {
 .itemid-101 .sblock3 {
   margin-bottom: 30px;
 }
 .itemid-101 .oiproduct {
    position: relative;
    bottom: auto;
    left: auto;
    width: auto;
    background-color: none;
    border-radius: 0;
    padding-left: 0;
  }
  .main-title {
      line-height: 45px;
      font-size: 40px;
      margin-top: 15px;
  }
  .main-logo {
      display: block;
      margin-bottom: 15px;
  }
  .moduletable-header-contacts {
        padding-top: 0;
    }
  .master-spa-wr img {
    width: 150px;
}
  .copyright span:nth-child(2) {
    margin-left: 5px;
  }
  .massage-art__title {
    font-size: 30px;
    padding-top: 15px;
  }
  .header-master-link {
    font-size: 15px;
    margin: 30px 0;
  }
  .nav {
    margin-top: 0;
  }
  .advantages .container, .main-header {
    background-size: auto;
  }
  .advantages__item {
    flex-direction: column;
  }
  .sidebar__social .social {
    padding: 6px;
  }
  .sidebar__social .social__link--vk,
  .sidebar__social .social__link--ok,
  .sidebar__social .social__link--fb,
  .sidebar__social .social__link--instagram,
  .social__link--pinterest,
  .social__link--yacollection {
    display: none;
  }
  .sidebar__social .social__item:nth-child(5) {
   /* margin-top: -15px;*/
  }

  .collapse:not(.show) {
    display: inherit;
  }

  .hrcont li {
    display: block;
    margin-top: 40px;
    margin-bottom: 40px;
}
  
  .nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    padding: 0;
    border-radius: 0;
    opacity: 0;
    z-index: -1;
    transition: all 0.5s;
    flex-direction: column;
    justify-content: center;
  }

  .nav li {
    width: 100%;
    text-align: center;
  }

  .nav li a {
    width: 100%;
    display: block;
    margin: 0;
  }

  .show .nav {
    opacity: 1;
    z-index: 999;
    transition: all 0.5s;
  }

  .navbar {
    display: block;
    padding: 0;
  }

  .nav-collapse, .nav-collapse.collapse {
    overflow: hidden;
    height: 0;
    position: absolute;
    left: 0;
    top: 58px;
    width: 100%;
}
}
@media (min-width: 1300px) {
    .webp .main-header {
      background-image: none;
    }
    .no-webp .main-header {
      background-image: none;
    }
    .webp .massage-art .container {
      background-image: none; 
    }
    .no-webp .massage-art .container {
      background-image: none;
    }
    .header {
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }
    .webp .header {
        background-image: url("../../../images/newslidbig.png");
    }
    .no-webp .header {
        background-image: url("../../../images/newslidbig.png");
    }
    .massage-art {
        background-repeat: no-repeat;
        background-position: center;
    }
    .webp .massage-art {
        background-image: url("../../../images/newslid2big.png");
    }
    .no-webp .massage-art {
        background-image: url("../../../images/newslid2big.png");
    }
    
}
