.address {
  position: relative;
  display: grid;
}

.address__items-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.address__items-wrapper.active {
  width: 100%;
  display: grid;
  background: #fff;
  border: 1px solid rgb(225,226,228);
  border-radius: 4px;
}

.address__item {
  padding: 10px 15px;
  cursor: pointer;
  transition: background .2s;
  border-top: 1px solid rgb(225,226,228);
}

.address__item:first-child {
  border: 0;
}

.address__item:hover {
  background: #F5F5F5;
}

.address-error-text {
  display: none;
  color: #d32f2f;
}

.address-error-text.active {
  display: block;
}

.c-cart__payment-methods-title img {
  display: none;
}

#billing_country_field, #billing_email_field{
  display: none!important;
}

#billing_address_1_field label .optional {
  display: none;
}

.c-cart__payment-methods-box {
  display: none!important;
}