/* ============== мультикнопка================= */


.multibutton {
  font-family: Arial, sans-serif;
  position: fixed;
  z-index: 999;
  right: 30px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 60px;
  height: 60px;
  transition: 0.2s ease;
}
 .multibutton ul:not([id*="bx_"]) > li:before {
  content: "";
  margin: 0 0 0 0;
  display: none;
}
@media (max-width: 992px) {
  .multibutton {
      right: 22px;
      bottom: 95px;
      width: 42px;
      height: 42px;
      transition: 0.2s ease;
  }
}
@media (max-width: 767px) {
  .multibutton {
      right: 15px;     
  }
}

.multibutton:hover {
  width: auto;
  height: auto;
}

.multibutton:hover .multibutton__list {
  position: relative;
  top: auto;
  bottom: 10px;
  visibility: visible;
}

.multibutton:hover .multibutton__item {
  visibility: visible;
  opacity: 1;
  transition: 0.3s ease;
  transform: scaleX(1) scaleY(1) translateY(0);
}

.multibutton__list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: absolute;
  right: 13px;
  top: 80px;
  visibility: hidden;
  transition: 0.3s ease;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 767px) {
  .multibutton__list {
      right: 3px;
  }
}

.multibutton__title {
  font-size: 12px;
  color: #fff;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.6);
  padding: 10px 10px;
  border-radius: 30px;
}
.multibutton__title:hover {
  color: #fff;
  text-decoration: none;
}
@media (max-width: 767px) {
  .multibutton__title {
      padding: 5px 10px;
  }
}

.multibutton__item {
  display: flex;
  align-items: center;
  margin: 4px 0;
  transform: scaleX(0.4) scaleY(0.4) translateY(150px);
  opacity: 0;
  visibility: hidden;
}

.multibutton__button {
  width: 60px;
  height: 60px;
  background: #ffce09;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  animation: animation_button 5s step-end infinite;
  transition: all 0s ease-out;
}
@media (max-width: 992px) {
  .multibutton__button {
      width: 42px;
      height: 42px;
  }
}

@keyframes animation_button {
  0% {
      background:#23a0dd url("https://xn----7sblfajgdhlos4bfjfr7n3b.xn--p1ai/upload/add_img/svg/Telegram.svg") center / cover no-repeat;
  }
  50% {
      background:#25d366 url("https://xn----7sblfajgdhlos4bfjfr7n3b.xn--p1ai/upload/add_img/svg/whatsapp.svg") center / cover no-repeat;
  }

  100% {
      background:#ffce09 url("https://xn----7sblfajgdhlos4bfjfr7n3b.xn--p1ai/upload/add_img/svg/call.svg") center / cover no-repeat;
  }
}

.multibutton__button svg,
.multibutton__button img {
  width: 30px;
  height: 30px;
  fill: #fff;
}

.multibutton__icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}
@media (max-width: 767px) {
  .multibutton__icon {
      width: 36px;
      height: 36px;
      flex: 0 0 36px;
  }
}

.multibutton__icon svg,
.multibutton__icon img {
  width: 100%;
  height: 100%;
  fill: #fff;
}

/* popup */

.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 15px 20px;
  background-color: #ffffff;
  border-radius: 10px;
  z-index: 1000;
  color: #111111;
  box-shadow: 6px 6px 30px 6px #666666;
  max-width: 280px;
}
.popup .form .form_head {
  padding: 0px 0px 10px 0px;
}
.popup .form .form_body {
  padding: 0px 0px 12px;
}
.popup .form .form_footer {
  padding: 0px 0px 10px;
}
.popup .b24-form-header,
.popup .b24-form-sign,
.popup-sale .b24-form-sign,
.popup-callback .b24-form-sign {
  display: none;
}
.popup .b24-form-padding-side,
.popup-sale .b24-form-padding-side,
.popup-callback .b24-form-padding-side {
  padding-left: 0;
  padding-right: 0;
}
.popup .b24-form-content,
.popup-sale .b24-form-content,
.popup-callback .b24-form-content {
  padding: 0 0;
}
@media (max-width: 767px) {
  .popup {
      width: 250px;
      padding: 10px 16px;
      border-radius: 10px;
  }
}
.close-popup {
  position: absolute;
  top: 4px;
  right: 10px;
  width: auto;
  color: rgba(51, 51, 51, 1);
  cursor: pointer;
  display: flex;
  gap: 8px;
  align-items: center;
}
.close-popup span {
  display: inline-flex;
  transform: rotate(45deg);
  font-size: 1.7em;
  font-weight: 700;
}
.popup__body {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.popup__image {
  margin-top: 12px;
  margin-bottom: 16px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}
.popup__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.popup__title {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 6px;
  line-height: 1.1;
  text-align: center;
}
.popup__text {
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .close-popup {
      top: 0px;
      font-size: 14px;
  }
  .popup__title span {
      font-size: 14px;
      line-height: 1.2;
  }
  .popup__title {
      font-size: 24px;
  }
}
.popup__content {
}
.popup__form {
}
.form-popup {
}
.form-popup__item {
  margin-bottom: 15px;
}
.form-popup__item--select,
.form-popup__item--tel {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 10px;
}
.form-popup__item--tel .form-popup__input {
  width: 100%;
}
.form-popup__item--flex {
}
.form-popup__label {
}
.form-popup__input:active,
.form-popup__input:focus,
.form-popup__select {
  border: none;
  outline: none;
}
.form-popup__input,
.form-popup__input:focus,
.form-popup__select {
  padding: 6px 15px 6px 12px;
  border-radius: 6px;
  background-color: rgba(208, 208, 208, 1);
  border: none;
  outline: none;
}

.form-popup__btn {
  border: none;
  outline: none;
  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;
  padding: 5px 10px;
  line-height: 1.55;
  font-weight: 500;
  border-radius: 12px;
  cursor: pointer;
  min-width: 180px;
  height: 43px;
  color: #fff;
  font-size: 15px;
  background: #fff;
  -webkit-box-shadow: 0 5px 15px 0 rgba(255, 133, 98, 0.3);
  box-shadow: 0 5px 15px 0 rgba(255, 133, 98, 0.3);
  background: -webkit-gradient(linear, left top, right top, from(#fa7b79), to(#ff9e5f));
  background: linear-gradient(90deg, #fa7b79 0%, #ff9e5f 100%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s ease 0s;
  width: 100%;
}
/* .form-popup__btn {
  border:none;
  outline: none;
  width: 100%;
  padding: 6px 12px;   
  border-radius: 6px;
  color: #fff;
  font-weight: 500;
  text-align: center;
  background-color: #ff9f22;
  font-size: 23px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
} */
@media (any-hover: hover) {
  .form-popup__btn:hover {
      background-color: #fc8f00;
  }
}
@media (max-width: 767px) {
  .form-popup__btn {
      padding: 4px 12px;
      cursor: pointer;
      font-size: 20px;
  }
}
.form-popup__text {
  font-size: 11px;
  color: #333;
  margin: 16px 0 10px 0;
}
.form-popup__text a {
  color: #333;
}
.form-popup__text a:hover {
  text-decoration: none;
}

/* кнопка получения скидки */

.salebutton {
  font-family: Arial, sans-serif;
  position: fixed;
  z-index: 999;
  right: 30px;
  bottom: 35px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #4b1546;
  min-height: 60px;
  line-height: 1;
  padding: 0px 15px;
  border-radius: 30px;
  transition: 0.2s ease;
  background: rgba(255, 109, 0, 1);
  cursor: pointer;
}
@media (max-width: 992px) {
  .salebutton {
      bottom: 35px;
      min-height: 42px;
      padding: 0px 6px;
      right: 22px;
  }
}
@media (any-hover: hover) {
  .salebutton:hover {
      background: rgba(255, 149, 10, 1);
  }
}
.salebutton__icon {
  flex:0 0 30px;
  width: 30px;
  height: 30px;
}
.salebutton__icon img{
max-width: 100%;
}

.salebutton__text {
}
@media (max-width: 767px) {
  .salebutton {
    bottom: 52px;
    min-height: 42px;
    padding: 0px 9px;
    right: 15px;
}
  .salebutton__icon {
    flex:0 0 25px;
      width: 25px;
      height: 25px;
  }
  .salebutton__text {
      font-size: 14px;
  }
}

/*================ popup sale========================== */

.popup-sale {
  font-family: Arial, Helvetica, sans-serif;
  position: fixed;
  z-index: 1000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 690px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 6px 6px 30px 6px #afafaf;
}
.popup-sale .b24-form-header {
  display: none;
}
.popup-sale__body {
  background-color: #fff;
  display: flex;
}
@media (max-width: 767px) {
  .popup-sale {
      width: 520px;
  }
  .popup-sale__body {
      flex-direction: column;
  }
}


@media (max-width: 575px) {
    .popup-sale {
        width: 300px;
        top: 70px;
        transform: translate(-50%, 0);
    }
}
@media (max-width: 575px) {
    .close-popup-sale {
        display: none;
    }
}
@media (max-width: 575px) {
    .b24-form-btn{
        min-height: 30px !important;
        height: 30px;
        padding: 0 !important;
    }
}


@media (max-width: 575px) {
}
.popup-sale__banner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: auto;
  flex: 1 1 auto;
  background: url("https://xn----7sblfajgdhlos4bfjfr7n3b.xn--p1ai/upload/add_img/img/popup-bg.webp") center / cover no-repeat;
  aspect-ratio: 4 / 3;
}
.popup-sale__banner-text {
  display: none;
  padding: 40px 20px;
  text-align: center;
}

.popup-sale__content {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  width: 230px;
  padding: 15px;
}
.popup-sale__content .popup-sale__banner-text {
  display: block;
  padding: 5px 5px;
  text-align: center;
}
.popup-sale__content .popup-sale__banner-text span {
  display: inline-block;
  padding: 0 4px;
  border-radius: 4px;
  color: #ff9f22;
  font-weight: 700;
  font-size: 22px;
  line-height: 100%;
  margin: 0;
  margin-bottom: 3px;
}
@media (max-width: 767px) {
  .popup-sale__banner-text span {
      display: inline-block;
      padding: 0 3px;
      background-color: #ff9f22;
      border-radius: 4px;
      color: #fff;
      font-weight: 700;
      font-size: 22px;
      line-height: 100%;
      margin: 30;
      margin-bottom: 1px;
  }
  .popup-sale__banner {
      aspect-ratio: 4 / 4;
}
  .popup-sale__banner-text {
      display: block;
      padding: 10px 40px;
  }
  .popup-sale__banner-text span {
      font-size: 18px;
  }
  .popup-sale__content .popup-sale__banner-text {
      display: none;
  }
}


.popup-sale__title {
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.2;
  text-align: center;
}
@media (max-width: 767px) {
  .popup-sale__title {
      font-weight: 900;
      font-size: 14px;
      margin-bottom: 8px;
      line-height: 1.2;
  }
  .popup-sale__content {
      width: auto;
  }
}
.popup-sale__form {
}
.form-popup-sale {
}
.form-popup-sale__item {
  margin-bottom: 8px;
}
.form-popup-sale__input {
  padding: 6px 12px;
  border: 1px solid #333;
  border-radius: 6px;
  background-color: #fff;
}
.form-popup-sale__text {
  font-size: 14px;
  margin-bottom: 10px;
}
.form-popup-sale__text a {
  color: inherit;
}
.form-popup-sale__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  border-radius: 8px;
  background-color: #ff9f22;
  color: #fff;
  font-size: 26px;
  width: 100%;
  border: none;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}
@media (max-width: 767px) {
  .form-popup-sale__btn {
      font-size: 22px;
      min-height: 40px;
  }
}
@media (any-hover: hover) {
  .form-popup-sale__btn:hover {
      background-color: #ff9100;
  }
}
.close-popup-sale {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 30px;
  border-radius: 8px;
  background-color: #666;
  color: #fff;
  font-size: 18px;
  width: 100%;
  cursor: pointer;
}

/* ============ popup-callback =================== */

.popup-callback {
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1000;
  width: 450px;
  background: #fff;
  border-radius: 20px;
  padding: 55px 30px 30px;
  -webkit-box-shadow: 0 5px 15px 5px rgba(158, 158, 158, 0.5);
  box-shadow: 0 5px 15px 5px rgba(158, 158, 158, 0.5);
}
@media (max-width: 767px) {
  .popup-callback {
      width: 300px;
  }
}
.popup-callback-close {
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 40px;
  transform: rotate(45deg);
  width: 24px;
  height: 24px;
  font-weight: 500;
  color: #999;
}
.popup-callback__body {
}
.popup-callback__title {
  margin-bottom: 20px;
  color: #252525;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  line-height: 1.3;
}
.popup-callback__text {
  font-size: 16px;
  text-align: center;
  line-height: 1.4;
  color: #111111;
}
.popup-callback__buttons {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.popup-callback__button {
  width: 49%;
  height: 40px;
  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;
  padding: 4px 15px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  border-radius: 12px;
  font-weight: 500;
  line-height: 1.2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.popup-callback__button--whatsapp {
  background: #25d366 url("/wawa.svg") left 30px center no-repeat;
  background-size: 18px;
  -webkit-box-shadow: 0 5px 15px 0 rgba(37, 211, 102, 0.3);
  box-shadow: 0 5px 15px 0 rgba(37, 211, 102, 0.3);
}
.popup-callback__button--telegramm {
  background: #28a8e9 url("/tg.svg") left 38px center no-repeat;
  -webkit-box-shadow: 0 5px 15px 0 rgba(40, 168, 233, 0.3);
  box-shadow: 0 5px 15px 0 rgba(40, 168, 233, 0.3);
}
@media (any-hover: hover) {
  .popup-callback__button:hover {
      color: #fff;
      text-decoration: none;
  }
  .popup-callback__button--whatsapp:hover {
      background: #33ec77 url("/wawa.svg") left 30px center no-repeat;
      background-size: 18px;
      -webkit-box-shadow: 0 0px 15px 0 rgba(37, 211, 102, 0.3);
      box-shadow: 0 0px 0px 0 rgba(37, 211, 102, 0.3);
  }
  .popup-callback__button--telegramm:hover {
      background: #4dc0fa url("/tg.svg") left 38px center no-repeat;
      -webkit-box-shadow: 0 0px 0px 0 rgba(40, 168, 233, 0.3);
      box-shadow: 0 0px 0px 0 rgba(40, 168, 233, 0.3);
  }
}
.popup-callback__content {
}
.popup-callback__form {
}
.form-popup-callback__item {
}
.form-popup-callback__input {
  box-sizing: border-box;
  border: none;
  outline: none;
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
  border-radius: 12px;
  background-color: #f1f1f1;
  color: #222222;
  width: 100%;
  height: 68px;
  padding: 5px 30px;
}
.form-popup-callback__input::placeholder {
  color: #444444;
}
.form-popup-callback__text {
}
.form-popup-callback__text--small {
  font-size: 12px;
}
.form-popup-callback__text--small a {
  color: #ff8562;
}
.form-popup-callback__btn {
  border: none;
  outline: none;
  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;
  padding: 5px 10px;
  line-height: 1.55;
  font-weight: 500;
  border-radius: 12px;
  cursor: pointer;
  min-width: 180px;
  height: 43px;
  color: #fff;
  font-size: 15px;
  background: #fff;
  -webkit-box-shadow: 0 5px 15px 0 rgba(255, 133, 98, 0.3);
  box-shadow: 0 5px 15px 0 rgba(255, 133, 98, 0.3);
  background: -webkit-gradient(linear, left top, right top, from(#fa7b79), to(#ff9e5f));
  background: linear-gradient(90deg, #fa7b79 0%, #ff9e5f 100%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;

  margin-left: auto;
  margin-right: auto;
}
@media (any-hover: hover) {
  .form-popup-callback__btn:hover {
      background: -webkit-gradient(linear, left top, right top, from(#ff9e5f), to(#fa7b79));
      background: linear-gradient(90deg, #ff9e5f 0%, #fa7b79 100%);
  }
}


.hidden {
  display: none;
}
.visible {
  display: block;
}

.b24-form-control-string .b24-form-control,
 .b24-form-control-list .b24-form-control,
  .b24-form-control-text .b24-form-control,
   .b24-form-control-select .field-item{
    height: 44px;
   }
   
