:root {
  --payment-item-bg-image: url("");
}
.payment-instructions {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}
.payment-instructions > nav {
  width: 100%;
}
.payment-instructions .payment-nav-list {
  display: flex;
  padding: 4px;
  align-items: center;
  gap: 4px;
  border-radius: 1000px;
  border: 1px solid #00994f;
  background: #fff;
  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.1);
  overflow-x: auto;
  margin: 0;
  width: 100%;
  flex-wrap: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.payment-instructions .payment-nav-list::-webkit-scrollbar {
  display: none;
}
.payment-instructions .payment-list {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
}
.payment-instructions .payment-item {
  display: flex;
  height: 148px;
  min-width: 150px;
  padding: 16px 8px 12px 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex: 1 0 0;
  border-radius: 16px;
  border: 1px solid #d9d9d9;
  background: #fff;
}
.payment-instructions .payment-item-image {
  width: 98px;
  height: 56px;
  flex-shrink: 0;
  background-image: var(--payment-item-bg-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.payment-instructions .payment-item-name {
  display: flex;
  height: 56px;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  align-self: stretch;
  color: #000;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-family: "Averta-semibold";
  line-height: 140%;
  letter-spacing: -0.32px;
  font-family: "Averta-semibold";
}
@media (min-width: 768px) {
  .payment-instructions .payment-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .payment-instructions > nav {
    width: fit-content;
  }
  .payment-instructions .payment-item-name {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .payment-instructions .payment-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    row-gap: 28px;
  }
}
@media (min-width: 1280px) {
  .payment-instructions {
    gap: 48px;
  }
  .payment-instructions .payment-nav-list {
    gap: 8px;
  }
  .payment-instructions .payment-item {
    width: 100%;
    height: 186px;
    padding: 20px 12px 16px 12px;
    gap: 12px;
  }
}

@media (min-width: 1280px) {
  .payment-instructions .payment-item-name {
    font-size: 20px;
    line-height: 140%;
    letter-spacing: -0.4px;
  }
  .payment-instructions .payment-item-image {
    width: 140px;
    height: 80px;
  }
}
