/* ! -------------------reset-styles------------------ */

* {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol,
li {
  list-style: none;
}

li {
  position: relative;
}

img {
  vertical-align: top;
  max-width: 100%;
  max-height: 100%;
}

button {
  cursor: pointer;
  background-color: unset;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

:focus {
  outline: none;
}

input::-webkit-input-placeholder {
  opacity: 1;
  transition: opacity 0.3s ease;
}

input::-moz-placeholder {
  opacity: 1;
  transition: opacity 0.3s ease;
}

input:-moz-placeholder {
  opacity: 1;
  transition: opacity 0.3s ease;
}

input:-ms-input-placeholder {
  opacity: 1;
  transition: opacity 0.3s ease;
}

input:focus::-webkit-input-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}

input:focus::-moz-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}

input:focus:-moz-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}

input:focus:-ms-input-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media (max-width: 1200px) {
  .lock-scroll {
    overflow: hidden;
  }
}

select {
  width: 100%;
  font:
    400 1.6rem/2.4rem "Roboto",
    Arial,
    Helvetica,
    sans-serif;
  border: 1px solid var(--input-bg);
  border-radius: 5px;
  padding: 1rem 2.5rem 1rem 1rem;
  -webkit-appearance: none;
  appearance: none;
  background-color: var(--input-bg);
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='7' viewBox='0 0 11 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.284143 1.91713L4.77096 6.66853C4.86819 6.77356 4.98386 6.85693 5.11131 6.91382C5.23876 6.97071 5.37547 7 5.51353 7C5.6516 7 5.7883 6.97071 5.91575 6.91382C6.0432 6.85693 6.15888 6.77356 6.25611 6.66853L10.6906 1.91713C10.7887 1.81296 10.8665 1.68902 10.9196 1.55246C10.9727 1.4159 11 1.26943 11 1.1215C11 0.973565 10.9727 0.827095 10.9196 0.690537C10.8665 0.553981 10.7887 0.43004 10.6906 0.325864C10.4947 0.11715 10.2296 -8.86323e-07 9.95329 -8.62168e-07C9.67698 -8.38012e-07 9.4119 0.11715 9.21594 0.325864L5.51353 4.29283L1.81113 0.325865C1.61632 0.118839 1.35339 0.00212611 1.07901 0.000888261C0.941366 3.56885e-05 0.804918 0.0283026 0.677491 0.0840692C0.550063 0.139836 0.434163 0.222006 0.336436 0.325865C0.234908 0.426292 0.152959 0.54728 0.095324 0.681838C0.0376887 0.816396 0.00551076 0.961857 0.000647984 1.10982C-0.00421384 1.25778 0.0183358 1.4053 0.0669951 1.54387C0.115654 1.68244 0.189458 1.8093 0.284143 1.91713Z' fill='%23343434'/%3E%3C/svg%3E%0A");
  background-position: right 1rem center;
  background-repeat: no-repeat;
  white-space: nowrap;
  text-overflow: ellipsis;
  height: 4.6rem;
  margin: 0;
}

/* ! ------------------------body-------------------- */

html {
  height: 100%;
  font-size: 10px;
}

@media (min-width: 1200px) and (max-width: 1470px) {
  html {
    font-size: 0.6802721088vw;
  }
}

body {
  font-family: "Rubic", "Arial", "Helvetica", sans-serif;
  color: var(--color-text);
  height: 100%;
  font-weight: 400;
  font-style: normal;
}

body.lock,
html.lock {
  overflow: hidden;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
}
.default-btn {
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  border: 1px solid transparent;
  background: none;
  border-radius: 5px;
  padding: 1rem 2rem;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  min-height: 5rem;
  transition:
    border-color 0.25s,
    color 0.25s,
    background 0.25s;
  cursor: pointer;
}

.default-btn:active {
  transition: none;
  transform: scale(0.95);
}
.default-btn {
  background: var(--color-accent);
  color: var(--color-text-inverse);
}
.default-btn::after {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.2);
  transition: opacity 0.25s;
  opacity: 0;
}
.default-btn:hover::after {
  opacity: 1;
}
.default-btn:hover {
  background: var(--color-accent);
  color: var(--color-text-inverse);
  box-shadow: none;
}

.default-btn_grey {
  background: #f1f1f5;
  color: var(--color-text);
}

.default-btn_white {
  background: var(--color-bg);
  color: var(--color-text);
}

.default-btn_white:hover {
  background: var(--color-bg);
  color: var(--color-accent);
}

/* ! ------------------------styles------------------ */

.container {
  max-width: 147rem;
  padding: 0 2.5rem;
  margin: 0 auto;
}
.dropdown {
  position: relative;
}

.dropdown__container {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0px 0px 20px rgba(170, 189, 206, 0.25);
  border-radius: 5px;
  width: 27.8rem;
  padding: 1rem 0;
  margin: 0.5rem 0 0 0;
  transition:
    opacity 0.25s,
    visibility 0.25s,
    transform 0.25s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

.dropdown__container::before {
  content: "";
  position: absolute;
  bottom: calc(100%);
  width: 100%;
  height: 0.5rem;
}

.dropdown:hover .dropdown__container {
  opacity: 1;
  visibility: visible;
}

.main-background {
  background-color: var(--color-bg-accent);
  padding: 53px 0 20px;
  overflow: hidden;
}
@media (min-width: 1550px) {
  .background-texture .main-background {
    background: none;
    padding: 33px 0 20px;
  }

  .background-texture .main-background > .container {
    background-color: var(--color-bg-accent);
    padding-top: 20px;
    padding-bottom: 0;
    border-radius: 12px;
  }
}

.swiper-notification {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
}

._hide {
  display: none !important;
}

.hidden {
  display: none;
}

.opacity {
  opacity: 0;
}

.main {
  flex: 1 1 auto;
  background-color: var(--color-bg-accent);
}

@media (min-width: 1550px) {
  .background-texture .main {
    background: none;
  }
}

.account__link {
  display: block;
  padding: 6px 0;
}

.product-wrapper .rating-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

.product-wrapper .rating-wrapper .info {
  margin-left: 5px;
}

.a-button__title {
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
}

.button--light {
  background-color: var(--secondary-background-color);
  color: var(--color-text-inverse);
  transition: all 0.4s ease-in-out;
  border-radius: 20px;
  padding: 8px 10px;
  margin-bottom: 10px;
  display: block;
  width: fit-content;
}

.button--light:hover {
  background-color: var(--color-accent);
  color: var(--color-text);
}

.relative {
  position: relative;
}

.fit-content {
  width: fit-content;
}

.show-pass {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
}

.show-pass svg {
  width: 20px;
  height: 20px;
}

.l-row .l-col.min-0--12 .l-row {
  display: flex;
  flex-direction: column;
}

/* c-title
------------------------------------------------------------------- */

.c-title {
  font-size: 1.1rem;
  font-weight: 500;
  padding-bottom: 15px;
}

@media (max-width: 767px) {
  .c-title {
    text-align: center;
  }
}

@media (min-width: 768px) {
  .c-title {
    font-size: 1.4rem;
  }
}

@media (min-width: 1025px) {
  .c-title {
    font-size: 1.6rem;
  }
}

.c-title--no-border {
  padding-bottom: 0;
  border-bottom: 0;
}

/* c-alert
------------------------------------------------------------------- */

.c-alert {
  display: block;
  padding: 1.5rem;
  font-size: 1.5rem;
  text-align: center;
}

.c-alert span {
  display: block;
}

@media (max-width: 767px) {
  .c-alert {
    padding: 10px;
  }
}

.c-alert--red {
  margin-bottom: 20px;
  padding: 1.5rem;
  background: #f2dede;
  color: #a94442;
  border-radius: 5px;
  font-size: 1.5rem;
  border: 1px solid #ebccd1;
}

.mg-error {
  font-size: 1.5rem;
}

.email-error.c-alert--red {
  background: none;
}

.c-alert--blue {
  margin-bottom: 20px;
  color: #31708f;
  background: #d9edf7;
  padding: 1.5rem;
  border-radius: 5px;
  font-size: 1.5rem;
  border: 1px solid #a6d5e8;
}

.c-alert--green {
  margin-bottom: 20px;
  color: #3c763d;
  background: #dff0d8;
  padding: 1.5rem;
  border-radius: 5px;
  font-size: 1.5rem;
  border: 1px solid #c6ddbd;
}

.c-alert--orange {
  color: #8a6d3b;
  background: #fcf8e3;
  margin-bottom: 20px;
}

/* КОНЕЦ страницы оформления заказа */

.static-container {
  font-size: var(--text-md);
  padding-top: 40px;
  padding-bottom: 40px;
  line-height: 1.9;
}

h1.static-content__title {
  line-height: 1.2;
}

.static-container img {
  height: auto !important;
}

.footer__spoiler {
  position: relative;
  font-style: normal;
  margin-bottom: 10px;
}

.footer__arrow {
  background-size: 13px 8px;
  top: -4px;
  right: -8px;
}

.footer__title._active + .footer__arrow {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.footer__list {
  max-height: 0;
  margin-bottom: 10px;
  -webkit-transition:
    opacity 0.5s linear,
    max-height 0.5s linear,
    min-height 0.5s linear,
    width 0.5s linear;
  transition:
    opacity 0.5s linear,
    max-height 0.5s linear,
    min-height 0.5s linear,
    width 0.5s linear;
  width: 100%;
  opacity: 0;
  overflow: hidden;
}

.footer__list._active {
  -webkit-transition:
    opacity 0.5s linear 0.2s,
    max-height 0.5s linear,
    min-height 0.5s linear,
    width 0.5s linear 0.2s;
  transition:
    opacity 0.5s linear 0.2s,
    max-height 0.5s linear,
    min-height 0.5s linear,
    width 0.5s linear 0.2s;
  opacity: 1;
}

.footer__widget {
  display: flex;
  flex-wrap: wrap;
  margin-left: auto;
}

@media (max-width: 980px) {
  .footer__widget {
    margin: 0 auto;
  }
}

.footer__list._active .footer__button {
  height: 45px;
  padding: 7px 10px;
}

.footer__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 25px;
  margin-right: 10px;
}

.footer__image svg {
  max-width: 25px;
  height: 25px;
  width: 25px;
  fill: var(--main-color);
}

.footer__telephones {
  display: flex;
  flex-direction: column;
}

.footer__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer__copyright {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-text);
  font-size: var(--text-xxs);
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  border-top: 1px solid #e4e7f1;
  padding: 10px 15px 15px;
  margin-top: 10px;
}

.footer__copy-container > div {
  display: flex;
  flex-direction: row;
  margin-top: 10px;
  align-items: center;
}

.footer__copy-container a:hover {
  text-decoration: underline;
}

@media (max-width: 1200px) {
  .footer__copy-container > div {
    flex-direction: column;
    flex-shrink: 0;
  }
}

.footer__payments {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.footer__pay {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  opacity: 0.5;
  margin-top: 10px;
  height: 16px;
}

.footer__pay img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.footer__pay:hover {
  opacity: 1;
}

address.footer__spoiler .footer__item {
  margin-bottom: 35px;
}

@media (min-width: 480px) {
  .top__checkout {
    margin-left: 20px;
  }

  .account__menu {
    left: -105px;
  }
}

@media (min-width: 625px) {
  .top__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 6px 20px;
    margin: 0 auto;
  }

  .top__links {
    justify-content: space-between;
  }
}

@media (min-width: 768px) {
  .account {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .account__title {
    display: block;
    margin-left: 6px;
    font-size: var(--text-xxs);
    font-weight: 500;
    letter-spacing: 0;
    color: #000;
  }

  .account:hover .account__title {
    color: var(--main-color);
  }

  .account__menu {
    top: 60px;
    left: -115px;
  }
}

@media (min-width: 980px) {
  .top__contacts {
    display: flex;
  }

  .top__contacts-phone {
    display: block;
    font-weight: 400;
  }

  .top__contacts-phone:hover {
    color: var(--main-color);
  }

  .footer__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .footer__arrow {
    display: none;
  }

  .footer__list {
    max-height: none !important;
    width: auto;
    opacity: 1;
  }

  .footer__spoiler {
    padding: 0 15px;
  }

  .footer__spoiler_1 {
    width: 28%;
  }

  .footer__spoiler_1 .footer__title {
    display: none;
  }

  .footer__spoiler_2 {
    width: 23%;
  }

  .footer__spoiler_3 {
    width: 23%;
  }

  .footer__spoiler_5 {
    margin-top: 45px;
  }

  .footer__spoiler_5 .footer__title {
    display: none;
  }

  .footer__button {
    padding: 7px 10px;
    height: 45px;
    right: 0;
  }

  .footer__copyright {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 5px 15px 15px;
  }
}

@media (min-width: 1080px) {
  .header__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .header__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    align-items: center;
  }

  .header__cabinet-container {
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  .account__menu {
    top: 50px;
  }
}

@media (min-width: 1200px) {
  .top__wrapper {
    padding: 6px 30px;
    max-width: 1150px;
  }

  .header__menu {
    position: relative;
    top: 0;
    transform: none;
    display: flex;
    margin: 20px 0;
  }

  .clothes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .clothes__title {
    font-weight: 500;
    color: var(--main-color);
    padding: 5px 0;
    font-size: var(--text-xxs);
    border-bottom: 1px solid var(--main-color);
    margin-bottom: 16px;
  }

  .clothes__subcategory {
    min-width: 190px;
    padding-right: 30px;
  }

  .blender {
    right: -120px;
    top: -6px;
    padding: 10px;
    min-width: 140px;
  }

  .blender a {
    font-weight: 500;
  }
}

.c-modal .c-modal__close {
  background: none;
  width: 15px;
  height: 15px;
  position: absolute;
}

.c-modal .c-modal__content {
  border-radius: 10px;
  margin: 0 15px;
}

.c-modal textarea {
  min-height: 70px;
}

.c-modal .button {
  display: block;
  width: fit-content;
  color: var(--color-text-inverse);
  background-color: var(--secondary-background-color);
  padding: 8px 10px;
  border-radius: 20px;
  transition: all 0.4s ease-in-out;
}

.c-modal .button:hover {
  color: var(--color-text);
  background-color: var(--color-accent);
}

@media (min-width: 1450px) {
  .top__wrapper {
    max-width: 1260px;
  }

  .advantage__title {
    letter-spacing: 0.6px;
    line-height: 22px;
    font-size: var(--text-xxs);
  }
}

.e-form__row {
  margin-bottom: 10px;
}

.e-form-input {
  display: block;
  height: 34px;
  padding: 6px 12px;
  font-size: var(--text-md);
  color: var(--color-text);
  background-color: #fff;
  background-image: none;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  box-shadow: none;
  width: 100%;
  max-width: 400px;
  max-height: 250px;
  min-height: 40px;
  min-width: 250px;
}

textarea.e-form-input {
  min-width: 400px;
  max-width: 400px;
}

@media (max-width: 470px) {
  textarea.e-form-input {
    min-width: 100%;
    max-width: 100%;
  }
}

/* Стили для ошибок валидации формы обратной связи */
.e-form-input--error,
input.e-form-input--error,
textarea.e-form-input--error,
.e-form-input:invalid:not(:focus):not(:placeholder-shown) {
  border: 1px solid #dc3545 !important;
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

/* Подсветка поля с нативной ошибкой валидации (только для поля с сообщением об ошибке) */
.e-form .e-form-input.field-invalid,
.e-form input.e-form-input.field-invalid,
.e-form textarea.e-form-input.field-invalid,
form[name="feedback"] .e-form-input.field-invalid,
form[name="feedback"] input.e-form-input.field-invalid,
form[name="feedback"] textarea.e-form-input.field-invalid,
.e-form-input.field-invalid,
input.e-form-input.field-invalid,
textarea.e-form-input.field-invalid,
.e-form-input.field-invalid:focus,
input.e-form-input.field-invalid:focus,
textarea.e-form-input.field-invalid:focus,
form[name="feedback"] .e-form-input.field-invalid:focus,
form[name="feedback"] input.e-form-input.field-invalid:focus,
form[name="feedback"] textarea.e-form-input.field-invalid:focus,
.e-form .e-form-input.field-invalid:focus,
.e-form input.e-form-input.field-invalid:focus,
.e-form textarea.e-form-input.field-invalid:focus,
input[type="email"].e-form-input.field-invalid,
input[type="email"].e-form-input.field-invalid:focus,
input[type="text"].e-form-input.field-invalid,
input[type="text"].e-form-input.field-invalid:focus,
textarea.e-form-input.field-invalid:focus {
  border: 1px solid #dc3545 !important;
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
  outline: none !important;
}

/* Контейнер для поля ввода с ошибкой */
.e-form-input-container {
  position: relative;
  display: block;
}

/* Пузырек с ошибкой в стиле каптчи */
@media (max-width: 641px) {
  .c-table__promocode button {
    margin-left: auto;
  }
}

.msgError,
.mg-success {
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 5px;
  font-size: var(--text-md);
}

.msgError {
  background-color: #f2dede;
  border: 1px solid #ebccd1;
  color: #a94442;
  margin: 4rem 0 6.5rem 0;
}

.mg-success {
  background: #d9edf7;
  border: 1px solid #a6d5e8;
  color: #31708f;
  font-size: 1.5rem;
}

.static-container h1,
.static-container h2,
.static-container h3,
.static-container p {
  margin-bottom: 20px;
}

.static-content ul,
.static-content ol,
.static-container ul,
.static-container ol {
  padding-left: 15px;
  margin-left: 5px;
}

.static-content ul li,
.static-container ul li {
  list-style-type: disc;
}
.static-content ol li,
.static-container ol li {
  list-style-type: decimal;
}

.block-wrapper {
  background-color: var(--color-bg-accent);
}
@media (min-width: 1550px) {
  .background-texture .block-wrapper {
    background: none;
  }

  .background-texture .block-wrapper .container {
    background: var(--color-bg-accent);
    padding: 20px 2.5rem;
    margin: 20px auto;
    border-radius: 12px;
  }
}

.static-container .spoiler-title {
  display: flex;
  justify-content: space-between;
}

.static-container .spoiler-title:hover {
  background-color: var(--color-accent);
  color: var(--color-text);
}

.static-container .spoiler {
  border-color: var(--color-border);
}

.static-container .spoiler-title::after {
  content: "\F0140";
  display: inline-block;
  font: normal normal normal 24px/1 "Material Design Icons";
  font-size: inherit;
  text-rendering: auto;
  line-height: inherit;
  -webkit-font-smoothing: antialiased;
  transition: all 0.4s ease-in-out;
  width: fit-content;
  line-height: 1;
  height: 16px;
}

.static-container .spoiler._active .spoiler-title::after {
  transform: rotate(180deg);
}

.comments textarea {
  border: 1px solid var(--color-border);
  border-radius: 5px;
  padding: 10px;
}

.comments .showImgComments {
  margin: 5px;
  display: block;
  width: fit-content;
}

.quickview-text {
  display: block;
  -ms-flex: 1;
  flex: 1;
  font-size: 1.4rem;
  line-height: 2rem;
  font-weight: 400;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-left: 1rem;
}
.minicart-item__dropdown .quickview-text {
  margin-left: 0;
}

.e-form__title {
  display: block;
  margin-bottom: 3px;
  color: var(--color-text);
}

.e-form__row-info > div {
  margin-bottom: 7px;
}

.checkCapcha input {
  width: 100%;
  padding: 8px;
  border: 1px solid var(--color-border);
  border-radius: 5px;
  max-width: 240px;
}

.accordeon__btn {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding: 2rem 5rem 2rem 2.5rem;
  font-size: var(--text-h2);
  line-height: 1.2;
  font-weight: 500;
  cursor: pointer;
  color: #343434;
  min-height: 7rem;
  margin: 0;
  transition: color 0.25s;
  padding: 3rem 8rem 3rem 3rem;
  font-size: 2.4rem;
  min-height: 9.9rem;
}

.accordeon__dropdown {
  padding: 0 3rem 3rem;
  text-align: justify;
}

.accordeon__arrow {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  transition: transform 0.25s;
  padding: 0 3rem;
}
.accordeon__arrow svg {
  width: 2.1rem;
  height: 2.1rem;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  fill: currentColor;
  fill-rule: evenodd;
}

.accordeon.active .accordeon__arrow {
  transform: rotate(-180deg);
}
.captcha {
  display: block;
  width: 100%;
  background: var(--input-bg);
  border: 1px solid var(--input-bg);
  font:
    400 1.6rem/2.4rem "Roboto",
    Arial,
    Helvetica,
    sans-serif;
  padding: 1rem 1.6rem;
  color: var(--color-text);
  -webkit-appearance: none;
  appearance: none;
  box-shadow: none;
  border-radius: 5px;
  margin: 0 0 2rem;
  height: 4.6rem;
  transition: box-shadow 0.25s;
  max-width: 100%;
  min-width: 200px;
}

.g-recaptcha {
  margin-bottom: 15px;
}

.total-price-block .checkCapcha {
  margin-top: 15px;
}


