#hotbuttons {
  display: none;
}
.row.rules-text__wrap .rules__left,
.row.rules-text__wrap .rules__right {
  margin: 0;
}

.success__hidden {
  display: none;
}
.question-form__title {
  font-size: 1.6rem;
  line-height: 1.375;
  margin-bottom: 25px;
}
.float-form-list {
  display: flex;
  width: 100%;
}
.float-form-section__top {
  width: 100%;
}

.float-form-left {
  width: 50%;
  /* padding-right: 32px; */
  position: relative;
}

.float-form-right {
  width: 50%;
  padding-left: 32px;
}

.form__service__label {
  font-weight: 500;
  margin: 0;
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 32px;
}

.selectize-input.items.full.has-options.has-items:hover {
  cursor: pointer;
}

.selectize-input.items.full.has-options.has-items:focus {
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, .16);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .16);
}



.form-accept {
  /* display: -webkit-box;
  display: -ms-flexbox; */
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* width: 100%; */
  margin-bottom: 20px;
  /* padding-right: 20px; */
}

.form-accept input {
  display: none;
}

.form-accept__box {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 24px;
  height: 24px;
  border: 1px solid #E4DCD3;
  margin-right: 16px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: inline-block;
}

.form-accept__description {
  font-size: 1.2rem;
  line-height: 1.14;
  display: inline-block;
  width: 82%;
}

.form-accept__box svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.form-accept input:checked+.form-accept__box svg {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.form-accept__description a {
  color: #00AAD2;
}
.form-accept .form__error {
  width: 100%;
  display: block;
}
.invalid {
  border-color: #C70E0E;
}

span.form__error {
  color: #C70E0E;
  display: block;
}

.s-success {
  color: #000;
}

.s-success__center {
  position: relative;
  width: 40%;
  min-width: 592px;
  padding: 40px 72px;
  padding-bottom: 64px;
  background-color: #fff;
}

.s-success__icon {
  position: relative;
  width: 10.4rem;
  height: 10.4rem;
  border-radius: 50%;
  background-color: #e4dcd3;
  margin: 0 auto;
  margin-bottom: 24px;
}

.s-success__title {
  text-align: center;
}

.s-success__icon svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;

}
.float-form-section {
  position: fixed;
  background: #fff;
  z-index: 600;
  max-width: 288px;
  right: 69px;
  top: 17vh;
  background-color: #fff;
  max-width: 288px;
  padding: 49px 16px 36px;

}
.form__wrap {
  padding: 56px 72px 64px;
  background-color: #fff;
}
.float-form-section__title {
  width: 70%;
  font-size: 4.2rem;
  line-height: 1.14;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 72px;
}
.float-form-section__item {
  margin-bottom: 24px;
}
.selectize-input {
  width: 100%;
}
.rules,
.pop-up__overlay {
  display: none;
}

.scroll-fix {
  overflow-y:hidden;

}
.rules.active {
  display: block;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 80%;
  background: #fff;
  color: #000;
  transition: 1s;
  transform: translate(-50%, -50%);
  z-index: 503;
  max-width: 1216px;
  max-height: 90vh;
  overflow: auto;
}

.rules__title {
  margin-bottom: 32px;
}
.pop-up__overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%; 
  z-index: 502;
  background: rgba(0, 0, 0, .8);
}
.pop-up__overlay.active,
.rules.active {
  display: block;
}
.rules-text__wrap {
  display: flex;
}
.rules-main__wrapper {
  position: relative;
  padding: 64px 72px;
}
.pop-up-form__closer,
.pop-up__closer {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 22px;
}
.rules p {
  margin-bottom: 32px;
}
.pop-up-form__closer svg,
.pop-up__closer svg {
  fill: #666;
  transition: 0.3s;
}

.pop-up-form__closer:hover svg,
.pop-up__closer:hover svg {
  fill: #b7b7b7;
  transition: 0.3s;
}
.model__iput {
  position: relative;
}
.model-input__block {
  position: relative;  
}
.model-input__block:after {
  content: "";
  width: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #24375b;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  cursor: pointer;
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -3px;
  transition: transform .3s;
} 
.model-input__block.active::after {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transition: transform .3s;
}


.options__list {
  display: none;
}
.b-news-view__content {
  position: relative;
}
.options__list.active {
  display: block;
  position: absolute;
  z-index: 103;
  background: #fff;
  box-shadow: 0 8px 15px rgba(0,0,0,.16);
  width: 100%;
  max-height: 100%;
  overflow-y: auto;
}
.options__list.active::-webkit-scrollbar {
  width: 8px;
}
.model__link {
  display: inline-block;
  position: relative;
  font-weight: 500;
  margin: 0;
  font-size: 1.8rem;
  color: #002c5f;
  padding-right: 17px;
  -webkit-transition: .3s;
  transition: .3s;
}
.model__link svg {
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  width: 7px;
  height: 12px;
  -webkit-transition: .3s;
  transition: .3s;
}
.model__link:hover svg {
  transform: translate(2px,-50%);
  -webkit-transition: .3s;
  transition: .3s;
}
.options__list.active::-webkit-scrollbar-thumb {
  background-color: #002c5f;
  /* outline: 1px solid #002c5f; */
}
.option {
  padding: 10px 20px;
  cursor: pointer;
}
.option:hover {
  background-color: #f8f8f8;
}
.float-form-section__footer {
  /* margin-top: 31px; */
  /* border-top: 1px solid #e4dcd3; */
  /* padding-top: 49px; */

}
.td-form__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 36px;
}
.td-form__item:not(:last-of-type) {
  margin-right: 36px;
}

.appeal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  margin: 0;
}
.appeal input {
  display: none;
}
.appeal__circle {
  position: relative;
  width: 24px;
  height: 24px;
  border: 1px solid #e4dcd3;
  border-radius: 50%;
  cursor: pointer;
  margin-right: 16px;
}
.appeal__circle:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #103a71;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: .3s;
  transition: .3s;
}
.appeal input:checked+.appeal__circle:after {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.appeal__description {
  font-size: 1.6rem;
  line-height: 1.5;
}
.sidebar {
    position: fixed;
    right: 40px;
    bottom: 40px;
    z-index: 99;
    display: none;
}
.sidebar.visible {
  display: block;
}

.float-form-section {
  display: none;
}
.float-form-section.active {
  display: block;
}
.sidebar__row {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: end;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-flow: row nowrap;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  margin-bottom: 10px;
  width: 48px;
  height: 48px;
}
.sidebar__icon {
    width: 48px;
    height: 48px;
    background-color: #00aad2;
    padding: 7px;
    right: 0;
    z-index: 4;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
}
.sidebar__icon .sidebar__svg {
    width: 26px;
    height: 28px;
    fill: #ffffff;
}
.sidebar__text {
  color: #ffffff;
  background-color: rgba(0,170,210,.6);
  font-size: 14px;
  display: block;
  transition: all 0.3s ease-out;
  position: absolute;
  right: 0px;
  z-index: 3;
  text-decoration: none;
  border-radius: 48px;
  width: 48px;
  height: 48px;
  overflow: hidden;
  white-space: nowrap;
  padding: 13px 31px 13px 15px;
  font-size: 16px;
}

.sidebar__text.js-active {
  transition: all 0.3s ease-out;
  white-space: nowrap;
  padding: 13px 31px 13px 15px;
  width: 205px;
  height: 48px;
}
.df-button {
  width: 100%;
}
.z-ind__low {
  z-index: 1;
}

@media (max-width: 927px) {
  .df-button.float-form-section__button {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {

  .s-success__center {
    min-width: 0;
    width: auto;
    margin: 16px;
    padding: 48px 16px 40px;
  }

  .s-success__icon {
    margin-bottom: 16px;
  }

}

@media (max-width: 768px) {

  .float-form-list {
    flex-direction: column;
  }

  .float-form-left {
    width: 100%;
    padding-right: 0;
  }

  .float-form-right {
    width: 100%;
    padding-left: 0;
  }

  .float-form-section__top {
    margin-top: 0;
  }

  .form__service__label {
    margin-top: 32px;
  }
  .rules-main__wrapper {
    padding: 60px 25px;
  }
  .float-form-section {
    top: 12vh;
    background-color: #fff;
    width: 73%;
    max-width: 600px;
    left: 50%;
    transform: translate(-50%);
  }
}

@media (max-width: 638px) {
  .form-accept__box {
    margin-bottom: 15px;
  }
}

@media (max-width: 550px) {
  .form__wrap {
    padding: 35px 25px 64px;
    background-color: #fff;
  }
  .float-form-section__title {
    width: 100%;
  }
  .rules.active {
    width: 95%;
  }
  .float-form-section {
    width: 90%;
  }
}
