/* region-switch-confirm modal styles */

.region-switch-confirm__content {
    max-width: 480px;
}

.region-switch-confirm__top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
}

.region-switch-confirm__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #fff3cd;
    color: #e8a000;
    flex-shrink: 0;
}

.region-switch-confirm__icon svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.region-switch-confirm__title {
    margin: 0;
    text-align: center;
}

.region-switch-confirm__scroll {
    padding-top: 0;
}

.region-switch-confirm__text {
    margin: 0 0 24px;
    text-align: center;
    color: #555;
    line-height: 1.5;
}

.region-switch-confirm__btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.region-switch-confirm__btns .btn {
    width: 100%;
    justify-content: center;
}

/* region-switch-flash bar styles */

.region-switch-flash {
    background: #fff8e1;
    border-bottom: 1px solid #ffe082;
    padding: 12px 0;
    animation: region-switch-flash-fade-in 200ms ease-out;
}

.region-switch-flash__inner {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.region-switch-flash__icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: #f57c00;
}

.region-switch-flash__icon svg {
    width: 100%;
    height: 100%;
}

.region-switch-flash__text {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    color: #5d4037;
}

.region-switch-flash__close {
    flex-shrink: 0;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 4px 8px;
    font-size: 18px;
    color: #5d4037;
    line-height: 1;
}

.region-switch-flash__close:hover {
    color: #d32f2f;
}

@keyframes region-switch-flash-fade-in {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
