@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;500;600;700&display=swap");
.status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 90px;
  min-height: 20px;
  padding: 2px 10px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 1000px;
}
.status.auto-width {
  min-width: auto;
}
.status.process, .status.in-active {
  background: #82868B;
}
.status.paid, .status.success, .status.active {
  background: #28C76F;
}
.status.partially-paid, .status.intermediate, .status.process {
  background: #FF9F43;
}
.status.overpaid {
  background: #28C76F;
}
.status.waiting {
  background: #6610F2;
}
.status.expired, .status.moderate {
  background: #D63384;
}
.status.error, .status.fail {
  background: #EA5455;
}
.status.cancel {
  background: #0D6EFD;
}
.status .font-icons {
  width: 16px;
  height: 16px;
  font-size: 16px;
  border-radius: 1000px;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.status .font-icons.success {
  color: #28C76F;
}
.status .font-icons.moderate {
  background: #5E5873;
}
.status .font-icons.in-active {
  color: #FF4445;
}
.status .font-icons.cancel {
  background: #ECEBF3;
  color: #5E5873;
  font-size: 6px;
}
.status .font-icons.error {
  background: #FF4445;
  color: #fff;
  font-size: 6px;
}
.status .font-icons.process {
  background: #5E5873;
  font-size: 6px;
}
.status .font-icons.payment {
  background: #53A7E3;
  font-size: 6px;
}

.limit-block {
  display: flex;
  gap: 15px;
}
.limit-block .text {
  font-size: 10px;
}
.limit-block .text p {
  margin: 0;
  padding: 0;
  line-height: inherit;
}
.limit-block .quantity-toggler {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}
.limit-block .quantity-toggler .bt {
  min-width: unset;
  min-height: unset;
  width: 20px;
  height: 20px;
  padding: 0;
  border-radius: 5px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  font-size: 18px;
  font-family: sans-serif;
  font-weight: 400;
}
.limit-block .quantity-toggler .field .input-block {
  width: 67px;
  height: 20px;
  min-height: unset;
  margin-left: -6px;
  margin-right: -6px;
  position: relative;
  z-index: 1;
}
.limit-block .quantity-toggler .field .input-block input {
  text-align: center;
}

.overflow-block {
  flex: 1;
  min-width: 0;
}
.overflow-block .overflow-item {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.breadcrumb .link-home {
  display: flex;
}

.breadcrumbs-mobile {
  margin-bottom: 25px;
}
.breadcrumbs-mobile .breadcrumb-item {
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 24px;
  color: #5E5873;
}
.breadcrumbs-mobile .breadcrumb-item:hover {
  color: #5E5873;
}
.breadcrumbs-mobile .breadcrumb-item .font-icons {
  font-size: 14px;
}
.breadcrumbs-mobile .breadcrumb-item .link-arrow-back {
  display: flex;
  align-items: center;
  color: #5E5873;
}
.breadcrumbs-mobile .breadcrumb-item span {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  flex-grow: 1;
  width: 0;
}

.badge {
  font-weight: 700;
  font-size: 12px;
  line-height: 18px;
  padding: 1px 9px;
  border-radius: 1000px;
  color: #fff;
}
.badge.error {
  background: #EA5455;
}
.badge.success {
  background: #28C76F;
}
.badge.process {
  background: #82868B;
}
.badge.cancel {
  background: #0D6EFD;
}

.ellipsis {
  display: flex;
}
.ellipsis span {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  flex-grow: 1;
  width: 0;
}

.alert {
  font-size: 12px;
  font-weight: 400;
}
.alert .heading-caption:not(.no-margin) {
  margin-bottom: 0.5em;
}

.transaction-message {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  line-height: 18px;
}
.transaction-message.error {
  color: #EA5455;
}
.transaction-message .code {
  font-weight: 700;
}
.transaction-status-message {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  line-height: 18px;
}
.transaction-status-message.error {
  color: #EA5455;
}
.transaction-status-message .code {
  font-weight: 700;
}
.transactions-widgets .widgets-holder > .columns-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.transactions-widgets .widget-card {
  padding: 15px 28px;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.transactions-widgets .widget-card .amount-block {
  display: block;
}
.transactions-widgets .widget-card .amount-block .title {
  color: #5E5873;
  font-size: 12px;
  line-height: 18px;
}
.transactions-widgets .widget-card .amount-block .value {
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
}
.transactions-widgets .widget-card .amount-block.general {
  color: #7367F0;
}
.transactions-widgets .widget-card .amount-block.withdrawal {
  color: #FF9F43;
}
.transactions-widgets .widget-card .amount-block.payed {
  color: #28C76F;
}
.transactions-widgets .widget-card .amount-block .amount-credit {
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  color: #FF9F43;
}
.transactions-widgets .widget-card .icon-status {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1000px;
  width: 48px;
  height: 48px;
  font-size: 14px;
  overflow: hidden;
}
.transactions-widgets .widget-card .icon-status.debit {
  color: #28C76F;
  background: rgba(40, 199, 111, 0.12);
}
.transactions-widgets .widget-card .icon-status.credit {
  color: #FF9F43;
  background: rgba(255, 159, 67, 0.12);
}

.line-divider {
  display: flex;
  height: 1px;
  background: #EAEAEA;
  margin: 10px 0;
}
.line-divider.no-margin {
  margin: 0;
}
.line-divider.horizontal {
  width: 100%;
}
.line-divider.vertical {
  display: block;
  background: none;
  color: #EAEAEA;
  height: 100%;
  margin: 0;
}
.line-divider.vertical:before {
  font-size: inherit;
  content: "|";
}
.line-divider.vertical.mr-1 {
  margin-left: 5px;
  margin-right: 5px;
}
.line-divider.vertical.v-2 {
  position: relative;
  width: 1px;
  height: inherit;
}
.line-divider.vertical.v-2:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #EAEAEA;
}

.text.bold {
  font-weight: 600;
}

.records-header {
  margin-bottom: 15px;
}

.body-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  z-index: 998;
  visibility: hidden;
  background-color: rgba(34, 41, 47, 0.5);
  transition: all 0.3s ease;
}
.body-overlay.show {
  transition: all 0.3s ease;
  visibility: visible;
  opacity: 0.5;
}

.body-sidebar-open {
  overflow: hidden;
}

.records-filter .select__control, .sidebar-filter .select__control {
  font-size: 12px;
  color: #6E6B7B;
  background-color: #fff;
  border-color: #d8d6de;
  border-radius: 5px;
  border-style: solid;
  border-width: 1px;
  min-height: 36px;
}
.records-filter .select__menu, .sidebar-filter .select__menu {
  font-size: 12px;
}
.records-filter .select__indicator, .sidebar-filter .select__indicator {
  padding: 7px;
}
.records-filter .filter-items, .sidebar-filter .filter-items {
  display: grid;
  grid-gap: 15px;
}
.records-filter .filter-items > .columns-row, .sidebar-filter .filter-items > .columns-row {
  row-gap: 20px;
}
.records-filter .filter-items + *, .sidebar-filter .filter-items + * {
  margin-top: 20px;
}
.records-filter .filter-items .item .noUi-target, .sidebar-filter .filter-items .item .noUi-target {
  margin-bottom: 15px;
}
.records-filter .filter-items .item .form-check, .sidebar-filter .filter-items .item .form-check {
  cursor: pointer;
}
.records-filter .filter-items .item .form-check + *, .sidebar-filter .filter-items .item .form-check + * {
  margin-top: 5px;
}
.records-filter .item-title, .sidebar-filter .item-title {
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 8px;
}

.sidebar-filter {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 999;
  transform: translateX(-100%);
  width: 350px;
  max-width: 100%;
  transition: all 0.3s ease;
  visibility: hidden;
  overflow-y: auto;
}
.sidebar-filter.show {
  visibility: visible;
  transition: all 0.3s ease;
  transform: none;
}
.sidebar-filter .card {
  border-radius: 0;
  margin: 0;
  box-shadow: none;
}
.sidebar-filter .card-body {
  padding: 28px 18px;
  background: #fff;
}
.sidebar-filter .filter-heading {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sidebar-filter .bt-filter-close {
  cursor: pointer;
  display: flex;
  line-height: 100%;
}
.sidebar-filter .bt-filter-close .font-icons {
  font-size: 12px;
}

.records-filter .card {
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.06);
}
.records-filter .accordion-button {
  padding: 0;
}
.records-filter .accordion-button:after {
  width: 22px;
  height: 22px;
  background-size: 22px;
}
.records-filter .accordion-body {
  padding: 28px 0 0 0;
}
.records-filter .card-body {
  padding: 14px 18px;
  background: #fff;
  border-radius: 12px;
}
.records-filter .filter-heading {
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-open {
  overflow: hidden;
}

.modal:not(.modal-slide-in) .modal-dialog:not(.modal-fullscreen) {
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}
.modal .modal-dialog {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}
.modal .modal-dialog.dialog {
  max-width: 800px;
}
.modal .modal-dialog.dialog .content-block {
  width: max-content;
}
.modal .modal-dialog.v-2 .modal-header {
  background: #fff;
  color: #5E5873;
}
.modal .modal-dialog.v-2 .modal-body {
  padding-top: 28px;
  padding-bottom: 28px;
}
.modal .withdrawal .modal-header {
  background: linear-gradient(41.83deg, #E54C28 2.18%, #E5A266 100%);
}
.modal .deposit .modal-header {
  background: linear-gradient(45.79deg, #07A624 0%, #48DA89 100%, #40C47A 100%);
}
.modal .modal-header {
  justify-content: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 28px;
  padding-bottom: 28px;
  color: #fff;
  background: linear-gradient(45deg, #7367F0 0%, #9E95F5 100%);
}
.modal .modal-header .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  transform: translate(0px, 0px);
}
.modal .modal-header .btn-close:hover, .modal .modal-header .btn-close:focus, .modal .modal-header .btn-close:active {
  transform: translate(2px, -2px);
}
.modal .modal-header .modal-title {
  text-align: center;
}
.modal .modal-header .modal-title .heading-caption {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.modal .modal-header .modal-title .heading-caption:not(.no-margin) {
  margin-bottom: 7px;
}
.modal .modal-header .modal-title .heading-caption .font-icons {
  font-size: 12px;
}
.modal .accordion .accordion-button {
  padding: 0;
}
.modal .accordion .accordion-button .text {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
}
.modal .accordion .accordion-body {
  padding: 15px 0 0 0;
}
.modal .secret-key {
  margin-top: 30px;
  word-break: break-all;
}
.modal .form-buttons {
  margin-top: 35px;
}
.modal .modal-body {
  padding: 35px;
}
.modal .content-block {
  width: 520px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.modal .form .field-row + .text {
  margin-top: 20px;
}
.modal .alert {
  margin: 25px 0;
}
.modal .request-status-image {
  display: flex;
  justify-content: center;
  font-size: 95px;
  color: #28C76F;
}
.modal .request-status-image + * {
  margin-top: 25px;
}

.dropdown-menu .dropdown-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.accordion .accordion-button:after {
  width: 18px;
  height: 18px;
  background-size: 20px;
  transform: rotate(-180deg);
}
.accordion .accordion-button:not(.collapsed):after {
  transform: rotate(0deg);
}

.pagination {
  background: #F3F2F7;
  border-radius: 1000px;
}
.pagination .page-item.disabled .font-icons {
  opacity: 0.5;
}
.pagination .page-item.prev-item .page-link, .pagination .page-item.next-item .page-link {
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #F3F2F7;
}
.pagination .page-item.prev-item .page-link .font-icons, .pagination .page-item.next-item .page-link .font-icons {
  color: #7367F0;
}
.pagination .page-item.prev-item .page-link:before, .pagination .page-item.prev-item .page-link:after, .pagination .page-item.next-item .page-link:before, .pagination .page-item.next-item .page-link:after {
  display: none;
}
.pagination .page-item.prev-item .page-link:hover, .pagination .page-item.prev-item .page-link:active, .pagination .page-item.next-item .page-link:hover, .pagination .page-item.next-item .page-link:active {
  color: #fff;
}
.pagination .page-item.prev-item .page-link:hover .font-icons, .pagination .page-item.prev-item .page-link:active .font-icons, .pagination .page-item.next-item .page-link:hover .font-icons, .pagination .page-item.next-item .page-link:active .font-icons {
  color: inherit;
}

.loader {
  width: 48px;
  height: 48px;
  border: 5px solid rgba(255, 255, 255, 0.51);
  border-bottom-color: #ffffff;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.nav-menu-toggle {
  cursor: pointer;
}

.tabs > .tab-panel {
  display: flex;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  color: #B9B9C3;
  margin-bottom: 20px;
  overflow-x: scroll;
  overflow-y: hidden;
  box-shadow: 0 -1px 0px 0px #B9B9C3 inset;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.tabs > .tab-panel::-webkit-scrollbar {
  display: none;
}
.tabs > .tab-panel > .item {
  gap: 10px;
  display: flex;
  align-items: center;
  padding: 0 12px 10px 12px;
  cursor: pointer;
  position: relative;
}
.tabs > .tab-panel > .item:before {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 0;
  height: 1.5px;
  background: transparent;
  transition: 0.3s ease-out all;
}
.tabs > .tab-panel > .item > .font-icons {
  font-size: 20px;
}
.tabs > .tab-panel > .item.active {
  color: #7367F0;
}
.tabs > .tab-panel > .item.active:before {
  left: 0;
  right: 0;
  background: #7367F0;
}
.tabs > .tab-content > .item {
  display: none;
}
.tabs > .tab-content > .item.active {
  display: block;
}

.bt {
  transition: 0.3s ease-out all;
  display: inline-flex;
  gap: 8px;
  justify-content: center;
  vertical-align: middle;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  align-items: center;
  -webkit-appearance: none;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  min-width: 100px;
  min-height: 48px;
  background: linear-gradient(45deg, #7367F0 0%, #9E95F5 100%);
  border-radius: 5px;
  border: none;
  box-shadow: 0 0 0 2px transparent;
  text-align: center;
  padding: 8px 18px;
  white-space: nowrap;
  box-sizing: border-box;
  line-height: 1.2;
}
.bt:not(button) {
  display: inline-flex;
  justify-content: center;
}
.bt:not([disabled]):hover, .bt:not([disabled]):active, .bt:not([disabled]):focus {
  outline: none;
  text-decoration: none;
}
.bt:not([disabled]):hover, .bt:not([disabled]):active, .bt:not([disabled]).active {
  color: #ffffff;
}
.bt:not([disabled]):hover {
  box-shadow: 0 4px 14px rgba(115, 103, 240, 0.38);
}
.bt:not([disabled]):active {
  background: linear-gradient(45deg, #5E50EE 0%, #5E50EE 100%);
}
.bt * {
  font-size: inherit;
}
.bt .img-holder {
  width: 53px;
  height: 53px;
  padding: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1000px;
  overflow: hidden;
}
.bt .font-icons, .bt [class*=icon-], .bt .fa {
  font-size: 12px;
  color: inherit;
}
.bt .font-icons.icon-arrow-down-left, .bt .font-icons.icon-arrow-up-right, .bt [class*=icon-].icon-arrow-down-left, .bt [class*=icon-].icon-arrow-up-right, .bt .fa.icon-arrow-down-left, .bt .fa.icon-arrow-up-right {
  font-size: 8px;
}
.bt[disabled] {
  cursor: not-allowed;
  filter: alpha(opacity=65);
  opacity: 0.65;
}
.bt.size-max {
  flex-grow: 1;
}
.bt svg {
  max-width: 12px;
  max-height: 12px;
}
.bt.icon {
  min-width: unset;
  min-height: unset;
  width: 48px;
  height: 48px;
  padding: 0;
}
.bt.icon .font-icons {
  margin: 0;
}
.bt.icon-bg {
  padding-right: 7px;
  justify-content: space-between;
}
.bt.icon-bg .font-icons {
  font-size: 14px;
  color: #fff;
}
.bt.icon-bg .font-icons:not(.no-bg) {
  border-radius: 1000px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #533316;
  width: 26px;
  height: 26px;
}
.bt.icon-bg span {
  vertical-align: middle;
}
.bt.icon-bg * + * {
  margin-left: 15px;
}
.bt.size-1 {
  min-width: 200px;
}
.bt.size-2 {
  min-width: 175px;
  min-height: 34px;
}
.bt.size-3 {
  min-width: 150px;
}
.bt.size-max {
  flex-grow: 1;
}
.bt.max-width {
  width: 100%;
}
.bt.rounded {
  border-radius: 4px;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}
.bt.rounded .font-icons + span {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #fff;
  padding-left: 12px;
  width: 95px;
  margin-left: 12px;
  text-align: center;
}
.bt.link-view {
  text-transform: capitalize;
  text-decoration: underline;
}
.bt.link-view:hover {
  text-decoration: none;
}
.bt .loader {
  width: 16px;
  height: 16px;
  border-width: 2px;
}
.bt.transparent {
  background: none;
  color: #7367F0;
  box-shadow: 0 0 0 1px #7367F0 inset;
}
.bt.transparent:not([disabled]):hover {
  color: #7367F0;
  box-shadow: 0 0 0 1px #7367F0 inset;
}
.bt.transparent:not([disabled]):active {
  background-color: #5E50EE;
  color: #fff;
  box-shadow: 0px 0px 10px transparent;
}

.bt-filled {
  transition: 0.3s ease-out all;
  display: inline-flex;
  gap: 8px;
  justify-content: center;
  vertical-align: middle;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  align-items: center;
  -webkit-appearance: none;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  min-width: 100px;
  min-height: 37px;
  background: #7367F0;
  border-radius: 5px;
  border: none;
  box-shadow: 0 0 0 2px transparent;
  text-align: center;
  padding: 8px 18px;
  white-space: nowrap;
  box-sizing: border-box;
  line-height: 1.2;
}
.bt-filled:not(button) {
  display: inline-flex;
  justify-content: center;
}
.bt-filled:not([disabled]):hover, .bt-filled:not([disabled]):active, .bt-filled:not([disabled]):focus {
  outline: none;
  text-decoration: none;
}
.bt-filled:not([disabled]):hover, .bt-filled:not([disabled]):active, .bt-filled:not([disabled]).active {
  color: #ffffff;
}
.bt-filled:not([disabled]):hover {
  box-shadow: 0 4px 14px rgba(115, 103, 240, 0.38);
}
.bt-filled:not([disabled]):active {
  background: linear-gradient(45deg, #5E50EE 0%, #5E50EE 100%);
}
.bt-filled * {
  font-size: inherit;
}
.bt-filled .img-holder {
  width: 53px;
  height: 53px;
  padding: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1000px;
  overflow: hidden;
}
.bt-filled .font-icons, .bt-filled [class*=icon-], .bt-filled .fa {
  font-size: 12px;
  color: inherit;
}
.bt-filled .font-icons.icon-arrow-down-left, .bt-filled .font-icons.icon-arrow-up-right, .bt-filled [class*=icon-].icon-arrow-down-left, .bt-filled [class*=icon-].icon-arrow-up-right, .bt-filled .fa.icon-arrow-down-left, .bt-filled .fa.icon-arrow-up-right {
  font-size: 8px;
}
.bt-filled[disabled] {
  cursor: not-allowed;
  filter: alpha(opacity=65);
  opacity: 0.65;
}
.bt-filled.size-max {
  flex-grow: 1;
}
.bt-filled svg {
  max-width: 12px;
  max-height: 12px;
}
.bt-filled.icon {
  min-width: unset;
  min-height: unset;
  width: 37px;
  height: 37px;
  padding: 0;
}
.bt-filled.icon .font-icons {
  margin: 0;
}
.bt-filled.icon-bg {
  padding-right: 7px;
  justify-content: space-between;
}
.bt-filled.icon-bg .font-icons {
  font-size: 14px;
  color: #fff;
}
.bt-filled.icon-bg .font-icons:not(.no-bg) {
  border-radius: 1000px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #533316;
  width: 26px;
  height: 26px;
}
.bt-filled.icon-bg span {
  vertical-align: middle;
}
.bt-filled.icon-bg * + * {
  margin-left: 15px;
}
.bt-filled.size-1 {
  min-width: 200px;
}
.bt-filled.size-2 {
  min-width: 175px;
  min-height: 34px;
}
.bt-filled.size-3 {
  min-width: 150px;
}
.bt-filled.size-max {
  flex-grow: 1;
}
.bt-filled.max-width {
  width: 100%;
}
.bt-filled.rounded {
  border-radius: 4px;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}
.bt-filled.rounded .font-icons + span {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #fff;
  padding-left: 12px;
  width: 95px;
  margin-left: 12px;
  text-align: center;
}
.bt-filled.link-view {
  text-transform: capitalize;
  text-decoration: underline;
}
.bt-filled.link-view:hover {
  text-decoration: none;
}
.bt-filled .loader {
  width: 16px;
  height: 16px;
  border-width: 2px;
}
.bt-filled:not([disabled]):hover {
  box-shadow: 0px 0px 10px rgba(115, 103, 240, 0.65);
}
.bt-filled:not([disabled]):active {
  background-color: #5E50EE;
  box-shadow: 0px 0px 10px transparent;
}

.bt-grey {
  transition: 0.3s ease-out all;
  display: inline-flex;
  gap: 8px;
  justify-content: center;
  vertical-align: middle;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  align-items: center;
  -webkit-appearance: none;
  font-size: 14px;
  font-weight: 500;
  color: #82868B;
  min-width: 100px;
  min-height: 48px;
  background: #fff;
  border-radius: 5px;
  border: none;
  box-shadow: 0 0 0 2px transparent;
  text-align: center;
  padding: 8px 18px;
  white-space: nowrap;
  box-sizing: border-box;
  line-height: 1.2;
  box-shadow: 0 0 0 1px #82868B inset;
}
.bt-grey:not(button) {
  display: inline-flex;
  justify-content: center;
}
.bt-grey:not([disabled]):hover, .bt-grey:not([disabled]):active, .bt-grey:not([disabled]):focus {
  outline: none;
  text-decoration: none;
}
.bt-grey:not([disabled]):hover, .bt-grey:not([disabled]):active, .bt-grey:not([disabled]).active {
  color: #82868B;
}
.bt-grey:not([disabled]):hover {
  box-shadow: 0 4px 14px rgba(115, 103, 240, 0.38);
}
.bt-grey:not([disabled]):active {
  background: linear-gradient(45deg, #5E50EE 0%, #5E50EE 100%);
}
.bt-grey * {
  font-size: inherit;
}
.bt-grey .img-holder {
  width: 53px;
  height: 53px;
  padding: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1000px;
  overflow: hidden;
}
.bt-grey .font-icons, .bt-grey [class*=icon-], .bt-grey .fa {
  font-size: 12px;
  color: inherit;
}
.bt-grey .font-icons.icon-arrow-down-left, .bt-grey .font-icons.icon-arrow-up-right, .bt-grey [class*=icon-].icon-arrow-down-left, .bt-grey [class*=icon-].icon-arrow-up-right, .bt-grey .fa.icon-arrow-down-left, .bt-grey .fa.icon-arrow-up-right {
  font-size: 8px;
}
.bt-grey[disabled] {
  cursor: not-allowed;
  filter: alpha(opacity=65);
  opacity: 0.65;
}
.bt-grey.size-max {
  flex-grow: 1;
}
.bt-grey svg {
  max-width: 12px;
  max-height: 12px;
}
.bt-grey.icon {
  min-width: unset;
  min-height: unset;
  width: 48px;
  height: 48px;
  padding: 0;
}
.bt-grey.icon .font-icons {
  margin: 0;
}
.bt-grey.icon-bg {
  padding-right: 7px;
  justify-content: space-between;
}
.bt-grey.icon-bg .font-icons {
  font-size: 14px;
  color: #fff;
}
.bt-grey.icon-bg .font-icons:not(.no-bg) {
  border-radius: 1000px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #533316;
  width: 26px;
  height: 26px;
}
.bt-grey.icon-bg span {
  vertical-align: middle;
}
.bt-grey.icon-bg * + * {
  margin-left: 15px;
}
.bt-grey.size-1 {
  min-width: 200px;
}
.bt-grey.size-2 {
  min-width: 175px;
  min-height: 34px;
}
.bt-grey.size-3 {
  min-width: 150px;
}
.bt-grey.size-max {
  flex-grow: 1;
}
.bt-grey.max-width {
  width: 100%;
}
.bt-grey.rounded {
  border-radius: 4px;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}
.bt-grey.rounded .font-icons + span {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #fff;
  padding-left: 12px;
  width: 95px;
  margin-left: 12px;
  text-align: center;
}
.bt-grey.link-view {
  text-transform: capitalize;
  text-decoration: underline;
}
.bt-grey.link-view:hover {
  text-decoration: none;
}
.bt-grey .loader {
  width: 16px;
  height: 16px;
  border-width: 2px;
}
.bt-grey:not([disabled]):hover {
  background: rgba(130, 134, 139, 0.05);
  box-shadow: 0 0 0 1px #82868B inset;
}
.bt-grey:not([disabled]):active {
  background: rgba(130, 134, 139, 0.15);
  box-shadow: 0 0 0 1px #82868B inset;
}

.bt-white {
  transition: 0.3s ease-out all;
  display: inline-flex;
  gap: 8px;
  justify-content: center;
  vertical-align: middle;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  align-items: center;
  -webkit-appearance: none;
  font-size: 14px;
  font-weight: 500;
  color: #7367F0;
  min-width: 100px;
  min-height: 48px;
  background: #ffffff;
  border-radius: 5px;
  border: none;
  box-shadow: 0 0 0 2px transparent;
  text-align: center;
  padding: 8px 18px;
  white-space: nowrap;
  box-sizing: border-box;
  line-height: 1.2;
  box-shadow: 0 0 0 1px #7367F0 inset;
}
.bt-white:not(button) {
  display: inline-flex;
  justify-content: center;
}
.bt-white:not([disabled]):hover, .bt-white:not([disabled]):active, .bt-white:not([disabled]):focus {
  outline: none;
  text-decoration: none;
}
.bt-white:not([disabled]):hover, .bt-white:not([disabled]):active, .bt-white:not([disabled]).active {
  color: #7367F0;
}
.bt-white:not([disabled]):hover {
  box-shadow: 0 4px 14px rgba(115, 103, 240, 0.38);
}
.bt-white:not([disabled]):active {
  background: linear-gradient(45deg, #5E50EE 0%, #5E50EE 100%);
}
.bt-white * {
  font-size: inherit;
}
.bt-white .img-holder {
  width: 53px;
  height: 53px;
  padding: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1000px;
  overflow: hidden;
}
.bt-white .font-icons, .bt-white [class*=icon-], .bt-white .fa {
  font-size: 12px;
  color: inherit;
}
.bt-white .font-icons.icon-arrow-down-left, .bt-white .font-icons.icon-arrow-up-right, .bt-white [class*=icon-].icon-arrow-down-left, .bt-white [class*=icon-].icon-arrow-up-right, .bt-white .fa.icon-arrow-down-left, .bt-white .fa.icon-arrow-up-right {
  font-size: 8px;
}
.bt-white[disabled] {
  cursor: not-allowed;
  filter: alpha(opacity=65);
  opacity: 0.65;
}
.bt-white.size-max {
  flex-grow: 1;
}
.bt-white svg {
  max-width: 12px;
  max-height: 12px;
}
.bt-white.icon {
  min-width: unset;
  min-height: unset;
  width: 48px;
  height: 48px;
  padding: 0;
}
.bt-white.icon .font-icons {
  margin: 0;
}
.bt-white.icon-bg {
  padding-right: 7px;
  justify-content: space-between;
}
.bt-white.icon-bg .font-icons {
  font-size: 14px;
  color: #fff;
}
.bt-white.icon-bg .font-icons:not(.no-bg) {
  border-radius: 1000px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #533316;
  width: 26px;
  height: 26px;
}
.bt-white.icon-bg span {
  vertical-align: middle;
}
.bt-white.icon-bg * + * {
  margin-left: 15px;
}
.bt-white.size-1 {
  min-width: 200px;
}
.bt-white.size-2 {
  min-width: 175px;
  min-height: 34px;
}
.bt-white.size-3 {
  min-width: 150px;
}
.bt-white.size-max {
  flex-grow: 1;
}
.bt-white.max-width {
  width: 100%;
}
.bt-white.rounded {
  border-radius: 4px;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}
.bt-white.rounded .font-icons + span {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #fff;
  padding-left: 12px;
  width: 95px;
  margin-left: 12px;
  text-align: center;
}
.bt-white.link-view {
  text-transform: capitalize;
  text-decoration: underline;
}
.bt-white.link-view:hover {
  text-decoration: none;
}
.bt-white .loader {
  width: 16px;
  height: 16px;
  border-width: 2px;
}
.bt-white .loader {
  border-color: #7367F0;
  border-bottom-color: transparent;
}
.bt-white:not([disabled]):hover {
  background: linear-gradient(0deg, rgba(115, 103, 240, 0.12), rgba(115, 103, 240, 0.12)), #FFFFFF;
  box-shadow: 0 0 0 1px #7367F0 inset;
}
.bt-white:not([disabled]):active {
  background: linear-gradient(0deg, rgba(115, 103, 240, 0.2), rgba(115, 103, 240, 0.2)), #FFFFFF;
  box-shadow: 0 0 0 1px #7367F0 inset;
}

.bt-border {
  transition: 0.3s ease-out all;
  display: inline-flex;
  gap: 8px;
  justify-content: center;
  vertical-align: middle;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  align-items: center;
  -webkit-appearance: none;
  font-size: 14px;
  font-weight: 500;
  color: #7367F0;
  min-width: 100px;
  min-height: 48px;
  background: transparent;
  border-radius: 5px;
  border: none;
  box-shadow: 0 0 0 2px transparent;
  text-align: center;
  padding: 8px 18px;
  white-space: nowrap;
  box-sizing: border-box;
  line-height: 1.2;
  box-shadow: none;
  border: 1px solid;
}
.bt-border:not(button) {
  display: inline-flex;
  justify-content: center;
}
.bt-border:not([disabled]):hover, .bt-border:not([disabled]):active, .bt-border:not([disabled]):focus {
  outline: none;
  text-decoration: none;
}
.bt-border:not([disabled]):hover, .bt-border:not([disabled]):active, .bt-border:not([disabled]).active {
  color: #7367F0;
}
.bt-border:not([disabled]):hover {
  box-shadow: 0 4px 14px rgba(115, 103, 240, 0.38);
}
.bt-border:not([disabled]):active {
  background: linear-gradient(45deg, #5E50EE 0%, #5E50EE 100%);
}
.bt-border * {
  font-size: inherit;
}
.bt-border .img-holder {
  width: 53px;
  height: 53px;
  padding: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1000px;
  overflow: hidden;
}
.bt-border .font-icons, .bt-border [class*=icon-], .bt-border .fa {
  font-size: 12px;
  color: inherit;
}
.bt-border .font-icons.icon-arrow-down-left, .bt-border .font-icons.icon-arrow-up-right, .bt-border [class*=icon-].icon-arrow-down-left, .bt-border [class*=icon-].icon-arrow-up-right, .bt-border .fa.icon-arrow-down-left, .bt-border .fa.icon-arrow-up-right {
  font-size: 8px;
}
.bt-border[disabled] {
  cursor: not-allowed;
  filter: alpha(opacity=65);
  opacity: 0.65;
}
.bt-border.size-max {
  flex-grow: 1;
}
.bt-border svg {
  max-width: 12px;
  max-height: 12px;
}
.bt-border.icon {
  min-width: unset;
  min-height: unset;
  width: 48px;
  height: 48px;
  padding: 0;
}
.bt-border.icon .font-icons {
  margin: 0;
}
.bt-border.icon-bg {
  padding-right: 7px;
  justify-content: space-between;
}
.bt-border.icon-bg .font-icons {
  font-size: 14px;
  color: #fff;
}
.bt-border.icon-bg .font-icons:not(.no-bg) {
  border-radius: 1000px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #533316;
  width: 26px;
  height: 26px;
}
.bt-border.icon-bg span {
  vertical-align: middle;
}
.bt-border.icon-bg * + * {
  margin-left: 15px;
}
.bt-border.size-1 {
  min-width: 200px;
}
.bt-border.size-2 {
  min-width: 175px;
  min-height: 34px;
}
.bt-border.size-3 {
  min-width: 150px;
}
.bt-border.size-max {
  flex-grow: 1;
}
.bt-border.max-width {
  width: 100%;
}
.bt-border.rounded {
  border-radius: 4px;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}
.bt-border.rounded .font-icons + span {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #fff;
  padding-left: 12px;
  width: 95px;
  margin-left: 12px;
  text-align: center;
}
.bt-border.link-view {
  text-transform: capitalize;
  text-decoration: underline;
}
.bt-border.link-view:hover {
  text-decoration: none;
}
.bt-border .loader {
  width: 16px;
  height: 16px;
  border-width: 2px;
}
.bt-border:not([disabled]):hover {
  background: rgba(115, 103, 240, 0.1);
  box-shadow: none;
}
.bt-border:not([disabled]):active {
  background: rgba(115, 103, 240, 0.2);
  box-shadow: none;
}

.bt-black {
  transition: 0.3s ease-out all;
  display: inline-flex;
  gap: 8px;
  justify-content: center;
  vertical-align: middle;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  align-items: center;
  -webkit-appearance: none;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  min-width: 100px;
  min-height: 48px;
  background: #000;
  border-radius: 5px;
  border: none;
  box-shadow: 0 0 0 2px transparent;
  text-align: center;
  padding: 8px 18px;
  white-space: nowrap;
  box-sizing: border-box;
  line-height: 1.2;
  box-shadow: none;
}
.bt-black:not(button) {
  display: inline-flex;
  justify-content: center;
}
.bt-black:not([disabled]):hover, .bt-black:not([disabled]):active, .bt-black:not([disabled]):focus {
  outline: none;
  text-decoration: none;
}
.bt-black:not([disabled]):hover, .bt-black:not([disabled]):active, .bt-black:not([disabled]).active {
  color: #fff;
}
.bt-black:not([disabled]):hover {
  box-shadow: 0 4px 14px rgba(115, 103, 240, 0.38);
}
.bt-black:not([disabled]):active {
  background: linear-gradient(45deg, #5E50EE 0%, #5E50EE 100%);
}
.bt-black * {
  font-size: inherit;
}
.bt-black .img-holder {
  width: 53px;
  height: 53px;
  padding: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1000px;
  overflow: hidden;
}
.bt-black .font-icons, .bt-black [class*=icon-], .bt-black .fa {
  font-size: 12px;
  color: inherit;
}
.bt-black .font-icons.icon-arrow-down-left, .bt-black .font-icons.icon-arrow-up-right, .bt-black [class*=icon-].icon-arrow-down-left, .bt-black [class*=icon-].icon-arrow-up-right, .bt-black .fa.icon-arrow-down-left, .bt-black .fa.icon-arrow-up-right {
  font-size: 8px;
}
.bt-black[disabled] {
  cursor: not-allowed;
  filter: alpha(opacity=65);
  opacity: 0.65;
}
.bt-black.size-max {
  flex-grow: 1;
}
.bt-black svg {
  max-width: 12px;
  max-height: 12px;
}
.bt-black.icon {
  min-width: unset;
  min-height: unset;
  width: 48px;
  height: 48px;
  padding: 0;
}
.bt-black.icon .font-icons {
  margin: 0;
}
.bt-black.icon-bg {
  padding-right: 7px;
  justify-content: space-between;
}
.bt-black.icon-bg .font-icons {
  font-size: 14px;
  color: #fff;
}
.bt-black.icon-bg .font-icons:not(.no-bg) {
  border-radius: 1000px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #533316;
  width: 26px;
  height: 26px;
}
.bt-black.icon-bg span {
  vertical-align: middle;
}
.bt-black.icon-bg * + * {
  margin-left: 15px;
}
.bt-black.size-1 {
  min-width: 200px;
}
.bt-black.size-2 {
  min-width: 175px;
  min-height: 34px;
}
.bt-black.size-3 {
  min-width: 150px;
}
.bt-black.size-max {
  flex-grow: 1;
}
.bt-black.max-width {
  width: 100%;
}
.bt-black.rounded {
  border-radius: 4px;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}
.bt-black.rounded .font-icons + span {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #fff;
  padding-left: 12px;
  width: 95px;
  margin-left: 12px;
  text-align: center;
}
.bt-black.link-view {
  text-transform: capitalize;
  text-decoration: underline;
}
.bt-black.link-view:hover {
  text-decoration: none;
}
.bt-black .loader {
  width: 16px;
  height: 16px;
  border-width: 2px;
}
.bt-black:not([disabled]):hover {
  background: #3E3E3E;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.06);
}
.bt-black:not([disabled]):active {
  background: #3E3E3E;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.06);
}

.bt-red {
  transition: 0.3s ease-out all;
  display: inline-flex;
  gap: 8px;
  justify-content: center;
  vertical-align: middle;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  align-items: center;
  -webkit-appearance: none;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  min-width: 100px;
  min-height: 48px;
  background: #EA5455;
  border-radius: 5px;
  border: none;
  box-shadow: 0 0 0 2px transparent;
  text-align: center;
  padding: 8px 18px;
  white-space: nowrap;
  box-sizing: border-box;
  line-height: 1.2;
  box-shadow: 0 0 0 1px #EA5455 inset;
}
.bt-red:not(button) {
  display: inline-flex;
  justify-content: center;
}
.bt-red:not([disabled]):hover, .bt-red:not([disabled]):active, .bt-red:not([disabled]):focus {
  outline: none;
  text-decoration: none;
}
.bt-red:not([disabled]):hover, .bt-red:not([disabled]):active, .bt-red:not([disabled]).active {
  color: #fff;
}
.bt-red:not([disabled]):hover {
  box-shadow: 0 4px 14px rgba(115, 103, 240, 0.38);
}
.bt-red:not([disabled]):active {
  background: linear-gradient(45deg, #5E50EE 0%, #5E50EE 100%);
}
.bt-red * {
  font-size: inherit;
}
.bt-red .img-holder {
  width: 53px;
  height: 53px;
  padding: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1000px;
  overflow: hidden;
}
.bt-red .font-icons, .bt-red [class*=icon-], .bt-red .fa {
  font-size: 12px;
  color: inherit;
}
.bt-red .font-icons.icon-arrow-down-left, .bt-red .font-icons.icon-arrow-up-right, .bt-red [class*=icon-].icon-arrow-down-left, .bt-red [class*=icon-].icon-arrow-up-right, .bt-red .fa.icon-arrow-down-left, .bt-red .fa.icon-arrow-up-right {
  font-size: 8px;
}
.bt-red[disabled] {
  cursor: not-allowed;
  filter: alpha(opacity=65);
  opacity: 0.65;
}
.bt-red.size-max {
  flex-grow: 1;
}
.bt-red svg {
  max-width: 12px;
  max-height: 12px;
}
.bt-red.icon {
  min-width: unset;
  min-height: unset;
  width: 48px;
  height: 48px;
  padding: 0;
}
.bt-red.icon .font-icons {
  margin: 0;
}
.bt-red.icon-bg {
  padding-right: 7px;
  justify-content: space-between;
}
.bt-red.icon-bg .font-icons {
  font-size: 14px;
  color: #fff;
}
.bt-red.icon-bg .font-icons:not(.no-bg) {
  border-radius: 1000px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #533316;
  width: 26px;
  height: 26px;
}
.bt-red.icon-bg span {
  vertical-align: middle;
}
.bt-red.icon-bg * + * {
  margin-left: 15px;
}
.bt-red.size-1 {
  min-width: 200px;
}
.bt-red.size-2 {
  min-width: 175px;
  min-height: 34px;
}
.bt-red.size-3 {
  min-width: 150px;
}
.bt-red.size-max {
  flex-grow: 1;
}
.bt-red.max-width {
  width: 100%;
}
.bt-red.rounded {
  border-radius: 4px;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}
.bt-red.rounded .font-icons + span {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #fff;
  padding-left: 12px;
  width: 95px;
  margin-left: 12px;
  text-align: center;
}
.bt-red.link-view {
  text-transform: capitalize;
  text-decoration: underline;
}
.bt-red.link-view:hover {
  text-decoration: none;
}
.bt-red .loader {
  width: 16px;
  height: 16px;
  border-width: 2px;
}
.bt-red:not([disabled]):hover {
  background: #EA5455;
  box-shadow: 0px 4px 14px rgba(234, 84, 85, 0.38);
}
.bt-red:not([disabled]):active {
  background: #E73D3E;
  box-shadow: 0 0 0 1px #E73D3E inset;
}

.bt-green {
  transition: 0.3s ease-out all;
  display: inline-flex;
  gap: 8px;
  justify-content: center;
  vertical-align: middle;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  align-items: center;
  -webkit-appearance: none;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  min-width: 100px;
  min-height: 48px;
  background: linear-gradient(45.79deg, #07A624 0%, #48DA89 100%, #40C47A 100%);
  border-radius: 5px;
  border: none;
  box-shadow: 0 0 0 2px transparent;
  text-align: center;
  padding: 8px 18px;
  white-space: nowrap;
  box-sizing: border-box;
  line-height: 1.2;
}
.bt-green:not(button) {
  display: inline-flex;
  justify-content: center;
}
.bt-green:not([disabled]):hover, .bt-green:not([disabled]):active, .bt-green:not([disabled]):focus {
  outline: none;
  text-decoration: none;
}
.bt-green:not([disabled]):hover, .bt-green:not([disabled]):active, .bt-green:not([disabled]).active {
  color: #fff;
}
.bt-green:not([disabled]):hover {
  box-shadow: 0 4px 14px rgba(115, 103, 240, 0.38);
}
.bt-green:not([disabled]):active {
  background: linear-gradient(45deg, #5E50EE 0%, #5E50EE 100%);
}
.bt-green * {
  font-size: inherit;
}
.bt-green .img-holder {
  width: 53px;
  height: 53px;
  padding: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1000px;
  overflow: hidden;
}
.bt-green .font-icons, .bt-green [class*=icon-], .bt-green .fa {
  font-size: 12px;
  color: inherit;
}
.bt-green .font-icons.icon-arrow-down-left, .bt-green .font-icons.icon-arrow-up-right, .bt-green [class*=icon-].icon-arrow-down-left, .bt-green [class*=icon-].icon-arrow-up-right, .bt-green .fa.icon-arrow-down-left, .bt-green .fa.icon-arrow-up-right {
  font-size: 8px;
}
.bt-green[disabled] {
  cursor: not-allowed;
  filter: alpha(opacity=65);
  opacity: 0.65;
}
.bt-green.size-max {
  flex-grow: 1;
}
.bt-green svg {
  max-width: 12px;
  max-height: 12px;
}
.bt-green.icon {
  min-width: unset;
  min-height: unset;
  width: 48px;
  height: 48px;
  padding: 0;
}
.bt-green.icon .font-icons {
  margin: 0;
}
.bt-green.icon-bg {
  padding-right: 7px;
  justify-content: space-between;
}
.bt-green.icon-bg .font-icons {
  font-size: 14px;
  color: #fff;
}
.bt-green.icon-bg .font-icons:not(.no-bg) {
  border-radius: 1000px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #533316;
  width: 26px;
  height: 26px;
}
.bt-green.icon-bg span {
  vertical-align: middle;
}
.bt-green.icon-bg * + * {
  margin-left: 15px;
}
.bt-green.size-1 {
  min-width: 200px;
}
.bt-green.size-2 {
  min-width: 175px;
  min-height: 34px;
}
.bt-green.size-3 {
  min-width: 150px;
}
.bt-green.size-max {
  flex-grow: 1;
}
.bt-green.max-width {
  width: 100%;
}
.bt-green.rounded {
  border-radius: 4px;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}
.bt-green.rounded .font-icons + span {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #fff;
  padding-left: 12px;
  width: 95px;
  margin-left: 12px;
  text-align: center;
}
.bt-green.link-view {
  text-transform: capitalize;
  text-decoration: underline;
}
.bt-green.link-view:hover {
  text-decoration: none;
}
.bt-green .loader {
  width: 16px;
  height: 16px;
  border-width: 2px;
}
.bt-green:not([disabled]):hover {
  box-shadow: 0px 4px 14px rgba(40, 199, 111, 0.38);
}
.bt-green:not([disabled]):active {
  background: linear-gradient(86.57deg, #049B1E 0%, #3DB974 100%);
  box-shadow: 0px 0px 10px transparent;
}

.bt-orange {
  transition: 0.3s ease-out all;
  display: inline-flex;
  gap: 8px;
  justify-content: center;
  vertical-align: middle;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  align-items: center;
  -webkit-appearance: none;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  min-width: 100px;
  min-height: 48px;
  background: linear-gradient(41.83deg, #E54C28 2.18%, #E5A266 100%);
  border-radius: 5px;
  border: none;
  box-shadow: 0 0 0 2px transparent;
  text-align: center;
  padding: 8px 18px;
  white-space: nowrap;
  box-sizing: border-box;
  line-height: 1.2;
}
.bt-orange:not(button) {
  display: inline-flex;
  justify-content: center;
}
.bt-orange:not([disabled]):hover, .bt-orange:not([disabled]):active, .bt-orange:not([disabled]):focus {
  outline: none;
  text-decoration: none;
}
.bt-orange:not([disabled]):hover, .bt-orange:not([disabled]):active, .bt-orange:not([disabled]).active {
  color: #fff;
}
.bt-orange:not([disabled]):hover {
  box-shadow: 0 4px 14px rgba(115, 103, 240, 0.38);
}
.bt-orange:not([disabled]):active {
  background: linear-gradient(45deg, #5E50EE 0%, #5E50EE 100%);
}
.bt-orange * {
  font-size: inherit;
}
.bt-orange .img-holder {
  width: 53px;
  height: 53px;
  padding: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1000px;
  overflow: hidden;
}
.bt-orange .font-icons, .bt-orange [class*=icon-], .bt-orange .fa {
  font-size: 12px;
  color: inherit;
}
.bt-orange .font-icons.icon-arrow-down-left, .bt-orange .font-icons.icon-arrow-up-right, .bt-orange [class*=icon-].icon-arrow-down-left, .bt-orange [class*=icon-].icon-arrow-up-right, .bt-orange .fa.icon-arrow-down-left, .bt-orange .fa.icon-arrow-up-right {
  font-size: 8px;
}
.bt-orange[disabled] {
  cursor: not-allowed;
  filter: alpha(opacity=65);
  opacity: 0.65;
}
.bt-orange.size-max {
  flex-grow: 1;
}
.bt-orange svg {
  max-width: 12px;
  max-height: 12px;
}
.bt-orange.icon {
  min-width: unset;
  min-height: unset;
  width: 48px;
  height: 48px;
  padding: 0;
}
.bt-orange.icon .font-icons {
  margin: 0;
}
.bt-orange.icon-bg {
  padding-right: 7px;
  justify-content: space-between;
}
.bt-orange.icon-bg .font-icons {
  font-size: 14px;
  color: #fff;
}
.bt-orange.icon-bg .font-icons:not(.no-bg) {
  border-radius: 1000px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #533316;
  width: 26px;
  height: 26px;
}
.bt-orange.icon-bg span {
  vertical-align: middle;
}
.bt-orange.icon-bg * + * {
  margin-left: 15px;
}
.bt-orange.size-1 {
  min-width: 200px;
}
.bt-orange.size-2 {
  min-width: 175px;
  min-height: 34px;
}
.bt-orange.size-3 {
  min-width: 150px;
}
.bt-orange.size-max {
  flex-grow: 1;
}
.bt-orange.max-width {
  width: 100%;
}
.bt-orange.rounded {
  border-radius: 4px;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}
.bt-orange.rounded .font-icons + span {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #fff;
  padding-left: 12px;
  width: 95px;
  margin-left: 12px;
  text-align: center;
}
.bt-orange.link-view {
  text-transform: capitalize;
  text-decoration: underline;
}
.bt-orange.link-view:hover {
  text-decoration: none;
}
.bt-orange .loader {
  width: 16px;
  height: 16px;
  border-width: 2px;
}
.bt-orange:not([disabled]):hover {
  box-shadow: 0px 4px 14px rgba(255, 159, 67, 0.38);
}
.bt-orange:not([disabled]):active {
  background: linear-gradient(264.37deg, #DA985F 0%, #DA4B28 100%);
  box-shadow: 0px 0px 10px transparent;
}

.bt-icon {
  width: 34px;
  height: 34px;
  padding: 0;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 1000px !important;
  transition: 0.3s ease-out all;
  cursor: pointer;
  color: #6E6B7B;
}
.bt-icon .font-icons {
  font-size: 12px;
  margin: 0;
}
.bt-icon:hover {
  color: #7367F0;
}
.bt-icon.size-2 {
  width: 16px;
  height: 16px;
}
.bt-icon.size-2 .font-icons {
  font-size: 16px;
}
.bt-icon.size-3 {
  width: 24px;
  height: 24px;
}
.bt-icon.size-3 .font-icons {
  font-size: 20px;
}
.bt-icon.transparent {
  width: 38px;
  height: 38px;
  background: none;
  border-radius: 0px !important;
}
.bt-icon.red {
  color: #FF4445;
  background: none;
  box-shadow: 0 0 0 1px #FF4445 inset;
}
.bt-icon.red:hover {
  background: #FF4445;
  color: #fff;
}

.link {
  cursor: pointer;
  color: inherit;
}
.link:hover {
  color: inherit;
}
.link.no-underline {
  text-decoration: none;
}
.link.no-underline:hover {
  text-decoration: none;
}
.link * {
  vertical-align: middle;
}
.link * + * {
  margin-left: 5px;
}
.link.color-primary {
  color: #7367F0;
}

button.link, .button.link {
  min-width: 100px;
  min-height: 48px;
  font-weight: 500;
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
}

.bt-grey-lite {
  transition: 0.3s ease-out all;
  display: inline-flex;
  gap: 8px;
  justify-content: center;
  vertical-align: middle;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  align-items: center;
  -webkit-appearance: none;
  font-size: 14px;
  font-weight: 500;
  color: #222222;
  min-width: 100px;
  min-height: 48px;
  background: #eeeeee;
  border-radius: 5px;
  border: none;
  box-shadow: 0 0 0 2px transparent;
  text-align: center;
  padding: 8px 18px;
  white-space: nowrap;
  box-sizing: border-box;
  line-height: 1.2;
  box-shadow: none;
}
.bt-grey-lite:not(button) {
  display: inline-flex;
  justify-content: center;
}
.bt-grey-lite:not([disabled]):hover, .bt-grey-lite:not([disabled]):active, .bt-grey-lite:not([disabled]):focus {
  outline: none;
  text-decoration: none;
}
.bt-grey-lite:not([disabled]):hover, .bt-grey-lite:not([disabled]):active, .bt-grey-lite:not([disabled]).active {
  color: #fff;
}
.bt-grey-lite:not([disabled]):hover {
  box-shadow: 0 4px 14px rgba(115, 103, 240, 0.38);
}
.bt-grey-lite:not([disabled]):active {
  background: linear-gradient(45deg, #5E50EE 0%, #5E50EE 100%);
}
.bt-grey-lite * {
  font-size: inherit;
}
.bt-grey-lite .img-holder {
  width: 53px;
  height: 53px;
  padding: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1000px;
  overflow: hidden;
}
.bt-grey-lite .font-icons, .bt-grey-lite [class*=icon-], .bt-grey-lite .fa {
  font-size: 12px;
  color: inherit;
}
.bt-grey-lite .font-icons.icon-arrow-down-left, .bt-grey-lite .font-icons.icon-arrow-up-right, .bt-grey-lite [class*=icon-].icon-arrow-down-left, .bt-grey-lite [class*=icon-].icon-arrow-up-right, .bt-grey-lite .fa.icon-arrow-down-left, .bt-grey-lite .fa.icon-arrow-up-right {
  font-size: 8px;
}
.bt-grey-lite[disabled] {
  cursor: not-allowed;
  filter: alpha(opacity=65);
  opacity: 0.65;
}
.bt-grey-lite.size-max {
  flex-grow: 1;
}
.bt-grey-lite svg {
  max-width: 12px;
  max-height: 12px;
}
.bt-grey-lite.icon {
  min-width: unset;
  min-height: unset;
  width: 48px;
  height: 48px;
  padding: 0;
}
.bt-grey-lite.icon .font-icons {
  margin: 0;
}
.bt-grey-lite.icon-bg {
  padding-right: 7px;
  justify-content: space-between;
}
.bt-grey-lite.icon-bg .font-icons {
  font-size: 14px;
  color: #fff;
}
.bt-grey-lite.icon-bg .font-icons:not(.no-bg) {
  border-radius: 1000px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #533316;
  width: 26px;
  height: 26px;
}
.bt-grey-lite.icon-bg span {
  vertical-align: middle;
}
.bt-grey-lite.icon-bg * + * {
  margin-left: 15px;
}
.bt-grey-lite.size-1 {
  min-width: 200px;
}
.bt-grey-lite.size-2 {
  min-width: 175px;
  min-height: 34px;
}
.bt-grey-lite.size-3 {
  min-width: 150px;
}
.bt-grey-lite.size-max {
  flex-grow: 1;
}
.bt-grey-lite.max-width {
  width: 100%;
}
.bt-grey-lite.rounded {
  border-radius: 4px;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}
.bt-grey-lite.rounded .font-icons + span {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #fff;
  padding-left: 12px;
  width: 95px;
  margin-left: 12px;
  text-align: center;
}
.bt-grey-lite.link-view {
  text-transform: capitalize;
  text-decoration: underline;
}
.bt-grey-lite.link-view:hover {
  text-decoration: none;
}
.bt-grey-lite .loader {
  width: 16px;
  height: 16px;
  border-width: 2px;
}

.buttons-holder {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.buttons-holder.size-max {
  flex-grow: 1;
}
.buttons-holder.direction-vertical {
  flex-direction: column;
}
.buttons-holder.direction-vertical > * {
  width: auto;
}
.buttons-holder.inline {
  display: inline-flex;
}
.buttons-holder.justify-center {
  justify-content: center;
}
.buttons-holder.justify-right {
  justify-content: right;
}
.buttons-holder.align-center {
  align-items: center;
}
.buttons-holder.align-left {
  align-items: flex-start;
}

/*
.font-face(
  @font-name: 'Tahoma',
  @font-family: 'Tahoma',
  @font-path: '/catalog/view/theme/default/assets/fonts/tahoma',
  @font-weight: 400,
  @font-style: 'normal'
);

.font-face(
  @font-name: 'Tahoma-Bold',
  @font-family: 'Tahoma',
  @font-path: '/catalog/view/theme/default/assets/fonts/tahoma',
  @font-weight: 600,
  @font-style: 'normal'
);
 */
@font-face {
  font-family: "font-icons";
  src: url("/fonts/font-icons/fonts/icomoon.eot");
  src: url("/fonts/font-icons/fonts/icomoon.eot?#iefix") format("embedded-opentype"), url("/fonts/font-icons/fonts/icomoon.ttf") format("truetype"), url("/fonts/font-icons/fonts/icomoon.svg") format("svg");
  font-weight: "normal";
  font-style: "normal";
}
.font-icons {
  position: relative;
  display: inline-flex;
  line-height: 100%;
}
.font-icons:before, .font-icons:after {
  flex-shrink: 0;
  font-family: "font-icons";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: inherit;
  width: auto;
  line-height: 100%;
}

.icon-chevron-up:before {
  content: "\e93a";
}

.icon-chevron-down:before {
  content: "\e93d";
}

.icon-clock:before {
  content: "\e937";
}

.icon-key:before {
  content: "\e938";
}

.icon-convert:before {
  content: "\e93b";
}

.icon-money-change:before {
  content: "\e93c";
}

.icon-settings:before {
  content: "\e934";
}

.icon-link-2:before {
  content: "\e935";
}

.icon-duuble-chevron-right:before {
  content: "\e936";
}

.icon-case:before {
  content: "\e939";
}

.icon-alert-circle:before {
  content: "\e933";
}

.icon-refresh:before {
  content: "\e932";
}

.icon-success:before {
  content: "\e931";
}

.icon-book:before {
  content: "\e92f";
}

.icon-minus-flat:before {
  content: "\e930";
}

.icon-curve-down-arrow:before {
  content: "\e92d";
}

.icon-curve-up-arrow:before {
  content: "\e92e";
}

.icon-cancel-thick:before {
  content: "\e92c";
}

.icon-arrow-down-left-thick:before {
  content: "\e927";
}

.icon-arrow-up-right-thick:before {
  content: "\e928";
}

.icon-time-thick:before {
  content: "\e92a";
}

.icon-check-thick:before {
  content: "\e92b";
}

.icon-alert-thick:before {
  content: "\e929";
}

.icon-arrow-left:before {
  content: "\e926";
}

.icon-burger:before {
  content: "\e923";
}

.icon-sort:before {
  content: "\e924";
}

.icon-filter:before {
  content: "\e925";
}

.icon-chevron-right:before {
  content: "\e921";
}

.icon-chevron-left:before {
  content: "\e922";
}

.icon-floppy-disk:before {
  content: "\e920";
}

.icon-doc:before {
  content: "\e91e";
}

.icon-squares:before {
  content: "\e91f";
}

.icon-upload:before {
  content: "\e91d";
}

.icon-arrow-right:before {
  content: "\e91c";
}

.icon-arrow-rounded-down-left:before {
  content: "\e91a";
}

.icon-arrow-rounded-up-right:before {
  content: "\e91b";
}

.icon-arrow-up-right:before {
  content: "\e918";
}

.icon-arrow-down-left:before {
  content: "\e919";
}

.icon-plus-2:before {
  content: "\e915";
}

.icon-edit:before {
  content: "\e916";
}

.icon-lock:before {
  content: "\e917";
}

.icon-diskette:before {
  content: "\e914";
}

.icon-plus:before {
  content: "\e913";
}

.icon-trash:before {
  content: "\e912";
}

.icon-close-no-bg:before {
  content: "\e911";
}

.icon-process:before {
  content: "\e910";
}

.icon-alert:before {
  content: "\e90f";
}

.icon-pencil:before {
  content: "\e90e";
}

.icon-copy:before {
  content: "\e90c";
}

.icon-time:before {
  content: "\e909";
}

.icon-close:before {
  content: "\e90d";
}

.icon-info:before {
  content: "\e903";
}

.icon-minus:before {
  content: "\e907";
}

.icon-credit-card:before {
  content: "\e905";
}

.icon-download:before {
  content: "\e906";
}

.icon-link:before {
  content: "\e908";
}

.icon-notification:before {
  content: "\e90a";
}

.icon-smartphone:before {
  content: "\e90b";
}

.icon-calendar:before {
  content: "\e904";
}

.icon-magnifying-glass:before {
  content: "\e902";
}

.icon-circle-plus:before {
  content: "\e901";
}

.icon-circle-check:before {
  content: "\e900";
}

/*

.font-icon(@icon) {
  content: @icon;
  font-family: @icon-font-family;
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: inherit;
  width: auto;
  line-height: 1em;
}
 */
h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  color: #5E5873;
}

.heading-caption {
  font-size: inherit;
  font-weight: 500;
  color: inherit;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  margin-bottom: 0.8em;
  position: relative;
  line-height: 1.2;
  margin-top: 0;
  letter-spacing: initial;
}
.heading-caption a {
  color: inherit;
}
.heading-caption.center {
  text-align: center;
}
.heading-caption.s-2 {
  font-size: 28px;
}
.heading-caption.s-2-2 {
  font-size: 24px;
}
.heading-caption.s-3 {
  font-size: 21px;
}
.heading-caption.s-4 {
  font-size: 18px;
}
.heading-caption.s-5 {
  font-size: 16px;
}
.heading-caption.s-6 {
  font-size: 14px;
}
.heading-caption.s-7 {
  font-size: 12px;
}
.heading-caption.full-width {
  min-width: 290px;
  width: auto;
}
.heading-caption.regular {
  font-weight: 400;
}
.heading-caption.bold {
  font-weight: 600;
}
.heading-caption.bold-extra {
  font-weight: 700;
}
.heading-caption.uppercase {
  text-transform: uppercase;
}
.heading-caption.no-margin {
  margin: 0;
}
.heading-caption.capitalize:first-letter {
  text-transform: capitalize;
}
.heading-caption.brake-all {
  word-break: break-all;
}
.heading-caption.primary-color {
  color: #7367F0;
}
.heading-caption.gray-color {
  color: #6E6B7B;
}

.heading-block {
  margin-bottom: 30px;
}
.heading-block.no-margin {
  margin: 0;
}
.heading-block.justify-center {
  display: grid;
  justify-items: center;
  grid-gap: 30px;
}
.heading-block .heading-caption {
  margin: 0;
}
.field {
  font-size: 16px;
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  flex-grow: 1;
  align-items: center;
  color: #5E5873;
}
.field label {
  display: block;
  color: #5E5873;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  margin: 0 0 5px 0;
}
.field label span {
  font-weight: 400;
  font-size: 16px;
}
.field .react-select {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.field .react-select .select__control {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #D8D6DE;
}
.field .input-block {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  transition: 0.3s ease-out all;
  min-height: 38px;
  padding: 0 15px;
  font-weight: 400;
  line-height: 1.5;
  background: #FFFFFF;
  border: 1px solid #D8D6DE;
  border-radius: 5px;
}
.field .input-block input[type=text], .field .input-block input[type=number], .field .input-block input[type=email], .field .input-block input[type=tel], .field .input-block input[type=date], .field .input-block input[type=datetime], .field .input-block input[type=time], .field .input-block input[type=password], .field .input-block input[type=search], .field .input-block textarea {
  border: none;
  background: none;
  border-radius: 0;
  width: 0;
  padding: 0;
  max-width: 100%;
  box-sizing: border-box;
  box-shadow: none !important;
  min-height: 36px;
  display: flex;
  font-size: inherit;
  font-weight: 500;
  flex-grow: 1;
  color: inherit;
  outline: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
.field .input-block input[type=text]::-webkit-outer-spin-button, .field .input-block input[type=text]::-webkit-inner-spin-button, .field .input-block input[type=number]::-webkit-outer-spin-button, .field .input-block input[type=number]::-webkit-inner-spin-button, .field .input-block input[type=email]::-webkit-outer-spin-button, .field .input-block input[type=email]::-webkit-inner-spin-button, .field .input-block input[type=tel]::-webkit-outer-spin-button, .field .input-block input[type=tel]::-webkit-inner-spin-button, .field .input-block input[type=date]::-webkit-outer-spin-button, .field .input-block input[type=date]::-webkit-inner-spin-button, .field .input-block input[type=datetime]::-webkit-outer-spin-button, .field .input-block input[type=datetime]::-webkit-inner-spin-button, .field .input-block input[type=time]::-webkit-outer-spin-button, .field .input-block input[type=time]::-webkit-inner-spin-button, .field .input-block input[type=password]::-webkit-outer-spin-button, .field .input-block input[type=password]::-webkit-inner-spin-button, .field .input-block input[type=search]::-webkit-outer-spin-button, .field .input-block input[type=search]::-webkit-inner-spin-button, .field .input-block textarea::-webkit-outer-spin-button, .field .input-block textarea::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.field .input-block input[type=text]::placeholder, .field .input-block input[type=number]::placeholder, .field .input-block input[type=email]::placeholder, .field .input-block input[type=tel]::placeholder, .field .input-block input[type=date]::placeholder, .field .input-block input[type=datetime]::placeholder, .field .input-block input[type=time]::placeholder, .field .input-block input[type=password]::placeholder, .field .input-block input[type=search]::placeholder, .field .input-block textarea::placeholder {
  color: #B9B9C3;
  font-size: 16px;
  font-weight: 300;
  opacity: 1;
}
.field .input-block input[type=number] {
  -moz-appearance: textfield;
}
.field .input-block textarea {
  height: 80px;
}
.field .input-block.password-visible .icon-eye {
  color: #5E5873;
}
.field .input-block:after {
  font-family: "font-icons";
  font-style: normal;
  font-weight: normal;
  speak: none;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 25px;
  height: 25px;
  font-size: 10px;
  line-height: 100%;
  border-radius: 1000px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-right: 10px;
}
.field .input-block .show-password {
  cursor: pointer;
  font-size: 15px;
  color: #CCCCCC;
  margin-right: 10px;
}
.field .input-block.textarea {
  align-items: flex-start;
  padding-top: 12px;
  padding-bottom: 12px;
}
.field .input-block .font-icons {
  margin-right: 12px;
  color: #a1a8aa;
  font-size: 14px;
}
.field .input-block .font-icons.icon-eye {
  margin-right: 0;
  margin-left: 12px;
  cursor: pointer;
}
.field .input-block .font-icons.status {
  display: none;
  margin-right: 0;
}
.field .message {
  display: block;
  font-family: inherit;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.3;
  margin-top: 2px;
  padding: 0;
}
.field .message.error {
  color: #ff3a3a;
}
.field.disabled .input-block {
  background: #EFEFEF;
}
.field.disabled .input-block input {
  cursor: not-allowed;
  -webkit-text-fill-color: #B9B9C3;
  opacity: 1; /* required on iOS */
  color: #B9B9C3;
}
.field.disabled .input-block input::placeholder {
  color: #B9B9C3;
  font-size: inherit;
  font-weight: 300;
  opacity: 1;
}
.field.disabled .select__control {
  background: #EFEFEF;
  cursor: not-allowed;
  -webkit-text-fill-color: #B9B9C3;
  opacity: 1; /* required on iOS */
  color: #B9B9C3;
}
.field.disabled .select__control::placeholder {
  color: #B9B9C3;
  font-size: inherit;
  font-weight: 300;
  opacity: 1;
}
.field.disabled .select__control:hover {
  cursor: not-allowed;
}
.field.error .input-block {
  border-color: #ff3a3a;
}
.field.error .react-select .select__control {
  border-color: #ff3a3a;
}
.field.error .message {
  color: #ff3a3a;
}
.field.error .font-icons.status {
  color: #ff3a3a;
  display: inline-flex;
}
.field.error .font-icons.status:before {
  content: "\e818";
}
.field.success .message {
  color: #5db553;
}
.field.success .font-icons.status {
  color: #5db553;
  display: inline-flex;
}
.field.success .font-icons.status:before {
  content: "\e806";
}
.field.required .input-block {
  position: relative;
}
.field.required .input-block:before {
  content: "*";
  display: block;
  position: absolute;
  top: 3px;
  left: 4px;
  color: #ff3a3a;
  line-height: 100%;
}
.field.focus .input-block {
  border-color: #5E5873;
}
.field.form-group .group {
  display: flex;
  align-items: stretch;
  border-radius: 6px;
  width: 100%;
}
.field.form-group .group > * {
  border-radius: 0;
}
.field.form-group .group > *:not([class*=bt]) {
  box-shadow: none;
}
.field.form-group .group > *:first-child {
  border-radius: 6px 0 0 6px;
}
.field.form-group .group > *:last-child {
  flex-shrink: 0;
  border-radius: 0 6px 6px 0;
}
.field.form-group .group .input-block {
  flex-grow: 1;
}

.field-group label {
  display: block;
  color: #5E5873;
  font-weight: 500;
  font-size: 10px;
  line-height: 1.2;
  margin: 0 0 5px 0;
}
.field-group label span {
  font-weight: 400;
  font-size: 16px;
}
.field-group .columns-grid {
  align-items: center;
  gap: 10px;
  grid-template-columns: 3fr auto auto;
}

.field-row + * {
  margin-top: 16px;
}

.select {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  appearance: none;
  background-position: calc(100% - 15px) center;
  background-size: 15px 17px;
  background-repeat: no-repeat;
  transition: 0.3s ease-out all;
  background-color: #fff;
  text-overflow: ellipsis;
  border: 1px solid #dddddd;
  border-radius: 4px;
  min-height: 42px;
  padding: 0 45px 0 15px;
  font-weight: 400;
  line-height: 42px;
  /* Hide arrow icon in IE browsers */
  /* Hover style */
  /* Focus style */
  /* Set options to normal weight */
  /* Disabled styles */
}
.select::-ms-expand {
  display: none;
}
.select:focus {
  border-color: #aaa;
  outline: none;
}
.select option {
  font-weight: normal;
  color: #5E5873;
}
.select:disabled, .select[aria-disabled=true] {
  color: graytext;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22graytext%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E"), linear-gradient(to bottom, #ffffff 0%, #e5e5e5 100%);
}
.select:disabled:hover, .select[aria-disabled=true] {
  border-color: #aaa;
}

.form-control, .form-select {
  font-size: 12px;
}

.react-datepicker-wrapper .react-datepicker__close-icon:after {
  background-color: #7367f0;
}

.form-check {
  cursor: pointer;
}
.form-check .form-check-input {
  cursor: pointer;
}
.form-check .message {
  display: block;
  font-family: inherit;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.3;
  margin-top: 2px;
  padding: 0;
}
.form-check .message.error {
  color: #ff3a3a;
}

.form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: inherit;
}

.form-check-label.form-label {
  font-size: 14px;
  font-weight: 400;
}

.form-switch {
  margin: 0;
  padding: 0;
}
.form-switch .form-check-input {
  margin: 0;
  cursor: pointer;
}

.form .field + .text-forgot {
  margin-top: 16px;
}
.form .text-block {
  font-size: 18px;
  color: #EA5455;
  margin-bottom: 25px;
}
.form .text-forgot {
  text-align: center;
  color: #EA5455;
  display: block;
  margin-top: 20px;
}
.form .text-forgot + * {
  margin-top: 20px;
}
.form .buttons-part {
  margin-top: 20px;
}
.form .form-info {
  margin-top: 30px;
  font-size: 12px;
}
.form .form-info > * + * {
  margin-top: 2px;
  margin-bottom: 0;
}

body {
  color: #5E5873;
  font-size: 14px;
}

.columns-row {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 15px;
}
.columns-row.size-1 {
  width: 108.3333333333px;
}
.columns-row.size-2 {
  width: 216.6666666667px;
}
.columns-row.size-3 {
  width: 325px;
}
.columns-row.size-4 {
  width: 433.3333333333px;
}
.columns-row.size-5 {
  width: 541.6666666667px;
}
.columns-row.size-6 {
  width: 650px;
}
.columns-row.size-7 {
  width: 758.3333333333px;
}
.columns-row.size-8 {
  width: 866.6666666667px;
}
.columns-row.size-9 {
  width: 975px;
}
.columns-row.size-10 {
  width: 1083.3333333333px;
}
.columns-row.size-11 {
  width: 1191.6666666667px;
}
.columns-row.size-12 {
  width: 1300px;
}
@media (max-width: 1200px) {
  .columns-row.size-lg-1 {
    width: 108.3333333333px;
  }
  .columns-row.size-lg-2 {
    width: 216.6666666667px;
  }
  .columns-row.size-lg-3 {
    width: 325px;
  }
  .columns-row.size-lg-4 {
    width: 433.3333333333px;
  }
  .columns-row.size-lg-5 {
    width: 541.6666666667px;
  }
  .columns-row.size-lg-6 {
    width: 650px;
  }
  .columns-row.size-lg-7 {
    width: 758.3333333333px;
  }
  .columns-row.size-lg-8 {
    width: 866.6666666667px;
  }
  .columns-row.size-lg-9 {
    width: 975px;
  }
  .columns-row.size-lg-10 {
    width: 1083.3333333333px;
  }
  .columns-row.size-lg-11 {
    width: 1191.6666666667px;
  }
  .columns-row.size-lg-12 {
    width: 1300px;
  }
}
@media (max-width: 992px) {
  .columns-row.size-md-1 {
    width: 108.3333333333px;
  }
  .columns-row.size-md-2 {
    width: 216.6666666667px;
  }
  .columns-row.size-md-3 {
    width: 325px;
  }
  .columns-row.size-md-4 {
    width: 433.3333333333px;
  }
  .columns-row.size-md-5 {
    width: 541.6666666667px;
  }
  .columns-row.size-md-6 {
    width: 650px;
  }
  .columns-row.size-md-7 {
    width: 758.3333333333px;
  }
  .columns-row.size-md-8 {
    width: 866.6666666667px;
  }
  .columns-row.size-md-9 {
    width: 975px;
  }
  .columns-row.size-md-10 {
    width: 1083.3333333333px;
  }
  .columns-row.size-md-11 {
    width: 1191.6666666667px;
  }
  .columns-row.size-md-12 {
    width: 1300px;
  }
}
@media (max-width: 768px) {
  .columns-row.size-sm-1 {
    width: 108.3333333333px;
  }
  .columns-row.size-sm-2 {
    width: 216.6666666667px;
  }
  .columns-row.size-sm-3 {
    width: 325px;
  }
  .columns-row.size-sm-4 {
    width: 433.3333333333px;
  }
  .columns-row.size-sm-5 {
    width: 541.6666666667px;
  }
  .columns-row.size-sm-6 {
    width: 650px;
  }
  .columns-row.size-sm-7 {
    width: 758.3333333333px;
  }
  .columns-row.size-sm-8 {
    width: 866.6666666667px;
  }
  .columns-row.size-sm-9 {
    width: 975px;
  }
  .columns-row.size-sm-10 {
    width: 1083.3333333333px;
  }
  .columns-row.size-sm-11 {
    width: 1191.6666666667px;
  }
  .columns-row.size-sm-12 {
    width: 1300px;
  }
}
@media (max-width: 576px) {
  .columns-row.size-xs-1 {
    width: 108.3333333333px;
  }
  .columns-row.size-xs-2 {
    width: 216.6666666667px;
  }
  .columns-row.size-xs-3 {
    width: 325px;
  }
  .columns-row.size-xs-4 {
    width: 433.3333333333px;
  }
  .columns-row.size-xs-5 {
    width: 541.6666666667px;
  }
  .columns-row.size-xs-6 {
    width: 650px;
  }
  .columns-row.size-xs-7 {
    width: 758.3333333333px;
  }
  .columns-row.size-xs-8 {
    width: 866.6666666667px;
  }
  .columns-row.size-xs-9 {
    width: 975px;
  }
  .columns-row.size-xs-10 {
    width: 1083.3333333333px;
  }
  .columns-row.size-xs-11 {
    width: 1191.6666666667px;
  }
  .columns-row.size-xs-12 {
    width: 1300px;
  }
}
.columns-row > .column {
  flex-shrink: 0;
  flex-grow: 0;
}
.columns-row > .column.order-1 {
  order: 1;
}
.columns-row > .column.size-1 {
  flex-basis: calc(8.3333333333% - 13.75px);
  max-width: calc(8.3333333333% - 13.75px);
}
.columns-row > .column.order-2 {
  order: 2;
}
.columns-row > .column.size-2 {
  flex-basis: calc(16.6666666667% - 12.5px);
  max-width: calc(16.6666666667% - 12.5px);
}
.columns-row > .column.order-3 {
  order: 3;
}
.columns-row > .column.size-3 {
  flex-basis: calc(25% - 11.25px);
  max-width: calc(25% - 11.25px);
}
.columns-row > .column.order-4 {
  order: 4;
}
.columns-row > .column.size-4 {
  flex-basis: calc(33.3333333333% - 10px);
  max-width: calc(33.3333333333% - 10px);
}
.columns-row > .column.order-5 {
  order: 5;
}
.columns-row > .column.size-5 {
  flex-basis: calc(41.6666666667% - 8.75px);
  max-width: calc(41.6666666667% - 8.75px);
}
.columns-row > .column.order-6 {
  order: 6;
}
.columns-row > .column.size-6 {
  flex-basis: calc(50% - 7.5px);
  max-width: calc(50% - 7.5px);
}
.columns-row > .column.order-7 {
  order: 7;
}
.columns-row > .column.size-7 {
  flex-basis: calc(58.3333333333% - 6.25px);
  max-width: calc(58.3333333333% - 6.25px);
}
.columns-row > .column.order-8 {
  order: 8;
}
.columns-row > .column.size-8 {
  flex-basis: calc(66.6666666667% - 5px);
  max-width: calc(66.6666666667% - 5px);
}
.columns-row > .column.order-9 {
  order: 9;
}
.columns-row > .column.size-9 {
  flex-basis: calc(75% - 3.75px);
  max-width: calc(75% - 3.75px);
}
.columns-row > .column.order-10 {
  order: 10;
}
.columns-row > .column.size-10 {
  flex-basis: calc(83.3333333333% - 2.5px);
  max-width: calc(83.3333333333% - 2.5px);
}
.columns-row > .column.order-11 {
  order: 11;
}
.columns-row > .column.size-11 {
  flex-basis: calc(91.6666666667% - 1.25px);
  max-width: calc(91.6666666667% - 1.25px);
}
.columns-row > .column.order-12 {
  order: 12;
}
.columns-row > .column.size-12 {
  flex-basis: calc(100% - 0px);
  max-width: calc(100% - 0px);
}
@media (max-width: 1200px) {
  .columns-row > .column.order-lg-1 {
    order: 1;
  }
  .columns-row > .column.size-lg-1 {
    flex-basis: calc(8.3333333333% - 13.75px);
    max-width: calc(8.3333333333% - 13.75px);
  }
  .columns-row > .column.order-lg-2 {
    order: 2;
  }
  .columns-row > .column.size-lg-2 {
    flex-basis: calc(16.6666666667% - 12.5px);
    max-width: calc(16.6666666667% - 12.5px);
  }
  .columns-row > .column.order-lg-3 {
    order: 3;
  }
  .columns-row > .column.size-lg-3 {
    flex-basis: calc(25% - 11.25px);
    max-width: calc(25% - 11.25px);
  }
  .columns-row > .column.order-lg-4 {
    order: 4;
  }
  .columns-row > .column.size-lg-4 {
    flex-basis: calc(33.3333333333% - 10px);
    max-width: calc(33.3333333333% - 10px);
  }
  .columns-row > .column.order-lg-5 {
    order: 5;
  }
  .columns-row > .column.size-lg-5 {
    flex-basis: calc(41.6666666667% - 8.75px);
    max-width: calc(41.6666666667% - 8.75px);
  }
  .columns-row > .column.order-lg-6 {
    order: 6;
  }
  .columns-row > .column.size-lg-6 {
    flex-basis: calc(50% - 7.5px);
    max-width: calc(50% - 7.5px);
  }
  .columns-row > .column.order-lg-7 {
    order: 7;
  }
  .columns-row > .column.size-lg-7 {
    flex-basis: calc(58.3333333333% - 6.25px);
    max-width: calc(58.3333333333% - 6.25px);
  }
  .columns-row > .column.order-lg-8 {
    order: 8;
  }
  .columns-row > .column.size-lg-8 {
    flex-basis: calc(66.6666666667% - 5px);
    max-width: calc(66.6666666667% - 5px);
  }
  .columns-row > .column.order-lg-9 {
    order: 9;
  }
  .columns-row > .column.size-lg-9 {
    flex-basis: calc(75% - 3.75px);
    max-width: calc(75% - 3.75px);
  }
  .columns-row > .column.order-lg-10 {
    order: 10;
  }
  .columns-row > .column.size-lg-10 {
    flex-basis: calc(83.3333333333% - 2.5px);
    max-width: calc(83.3333333333% - 2.5px);
  }
  .columns-row > .column.order-lg-11 {
    order: 11;
  }
  .columns-row > .column.size-lg-11 {
    flex-basis: calc(91.6666666667% - 1.25px);
    max-width: calc(91.6666666667% - 1.25px);
  }
  .columns-row > .column.order-lg-12 {
    order: 12;
  }
  .columns-row > .column.size-lg-12 {
    flex-basis: calc(100% - 0px);
    max-width: calc(100% - 0px);
  }
}
@media (max-width: 992px) {
  .columns-row > .column.order-md-1 {
    order: 1;
  }
  .columns-row > .column.size-md-1 {
    flex-basis: calc(8.3333333333% - 13.75px);
    max-width: calc(8.3333333333% - 13.75px);
  }
  .columns-row > .column.order-md-2 {
    order: 2;
  }
  .columns-row > .column.size-md-2 {
    flex-basis: calc(16.6666666667% - 12.5px);
    max-width: calc(16.6666666667% - 12.5px);
  }
  .columns-row > .column.order-md-3 {
    order: 3;
  }
  .columns-row > .column.size-md-3 {
    flex-basis: calc(25% - 11.25px);
    max-width: calc(25% - 11.25px);
  }
  .columns-row > .column.order-md-4 {
    order: 4;
  }
  .columns-row > .column.size-md-4 {
    flex-basis: calc(33.3333333333% - 10px);
    max-width: calc(33.3333333333% - 10px);
  }
  .columns-row > .column.order-md-5 {
    order: 5;
  }
  .columns-row > .column.size-md-5 {
    flex-basis: calc(41.6666666667% - 8.75px);
    max-width: calc(41.6666666667% - 8.75px);
  }
  .columns-row > .column.order-md-6 {
    order: 6;
  }
  .columns-row > .column.size-md-6 {
    flex-basis: calc(50% - 7.5px);
    max-width: calc(50% - 7.5px);
  }
  .columns-row > .column.order-md-7 {
    order: 7;
  }
  .columns-row > .column.size-md-7 {
    flex-basis: calc(58.3333333333% - 6.25px);
    max-width: calc(58.3333333333% - 6.25px);
  }
  .columns-row > .column.order-md-8 {
    order: 8;
  }
  .columns-row > .column.size-md-8 {
    flex-basis: calc(66.6666666667% - 5px);
    max-width: calc(66.6666666667% - 5px);
  }
  .columns-row > .column.order-md-9 {
    order: 9;
  }
  .columns-row > .column.size-md-9 {
    flex-basis: calc(75% - 3.75px);
    max-width: calc(75% - 3.75px);
  }
  .columns-row > .column.order-md-10 {
    order: 10;
  }
  .columns-row > .column.size-md-10 {
    flex-basis: calc(83.3333333333% - 2.5px);
    max-width: calc(83.3333333333% - 2.5px);
  }
  .columns-row > .column.order-md-11 {
    order: 11;
  }
  .columns-row > .column.size-md-11 {
    flex-basis: calc(91.6666666667% - 1.25px);
    max-width: calc(91.6666666667% - 1.25px);
  }
  .columns-row > .column.order-md-12 {
    order: 12;
  }
  .columns-row > .column.size-md-12 {
    flex-basis: calc(100% - 0px);
    max-width: calc(100% - 0px);
  }
}
@media (max-width: 768px) {
  .columns-row > .column.order-sm-1 {
    order: 1;
  }
  .columns-row > .column.size-sm-1 {
    flex-basis: calc(8.3333333333% - 13.75px);
    max-width: calc(8.3333333333% - 13.75px);
  }
  .columns-row > .column.order-sm-2 {
    order: 2;
  }
  .columns-row > .column.size-sm-2 {
    flex-basis: calc(16.6666666667% - 12.5px);
    max-width: calc(16.6666666667% - 12.5px);
  }
  .columns-row > .column.order-sm-3 {
    order: 3;
  }
  .columns-row > .column.size-sm-3 {
    flex-basis: calc(25% - 11.25px);
    max-width: calc(25% - 11.25px);
  }
  .columns-row > .column.order-sm-4 {
    order: 4;
  }
  .columns-row > .column.size-sm-4 {
    flex-basis: calc(33.3333333333% - 10px);
    max-width: calc(33.3333333333% - 10px);
  }
  .columns-row > .column.order-sm-5 {
    order: 5;
  }
  .columns-row > .column.size-sm-5 {
    flex-basis: calc(41.6666666667% - 8.75px);
    max-width: calc(41.6666666667% - 8.75px);
  }
  .columns-row > .column.order-sm-6 {
    order: 6;
  }
  .columns-row > .column.size-sm-6 {
    flex-basis: calc(50% - 7.5px);
    max-width: calc(50% - 7.5px);
  }
  .columns-row > .column.order-sm-7 {
    order: 7;
  }
  .columns-row > .column.size-sm-7 {
    flex-basis: calc(58.3333333333% - 6.25px);
    max-width: calc(58.3333333333% - 6.25px);
  }
  .columns-row > .column.order-sm-8 {
    order: 8;
  }
  .columns-row > .column.size-sm-8 {
    flex-basis: calc(66.6666666667% - 5px);
    max-width: calc(66.6666666667% - 5px);
  }
  .columns-row > .column.order-sm-9 {
    order: 9;
  }
  .columns-row > .column.size-sm-9 {
    flex-basis: calc(75% - 3.75px);
    max-width: calc(75% - 3.75px);
  }
  .columns-row > .column.order-sm-10 {
    order: 10;
  }
  .columns-row > .column.size-sm-10 {
    flex-basis: calc(83.3333333333% - 2.5px);
    max-width: calc(83.3333333333% - 2.5px);
  }
  .columns-row > .column.order-sm-11 {
    order: 11;
  }
  .columns-row > .column.size-sm-11 {
    flex-basis: calc(91.6666666667% - 1.25px);
    max-width: calc(91.6666666667% - 1.25px);
  }
  .columns-row > .column.order-sm-12 {
    order: 12;
  }
  .columns-row > .column.size-sm-12 {
    flex-basis: calc(100% - 0px);
    max-width: calc(100% - 0px);
  }
}
@media (max-width: 576px) {
  .columns-row > .column.order-xs-1 {
    order: 1;
  }
  .columns-row > .column.size-xs-1 {
    flex-basis: calc(8.3333333333% - 13.75px);
    max-width: calc(8.3333333333% - 13.75px);
  }
  .columns-row > .column.order-xs-2 {
    order: 2;
  }
  .columns-row > .column.size-xs-2 {
    flex-basis: calc(16.6666666667% - 12.5px);
    max-width: calc(16.6666666667% - 12.5px);
  }
  .columns-row > .column.order-xs-3 {
    order: 3;
  }
  .columns-row > .column.size-xs-3 {
    flex-basis: calc(25% - 11.25px);
    max-width: calc(25% - 11.25px);
  }
  .columns-row > .column.order-xs-4 {
    order: 4;
  }
  .columns-row > .column.size-xs-4 {
    flex-basis: calc(33.3333333333% - 10px);
    max-width: calc(33.3333333333% - 10px);
  }
  .columns-row > .column.order-xs-5 {
    order: 5;
  }
  .columns-row > .column.size-xs-5 {
    flex-basis: calc(41.6666666667% - 8.75px);
    max-width: calc(41.6666666667% - 8.75px);
  }
  .columns-row > .column.order-xs-6 {
    order: 6;
  }
  .columns-row > .column.size-xs-6 {
    flex-basis: calc(50% - 7.5px);
    max-width: calc(50% - 7.5px);
  }
  .columns-row > .column.order-xs-7 {
    order: 7;
  }
  .columns-row > .column.size-xs-7 {
    flex-basis: calc(58.3333333333% - 6.25px);
    max-width: calc(58.3333333333% - 6.25px);
  }
  .columns-row > .column.order-xs-8 {
    order: 8;
  }
  .columns-row > .column.size-xs-8 {
    flex-basis: calc(66.6666666667% - 5px);
    max-width: calc(66.6666666667% - 5px);
  }
  .columns-row > .column.order-xs-9 {
    order: 9;
  }
  .columns-row > .column.size-xs-9 {
    flex-basis: calc(75% - 3.75px);
    max-width: calc(75% - 3.75px);
  }
  .columns-row > .column.order-xs-10 {
    order: 10;
  }
  .columns-row > .column.size-xs-10 {
    flex-basis: calc(83.3333333333% - 2.5px);
    max-width: calc(83.3333333333% - 2.5px);
  }
  .columns-row > .column.order-xs-11 {
    order: 11;
  }
  .columns-row > .column.size-xs-11 {
    flex-basis: calc(91.6666666667% - 1.25px);
    max-width: calc(91.6666666667% - 1.25px);
  }
  .columns-row > .column.order-xs-12 {
    order: 12;
  }
  .columns-row > .column.size-xs-12 {
    flex-basis: calc(100% - 0px);
    max-width: calc(100% - 0px);
  }
}
.columns-row.no-gap {
  gap: 0;
}
.columns-row.no-gap > .column.order-1 {
  order: 1;
}
.columns-row.no-gap > .column.size-1 {
  flex-basis: calc(8.3333333333% - 0px);
  max-width: calc(8.3333333333% - 0px);
}
.columns-row.no-gap > .column.order-2 {
  order: 2;
}
.columns-row.no-gap > .column.size-2 {
  flex-basis: calc(16.6666666667% - 0px);
  max-width: calc(16.6666666667% - 0px);
}
.columns-row.no-gap > .column.order-3 {
  order: 3;
}
.columns-row.no-gap > .column.size-3 {
  flex-basis: calc(25% - 0px);
  max-width: calc(25% - 0px);
}
.columns-row.no-gap > .column.order-4 {
  order: 4;
}
.columns-row.no-gap > .column.size-4 {
  flex-basis: calc(33.3333333333% - 0px);
  max-width: calc(33.3333333333% - 0px);
}
.columns-row.no-gap > .column.order-5 {
  order: 5;
}
.columns-row.no-gap > .column.size-5 {
  flex-basis: calc(41.6666666667% - 0px);
  max-width: calc(41.6666666667% - 0px);
}
.columns-row.no-gap > .column.order-6 {
  order: 6;
}
.columns-row.no-gap > .column.size-6 {
  flex-basis: calc(50% - 0px);
  max-width: calc(50% - 0px);
}
.columns-row.no-gap > .column.order-7 {
  order: 7;
}
.columns-row.no-gap > .column.size-7 {
  flex-basis: calc(58.3333333333% - 0px);
  max-width: calc(58.3333333333% - 0px);
}
.columns-row.no-gap > .column.order-8 {
  order: 8;
}
.columns-row.no-gap > .column.size-8 {
  flex-basis: calc(66.6666666667% - 0px);
  max-width: calc(66.6666666667% - 0px);
}
.columns-row.no-gap > .column.order-9 {
  order: 9;
}
.columns-row.no-gap > .column.size-9 {
  flex-basis: calc(75% - 0px);
  max-width: calc(75% - 0px);
}
.columns-row.no-gap > .column.order-10 {
  order: 10;
}
.columns-row.no-gap > .column.size-10 {
  flex-basis: calc(83.3333333333% - 0px);
  max-width: calc(83.3333333333% - 0px);
}
.columns-row.no-gap > .column.order-11 {
  order: 11;
}
.columns-row.no-gap > .column.size-11 {
  flex-basis: calc(91.6666666667% - 0px);
  max-width: calc(91.6666666667% - 0px);
}
.columns-row.no-gap > .column.order-12 {
  order: 12;
}
.columns-row.no-gap > .column.size-12 {
  flex-basis: calc(100% - 0px);
  max-width: calc(100% - 0px);
}
@media (max-width: 1200px) {
  .columns-row.no-gap > .column.order-lg-1 {
    order: 1;
  }
  .columns-row.no-gap > .column.size-lg-1 {
    flex-basis: calc(8.3333333333% - 0px);
    max-width: calc(8.3333333333% - 0px);
  }
  .columns-row.no-gap > .column.order-lg-2 {
    order: 2;
  }
  .columns-row.no-gap > .column.size-lg-2 {
    flex-basis: calc(16.6666666667% - 0px);
    max-width: calc(16.6666666667% - 0px);
  }
  .columns-row.no-gap > .column.order-lg-3 {
    order: 3;
  }
  .columns-row.no-gap > .column.size-lg-3 {
    flex-basis: calc(25% - 0px);
    max-width: calc(25% - 0px);
  }
  .columns-row.no-gap > .column.order-lg-4 {
    order: 4;
  }
  .columns-row.no-gap > .column.size-lg-4 {
    flex-basis: calc(33.3333333333% - 0px);
    max-width: calc(33.3333333333% - 0px);
  }
  .columns-row.no-gap > .column.order-lg-5 {
    order: 5;
  }
  .columns-row.no-gap > .column.size-lg-5 {
    flex-basis: calc(41.6666666667% - 0px);
    max-width: calc(41.6666666667% - 0px);
  }
  .columns-row.no-gap > .column.order-lg-6 {
    order: 6;
  }
  .columns-row.no-gap > .column.size-lg-6 {
    flex-basis: calc(50% - 0px);
    max-width: calc(50% - 0px);
  }
  .columns-row.no-gap > .column.order-lg-7 {
    order: 7;
  }
  .columns-row.no-gap > .column.size-lg-7 {
    flex-basis: calc(58.3333333333% - 0px);
    max-width: calc(58.3333333333% - 0px);
  }
  .columns-row.no-gap > .column.order-lg-8 {
    order: 8;
  }
  .columns-row.no-gap > .column.size-lg-8 {
    flex-basis: calc(66.6666666667% - 0px);
    max-width: calc(66.6666666667% - 0px);
  }
  .columns-row.no-gap > .column.order-lg-9 {
    order: 9;
  }
  .columns-row.no-gap > .column.size-lg-9 {
    flex-basis: calc(75% - 0px);
    max-width: calc(75% - 0px);
  }
  .columns-row.no-gap > .column.order-lg-10 {
    order: 10;
  }
  .columns-row.no-gap > .column.size-lg-10 {
    flex-basis: calc(83.3333333333% - 0px);
    max-width: calc(83.3333333333% - 0px);
  }
  .columns-row.no-gap > .column.order-lg-11 {
    order: 11;
  }
  .columns-row.no-gap > .column.size-lg-11 {
    flex-basis: calc(91.6666666667% - 0px);
    max-width: calc(91.6666666667% - 0px);
  }
  .columns-row.no-gap > .column.order-lg-12 {
    order: 12;
  }
  .columns-row.no-gap > .column.size-lg-12 {
    flex-basis: calc(100% - 0px);
    max-width: calc(100% - 0px);
  }
}
@media (max-width: 992px) {
  .columns-row.no-gap > .column.order-md-1 {
    order: 1;
  }
  .columns-row.no-gap > .column.size-md-1 {
    flex-basis: calc(8.3333333333% - 0px);
    max-width: calc(8.3333333333% - 0px);
  }
  .columns-row.no-gap > .column.order-md-2 {
    order: 2;
  }
  .columns-row.no-gap > .column.size-md-2 {
    flex-basis: calc(16.6666666667% - 0px);
    max-width: calc(16.6666666667% - 0px);
  }
  .columns-row.no-gap > .column.order-md-3 {
    order: 3;
  }
  .columns-row.no-gap > .column.size-md-3 {
    flex-basis: calc(25% - 0px);
    max-width: calc(25% - 0px);
  }
  .columns-row.no-gap > .column.order-md-4 {
    order: 4;
  }
  .columns-row.no-gap > .column.size-md-4 {
    flex-basis: calc(33.3333333333% - 0px);
    max-width: calc(33.3333333333% - 0px);
  }
  .columns-row.no-gap > .column.order-md-5 {
    order: 5;
  }
  .columns-row.no-gap > .column.size-md-5 {
    flex-basis: calc(41.6666666667% - 0px);
    max-width: calc(41.6666666667% - 0px);
  }
  .columns-row.no-gap > .column.order-md-6 {
    order: 6;
  }
  .columns-row.no-gap > .column.size-md-6 {
    flex-basis: calc(50% - 0px);
    max-width: calc(50% - 0px);
  }
  .columns-row.no-gap > .column.order-md-7 {
    order: 7;
  }
  .columns-row.no-gap > .column.size-md-7 {
    flex-basis: calc(58.3333333333% - 0px);
    max-width: calc(58.3333333333% - 0px);
  }
  .columns-row.no-gap > .column.order-md-8 {
    order: 8;
  }
  .columns-row.no-gap > .column.size-md-8 {
    flex-basis: calc(66.6666666667% - 0px);
    max-width: calc(66.6666666667% - 0px);
  }
  .columns-row.no-gap > .column.order-md-9 {
    order: 9;
  }
  .columns-row.no-gap > .column.size-md-9 {
    flex-basis: calc(75% - 0px);
    max-width: calc(75% - 0px);
  }
  .columns-row.no-gap > .column.order-md-10 {
    order: 10;
  }
  .columns-row.no-gap > .column.size-md-10 {
    flex-basis: calc(83.3333333333% - 0px);
    max-width: calc(83.3333333333% - 0px);
  }
  .columns-row.no-gap > .column.order-md-11 {
    order: 11;
  }
  .columns-row.no-gap > .column.size-md-11 {
    flex-basis: calc(91.6666666667% - 0px);
    max-width: calc(91.6666666667% - 0px);
  }
  .columns-row.no-gap > .column.order-md-12 {
    order: 12;
  }
  .columns-row.no-gap > .column.size-md-12 {
    flex-basis: calc(100% - 0px);
    max-width: calc(100% - 0px);
  }
}
@media (max-width: 768px) {
  .columns-row.no-gap > .column.order-sm-1 {
    order: 1;
  }
  .columns-row.no-gap > .column.size-sm-1 {
    flex-basis: calc(8.3333333333% - 0px);
    max-width: calc(8.3333333333% - 0px);
  }
  .columns-row.no-gap > .column.order-sm-2 {
    order: 2;
  }
  .columns-row.no-gap > .column.size-sm-2 {
    flex-basis: calc(16.6666666667% - 0px);
    max-width: calc(16.6666666667% - 0px);
  }
  .columns-row.no-gap > .column.order-sm-3 {
    order: 3;
  }
  .columns-row.no-gap > .column.size-sm-3 {
    flex-basis: calc(25% - 0px);
    max-width: calc(25% - 0px);
  }
  .columns-row.no-gap > .column.order-sm-4 {
    order: 4;
  }
  .columns-row.no-gap > .column.size-sm-4 {
    flex-basis: calc(33.3333333333% - 0px);
    max-width: calc(33.3333333333% - 0px);
  }
  .columns-row.no-gap > .column.order-sm-5 {
    order: 5;
  }
  .columns-row.no-gap > .column.size-sm-5 {
    flex-basis: calc(41.6666666667% - 0px);
    max-width: calc(41.6666666667% - 0px);
  }
  .columns-row.no-gap > .column.order-sm-6 {
    order: 6;
  }
  .columns-row.no-gap > .column.size-sm-6 {
    flex-basis: calc(50% - 0px);
    max-width: calc(50% - 0px);
  }
  .columns-row.no-gap > .column.order-sm-7 {
    order: 7;
  }
  .columns-row.no-gap > .column.size-sm-7 {
    flex-basis: calc(58.3333333333% - 0px);
    max-width: calc(58.3333333333% - 0px);
  }
  .columns-row.no-gap > .column.order-sm-8 {
    order: 8;
  }
  .columns-row.no-gap > .column.size-sm-8 {
    flex-basis: calc(66.6666666667% - 0px);
    max-width: calc(66.6666666667% - 0px);
  }
  .columns-row.no-gap > .column.order-sm-9 {
    order: 9;
  }
  .columns-row.no-gap > .column.size-sm-9 {
    flex-basis: calc(75% - 0px);
    max-width: calc(75% - 0px);
  }
  .columns-row.no-gap > .column.order-sm-10 {
    order: 10;
  }
  .columns-row.no-gap > .column.size-sm-10 {
    flex-basis: calc(83.3333333333% - 0px);
    max-width: calc(83.3333333333% - 0px);
  }
  .columns-row.no-gap > .column.order-sm-11 {
    order: 11;
  }
  .columns-row.no-gap > .column.size-sm-11 {
    flex-basis: calc(91.6666666667% - 0px);
    max-width: calc(91.6666666667% - 0px);
  }
  .columns-row.no-gap > .column.order-sm-12 {
    order: 12;
  }
  .columns-row.no-gap > .column.size-sm-12 {
    flex-basis: calc(100% - 0px);
    max-width: calc(100% - 0px);
  }
}
@media (max-width: 576px) {
  .columns-row.no-gap > .column.order-xs-1 {
    order: 1;
  }
  .columns-row.no-gap > .column.size-xs-1 {
    flex-basis: calc(8.3333333333% - 0px);
    max-width: calc(8.3333333333% - 0px);
  }
  .columns-row.no-gap > .column.order-xs-2 {
    order: 2;
  }
  .columns-row.no-gap > .column.size-xs-2 {
    flex-basis: calc(16.6666666667% - 0px);
    max-width: calc(16.6666666667% - 0px);
  }
  .columns-row.no-gap > .column.order-xs-3 {
    order: 3;
  }
  .columns-row.no-gap > .column.size-xs-3 {
    flex-basis: calc(25% - 0px);
    max-width: calc(25% - 0px);
  }
  .columns-row.no-gap > .column.order-xs-4 {
    order: 4;
  }
  .columns-row.no-gap > .column.size-xs-4 {
    flex-basis: calc(33.3333333333% - 0px);
    max-width: calc(33.3333333333% - 0px);
  }
  .columns-row.no-gap > .column.order-xs-5 {
    order: 5;
  }
  .columns-row.no-gap > .column.size-xs-5 {
    flex-basis: calc(41.6666666667% - 0px);
    max-width: calc(41.6666666667% - 0px);
  }
  .columns-row.no-gap > .column.order-xs-6 {
    order: 6;
  }
  .columns-row.no-gap > .column.size-xs-6 {
    flex-basis: calc(50% - 0px);
    max-width: calc(50% - 0px);
  }
  .columns-row.no-gap > .column.order-xs-7 {
    order: 7;
  }
  .columns-row.no-gap > .column.size-xs-7 {
    flex-basis: calc(58.3333333333% - 0px);
    max-width: calc(58.3333333333% - 0px);
  }
  .columns-row.no-gap > .column.order-xs-8 {
    order: 8;
  }
  .columns-row.no-gap > .column.size-xs-8 {
    flex-basis: calc(66.6666666667% - 0px);
    max-width: calc(66.6666666667% - 0px);
  }
  .columns-row.no-gap > .column.order-xs-9 {
    order: 9;
  }
  .columns-row.no-gap > .column.size-xs-9 {
    flex-basis: calc(75% - 0px);
    max-width: calc(75% - 0px);
  }
  .columns-row.no-gap > .column.order-xs-10 {
    order: 10;
  }
  .columns-row.no-gap > .column.size-xs-10 {
    flex-basis: calc(83.3333333333% - 0px);
    max-width: calc(83.3333333333% - 0px);
  }
  .columns-row.no-gap > .column.order-xs-11 {
    order: 11;
  }
  .columns-row.no-gap > .column.size-xs-11 {
    flex-basis: calc(91.6666666667% - 0px);
    max-width: calc(91.6666666667% - 0px);
  }
  .columns-row.no-gap > .column.order-xs-12 {
    order: 12;
  }
  .columns-row.no-gap > .column.size-xs-12 {
    flex-basis: calc(100% - 0px);
    max-width: calc(100% - 0px);
  }
}
.columns-row.no-row-gap {
  row-gap: 0;
}
.columns-row.no-padding {
  margin-left: unset;
  margin-right: unset;
}
.columns-row.no-padding > .column {
  padding-left: unset;
  padding-right: unset;
}
.columns-row.no-wrap {
  flex-wrap: nowrap;
}
.columns-row.no-wrap > .column {
  flex-shrink: initial;
}
.columns-row.align-center {
  align-items: center;
}
.columns-row.align-bottom {
  align-items: flex-end;
}
.columns-row.justify-between {
  justify-content: space-between;
}
.columns-row.justify-center {
  justify-content: center;
}
.columns-row.justify-right {
  justify-content: flex-end;
}
.columns-row.size-max {
  flex-grow: 1;
}
.columns-row.inline-flex {
  display: inline-flex;
}
.columns-row > .column.shrink {
  flex-shrink: initial;
}
.columns-row > .column.no-shrink {
  flex-shrink: 0;
}
.columns-row > .column.max-width {
  flex-grow: 1;
}
.columns-row > .column.direction-column {
  display: flex;
  flex-direction: column;
}
.columns-row > .column.align-center {
  display: flex;
  align-items: center;
}
.columns-row > .column.align-top {
  display: flex;
  align-items: flex-start;
}
.columns-row > .column.align-bottom {
  display: flex;
  align-items: flex-end;
}
.columns-row > .column.inline-flex {
  display: inline-flex;
}
.columns-row > .column.justify-left {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.columns-row > .column.justify-right {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.columns-row > .column.justify-center {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.columns-row > .column.center {
  justify-content: center;
  text-align: center;
}
.columns-row > .column.right {
  text-align: right;
}
.columns-row .main-content {
  flex-basis: 0;
  flex-grow: 1;
  overflow: hidden;
}
.columns-row .max-width {
  flex-basis: 0;
  flex-grow: 1;
}
.columns-row .size-max {
  flex-grow: 1;
}
.columns-row .sidebar {
  width: 350px;
  position: relative;
  overflow: hidden;
}

.columns-flex {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
.columns-flex.align-center {
  align-items: center;
}
.columns-flex.justify-between {
  justify-content: space-between;
}
.columns-flex > .column.center {
  text-align: center;
}
.columns-flex.rows {
  flex-direction: column;
}
.columns-flex.rows > .column {
  width: 100%;
}
.columns-flex.full-width > .column {
  flex-grow: 1;
}

.columns-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, auto));
  min-width: 100%;
  justify-content: space-between;
}
.columns-grid.align-center {
  align-items: center;
}
.columns-grid.auto-columns {
  grid-auto-columns: 1fr;
}

.img-holder {
  font-size: 0;
  display: flex;
}
.img-holder img {
  max-width: 100%;
}

.content-block.filled {
  padding: 32px 24px;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border-radius: 6px;
}
.content-block + .content-block {
  margin-top: 28px;
}

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

.text-block .text-color-alert {
  color: #FF9F43;
}
.text-block .color-primary {
  color: #7367F0;
}
.text-block .color-inactive {
  color: #82868B;
}

.content-body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 40px;
}

.form-header + * {
  margin-top: 30px;
}

.form-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.form-body .form {
  padding: 10px 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.payment-form-block {
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.06);
  background: #fff;
  color: #000;
  display: flex;
  width: 675px;
  min-height: 564px;
  padding: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}
.payment-form-block .holder {
  width: 100%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.logo {
  margin-right: 10px;
  display: flex;
  width: 29px;
  height: 29px;
}

.order-info {
  display: flex;
  gap: 5px;
  flex-direction: column;
  margin-top: 20px;
}

.common-methods {
  flex-grow: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  gap: 10px;
  align-content: center;
}
.common-methods > .item {
  color: #5E5873;
  display: flex;
  padding: 10px 10px 10px 20px;
  align-items: center;
  gap: 14px;
  border-radius: 10px;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.06);
  background: #fff;
  border: 1px solid #EBE9F1;
  min-height: 168px;
  cursor: pointer;
  transition: 0.3s ease-out all;
  font-size: 14px;
}
.common-methods > .item:hover {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.07) 0%, rgba(0, 0, 0, 0.07) 100%), #FFF;
}
.common-methods > .item:active, .common-methods > .item.active {
  border: 1px solid #000;
  background: #FFF;
}
.common-methods > .item .icon {
  width: 40px;
  height: 40px;
}

.payment-methods {
  min-height: 100%;
  flex-grow: 999;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  gap: 10px;
  margin-top: 20px;
}
.payment-methods + .buttons-block {
  margin-top: 20px;
}
.payment-methods > .item {
  color: #5E5873;
  display: flex;
  flex-direction: column;
  padding: 20px 10px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 10px;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.06);
  background: #fff;
  border: 1px solid #EBE9F1;
  cursor: pointer;
  transition: 0.3s ease-out all;
}
.payment-methods > .item:hover {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.07) 0%, rgba(0, 0, 0, 0.07) 100%), #FFF;
}
.payment-methods > .item:active, .payment-methods > .item.active {
  border: 1px solid #000;
  background: #FFF;
}
.payment-methods > .item .sub-caption {
  text-align: center;
  font-size: 12px;
  opacity: 0.8;
  margin-top: 3px;
}
.payment-methods > .item .icon {
  width: 40px;
  height: 40px;
}

.scroll-holder {
  flex-basis: 0;
  flex-grow: 999;
  overflow-y: auto;
  margin: 0 -20px;
}
.scroll-holder + .buttons-block {
  margin-top: 20px;
}

.payment-methods-list {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: 1fr;
  gap: 5px;
  padding: 20px;
}
.payment-methods-list + .buttons-block {
  margin-top: 20px;
}
.payment-methods-list > .item {
  color: #5E5873;
  display: flex;
  padding: 10px 20px;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.06);
  background: #fff;
  border: 1px solid #EBE9F1;
  cursor: pointer;
  transition: 0.3s ease-out all;
}
.payment-methods-list > .item:hover {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.07) 0%, rgba(0, 0, 0, 0.07) 100%), #FFF;
}
.payment-methods-list > .item:active, .payment-methods-list > .item.active {
  border: 1px solid #000;
  background: #FFF;
}
.payment-methods-list > .item .sub-caption {
  font-size: 12px;
  opacity: 0.8;
}
.payment-methods-list > .item .font-icons {
  font-size: 12px;
  color: #B9B9C3;
}
.payment-methods-list > .item .icon {
  width: 32px;
  height: 32px;
}

.buttons-block {
  margin-top: 30px;
  align-items: end;
  flex-grow: 1;
}

.payment-methods-holder {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
}
.payment-methods-holder .icon {
  width: 32px;
  height: 32px;
}
.payment-methods-holder .methods-header {
  box-shadow: 0 10px 10px 5px rgb(255, 255, 255);
  position: relative;
  z-index: 1;
}

.preloader-block {
  display: flex;
  flex-grow: 1;
}
.preloader-block .shadow-holder {
  width: 675px;
  min-height: 410px;
  margin-top: 0 !important;
}

.alert {
  margin: 20px 0 0 0;
}

.icon-tooltip {
  margin-left: 5px;
  cursor: pointer;
}

.status-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-grow: 999;
}
.status-wrapper:not(.error) {
  padding: 20px;
}
.status-wrapper .icon-status + * {
  margin-top: 20px;
}
.status-wrapper .heading-caption.no-margin + * {
  margin-top: 8px;
}
.status-wrapper .description {
  font-size: 14px;
  font-weight: 400;
  color: #5E5873;
}
.status-wrapper .description .payment-amount {
  color: #000;
}

.footer {
  margin-top: 30px;
  text-align: center;
  font-size: 12px;
}
.footer .text-block + * {
  margin-top: 4px;
}

.countdown-timer {
  font-size: 14px;
  font-weight: 500;
  color: #6E6B7B;
}

.card-info {
  margin-top: 40px;
}

.card-provider-icon {
  height: 16px;
}
.card-provider-icon img {
  height: 100%;
}

.payment-info {
  margin-top: 30px;
  border-radius: 6px;
  color: #5E5873;
}
.payment-info > * + * {
  margin-top: 14px;
}
.payment-info .account-icon {
  width: 32px;
  max-height: 32px;
  margin-right: 8px;
}
.payment-info .profile-icon {
  padding: 3px;
  width: 32px;
  height: 32px;
  margin-right: 8px;
}
.payment-info .icon-copy {
  width: 20px;
}
.payment-info .heading-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: max-content;
}

.text-block.info {
  color: #5E5873;
  display: flex;
  padding: 16px 8px;
  align-items: flex-start;
  gap: 59px;
  align-self: stretch;
  border-radius: 6px;
  margin-top: 20px;
  font-size: 14px;
  background: rgba(255, 159, 67, 0.12);
}

#main-payment-view .desktop-qr-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px;
}

@media (max-width: 576px) {
  body {
    padding: 8px;
  }
  .content-body {
    padding: 0;
  }
  .payment-form-block {
    border-radius: 0;
    padding: 0;
    min-height: 100vh;
    width: 100%;
  }
  .payment-form-block .holder {
    padding: 10px;
    min-height: inherit;
    display: flex;
    flex-direction: column;
  }
  .payment-form-block .scroll-holder {
    margin: 0 -10px;
  }
  .common-methods {
    gap: 5px;
    align-content: initial;
  }
  .common-methods > .item {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px;
  }
  .payment-methods-holder {
    margin-top: 20px;
    flex-grow: 999;
  }
  .payment-methods-holder .icon {
    width: 28px;
    height: 28px;
  }
  .payment-methods-holder .heading-caption.s-4 {
    font-size: 14px;
  }
  .payment-methods-holder .countdown-timer {
    font-size: 14px;
  }
  .payment-methods-holder .card-info {
    margin-top: 20px;
  }
  .payment-methods-holder .methods-header {
    box-shadow: 0px 5px 5px 5px rgb(255, 255, 255);
  }
  .payment-methods {
    margin-top: 15px;
    gap: 5px;
  }
  .payment-methods > .item {
    padding: 8px;
    min-height: 190px;
  }
  .payment-methods > .item:hover {
    background: #fff;
  }
  .payment-methods-list {
    padding: 15px 10px;
    gap: 5px;
  }
  .payment-methods-list > .item {
    padding: 8px;
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.06);
  }
  .payment-methods-list > .item:hover {
    background: #fff;
  }
  .payment-info .account-icon {
    width: 24px;
    max-height: 24px;
  }
  .payment-info .profile-icon {
    width: 24px;
    height: 24px;
  }
  .payment-info .heading-caption.s-5 {
    font-size: 14px;
  }
  .text-block.info {
    font-size: 12px;
  }
  .form-header + * {
    margin-top: 20px;
  }
  .form-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  .preloader-block {
    height: 100vh;
    display: flex;
    flex-direction: column;
  }
  .preloader-block .shadow-holder {
    flex-grow: 1;
    width: 100vw;
  }
}
@media (min-width: 992px) {
  .hide-lg {
    display: none !important;
  }
}
@media (min-width: 769px) and (max-width: 992px) {
  .hide-md {
    display: none !important;
  }
}
@media (min-width: 577px) and (max-width: 768px) {
  .hide-sm {
    display: none !important;
  }
}
@media (max-width: 576px) {
  .hide-xs {
    display: none !important;
  }
}
.spinner {
  display: inline-block;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.spinner-reverse {
  display: inline-block;
  animation: spin-reverse 1s linear infinite;
}

@keyframes spin-reverse {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

/*# sourceMappingURL=main.css.map */
