html {
    font-family: system-ui, -apple-system, "Hiragino Sans", "Segoe UI", Roboto, Ubuntu, Cantarell, "Noto Sans", sans-serif, "system-ui", "Droid Sans";
}
  
p {
    margin: 0;
}

.modal-mask {
    position: fixed;
    right: 0;
    left: 0;
    bottom: 0;
    top: 0;
    background: rgba(0,0,0,.6);
    z-index: 10;
    touch-action: none;
}

.modal-wrap {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 24px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
}

.modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 16px;
}

.image {
    width: 128px;
    height: 64px;
}

.image.error {
    background-image: url('./images/icon_half_sheet_error.svg');
}

.title {
    font-weight: 600;
    color: #242323;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    margin: 16px 0;
}

.description {
    font-size: 14px;
    line-height: 22px;
    color: #606060;
    text-align: center;
}

.btn {
    box-sizing: border-box;
    border: none;
    border-radius: 8px;
    background-color: #3895ff;
    color: #fff;
    outline: none;
    width: 100%;
    padding: 8px 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    font-size: 14px;
    text-decoration: none;
}
