body {
    font-family: "Zen Maru Gothic", sans-serif;
}

@font-face {
    font-family: "LearningCurve";
    src: url("../../font/LearningCurve.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

.marginTop-8 {
    margin-top: 8px;
}

.marginTop-10 {
    margin-top: 10px;
}

.marginTop-16 {
    margin-top: 16px;
}

.marginTop-20 {
    margin-top: 20px;
}

.flexColumn {
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* button common */
button:disabled {
    cursor: not-allowed !important;
}

.button_shadow_filled {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 5px 20px;
    border: 1px solid white;
    border-radius: 6px;
    font-weight: bold;
    color: white;
    font-size: 14px;
    line-height: normal;
    transition: all 0.15s ease;
    cursor: pointer;
    &:active:not(:disabled)  {
        border: 1px solid transparent;
        box-shadow: 0px 3px 0px transparent;
    }
}

.button_shadow_filled_default {
    background-color: #E62E81;
    box-shadow: 0px 3px 0px #FAB4CE;
}

.button_shadow_filled_pink {
    background-color: #FA8DBA;
    box-shadow: 0px 3px 0px #FAB4CE;
}

.button_shadow_filled:disabled, .button_shadow_filled_gray {
    background-color: #B3B3B3;
    box-shadow: 0px 3px 0px #C9C9C9;
}

.button_shadow_outline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: white;
    padding: 5px 20px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 14px;
    line-height: normal;
    transition: all 0.15s ease;
    cursor: pointer;
    &:active {
        box-shadow: 0px 3px 0px transparent;
    }
}

.button_shadow_outline_default {
    color: #E62E81;
    border: 1px solid #E62E81;
    box-shadow: 0px 3px 0px #FAB4CE;
}


.button_shadow_outline_pink {
    color: #FA8DBA;
    border: 1px solid #FA8DBA;
    box-shadow: 0px 3px 0px #FAB4CE;
}

.button_shadow_outline:disabled, .button_shadow_outline_gray {
    color: #B3B3B3;
    border: 1px solid #B3B3B3;
    box-shadow: 0px 3px 0px #C9C9C9;
}

.button_shadow_white_pink {
    padding: 5px 20px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 14px;
    line-height: normal;
    color: #4D4D4D;
    background-color: white;
    border: 1px solid white;
    box-shadow: 0px 3px 0px #FAB4CE;
    transition: all 0.15s ease;
    cursor: pointer;
    &:active {
        color: white;
        border: 1px solid #FA8DBA;
        background-color: #FA8DBA;
        box-shadow: 0px 3px 0px transparent;
    }
}

/* button filled and outline */

.button_filled {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 5px 20px;
    border-radius: 6px;
    font-weight: bold;
    color: white;
    font-size: 14px;
    line-height: normal;
    transition: transform 0.2s ease-in-out;
    cursor: pointer;
    &:active {
        transform: scale(0.95);
    }
}

.button_filled_default {
    border: 1px solid #E62E81;
    background-color: #E62E81;
}

.button_shadow_filled_white {
    border: 1px solid #E62E81;
    background-color: white;
    color: #E62E81;
    box-shadow: 0px 3px 0px #FAB4CE;
}

.button_filled_pink {
    border: 1px solid #FA8DBA;
    background-color: #FA8DBA;
}

.button_filled:disabled, .button_filled_gray {
    border: 1px solid #B3B3B3;
    background-color: #B3B3B3;
}

.button_outline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 5px 20px;
    border-radius: 6px;
    font-weight: bold;
    background-color: white;
    font-size: 14px;
    line-height: normal;
    transition: transform 0.2s ease-in-out;
    cursor: pointer;
    &:active {
        transform: scale(0.95);
    }
}

.button_outline_default {
    border: 1px solid #E62E81;
    color: #E62E81;
}

.button_outline_pink {
    border: 1px solid #FA8DBA;
    color: #FA8DBA;
}

.button_outline:disabled, .button_outline_gray {
    border: 1px solid #B3B3B3;
    color: #B3B3B3;
}

.button_filled:disabled, .button_outline:disabled {
    &:active {
        transform: none;
    }
}

.button_rounded_full {
    border-radius: 9999px;
}

.button_small {
    font-size: 12px;
}