.note-overlay-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #00000080;
    z-index: 9999999;
    display: flex;
    justify-content: center;
    align-items: center;
}
.note-box-wrapper {
    background-color: white;
    padding: 48px;
    border-radius: 4px;
    width: 550px;
}
@media (max-width: 560px) {
    .note-box-wrapper {
        width: 100%;
        margin-left: 10px;
        margin-right: 10px;
    }
}
.note-box-wrapper .button-wrapper {
    margin-top: 24px;
    display: flex;
    justify-content: space-between;
}
.note-box-wrapper .button-wrapper button {
    width: 48%;
    border-radius: 4px;
    font-size: 14px;
    line-height: 16px;
    font-weight: 700;
    border: 1px solid #EF1923;
    padding: 16px 0;
    cursor: pointer;
}
.note-popup-cancel {
    color: #EF1923;
    background-color: white;
}
.note-popup-next {
    background-color: #EF1923;
    color: white;
}
.note-title {
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    margin-bottom: 20px;
    margin-top: 0;
}
.note-textarea {
    width: 100%;
}
.product-note {
    display: none;
}