.text-small {
    font-size: 12px;
}

.text-mid-small {
    font-size: 14px;
}

.text-mid-small-gray {
    font-size: 14px;
    color: dimgray;
}

.hr_margin {
    margin-top: 5px;
    margin-bottom: 5px;
}

.post_checkout_shipping_form {
    max-width: 400px;
}

.riskified_blue_bg {
    background-color: #5A4CFF;
}

.riskified_darknavy_bg {
    background-color: #080e3f;
}

.endpoint {
    font-size: 18px;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.price {
    width: 50px;
}

.code {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.4em;
    filter: drop-shadow(10px 10px 5px #FFD9D7);
}

#loadingOverlay1 {
    display: none;
    /* デフォルトでは非表示 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(128, 128, 128, 0.7);
    /* グレーアウトと透明度 */
    justify-content: center;
    align-items: center;
    z-index: 1000;
    /* 他のコンテンツより前面に表示 */
    flex-direction: column;
}

#loadingOverlay2 {
    display: none;
    /* デフォルトでは非表示 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(128, 128, 128, 0.7);
    /* グレーアウトと透明度 */
    justify-content: center;
    align-items: center;
    z-index: 1000;
    /* 他のコンテンツより前面に表示 */
    flex-direction: column;
}

.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

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

    100% {
        transform: rotate(360deg);
    }
}