.credit-cards, .credit-cards *, .credit-cards :before, .credit-cards :after {
  box-sizing: border-box;
  outline: none;
}
.credit-cards {
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.credit-card {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100% - 40px) / 3);
  max-width: calc((100% - 40px) / 3);
  padding: 20px;
  border: 2px solid #ebedf2;
  border-radius: 10px;
  background: #FFFFFF;
}
.credit-card__header {
  position: relative;
  display: flex;
  align-items: center;
  height: 60px;
}
.credit-card__header--number {
  padding-right: 40px;
}
.credit-card__logo {
  margin: auto !important;
  width: 130px !important;
  max-width: unset !important;
  height: auto !important;
  max-height: unset !important;
  object-fit: contain !important;
}
.credit-card__top {
  position: absolute;
  top: 10px;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  font-size: 12px;
  line-height: 24px;
  font-weight: bold;
  text-align: center;
  background-color: #0172D0;
  color: #FFFFFF;
}
.credit-card__rating {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.credit-card__rating-title {
  display: flex;
  align-items: center;
  font-size: 13px;
  line-height: 24px;
  color: #6f6f6f;
}
.credit-card__rating-stars {
  margin: auto !important;
  padding-right: 5% !important;
  max-width: 50% !important;
  max-height: unset !important;
}
.credit-card__rating-value {
  align-items: center;
  margin-left: 5px;
  min-width: 30px;
  font-size: 12px;
  line-height: 24px;
  font-weight: ;
  text-align: right;
  color: black;
}
.credit-card__slogan {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
  margin-bottom: 15px;
  padding: 5px 5px;
  font-size: 13.5px;
  line-height: 21px;
  font-weight: 600;
  min-height: 40px;
  border-radius: 5px;
  border-width: 1px;
  text-align: center;
  background: #12436b9e;
  color: #FFF;
}
.credit-card__line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.credit-card__line-title {
  display: flex;
  align-items: center;
  font-size: 15px;
  line-height: 24px;
  text-align: left;
  color: #6f6f6f;
}
.credit-card__line-value {
  display: flex;
  align-items: center;
  font-size: 15px;
  line-height: 24px;
  font-weight: bold;
  text-align: right;
  color: black;
}
.credit-card__button {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin-top: 5px !important;
  margin-bottom: 5px !important;
  width: 100% !important;
  height: 50px !important;
  border-radius: 10px !important;
  font-size: 15.5px !important;
  line-height: 24px !important;
  font-weight: 600 !important;
  background: #E12E6F !important;
  color: #FFFFFF !important;
  border: 1px solid #E12E6F !important;
  transition: background 0.1s ease !important;
}

.credit-card__button:hover {
    background-color: #ffffff !important;;
    color: #E12E6F !important;;
    border: 1px solid #E12E6F !important;
	transition: all 0.1s ease-in-out !important;
}
.credit-card__info {
  font-size: 13px;
  text-align: center;
}
.credit-card__company {
  font-size: 13px;
  text-align: center;
}
@media (max-width: 991px) {
  .credit-card {
    flex: 0 0 calc((100% - 20px) / 2);
    max-width: calc((100% - 20px) / 2);
  }
}
@media (max-width: 767px) {
  .credit-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}