html, body {
  min-width: 320px;
}

body {
  display: flex;
  flex-direction: column;
  background-color: #f7f7f7;
}

main {
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 70px;
}

footer {
  flex-shrink: 0;
}

.styledmodal .modal-message, .styledmodal .modal-title, .checkbox label, .userwalletnumber, .address_btn, .address_text, .radiospoiler_head, .form1_header2, .form1_text, .form1_header, .form3_redirectnotify, .form3_msg, .form3_header, .pagefooter_menu li, .pagefooter_menu a, .formblock_link, .select, .labeltext, .infoblock_table td, .infoblock_descr, .infoblock_hdr {
  color: #000000;
  font-family: "Montserrat", sans-serif;
}

.formblock_input {
  width: 100%;
  height: 42px;
  background-color: transparent;
  border: 2px solid #ebebeb;
  font-size: 16px;
  font-weight: 400;
  padding-left: 13px;
  border-radius: 5px;
}
.formblock_input:active, .formblock_input:focus {
  border: 2px solid #1378e0;
  box-shadow: 0 0 7px rgba(19, 120, 224, 0.58);
}
.error.formblock_input {
  border: 2px solid #e92020;
  box-shadow: 0 0 7px rgba(233, 32, 32, 0.58);
}

.content {
  width: 312px;
  padding: 35px 10px 26px 8px;
  background-color: #ffffff;
  box-shadow: 0 5px 17px rgba(141, 141, 141, 0.28);
  border-radius: 10px;
  height: auto;
}
@media (min-width: 600px) {
  .content {
    width: 540px;
    padding: 46px 33px 55px 27px;
  }
}

.hat {
  display: flex;
  align-items: center;
  padding-bottom: 40px;
}

.hat img:not(:last-child) {
  margin-right: 13px;
}

.infoblock_hdr {
  font-size: 16px;
  font-weight: 700;
}
@media (min-width: 600px) {
  .infoblock_hdr {
    font-size: 18px;
  }
}

.infoblock_hdr sup {
  text-transform: uppercase;
}

.infoblock_descr {
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 7px;
}
@media (min-width: 600px) {
  .infoblock_descr {
    font-size: 14px;
  }
}

.infoblock_table td {
  font-size: 12px;
  font-weight: 400;
}
.infoblock_table td:first-child {
  width: 123px;
}
@media (min-width: 600px) {
  .infoblock_table td {
    font-size: 16px;
  }
  .infoblock_table td:first-child {
    width: 154px;
  }
}

.formblock {
  margin-top: 9px;
}
.formblock label {
  margin-bottom: 11px;
  width: 100%;
}

@media (min-width: 600px) {
  .f2page label {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.labeltext {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0;
  display: inline-flex;
  align-items: center;
}
.labeltext.error {
  color: #e92020;
}
.labeltext .helpico {
  margin-left: 5px;
}
.labeltext .helpico:hover {
  opacity: 0.9;
}

@media (min-width: 600px) {
  .f2page .labeltext {
    font-size: 16px;
    font-weight: 400;
  }
}

.formblock_input {
  margin-top: 6px;
}

@media (min-width: 600px) {
  .f2page .formblock_input {
    width: 326px;
  }
}

@media (min-width: 600px) {
  .f2page .f2page_selectblock {
    display: flex;
    justify-content: space-between;
  }
  .f2page .f2page_selectblock .labeltext {
    padding-top: 14px;
  }
}

@media (min-width: 600px) {
  .f2page .select {
    width: 326px;
  }
}

.select {
  position: relative;
  font-size: 16px;
}
.select .head {
  position: relative;
  width: 100%;
  height: 42px;
  padding-left: 20px;
  padding-right: 25px;
  display: flex;
  align-items: center;
  border: 2px solid #ebebeb;
  margin-top: 6px;
  user-select: none;
  border-radius: 5px;
}
.select .head:after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='5' viewBox='0 0 10 5'%3E%3Cg%3E%3Cg%3E%3Cpath fill='%232a2a2a' d='M4.975 4.812L-.003-.002h10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  position: absolute;
  top: 50%;
  margin-top: -2.5px;
  right: 12px;
  width: 10px;
  height: 5px;
}
.select .select_box {
  display: none;
  width: 100%;
  list-style-type: none;
  margin-bottom: 0;
  position: absolute;
  top: 48px;
  left: 0;
  right: 0;
  padding-left: 0;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.select .select_box li {
  height: 36px;
  display: flex;
  align-items: center;
  background-color: #f7f7f7;
  padding-left: 19px;
}
.select .select_box li:last-child {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.select .select_box li:hover {
  box-shadow: inset 0 0 0 500px rgba(0, 0, 0, 0.1);
}
.select.opened .select_box {
  display: block;
}
.select.opened .head {
  border: 2px solid #1378e0;
  box-shadow: 0 0 7px rgba(19, 120, 224, 0.58);
}
.select.error .head {
  border: 2px solid #e92020;
  box-shadow: 0 0 7px rgba(233, 32, 32, 0.58);
}

.formblock_btnbox {
  height: 89px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 21px;
}

@media (min-width: 600px) {
  .f2page .formblock_btnbox {
    height: 50px;
    justify-content: normal;
    align-items: center;
    width: 326px;
    margin-left: auto;
  }
}
@media (min-width: 600px) {
  .f2page .formblock_btnbox .break {
    display: none;
  }
}

.formblock_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 500;
  width: 100%;
  max-width: 143px;
  height: 40px;
  border-radius: 4px;
  background-color: #2a2a2a;
  border: none;
  color: #ffffff;
}
@media (min-width: 600px) {
  .formblock_btn {
    font-size: 20px;
  }
}
.formblock_btn:hover {
  opacity: 0.95;
  text-decoration: none;
  outline: 0;
  color: #ffffff;
}

@media (min-width: 600px) {
  .f2page .formblock_btn {
    margin-right: 32px;
  }
}

.break {
  flex-basis: 100%;
  height: 0;
}

.formblock_link {
  font-size: 14px;
  font-weight: 400;
  margin-top: auto;
}
.formblock_link:last-child, .formblock_link:last-child:hover {
  text-decoration: underline;
}
.formblock_link:hover {
  color: #000000;
  text-decoration: none;
}
.formblock_link:not(:last-child) {
  margin-right: 24px;
}

@media (min-width: 600px) {
  .f2page .formblock_link {
    margin-top: unset;
  }
}

.pagefooter {
  margin-top: 10px;
  margin-bottom: 10px;
}
@media (min-width: 600px) {
  .pagefooter {
    height: 30px;
  }
}

.pagefooter_menu ul {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  width: 254px;
  margin: auto;
  justify-content: space-around;
  padding-left: 0;
}
@media (min-width: 600px) {
  .pagefooter_menu ul {
    width: 511px;
  }
}
.pagefooter_menu li, .pagefooter_menu a {
  font-size: 12px;
  font-weight: 400;
}

.pagefooter_link a {
  text-decoration: underline;
}
.pagefooter_link a:hover {
  color: #000000;
}

.content.form3 {
  padding: 50px 17px 44px 17px;
}
@media (min-width: 600px) {
  .content.form3 {
    padding: 48px 21px 55px 20px;
  }
}

.form3_hat {
  display: flex;
  justify-content: center;
}
@media (min-width: 600px) {
  .form3_hat svg {
    width: 90px;
    height: 90px;
  }
}

.form3_header {
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  margin-top: 23px;
}
@media (min-width: 600px) {
  .form3_header {
    font-size: 28px;
  }
}

.form3_msg {
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}
@media (min-width: 600px) {
  .form3_msg {
    font-size: 18px;
  }
}

.separator {
  height: 2px;
  width: 67px;
  background-color: #000000;
  margin-top: 17px;
  margin-bottom: 16px;
}
@media (min-width: 600px) {
  .separator {
    margin-top: 24px;
    margin-bottom: 29px;
  }
}

.form3_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 500;
  width: 100%;
  max-width: 303px;
  height: 40px;
  border-radius: 4px;
  background-color: #2a2a2a;
  border: none;
  color: #ffffff;
  margin: 73px auto auto;
}
@media (min-width: 600px) {
  .form3_btn {
    font-size: 20px;
  }
}
.form3_btn:hover {
  opacity: 0.95;
  text-decoration: none;
  outline: 0;
  color: #ffffff;
}
@media (min-width: 600px) {
  .form3_btn {
    margin-top: 90px;
  }
}

.form3_redirectnotify {
  font-size: 14px;
  font-weight: 400;
  color: #e92020;
  text-align: center;
  margin-top: 34px;
  margin-bottom: 0;
}

.content.form1 {
  position: relative;
  padding: 54px 9px 28px 10px;
}
@media (min-width: 600px) {
  .content.form1 {
    padding: 32px 29px 31px 32px;
  }
}

.form1_block {
  width: 100%;
}

.form1_section {
  border-bottom: 2px solid #ebebeb;
  padding-bottom: 16px;
}
@media (min-width: 600px) {
  .form1_section {
    padding-bottom: 21px;
  }
}

.form1_logo {
  position: absolute;
  top: 41px;
  right: 11px;
  max-width: 87px;
}
@media (min-width: 600px) {
  .form1_logo {
    max-width: 94px;
    top: 21px;
  }
}

.form1_header {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0;
}
@media (min-width: 600px) {
  .form1_header {
    font-size: 18px;
  }
}

.form1_text {
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 2px;
}
@media (min-width: 600px) {
  .form1_text {
    font-size: 14px;
    margin-bottom: 7px;
  }
}

.f1-head {
  min-height: 60px;
  margin-bottom: -16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.f1-head svg {
  cursor: pointer;
}

.f1-content {
  display: none;
}

.f1-ico_opened {
  display: none;
}

.f1-spoiler.opened .f1-content {
  display: block;
}
.f1-spoiler.opened .f1-ico_closed {
  display: none;
}
.f1-spoiler.opened .f1-ico_opened {
  display: block;
}

.form1_line {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.form1_line:first-child {
  margin-top: 16px;
  margin-bottom: 2px;
}
@media (min-width: 600px) {
  .form1_line:first-child {
    margin-top: 18px;
  }
}
.form1_line:last-child {
  margin-bottom: -7px;
}
@media (min-width: 600px) {
  .form1_line:last-child {
    margin-bottom: -4px;
  }
}

.form1_variable, .form1_value {
  font-family: "Montserrat", sans-serif;
  color: #000000;
  font-size: 14px;
  font-weight: 700;
}
@media (min-width: 600px) {
  .form1_variable, .form1_value {
    font-size: 16px;
  }
}

.form1_value {
  text-transform: uppercase;
}
.form1_value span {
  font-size: 20px;
}
@media (min-width: 600px) {
  .form1_value span {
    font-size: 24px;
  }
}

.form1_header2 {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 25px;
  margin-top: 16px;
}

.radiospoiler_content {
  display: none;
  padding-top: 16px;
}

.radiospoiler_head {
  background-color: #e1f0ff;
  height: 60px;
  display: flex;
  align-items: center;
  padding-left: 10px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 10px;
}
@media (min-width: 600px) {
  .radiospoiler_head {
    font-size: 20px;
    padding-left: 19px;
    height: 80px;
  }
}
.radiospoiler_head span {
  width: 46px;
  display: inline-block;
}
@media (min-width: 600px) {
  .radiospoiler_head span {
    width: 74px;
  }
}
.radiospoiler_head svg {
  fill: #484848;
  width: 38px;
  height: 26px;
}
@media (min-width: 600px) {
  .radiospoiler_head svg {
    width: 54px;
    height: 37px;
  }
}
.radiospoiler_head:hover, .radiospoiler_head.active {
  background-color: #1378e0;
  cursor: pointer;
  color: #ffffff;
}
.radiospoiler_head:hover svg, .radiospoiler_head.active svg {
  fill: #fff;
}

.radiospoiler_input input {
  display: none;
}
.radiospoiler_input label {
  width: 16px;
  height: 16px;
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cg%3E%3Cg%3E%3Cpath fill='%23fff' d='M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  margin-right: 13px;
  margin-bottom: 0;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 600px) {
  .radiospoiler_input label {
    margin-right: 25px;
    width: 20px;
    height: 20px;
  }
}
.radiospoiler_input input:checked + label {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cg%3E%3Cg%3E%3Cg%3E%3Cpath fill='%23fff' d='M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0z'/%3E%3C/g%3E%3Cg%3E%3Cpath fill='%231378e0' d='M8 4a4 4 0 1 1 0 8 4 4 0 0 1 0-8z'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.radiospoiler.opened .radiospoiler_content {
  display: block;
}

.formblock_line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (min-width: 600px) {
  .formblock_line {
    flex-wrap: nowrap;
  }
}

.f1-formline .f2page_selectblock {
  width: 141px;
}
.f1-formline .select .select_box {
  top: 42px;
  z-index: 300;
}
.f1-formline .f1-input {
  width: 100%;
  margin-top: 20px;
  position: relative;
}
.f1-formline .f1-input .pic {
  width: 15px;
  height: 20px;
  position: absolute;
  right: 15px;
  bottom: 11px;
  margin-top: -10px;
}
@media (min-width: 600px) {
  .f1-formline .f1-input {
    width: 171px;
    margin-top: 0;
    margin-bottom: 0;
  }
}

.mobilepayments {
  border-bottom: 2px solid #ebebeb;
}
@media (min-width: 600px) {
  .mobilepayments {
    padding-bottom: 9px;
  }
}
.mobilepayments .f2page_selectblock {
  width: 157px;
}
.mobilepayments .f1-input {
  width: 100%;
}
@media (min-width: 600px) {
  .mobilepayments .f1-input {
    margin-left: 18px;
  }
}

.flagselect .head, .flagselect .select_line {
  position: relative;
  padding-left: 47px !important;
}
.flagselect .head img, .flagselect .select_line img {
  position: absolute;
  left: 9px;
  top: 50%;
  margin-top: -10px;
  width: 29px;
  height: 20px;
}

.cryptoselect .head, .cryptoselect .select_line {
  position: relative;
  padding-left: 47px !important;
}
.cryptoselect img {
  width: 28px;
  height: 28px;
  position: absolute;
  left: 9px;
  top: 50%;
  margin-top: -14px;
}
.cryptoselect.select .select_box {
  top: 42px;
}

.cryptosum {
  font-family: "Montserrat", sans-serif;
  color: #000000;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 3px;
}
.cryptosum span {
  font-size: 22px;
}
@media (min-width: 600px) {
  .cryptosum {
    margin-top: 18px;
    margin-bottom: 8px;
    font-size: 16px;
  }
  .cryptosum span {
    font-size: 24px;
  }
}

.cryptorate {
  font-family: "Montserrat", sans-serif;
  color: #000000;
  font-size: 15px;
  text-align: center;
  margin-bottom: 23px;
}
@media (min-width: 600px) {
  .cryptorate {
    font-size: 16px;
  }
}

.cryptobtn1 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 500;
  width: 100%;
  max-width: 100%;
  height: 40px;
  border-radius: 4px;
  background-color: #2a2a2a;
  border: none;
  color: #ffffff;
  background-color: #1378e0;
  font-size: 16px;
}
@media (min-width: 600px) {
  .cryptobtn1 {
    font-size: 20px;
  }
}
.cryptobtn1:hover {
  opacity: 0.95;
  text-decoration: none;
  outline: 0;
  color: #ffffff;
}
.cryptobtn1 svg {
  width: 29px;
  height: 21px;
  margin-right: 12px;
}
@media (min-width: 600px) {
  .cryptobtn1 svg {
    width: 40px;
    height: 28px;
    margin-right: 13px;
  }
}

.address {
  text-align: center;
  margin-top: 19px;
}

.address_text {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 3px;
}

.address_link {
  color: #1378e0;
  word-wrap: break-word;
}
.address_link:hover {
  color: #1378e0;
  text-decoration: none;
}

.address_btnbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 25px;
}

.address_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 141px;
  height: 42px;
  background-color: #f7f7f7;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 5px;
}
.address_btn:hover {
  text-decoration: none;
  color: #000000;
  box-shadow: inset 0 0 0 500px rgba(0, 0, 0, 0.1);
}
.address_btn svg {
  margin-right: 13px;
}
@media (min-width: 600px) {
  .address_btn {
    width: 234px;
    height: 50px;
    font-size: 16px;
  }
}

.adress_qr {
  display: none;
}

.address_linkbtn {
  display: none;
}

.switched .address_link {
  display: none;
}
.switched .adress_qr {
  display: block;
}
.switched .address_qrbtn {
  display: none;
}
.switched .address_linkbtn {
  display: flex;
}

.userwalletlabel {
  margin-top: 22px;
  margin-bottom: 7px;
}

.userwalletnumber {
  width: 100%;
  min-height: 42px;
  border: 2px solid #ebebeb;
  box-sizing: border-box;
  padding: 9px 45px 9px 9px;
  position: relative;
  font-size: 16px;
  font-weight: 400;
  word-wrap: break-word;
  line-height: 1.4;
}
.userwalletnumber a {
  position: absolute;
  top: 50%;
  margin-top: -11px;
  right: 13px;
}
.userwalletnumber a svg {
  width: 19px;
  height: 22px;
}

.bitcoinbtn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 500;
  width: 100%;
  max-width: 100%;
  height: 40px;
  border-radius: 4px;
  background-color: #2a2a2a;
  border: none;
  color: #ffffff;
  margin: 20px auto auto;
}
@media (min-width: 600px) {
  .bitcoinbtn {
    font-size: 20px;
  }
}
.bitcoinbtn:hover {
  opacity: 0.95;
  text-decoration: none;
  outline: 0;
  color: #ffffff;
}

.checkbox input[type=checkbox] {
  display: none;
}

.checkbox label {
  position: relative;
  padding-left: 37px;
  font-size: 12px;
  font-weight: 400;
}
.checkbox label a {
  color: #000000;
  text-decoration: underline;
}
.checkbox label a:hover {
  color: #000000;
  outline: 0;
}

.checkbox label:before {
  content: "";
  width: 20px;
  height: 20px;
  left: 0;
  top: 0;
  position: absolute;
  border: 2px solid #ebebeb;
  border-radius: 4px;
  box-sizing: border-box;
}

.checkbox.error label:before {
  border: 2px solid #e92020;
  box-shadow: 0 0 7px rgba(233, 32, 32, 0.58);
}

.checkbox input:checked + label:before {
  background-color: #1378e0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='10' viewBox='0 0 14 10'%3E%3Cg%3E%3Cg%3E%3Cpath fill='%23fff' d='M13.541 2.474L6.354 9.596a1.474 1.474 0 0 1-2.07 0L.427 5.776a1.441 1.441 0 0 1 0-2.051 1.474 1.474 0 0 1 2.07 0l2.82 2.794L11.472.423a1.474 1.474 0 0 1 2.07 0 1.441 1.441 0 0 1 0 2.051z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  border: 2px solid #1378e0;
}

.f1-btnbox {
  height: unset;
}

.f1-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 500;
  width: 100%;
  max-width: 100%;
  height: 40px;
  border-radius: 4px;
  background-color: #2a2a2a;
  border: none;
  color: #ffffff;
}
@media (min-width: 600px) {
  .f1-submit {
    font-size: 20px;
  }
}
.f1-submit:hover {
  opacity: 0.95;
  text-decoration: none;
  outline: 0;
  color: #ffffff;
}
.f1-submit.disabled {
  background-color: #dcdcdc;
}

.errormsg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #aa1919;
  z-index: 10000;
}
.errormsg svg {
  margin-right: 10px;
}
.errormsg p {
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
}

.icofooter {
  display: flex;
  width: 277px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 21px;
}
.icofooter img {
  margin-bottom: 26px;
}
@media (min-width: 600px) {
  .icofooter {
    width: 536px;
  }
}

.styledmodal {
  min-width: 320px;
}
.styledmodal .modal-header .close {
  display: none;
}
@media (min-width: 600px) {
  .styledmodal .modal-header .close {
    display: block;
    padding-top: 14px;
    padding-right: 20px;
  }
}
.styledmodal .modal-header .close:hover, .styledmodal .modal-header .close:active, .styledmodal .modal-header .close:focus {
  outline: 0;
}
.styledmodal .modal-header {
  padding-bottom: 0;
  border-bottom: 0;
}
.styledmodal .modal-body {
  padding: 0;
}
.styledmodal .modal-title {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  padding: 0;
  margin: 0 28.5px;
}
@media (min-width: 600px) {
  .styledmodal .modal-title {
    margin: 0 43.5px;
  }
}
.styledmodal .modal-message {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  margin: 15px 28.5px 0;
}
@media (min-width: 600px) {
  .styledmodal .modal-message {
    margin: 15px 43.5px 0;
  }
}
.styledmodal .modal-footer {
  border-top: 0;
  justify-content: center;
  padding-top: 27px;
  padding-bottom: 30px;
}
@media (min-width: 600px) {
  .styledmodal .modal-footer {
    padding-top: 40px;
    padding-bottom: 30px;
  }
}

.modal_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 500;
  width: 100%;
  max-width: 123px;
  height: 40px;
  border-radius: 4px;
  background-color: #2a2a2a;
  border: none;
  color: #ffffff;
}
@media (min-width: 600px) {
  .modal_btn {
    font-size: 20px;
  }
}
.modal_btn:hover {
  opacity: 0.95;
  text-decoration: none;
  outline: 0;
  color: #ffffff;
}
.modal_btn.btn-important {
  background-color: #aa1919;
}

.var2-formline .var2-input {
  margin-bottom: 0;
}
@media (min-width: 600px) {
  .var2-formline .var2-input {
    width: 230px;
  }
}
.var2-formline .f2page_selectblock {
  width: 100%;
}
@media (min-width: 600px) {
  .var2-formline .f2page_selectblock {
    width: 230px;
  }
}

.closehd {
  display: none;
}
@media (min-width: 600px) {
  .closehd {
    display: block;
    margin-left: 109px;
  }
}

@media (min-width: 1079px) {
  .content.form1.gorizontal {
    width: 1079px;
    display: flex;
    justify-content: space-between;
  }
  .content.form1.gorizontal .f1-ico_closed, .content.form1.gorizontal .f1-ico_opened {
    display: none;
  }
  .content.form1.gorizontal .f1-content {
    display: block;
    padding-right: 15px;
  }
  .content.form1.gorizontal .form1_block {
    width: 50%;
    position: relative;
  }
  .content.form1.gorizontal .form1_block:first-child:before {
    content: "";
    position: absolute;
    right: 0;
    top: -32px;
    bottom: -31px;
    width: 2px;
    z-index: 200;
    background-color: #ebebeb;
  }
  .content.form1.gorizontal .form1_block:last-child {
    padding-left: 25px;
  }

  .gorizontal .form1_section {
    border-bottom: none;
  }

  .gorizontal-f1section {
    padding-right: 15px;
    padding-top: 3px;
    position: relative;
  }
  .gorizontal-f1section .form1_line {
    position: relative;
    z-index: 100;
  }
  .gorizontal-f1section:before {
    content: "";
    position: absolute;
    z-index: 50;
    top: 0;
    bottom: 0;
    right: 0;
    left: -32px;
    background-color: #f7f7f7;
  }

  .gorizontal-f1section.var2:before {
    background-color: #e1f0ff;
  }
}
.disabled_input {
    color: gray;
}

/*# sourceMappingURL=style.css.map */
