@charset "UTF-8";
/* Inter */
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter_24pt-Black.ttf");
  font-weight: 900;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter_24pt-ExtraBold.ttf");
  font-weight: 800;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter_24pt-Bold.ttf");
  font-weight: 700;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter_24pt-SemiBold.ttf");
  font-weight: 600;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter_24pt-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter_24pt-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter_24pt-Light.ttf");
  font-weight: 300;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter_24pt-ExtraLight.ttf");
  font-weight: 200;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter_24pt-Thin.ttf");
  font-weight: 100;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
}

.container {
  width: 1510px;
  margin: 0 auto;
}
@media screen and (max-width: 1550px) {
  .container {
    width: 1200px;
  }
}
@media screen and (max-width: 1420px) {
  .container {
    width: 1200px;
  }
}
@media screen and (max-width: 1220px) {
  .container {
    width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .container {
    width: 100%;
    padding: 0 20px;
    overflow: hidden;
  }
}

a {
  text-decoration: none;
}

.button {
  border: none;
  border-radius: 5px;
  border: 1px solid #017372;
  background: #017372;
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  text-align: center;
  color: #fff;
  padding: 16px 24px;
  cursor: pointer;
  transition: 0.3s;
}
.button:hover {
  background: #fff;
  color: #017372;
}
@media screen and (max-width: 700px) {
  .button {
    font-size: 14px;
    padding: 12px;
  }
}

li {
  text-decoration: none;
  list-style: none;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none !important;
}

.field, textarea {
  border: 1px solid #ededed;
  padding: 15px 10px;
  background: #fff;
  width: 400px;
  height: 35px;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #20201e;
}
.field.gray_green, textarea.gray_green {
  border: 1px solid #019190;
  background: #ededed;
  height: 52px;
}
.field.white_green, textarea.white_green {
  border: 1px solid #019190;
  background: #fff;
  height: 52px;
}

textarea {
  width: 100%;
  height: 90px;
}
textarea.gray_green, textarea.white_green {
  height: 120px;
}

h2 {
  font-size: 36px;
  font-weight: 600;
  color: #20201e;
}
@media screen and (max-width: 1550px) {
  h2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 700px) {
  h2 {
    font-size: 18px;
  }
}

.standart_text {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #20201e;
}
.standart_text.biryuzovyy {
  color: #019190;
}
@media screen and (max-width: 700px) {
  .standart_text {
    font-size: 14px;
  }
}

.bold_text {
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
  color: #20201e;
}
.bold_text .big_text {
  font-size: 32px;
}
@media screen and (max-width: 700px) {
  .bold_text {
    font-size: 16px;
  }
}

.add_favorites, .delete, .add_basket {
  cursor: pointer;
}

/* чекбоксы */
.checkbox-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.custom-checkbox {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  white-space: nowrap;
}
.custom-checkbox.color {
  gap: 10px;
}
.custom-checkbox.color .checkbox-label {
  color: #858585;
}

.custom-checkbox.color input:checked ~ .checkbox-label {
  color: #017372;
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  width: 0;
  height: 0;
}

.checkmark {
  position: relative;
  width: 12px;
  height: 12px;
  border: 0.8px solid #858585;
  border-radius: 4px;
  background: #ededed;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.checkmark.color {
  width: 15px;
  height: 15px;
  border: none;
  border-radius: 100%;
}
.checkmark.color.brown_yellow {
  background-image: url(/img/color/brown_yellow.png);
}
.checkmark.color.brown {
  background-image: url(/img/color/brown.png);
}
.checkmark.color.black {
  background-image: url(/img/color/black.png);
}
.checkmark.color.grey {
  background-image: url(/img/color/grey.png);
}

.custom-checkbox input:checked + .checkmark {
  background-color: #019190;
  border-color: #019190;
}

.custom-checkbox input:checked + .checkmark::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: url("/img/icon/check.png") center/contain no-repeat;
}

.custom-checkbox:hover .checkmark {
  border-color: #019190;
}

.checkbox-label {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #20201e;
}

/* количество */
.counter {
  border: 0.85px solid #ededed;
  border-radius: 4px;
  width: 120px;
  height: 35px;
  background: #fff;
  padding: 6px 13px;
  margin: 13px 0 12px;
  display: flex;
}
.counter .number {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  text-align: center;
  color: #20201e;
  padding: 0 22px;
  border-left: 0.85px solid #ededed;
  border-right: 0.85px solid #ededed;
}
@media screen and (max-width: 700px) {
  .counter .number {
    font-size: 16px;
    padding: 0 8px;
  }
}
@media screen and (max-width: 700px) {
  .counter {
    width: min-content;
  }
}
.counter .minus, .counter .plus {
  color: #019190;
  cursor: pointer;
}
.counter .minus {
  padding-right: 12px;
}
.counter .plus {
  padding-left: 12px;
}

/* пометка о наличии */
.remark {
  display: flex;
  align-items: center;
  gap: 10px;
}
.remark p {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #019190;
}
.remark .point {
  width: 14px;
  height: 14px;
  background: #019190;
  border-radius: 100%;
}
.remark.red p {
  color: #cd3c22;
}
.remark.red .point {
  background: #cd3c22;
}/*# sourceMappingURL=style.css.map */