.hges-shipping-method {
  font-family: 'MierA-Demi', sans-serif;
  border: 1px solid #E0E8ED;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  transition: border-color 0.3s;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.hges-shipping-method-title {
  border-top: 1px solid #000;
  padding-top: 1rem;
  margin-top: 1rem;
}

.woocommerce-shipping-methods li + li .hges-shipping-method-title {
  border-top: 1px solid #000;
}

/* first h5 with no border and padding */
.woocommerce-shipping-methods li:first-child .hges-shipping-method-title {
  border-top: none;
  padding: 0;
}

.hges-shipping-method-left {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.hges-shipping-label {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.hges-shipping-logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-right: 1rem;
}

.hges-shipping-logo img {
  border-radius: 6px;
}

.hges-shipping-info {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  margin-right: 1rem;
}

input[type="radio"]:checked + label .hges-shipping-method,
.hges-shipping-method.selected {
  background-color: #EFF3F5;
  border: 1px solid hsla(0, 0%, 7%, 0.11);
}

input[type="radio"] + label .hges-shipping-method .pickup-point-button{
  display:none;
}

input[type="radio"]:checked + label .hges-shipping-method .pickup-point-button {
  display:block;
}

.hges-shipping-method:hover {
  background-color: hsla(0, 0%, 7%, 0.11);
  cursor: pointer;
}
.cart_totals .shipping_method,
.woocommerce-checkout .shipping_method {
  display: none;
}

.woocommerce-checkout-review-order-table h3 {
  font-size: 1.1rem;
  font-weight: 600;
}

.pickup-point-button {
  text-align: center;
  max-width: fit-content;
  border-radius: 5px;
  color: #6F767E;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border: 2px solid #6F767E;
}

.pickup-point-button:hover {
  color: hsla(0, 0%, 100%, 0.793);
  background-color: hsla(0, 0%, 7%, 0.3);
  cursor: pointer;
}

#selected-pickup-point.hidden {
  display: none;
}

#selected-pickup-point {
  display: flex;
  flex-direction: column;
  margin: auto;
}

#selected-pickup-point-name {
  margin-top: 0.3rem;
}

.shipping-rate-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  padding-top: 2rem;
}

.shipping-rate-list__admin {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
  padding-top: 2rem;
}

.shipping-rate-list__admin .hges-shipping-method {
  flex: 1 1 calc(50% - 1rem);
  max-width: calc(45% - 1rem);
}

.hges-shipping-delivery {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}