.login-page {
  padding-top: 10px;
  padding-bottom: 10px;
  min-height: 100vh;
}
.header.header-transparent::before {
  background-color: transparent;
}
.line-both {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-weight: 500;
  font-size: 12px;
  line-height: 10px;
  color: #ADADAD;
}
.line-both::after,
.line-both::before {
  content: "";
  display: flex;
  width: calc(50% - 16px);
  height: 1px;
  background-color: #E8E8E8;
}
.line-both::after {
  margin-left: 16px;
}
.line-both::before {
  margin-right: 16px;
}

.color-text {
  color: rgba(39, 39, 39, 1);
}
.color-text-50 {
  color: rgba(39, 39, 39, 0.5);
}
.color-white {
  color: var(--white);
}

.square-70 {
  width: 70px;
  height: 70px;
}
.img-wrapper img {
  width: 100%;
  height: 100%;
}
.login-left {
  max-width: 430px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-top: var(--header-fixed-padding);
  padding-bottom: 20px;
}
.login-right {
  height: calc(100vh - 20px);
  width: 100%;
  padding-bottom: 100px;
  display: flex;
  align-items: end;
  border-radius: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.login-swiper-block {
  position: relative;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  max-width: 430px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  color: var(--white);
  padding: 0 24px 24px 24px;
  margin-top: 35px;
}
.login-swiper-img {
  margin-top: -35px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 13px;
}

.def-text-2 {
  font-size: 14px;
  line-height: 22px;
}

.swiper.swiper-default {
  --swiper-theme-color: var(--white);
  width: 100%;
}
.swiper.swiper-default .swiper-pagination {
  --swiper-pagination-bullet-horizontal-gap: 6px;
  --swiper-pagination-color: var(--white);
  --swiper-pagination-bullet-inactive-color: var(--white);
  --swiper-pagination-bullet-inactive-opacity: 0.6;
  --swiper-pagination-bullet-size: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: static;
  margin-top: 25px;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  --swiper-pagination-bullet-size: 8px;
}

.credit-card {
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: #272727;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  height: 160px;
  padding: 16px;
  color: var(--white);
  overflow: hidden;
}
.credit-card::after {
  content: "";
  background: linear-gradient(
    24.1deg,
    #ffffff 42.15%,
    rgba(255, 255, 255, 0) 86.26%
  );
  opacity: 0.04;
  position: absolute;
  width: 250px;
  height: 250px;
  left: calc(50% - 250px / 2);
  top: 35px;
  border-radius: 300px;
}
.credit-card::before {
  content: "";
  background-color: var(--white);
  opacity: 0.06;
  position: absolute;
  width: 160px;
  height: 160px;
  right: -30px;
  top: -80px;
  border-radius: 300px;
}

.credit-card-top {
  display: flex;
  align-items: center;
  justify-content: end;
}
.credit-card-middle {
  display: flex;
  align-items: center;
  margin-bottom: 22px;
  margin-top: auto;
}
.credit-card-bottom {
  display: flex;
  align-items: center;
}
.credit-card-bottom > *:not(:last-child) {
  margin-right: 16px;
}
.credit-card-number {
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  color: var(--white);
}
.credit-card-title {
  display: block;
  font-weight: 600;
  font-size: 10px;
  line-height: 12px;
  opacity: 0.4;
  margin-bottom: 4px;
}
.credit-card-logo {
  margin-left: auto;
  max-width: 50px;
  max-height: 40px;
}
.add-payment-method {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #f9fafc;
  box-shadow: inset 0px 0px 1px rgba(0, 0, 0, 0.2),
    inset 2px 2px 6px rgba(0, 0, 0, 0.06);
  border-color: transparent;
  border-radius: 16px;
  height: 160px;
  padding: 16px;
}
.add-payment-method-btn {
  padding: 8px;
  width: 36px;
  height: 36px;
  border: 1.5px solid #eeeeee;
  border-radius: 300px;
  margin-bottom: 14px;
}

.pill-danger {
  color: rgba(235, 67, 53, 1);
  background-color: rgba(255, 236, 235, 1);
}

.border-top {
  border-top: 1px solid #E1E5EC;
}
.btns-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  --btns-margin: 10px;
}
.btns-group > .btn:not(:last-child) {
  margin-right: var(--btns-margin);
}
.table-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  position: relative;
}

.table-footer::before{
  content: url('/assets/site/img/gradient-table-footer.svg');
  position: absolute;
  width: 100%;
  height: 20px;
  top: -20px;
  left: 0;
  pointer-events: none;
}

.pagination {
  display: flex;
  align-items: center;
}
.pagination li a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  padding: 8px;
  border-radius: 6px;
  color: rgba(39, 39, 39, 0.5);
  width: 36px;
  height: 36px;
}
.pagination li.active a {
  background-color: #f9fafc;
  color: var(--primary);
}
.pagination-btn .ico svg path {
  fill: currentColor;
}

.options-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  --options-margin: 10px;
}
.options-group > .option:not(:last-child) {
  margin-right: var(--options-margin);
}

.choices[data-type*="select-one"]::after {
  background-image: url(/../../img/icons/arrow-sidebar.svg);
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  right: 8px;
  border: none;
  margin-top: 0;
  transform: translateY(-50%);
}

.choices[data-type*="select-one"].is-open::after {
  margin-top: 0;
}

.choices__inner {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 4.5px 7.5px 3.75px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #eeeeee;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  min-height: 36px;
}
.choices[data-type*=select-one] .choices__inner {
  padding-bottom: 4.5px;
}

.choices__list--single {
  padding: 4px 22px 4px 4px;
}
.choices__list--dropdown .choices__item--selectable, .choices__list[aria-expanded] .choices__item--selectable {
  padding-right: 0;
}


