@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&display=swap");

:root {
  --main-color: #ff0000;
  --second-color: #00b0c0;

  /* FONT */
  --body-font: "Montserrat Alternates", sans-serif;
  --montserrat-font: "Montserrat", sans-serif;

  /* SIZE */
  --big-font-size: 30px;
  --h1-font-size: 22px;
  --h2-font-size: 18px;
  --h3-font-size: 16px;
  --normal-font-size: 14px;
  --small-font-size: 12px;
  --smaller-font-size: 10px;

  /* Weight */
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  /* MARGIN BOTTOM */
  --m-0-25: 4px;
  --m-0-5: 8px;
  --m-0-75: 12px;
  --m-1: 16px;
  --m-1-5: 24px;
  --m-2: 32px;
  --m-2-5: 40px;
  --m-3: 48px;
  --m-4: 64px;

  /* z index */
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;
}

/* @media screen and (min-width: 768px) {
  :root {
    --big-font-size: 40px;
    --h1-font-size: 24px;
    --h2-font-size: 22px;
    --h3-font-size: 18px;
    --normal-font-size: 15px;
    --small-font-size: 13px;
    --smaller-font-size: 11px;
  }
} */

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  color: var(--text-color);
  font-weight: var(--font-regular);
  background-image: url(../img/bg-rep.jpg);
}

h1,
h2,
h3,
h4 {
  color: var(--text-color);
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

textarea {
  resize: vertical;
}
button{
  border: none;
  background-color: transparent;
}

/* SECTION OPTIONS */

.section {
  padding: 0 0 20px;
}

.container {
  max-width: 100%;
  margin-left: var(--m-1-5);
  margin-right: var(--m-1-5);
}

.grid {
  display: grid;
  gap: 22px;
}
.section-title-line{
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin: 10px 0 20px 0;
  padding: 0 10px;
}
.page-info{
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
.section__title {
  font-size: var(--big-font-size);
  text-align: left;
  color: var(--title-color);
}
.design-buttons{
  display: flex;
  gap: 0 20px;
}


.design-btn {
  font-family: 'Nunito', sans-serif;
  padding: 10px 20px;
  border: unset;
  border-radius: 3px;
  color: #5d5d5d;
  z-index: 1;
  background: #e8e8e8;
  position: relative;
  font-weight: 700;
  font-size: 14px;
  transition: all 250ms;
  overflow: hidden;
  cursor: pointer;
 }
 .choose-design-btn{
  background-color: #212121;
  color: #fff;
}
.choose-design-btn:hover{
  background-color: #e8e8e8;
  color: #5d5d5d;
}
.print-design-btn:hover{
  background-color: #000;
  color: #fff;
}
/* BUTTONS */

.btn {
  font-size: var(--smaller-font-size);
  font-weight: var(--font-medium);
  line-height: 24px;
  color: #fff;
  border-radius: 16px;
  cursor: pointer;
  padding: 16px 0;
}

.button--flex {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.font-medium {
  font-weight: var(--font-medium);
  color: #9c9c9c;
}

/* HEADER */

.logo {
  display: none;
  align-self: center;
  max-width: 242px;
  width: 100%;
}

.logo {
}

.header__box {
  background-color: #fff;
  position: fixed;
  right: 0;
  left: 0;
  z-index: var(--z-fixed);
}

.header__content,
.header__contact,
.header-buttons {
  display: flex;
}

.header__content {
  justify-content: space-between;
  position: relative;
}

.header__content_left {
  display: flex;
  gap: 20px;
}

.header__contact {
  flex-direction: column;
  gap: 5px;
  padding: 13px 10px 13px 15px;
  justify-content: center;
}

.header__contact-phone {
  font-weight: var(--font-bold);
  font-size: var(--normal-font-size);
}

.header__contact-address {
  font-size: var(--small-font-size);
  opacity: 0.9;
}

.header-buttons__contact {
  background-color: var(--main-color);
}

.header-buttons__nav {
  background-color: #000;
}

.header-buttons__contact,
.header-buttons__nav {
  padding: 10px 17px;
  cursor: pointer;
}

.contact-modal,
.nav-modal {
  position: fixed;
  top: 63px;
  right: 0;
  bottom: 0;
  z-index: var(--z-fixed);
}

.contact-modal {
  display: none;
  left: 0;

  overflow: auto;
  border: 16px var(--main-color) solid;
  padding: 25px;
  background-color: #fff;
}

.contact-modal_active {
  display: block;
}

.contact-modal__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-modal__data {
  text-align: center;
  color: #6c6c6c;
  margin-bottom: var(--m-1-5);
}

.contact-modal__title {
  font-size: var(--big-font-size);
  font-weight: var(--font-medium);
  margin-bottom: 10px;
}

.contact-modal__text {
  font-size: var(--normal-font-size);
}

.contact-modal__text span {
  color: #ff6600;
}

.contact-modal__form {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.contact-modal__inputs {
  display: grid;
  gap: 7px;
  margin-bottom: var(--m-1);
}

.contact-modal__inputs div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.contact-modal__input {
  height: 65px;
}

.contact-modal__textarea {
  min-height: 108px;
}

.contact-modal__input,
.contact-modal__textarea {
  border: 0;
  padding: 20px 26px;
  background-color: #f1f1f1;
}

.socials__list {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
}

.socials__items-box {
  display: flex;
  gap: 10px;
}

.socials__img {
  width: 45px;
  opacity: 0.3;
}

.socials__button {
  border: 0;
  border-radius: 5px;
  padding: 17px 27px 15px;
  background: linear-gradient(#00dff3, #00b0c0);
  color: #fff;
  text-transform: uppercase;
  font-weight: var(--font-semi-bold);
  font-size: var(--normal-font-size);
  cursor: pointer;
}

.socials__button:hover {
  background: linear-gradient(#04eaff, #00cbdd);
}

.timetable,
.timetable__content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.timetable__content {
  padding: 20px 0;
  border: #000 4px solid;
  outline: #000 3px solid;
  outline-offset: 5px;
}

.timetable__title {
  font-weight: var(--font-bold);
  color: var(--main-color);
  text-transform: uppercase;
}

.timetable__content-title,
.timetable__content-info {
  font-size: var(--h2-font-size);
  font-weight: var(--font-bold);
}

.timetable__content-title {
  margin-bottom: 9px;
}

.timetable__content-info {
  color: var(--main-color);
}

.timetable__clarification {
  font-weight: var(--font-bold);
  color: var(--main-color);
}

.nav-modal {
  padding: 30px;
  width: 300px;

  display: none;
  background-color: #000;
  box-shadow: 0 1000px 0 1000px rgb(0 0 0 / 70%);
  color: #fff;
  z-index: var(--z-fixed);
}

.nav-modal__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.nav-modal__link {
  font-size: var(--h3-font-size);
  font-weight: var(--font-medium);
}

.nav-modal_active {
  display: block;
}

/* SWIPER */

.main {
  padding-top: 70px;
}

.swiper {
  border: 8px #fff solid;
}

.slider-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-bottom {
  padding: 20px 30px 25px;
  min-height: 75px;
  text-align: center;
  position: relative;
  background-color: #fff;
}

.slider-bottom::before {
  content: url(../img/slider-dec.png);
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  z-index: 2;
}

.slider-bottom__title {
  font-weight: var(--font-bold);
  font-size: var(--h1-font-size);
  color: var(--main-color);
  margin-bottom: var(--m-0-25);
}

.slider-bottom__info {
  font-size: var(--normal-font-size);
  opacity: 0.9;
}

.swiper-button-next,
.swiper-button-prev {
  display: none;
}

/* SERVICES */

.services__content {
  background-color: #fff;
  padding: 35px 0 35px;
}

.services__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.services__item {
  width: 150px;
  padding: 10px;
  text-align: center;
  border: 1px #000 solid;
  transition: transform 0.3s ease-in-out;
}

.services__item:hover {
  transform: scale(1.1);
}

.services__item img {
  width: 150px;
}

.services__item p {
  color: var(--main-color);
  font-weight: var(--font-semi-bold);
}

/* Acide */

.aside {
  background-color: #fff;
  padding: 28px 0 30px;
}

.aside__tumblers {
  display: flex;
  gap: 3.5px;
}

.aside__tumblers-btn {
  color: #000;
  padding: 16px;
  font-size: var(--normal-font-size);
  cursor: pointer;
}

.aside__tumblers-btn_active {
  background-color: #fff;
  color: var(--main-color);
  box-shadow: inset 0 3px var(--main-color), 0 1px #fff,
    0 0 0 1px rgb(0 0 0 / 10%);

  transition: all 0.4s;
}

/* ACCORDION */

.aside-accordion {
  box-shadow: 0 0 0 1px rgb(0 0 0 / 10%);
  padding: 16px;
  display: none;
}

.ac {
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
  border-width: 2px;
}

.ac .ac-trigger {
  font: var(--font-bold) 16px var(--body-font);
}

.ac:last-child {
  border-bottom-style: none;
}

.aside-accordion__list {
  padding: 10px 30px;
}

.aside-accordion__link {
  color: #1d63cc;
  font-size: var(--normal-font-size);
  font-weight: var(--font-semi-bold);
  font-style: italic;
}

.aside-accordion__item + .aside-accordion__item {
  margin-top: 5px;
}

.ac .ac-trigger::after {
  content: url(../img/arrow-down-icon.svg);
  top: 60%;
  right: 7px;
}

.ac.is-active > .ac-header .ac-trigger::after {
  content: url(../img/arrow-down-icon.svg);
  transform: rotateX(180deg);
  top: 5px;
}

.aside-products__list {
  padding: 20px;
}

.aside-products__item + .aside-products__item {
  margin-top: 7px;
}

.aside-products__link {
  color: #1d63cc;
  font-size: var(--h2-font-size);
  font-weight: var(--font-semi-bold);
  font-style: italic;
}

.active-products-link {
  background-color: var(--main-color);
  color: #fff;
}

.aside-box_right {
  display: none;
  box-shadow: 0 0 0 1px rgb(0 0 0 / 10%);
}

.aside_active {
  display: block;
}

/* GALLERY */

.gallery {
  background-color: #fff;
}

.gallery__content {
  padding: 40px 0;
  column-gap: 10px;
  row-gap: 20px;
}

.gallery__top-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 100px;
}

.gallery__top-box div {
  text-align: center;
}

.gallery__title-box img {
  width: 280px;
  height: 115px;
}

.gallery__title,
.gallery__subtitle {
  color: var(--second-color);
}

.gallery__title {
  font-size: var(--h1-font-size);
  font-weight: var(--font-bold);
}

/* .gallery__main-box {
  gap: 10px;
} */

.gallery__item {
  cursor: zoom-in;
}

.gallery__item-img {
  height: 220px;
  width: 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.gal-bg_one {
  height: 360px;
  background-image: url(../img/gallery1.webp);
}

.gal-bg_two {
  background-image: url(../img/gallery2.webp);
}

.gal-bg_three {
  background-image: url(../img/gallery3.webp);
}

.gal-bg_four {
  background-image: url(../img/gallery4.webp);
}

.gallery__bottom-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery__bottom-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.gallery__bottom-button p {
  text-align: center;
  color: #737d85;
  font-size: var(--h3-font-size);
}

.gallery__bottom-button strong {
  display: block;
  font-size: var(--h1-font-size);
}

.gallery__bottom-button:hover .gallery__bottom-svg {
  opacity: 0.7;
}

.gallery__socials-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
}

.gallery__socials-item {
  max-width: 84px;
  height: 80px;
  cursor: pointer;
}

.gallery__socials-item:nth-child(3) {
  background-color: var(--second-color);
  color: #fff;
  text-align: center;
}

/* REVIEWS */

.review {
  background-color: #fff;
}

.review__content {
  border: 3px var(--second-color) solid;
  padding: 28px 18px;
  text-align: left;
  background-color: #fff;
}

.review__title {
  color: var(--second-color);
  font-size: var(--h2-font-size);
  font-weight: var(--font-bold);
  margin-bottom: var(--m-1-5);
}

.review__name {
  font-size: var(--h3-font-size);
  font-weight: var(--font-medium);
  color: #92ba3b;
  margin-bottom: var(--m-0-75);
}

.review__text {
  color: #6c6c6c;
  font-size: var(--normal-font-size);
  line-height: 19px;
}

.review__data + .review__data {
  margin-top: 30px;
}

/* FOOTER */

.footer {
  background-image: url(../img/bg-footer.jpg);
  min-height: 72px;
  margin-top: var(--m-1);
}

.footer__data-top,
.footer__data-bottom {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
}

.footer__data-top {
  border-bottom: 1px rgba(255, 255, 255, 0.2) solid;
  align-items: center;
  gap: 30px;
}

.footer__address,
.footer__data-bottom {
  text-align: center;
}

.footer__address {
  color: #fff;
}

.footer__map {
  width: 100%;
  border: 7px #fff solid;
  border-radius: 8px;
}

.footer__map iframe {
  width: 100%;
  height: 400px;
}

.footer__data-bottom {
  color: #9f9f9f;
  gap: 10px;
}

.footer__copyright {
  font-size: var(--normal-font-size);
}

.footer__creator {
  font-size: var(--smaller-font-size);
}

.footer__creator a {
  text-decoration: underline;
}

/* BREADCRUMBS  */
.breadcrumbs {
  margin-bottom: var(--m-0-75);
}

.breadcrumbs__link {
  color: var(--second-color);
  text-decoration: underline;
}

/* CONTACTS.html*/
.contacts__inner,
.portfolio__inner,
.product__inner {
  background-color: #fff;
  padding: 30px 0;
}

.contacts__data {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 20px;
  max-width: 223px;
  position: absolute;
  top: 10px;
  left: 8px;
  background-color: rgb(255, 255, 255, 60%);
  border: 2px rgb(214, 105, 123) solid;
}

.contacts__place {
  margin-bottom: 6px;
}

.contacts__phone {
  font-weight: var(--font-bold);
  font-size: var(--h2-font-size);
}

.contacts__time,
.contacts__socials-list {
  display: flex;
  gap: 5px;
}

.contacts__time {
  margin-top: var(--m-0-75);
  font-size: var(--small-font-size);
}

.contacts__time::before {
  content: url(../img/watch-icon.png);
}

.contacts__address {
  margin-top: var(--m-0-5);
}

.contacts__socials {
  margin-top: var(--m-0-5);
}

.contacts__socials-img {
  width: 24px;
  height: 24px;
}

.contacts__map {
  width: 100%;
  position: relative;
}

.contacts__map iframe {
  width: 100%;
}

/*PORTFOLIO.html  */

.portfolio__list {
  display: flex;
  gap: 20px;
  align-items: center;
}

.portfolio__item {
  position: relative;
  border: 1px #c5c5c5 solid;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.portfolio__item:hover {
  background-color: var(--second-color);
  transform: scale(1.1);
}

.portfolio__counter {
  position: absolute;
  top: -11px;
  right: -11px;
  width: 24px;
  height: 24px;
  padding: 5px;

  color: #fff;
  background-color: #15c;
  border-radius: 12px;
  font-size: var(--small-font-size);
}

.portfolio__img {
  width: 200px;
  border-radius: 10px;
}

.portfolio__link p {
  font-size: var(--normal-font-size);
  font-weight: var(--font-bold);
  color: var(--main-color);
  padding: 5px;
}

/* CALCULATOR.html */
.product__content_top,
.product__calculator-form,
.product__calculator,
.product__socials-list,
.product__content_bottom {
  display: flex;
}

.product__content_top {
  margin-bottom: var(--m-3);
  gap: 10px;
  justify-content: center;
  padding: 10px;
}

.product-card-descr{
  font-size: 16px;
  text-align: center;
  color: red;
  margin: 20px 0 0 0;
}
.product__calculator-title {
  font-weight: var(--font-bold);
  font-size: var(--h2-font-size);
  text-transform: uppercase;
}

.product__calculator-title,
.product__calculator-result {
  text-align: center;
}

.product__calculator-form,
.product__calculator {
  flex-direction: column;
}

.product__calculator {
  padding: 10px 20px;
  border: 2px #dfdfdf solid;
  background-color: rgb(241, 241, 241);
  gap: 13px;
}

.product__calculator-form {
  gap: 9px;
}
/* ------------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
.dropdown-title-container {
  display: flex;
  justify-content: space-between;
  gap: 0 3px;
  user-select: none;
}
.dropdown-content {
  background-color: #fff;
  border: 2px rgba(128, 128, 128, 0.435) solid;
  border-radius: 13px;
  width: 250px;
  padding: 9px 10px;
  transition: 0.1s ease;
  position: relative;
}
.dd-cont-active {
  border-radius: 13px 13px 0 0;
}
.dropdown-content:hover {
  cursor: pointer;
}
.dropdown-content:hover {
  background-color: #f5f5f5;
}
.dropdown-title {
  color: rgb(128, 128, 128);
  font-family: var(--montserrat-font);
  font-weight: var(--font-bold);
  font-size: 13px;
  text-transform: uppercase;
}
.dropdown-arrow {
  display: flex;
  width: 21px;
}
.dropdown-options {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 3;
  transition: 0.3s;
  width: 100%;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
  border-radius: 13px;
  overflow: hidden;
  margin: 2px 0 0 0;
}
.dd-options-active {
  opacity: 1;
  top: 100%;
  pointer-events: all;
}
.offset-options{
  display: none;
}
.products-options {
  display: flex;
}

.products-options-half {
  width: 50%;
}
.dd-option {
  padding: 10px;
  color: rgb(128, 128, 128);
  font-weight: var(--font-bold);
  font-size: 10px;
  transition: 0.3s ease;
  user-select: none;
}
.dd-option:hover {
  background-color: rgba(128, 128, 128, 0.142);
  color: #000;
}
.offset-option{
  display: none;
}
.products-options-half li.dd-option {
  padding: 7px 10px;
}
.st-option {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  max-height: 100%;
  transition: max-height 0.3s ease-in-out;
  padding: 0;
  color: rgb(128, 128, 128);
  font-weight: var(--font-bold);
  font-size: 10px;
  transition: 0.3s ease;
  user-select: none;
}
.st-option:hover {
  background-color: transparent;
}
.st-option-title {
  padding: 10px;
}
.st-option-title:hover {
  background-color: rgba(128, 128, 128, 0.142);
}
.dd-option-hidedlist {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-in-out;
  padding: 0 20px 5px 20px;
}
.dd-hided-item {
  padding: 5px;
  transition: 0.2s ease;
}
.dd-hided-item:hover {
  color: #000;
}
.st-opt-show {
  max-height: 100%;
}
.choosed-option {
  color: #000;
  text-transform: none;
  font-size: 12px !important;
}
.chekout-on-whatsapp {
  display: inline-block;
  gap: 0 5px;
  border: 2px rgba(215, 215, 215, 0.868) solid;
  border-radius: 7px;
  padding: 3px 5px;
  color: gray;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s ease;
  font-family: "Nunito", sans-serif;
  max-width: 170px;
  margin: 0 auto;
}

.chekout-on-whatsapp:hover {
  background-color: green;
  border-color: green;
  color: #fff;
}
.chekout-btn-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 5px;
  font-size: 11px;
}

.whatsapp-g {
  transition: 0.2s ease;
}
.product__calculator-input {
  border: 1px rgb(200, 200, 200) solid;
}

.product__calculator-result {
  padding: 10px;
  background-color: var(--main-color);
  color: #fff;
}

.product__socials-list {
  gap: 10px;
  justify-content: center;
}

.product__socials-link img {
  width: 30px;
  opacity: 0.3;
}

.product__content_bottom {
  background-color: rgb(238, 238, 238);
  border: 3px rgb(178, 178, 178) solid;
  padding: 20px 10px;
  gap: 7px;
  width: 100%;
}
/* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= */

.product__content {
  width: 100%;
}

.product__info-blocks {
  display: flex;
  width: 100%;
}
.product__contents-header {
  display: flex;
  gap: 0 20px;
}

/* -================================================================================= */
.product__pricelist-header,
.product__dimensions-header {
  padding: 16px;
  font-size: var(--small-font-size);
  font-weight: var(--font-bold);
  text-align: center;
  cursor: pointer;
}
.product-header-title {
  width: 100%;
  background-color: rgb(227, 227, 227);
}
.product__header_active {
  color: rgb(116, 13, 168);
  display: inline-block;
  background-color: #f8f8f8;
  box-shadow: 0 0 1px rgb(0 0 0 / 10%), 0 1px #f1f1f1,
    0 0 0 1px rgb(0 0 0 / 10%);
}

.product__pricelist,
.product__dimensions,
.product__requirements {
  background-color: #f8f8f8;
  box-shadow: 0 0 0 1px rgb(0 0 0 / 10%);
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease-in-out;
  height: 0;
  max-width: 0;
  width: 0;
  
  overflow: hidden;
  padding: 0 !important;
}

.product__pricelist {
  padding: 16px;
}

.product__pricelist-item,
.product__dimensions-item,
.product__requirements-item {
  padding: 8px;
  color: rgb(103, 103, 103);
  font-size: var(--small-font-size);
  white-space: wrap;
}

.product__pricelist-item {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-items: center;
  gap: 6px;
  font-weight: var(--font-bold);
}

.product__dimensions,
.product__requirements {
  padding: 16px 10px;
  opacity: 0;
  pointer-events: none;
}
.product__dimensions {
}

.product__dimensions-list {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
}

.product__dimensions-item,
.product__requirements-item {
  display: grid;
  grid-template-columns: minmax(0, 167px) 77px;
}
.products-info {
  display: flex;
  justify-content: space-between;
  gap: 0 20px;
}
.about-product-layout{
  display: flex;
  flex-direction: column;
  gap: 15px 0;
}
.product-layout-title {
  font-weight: 600;
  color: rgb(150, 150, 150);
}
.product-title-firstgray {
  color: gray;
}
.product-title-firstred {
  color: red;
}
.product-title-firstblue {
  color: rgb(0, 115, 255);
}
.product-layout-options {
  max-width: 50%;
  width: 100%;
}
.layout-option {
  display: flex;
  gap: 0 20px;
  color: rgb(103, 103, 103);
  font-size: var(--normal-font-size);
  padding: 15px 10px;
  background-color: rgb(245, 245, 245);
}
.product-layout-options .layout-option:nth-child(2) {
  background-color: rgb(
    230,
    230,
    230
  ); /* Задайте желаемый цвет фона (в данном случае серый) */
}
.product-layout-options .layout-option:nth-child(4) {
  background-color: rgb(230, 230, 230);
}
.layout-option-parameter {
  max-width: 60%;
  width: 100%;
  white-space: wrap;
}
.layout-option-size {
  max-width: 40%;
  width: 100%;
}
.layout-requirements{
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.layout-requirements-descr{
  display: flex;
  flex-direction: column;
  gap: 30px 0;
}
.layout-requirements-title{
  font-size: 24px;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
}
.load-layout-btn{
  border-bottom: 2px dotted;
  font-size: 20px;
  font-weight: 600;
  color: rgb(0, 157, 255);
  cursor: pointer;
  transition: 0.2s ease;
}
.load-layout-btn:hover{
  opacity: 0.8;
}
#layout-file{
  display: none;
}
.layout-file-option{
  display: flex;
  padding: 10px;
  gap: 0 10px;
  font-size: 11px;
}
.layout-requirements-descr,
.layout-file-requirements{
  max-width: 33.3%;
  width: 100%;
}


.layout-file-requirements{
  color: rgb(103, 103, 103);
}
.product__requirements-item {
  gap: 10px;
}

.product__dimensions-item p,
.product__requirements-item p {
  line-height: 21px;
  font-weight: var(--font-medium);
}

.product_active {
  max-width: 100%;
  width: 100%;
  opacity: 1;
  pointer-events: all;
  padding: 30px 20px !important;
  height: 100%;
}

.product__pricelist-item:nth-child(2n) {
  background-color: #fff;
}

.product__dimensions-item:nth-child(2n),
.product__requirements-item:nth-child(2n) {
  background-color: #fff;
}

.product__pricelist-item:hover,
.product__dimensions-item:hover,
.product__requirements-item:hover {
  background-color: #ededed;
}

.product__pricelist-item:not(:first-child) p:last-child {
  color: rgb(168, 13, 165);
}

.product__dimensions-tumbler {
  display: flex;
  gap: 5px;
}

.product__dimensions-header {
  white-space: nowrap;
  width: 100%;
}

.product__advertising {
  display: none;
}

/* АДАПТИВ */

@media screen and (max-width: 330px) {
  .product__calculator-label {
    font-size: 12px;
  }
}
@media screen and (max-width: 340px) {
  .product-header-title {
    font-size: 10px;
    padding: 5px;
  }
}
@media screen and (max-width: 371px) {
  .main {
    padding-top: 85px;
  }

  .nav-modal,
  .contact-modal {
    top: 78px;
  }

  .product__dimensions-item,
  .product__requirements-item {
    gap: 10px;
    align-items: center;
  }
  .dropdown-title {
    font-size: 12px;
  }
  .dropdown-content {
    width: 100%;
  }
}

@media screen and (max-width: 400px) {
  .design-buttons{
    flex-wrap: wrap;
    gap: 20px 10px;
    justify-content: center;
  }
  .product-header-title {
    font-size: 11px;
    padding: 10px;
  }
  .slider-bottom__title {
    font-size: var(--h3-font-size);
  }

  .slider-bottom__info {
    font-size: var(--small-font-size);
  }

  .section__title {
    font-size: 28px;
  }

  .services__item {
    width: 100%;
  }

  .services__item img {
    width: 200px;
  }
  .dropdown-content {
    max-width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .product__dimensions-header {
    white-space: unset;
  }
  /* PORTFOLIO.html */
  .portfolio__list {
    flex-direction: column;
  }

  .portfolio__item {
    width: 100%;
  }

  .contacts__data {
    display: none;
  }

  /* PRODUCT.html */
  .product__pricelist {
    min-width: auto;
  }
}
@media screen and (min-width: 1060px) {
  .layout-file-requirements:nth-child(2) .layout-file-option:nth-child(1){
    background-color: rgb(230, 230, 230);
  }
  .layout-file-requirements:nth-child(3) .layout-file-option:nth-child(2){
    background-color: rgb(230, 230, 230);
  }
}
@media screen and (max-width: 1060px) {
  .products-info{
    flex-wrap: wrap;
  }
  .product-layout-options{
    max-width: 100%;
    margin-top: 20px;
  }
  .layout-requirements{
    flex-wrap: wrap;
  }
  .layout-requirements-descr,
  .layout-file-requirements{
    max-width: 100%;
    margin-top: 20px;
  }
  .layout-file-requirements:nth-child(2) .layout-file-option:nth-child(1){
    background-color: rgb(230, 230, 230);
  }
  .layout-file-requirements:nth-child(3) .layout-file-option:nth-child(1){
    background-color: rgb(230, 230, 230);
  }
}
@media screen and (max-width: 1024px) {

  /* PRODUCT.html */
  .section-title-line{
    flex-direction: column;
    gap: 20px 0;
  }
  .section__title{
    align-self: start;
  }
  .breadcrumbs{
    align-self: flex-start;
  }
  .design-buttons{
    align-self: flex-end;
  }
  .product__content_bottom {
    flex-direction: column;
    gap: 15px;
  }

  .product__dimensions-item,
  .product__requirements-item {
    justify-content: space-between;
  }

}

@media screen and (min-width: 480px) {
  .header-buttons__contact,
  .header-buttons__nav {
    width: 82px;
    height: 82px;
  }

  .contact-modal,
  .nav-modal {
    top: 82px;
  }

  .header__contact {
    padding-left: 25px;
  }

  .main {
    padding-top: 90px;
  }

  .gallery__content {
    grid-template-columns: 250px 1fr;
  }

  .gallery__main-box_left {
    grid-column: 1/2;
  }

  .gallery__main-box {
    grid-row: 1/4;
    grid-column: 2/3;
  }

  .gallery__bottom-box {
    grid-column: 2/3;
  }

  .gallery__socials-box {
    grid-column: 1/2;
    grid-row: 4/5;
    width: 245px;
  }
}
@media screen and (max-width: 620px) {
  .section-title-line{
    align-items: center;
  }
  .page-info{
    justify-content: center;
    align-items: center;
  }
  .design-buttons{
    align-self: center;
  }
}
@media (min-width: 620px) {
  .product__advertising {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .product__contents-header {
    gap: 0;
  }
}
@media screen and (min-width: 768px) {
  .container {
    margin: 0 auto;
    padding: 0 20px;
  }

  .header__box {
    position: static;
    margin-top: var(--m-0-5);
  }

  .header__content {
    padding: 22px;
  }

  .logo {
    display: block;
  }

  .header-buttons__contact,
  .header-buttons__nav {
    width: 66px;
    height: 66px;
  }

  .header-buttons {
    gap: 10px;
  }

  .contact-modal,
  .nav-modal {
    position: absolute;
    bottom: auto;
    top: 108px;
  }

  .nav-modal {
    box-shadow: none;
    width: auto;
    left: 0;
  }

  .contact-modal__inner,
  .socials__list {
    flex-direction: row;
  }

  .contact-modal__inputs {
    grid-template-columns: 1fr 1fr;
  }

  .socials__items-box {
    gap: 15px;
  }

  /* .main {
    display: grid;
    gap: 10px;
    padding-top: 8px;
    grid-template-columns: minmax(513px, 688px) 228px;
  } */
  .main {
    display: grid;
    gap: 10px;
    padding-top: 8px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 228px);
    max-width: 1200px;
    margin: 0 auto;
  }

  .review,
  .aside {
    background-color: transparent;
  }

  .section {
    padding: 0;
    margin-bottom: 15px;
  }

  .aside,
  .aside .container,
  .review .container {
    padding: 0;
  }

  .aside-accordion,
  .aside-box_right {
    background-color: #fff;
  }

  .aside .section__title {
    display: none;
  }

  .ac .ac-trigger {
    font-size: 15px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: block;
    top: 90%;
  }

  .swiper-button-next {
    right: 24px;
  }

  .swiper-button-prev {
    left: 24px;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    content: "";
    background-image: url(../img/arrow-right.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    display: block;
    height: 30px;
    width: 30px;
  }

  .swiper-button-prev::after {
    transform: scale(-1);
  }

  .footer__address {
    align-self: flex-start;
  }

  .footer__data-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  /* CONTACTS.html*/
}

@media screen and (min-width: 940px) {
  .body-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
  }

  .footer__data-top,
  .footer__data-bottom {
    max-width: 940px;
    margin: 0 auto;
  }

  .main {
    gap: 24px;
  }

  .services__list {
    gap: 20px;
  }

  .services__item {
    width: 190px;
  }
}

@media screen and (min-width: 1024px) {
  .header__box {
    margin: var(--m-1-5) 0;
  }

  .nav-modal__list {
    flex-direction: row;
    justify-content: center;
    gap: 30px;
  }

  .gallery__content {
    align-items: start;
  }

  .gallery__main-box {
    grid-template-columns: 1fr 1fr;
    gap: 8px;

    align-content: center;
  }

  .gallery__item:nth-child(1) {
    grid-column: 1/-1;
  }

  .gallery__socials-box {
    grid-column: 2/-1;
    grid-row: 2/3;
    align-self: end;
  }

  .gallery__bottom-box {
    max-width: 190px;
    grid-row: 2/3;
    align-self: end;
    justify-content: flex-end;
    transform: translate(170px, -25px);
  }

  .gallery__socials-list {
    justify-content: flex-start;
  }
}
