.credit-card-filter__row {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  margin-top: 42px;
  margin-bottom: 48px;
}

@media screen and (min-width: 780px) {
  .credit-card-filter__row {
    align-items: flex-start;
    max-width: 1228px;
    margin: 42px auto 48px;
  }
}

@media screen and (min-width: 1280px) {
  .credit-card-filter__row {
    padding: 0;
  }
}

.credit-card-filter__menu {
  display: none;
  margin: 16px 0 0;
  padding: 33px 16px;
  border-radius: 12px;
  box-shadow: 0 6px 25px 0 rgba(137, 173, 208, 0.4);
  background-color: #fff;
  position: absolute;
  top: 50px;
  width: calc(100% - 32px);
  z-index: 3;
}

@media screen and (min-width: 780px) {
  .credit-card-filter__menu {
    display: block;
    position: static;
    box-shadow: none;
    margin: auto;
    padding: 0;
  }
}

.credit-card-filter__list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-size: 20px;
}

@media screen and (min-width: 780px) {
  .credit-card-filter__list {
    display: flex;
    align-content: flex-start;
    flex-wrap: wrap;
    gap: 16px;
    flex-direction: row;
    padding: 0 24px 24px;
  }
}

@media screen and (min-width: 780px) {
  .credit-card-filter__label {
    display: inline-block;
    background-color: #fff;
    padding: 12px 24px;
    border-radius: 100px;
    border: solid 2px #89add0;
    font-size: 16px;
    line-height: 1;
    text-align: center;
    color: #0f3d70;
    cursor: pointer;
    white-space: nowrap;
  }
}

@media screen and (min-width: 780px) {

  .credit-card-filter__label:hover,
  .credit-card-filter__label:has(input[type=radio]:checked) {
    border: solid 2px #0f3d70;
    background-color: #0f3d70;
    color: #fff;
  }
}

@media screen and (min-width: 780px) {
  .credit-card-filter__label:has(input[type=radio]:focus) {
    border: solid 2px #0f3d70;
    outline-color: -webkit-focus-ring-color;
    outline-style: dotted;
    outline-width: 2px;
  }
}

.credit-card-filter__item:not(:last-child) {
  margin-bottom: 16px;
}

@media screen and (min-width: 780px) {
  .credit-card-filter__item:not(:last-child) {
    margin-bottom: auto;
  }
}

@media screen and (min-width: 780px) {
  .credit-card-filter__input {
    left: 39px;
    opacity: 0.00001;
    position: absolute;
    top: 19px;
    z-index: 1;
  }
}

.credit-card-filter__hr {
  border: 0;
  background-color: #d3d3d4;
  height: 1px;
  margin: 32px 0;
}

@media (min-width: 780px) {
  .credit-card-filter__hr {
    display: none;
  }
}

.credit-card-filter__btn_apply {
  padding: 12px;
  width: 100%;
}

@media screen and (min-width: 780px) {
  .credit-card-filter__btn_apply {
    display: none;
  }
}

.credit-card-filter__btn_menu {
  height: 44px;
  width: 44px;
  background-color: #f4f5f8;
  border-radius: 50%;
  border: none;
  box-shadow: 0 2px 10px 0 rgba(137, 173, 208, 0.4);
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

@media screen and (min-width: 780px) {
  .credit-card-filter__btn_menu {
    display: none;
  }
}

.credit-card-filter__btn_menu:hover,
.credit-card-filter__btn_menu-active {
  background-color: #0f3d70;
}

.credit-card-filter__btn_menu:hover .credit-card-filter__icon,
.credit-card-filter__btn_menu-active .credit-card-filter__icon {
  fill: #fff;
}

.credit-card-filter__icon {
  fill: #0667ba;
  width: 23px;
}

.credit-card-filter__heading,
.cmdr-v3 span.credit-card-filter__heading {
  min-width: 205px;
  height: 31px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.33;
  text-align: left;
  color: #0f3d70;
  margin: 0;
}

@media screen and (min-width: 780px) {

  .credit-card-filter__heading,
  .cmdr-v3 span.credit-card-filter__heading {
    margin: 6px 0 0;
  }
}

.scale-in-center {
  -webkit-animation: scale-in-center 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: scale-in-center 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.scale-out-center {
  -webkit-animation: scale-out-center 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
  animation: scale-out-center 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

/* ----------------------------------------------
 * Generated by Animista on 2025-7-9 10:54:1
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation scale-in-center
 * ----------------------------------------
 */
@-webkit-keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

/* ----------------------------------------------
 * Generated by Animista on 2025-7-9 10:55:57
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation scale-out-center
 * ----------------------------------------
 */
@-webkit-keyframes scale-out-center {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
}

@keyframes scale-out-center {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
}