#reorder-popup {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100000;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    width: 100%;
    height: 100%;
}

#reorder-popup .popup-wrapper {
    position: relative;
    top: 50%;
    right: calc(50% - 250px);
    transform: translateY(-50%);
    width: 500px;
    max-height: 95%;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 0 10px #00000038;
}

#reorder-popup .popup-title {
    font-size: 20px;
    font-weight: bold;
    font-family: var(--text-font-family);
    color: var(--text-color);
    padding: 10px 20px;
    border-bottom: 1px solid var(--border-color);
}

#reorder-popup .popup-content {
    padding: 20px;
}

#reorder-popup form {
    display: flex;
    flex-direction: column;
}

#reorder-popup .popup-content p {
    font-size: 14px;
    font-family: var(--text-font-family);
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-color);
}

#reorder-popup .popup-content p u{
    text-underline-offset:4px;
}

#reorder-popup .popup-content .notify {
    font-size: 13px;
    font-family: var(--text-font-family);
    line-height: 22px;
    color: var(--text-color-light);
    margin-top: 15px;
}

#reorder-popup .popup-content .notify:before {
    content: '*';
    color: #9e2e32;
    padding-left: 2px;
    font-weight: bold;
    line-height: 22px;
    font-size: 16px;
}

#reorder-popup form .radio-item {
    position: relative;
    margin-bottom: 10px;
}

#reorder-popup form .radio-item input[type="radio"] {
    visibility: hidden;
    position: absolute;
    right: 0;
    top: 0;
}

#reorder-popup form .radio-item label {
    font-family: var(--text-font-family);
    position: relative;
    margin: 0;
    padding-right: 20px;
    color: var(--text-color);
    font-size: 14px;
}

#reorder-popup form .radio-item label:before {
    content: '';
    width: 15px;
    height: 15px;
    background: #fff;
    border: 1px solid var(--border-color-dark2);
    border-radius: 8px;
    position: absolute;
    right: 0;
    top: 0;
}

#reorder-popup form .radio-item label:after {
    content: '';
    width: 9px;
    height: 9px;
    background: transparent;
    border-radius: 50%;
    position: absolute;
    right: 4px;
    top: 4px;
}

#reorder-popup form .radio-item input[type="radio"]:checked ~ label:after {
    background: var(--third-color);
}

#reorder-popup .btn-wrapper {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    margin-top: 20px;
    position: relative;
}

#reorder-popup .btn-wrapper:before {
    content: '';
    position: absolute;
    right: -20px;
    left: -20px;
    top: 0;
    border-top: 1px solid var(--border-color);
}

#reorder-popup .btn-wrapper .btn {
    flex: 0 0 49%;
}

#reorder-popup .btn-wrapper .btn.submit {
    background: var(--primary-color);
}

#reorder-popup .btn-wrapper .btn.submit:hover {
    background-color: var(--third-color);
    color: #fff;
}