/* Control the size of credit card icons */
.payment-methods__item-container img {
  height: 2rem;
}
.payment-methods {
  margin-bottom: 30px;
}

.payment-methods__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.payment-methods__item {
  border-radius: 2px;
  background: transparent;
  border: 1px solid #e5e5e5;
}
.payment-methods__item:hover {
  background: #f7f7f7;
  border: 1px solid #e5e5e5;
}
.payment-methods__item + .payment-methods__item {
  margin-top: 6px;
}

.payment-methods__item-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  margin-bottom: 0;
}

[dir=ltr] .payment-methods__item-radio {
  margin-right: 10px;
}
[dir=rtl] .payment-methods__item-radio {
  margin-left: 10px;
}

.payment-methods__item-container {
  overflow: hidden;
  height: 0;
  -webkit-transition: height 0.2s;
  transition: height 0.2s;
}

.payment-methods__item-description {
  padding: 2px 16px 13px 16px;
}

.payment-methods__item--active, .payment-methods__item--active:hover {
  background: #f7f7f7;
  border: 1px solid #e5e5e5;
}
.payment-methods__item--active .payment-methods__item-container {
  height: auto;
}
table.checkout__totals .indicator__area img {
  width: 150px;
}

