/* Currency conversion styles */
.options-tariffs__price-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.options-tariffs__price {
  display: flex;
  color: #626989;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.options-tariffs__price-euro {
  display: flex;
  align-items: center;
  color: #8a8da8;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  opacity: 0.85;
  white-space: nowrap;
}

.options-tariffs__price-euro span {
  display: inline-flex;
  align-items: center;
}

.price__currency-euro {
  margin: 0;
  padding: 0;
}

.price__cost-euro {
  margin: 0;
  padding: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .options-tariffs__price-euro {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .options-tariffs__price-container {
    gap: 1px;
  }

  .options-tariffs__price-euro {
    font-size: 11px;
  }
}

/* Popup currency styles */
.order__size-price-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.order__size-price-euro {
  display: flex;
  align-items: center;
  color: #8a8da8;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  opacity: 0.85;
  white-space: nowrap;
}

.order__size-price-euro span {
  display: inline-flex;
  align-items: center;
}

.order__size-price_c_euro {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.order__size-price_c_euro p {
  margin: 0;
  padding: 0;
}

.order__size-price_h_euro {
  font-size: 11px;
  opacity: 0.7;
}

.total-order__price-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.total-order__price-euro {
  display: flex;
  align-items: center;
  color: #8a8da8;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  opacity: 0.85;
  white-space: nowrap;
}

.total-order__price-euro span {
  display: inline-flex;
  align-items: center;
}

.total-order__price_c_euro {
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
}

/* Responsive adjustments for popup */
@media (max-width: 768px) {
  .order__size-price-euro,
  .total-order__price-euro {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .order__size-price-container,
  .total-order__price-container {
    gap: 1px;
  }

  .order__size-price-euro,
  .total-order__price-euro {
    font-size: 10px;
  }

  .order__size-price_h_euro {
    font-size: 9px;
  }
}
