.hidden {
  display: none;
}

#payment-message {
  color: rgb(105, 115, 134);
  font-size: 16px;
  line-height: 20px;
  padding-top: 12px;
  text-align: center;
}

.spinner {
    transform: translate(-50%, -50%);
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left: 4px solid #fff;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.text-decoration-line-through {
  text-decoration: line-through;
}

@media (max-width: 421px) {
    .pricesDiv .text-end {
        width: 100%;
        text-align: left !important;
    }
    .pricesDiv .justify-content-between {
        margin: 5px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .pricesDiv .text-end {
        width: 100%;
        text-align: left !important;
    }
    .pricesDiv .justify-content-between {
        margin: 5px;
    }
}