/* Copy Animation */
.base-color {
  color: hsl(var(--main)) !important;
}

.copyInput {
  display: inline-block;
  line-height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.copied::after {
  position: absolute;
  top: 8px;
  right: 12%;
  width: 100px;
  display: block;
  content: "COPIED";
  font-size: 1em;
  padding: 5px 5px;
  color: #fff;
  background-color: #ff7000;
  border-radius: 3px;
  opacity: 0;
  will-change: opacity, transform;
  animation: showcopied 1.5s ease;
}

@keyframes showcopied {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  50% {
    opacity: 0.7;
    transform: translateX(40%);
  }

  70% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
  }
}

.cookies-card {
  width: 520px;
  padding: 30px;
  color: #1e2337;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 999999;
  transition: all 0.5s;
  background: #d1d1d1;
  border-radius: 5px;
}

.cookies-card.hide {
  bottom: -500px !important;
}

.radius--10px {
  border-radius: 10px;
}

.cookies-card__icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #6e6f70;
  color: #fff;
  font-size: 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.cookies-card__content {
  margin-bottom: 0;
}

.cookies-btn {
  color: #363636;
  text-decoration: none;
  padding: 10px 35px;
  margin: 3px 5px;
  display: inline-block;
  border-radius: 999px;
}

.cookies-btn:hover {
  color: #363636;
}

@media (max-width: 767px) {
  .cookies-card {
    width: 100%;
    left: 0;
    bottom: 0;
    font-size: 14px;
    padding: 15px;
  }
}

.hover-input-popup {
  position: relative;
}

.input-popup {
  display: none;
}

.hover-input-popup .input-popup {
  display: block;
  position: absolute;
  bottom: 80%;
  left: 50%;
  width: 280px;
  background-color: #1a1a1a;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.input-popup::after {
  position: absolute;
  content: "";
  bottom: -19px;
  left: 50%;
  margin-left: -5px;
  border-width: 10px 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent #1a1a1a transparent;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.input-popup p {
  padding-left: 20px;
  position: relative;
}

.input-popup p::before {
  position: absolute;
  content: "";
  font-family: "Line Awesome Free";
  font-weight: 900;
  left: 0;
  top: 4px;
  line-height: 1;
  font-size: 18px;
}

.input-popup p.error {
  text-decoration: line-through;
}

.input-popup p.error::before {
  content: "\f057";
  color: #ea5455;
}

.input-popup p.success::before {
  content: "\f058";
  color: #28c76f;
}

.show-filter {
  display: none;
}

@media (max-width: 767px) {
  .responsive-filter-card {
    display: none;
    transition: none;
  }

  .show-filter {
    display: block;
  }
}

/* ////////////////// select 2 css //////////////// */
.select2-dropdown {
  border: 0 !important;
  margin-top: 8px !important;
  border-radius: 5px !important;
  box-shadow: 0 3px 9px rgba(50, 50, 9, 0.05),
    6px 4px 19px rgb(115 103 240 / 20%);
}

.select2-search--dropdown {
  padding: 10px 10px !important;
  border-color: #ced4da !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border-color: #ced4da !important;
  padding: 10px 20px;
}

.select2-results__option.select2-results__option--selected,
.select2-results__option--selectable,
.select2-container--default .select2-results__option--disabled {
  padding: 12px 14px !important;
  border-bottom: 1px solid #eee;
}

.select2-results__option.select2-results__message {
  text-align: center !important;
  padding: 12px 14px !important;
}

.select2-container--default
  .select2-results
  > .select2-results__options::-webkit-scrollbar {
  width: 8px;
  border-radius: 5px;
}

.select2-container--default
  .select2-results
  > .select2-results__options::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 5px;
}

.select2-container--default
  .select2-results
  > .select2-results__options::-webkit-scrollbar-thumb {
  background: #ddd;
}

.select2-container--default
  .select2-results
  > .select2-results__options::-webkit-scrollbar-thumb:hover {
  background: #ddd;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  display: none;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow:after {
  position: absolute;
  right: 10px;
  top: 0;
  content: "\f107";
  font-family: "Line Awesome Free";
  font-weight: 900;
  transition: 0.3s;
}

.select2-container--default .select2-selection--single {
  border-color: #ced4da !important;
  border-width: 2px !important;
  border-radius: 0.375rem !important;
  padding: 0.375rem 0.75rem !important;
  height: 100% !important;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  top: 8px !important;
}

.select2-container--default.select2-container--open
  .select2-selection--single
  .select2-selection__arrow:after {
  transform: rotate(-180deg);
}

.select2-results__option:last-child {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.select2-results__option:first-child {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.select2-results__option.select2-results__option--selected,
.select2-container--default
  .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #f1f1f1 !important;
  color: #000 !important;
}

.select2-container--default
  .select2-search--dropdown
  .select2-search__field:focus {
  border-color: rgb(255 255 255 / 10%) !important;
  box-shadow: 0 0 25px rgba(115, 103, 240 0.071) !important;
  outline: 0 !important;
}

.select2-dropdown .country-flag {
  width: 25px;
  height: 25px;
  border-radius: 8px;
}

.select2-dropdown .gateway-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0px !important;
}

.select2-dropdown .gateway-subtitle {
  font-size: 12px;
  margin-bottom: 0px !important;
}
.select2-container--open .select2-selection.select2-selection--single,
.select2-container--open .select2-selection.select2-selection--multiple {
  border-color: hsl(var(--base)) !important;
  border-radius: 0.375rem !important;
}

.gateway-card {
  padding: 15px;
}

.payment-card-title {
  padding: 13px 25px;
  text-align: center;
  background-color: rgb(var(--main));
  border-radius: 5px;
  border: 0;
  margin-bottom: 0px;
  color: #fff;
}

.payment-system-list {
  --thumb-width: 100px;
  --thumb-height: 40px;
  --radio-size: 12px;
  --border-color: rgb(255 255 255 / 10%);
  --hover-border-color: rgb(var(--main));
  background-color: #2b2f39;
  border-radius: 5px;
  height: 100%;
}

.payment-system-list.is-scrollable {
  max-height: min(380px, 70vh);
  overflow-x: auto;
  padding-block: 4px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
  width: 5px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
  width: 5px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar-thumb {
  background-color: rgb(var(--main));
  border-radius: 10px;
}

.payment-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 18px;
  border-top: 1px solid var(--border-color);
  transition: all 0.3s;
  border-left: 3px solid transparent;
  margin: 0;
}

.payment-item:first-child {
  border-top-color: transparent;
  border-radius: 5px 5px 0 0;
}

.payment-item:has(.payment-item__radio:checked) {
  border-left: 3px solid hsl(var(--base));
  border-radius: 0px;
}

.payment-item__check {
  border: 3px solid transparent;
}

.payment-item:has(.payment-item__radio:checked) .payment-item__check {
  border: 3px solid hsl(var(--base));
}

.payment-item__info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: calc(100% - var(--thumb-width));
}

.payment-item__check {
  width: var(--radio-size);
  height: var(--radio-size);
  border: 1px solid hsl(var(--base));
  display: inline-block;
  border-radius: 100%;
}

.payment-item__name {
  padding-left: 10px;
  width: calc(100% - var(--radio-size));
  transition: all 0.3s;
  color: #b5b5b7;
}

.payment-item__thumb {
  width: var(--thumb-width);
  height: var(--thumb-height);
  text-align: right;
  padding-left: 10px;

  &:has(.text) {
    width: fit-content;
  }
}

.payment-item__thumb img {
  max-width: var(--thumb-width);
  max-height: var(--thumb-height);
  object-fit: cover;
}

.deposit-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 8px;
}

.deposit-info__title {
  max-width: 50%;
  margin-bottom: 0px;
  text-align: left;
}

.deposit-info__input {
  max-width: 50%;
  text-align: right;
  width: 100%;
}

.deposit-info__input-select {
  border: 1px solid var(--border-color);
  width: 100%;
  border-radius: 5px;
  padding-block: 6px;
}

.deposit-info__input-group {
  border: 1px solid var(--border-color);
  border-radius: 5px;

  .deposit-info__input-group-text {
    align-self: center;
    padding-left: 5px;
  }
}

.deposit-info__input-group .form--control {
  padding: 5px;
  border: 0;
  height: 35px;
  text-align: right;
}

.deposit-info__input-group .form--control:focus {
  box-shadow: unset;
}

.info-text .text,
.deposit-info__input .text {
  font-size: 14px;
}

.deposit-info__title .text.has-icon {
  display: flex;
  align-items: center;
  gap: 5px;
}

.total-amount {
  border-top: 1px solid var(--border-color);
}

.total-amount .deposit-info__title {
  font-weight: 600;
}

.payment-item__btn {
  border: 0;
  border-block: 1px solid var(--border-color);
  border-bottom: 0;
  background: #2b2f39;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  font-weight: 500;
}

.payment-item:hover + .payment-item__btn {
  border-top-color: #fff;
}
.payment-item__btn-text,
.payment-item__btn__icon {
  color: #fff;
}

button .spinner-border {
  --bs-spinner-width: 1.5rem;
  --bs-spinner-height: 1.5rem;
}

label.required:after {
  content: "*";
  color: #dc3545 !important;
  margin-left: 2px;
}

.select2-dropdown .select2-title {
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0px !important;
}

.select2-dropdown .select2-subtitle {
  font-size: 12px;
  margin-bottom: 0px !important;
}

.select2-image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #e5e5e5;
}

.select2-parent {
  position: relative;
}

.maintenance-page {
  display: grid;
  place-content: center;
  width: 100vw;
  height: 100vh;
}

/* custom select two */

span.selection {
  display: block;
}

.select2-container--default .select2-selection--single {
  border-color: rgb(255 255 255 / 10%) !important;
  border-width: 1px !important;
  height: 38px !important;
  background-color: #2b2f39 !important;
}

.input-group .select2-container--default .select2-selection--single {
  border-radius: 0 4px 4px 0 !important;
  border-left: 0 !important;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: #fff;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  top: 8px !important;
}

.select2-container--open .select2-selection.select2-selection--single,
.select2-container--open .select2-selection.select2-selection--multiple {
  border-color: rgb(255 255 255 / 10%) !important;
  border-radius: 0 4px 4px 0 !important;
}

.select2 .dropdown-wrapper {
  display: none;
}

.select2-dropdown {
  background-color: #131722;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border-color: rgb(255 255 255 / 10%) !important;
  padding: 6px 20px;
  border-radius: 4px;
  background: #1b1b3f;
  color: #fff !important;
}

.select2-results__option.select2-results__option--selected,
.select2-container--default
  .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: hsl(var(--base)) !important;
  color: #fff !important;
}

.select2-results__option.select2-results__option--selected,
.select2-results__option--selectable,
.select2-container--default .select2-results__option--disabled {
  border: 0 !important;
}

.btn-close-white {
  background-color: rgb(255 255 255 / 10%);
  border-radius: 50%;
  height: 32px;
  width: 32px;
  filter: unset;
}

/* News page refresh */
.news-page .news-widget {
  background: #202430;
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 12px;
}

.news-page .news-main-card {
  background: #202430;
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-page .news-main-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgb(0 0 0 / 22%);
}

.news-page .news-main-card__thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.news-page .news-main-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-page .news-main-card__title a {
  color: #fff;
}

.news-page .news-main-card__title a:hover {
  color: hsl(var(--base));
}

.news-page .news-headlines__item + .news-headlines__item {
  border-top: 1px solid rgb(255 255 255 / 8%);
  padding-top: 12px;
  margin-top: 12px;
}

.news-page .news-headlines__link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.news-page .news-headlines__thumb {
  width: 92px;
  min-width: 92px;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  overflow: hidden;
}

.news-page .news-headlines__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-page .news-headlines__title {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  display: block;
  margin-bottom: 2px;
}

.news-page .news-headlines__link:hover .news-headlines__title {
  color: hsl(var(--base));
}

.news-page .news-filter-overview {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 16px;
}

.news-page .news-filter-overview__icon {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background: #2b74ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.news-page .news-filter-card {
  background: #181b20;
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 6px;
  padding: 16px;
  margin-bottom: 16px;
}

.news-page .news-filter-card__title {
  color: #fff;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 12px;
}

.news-page .news-filter-card__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100px;
  border-bottom: 2px solid rgb(255 255 255 / 25%);
}

.news-page .news-filter-search {
  position: relative;
}

.news-page .news-filter-search i {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  color: #fff;
  opacity: 0.9;
  font-size: 18px;
}

.news-page .news-filter-search input {
  width: 100%;
  height: 46px;
  border-radius: 10px;
  border: 1px solid rgb(255 255 255 / 16%);
  background: #17191d;
  color: #fff;
  padding: 0 12px 0 42px;
}

.news-page .news-filter-search input:focus {
  outline: none;
  border-color: #2b74ff;
}

.news-page .news-filter-category-list,
.news-page .news-filter-top-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-page .news-filter-category-list li + li,
.news-page .news-filter-top-list li + li {
  margin-top: 8px;
}

.news-page .news-filter-category-list a,
.news-page .news-filter-top-list a {
  color: #fff;
  text-decoration: none;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 6px;
  background: #111318;
  padding: 8px 10px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  transition: all 0.2s ease;
}

.news-page .news-filter-top-list a {
  display: block;
}

.news-page .news-filter-category-list a.active,
.news-page .news-filter-category-list a:hover,
.news-page .news-filter-top-list a:hover {
  border-color: #2b74ff;
  color: #2b74ff;
}

.news-page .news-filter-years {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
}

.news-page .news-filter-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  cursor: pointer;
  min-width: 62px;
}

.news-page .news-filter-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  border: 1px solid rgb(255 255 255 / 45%);
  background: transparent;
  position: relative;
  cursor: pointer;
}

.news-page .news-filter-check input[type="checkbox"]:checked {
  background: #2b74ff;
  border-color: #2b74ff;
}

.news-page .news-filter-check input[type="checkbox"]:checked::after {
  content: "\f00c";
  font-family: "Line Awesome Free";
  font-weight: 900;
  color: #fff;
  font-size: 11px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.news-page .news-filter-view-all {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 13px;
  font-weight: 600;
  color: #d8dbe0;
  background: #3d3f44;
  text-decoration: none;
}

.news-page .news-filter-view-all:hover {
  color: #fff;
}

.filter-ui-sidebar {
  position: sticky;
  top: 90px;
  max-height: calc(100vh - 110px);
  overflow-y: auto;
}

.filter-ui-overview {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 16px;
}

.filter-ui-overview__icon {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background: #2b74ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.filter-ui-card {
  background: #181b20;
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 6px;
  padding: 16px;
  margin-bottom: 16px;
}

.filter-ui-card__title {
  color: #fff;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 12px;
}

.filter-ui-card__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100px;
  border-bottom: 2px solid rgb(255 255 255 / 25%);
}

.filter-ui-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.filter-ui-list li + li {
  margin-top: 8px;
}

.filter-ui-list a {
  color: #fff;
  text-decoration: none;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 6px;
  background: #111318;
  padding: 8px 10px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  transition: all 0.2s ease;
}

.filter-ui-list a.active,
.filter-ui-list a:hover {
  border-color: #2b74ff;
  color: #2b74ff;
}

@media (max-width: 991px) {
  .filter-ui-sidebar {
    position: static;
    max-height: none;
    overflow-y: visible;
  }
}

.app-filter-sidebar {
  position: sticky;
  top: 90px;
  max-height: calc(100vh - 110px);
  overflow-y: auto;
}

.app-filter-sidebar__head {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f3f6fb;
  font-weight: 600;
  margin-bottom: 16px;
}

.app-filter-sidebar__icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #2b74ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 16px rgb(43 116 255 / 30%);
}

.app-filter-card {
  background: #171a1f;
  border: 1px solid rgb(255 255 255 / 9%);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 16px;
  box-shadow: 0 10px 24px rgb(0 0 0 / 20%);
}

.app-filter-card__title {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 10px;
}

.app-filter-card__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 96px;
  border-bottom: 2px solid rgb(255 255 255 / 20%);
}

.app-filter-search {
  position: relative;
}

.app-filter-search i {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  color: #cfd5df;
  pointer-events: none;
}

.app-filter-search input {
  width: 100%;
  height: 46px;
  border-radius: 10px;
  border: 1px solid rgb(255 255 255 / 14%);
  background: #111418;
  color: #f8fbff;
  padding: 0 14px 0 42px;
}

.app-filter-search input:focus {
  outline: none;
  border-color: #2b74ff;
}

.app-filter-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.app-filter-list li + li {
  margin-top: 8px;
}

.app-filter-button,
.app-filter-list a {
  color: #e7ebf2;
  text-decoration: none;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 8px;
  background: #101318;
  padding: 9px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.app-filter-button.active,
.app-filter-button:hover,
.app-filter-list a.active,
.app-filter-list a:hover {
  border-color: #2b74ff;
  color: #2b74ff;
  background: rgb(43 116 255 / 10%);
  box-shadow: 0 8px 18px rgb(0 0 0 / 20%);
}

.app-filter-button-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.app-filter-chip {
  min-height: 42px;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  border-radius: 10px;
}

.app-filter-chip small {
  display: inline-block;
  margin-left: 6px;
  opacity: 0.85;
  font-size: 11px;
}

.app-filter-years-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.app-filter-year {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 40px;
}

.app-filter-year.is-active {
  border-color: #2b74ff;
  color: #2b74ff;
}

@media (max-width: 991px) {
  .app-filter-sidebar {
    position: static;
    max-height: none;
    overflow-y: visible;
  }

  .app-filter-years-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .app-filter-button-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
