.edd-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.edd-container,
.bn-shipping-rates,
.bn-returns-rates {
  margin-bottom: 10px;
}

.authentic-edd .edd-container,
.authentic-edd.bn-shipping-rates,
.authentic-edd.bn-returns-rates {
  margin-bottom: 0;
}

.authentic-edd .edd-container p,
.authentic-edd .edd-container span,
.authentic-edd.bn-shipping-rates p,
.authentic-edd.bn-shipping-rates span,
.authentic-edd.bn-returns-rates p,
.authentic-edd.bn-returns-rates span {
  margin: 0;
  line-height: calc(var(--typeBaseLineHeight)*0.7);
}

.edd-container p,
.bn-shipping-rates p,
.bn-returns-rates p {
  margin-top: 5px;
  margin-bottom: 5px;
  text-align: left;
}

.bn-shipping-rates,
.edd-delivery,
.bn-returns-rates {
  display: flex;
  align-items: center;
  gap: .5rem;
}

#id-edd-container img,
.bn-shipping-rates img,
.bn-returns-rates img {
  margin-right: 5px;
  width: 25px;
  height: 25px;
}

.bn-extra-margin {
  margin-bottom: 20px !important;
}

.edd-dot {
  height: 13px;
  width: 13px;
  border: 3px solid black;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
}

.iconEdd {
  margin-right: 6px;
}

.edd-bolder {
  font-weight: bolder;
}

.edd-underline {
  text-decoration: underline;
}

.edd-cursor {
  cursor: pointer;
}

.edd-modal-open {
  display: flex;
}

#id-edd-container {
  gap: .5rem;
}

#id-edd-container img {
  height: 25px;
  margin-top: 5px;
}

.edd-modal-close {
  display: none;
}

#edd-entire-modal {
  background-color: rgba(0, 0, 0, 0.411);
  position: fixed;
  z-index: 300;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  justify-content: center;
  align-items: center;
}

.edd-modal-open {
  display: flex;
}

.edd-modal-close {
  display: none;
}

#edd-modal-content {
  background-color: white;
  width: 500px;
  padding: 1.5rem;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

#close-modal-gift {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  font-size: 2rem;
  line-height: 1.2rem;
  text-align: end;
  cursor: pointer;
}

@media (max-width: 800px) {
  #edd-modal-content {
    width: 94%;
  }

  #edd-entire-modal {
    align-items: start;
    padding-top: 2rem;
  }

  .authentic-edd .edd-delivery {
    justify-content: flex-start;
  }
}

.edd-text-center {
  text-align: center;
}

.edd-mb-10 {
  margin-bottom: 10px !important;
}

.edd-disclaimer {
  font-size: 0.8rem;
  margin: 0 !important;
}

.authentic-edd .edd-disclaimer {
  margin: 3px 0 0 0 !important;
}

.wrongPostalCode {
  color: red;
  text-align: center;
}

.svg-edd {
  height: 12px;
  width: 12px;
  margin-bottom: 1px;
}

/* Stile base per lo skeleton loader */
.bn-edd-skeleton {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 5px;
}

.bn-edd-skeleton .bn-edd-skeleton-line:nth-child(2) {
  width: 270px;
  background-color: #e0e0e0;
}

.bn-edd-skeleton-line {
  background-color: #d6d6d6;
  border-radius: 4px;
  width: 250px;
  height: 1.3rem;
  position: relative;
  overflow: hidden;
}

.bn-edd-skeleton-line::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.4) 50%,
      rgba(255, 255, 255, 0) 100%);
  animation: shimmer 1.5s infinite;
}

.authentic-top-border {
  border-top: 1px solid;
}

.authentic-bottom-border {
  border-bottom: 1px solid;
}

.authentic-edd {
  text-transform: uppercase;
  padding: 15px;
}

.authentic-edd .bn-edd-skeleton-line {
  width: 100% !important;
}

.authentic-edd .edd-delivery,
.authentic-edd .bn-returns-container,
.authentic-edd #bn-shipping-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.authentic-edd .bn-returns-container p:last-child {
  text-align: right;
}


#bn-shipping-container {
  display: flex;
  width: 100%;
  gap: .5rem;
}


@keyframes shimmer {
  0% {
    transform: translateX(-150%);
  }

  100% {
    transform: translateX(150%);
  }
}





/*css test */

.info-tooltip-wrapper {
  position: relative;
  display: flex;
  cursor: pointer;
}

.tooltip-content {
  display: none;
  position: absolute;
  top: 150%;
  left: -60px;
  transform: translateX(-50%) translateY(-4px);
  background: #334155;
  color: #fff;
  padding: 8px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  z-index: 999;
  width: 120px;
}

.tooltip-content::after {
  content: "";
  position: absolute;
  top: -8px;
  right: 0;
  width: 0;
  height: 0;
  border-bottom: 10px solid #334155;
  border-left: 10px solid transparent;
}

.info-tooltip-wrapper:hover .tooltip-content {
  display: block;
}

.edd-bolder:hover * {
  background-color: yellow;
}