* {
  font-family: "Rubik", sans-serif;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  overflow-x: hidden;
}

a {
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
a:hover {
  color: #F57F17;
}

form {
  width: 100%;
  display: block;
}

input, textarea {
  outline: none;
}

img {
  max-width: 100%;
}

.status {
  margin: 10px 0px;
}
.status--red {
  color: #C00808;
}

.header {
  width: 100%;
  padding: 26px 0px;
}
.header__wrapper {
  width: 100%;
  padding: 0px 20px;
  max-width: 1480px;
  margin: 0px auto;
}
.header__content {
  display: flex;
  margin-bottom: 66px;
}
.header__content:last-child {
  margin-bottom: 0;
}
.header__block {
  width: 50%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__info {
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  color: #4E4E79;
}
.header__info span {
  display: block;
  margin-top: 8px;
  color: #ffffff;
}
.header__title {
  font-size: 30px;
  line-height: 36px;
  letter-spacing: 0.6px;
  font-weight: 600;
  color: #ffffff;
}
.header__time {
  margin-top: 16px;
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  color: #4E4E79;
}
.header__group {
  display: flex;
  flex-direction: column;
}
.header__price {
  font-size: 48px;
  line-height: 57px;
  letter-spacing: 0.96px;
  color: #ffffff;
  font-weight: 600;
}
.header__button {
  max-width: 335px;
}

.footer {
  width: 100%;
  padding-top: 50px;
}
.footer__wrapper {
  width: 100%;
  padding: 0px 20px;
  max-width: 1480px;
  margin: 0px auto;
}
.footer__content {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.footer__info {
  font-size: 18px;
  line-height: 22px;
  text-align: right;
  display: flex;
  flex-direction: column;
  color: #1E1E33;
}
.footer__info span {
  display: block;
  color: #4E4E79;
  margin-bottom: 8px;
}
.footer__info div {
  margin-bottom: 8px;
}
.footer__info a {
  font-size: 18px;
  line-height: 22px;
  color: #1E1E33;
  font-weight: 600;
}
.footer__info a:hover {
  color: #F57F17;
}
.footer__bottom {
  margin-top: 65px;
  border-top: 1px solid #1E1E33;
  padding: 20px 0px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.main-block {
  width: 100%;
  height: 100vh;
  background: #11111D url("../images/bg-main.png") no-repeat;
  background-position: bottom center;
}
.main-block__wrapper {
  width: 100%;
  padding: 0px 20px;
  max-width: 1480px;
  margin: 0px auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-block {
  width: 100%;
  padding: 80px 0px 160px;
}
.page-block__wrapper {
  width: 100%;
  padding: 0px 20px;
  max-width: 1480px;
  margin: 0px auto;
}

.logo {
  max-width: 205px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 63px;
  background: #6667AB;
  border: 1px solid #6667AB;
  color: #ffffff;
  font-size: 18px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.btn:hover {
  background: #ffffff;
  color: #1E1E33;
}
.btn--white {
  background: #ffffff;
  color: #4E4E79;
}
.btn--white:hover {
  background: #6667AB;
  color: #ffffff;
}

.mini-btn {
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #6667AB;
  border: 1px solid #6667AB;
  transition: all 0.3s ease-in-out;
}
.mini-btn:hover {
  background: #F57F17;
  border: 1px solid #F57F17;
}

.mini-btn-2 {
  cursor: pointer;
  max-width: 63px;
  min-width: 63px;
  width: 63px;
  height: 63px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #6667AB;
  transition: all 0.3s ease-in-out;
}
.mini-btn-2 svg {
  transition: all 0.3s ease-in-out;
  fill: #6667AB;
}
.mini-btn-2:hover {
  background: #F57F17;
  border: 1px solid #F57F17;
}
.mini-btn-2:hover svg {
  fill: #ffffff;
}
.mini-btn-2--mini {
  width: 50px;
  height: 50px;
}
.mini-btn-2--mini input {
  width: 0px;
  opacity: 0;
  border: 0px;
  background: transparent;
  transition: all 0.3s ease-in-out;
}
.mini-btn-2--mini svg {
  min-width: 46px;
  max-width: 46px;
}
.mini-btn-2--mini.active {
  cursor: default;
  width: 245px;
  background: #D9D9E3;
  border: 1px solid #D9D9E3;
  padding: 0px 16px 0px 0px;
}
.mini-btn-2--mini.active svg {
  margin-right: 10px;
}
.mini-btn-2--mini.active input {
  width: 100%;
  opacity: 1;
}
.mini-btn-2--mini.active input::placeholder {
  font-size: 14px;
  line-height: 16px;
  color: #4E4E79;
}
.mini-btn-2--mini.active:hover svg {
  fill: #6667AB;
}
.mini-btn-2--mini.active svg {
  display: block;
  cursor: pointer;
}
.mini-btn-2--mini.active svg:hover {
  fill: #F57F17;
}

.main-form {
  max-width: 580px;
  width: 100%;
  background: #ffffff;
  border-radius: 10px;
  padding: 60px;
}
.main-form__title {
  text-align: center;
  font-size: 22px;
  line-height: 26px;
  color: #1E1E33;
  font-weight: 600;
  margin-bottom: 8px;
}
.main-form__note {
  text-align: center;
  font-size: 18px;
  line-height: 22px;
  color: #4E4E79;
}
.main-form__content {
  margin-top: 26px;
}
.main-form__group {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-form__link {
  font-size: 14px;
  line-height: 16px;
  color: #1E1E33;
}
.main-form__status {
  font-size: 14px;
  line-height: 16px;
  color: #3AC73A;
}
.main-form__status--red {
  color: #C00808;
}

.search-table-form {
  display: flex;
  cursor: default;
  width: 300px;
  background: #D9D9E3;
  border: 1px solid #D9D9E3;
  padding: 0px 16px 0px 0px;
  border-radius: 10px;
}
.search-table-form__button {
  cursor: pointer;
  width: 46px;
  height: 46px;
  background: transparent;
  border: 0px;
  margin-right: 12px;
  transition: all 0.3s ease-in-out;
}
.search-table-form__button svg {
  fill: #4E4E79;
  transition: all 0.3s ease-in-out;
}
.search-table-form__button:hover svg {
  fill: #F57F17;
}
.search-table-form input {
  width: 100%;
  opacity: 1;
  background: transparent;
  border: 0px;
}
.search-table-form input::placeholder {
  font-size: 14px;
  line-height: 16px;
  color: #4E4E79;
}

.field {
  position: relative;
}
.field__label {
  color: #4E4E79;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 8px;
}
.field__label span {
  color: #C00808;
}
.field__icon {
  position: absolute;
  bottom: 13px;
  right: 20px;
}
.field__icon svg {
  fill: #6667AB;
}
.field textarea,
.field input {
  width: 100%;
  height: 54px;
  border: 1px solid rgba(217, 217, 227, 0.4);
  border-radius: 10px;
  background: rgba(217, 217, 227, 0.4);
  color: #11111D;
  font-size: 18px;
  line-height: 22px;
  padding: 0px 20px;
  transition: all 0.3s ease-in-out;
}
.field textarea::placeholder,
.field input::placeholder {
  transition: all 0.3s ease-in-out;
  font-size: 18px;
  line-height: 22px;
  color: #6667AB;
}
.field textarea:hover,
.field input:hover {
  border: 1px solid #6667AB;
}
.field textarea:hover::placeholder,
.field input:hover::placeholder {
  color: #6667AB;
}
.field textarea:focus,
.field input:focus {
  border: 1px solid #6667AB;
}
.field textarea.error,
.field input.error {
  border: 1px solid rgba(245, 5, 5, 0.4);
  background: rgba(245, 5, 5, 0.15);
  color: #C00808;
}
.field textarea.error::placeholder,
.field input.error::placeholder {
  color: #C00808;
}
.field textarea.error:hover::placeholder,
.field input.error:hover::placeholder {
  color: #C00808;
}
.field textarea {
  height: 115px;
  resize: none;
  padding: 20px;
}
.field--big textarea,
.field--big input {
  height: 63px;
  background: #ffffff;
  border: 1px solid #6667AB;
  color: #1E1E33;
}
.field--big textarea::placeholder,
.field--big input::placeholder {
  color: #4E4E79;
}
.field--big .field__icon {
  bottom: 16px;
}
.field--big .custom-select-container {
  height: 63px;
}
.field--big .custom-select-options {
  top: 60px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: -20px -10px 0px;
}

.col-center {
  display: flex;
  align-items: center;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 20px 10px 0px;
}

.col-2 {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
  padding: 20px 10px 0px;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 20px 10px 0px;
}

.col-5 {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
  padding: 20px 10px 0px;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 20px 10px 0px;
}

.col-7 {
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
  padding: 20px 10px 0px;
}

.col-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
  padding: 20px 10px 0px;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 20px 10px 0px;
}

.col-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding: 20px 10px 0px;
}

@media (max-width: 1024px) {
  .col-md-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
    padding: 20px 10px 0px;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 20px 10px 0px;
  }
  .col-md-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
    padding: 20px 10px 0px;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 20px 10px 0px;
  }
  .row-md-reverse {
    flex-direction: column-reverse;
  }
  .col-md-hide {
    display: none;
  }
}
@media (max-width: 767px) {
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 20px 10px 0px;
  }
  .col-sm-hide {
    display: none;
  }
}
.checkbox {
  display: inline-flex;
  align-items: center;
}
.checkbox label {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
.checkbox span {
  display: block;
  min-width: 20px;
  max-width: 20px;
  height: 20px;
  margin-right: 8px;
  border: 1px solid #6667AB;
  box-sizing: border-box;
}
.checkbox input {
  display: none;
}
.checkbox input:checked ~ span {
  position: relative;
}
.checkbox input:checked ~ span:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: -2px;
  left: 0px;
  background: url("../images/check.svg") no-repeat;
  background-position: center;
  background-size: 12px;
}
.checkbox__text {
  width: 100%;
  font-size: 14px;
  line-height: 16px;
  transition: all 0.3s ease-in-out;
  color: #4E4E79;
}
.checkbox__text button,
.checkbox__text a {
  cursor: pointer;
  border: 0px;
  font-size: 14px;
  line-height: 16px;
  background: transparent;
  color: #4E4E79;
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
}
.checkbox__text button:hover,
.checkbox__text a:hover {
  color: #F57F17;
}
.checkbox__text button:active,
.checkbox__text a:active {
  color: #F57F17;
}

.development {
  display: flex;
  align-items: center;
}
.development__text {
  max-width: 205px;
  width: 100%;
  margin-right: 30px;
  color: #1E1E33;
  font-weight: 600;
  font-size: 12px;
  font-style: italic;
  text-align: right;
}
.development__logo img {
  max-width: 100%;
}

.menu {
  display: flex;
}
.menu__list {
  margin-right: 45px;
  list-style: none;
}
.menu__list:last-child {
  margin-right: 0;
}
.menu__list.active a {
  font-weight: 600;
}
.menu__list.active a:hover {
  color: #D9D9E3;
}
.menu__list a {
  font-size: 22px;
  line-height: 26px;
  color: #D9D9E3;
}
.menu__list a:hover {
  color: #F57F17;
}

.table {
  width: 100%;
  margin-top: 40px;
  border-collapse: separate;
  border: none;
  border-spacing: 0;
  overflow: hidden;
  border-bottom: 1px solid #6667AB;
  border-radius: 0 0 10px 10px;
}
.table tr th:first-child {
  border-left: 1px solid #6667AB;
}
.table tr th:last-child {
  border-right: 1px solid #6667AB;
}
.table tr td:first-child {
  border-left: 1px solid #6667AB;
}
.table tr td:last-child {
  border-right: 1px solid #6667AB;
}
.table thead tr th {
  padding: 16px;
  background: #6667AB;
  color: #ffffff;
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  text-align: left;
  border: none;
}
.table thead tr th:first-child {
  border-radius: 10px 0 0 0;
}
.table thead tr th:last-child {
  border-radius: 0 10px 0 0;
}
.table thead tr th.table__center {
  text-align: center;
}
.table tbody tr {
  margin-top: -1px;
  transition: all 0.3s ease-in-out;
}
.table tbody tr:hover {
  background: #D9D9E3;
}
.table tbody tr:hover .management-block,
.table tbody tr:hover .table__button {
  opacity: 1;
}
.table tbody tr.red {
  background: rgba(192, 8, 8, 0.2);
}
.table tbody tr.red .management-block {
  opacity: 1;
}
.table tbody tr.hide {
  display: none;
}
.table tbody tr td {
  position: relative;
  font-size: 18px;
  line-height: 22px;
  color: #11111D;
  padding: 16px;
  border-top: 1px solid #6667AB;
  vertical-align: middle;
}
.table tbody tr td:first-child {
  border-left: 1px solid #6667AB;
}
.table tbody tr td:last-child {
  border-right: 1px solid #6667AB;
}
.table tbody tr td.table__center {
  text-align: center;
}
.table__button {
  position: absolute;
  cursor: pointer;
  height: 25px;
  top: 0;
  bottom: 0;
  right: 16px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.table__button:hover svg {
  fill: #F57F17;
}
.table__button--fix {
  right: inherit;
  opacity: 1;
  position: relative;
}
.table__button svg {
  transition: all 0.3s ease-in-out;
  fill: #6667AB;
}

.table-info {
  margin-top: 20px;
}

.table-all-row {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}
.table-all-row__link {
  cursor: pointer;
  font-size: 18px;
  line-height: 22px;
  color: #1E1E33;
  transition: all 0.3s ease-in-out;
}
.table-all-row__link:hover {
  color: #F57F17;
}

.section {
  width: 100%;
  margin-top: 70px;
}
.section:first-child {
  margin-top: 0;
}
.section__group {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section__group .section__title {
  margin-bottom: 0;
}
.section__button {
  margin-right: 20px;
}
.section__title {
  font-size: 30px;
  line-height: 36px;
  letter-spacing: 0.6px;
  color: #1E1E33;
  font-weight: 600;
  margin-bottom: 40px;
}
.section__content {
  width: 100%;
}

.management-block {
  opacity: 0;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.management-block__element {
  cursor: pointer;
  width: 20px;
  height: 20px;
  margin-right: 16px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.management-block__element:hover svg {
  fill: #F57F17;
}
.management-block__element:last-child {
  margin-right: 0;
}
.management-block__element svg {
  transition: all 0.3s ease-in-out;
  fill: #6667AB;
}

.map-block {
  height: 515px;
  display: flex;
  overflow: hidden;
  border-radius: 10px;
}
.map-block__elements {
  width: 356px;
  height: 100%;
  padding: 16px;
  background: #D9D9E3;
  overflow-y: auto;
}
.map-block__container {
  width: calc(100% - 356px);
  height: 100%;
}
.map-block__map {
  width: 100%;
  height: 100%;
}

.map-element {
  cursor: pointer;
  padding: 16px;
  margin-bottom: 8px;
  background: #ffffff;
  border-radius: 5px;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}
.map-element:hover {
  border: 1px solid #6667AB;
}
.map-element:active, .map-element.active {
  border: 1px solid #F57F17;
}
.map-element:last-child {
  margin-bottom: 0;
}
.map-element__title {
  font-size: 18px;
  line-height: 22px;
  color: #1E1E33;
}
.map-element__desc {
  margin-top: 4px;
  font-size: 14px;
  line-height: 16px;
  color: #1E1E33;
}

.modal-form {
  position: relative;
  border-radius: 10px;
  max-width: 530px;
  width: 100%;
  padding: 60px;
}
.modal-form--big {
  max-width: 825px;
}
.modal-form__title {
  display: flex;
  align-items: center;
  height: 52px;
  width: calc(100% - 60px);
  font-size: 22px;
  line-height: 26px;
  font-weight: 600;
  color: #1E1E33;
}
.modal-form__content {
  margin-top: 25px;
}
.modal-form__conditions {
  font-size: 14px;
  line-height: 16px;
  color: #6667AB;
}
.modal-form__conditions a {
  font-size: 14px;
  line-height: 16px;
  color: #1E1E33;
}
.modal-form__conditions a:hover {
  color: #F57F17;
}
.modal-form .f-button.is-close-btn {
  --f-button-width: 50px;
  --f-button-height: 50px;
  --f-button-border-radius: 10px;
  --f-button-bg: #6667AB;
  opacity: 1;
  top: 60px;
  right: 60px;
  --f-button-hover-bg: #F57F17;
  --f-button-svg-width: 34px;
  --f-button-svg-height: 34px;
}

.fancybox__container {
  --fancybox-bg: rgba(17, 17, 29, 0.20);
  --fancybox-color: #ffffff;
}
.fancybox * {
  outline: none;
}

.custom-select-container,
.custom-select-value,
.custom-select-option {
  box-sizing: border-box;
}

.custom-select-container {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 54px;
  display: flex;
  align-items: center;
  border: 1px solid #6667AB;
  padding: 0px 20px;
  border-radius: 10px;
}
.custom-select-container:hover {
  border: 1px solid #F57F17;
}
.custom-select-container:focus .custom-select-value {
  border-width: 2px;
  outline: none;
}
.custom-select-container.open {
  border-radius: 10px 10px 0 0;
}
.custom-select-container.open:hover {
  border: 1px solid #6667AB;
}
.custom-select-container.open .custom-select-value:after {
  transform: rotate(180deg);
}

.custom-select-value {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  font-size: 18px;
  line-height: 22px;
  color: #4E4E79;
}
.custom-select-value:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  right: 16px;
  bottom: 0;
  margin: auto;
  background: url("../images/arrow.svg") no-repeat;
  background-position: center;
  transition: all 0.3s ease-in-out;
}

.custom-select-options {
  display: none;
  overflow: hidden;
  width: 100%;
  position: absolute;
  top: 52px;
  left: -1px;
  border: 1px solid #6667AB;
  border-radius: 0px 0px 10px 10px;
  background: #ffffff;
  box-sizing: initial;
  z-index: 3;
}
.custom-select-options.show {
  display: block;
}

.custom-select-option {
  padding: 16px 20px;
  cursor: pointer;
  list-style: none;
  border-bottom: 1px solid #6667AB;
  transition: all 0.3s ease-in-out;
}
.custom-select-option:last-child {
  border-bottom: 0px;
}
.custom-select-option:hover {
  background: #D9D9E3;
}
.custom-select-option.selected {
  text-decoration: underline;
}

.air-datepicker {
  padding: 24px 26px;
  --adp-width: 338px;
  --adp-border-radius: 16px;
  --adp-padding: 0px;
  --adp-cell-border-radius: 60px;
  --adp-cell-background-color-in-range:#6667AB;
  --adp-cell-background-color-selected: #6667AB;
  --adp-color: #1E1E33;
  --adp-day-name-color: #4E4E79;
  --adp-font-size: 14px;
  --adp-background-color-in-range-focused:#6667AB;
  --adp-background-color-active: transparent;
  --adp-background-color-hover: transparent;
  --adp-background-color-in-range: #6667AB;
  --adp-background-color-selected-other-month: #6667AB;
  --adp-cell-background-color-in-range-hover:#6667AB;
  --adp-background-color-selected-other-month-focused:#6667AB;
  --adp-cell-background-color-selected-hover: #6667AB;
  --adp-color-current-date: #F57F17;
  --adp-nav-arrow-color: #6667AB;
}

.air-datepicker-nav--title i {
  color: #1E1E33;
  transition: all 0.3s ease-in-out;
}

.air-datepicker--pointer {
  display: none;
}

.air-datepicker-nav {
  position: relative;
  padding-bottom: 18px;
  border-bottom: 0px;
}
.air-datepicker-nav::after {
  content: "";
  width: calc(100% - 18px);
  height: 1px;
  background: #D9D9E3;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0px auto;
}

.air-datepicker--content {
  padding-top: 18px;
}

.air-datepicker-nav--action path {
  stroke-width: 1px;
}

.air-datepicker-nav--title {
  padding: 0px 9px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}
.air-datepicker-nav--title:hover {
  color: #F57F17;
}
.air-datepicker-nav--title:hover i {
  color: #F57F17;
}

.air-datepicker-body--day-name {
  font-size: 14px;
  line-height: 16px;
}

.air-datepicker-cell:hover {
  color: #F57F17;
}

.-in-range-.air-datepicker-cell.-year-.-other-decade-, .-in-range-.air-datepicker-cell.-day-.-other-month-,
.air-datepicker-cell.-in-range- {
  color: #ffffff;
}

.air-datepicker-nav--title {
  order: 1;
  width: 100%;
  justify-content: flex-start;
  text-align: left;
}

.air-datepicker-nav--action {
  order: 2;
  margin-right: 10px;
}
.air-datepicker-nav--action:last-child {
  margin-right: 0;
}

.select-contract {
  width: max-content;
  margin-top: 15px;
  position: relative;
}
.select-contract__value {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
}
.select-contract__value svg {
  cursor: pointer;
  margin-left: 5px;
  fill: #ffffff;
  transition: all 0.3s ease-in-out;
}
.select-contract__value svg.active {
  transform: rotate(180deg);
}
.select-contract__list {
  display: none;
  width: 200px;
  list-style: none;
  position: absolute;
  background: #ffffff;
  right: 0;
  border-radius: 10px;
  overflow: hidden;
}
.select-contract__list.active {
  display: block;
}
.select-contract__list li {
  cursor: pointer;
  padding: 10px;
  border-bottom: 1px solid #4E4E79;
  transition: all 0.3s ease-in-out;
}
.select-contract__list li:last-child {
  border-bottom: 0px;
}
.select-contract__list li:hover {
  background: #D9D9E3;
}

.dark-theme {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.dark-theme .header {
  background: #1E1E33;
}
.dark-theme .page-block {
  flex-grow: 1;
}
.dark-theme .footer {
  background: #1E1E33;
}
.dark-theme .footer__bottom {
  border-top: 1px solid #6667AB;
}
.dark-theme .footer__info {
  color: #ffffff;
}
.dark-theme .footer__info a {
  color: #ffffff;
}
.dark-theme .development__text {
  color: #ffffff;
}/*# sourceMappingURL=style.css.map */
button:disabled{
  border: 1px solid #b9b9b9;
  background: #b9b9b9;
}
button:disabled:hover{
  border: 1px solid #b9b9b9;
  background: #b9b9b9;
  color: #fff;
}