@charset "UTF-8";

.error {/*border:1px solid #ff0000;*/ background: #ffeeee; padding-left: 15px;}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

img.slick-list {
  height: auto!important;
}

#callback-form {display: none;}
#callback-form p {margin: 15px 0px;}
#callback-form .time {width: 48%!important; display: inline-block;}
#callback-form .time:last-child {margin-left:3.9%;}
.showdatetimepicker {border-bottom: 1px dashed #6094e1; font: 300 18px/25px 'Muller';}

#callback-form {margin-top: 15px;}
.callback-btn
{
    height: 30px;
    /* line-height: 28px; */
    margin: 5px 0px 0px;
    border-radius: 20px;
    border: 0px;
    width: auto;
    background-color: rgba(255, 251, 186, 1);
    color: #333;
    font-weight: 200;
    font-size: 16px;
    display: inline-block;
    padding: 0 42px;
    font: 500 14px/32px 'Muller';
}

#content {
    width: 400px;
    margin: 40px auto 0 auto;
    padding: 0 60px 30px 60px;
    border: solid 1px #cbcbcb;
    background: #fafafa;
    -moz-box-shadow: 0px 0px 10px #cbcbcb;
    -webkit-box-shadow: 0px 0px 10px #cbcbcb;
}


#callback-popup .success-message {display: none;}
#callback-popup {background: #fffbba;
    color: #333;
    padding: 5px 15px 15px;
    position: absolute;
    top: 100px;
    /* width: 100%; */
    /* margin: 0px 15px; */
    z-index: 9999;
    width: 90%;
    left: 5%;
    text-align: center;
    font-size: 15px;
    display: none;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    /*transition: all 5s ease-in-out;*/
    max-width: 900px;
}
#callback-popup.desctop-popup {left: 50%; width:500px;}

#callback-popup p {margin-bottom: 10px;}
#callback-popup input {border: 1px solid transparent; font-size: 16px; padding: 10px; vertical-align: top; height: 37px;}
#callback-popup input.error {border-color: #ff0000;}
#callback-popup button {    background-color: #f7e26f;
    background-color: #f7e26f;
    font-size: 1em;
    font-weight: 500;
    height: 37px;
    line-height: 37px;
    border: 0px;
    width: 50px;
}

#callback-popup .cancel {margin-top: 20px; color: #999; display: inline-block; border-bottom: 1px dotted #999;}

#inactive-popup .success-message {display: none;}
#inactive-popup {
    background: #edf1f3;
    color: #333;
    padding: 25px 15px 15px;
    position: fixed;
    top: 50%;
    margin-top: -170px;
    /* width: 100%; */
    /* margin: 0px 15px; */
    z-index: 9999;
    left: 50%;
    width: 500px;
    margin-left: -250px;
    text-align: center;
    font-size: 15px;
    display: none;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    /*transition: all 5s ease-in-out;*/
    max-width: 900px;
}
#inactive-popup.desctop-popup {left: 50%; width:500px;}
#inactive-popup p {margin-bottom: 10px;}
#inactive-popup p b {font-weight: bold;}
#inactive-popup input {border: 1px solid #666; font-size: 16px; padding: 10px; vertical-align: top; height: 37px; margin-bottom: 20px; width: 80%;}
#inactive-popup input.error {border-color: #ff0000;}
#inactive-popup button {
    background-color: #f7e26f;
    background-color: #f7e26f;
    font-size: 1em;
    font-weight: 500;
    height: 37px;
    line-height: 37px;
    border: 0px;
    width: 70%;
}

#inactive-popup .cancel {margin-top: 20px; color: #999; display: inline-block; border-bottom: 1px dotted #999;}

@-webkit-keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.3);
        transform: scale(.3);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }

    70% {
        -webkit-transform: scale(.9);
        transform: scale(.9);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.3);
        -ms-transform: scale(.3);
        transform: scale(.3);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05);
    }

    70% {
        -webkit-transform: scale(.9);
        -ms-transform: scale(.9);
        transform: scale(.9);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

.bounceIn {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
}

@-webkit-keyframes bounceOut {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    25% {
        -webkit-transform: scale(.95);
        transform: scale(.95);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.3);
        transform: scale(.3);
    }
}

@keyframes bounceOut {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    25% {
        -webkit-transform: scale(.95);
        -ms-transform: scale(.95);
        transform: scale(.95);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.3);
        -ms-transform: scale(.3);
        transform: scale(.3);
    }
}

.bounceOut {
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut;
}

/*.callback-btn {
    height: 48px;
    background-color: #fff;
    padding: 0 57px;
    font: 500 14px/48px 'Muller';
    text-align: center;
    width: 100%;
    border:1px solid rgba(0, 0, 0, 0.1);
    display: inline-block;
    color: #333;
    margin-top: 15px;
    -webkit-transition: background .3s ease, color .3s ease;
            transition: background .3s ease, color .3s ease; }

    .callback:hover {
      cursor: pointer;
      background: #6094e1;
      color: #fff;
}*/

.slick-list:focus {
  outline: none; }

.slick-list.dragging {
  cursor: pointer;
  cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block; }

.slick-track:before,
.slick-track:after {
  display: table;
  content: ''; }

.slick-track:after {
  clear: both; }

.slick-loading .slick-track {
  visibility: hidden; }

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px; }

[dir='rtl'] .slick-slide {
  float: right; }

.slick-slide img {
  display: block; }

.slick-slide.slick-loading img {
  display: none; }

.slick-slide.dragging img {
  pointer-events: none; }

.slick-initialized .slick-slide {
  display: block; }

.slick-loading .slick-slide {
  visibility: hidden; }

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

html,
body {
  height: 100%; }

body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  font: 400 15px/18px 'Proxima Nova';
  background-color: #edf1f2; }
  

.container {
  width: 1000px;
  margin: 0 auto; }
  @media screen and (max-width: 1023px) {
    .container {
      width: 100%; } }

* {
  box-sizing: border-box;
  font-weight: normal;
  outline: none; }
  *:hover {
    cursor: default; }

.slick-track, .slick-slide {
  -webkit-transform: translateZ(0); }

ul, li, p, h1, h2, h3, h4 {
  margin: 0;
  padding: 0;
  list-style: none; }

.header__title h1{
    font-size: 27px;
}

.header__title a {color: #000; font-weight: 500}

.h1-like{
  font-size: 30px;
}

a {
  text-decoration: none;
  color:#6094e1;
}
  a:hover {
    cursor: pointer; }

.clearfix:after {
  content: '';
  display: block;
  width: 100%;
  clear: both; }

@font-face {
  font-family: 'Muller';
  src: url("fonts/Muller-Regular.eot");
  src: url("fonts/Muller-Regular.eot@") format("embedded-opentype"), url("fonts/Muller-Regular.woff") format("woff"), url("fonts/Muller-Regular.ttf") format("truetype"), url("fonts/Muller-Regular.svg") format("svg");
  font-weight: 400;
  font-style: normal; }

@font-face {
  font-family: 'Muller';
  src: url("fonts/Muller-Light.eot");
  src: url("fonts/Muller-Light.eot@") format("embedded-opentype"), url("fonts/Muller-Light.woff") format("woff"), url("fonts/Muller-Light.ttf") format("truetype"), url("fonts/Muller-Light.svg") format("svg");
  font-weight: 300;
  font-style: normal; }

@font-face {
  font-family: 'Muller';
  src: url("fonts/Muller-Medium.eot");
  src: url("fonts/Muller-Medium.eot@") format("embedded-opentype"), url("fonts/Muller-Medium.woff") format("woff"), url("fonts/Muller-Medium.ttf") format("truetype"), url("fonts/Muller-Medium.svg") format("svg");
  font-weight: 500;
  font-style: normal; }

@font-face {
  font-family: 'Proxima Nova';
  src: url("fonts/Proxima Nova Regular.eot");
  src: url("fonts/Proxima Nova Regular.eot@") format("embedded-opentype"), url("fonts/Proxima Nova Regular.woff") format("woff"), url("fonts/Proxima Nova Regular.ttf") format("truetype"), url("fonts/Proxima Nova Regular.svg") format("svg");
  font-weight: 400;
  font-style: normal; }

@font-face {
  font-family: 'Proxima Nova';
  src: url("fonts/Proxima Nova Light.eot");
  src: url("fonts/Proxima Nova Light.eot@") format("embedded-opentype"), url("fonts/Proxima Nova Light.woff") format("woff"), url("fonts/Proxima Nova Light.ttf") format("truetype"), url("fonts/Proxima Nova Light.svg") format("svg");
  font-weight: 300;
  font-style: normal; }

@font-face {
  font-family: 'Proxima Nova';
  src: url("fonts/Proxima Nova Bold.eot");
  src: url("fonts/Proxima Nova Bold.eot@") format("embedded-opentype"), url("fonts/Proxima Nova Bold.woff") format("woff"), url("fonts/Proxima Nova Bold.ttf") format("truetype"), url("fonts/Proxima Nova Bold.svg") format("svg");
  font-weight: 700;
  font-style: normal; }

@font-face {
  font-family: 'Proxima Nova';
  src: url("fonts/Proxima Nova Semibold.eot");
  src: url("fonts/Proxima Nova Semibold.eot@") format("embedded-opentype"), url("fonts/Proxima Nova Semibold.woff") format("woff"), url("fonts/Proxima Nova Semibold.ttf") format("truetype"), url("fonts/Proxima Nova Semibold.svg") format("svg");
  font-weight: 600;
  font-style: normal; }

@font-face {
  font-family: 'Proxima Nova';
  src: url("fonts/Proxima Nova Regular Italic.eot");
  src: url("fonts/Proxima Nova Regular Italic.eot@") format("embedded-opentype"), url("fonts/Proxima Nova Regular Italic.woff") format("woff"), url("fonts/Proxima Nova Regular Italic.ttf") format("truetype"), url("fonts/Proxima Nova Regular Italic.svg") format("svg");
  font-weight: 400;
  font-style: italic; }

@font-face {
  font-family: 'Proxima Nova';
  src: url("fonts/Proxima Nova Bold Italic.eot");
  src: url("fonts/Proxima Nova Bold Italic.eot@") format("embedded-opentype"), url("fonts/Proxima Nova Bold Italic.woff") format("woff"), url("fonts/Proxima Nova Bold Italic.ttf") format("truetype"), url("fonts/Proxima Nova Bold Italic.svg") format("svg");
  font-weight: 700;
  font-style: italic; }

@font-face {
  font-family: 'Proxima Nova';
  src: url("fonts/Proxima Nova Semibold Italic.eot");
  src: url("fonts/Proxima Nova Semibold Italic.eot@") format("embedded-opentype"), url("fonts/Proxima Nova Semibold Italic.woff") format("woff"), url("fonts/Proxima Nova Semibold Italic.ttf") format("truetype"), url("fonts/Proxima Nova Semibold Italic.svg") format("svg");
  font-weight: 600;
  font-style: italic; }

.comments__wrapper
{
  margin-top: 56px;
}
.show-all {background: #fff; text-align: center; font-size: 18px; padding: 15px; margin-top: 10px; display: block;}

.show-all span {font-weight:300; font-family: "Muller"; cursor: pointer;}
.show-all.js span {
    border-bottom: 1px dashed #6094e1;}
.show-all.js:hover span {border-bottom: 0px;}

.main__address {margin-top: 80px;}

.actions__wrapper {
  position: relative; }
  .actions__wrapper:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #edf1f2;
    z-index: 1; }

.actions {
  background-color: #fff;
  position: relative;
  z-index: 2; }

.actions__list-item-preview {
  position: relative; }
  .actions__list-item-preview:after {
    content: '';
    background: url("images/actions-arrow.png") no-repeat;
    position: absolute;
    -webkit-transition: -webkit-transform .2s ease;
            transition: transform .2s ease; }
    .actions__list-item._open .actions__list-item-preview:after {
      -webkit-transform: rotate(180deg);
              transform: rotate(180deg); }

.actions__list-item-preview-col {
  display: inline-block;
  vertical-align: top; }

.actions__list-item-preview-img {
  border-radius: 50%; }

.actions__list-item-preview-date {
  color: rgba(32, 32, 32, 0.5);
  font-size: 14px;
  font-style: italic; }

.actions__list-item-desc {
  display: none; }

.hl{color: #6094e1;}

.cross-links {position: relative; z-index: 2; max-width: 1000px; margin: 20px auto 0px; background: #fff; padding: 20px; display: none;}
.cross-links a {display: inline-block; width: 50%; border:1px solid #dedede; box-sizing: border-box; padding: 10px 20px 10px 100px; color: #353535; min-height: 80px; vertical-align: top;}
.cross-links a b {text-transform: uppercase; font-size: 12px; font-weight: 600;}

@media screen and (min-width: 1024px) {
  .actions__wrapper {
    padding: 65px 0 58px; }
  .actions {
    padding: 31px 32px 37px; }
  .actions__header {
    font: 300 28px/36px 'Muller';
    margin-bottom: 35px; }
  .actions__list-item {
    margin-bottom: 13px; }
  .actions__list-item-preview {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 21px 24px 16px;
    -webkit-transition: border-color .3s ease;
            transition: border-color .3s ease; }
    .actions__list-item-preview:after {
      width: 18px;
      height: 8px;
      right: 35px;
      top: 50px;
      -webkit-transition: background .3s ease;
              transition: background .3s ease; }
    .actions__list-item-preview:hover {
      border-color: #bfd4f3;
      cursor: pointer; }
      .actions__list-item-preview:hover:after {
        background: url("images/actions-arrow-blue.png") no-repeat; }
  .actions__list-item-preview-col._title {
    max-width: 740px; }
  .actions__list-item-preview-col:hover {
    cursor: pointer; }
  .actions__list-item-preview-img {
    width: 62px;
    height: 62px;
    margin-right: 22px; }
    .actions__list-item-preview-img:hover {
      cursor: pointer; }
  .actions__list-item-preview-date {
    padding-top: 4px;
    margin-bottom: 10px; }
    .actions__list-item-preview-date:hover {
      cursor: pointer; }
    .actions__list-item-preview-date._mobile {
      display: none; }
  .actions__list-item-preview-title {
    font: 300 22px/28px 'Muller'; }
    .actions__list-item-preview-title:hover {
      cursor: pointer; }
  .actions__list-item-desc {
    padding: 30px 0 20px; }
    .actions__list-item-desc p {
      line-height: 26px;
      margin-bottom: 20px; }
      .actions__list-item-desc p:last-child {
        margin-bottom: 0; } }

@media screen and (max-width: 1023px) {
  .cross-links a {width: 100%; margin-top: -1px;}
  .actions__wrapper {
    padding: 40px 15px 36px; }
  .actions {
    padding: 18px 0px 0; }
  .actions__header {
    font: 300 22px/25px 'Muller';
    margin-bottom: 12px;
    text-align: center; }
  .actions__list-item-preview {
    display: table;
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 12px 13px; }
    .actions__list-item-preview:after {
      width: 13px;
      height: 6px;
      right: 14px;
      top: 45px;
      background-size: 13px 6px; }
    .actions__list-item-preview:hover {
      cursor: pointer; }
    .actions__list-item._open .actions__list-item-preview {
      border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
  .actions__list-item-preview-col {
    display: table-cell; }
    .actions__list-item-preview-col._img {
      width: 65px; }
  .actions__list-item-preview-img {
    width: 50px;
    height: 50px; }
  .actions__list-item-preview-date {
    margin-bottom: 4px; }
    .actions__list-item-preview-date._desktop {
      display: none; }
  .actions__list-item-preview-title {
    font: 300 16px/18px 'Muller';
    margin-right: 25px; }
  .actions__list-item-desc {
    display: none;
    padding: 15px; }
    .actions__list-item-desc p {
      font-size: 14px;
      margin-bottom: 15px;
      line-height: 21px; } }

.add-comment {
  display: none;
  background-color: #fff;
  position: relative; }

.popup__feedback .add-comment {display: block;}
.popup__feedback .add-comment:before {display: none;}

.add-comment-rub {padding-right: 17px; display: inline-block;}
.add-comment-rub:last-child {padding-right: 0px;}

.add-comment__input-file-wrapper {
  width: 220px;
  height: 30px;
  position: relative;
  overflow: hidden; }

.add-comment__pseudo-input-file {
  display: inline-block;
  white-space: nowrap;
  color: #6094e1;
  border-bottom: 1px dashed #6094e1; }

.add-comment__input-file {
  position: absolute;
  width: 100%;
  top: -50px;
  left: 0;
  right: 0;
  bottom: 0;
  outline: none;
  opacity: 0;
  z-index: 1; }

.add-comment__input {
  display: block;
  padding: 13px 18px;
  font: 400 14px/24px 'Proxima Nova';
  border: 1px solid #aaa;
  border-radius: 0; }

.add-comment__name, .add-comment__contact {
  height: 50px; }

.add-comment__text {
  height: 138px;
  resize: vertical; }

#inactive_data {position: fixed;
    background: rgba(0,0,0,0.6);
    font-size: 3em;
    color: #fff;
    left: 0px;
    right: 0px;
    bottom: 0px;
    top: 0px;
    text-align: center;
    z-index: 9999;
    line-height: 2em;
    padding-top: 150px;
    font-family: "Myriad Pro","Proxima Nova";
}
#inactive_data a {color: #f7e26f; border-bottom: 1px solid rgba(247,226,111,0.7);}
#inactive_data a:hover {border-color: transparent;}
#inactive_data small {font-size: 0.5em; margin-top: -20px; display: block; color: #f7e26f;}
#inactive_data .gold {color: #f7e26f;}

#Comment_rating {margin-bottom: 15px;}

.add-comment__rating-text {
  display: inline-block;
  font-size: 15px;
  vertical-align: top;
  margin: 14px 7px 14px 0; }

.add-comment__rating {
  display: inline-block;
  vertical-align: top;
  margin: 15px 0 15px; }

.add-comment__rating-star {
  width: 18px;
  height: 16px;
  float: left;
  position: relative; }
  .add-comment__rating-star:before {
    content: '';
    width: 18px;
    height: 16px;
    background: url("images/star-blank.png") center center no-repeat;
    background-size: 18px 16px;
    position: absolute;
    top: 0;
    left: 0; }
  .add-comment__rating-star:hover {
    cursor: pointer; }
  .add-comment__rating-star._full:before, .add-comment__rating-star._choosen:before {
    background: url("images/star-rating.png") center center no-repeat;
    background-size: 18px 16px; }

.add-comment__file-dropzone {
  width: 100%;
  min-height: 115px;
  border: 1px dashed #6094e1;
  background-color: #e1e8f2;
  position: relative;
  overflow: hidden; }

.add-comment__pseudo-input-file-dropzone {
  text-align: center;
  font-size: 14px;
  color: #6094e1;
  margin-top: 64px;
  position: relative; }
  .add-comment__pseudo-input-file-dropzone:before {
    content: '';
    width: 100%;
    height: 16px;
    background: url("svg/comment__arr.svg") center center no-repeat;
    position: absolute;
    top: -20px;
    left: 0; }

  .add-comment__pseudo-input-file-dropzone.uploading:before
  {
    background-image: url(images/ajax-loader.gif);
  }
  .add-comment__pseudo-input-file-dropzone.uploading:after {display: none;}

  .add-comment__pseudo-input-file-dropzone:after {
    content: '';
    width: 100%;
    height: 16px;
    background: url("svg/comment__arr-tail.svg") center center no-repeat;
    position: absolute;
    top: -27px;
    left: 0; }

.add-comment__send {
  font: 500 14px/50px 'Muller';
  text-align: center;
  outline: none;
  border: none;
  background: #f7e26f;
  border-radius: 0;
  -webkit-border-radius:0;
  -webkit-appearance: none;}

@media screen and (min-width: 1024px) {
  .add-comment {
    padding: 30px;
    margin-bottom: 40px; }
    .add-comment:before {
      content: "";
      height: 24px;
      width: 24px;
      position: absolute;
      top: -12px;
      right: 120px;
      background-color: white;
      -webkit-transform: rotate(45deg) skew(-5deg, -5deg);
              transform: rotate(45deg) skew(-5deg, -5deg); }
  .add-comment__input-file-wrapper {
    float: right;
    text-align: right;
    margin-top: 10px; }
  .add-comment__pseudo-input-file {
    font: 300 20px/28px 'Muller';
    -webkit-transition: border-color .3s ease;
            transition: border-color .3s ease; }
    .add-comment__input-file-wrapper:hover .add-comment__pseudo-input-file {
      border-color: #fff; }
  .add-comment__input-file:hover {
    cursor: pointer; }
  .add-comment__input {
    margin-bottom: 18px;
    font: 400 14px/24px 'Proxima Nova'; }
    .add-comment__input:hover {
      cursor: text; }
  .add-comment__name {
    width: 50%; }

  .add-comment__contact {width: 49%; float: right;}
  .popup__feedback .add-comment__name {width: 49%; float: left;}

  .add-comment__text {
    width: 100%; }
  .add-comment__send {
    width: 238px;
    height: 50px;
    margin-top: 27px;
    -webkit-transition: background .3s ease;
            transition: background .3s ease; }
    .add-comment__send:hover {
      cursor: pointer;
      background: #fceb8e; } }

@media screen and (max-width: 1023px) {
  .add-comment {
    padding: 20px 0; }

  .popup__feedback .add-comment {padding: 20px;}

    .add-comment:before {
      content: '';
      position: absolute;
      top: 0;
      left: -15px;
      right: -15px;
      height: 1px;
      background-color: rgba(0, 0, 0, 0.1); }
  .add-comment-rub {display: block; text-align: center;}
  .add-comment__rating-text {width: 100px; text-align: right;}
  .add-comment__input-file-wrapper {
    margin-bottom: 10px; }
  .add-comment__pseudo-input-file {
    font: 300 18px/25px 'Muller'; }
  .add-comment__input {
    width: 100%;
    margin-bottom: 12px;
    font: 400 14px/24px 'Proxima Nova'; }
  .add-comment__send {
    width: 190px;
    height: 40px;
    line-height: 40px;
    margin-top: 27px; } }

.beside__sauna {
  background-color: #fff; }

.beside__sauna-rating .rating {
  display: inline-block; }

.beside__sauna-rating-reviews {
  display: inline-block;
  color: rgba(0, 0, 0, 0.6);
  vertical-align: top; }

.beside__sauna-address {
  border-top: 1px solid rgba(0, 0, 0, 0.1); }

.beside__sauna-address-line {
  display: inline;
  color: #6094e1;
  border-bottom: 1px dashed #6094e1;
  position: relative;
  line-height: 20px; }
  .beside__sauna-address-line:before {
    content: '';
    position: absolute;
    background: url("images/i_pointer-address-blue.png") no-repeat;
    top: 2px;
    width: 16px;
    height: 18px; }

.beside__sauna-address-metro {
  position: relative; }
  .beside__sauna-address-metro:before {
    content: '';
    position: absolute;
    top: 2px;
    background: url("images/i_mertro-red.png") no-repeat;
    width: 16px;
    height: 13px; }
  .beside__sauna-address-metro span {
    /*color: rgba(0, 0, 0, 0.5);*/ }

@media screen and (min-width: 1024px) {
  .beside {
    padding: 50px 0; }
  .beside__header {
    font: 300 28px/36px 'Muller';
    margin-bottom: 50px; }
  .beside__saunas {
    margin: 0 -20px; }
  .beside__sauna {
    width: 306px;
    margin: 0 20px;
    float: left; }
  .beside__sauna-img {
    width: 306px;
    height: 172px; }
  .beside__sauna-title {
    font: 300 22px/30px 'Muller';
    padding: 21px 24px 10px;
    display: block;
    color: #1f1f1f; }
  .beside__sauna-rating {
    padding: 0 24px; }
    .beside__sauna-rating .rating {
      height: 16px;
      width: 90px;
      margin-right: 5px; }
    .beside__sauna-rating .rating__stars._blank, .beside__sauna-rating .rating__stars._rating {
      background-size: 18px 16px; }
  .beside__sauna-rating-reviews {
    font-size: 14px; }
  .beside__sauna-address {
    margin: 23px 0 0;
    padding: 23px 24px 12px 53px; }
  .beside__sauna-address-line {
    margin: 0 0 12px 0;
    -webkit-transition: border-color .3s ease;
            transition: border-color .3s ease; }
    .beside__sauna-address-line:before {
      left: -27px; }
    .beside__sauna-address-line:hover {
      cursor: pointer;
      border-color: #fff; }
  .beside__sauna-address-metro {
    margin: 15px 0 12px 0; }
    .beside__sauna-address-metro:before {
      left: -27px; } }

@media screen and (max-width: 1023px) {
  .beside {
    padding: 30px 15px 10px;
    text-align: center; }
  .beside__header {
    font: 300 22px/25px 'Muller';
    margin-bottom: 13px; }
  .beside__saunas {
    margin: 0 -12px; }
  .beside__sauna {
    width: 290px;
    display: inline-block;
    margin: 12px 10px;
    vertical-align: top; }
  .beside__sauna-img {
    width: 290px;
    height: 150px; }
  .beside__sauna-title {
    display: inline-block;
    color: #1f1f1f;
    font: 300 20px/24px 'Muller';
    padding: 12px 15px 6px; }
  .beside__sauna-rating-reviews {
    font-size: 12px; }
  .beside__sauna-address {
    margin: 17px 0 0;
    padding: 15px 15px 10px; }
  .beside__sauna-address-line {
    margin: 0 0 12px 29px; }
    .beside__sauna-address-line:before {
      left: -23px; }
  .beside__sauna-address-metro {
    display: inline-block;
    margin: 10px 0 12px 20px; }
    .beside__sauna-address-metro:before {
      left: -23px; } }

.comments__header span {
  color: #939696; }

.comments__subheader {
  color: #6094e1; }

.comments__open-add-comment {
  border-bottom: 1px dashed #6094e1; }
  .comments__open-add-comment:hover {
    cursor: pointer; }
  .comments__open-add-comment._add-comment-visible {
    color: #1f1f1f;
    border-color: transparent; }

.comments__comment-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%; }

.comments__comment-content {
  display: table-cell;
  vertical-align: top; }

.comments__comment-name {
  font-weight: 700; }

.comments__comment-date {
  color: rgba(32, 32, 32, 0.5); }

.comments__comment-response .comments__comment-text {
  margin-bottom: 0; }

.comments__comment-images {
  margin: 0 -10px; }

.comments__comment-image {
  margin: 0 10px;
  height: 90px;
  width: auto; }
  .comments__comment-image:hover {
    cursor: pointer; }

.comments__comment-response {
  display: table;
  margin-top: 40px;
  min-width: 90%;
}

.comments__banner {
  overflow: hidden; }

@media screen and (min-width: 1024px) {
  .comments {
    margin-bottom: 83px;
    position: relative; }
  .comments__section {
    display: table;
    width: 100%; }
  .comments__list {
    background-color: #fff;
    padding-bottom: 12px; }
  .comments__comment {
    display: table;
    width: 100%;
    padding: 36px 28px 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
    .comments__comment-response .comments__comment {
      padding: 0;
      border-bottom: none; }
    .comments__comment:last-child {
      border-bottom: none; }
  .comments__comment-photo-wrapper {
    display: table-cell;
    width: 83px;
    vertical-align: top; }
  .comments__comment-content {
    display: table-cell;
    vertical-align: top; }
  .comments__comment-name {
    font-size: 16px;
    display: inline-block;
    margin-right: 18px;
    margin-bottom: 9px; }
  .comments__comment-date {
    display: inline-block; }
  .comments__comment-rating .rating {
    height: 16px;
    width: 90px; }
  .comments__comment-rating .rating__stars._blank, .comments__comment-rating .rating__stars._rating {
    background-size: 18px 16px; }
  .comments__comment-text {
    line-height: 26px;
    margin-bottom: 22px; }
    .comments__comment-response .comments__comment-text {
      margin-bottom: 0; }
  .comments__comment-images {
    margin: 0 -10px; }
  .comments__comment-image {
    margin: 0 10px 10px;
    height: 90px;
    width: auto; }
  .comments__header {
    font: 300 28px/36px 'Muller';
    margin-bottom: 42px; }
    .comments__header span {
      font: 300 21px/36px 'Muller'; }
  .comments__subheader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center; }
  .comments__open-add-comment {
    font: 300 28px/34px 'Muller';
    -webkit-transition: border-color .3s ease;
            transition: border-color .3s ease; }
    .comments__open-add-comment:hover {
      cursor: pointer;
      border-color: transparent; }
  .comments__banner {
    display: table-cell;
    width: 375px;
    vertical-align: top;
    padding-left: 38px; }
    .comments__banner img {
      width: 337px;
      height: 523px; } }

@media screen and (max-width: 1023px) {
  .comments__wrapper {
    background-color: #fff;
    padding: 18px 15px 20px;
  }
  .comments__comment {
    padding: 29px 0 8px;
    position: relative; }
    .comments__comment:before {
      content: '';
      height: 1px;
      position: absolute;
      left: -15px;
      right: -15px;
      top: 0;
      background-color: rgba(0, 0, 0, 0.1); }
      .comments__comment-response .comments__comment:before {
        content: none; }
    .comments__comment-response .comments__comment {
      padding: 24px 0 0; }
      .comments__comment-response .comments__comment:after {
        content: '';
        width: 100%;
        height: 9px;
        background: url("images/comment-arr-mobile.png") center center no-repeat;
        background-size: 19px 9px;
        position: absolute;
        top: -9px;
        left: 0; }
  .comments__comment-photo-wrapper {
    width: 74px;
    float: left; }
    .comments__comment-response .comments__comment-photo-wrapper {
      padding-top: 24px; }
  .comments__comment-photo {
    width: 58px;
    height: 58px; }
  .comments__comment-content {
    display: inline; }
  .comments__comment-name {
    font-size: 15px;
    margin-bottom: 4px; }
    .comments__comment-response .comments__comment-name {
      padding-top: 12px; }
  .comments__comment-date {
    margin-bottom: 4px; }
  .comments__comment-rating .rating {
    height: 13px;
    width: 80px; }
  .comments__comment-rating .rating__stars._blank, .comments__comment-rating .rating__stars._rating {
    background-size: 16px 13px; }
  .comments__comment-text {
    line-height: 21px;
    margin: 8px 0 22px; }
    .comments__comment-response .comments__comment-text {
      margin-bottom: 0; }
  .comments__comment-images {
    margin: 0 -10px; }
  .comments__comment-image {
    margin: 0 8px 15px;
    max-height: 83px;
    width: 137px; }
  .comments__header {
    font: 300 22px/28px 'Muller';
    text-align: center; }
    .comments__header span {
      font: 300 14px/28px 'Muller'; }
  .comments__subheader {
    margin-bottom: 18px;
    text-align: center; }
  .comments__open-add-comment {
    font: 300 18px/25px 'Muller'; }
  .comments__banner {
    margin: 0 -15px;
    padding: 20px 15px 0;
    max-height: 367px;
    position: relative; }
    .comments__banner:before {
      content: '';
      height: 1px;
      position: absolute;
      left: -15px;
      right: -15px;
      top: 0;
      background-color: rgba(0, 0, 0, 0.1); }
    .comments__banner img {
      width: 100%;
      height: auto;
      display: block; } }

.footer__wrapper {
  background-color: #fff; }

.footer__col._left a {
  color: rgba(32, 32, 32, 0.5); }

.footer__link {
  color: #6094e1;
  border-bottom: 1px solid #6094e1;
  line-height: 20px; }

.footer__col-item-text {
  display: inline-block; }

.footer__col-item a{
  text-decoration: underline;
}

.footer__col-item a:hover{
  text-decoration: none;
}


@media screen and (min-width: 1024px) {
  .footer {
    height: 125px;
    line-height: 125px; }
  .footer__col._left {
    float: left; }
  .footer__col._right {
    float: right;
    text-align: right; }
  .footer__col-item {
    display: inline-block;
    margin-left: 33px; }
  .footer__link {
    -webkit-transition: border-color .3s ease;
            transition: border-color .3s ease; }
    .footer__link:hover {
      border-color: #fff; } }

@media screen and (max-width: 1023px) {
  .footer {
    text-align: center;
    padding: 35px 15px 12px; }
  .footer__col._left {
    margin-bottom: 35px; }
  .footer__col-item {
    display: inline-block; }
    .footer__col-item span {
      display: none; }
    .footer__col-item:after {
      content: '';
      display: block;
      width: 100%;
      clear: both; }
  .footer__link {
    display: inline-block;
    margin-bottom: 29px; } }

.hall {
  overflow: hidden; }

/*@media screen and (min-width: 1024px) {
  .hall {
    padding: 45px 0 40px; }
  .hall__slider-item {
    display: none; } }*/

.hall__slider-item {overflow: hidden; padding: 25px 0px 40px;}

@media screen and (max-width: 1023px) {
  .hall {
    width: 100%;
    overflow: hidden;
    padding: 29px 15px 47px; }
  .hall__slider-item {
    display: block !important;
    opacity: 1 !important; } }

.hall__actions-header {
  font: 300 28px/36px 'Muller'; }

.hall__actions-list {
  background-color: #fff; }

.hall__actions-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
  .hall__actions-item:last-child {
    border-bottom: none; }

.hall__actions-item-title {
  color: #6094e1;
  line-height: 20px;
  border-bottom: 1px solid rgba(96, 148, 225, 0.5);
  margin-bottom: 6px; }

.hall__actions-item-date {
  color: rgba(0, 0, 0, 0.6);
  font-style: italic; }

.hall__actions-more {
  display: block;
  width: 100%;
  color: #3e3e3e;
  text-align: center;
  background-color: #f7e26f;
  font: 500 15px/52px 'Muller'; }

@media screen and (min-width: 1024px) {
  .hall__actions {
    display: inline-block;
    width: 338px;
    margin-top: 50px;
    float: right; }
  .hall__actions-header {
    margin-bottom: 25px; }
  .hall__actions-item {
    padding: 18px 25px; }
  .hall__actions-item-title {
    -webkit-transition: border-color .3s ease;
            transition: border-color .3s ease; }
    .hall__actions-item-title:hover {
      border-color: #fff; }
  .hall__actions-item-date {
    font-size: 14px; }
  .hall__actions-more {
    margin-top: 15px;
    height: 50px;
    -webkit-transition: background .3s ease;
            transition: background .3s ease; }
    .hall__actions-more:hover {
      background: #fceb8e; } }

@media screen and (max-width: 1023px) {
  .hall__actions {
    margin-top: 19px;
    text-align: center; }
  .hall__actions-header {
    font-size: 22px;
    line-height: 25px;
    margin-bottom: 17px; }
  .hall__actions-item {
    padding: 9px 15px 8px; }
  .hall__actions-item-title {
    margin-bottom: 3px;
    line-height: 20px; }
  .hall__actions-item-date {
    font-size: 13px; padding-top: 5px;}
  .hall__actions-more {
    margin-top: 13px;
    height: 38px;
    font-size: 13px;
    line-height: 40px; } }

.hall__desc-header {
  font: 300 28px/36px 'Muller'; }

.hall__desc-text {
  color: #202020; }

@media screen and (min-width: 1024px) {
  .hall__desc {
    display: inline-block;
    width: 626px;
    margin-top: 30px;
    float: left; }
    .hall__actions + .hall__desc, .hall__desc + .hall__desc {
      display: none; }
  .hall__desc-text {
    line-height: 26px;
    margin-top: 30px; }
    .hall__desc-text p {
      margin-bottom: 30px; } }

@media screen and (max-width: 1023px) {
  .hall__desc {
    margin-top: 29px;
    text-align: center; }
    .hall__gallery + .hall__desc, .hall__info + .hall__desc, .hall__videos + .hall__desc, .hall__desc + .hall__desc {
      display: none; }
  .hall__desc-header {
    font-size: 22px;
    line-height: 25px; }
  .hall__desc-text {
    margin-top: 14px;
    line-height: 21px;
    padding: 0 3px; }
    .hall__desc-text p {
      margin-bottom: 20px; } }

.hall__gallery-header {
  font: 300 28px/36px 'Muller'; }

@media screen and (min-width: 1024px) {
  .hall__gallery {
    display: inline-block;
    padding-top: 10px;
    position: relative;
    width: 626px; }
  .hall__gallery-subheader {
    font-weight: 300;
  }
  .hall__gallery-btn {
    height: 48px;
    background-color: #fff;
    padding: 0 57px;
    font: 500 15px/48px 'Muller';
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: background .3s ease, color .3s ease;
            transition: background .3s ease, color .3s ease; }
    .hall__gallery-btn:hover {
      cursor: pointer;
      background: #6094e1;
      color: #fff; }
  .hall__gallery-photos {
    margin: 29px -8px 0;
    position: relative; }
  .hall__gallery-photo {
    width: 198px;
    height: 132px;
    margin: 0 8px 15px;
    float: left; }
    /*.hall__gallery-photo:nth-child(1), .hall__gallery-photo:nth-child(2) {
      width: 305px;
      height: 213px;
      margin-bottom: 12px; }*/
    .hall__gallery-photo:nth-child(n+7) {
      display: none; }
    .hall__gallery-photo:hover {
      cursor: pointer; }

     }

@media screen and (max-width: 1023px) {
  .hall__gallery {
    text-align: center; }
  .hall__gallery-header {
    margin-top: 0px;
    font: 300 22px/25px 'Muller';
    padding: 0 10px; }
  .hall__gallery-subheader {
    font: 300 21px/25px 'Muller'; }
  .hall__gallery-btn {
    display: none; }
  .hall__gallery-photos {
    margin: 15px 0 0;
    position: relative; }
  .hall__gallery-photo {
    display: inline-block !important;
    width: 49%;
    float: left;
    margin: 1px;}
  .hall__gallery-photo:nth-child(2n){
    float: right;}
  .hall__gallery-photos-more {
    display: none !important; } }

.hall__info-inner {
  background-color: #fff; }

.hall__info-price-old {
  color: rgba(0, 0, 0, 0.4);
  text-decoration: line-through;
  vertical-align: top; }

.hall__info-sale {
  display: inline-block;
  background-color: #f02c25;
  color: #fff;
  vertical-align: top; }

.hall__info-more {
  position: relative; }
  .hall__info-more:after {
    content: '';
    height: 1px;
    position: absolute;
    bottom: -17px;
    background-color: rgba(0, 0, 0, 0.1); }

.hall__info-more-item {
  line-height: 22px; }
  .hall__info-more-item:before {
    content: '— '; }

.hall__info-offers {
  position: relative; }
  .hall__info-offers:before {
    content: '';
    height: 1px;
    position: absolute;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.1); }

.hall__info-offer {
  display: inline-block;
  background-color: #f7e26f;
  color: rgba(34, 34, 34, 0.8);
  font: italic 14px/24px 'Proxima Nova'; }

.hall__capacity-title {
  font-style: italic; }
  .hall__capacity-title span {
    font-weight: 700; }

.hall__capacity-peoples i {
  float: left;
  background: url("images/i_man-blank.png") no-repeat; }
  .hall__capacity-peoples i:nth-child(5n) {
    margin-right: 6px; }
  .hall__capacity-peoples i:last-child {
    margin-right: 0; }

@media screen and (min-width: 1024px) {
  .hall__info {
    width: 338px;
    float: right;
    padding-top: 10px; }
  .hall__info-header {
    font: 300 28px/36px 'Muller'; }
  .hall__info-inner {
    padding: 22px 22px 24px;
    margin-top: 29px; }
  .hall__info-price span {font-weight: 300; vertical-align: top;}
  .hall__info-price {
    font: 300 29px/34px 'Muller'; }
  .hall__info-price-old {
    font: 300 19px/28px 'Muller'; }
  .hall__info-sale {
    height: 20px;
    padding: 0 10px;
    font: italic 600 13px/20px 'Proxima Nova';
    margin: 3px 0 0 7px; }
  .hall__info-more {
    margin: 15px 0 15px; }
    .hall__info-more:after {
      left: -22px;
      right: -22px; }
  .hall__info-more-title {
    display: inline-block;
    color: #6094e1;
    line-height: 18px;
    border-bottom: 1px dashed #6094e1;
    position: relative;
    -webkit-transition: border-color .3s ease;
            transition: border-color .3s ease; }
    .hall__info-more-title:before {
      content: '';
      width: 24px;
      height: 10px;
      background: url("images/i_arr-bottom.png") no-repeat;
      background-size: 9px 4px;
      background-position: center center;
      position: absolute;
      right: -24px;
      top: 6px; }
      .hall__info-more-title:before:hover {
        cursor: pointer; }
    .hall__info-more-title:hover {
      cursor: pointer;
      border-color: #fff; }
  .hall__info-more-inner {
    display: none;
    padding-top: 10px; }
  .hall__info-offers {
    padding: 14px 0;
    margin: 0 -4px 20px; }
    .hall__info-offers:before {
      left: -18px;
      right: -18px; }
  .hall__info-offer {
    float: left;
    margin: 4px;
    height: 24px;
    padding: 0 15px; }
  .hall__capacity-peoples {
    padding-top: 15px; }
    .hall__capacity-peoples i {
      width: 8px;
      height: 16px; } }

@media screen and (max-width: 1023px) {
  .hall__info {
    width: 100%;
    text-align: center; }
  .hall__info-header {
    display: none; }
  .hall__info-inner {
    padding: 21px 15px 17px; }
  .hall__info-price {
    font: 300 21px/24px 'Muller'; }
  .hall__info-price-old {
    font: 300 18px/21px 'Muller'; }
  .hall__info-sale {
    height: 18px;
    padding: 0 8px;
    font: italic 400 12px/19px 'Proxima Nova';
    margin: -1px 0 0 0; }
  .hall__info-more {
    margin: 30px 0 17px; }
    .hall__info-more:after {
      left: -15px;
      right: -15px;
      bottom: -14px; }
    .hall__info-more:before {
      content: '';
      height: 1px;
      position: absolute;
      left: -15px;
      right: -15px;
      top: -14px;
      background-color: rgba(0, 0, 0, 0.1); }
  .hall__info-more-title {
    display: inline-block;
    margin-bottom: 7px;
    color: #aea4a4; }
    .hall__info-more-title:after {
      content: ':'; }
  .hall__info-offers {
    padding: 7px 4px 17px; }
    .hall__info-offers:before {
      left: -15px;
      right: -15px;
      bottom: 2px; }
  .hall__info-offer {
    padding: 0 13px;
    height: 18px;
    font-size: 12px;
    line-height: 19px;
    margin: 3px 2px; }
  .hall__capacity-title {
    margin-top: 8px; }
  .hall__capacity-peoples {
    padding-top: 8px;
    width: 260px;
    margin: 0 auto; }
    .hall__capacity-peoples i {
      width: 8px;
      height: 14px;
      background-size: 7px 14px; }
      .hall__capacity-peoples i:nth-child(5n) {
        margin-right: 4px; }
      .hall__capacity-peoples i:last-child {
        margin-right: 0; } }

.hall__videos-header {
  font: 300 28px/36px 'Muller'; }

.hall__videos-list {
  margin: 25px -8px 0; }

.hall__videos-video {
  margin: 0 8px 12px;
  position: relative; }
  .hall__videos-video:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6); }

.hall__videos-play {
  position: absolute;
  border-radius: 50%;
  z-index: 1; }
  .hall__videos-play:before {
    content: '';
    position: absolute; }

@media screen and (min-width: 1024px) {
  .hall__videos {
    float: left;
    width: 626px;
    margin-top: 30px; }
  .hall__videos-video {
    width: 305px;
    height: 160px;
    float: left; }
  .hall__videos-img {
    width: 305px;
    height: 160px; }
  .hall__videos-play {
    width: 57px;
    height: 57px;
    top: 56px;
    left: 125px;
    border: 2px solid #fff;
    -webkit-transition: -webkit-transform .2s ease;
            transition: transform .2s ease; }
    .hall__videos-play:before {
      width: 23px;
      height: 22px;
      background: url("images/i_play-video.png") no-repeat;
      top: 16px;
      left: 17px; }
    .hall__videos-play:hover {
      cursor: pointer;
      -webkit-transform: scale(1.1);
              transform: scale(1.1); } }

@media screen and (max-width: 1023px) {
  #inactive_data {font-size: 5.4vh;
    padding: 6vh 20px 0px;
    line-height: 7.5vh;}
  #inactive_data img {width: 150px;}
  #inactive_data p {margin-bottom: 5vh;}

  #inactive-popup {
    left: 5%;
    width: 90%;
    margin-left: 0px;
  }

  .hall__videos {
    margin-top: 32px;
    text-align: center; }
  .hall__videos-header {
    font-size: 21px;
    line-height: 25px; }
  .hall__videos-video {
    display: inline-block;
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-bottom: 10px; }
  .hall__videos-img {
    width: 100%;
    height: auto; }
  .hall__videos-play {
    width: 48px;
    height: 48px;
    top: 50%;
    left: 50%;
    margin-top: -24px;
    margin-left: -32px;
    border: 1px solid #fff; }
    .hall__videos-play:before {
      width: 18px;
      height: 17px;
      background: url("images/i_play-video-mobile.png") no-repeat;
      background-size: 18px 17px;
      top: 15px;
      left: 17px; } }

.halls-list__wrapper {
  background-color: #fff;

}

.halls-list__item {
  outline: none; }

.halls-list__item-link {
  border-bottom: 1px dashed #6094e1;
  white-space: nowrap;
  color: #6094e1; }
  .halls-list__item._active .halls-list__item-link {
    border-bottom: none;
    color: #4d4935; }
    .halls-list__item._active .halls-list__item-link:hover {
      cursor: default; }

@media screen and (min-width: 1024px) {
  .halls-list {
    height: 80px;
    padding: 22px 0;
    position: relative; }
  .halls-list__header {
    display: none; }
  .halls-list__table {
    display: table;
    width: 100%;
    overflow-y: hidden;
    text-align: left; }
    .halls-list__table._more-than-five {
      width: calc(100% - 140px);
      padding-right: 15px;}
  .halls-list__item {
    display: inline-block; 
    margin-right: 30px;
  }
    .halls-list__item:nth-child(n+6) {
      display: none; }
  .halls-list__item-link-wrapper {
    display: inline-block;
    padding: 7px 25px 6px;
    border: 2px solid #fff;
    -webkit-transition: border-color .3s ease;
            transition: border-color .3s ease;  }
    .halls-list__item._active .halls-list__item-link-wrapper {
      border-color: #f7e26f; }
  .halls-list__item-link {
    display: inline-block;
    font: 500 19px/19px 'Muller';
    -webkit-transition: border-color .3s ease;
            transition: border-color .3s ease; }
    .halls-list__item-link:hover {
      cursor: pointer;
      border-color: transparent; }
  .hall__list-more {
    display: none;
    position: absolute;
    top: 0;
    right: 0; }
  .halls__list-more-dropdown {
    position: absolute;
    right: 0;
    width: 140px;
    height: 80px;
    line-height: 80px;
    padding-left: 17px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    -webkit-transition: all .3s ease;
            transition: all .3s ease; }
    .hall__list-more:hover .halls__list-more-dropdown {
      cursor: pointer;
      border-color: #6094e1;
      background-color: #6094e1;
      color: #fff; }
  .hall__list-more-burger {
    position: absolute;
    display: block;
    width: 27px;
    height: 3px;
    background-color: rgba(0, 0, 0, 0.11);
    top: 40px;
    right: 15px;
    -webkit-transition: background-color .2s ease;
            transition: background-color .2s ease; }
    .hall__list-more:hover .hall__list-more-burger {
      cursor: pointer;
      background-color: #fff; }
    .hall__list-more-burger:before, .hall__list-more-burger:after {
      content: '';
      position: absolute;
      width: 27px;
      height: 3px;
      background-color: rgba(0, 0, 0, 0.11);
      right: 0;
      -webkit-transition: background-color .2s ease;
              transition: background-color .2s ease; }
      .hall__list-more:hover .hall__list-more-burger:before, .hall__list-more:hover .hall__list-more-burger:after {
        background-color: #fff; }
    .hall__list-more-burger:before {
      top: -10px; }
    .hall__list-more-burger:after {
      top: 10px; }
  .halls__list-more-halls {
    min-width: 247px;
    display: none;
    position: absolute;
    right: 0;
    top: 100px;
    box-shadow: 7px 13px 30px 0px rgba(0, 0, 0, 0.1);
    z-index: 2; }
    .halls__list-more-halls:after {
      content: '';
      height: 20px;
      position: absolute;
      top: -20px;
      right: 0;
      left: 0; }
    .halls__list-more-halls:before {
      content: '';
      height: 20px;
      width: 20px;
      position: absolute;
      top: -9px;
      right: 20px;
      background-color: #fff;
      -webkit-transform: rotate(45deg);
              transform: rotate(45deg);
      z-index: -1; }
  .halls__list-more-halls .halls-list__item {
    background-color: #fff;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    -webkit-transition: background-color .3s ease, color .3s ease;
            transition: background-color .3s ease, color .3s ease; }
    .halls__list-more-halls .halls-list__item._active:hover {
      background-color: #fff; }
      .halls__list-more-halls .halls-list__item._active:hover span {
        color: #000; }
    .halls__list-more-halls .halls-list__item._active .halls-list__item-link-text {
      border-bottom: none; }
    .halls__list-more-halls .halls-list__item._active, .halls__list-more-halls .halls-list__item:first-child._active {
      padding: 0;
      text-align: left;
      border-color: transparent; }
    .halls__list-more-halls .halls-list__item:last-child {
      border-bottom: none; }
    .halls__list-more-halls .halls-list__item span {
      -webkit-transition: color .3s ease;
              transition: color .3s ease; }
    .halls__list-more-halls .halls-list__item:hover {
      background-color: #6094e1;
      cursor: pointer; }
      .halls__list-more-halls .halls-list__item:hover .halls-list__item-link-text {
        color: #fff;
        cursor: pointer; }
  .halls__list-more-halls .halls-list__item-link {
    display: block;
    padding: 20px 20px 0;
    border-bottom: none; }
  .halls__list-more-halls .halls-list__item-link-text {
    font: 500 15px/18px 'Muller';
    border-bottom: 1px dashed #6094e1;
    -webkit-transition: color .3s ease;
            transition: color .3s ease; }
  .halls__list-more-halls .halls-list__item-link-wrapper {
    width: 100%;
    height: 55px;
    padding: 0;
    border-color: transparent;}
    .halls__list-more-halls .halls-list__item-link-wrapper:hover {
      cursor: pointer; } }

@media screen and (max-width: 1023px) {
  .halls-list__header {
    height: 120px;
    background-color: #edf1f2;
    padding-top: 68px;
    text-align: center;
    font: 300 22px/24px 'Muller';
    position: relative; }
  .halls-list__slider-arr {
    position: absolute;
    width: 50px;
    height: 50px;
    bottom: 15px; }
    .halls-list__slider-arr._prev {
      background: url("images/halls-arr-prev.png") 15px center no-repeat;
      background-size: 8px 17px;
      left: 0; }
    .halls-list__slider-arr._next {
      background: url("images/halls-arr-next.png") 27px center no-repeat;
      background-size: 8px 17px;
      right: 0; }
  .halls-list__table {
    height: 85px;
    padding-top: 31px;
    white-space: nowrap;
    overflow: hidden;
    text-align: center;
  }
  .halls-list__item {
    display: inline-block !important;
    margin: 0 10px;
    overflow: visible;}
  .halls-list__item-link-wrapper {
    padding: 2px 20px 2px; }
    .halls-list__item.slick-current .halls-list__item-link-wrapper {
      border: 1px solid #f7e26f; }
  .halls-list__item-link {
    outline: none;
    font: 400 15px/15px 'Muller'; }
    .halls-list__item.slick-current .halls-list__item-link {
      color: #4d4935;
      border-bottom: transparent; }
  .hall__list-more {
    display: none !important; }
  .halls-list__item.slick-slide.slick-cloned{
   display: none !important; }
  }

@media screen and (max-width: 400px) {
  .halls-list__table {
    padding-top: 28px; }
  .halls-list__item-link {
    font: 400 12px/15px 'Muller'; } }

.header__wrapper {
  z-index: 2; 
  background: #fff;
}

.header {
  color: #000; }

.header__title {
  margin-bottom: 8px; }

.header__reviews-amount {
  display: inline-block;
  font-style: italic;
  color: #757575;
  background-color: rgba(255, 255, 255, 0.3);
  vertical-align: top;
  cursor: pointer;
}

.header__phones-tel {
  display: inline-block;
  color: #000;
}

@media screen and (min-width: 1024px) {
  .hall__slider-item:nth-child(even) {background: #fff;}
  .hall__slider-item:nth-child(even) .hall__info-inner {background:#edf1f2;} 
  .header__wrapper {
    min-height: 100px;
    position: relative;
    top: 0;
    right: 0;
    left: 0;
    z-index: 2;
    overflow: hidden;
  }
  .header__content {
    width: 50%;
    min-height: 100px;
    float: left;
    padding: 25px 0 10px; }
  .header__title {
    font: 500 24px/28px 'Muller'; }
  .header__price {
    display: none; }
  .header__reviews-amount {
    height: 21px;
    line-height: 21px;
    font-size: 14px;
    padding: 0 15px; }
  .header__phones {
    float: right;
    text-align: right;
    width: 50%;
    font-size: 25px;
    padding: 25px 0px 10px; }
  .header__phones-tel {
    margin-left: 30px;
    font: 500 25px/28px 'Muller'; } }

@media screen and (max-width: 1023px) {
  .header__wrapper {
    padding: 60px 15px 30px;
    position: relative;
    text-align: center; }
  .header__content {
    padding-bottom: 22px; }
  .header__title {
    font: 300 28px/32px 'Muller'; }
  .header__reviews-amount {
    height: 18px;
    line-height: 18px;
    font-size: 12px;
    padding: 0 12px; }
  .header__price {
    height: 36px;
    font: 300 20px/24px 'Muller';
    background-color: rgba(255, 255, 255, 0.3);
    padding-top: 7px;
    margin-top: 25px; }
  .header__phones-tel {
    display: block;
    font: 300 19px/33px 'Muller'; } }

.main {
  position: relative;
  overflow-y: hidden;
  padding-bottom: 30px;
}
  .main:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /*background-color: rgba(0, 0, 0, 0.7);*/
    z-index: 1; }

/*@media screen and (min-width: 1024px) {
  .main {
    padding-top: 194px; } }*/

@media screen and (max-width: 1023px) {
  .main {
    padding-bottom: 192px; } }

@media screen and (min-width: 1024px) {

  .main__action-wrapper {
    height: 214px;
    /*background-color: rgba(0, 0, 0, 0.5);*/
    margin-top: 34px;
    position: relative;
    z-index: 2;
    padding-top: 72px; }
  .main__action-decorations-wrapper {
    position: absolute;
    height: 50px;
    top: 22px;
    left: 50%;
    margin-left: -500px;
    overflow: hidden;
    text-align: center; }
  .main__action {
    background-color: #fff;
    height: 115px;
    text-align: center;
    padding-top: 25px;
    position: relative; }
  .main__action-header {
    margin: 0 0 10px;
    font: 300 30px/36px 'Muller'; }
  .main__action-more {
    display: inline-block;
    color: #6094e1;
    line-height: 20px;
    border-bottom: 1px dashed #6094e1;
    -webkit-transition: border-color .3s ease;
            transition: border-color .3s ease; }
    .main__action-more:hover {
      cursor: pointer;
      border-color: #fff; } }

@media screen and (max-width: 1023px) {
  .main__action-wrapper {
    display: none; } }

.main__address {
  /*background-color: rgba(0, 0, 0, 0.5);*/
  color: #fff; }

.main__address-address {
  position: relative;
  cursor: pointer;}
  .main__address-address:before {
    content: '';
    position: absolute;
    left: 0;
    top: -3px;
    background-image: url("svg/i_pointer-address.svg");
    background-repeat: no-repeat;
    width: 18px;
    height: 21px; }
  .main__address-address._metro:before {
    top: 0;
    background-image: url("svg/i_metro.svg");
    background-repeat: no-repeat;
    width: 19px;
    height: 15px; }
  .main__address-address._metro span {
    color: rgba(255, 255, 255, 0.5); }
  .main__address-address:last-child {
    margin-bottom: 0; }

@media screen and (min-width: 1024px) {
  .main__address {
    display: table;
    position: relative;
    z-index: 2; }
  .main__address-content {
    display: table-cell;
    width: 434px;
    min-width: 434px;
    padding: 30px 40px;
    vertical-align: top; }
  .main__address-header {
    margin-bottom: 20px;
    font: 300 24px/28px 'Muller'; }
    .main__address-header._metro {
      margin-top: 45px; }
  .main__address-address, .main__address-worktime {
    padding-left: 30px;
    margin-bottom: 15px; }
  .main__address-map {
    display: table-cell;
    width: 566px;
    max-width: 566px;
    height: 269px;
    background-color: white;} }

@media screen and (max-width: 1023px) {
  .main__address {
    text-align: center; 
    margin-top: 0px;
  }
  .main__address-content {
    padding: 26px 15px 38px; }
  .main__address-header {
    font: 300 22px/24px 'Muller';
    margin-bottom: 9px;
    position: relative;
    z-index: 2; }
    .main__address-header._metro {
      margin-top: 25px; }
  .main__address-address, .main__address-worktime {
    padding-left: 22px;
    display: inline-block;
    margin: 0 5px 8px;
    position: relative;
    z-index: 2; }
    .main__address-address:before {
      width: 15px;
      height: 17px;
      background-size: 15px 17px;
      top: 0; }
    .main__address-address._metro:before {
      height: 12px;
      background-size: 15px 12px;
      top: 2px; }
  .main__address-map {
    position: absolute;
    width: 100%;
    height: 192px;
    bottom: 0;
    z-index: 2; } }

.main__halls {
  color: #fff;
  position: relative;
  z-index: 2; }

.main__halls-list-item {
  display: inline-table;
  background-color: #fff;
  font-style: italic; color: #2e497c;
}

@media screen and (min-width: 1024px) {
  .main__halls {
    margin-top: 68px; 
    padding: 0px 42px;
  }
  .main__halls-header {
    font: 300 24px/28px 'Muller'; }
  .main__halls-list {
    margin: 13px -5px 0; }
  .main__halls-list-item {
    float: left;
    height: 21px;
    line-height: 21px;
    font-size: 14px;
    margin: 5px;
    padding: 0 15px; } }

@media screen and (max-width: 1023px) {
  .main__halls {
    /*background-color: rgba(0, 0, 0, 0.5);*/
    text-align: center;
    padding: 0 15px 29px; }
  .main__halls-header {
    font: 300 22px/25px 'Muller';
    margin-bottom: 12px; }
  .main__halls-list-item {
    font-size: 12px;
    height: 18px;
    line-height: 18px;
    margin: 3px 1px;
    padding: 0 12px; } }

@media screen and (min-width: 1024px) {
  .nav {
    display: none; } }

@media screen and (max-width: 1023px) {
  .nav {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    min-height: 41px;
    z-index: 100;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(128, 106, 96, 0.4); }
    .nav._open {
      bottom: 0;
      height: auto;
      box-shadow: none;
      background-color: transparent; }
  .nav__bg {
    opacity: 0;
    -webkit-transition: opacity .2s ease, background-color .2s ease;
            transition: opacity .2s ease, background-color .2s ease; }
    .nav._open .nav__bg {
      opacity: 1;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(0, 0, 0, 0.57);
      z-index: 1; }
  .nav__btn {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 41px;
    z-index: 50; }
    .nav._open .nav__btn {
      z-index: 1; }
  .nav__items {
    background-color: #fff;
    position: relative;
    z-index: 1; }
  .nav__item-wrapper {
    opacity: 0;
    height: 40px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    line-height: 40px;
    z-index: -1;
    padding: 0 15px;
    font-weight: 600; }
    .nav__item-wrapper._active {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      opacity: 1;
      z-index: 10; }
    .nav._open .nav__item-wrapper {
      position: relative;
      opacity: 1;
      z-index: 1; }
      .nav._open .nav__item-wrapper._active .nav__item:after {
        content: ''; }
      .nav._open .nav__item-wrapper .nav__item:before {
        content: none; }
  .nav__item {
    display: inline-block;
    position: relative; }
    .nav__item:before {
      content: '';
      width: 9px;
      height: 4px;
      position: absolute;
      top: 19px;
      right: -20px;
      background: url("images/arr_nav.png") no-repeat;
      background-size: 9px 4px; }
    .nav__item:after {
      position: absolute;
      left: 0;
      right: 0;
      height: 2px;
      bottom: 5px;
      background-color: #f7e26f; } }

.popup._comment, .popup._feedback {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  overflow-y: auto;
  overflow-x: hidden;
  display: none; }

.popup__wrapper {
  display: table;
  table-layout: fixed;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: auto; }

.popup__comment-wrapper, .popup__feedback-wrapper {
  display: table-cell;
  vertical-align: middle;
  position: relative; }

.popup__bg {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.85);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; }

.popup__comment-close, .popup__feed-close, .popup__feedback-close {
  position: absolute;
  border-radius: 50%; }
  .popup__comment-close:before, .popup__feedback-close:before {
    content: '';
    position: absolute; }

.popup__comment {
  opacity: 0;
  -webkit-transition: opacity .1s ease;
          transition: opacity .1s ease; }
  .popup._comment._open .popup__comment {
    opacity: 1; }

.popup__feedback {
  opacity: 1;
}

.popup__comment-slider {
  width: 100%; }

.popup__comment-slide {
  margin: 0 1px;
  height: auto!important;
  outline: none; }

@media screen and (min-width: 1024px) {
  .popup__comment, .popup__feedback {
    width: 54%;
    margin: 64px auto 50px;
    position: relative; }
  .popup__comment-close, .popup__feedback-close {
    top: 20px;
    right: 13px;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    -webkit-transition: border-color .2s ease;
            transition: border-color .2s ease; }
    .popup__comment-close:before {
      width: 20px;
      height: 20px;
      left: 13px;
      top: 14px;
      background: url("images/popup-close.png") no-repeat;
    }
    .popup__feedback-close:before {
      width: 20px;
      height: 20px;
      left: 13px;
      top: 14px;
      background: url("images/popup-close.png") no-repeat;
    }

    .popup__comment-close:hover, .popup__feedback-close:hover {
      cursor: pointer;
      border-color: #fff; }
  .popup__comment-arr {
    position: absolute;
    width: 37px;
    height: 82px;
    top: 310px; }
    .popup__comment-arr.slick-disabled {
      opacity: .5; }
    .popup__comment-arr._prev {
      left: -17%;
      background: url("images/gallery-arr-left.png") no-repeat; } }
    @media screen and (min-width: 1024px) and (max-width: 1400px) {
      .popup__comment-arr._prev {
        background-size: 22px 49px; } }

@media screen and (min-width: 1024px) {
    .popup__comment-arr._next {
      right: -17%;
      background: url("images/gallery-arr-right.png") no-repeat; } }
    @media screen and (min-width: 1024px) and (max-width: 1400px) {
      .popup__comment-arr._next {
        background-size: 22px 49px; } }

@media screen and (min-width: 1024px) {
    .popup__comment-arr:hover {
      cursor: pointer; } }
  @media screen and (min-width: 1024px) and (max-width: 1850px) {
    .popup__comment-arr {
      top: 280px; } }
  @media screen and (min-width: 1024px) and (max-width: 1700px) {
    .popup__comment-arr {
      top: 260px; } }
  @media screen and (min-width: 1024px) and (max-width: 1550px) {
    .popup__comment-arr {
      top: 220px; } }
  @media screen and (min-width: 1024px) and (max-width: 1400px) {
    .popup__comment-arr {
      width: 22px;
      height: 49px;
      top: 210px; } }
  @media screen and (min-width: 1024px) and (max-width: 1200px) {
    .popup__comment-arr {
      width: 22px;
      height: 49px;
      top: 160px; } }

@media screen and (max-width: 1023px) {
  .popup__comment {
    width: 100%;
    position: relative;
    margin: 0 auto; }
  .popup__comment-arr {
    display: none; }
  .popup__comment-close {
    top: 13px;
    right: 9px;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 10; }
    .popup__comment-close:before {
      width: 15px;
      height: 15px;
      left: 10px;
      top: 10px;
      background: url("images/btn-close-mobile.png") no-repeat;
      background-size: 15px 15px; } }

.popup._gallery {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  overflow-y: auto;
  overflow-x: hidden;
  display: none; }

.popup__wrapper {
  display: table;
  table-layout: fixed;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: auto; }

.popup__bg {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.85);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; }

.popup__gallery-close {
  position: absolute;
  border-radius: 50%; }
  .popup__gallery-close:before {
    content: '';
    position: absolute; }

.popup__gallery {
  opacity: 0;
  -webkit-transition: opacity .1s ease;
          transition: opacity .1s ease; }
  .popup._gallery._open .popup__gallery {
    opacity: 1; }

.popup__gallery-slider {
  width: 100%; }

.popup__gallery-slide {
  margin: 0 1px 35px;
  outline: none; }

.popup__gallery-slide-img {
  width: 100%;
  height: auto;
  margin-bottom: 54px; }

.popup__gallery-slide-title {
  color: #fff; }

.popup__gallery-slide-info {
  color: rgba(255, 255, 255, 0.56);
  font-weight: 300; }

@media screen and (min-width: 1024px) {
  .popup__gallery {
    width: 54%;
    margin: 64px auto 50px;
    position: relative; }
  .popup__gallery-close {
    top: 20px;
    right: 13px;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    -webkit-transition: border-color .2s ease;
            transition: border-color .2s ease; }
    .popup__gallery-close:before {
      width: 20px;
      height: 20px;
      left: 13px;
      top: 14px;
      background: url("images/popup-close.png") no-repeat; }
    .popup__gallery-close:hover {
      cursor: pointer;
      border-color: #fff; }
  .popup__gallery-arr {
    position: absolute;
    width: 37px;
    height: 82px;
    top: 310px; }
    .popup__gallery-arr._prev {
      left: -17%;
      background: url("images/gallery-arr-left.png") no-repeat; } }
    @media screen and (min-width: 1024px) and (max-width: 1400px) {
      .popup__gallery-arr._prev {
        background-size: 22px 49px; } }

@media screen and (min-width: 1024px) {
    .popup__gallery-arr._next {
      right: -17%;
      background: url("images/gallery-arr-right.png") no-repeat; } }
    @media screen and (min-width: 1024px) and (max-width: 1400px) {
      .popup__gallery-arr._next {
        background-size: 22px 49px; } }

@media screen and (min-width: 1024px) {
    .popup__gallery-arr:hover {
      cursor: pointer; } }
  @media screen and (min-width: 1024px) and (max-width: 1850px) {
    .popup__gallery-arr {
      top: 280px; } }
  @media screen and (min-width: 1024px) and (max-width: 1700px) {
    .popup__gallery-arr {
      top: 260px; } }
  @media screen and (min-width: 1024px) and (max-width: 1550px) {
    .popup__gallery-arr {
      top: 220px; } }
  @media screen and (min-width: 1024px) and (max-width: 1400px) {
    .popup__gallery-arr {
      width: 22px;
      height: 49px;
      top: 210px; } }
  @media screen and (min-width: 1024px) and (max-width: 1200px) {
    .popup__gallery-arr {
      width: 22px;
      height: 49px;
      top: 160px; } }

@media screen and (min-width: 1024px) {
  .popup__gallery-slider-nav {
    margin: 0 -8px; }
  .popup__gallery-slider-nav-item {
    display: inline-block;
    width: 114px;
    max-width: 114px;
    min-width: 114px;
    height: 72px;
    margin: 0 6px 12px;
    position: relative; }
    .popup__gallery-slider-nav-item:after {
      content: '';
      background-color: rgba(0, 0, 0, 0.55);
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      -webkit-transition: background-color .2s ease;
              transition: background-color .2s ease; }
    .popup__gallery-slider-nav-item:hover {
      cursor: pointer; }
      .popup__gallery-slider-nav-item:hover:after {
        background-color: transparent; }
    .popup__gallery-slider-nav-item img {
      width: 114px;
      height: 72px; }
    .popup__gallery-slider-nav-item._active:after {
      background-color: transparent; }
    .popup__gallery-slider-nav-item._active:hover {
      cursor: default; }
  .popup__gallery-slide-title {
    font: 300 35px/38px 'Muller';
    margin-bottom: 15px; }
  .popup__gallery-slide-info {
    font-size: 17px; } }

@media screen and (max-width: 1023px) {
  .popup__gallery-wrapper {
    display: table-cell;
    vertical-align: middle;
    position: relative; }
  .popup__gallery {
    width: 100%;
    position: relative;
    margin: 0 auto; }
  .popup__gallery-slider-nav, .popup__gallery-arr {
    display: none; }
  .popup__gallery-close {
    top: 13px;
    right: 9px;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 10; }
    .popup__gallery-close:before {
      width: 15px;
      height: 15px;
      left: 10px;
      top: 10px;
      background: url("images/btn-close-mobile.png") no-repeat;
      background-size: 15px 15px; }
  .popup__gallery-slide-title {
    font: 300 21px/24px 'Muller';
    margin: 0 15px 8px; }
  .popup__gallery-slide-info {
    font-size: 15px;
    margin: 0 15px; } }

.popup._3dtour {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  overflow: hidden;
  opacity: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: opacity .3s ease;
          transition: opacity .3s ease; }
  .popup._3dtour._open {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1; }

.popup__3dtour-container {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  position: relative; }

.popup._3dtour .popup__bg {
  background-color: rgba(0, 0, 0, 0.57); }

.popup__3dtour, #popup__3dtour {
  display: inline-block;
  width: 100%;
  height: 100%;
  z-index: 900;
  position: relative;
}

.popup__3dtour-close {
  position: absolute;
  border-radius: 50%;
  right: 0px;
  width: 38px;
  height: 38px;
  z-index:999;
  cursor: pointer;
}

  .popup__3dtour-close:before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    left: 9px;
    top: 10px;
    background: url("images/popup-close.png") no-repeat;
    background-size: 16px 16px; }

.popup._video {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  overflow-y: auto;
  overflow-x: hidden;
  opacity: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: opacity .3s ease;
          transition: opacity .3s ease; }
  .popup._video._open {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1; }

.popup__video-container {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  position: relative; }

.popup._video .popup__bg {
  background-color: rgba(0, 0, 0, 0.57); }

.popup__video {
  display: inline-block;
  position: relative;
}

.popup__video-close {
  position: absolute;
  border-radius: 50%;
  width: 38px;
  height: 38px; }
  .popup__video-close:before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    left: 9px;
    top: 10px;
    background: url("images/popup-close.png") no-repeat;
    background-size: 16px 16px; }

@media screen and (min-width: 1024px) {
  .popup__video {
    width: 900px;
    height: auto;
    position: relative; }
  .popup__video-close {
    top: -25px;
    right: -46px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    -webkit-transition: border-color .2s ease;
            transition: border-color .2s ease; }
    .popup__video-close:hover {
      cursor: pointer;
      border-color: #fff; } }

@media screen and (max-width: 1023px) {
  .popup__video, #popup__video, #popup__video iframe {
    width: 100%;
    height: 100%;
  }

  .popup__video-close {
    background:#000;
    top: -95px;
    right: 5px;
    top: 10px;
    right: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15); }

    .popup__video-close:before {left: 10px; }
  }


.rating {
  display: inline-block;
  position: relative;
  overflow: hidden;
  margin-right: 10px; }

.rating__stars {
  position: absolute;
  top: 0; }
  .rating__stars._blank {
    z-index: 1; }
  .rating__stars._rating {
    width: 0;
    z-index: 2; }

@media screen and (min-width: 1024px) {
  .rating {
    height: 17px;
    width: 100px; }
  .rating__stars {
    height: 17px;
    width: 100px;
    left: -1px; }
    .rating__stars._blank {
      background: url("images/star-blank.png") repeat-x; }
    .rating__stars._rating {
      background: url("images/star-rating.png") repeat-x; } }

@media screen and (max-width: 1023px) {
  .rating {
    height: 13px;
    width: 80px; }
  .rating__stars {
    height: 13px;
    width: 80px; }
    .rating__stars._blank {
      background: url("images/star-blank.png");
      background-size: 16px 13px; }
    .rating__stars._rating {
      background: url("images/star-rating.png") repeat;
      background-size: 16px 13px; } }

.special-offer__wrapper {
  position: relative; }
  .special-offer__wrapper:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /*background-color: rgba(0, 0, 0, 0.7);*/
    z-index: 1; }

.special-offer {
  position: relative;
  z-index: 2; }
  .special-offer._popup-open {
    z-index: 100; }

.special-offer__offer {
  background-color: #fff;
  position: relative; }

.special-offer__decorations-wrapper {
  position: absolute;
  overflow: hidden;
  text-align: center; }

.special-offer__decorations {
  max-width: 100%; }

.special-offer__offer-hall {
  position: relative; }

.special-offer-slider-nav {
  margin: 0 auto;
  white-space: nowrap; }

.special-offer-slider-nav-item {
  white-space: nowrap; }

.special-offer__offer-hall-status {
  display: inline-block;
  padding: 0 15px;
  color: rgba(34, 34, 34, 0.8);
  background-color: #f7e26f;
  font-style: italic; }

.special-offer__offer-hall-arr {
  height: 100%;
  position: absolute;
  top: 0; }
  .special-offer__offer-hall-arr._prev {
    left: 0; }
  .special-offer__offer-hall-arr._next {
    right: 0; }

.special-offer__offer-text-slider {
  white-space: nowrap;
  overflow: hidden; }

.special-offer__offer-text {
  outline: none;
  display: inline-block;
  white-space: normal; }

.special-offer__contacts {
  background-color: #fff; }

.special-offer__phones-title {
  font-style: italic;
  color: rgba(32, 32, 32, 0.5); }

.special-offer__phone {
  color: #121212; }

.special-offer__map {
  background: url("images/map.png") no-repeat;
  background-size: cover;}

.special-offer__map-btn {
  background-color: #fff;
  text-align: center; }

.price {
  width: 100%;
  background-color: #fff;
  overflow: hidden; }
  .price img {
    max-width: 100%;
    max-height: 100%; }

.popup._map {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  overflow-y: auto;
  overflow-x: hidden;
  opacity: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: opacity .3s ease;
          transition: opacity .3s ease; }
  .popup._map._open {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1; }

.popup._map .popup__bg {
  background-color: rgba(0, 0, 0, 0.57); }

.popup__map {
  background-color: #fff; }

.popup__map-close {
  position: absolute;
  border-radius: 50%;
  width: 38px;
  height: 38px; }
  .popup__map-close:before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    left: 9px;
    top: 10px;
    background: url("images/popup-close.png") no-repeat;
    background-size: 16px 16px; }

.popup__map-map {
  margin-bottom: 25px; }

.popup__map-address {
  padding-left: 30px;
  position: relative;
  cursor: pointer; }
  .popup__map-address:before {
    content: '';
    position: absolute;
    left: 0;
    top: -2px;
    background-image: url("images/i_pointer-address-gray.png");
    background-repeat: no-repeat;
    width: 18px;
    height: 21px; }

@media screen and (min-width: 1024px) {
  .special-offer__wrapper {
    padding: 100px 0 47px;
    }
  .special-offer__decorations-wrapper {
    height: 50px;
    left: 50%;
    margin-left: -500px;
    top: -50px; }
  .special-offer__offer-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: table;
    min-height: 79px; }
  .special-offer__offer-title {
    display: table-cell;
    width: 460px;
    padding: 25px 30px 22px;
    font: 300 28px/36px 'Muller';
    vertical-align: top;
    border-right: 1px solid rgba(0, 0, 0, 0.1); }
  .special-offer__offer-hall {
    display: table-cell;
    width: 540px;
    vertical-align: top;
    text-align: center;
    padding-top: 25px; }
  .special-offer-slider-nav-wrapper {
    position: absolute;
    height: 130px;
    width: 386px;
    overflow: hidden;
    top: 0;
    left: 77px;
    padding-top: 25px; }
  .special-offer-slider-nav {
    width: 386px; }
    .special-offer-slider-nav .slick-list {
      overflow: visible; }
  .special-offer-slider-nav-item {
    display: inline-block;
    width: 352px;
    margin: 0 17px; }
  .special-offer__offer-hall-title {
    display: inline-block;
    vertical-align: top;
    max-width: 186px;
    font: 300 20px/36px 'Muller';
    margin-right: 10px;
    position: relative; }
    .special-offer__offer-hall-title span {
      display: inline-block;
      max-width: 186px;
      overflow: hidden;
      text-overflow: ellipsis; }
  .special-offer__offer-hall-title-tip {
    opacity: 0;
    position: absolute;
    font: 400 18px/22px 'Muller';
    padding: 10px 24px;
    background-color: #fff;
    box-shadow: 4px 7px 30px 0px rgba(0, 0, 0, 0.16);
    left: 0;
    top: 45px;
    z-index: 10;
    -webkit-transition: opacity .2s ease;
            transition: opacity .2s ease; }
    .special-offer__offer-hall-title-tip:before {
      content: '';
      height: 20px;
      width: 20px;
      position: absolute;
      top: -9px;
      left: 165px;
      background-color: #fff;
      -webkit-transform: rotate(45deg) skew(-10deg, -10deg);
              transform: rotate(45deg) skew(-10deg, -10deg);
      box-shadow: -3px -3px 5px 0px rgba(0, 0, 0, 0.02); }
    .special-offer__offer-hall-title._text-overflow:hover .special-offer__offer-hall-title-tip {
      opacity: 1; }
  .special-offer__offer-hall-status {
    vertical-align: top;
    height: 24px;
    font-size: 14px;
    line-height: 24px;
    margin-top: 7px; }
  .special-offer__offer-hall-arr {
    width: 77px;
    -webkit-transition: background .2s ease, border-color .2s ease;
            transition: background .2s ease, border-color .2s ease; }
    .special-offer__offer-hall-arr._prev {
      border-right: 1px solid rgba(0, 0, 0, 0.1);
      background: url("images/offer-arr-prev.png") center center no-repeat; }
    .special-offer__offer-hall-arr._next {
      border-left: 1px solid rgba(0, 0, 0, 0.1);
      background: url("images/offer-arr-next.png") center center no-repeat; }
    .special-offer__offer-hall-arr:hover {
      cursor: pointer;
      border-color: #6094e1; }
      .special-offer__offer-hall-arr:hover._prev {
        background: #6094e1 url("images/offer-arr-prev-white.png") center center no-repeat; }
      .special-offer__offer-hall-arr:hover._next {
        background: #6094e1 url("images/offer-arr-next-white.png") center center no-repeat; }
  .special-offer__offer-text {
    padding: 33px 30px;
    line-height: 26px; }
  .special-offer__contacts {
    padding: 20px 20px 20px 30px;
    margin-top: 18px; }
  .special-offer__phones {
    display: inline-block;
    width: 650px;
    vertical-align: top; }
  .special-offer__phones-title {
    padding-top: 12px;
    font-size: 14px;
    margin-bottom: 14px; }
  .special-offer__phone {
    font: 300 22px/38px 'Muller';
    margin-right: 24px; }
  .special-offer__map {
    width: 283px;
    height: 88px;
    float: right;
    display: inline-block;
    vertical-align: top; }
  .special-offer__map-btn {
    width: 239px;
    height: 50px;
    font: 500 15px/52px 'Muller';
    margin: 19px 0 0 21px;
    -webkit-transition: background-color .3s ease, color .3s ease;
            transition: background-color .3s ease, color .3s ease; }
    .special-offer__map-btn:hover {
      cursor: pointer;
      background-color: #6094e1;
      color: #fff; }
  .price {
    min-height: 90px;
    margin-top: 21px;
  }
  .popup__map {
    width: 752px;
    height: 440px;
    padding: 35px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -220px;
    margin-left: -376px; }
  .popup__map-close {
    top: -25px;
    right: -46px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    -webkit-transition: border-color .2s ease;
            transition: border-color .2s ease; }
    .popup__map-close:hover {
      cursor: pointer;
      border-color: #fff; }
  .popup__map-header {
    font: 300 30px/36px 'Muller';
    margin-bottom: 25px; }
  .popup__map-map {
    width: 680px;
    height: 268px;
    margin-bottom: 25px; } }

@media screen and (max-width: 1023px) {
  .special-offer__wrapper {
    padding: 48px 15px 25px;
    text-align: center; }
  .special-offer__decorations-wrapper {
    height: 28px;
    top: -28px; }
  .special-offer__offer-title {
    padding: 12px 30px;
    font: 300 22px/24px 'Muller';
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
  .special-offer__offer-hall {
    height: 70px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
  .special-offer-slider-nav {
    width: 190px;
    height: 70px;
    overflow: hidden; }
  .special-offer-slider-nav-item {
    height: 70px;
    padding-top: 10px; }
  .special-offer__offer-hall-title span {
    font: 300 17px/18px 'Muller'; }
  .special-offer__offer-hall-title-tip {
    display: none !important; }
  .special-offer__offer-hall-status {
    height: 18px;
    font-size: 12px;
    line-height: 18px;
    margin-top: 5px; }
  .special-offer__offer-hall-arr {
    width: 50px; }
    .special-offer__offer-hall-arr._prev {
      background: url("images/offer-arr-prev-mobile.png") center center no-repeat;
      background-size: 9px 19px; }
    .special-offer__offer-hall-arr._next {
      background: url("images/offer-arr-next-mobile.png") center center no-repeat;
      background-size: 9px 19px; }
  .special-offer__offer-text {
    padding: 14px 20px 0;
    line-height: 21px; }
    .special-offer__offer-text p {
      margin-bottom: 20px; }
  .special-offer__contacts {
    padding: 18px;
    margin-top: 15px; }
  .special-offer__phones {
    margin-bottom: 15px; }
  .special-offer__phones-title {
    font-size: 15px;
    margin-bottom: 11px; }
  .special-offer__phone {
    display: block;
    font: 300 19px/27px 'Muller'; }
  .special-offer__map {
    height: 74px;
    padding-top: 20px;
    margin: 0 auto; }
  .special-offer__map-btn {
    width: 214px;
    height: 38px;
    font: 500 13px/40px 'Muller';
    margin: 0 auto; }
  .price {
    min-height: 90px;
    margin-top: 15px;
  }
  .popup__map {
    width: 100%;
    padding: 15px 15px 25px;
    position: relative;
    margin-top: 70px; }
  .popup__map-close {
    top: -60px;
    right: 5px;
    border: 1px solid rgba(255, 255, 255, 0.15); }
    .popup__map-close:before {
      left: 10px; }
  .popup__map-header {
    font: 300 21px/26px 'Muller';
    margin-bottom: 18px; }
  .popup__map-map {
    width: 100%;
    height: 190px;
    margin-bottom: 25px; } }

#disabled {position: fixed; top: 0px; left: 0px; bottom: 0px; right: 0px; background-color: rgba(0,0,0,0.7); color: #fff; padding-top: 20%; text-align: center;  font-size: 30px; z-index: 9999; height: 100%;}