.me-price-select-area{
    display: inline-block;
    float: right;
    margin-top: 5.5px;
    margin-right: 10px;
}
.me-price-select{
    padding: 4px;
    border: none;
    font-size: 14px;
	outline: none !important;
}
.me-loading-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: transparent;
    height: 30px;
}
.me-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #fff;
  animation: me-dotFlashing 1.5s infinite linear alternate;
}

.me-dot:nth-child(2) {
  animation-delay: 0.3s;
}

.me-dot:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes me-dotFlashing {
  0% {
    opacity: 0.2;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.5);
  }
  100% {
    opacity: 0.2;
    transform: scale(1);
  }
}