@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

ul, ol {
  list-style: none; }

body {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300; }

@keyframes tube {
  from {
    transform: translateX(-50%); }
  20% {
    transform: translateX(calc(-50% + 28px)); }
  40% {
    transform: translateX(calc(-50% - 20px)); }
  60% {
    transform: translateX(calc(-50% + 15px)); }
  80% {
    transform: translateX(calc(-50% - 10px)); }
  to {
    transform: translateX(-50%); } }
@keyframes deck {
  from {
    transform: translateX(-50%) rotate(0); }
  20% {
    transform: translateX(calc(-50% + 20px)) rotate(15deg); }
  40% {
    transform: translateX(calc(-50% - 25px)) rotate(-18deg); }
  60% {
    transform: translateX(calc(-50% + 15px)) rotate(13deg); }
  80% {
    transform: translateX(calc(-50% - 10px)) rotate(-8deg); }
  to {
    transform: translateX(-50%) rotate(); } }
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #fff;
  z-index: 99; }

.preloader-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%); }

.preloader-tube {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 5px solid black;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  transform-origin: center center;
  animation: tube 3s infinite linear; }

.preloader-deck {
  width: 250px;
  height: 5px;
  background-color: #000;
  border-top-radius: 5px;
  position: absolute;
  top: 6px;
  left: 50%;
  text-align: center;
  transform: translateX(-50%);
  transform-origin: center bottom;
  animation: deck 3s infinite linear; }
  .preloader-deck::after {
    content: '';
    display: block;
    position: absolute;
    border-bottom-left-radius: 5px;
    width: 23px;
    height: 4px;
    background-color: #000;
    left: 0;
    bottom: -4px; }
  .preloader-deck::before {
    content: '';
    display: block;
    position: absolute;
    border-bottom-right-radius: 5px;
    width: 23px;
    height: 4px;
    background-color: #000;
    right: 0;
    bottom: -4px; }
  .preloader-deck span {
    font-size: 20px;
    position: absolute;
    top: -25px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #b5b5b5;
    font-family: sans-serif; }

.floor {
  width: 130px;
  position: absolute;
  height: 1px;
  background-color: #b5b5b5;
  bottom: -67px;
  left: 50%;
  transform: translateX(-50%); }

.info {
  position: fixed;
  display: none;
  left: 50%;
  transform: translateX(-50%);
  top: 50%;
  background-color: #fff;
  box-shadow: 0 4px 6px 2px rgba(206, 206, 206, 0.7);
  font-size: 24px;
  font-family: "Arimo", sans-serif;
  text-align: center;
  padding: 15px 20px;
  z-index: 20; }

/* ----------------------header---------------- */
.header {
  max-width: 1920px;
  height: 100vh;
  max-height: 1080px;
  min-height: 500px;
  margin: 0 auto;
  position: relative;
  overflow: hidden; }

.logo {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 9; }

.bar {
  position: absolute;
  width: 25px;
  top: 35px;
  right: 105px;
  text-align: right;
  line-height: 6px;
  z-index: 9;
  cursor: pointer; }
  .bar:hover .bar__icon {
    width: 25px; }

.bar__icon {
  display: inline-block;
  height: 1px;
  background-color: #000;
  transition: .4s;
  cursor: pointer; }

.bar__icon-first {
  width: 25px; }

.bar__icon-second {
  width: 21px; }

.bar__icon-third {
  width: 10px; }

.nav, .cart {
  width: 50%;
  height: 100%;
  position: absolute;
  overflow-y: auto;
  right: 0;
  top: 0;
  background-color: white;
  z-index: 10;
  right: -100%;
  transition: .8s; }

.nav-visible, .cart-visible {
  right: 0; }

.nav__list {
  margin-top: 200px; }

.nav__item {
  text-align: center;
  margin: 20px 0; }

.nav__link {
  display: inline-block;
  padding: 10px;
  color: #000;
  text-decoration: none;
  font-size: 28px;
  text-transform: uppercase;
  font-family: "Arimo", sans-serif;
  font-weight: 400;
  position: relative; }
  .nav__link::after {
    content: '';
    display: block;
    width: 0px;
    height: 2px;
    position: absolute;
    right: -20px;
    top: 50%;
    background-color: #000;
    transition: .4s; }
  .nav__link::before {
    content: '';
    display: block;
    width: 0px;
    height: 2px;
    position: absolute;
    left: -20px;
    top: 50%;
    background-color: #000;
    transition: .4s; }
  .nav__link:hover::after {
    width: 15px; }
  .nav__link:hover::before {
    width: 15px; }

.cart {
  padding-top: 65px; }

.cart .block-title {
  margin: 20px 50px 25px; }

.cart-close, .nav-close, .modal-close, .comment-add__close, .constructor__order-close {
  width: 25px;
  height: 25px;
  position: absolute;
  right: 50px;
  top: 45px;
  transform: translateY(-50%);
  cursor: pointer; }
  .cart-close::before, .nav-close::before, .modal-close::before, .comment-add__close::before, .constructor__order-close::before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 25px;
    height: 1px;
    background-color: #b5b5b5;
    transform: rotate(-45deg);
    transition: .4s; }
  .cart-close::after, .nav-close::after, .modal-close::after, .comment-add__close::after, .constructor__order-close::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 25px;
    height: 1px;
    background-color: #b5b5b5;
    transform: rotate(45deg);
    transition: .4s; }
  .cart-close:hover::before, .nav-close:hover::before, .modal-close:hover::before, .comment-add__close:hover::before, .constructor__order-close:hover::before {
    background-color: #000;
    transform: rotate(45deg); }
  .cart-close:hover::after, .nav-close:hover::after, .modal-close:hover::after, .comment-add__close:hover::after, .constructor__order-close:hover::after {
    background-color: #000;
    transform: rotate(-45deg); }

.cart-icon {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 30px;
  right: 50px;
  z-index: 9;
  cursor: pointer; }

.cart-icon__handle {
  width: 14px;
  height: 12px;
  border: 1px solid black;
  border-bottom: none;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  position: absolute;
  left: 15px;
  top: 0px; }

.cart-icon__bag {
  width: 24px;
  height: 22px;
  border: 1px solid black;
  position: absolute;
  top: 8px;
  left: 10px; }

.cart-icon__count {
  width: 15px;
  height: 15px;
  font-size: 9px;
  border-radius: 50%;
  background-color: #000;
  color: white;
  text-align: center;
  line-height: 15px;
  position: absolute;
  bottom: 5px;
  right: 3px; }

.cart-product {
  width: 90%;
  margin: 10px auto;
  border-bottom: 1px solid #b5b5b5;
  padding: 5px 12px;
  position: relative; }

.cart-product__image {
  display: inline-block;
  margin-left: 20px;
  height: 100px;
  width: 100px;
  text-align: center;
  overflow: hidden;
  vertical-align: middle;
  cursor: pointer; }

.cart-product__image img {
  width: 100%;
  height: auto; }

.cart-product__info {
  display: inline-block;
  vertical-align: middle;
  margin-left: 15px;
  font-size: 14px; }

.cart-product__name {
  display: inline-block;
  font-family: "Arimo", sans-serif;
  width: 130px;
  vertical-align: middle;
  text-transform: uppercase;
  overflow: hidden; }

.cart-product__price {
  font-family: "Arimo", sans-serif;
  float: right;
  margin-top: 40px; }
  .cart-product__price::after {
    content: '';
    display: block;
    clear: both; }

.cart-product__count {
  display: inline-block;
  margin-left: 15px;
  font-size: 12px; }

.cart-product__count-value {
  vertical-align: middle;
  margin: 0 7px; }

.cart-product__count-plus, .cart-product__count-minus {
  border: none;
  vertical-align: middle;
  cursor: pointer;
  font-size: 20px;
  color: #b5b5b5;
  transition: .4s; }
  .cart-product__count-plus:hover, .cart-product__count-minus:hover {
    color: black; }

.cart-product__remove {
  width: 15px;
  height: 15px;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer; }
  .cart-product__remove::before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 15px;
    height: 1px;
    background-color: #b5b5b5;
    transform: rotate(-45deg);
    transition: .4s; }
  .cart-product__remove::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 15px;
    height: 1px;
    background-color: #b5b5b5;
    transform: rotate(45deg);
    transition: .4s; }
  .cart-product__remove:hover::before {
    background-color: #000; }
  .cart-product__remove:hover::after {
    background-color: #000; }

.cart-total {
  width: 90%;
  margin: 0 auto;
  padding: 15px;
  text-align: right; }
  .cart-total__name {
    color: #b5b5b5;
    font-size: 20px; }
  .cart-total__price {
    font-family: "Arimo", sans-serif;
    margin-left: 15px;
    font-size: 18px; }

.button {
  margin-top: 20px;
  border: 1px solid black;
  border-radius: 15px;
  background-color: #fff;
  text-transform: uppercase;
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 25px;
  transition: .4s;
  cursor: pointer;
  outline: none; }
  .button:hover {
    background-color: #000;
    color: #fff; }

.cart-button, .order-form__buy {
  display: block;
  margin: 30px auto; }

.button-reverse {
  background-color: #000;
  color: #fff; }
  .button-reverse:hover {
    background-color: #fff;
    color: #000; }

.comment-add__button {
  margin-top: 10px; }

.place-order {
  position: absolute;
  top: -100%;
  right: 0;
  height: 100%;
  width: 50%;
  padding-top: 65px;
  background-color: #fff;
  transition: .4s;
  z-index: 11;
  overflow-y: auto; }

.place-order-visible {
  top: 0; }

.place-order-close {
  width: 60px;
  height: 30px;
  line-height: 30px;
  position: absolute;
  top: 35px;
  left: 55px;
  transition: .4s;
  cursor: pointer; }
  .place-order-close::before {
    content: "\2190";
    font-size: 22px;
    padding-right: 5px; }
  .place-order-close span {
    font-size: 12px;
    color: #b5b5b5; }

.order-form {
  width: 60%;
  text-align: left;
  margin: 0 auto;
  font-size: 14px; }

.order-form__group {
  margin-top: 35px; }

.form__group-hide {
  display: none; }

.order-form__input {
  width: 60%;
  outline: none;
  border: none;
  border-bottom: 1px solid black;
  float: right;
  padding: 5px; }
  .order-form__input::after {
    content: '';
    display: block;
    clear: both; }

input::-webkit-input-placeholder {
  color: #b5b5b5; }

input::-moz-placeholder {
  color: #b5b5b5; }

input:-ms-input-placeholder {
  color: #b5b5b5; }

input::-ms-input-placeholder {
  color: #b5b5b5; }

input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
  color: transparent; }

.order-form__textarea {
  width: 50%;
  height: 55px;
  outline: none;
  border: 1px solid black;
  float: right;
  resize: none;
  padding: 5px; }
  .order-form__textarea::after {
    content: '';
    display: block;
    clear: both; }

.delivery-info {
  width: 80%;
  color: #b5b5b5;
  display: none;
  margin: 5px auto; }

.delivery-change:checked ~ .delivery-info {
  display: block; }

.place-order .block-title {
  margin: 20px 50px 10px; }

.order-form .order-form__buy {
  margin-top: 80px;
  margin-bottom: 30px; }

.row {
  font-size: 0;
  height: 100%;
  overflow: hidden; }

.header__video {
  display: inline-block;
  width: 50%;
  height: 100%;
  overflow: hidden;
  font-size: 16px;
  vertical-align: top; }

.header__video video {
  height: 100%;
  width: auto; }

.header__slider {
  display: inline-block;
  width: 50%;
  height: 100%;
  overflow: hidden;
  font-size: 16px; }

.header__sliderItem {
  width: 100%;
  height: 100%;
  position: relative;
  outline: none;
  overflow: hidden; }

.header__sliderItem-link {
  outline: none;
  display: block;
  width: 100%;
  height: 100%; }

.header__sliderItem-img {
  height: auto;
  width: 100%; }

/*-------wrapper----------*/
.wrapper {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  overflow: hidden; }

.scroll-top {
  display: none;
  position: fixed;
  bottom: 80px;
  right: 10px;
  z-index: 14;
  padding-right: 35px;
  text-align: center;
  transform: rotate(-90deg);
  text-decoration: none;
  color: #b5b5b5;
  cursor: pointer;
  transition: .4s; }
  .scroll-top::before {
    content: "\2192";
    font-size: 28px;
    color: black;
    position: absolute;
    bottom: -6px;
    right: 0;
    transition: .4s; }
  .scroll-top:hover::before {
    right: -8px; }

.container {
  margin-top: 130px;
  padding-top: 1px; }

.block-title {
  margin: 30px 30px 70px; }
  .block-title h2 {
    font-family: "Arimo", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 24px; }
  .block-title span {
    display: inline-block;
    font-size: 12px;
    color: #b5b5b5;
    position: relative; }
    .block-title span::before {
      content: '';
      width: 50px;
      height: 1px;
      background-color: #000;
      position: absolute;
      right: -65px;
      top: 50%; }

.modal {
  display: none;
  position: fixed;
  z-index: 15;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7); }

.modal-content {
  background-color: #fff;
  margin: 30px auto 0;
  width: 80%;
  height: calc(100vh - 60px);
  padding: 15px;
  position: relative;
  font-size: 0;
  overflow-y: auto;
  background-image: url(../images/bgc.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 250px auto; }

.modal-title {
  font-size: 24px;
  text-transform: uppercase;
  font-family: "Arimo", sans-serif;
  font-weight: 400;
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%); }

.modal-gallery, .modal-description {
  display: inline-block;
  width: 50%;
  font-size: 14px;
  vertical-align: top;
  margin-top: 60px;
  padding: 0 15px 15px; }

.modal-description {
  padding-right: 50px; }

.modal-description__title {
  font-size: 16px;
  font-family: "Arimo", sans-serif;
  font-weight: 400;
  margin-top: 30px; }

.modal-description__about {
  margin-top: 15px;
  line-height: 1.5;
  letter-spacing: 1px; }

.modal-description__properties ul {
  margin-top: 15px;
  list-style: none;
  line-height: 1.5;
  letter-spacing: 1px; }

.modal-description-buy {
  text-align: right;
  margin-top: 30px; }

.modal-description__price {
  font-family: "Arimo", sans-serif;
  font-size: 18px; }

.modal-description .modal-description__button {
  margin-left: 50px; }

.production__row {
  position: relative;
  margin-bottom: 200px; }

.production__name {
  position: absolute;
  transform: rotate(-90deg);
  transform-origin: left;
  top: 170px;
  left: 10px; }
  .production__name h3 {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 300;
    display: inline-block;
    vertical-align: top; }
  .production__name h2 {
    font-size: 20px;
    font-family: "Arimo", sans-serif;
    font-weight: 400;
    padding-left: 10px;
    text-transform: uppercase;
    display: inline-block; }

.production-count {
  font-size: 14px;
  color: #b5b5b5;
  position: absolute;
  right: 165px;
  top: -36px; }

.count {
  font-size: 12px;
  position: absolute;
  top: -34px;
  right: 45px;
  color: #b5b5b5; }

.production__slider {
  margin-left: 30px; }

.product {
  position: relative;
  outline: none;
  height: 350px;
  overflow: hidden; }

.product__image {
  overflow: hidden;
  height: 200px;
  position: relative; }

.circle {
  width: 160px;
  height: 160px;
  position: absolute;
  background-color: #efefef;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: .5s; }

.more {
  width: 35px;
  height: 35px;
  position: absolute;
  top: 20px;
  left: 28%;
  border: 1px solid black;
  border-radius: 50%;
  font-family: "Arimo", sans-serif;
  font-size: 22px;
  background-color: transparent;
  text-align: center;
  line-height: 35px;
  opacity: 0;
  transition: .4s .4s;
  cursor: pointer; }

.product__image a {
  outline: none; }

.product__image img {
  height: 100%;
  width: auto;
  margin: 0 auto; }

.product__info {
  text-align: right;
  font-size: 14px;
  padding-right: 28%; }

.product__name {
  display: block;
  font-family: "Arimo", sans-serif;
  text-transform: uppercase;
  position: relative; }

.product__description {
  display: block;
  color: #b5b5b5;
  margin-top: 10px; }

.product__price {
  display: block;
  font-family: "Arimo", sans-serif;
  margin-top: 15px; }

.product__image:hover .more {
  opacity: 1; }

/* ------------constructor-----------*/
.constructor__forms, .constructor__properties {
  display: inline-block;
  vertical-align: top; }

.constructor__forms {
  width: 60%; }

.constructor__properties {
  width: 40%;
  position: relative; }

#handle-choose, #stoppers-choose {
  display: none; }

#handle-choose:checked ~ .handle-choose::after, #stoppers-choose:checked ~ .stoppers-choose::after {
  transform: translateX(0); }

.handle-choose, .stoppers-choose {
  position: relative; }
  .handle-choose::before, .stoppers-choose::before {
    content: 'да нет';
    display: block;
    position: absolute;
    left: 0;
    top: 10px;
    width: 80px;
    height: 1px;
    background-color: #b5b5b5;
    word-spacing: 35px;
    line-height: 35px; }
  .handle-choose::after, .stoppers-choose::after {
    content: '';
    display: block;
    position: absolute;
    top: 4px;
    left: 0;
    width: 15px;
    height: 15px;
    background-color: #000;
    transform: translateX(65px);
    border-radius: 50%;
    transition: .5s; }

.constructor__form {
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  background-image: url(../images/plywood.jpg); }

.constructor__form-classic {
  width: 550px;
  height: 320px;
  border-radius: 160px; }

.constructor__form-mobile {
  width: 530px;
  height: 278px;
  border-radius: 138px; }

.constructor__form-surf {
  width: 570px;
  height: 254px;
  border-bottom-right-radius: 320px  127px;
  border-top-right-radius: 320px  127px;
  border-bottom-left-radius: 250px  127px;
  border-top-left-radius: 250px  127px;
  position: relative; }
  .constructor__form-surf::before {
    content: '';
    display: block;
    position: absolute;
    width: 1px;
    height: 1px;
    border: 70px solid transparent;
    border-right-color: white;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    z-index: 9; }

.constructor__forms-img {
  width: 100%;
  height: auto; }

.constructor__forms-text {
  font-size: 14px;
  line-height: 20px;
  margin: 50px auto 0;
  color: #b5b5b5;
  width: 70%; }

.constructor__text-mobile {
  font-size: 12px;
  display: none;
  line-height: 20px;
  width: 70%;
  margin: 40px auto 0;
  color: #b5b5b5; }

.handle {
  display: none;
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  height: 24px;
  width: 80px;
  border-radius: 12px;
  background-color: #fff;
  z-index: 10; }

.constructor__properties {
  font-size: 16px; }

.constructor__properties-title {
  display: inline-block;
  width: 100px;
  text-transform: uppercase;
  margin-right: 30px; }

.constructor__properties-group {
  margin-bottom: 30px; }

.constructor__properties-shape {
  display: none; }

.constructor__properties-shape-img {
  margin-right: 10px;
  transition: .4s;
  opacity: .3;
  cursor: pointer; }

.constructor__properties-shape:checked + .constructor__properties-shape-img {
  opacity: 1; }

.mobile-img {
  width: 42px; }

.classic-img, .surf-img {
  width: 50px; }

.constructor__properties-size {
  display: none; }

.constructor__properties-img {
  font-size: 16px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  border: 1px solid black;
  padding: 5px 10px;
  outline: none;
  background-color: #fff;
  cursor: pointer; }

.constructor-stretch {
  cursor: pointer;
  margin-right: 20px; }

.constructor-width::before {
  content: "\f07e";
  font-family: FontAwesome;
  margin-right: 8px; }

.constructor-height::before {
  content: "\f07d";
  font-family: FontAwesome;
  margin-right: 8px; }

.constructor__properties-group-price {
  text-align: right;
  margin-right: 50px; }

.constructor__properties-title-price {
  font-size: 16px;
  display: inline-block; }

.constructor__properties-padding {
  width: 40px;
  margin-right: 5px;
  border: none;
  border-bottom: 1px solid #b5b5b5;
  outline: none; }

.constructor__properties-price {
  font-family: "Arimo", sans-serif;
  font-size: 24px;
  margin-left: 10px; }

.constructor__properties-button {
  margin-left: 30px; }

.constructor__properties-rotate {
  border: none;
  margin-right: 20px;
  background-color: #fff;
  font-size: 18px;
  cursor: pointer;
  outline: none;
  transition: .4s; }

.constructor__properties-left:hover {
  transform: rotate(-90deg); }

.constructor__properties-right:hover {
  transform: rotate(90deg); }

.constructor__order {
  position: absolute;
  top: 0;
  left: 2000px;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9;
  overflow-y: auto;
  transition: 0.4s; }

.constructor__order .block-title {
  margin-top: 0; }

.constructor__order-group {
  margin-top: 25px; }

.constructor__order-label {
  vertical-align: top;
  display: inline-block;
  width: 150px;
  margin-left: 50px; }

.constructor__order-input {
  border: none;
  border-bottom: 1px solid black;
  width: 150px;
  outline: none;
  padding: 5px; }

.constructor__order-comment {
  height: 50px;
  width: 150px;
  resize: none;
  outline: none;
  padding: 0 5px; }

.constructor__order-button {
  display: block;
  margin: 20px auto 0; }

/* -----------gallery--------------- */
.gallery__items {
  text-align: center;
  transition: .4s; }

.gallery__items img:hover {
  filter: brightness(0.8); }

/* -----------about--------------- */
.about {
  overflow: hidden; }

.about__left {
  display: inline-block;
  font-size: 14px;
  width: 50%;
  height: 100%;
  vertical-align: top;
  position: relative; }

.about__left p {
  padding: 50px 60px 50px;
  line-height: 20px;
  color: #b5b5b5;
  max-height: 400px;
  overflow-y: auto; }

.about__left img {
  position: absolute;
  bottom: 0;
  right: 50px;
  width: 100px;
  height: auto; }

.about__right {
  display: inline-block;
  width: 50%; }

.about__right img {
  width: 100%;
  height: auto; }

/* ------------comments---------- */
.comments__item {
  height: 250px;
  margin: 10px 40px;
  overflow: hidden;
  box-shadow: 0 4px 6px 2px rgba(206, 206, 206, 0.7);
  outline: none;
  position: relative;
  background-image: url(../images/bgc.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 140px auto; }

.comments__photo {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 90px;
  height: 90px;
  overflow: hidden;
  text-align: center;
  border-radius: 50%; }

.comments__photo img {
  width: 100%;
  height: auto; }

.comments__name {
  font-family: "Arimo", sans-serif;
  font-size: 14px;
  display: inline-block;
  width: 105px;
  position: absolute;
  top: 130px;
  left: 20px;
  text-align: left;
  overflow: hidden; }

.comments__text {
  color: #b5b5b5;
  height: 185px;
  overflow-y: auto;
  margin-left: 120px;
  margin-top: 10px;
  padding: 20px;
  font-size: 14px; }

.comment-button {
  display: block;
  margin: 110px auto 0;
  text-align: center; }

.comment-add {
  display: none;
  margin: 110px auto 0;
  padding: 20px 5px;
  text-align: center;
  vertical-align: middle;
  position: relative;
  width: 50%;
  box-shadow: 0 4px 6px 2px rgba(206, 206, 206, 0.7); }

.comment-add__group {
  padding: 5px;
  margin-top: 25px; }

.comment-add__name {
  width: 50%;
  border: none;
  border-bottom: 1px solid black;
  outline: none;
  padding: 5px; }

.comment-add__text {
  height: 50px;
  width: 50%;
  vertical-align: top;
  border: 1px solid black;
  resize: none;
  outline: none;
  margin: 5px;
  padding: 5px;
  overflow: auto; }

.comment-add__close {
  top: 20px;
  right: 10px; }

/* ------------footer------------- */
.footer {
  position: relative;
  text-align: center;
  margin-top: 100px; }
  .footer::before {
    content: '';
    height: 1px;
    width: 220px;
    background-color: #000;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%); }

.footer-box {
  display: inline-block;
  margin: 30px 50px;
  vertical-align: middle; }
  .footer-box a {
    text-decoration: none; }

.footer__logo img {
  width: 100px;
  height: auto; }

.footer__nav-item {
  margin-bottom: 5px; }

.footer__nav-link {
  text-transform: uppercase;
  color: #b5b5b5;
  font-size: 12px;
  transition: .4s; }
  .footer__nav-link:hover {
    color: black; }

.footer__contacts a {
  display: block;
  margin: 10px 0;
  color: black;
  font-size: 16px; }
.footer__contacts span {
  font-size: 12px;
  color: #b5b5b5; }

.footer__social a {
  font-size: 24px;
  margin: 0 10px;
  color: #b5b5b5;
  transition: .4s; }
  .footer__social a:hover {
    color: black; }

/* slickdots customize */
.header__slider .slick-dots {
  bottom: 20px;
  right: 120px;
  text-align: right; }
  .header__slider .slick-dots li {
    display: inline-block;
    margin: 0 20px; }
    .header__slider .slick-dots li button {
      width: 55px;
      height: 60px;
      font-size: 36px;
      font-family: "Roboto Condensed", sans-serif;
      font-weight: 300;
      border: none;
      background-color: transparent;
      color: #000;
      transition: .4s; }
  .header__slider .slick-dots .slick-active button {
    font-size: 60px;
    background-color: transparent; }

.slick-dots {
  bottom: -40px; }

.slick-dots li {
  width: 5px;
  height: 5px;
  margin: 0 10px; }
  .slick-dots li button {
    width: 5px;
    height: 5px;
    border: 1px solid black;
    border-radius: 50%;
    color: black; }
    .slick-dots li button::before {
      content: '';
      width: 5px;
      height: 5px;
      line-height: 5px; }

.slick-dots .slick-active button {
  background-color: #000; }

.slick-prev, .slick-next {
  top: -30px; }

.slick-prev:before, .slick-next:before {
  font-family: "Arimo", sans-serif;
  font-size: 22px;
  line-height: 1;
  opacity: .75;
  color: black; }

.slick-prev {
  left: auto;
  right: 130px; }

.slick-next {
  right: 100px; }

/* fotorama customize */
.fotorama__nav-wrap {
  margin-right: 50px;
  margin-left: 50px; }

.fotorama__thumb {
  background-color: transparent;
  padding: 10px; }

.fotorama__thumb-border {
  border-color: #b5b5b5;
  background-image: none; }

/* --------------adaptive--------- */
@media screen and (max-width: 1280px) {
  .comments__item {
    margin: 10px 15px; } }
@media screen and (max-width: 1024px) {
  .header__slider .slick-dots {
    right: 80px; }
    .header__slider .slick-dots li {
      margin: 0 15px; }
      .header__slider .slick-dots li button {
        font-size: 30px; }
    .header__slider .slick-dots .slick-active button {
      font-size: 48px; }

  .cart-product__price {
    float: none;
    display: block;
    position: static;
    margin-top: 5px;
    text-align: right; }

  .cart-product__name {
    display: block; }

  .order-form {
    width: 80%; }

  .cart-product__count {
    display: block;
    margin-top: 15px; }

  .constructor__forms, .constructor__properties {
    display: block;
    width: 100%; }

  .constructor__properties {
    width: 70%;
    margin: 80px auto 0; }

  .constructor__properties-title {
    margin-right: 50px; }

  .constructor__forms-text {
    display: none; }

  .constructor__text-mobile {
    display: block; }

  .modal-content {
    width: 90%; }

  .comment-add {
    width: 65%; }

  .about__left p {
    padding: 10px 20px 40px 10px; } }
@media screen and (max-width: 768px) {
  .header__video {
    display: none; }

  .header__slider {
    width: 100%; }

  .nav, .cart, .place-order {
    width: 100%; }

  .place-order-close {
    top: 25px; }

  .nav__list {
    margin-top: 80px; }

  .nav__link {
    font-size: 16px; }

  .cart .block-title, .place-order .block-title {
    margin-top: 5px; }

  .cart-product__price {
    display: inline;
    float: right;
    margin-top: 40px; }

  .order-form {
    width: 60%; }

  .scroll-top {
    right: -15px; }

  .slick-prev {
    left: auto;
    right: 80px; }

  .slick-next {
    right: 50px; }

  .production-count {
    right: 110px; }

  .modal-content {
    background-image: none; }

  .modal-description, .modal-gallery {
    width: 100%;
    display: block; }

  .modal-title {
    font-size: 20px;
    top: 20px; }

  .modal-gallery {
    margin-top: 50px; }

  .modal-description {
    padding-right: 15px;
    margin-top: 10px; }

  .container {
    margin-top: 70px; }

  .production__row {
    margin-bottom: 170px; }

  .constructor__form-classic {
    width: 410px;
    height: 238px;
    border-radius: 119px; }

  .constructor__form-mobile {
    width: 390px;
    height: 206px;
    border-radius: 103px; }

  .constructor__form-surf {
    width: 440px;
    height: 196px;
    border-bottom-right-radius: 240px  98px;
    border-top-right-radius: 240px  98px;
    border-bottom-left-radius: 200px  98px;
    border-top-left-radius: 200px  98px;
    position: relative; }
    .constructor__form-surf::before {
      content: '';
      display: block;
      position: absolute;
      width: 1px;
      height: 1px;
      border: 70px solid transparent;
      border-right-color: white;
      top: 50%;
      right: -10px;
      transform: translateY(-50%);
      z-index: 9; }

  .handle {
    top: 20px;
    height: 18px;
    width: 60px;
    border-radius: 9px; }

  .constructor__properties {
    width: 95%;
    margin: 80px auto 0; }

  .constructor__properties-title {
    margin-right: 45px; }

  .constructor__properties-padding {
    width: 35px; }

  .comment-add {
    width: 80%; }

  .comment-add__name, .comment-add__text {
    width: 60%; }

  .about__left {
    width: 100%; }
    .about__left img {
      display: none; }

  /* .about__left p{
  	height: 100%;
  } */
  .about__right {
    width: 100%; }

  .footer-box {
    margin: 10px 20px; } }
@media screen and (max-width: 480px) {
  .cart-product__price {
    float: none;
    display: block;
    position: static;
    margin-top: 5px;
    text-align: right; }

  .cart-product__info {
    margin-left: 5px; }

  .order-form {
    width: 85%; }

  .place-order-close {
    top: 15px;
    left: 30px; }

  .cart .block-title, .place-order .block-title {
    margin-left: 30px; }

  .modal-close {
    top: 20px;
    right: 20px; }

  .modal-title {
    font-size: 20px; }

  .constructor {
    display: none; }

  .comments__item {
    margin: 10px 5px; }

  .comments__photo {
    top: 10px;
    left: 10px; }

  .comments__name {
    left: 10px; }

  .comments__text {
    margin-left: 100px; }

  .comment-add {
    width: 95%; }

  .footer-box {
    margin: 10px 10px; } }

/*# sourceMappingURL=style.css.map */
