.country_icon {
    width: 25px;
    box-shadow: 1px 1px 3px 0px;
}

.bg_success {
    /*background-color: #b9f6ca;*/
}

.bg_error {
    background-color: #f44336;
}

@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}

.shake {
    animation: shake 0.3s ease-in-out;
}

@keyframes countUp {
    from {
        content: "0";
    }
    to {
        content: "100";
    }
}

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

.counter {
    font-size: 2rem;
    font-weight: bold;
    display: inline-block;
    line-height: normal;
}

.counter::after {
    content: "0";
    animation: countUp 2s linear forwards;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5); /* 어두운 배경 */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content {
    background: white;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-card-secondary {
    margin-left: 5px;
}

.label-typography {
    display: flex;
    box-sizing: content-box;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    text-align: center;
    color: #e8e9ed;
    margin: 0 6px;
}

.label-typography.xsmall {
    padding: 3px 8px;
    font-size: 10px;
    border-radius: 5px;
    width: 100px;
    height: 14px;
}

.label-typography.small {
    padding: 4px 10px;
    font-size: 14px;
    border-radius: 8px;
    width: 120px;
    height: 22px;
}

.label-typography.medium {
    padding: 6px 14px;
    font-size: 20px;
    border-radius: 10px;
    width: 160px;
    height: 38px;
}
.label-typography.large {
    padding: 8px 20px;
    font-size: 24px;
    border-radius: 12px;
    width: 200px;
    height: 48px;
}



.statementTest {
    position: relative;
    border-radius: 12px;
    background: #fff;
    z-index: 0;
    overflow: hidden;
    padding: 3px;
}

.statementTest.success {
    background: #00c853;
}

.statementTest.fail {
    background: #c62828;
}

.statementTest.request::before {
    content: "";
    position: absolute;
    inset: -2px; /* 테두리 두께 */
    border-radius: 14px;
    background: conic-gradient(
            red,
            orange,
            yellow,
            green,
            blue,
            indigo,
            violet,
            red
    );
    animation: statementSpin 3s linear infinite;
    z-index: -1;
}

@keyframes statementSpin {
    to {
        transform: rotate(360deg);
    }
}