#lopd_modal {
    position: fixed;
    z-index: 9999999;

    width: 100%;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;

    top: 0;

    background-color: rgba(0, 0, 0, 0.8);

    font-size: inherit;
}

.lopd_modal-check {
    width: 100%;
    max-width: 600px;
    min-height: 300px;

    height: 70vh;

    background-color: #F0F3F6;
    box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.25);
    border-radius: 5px;

    position: relative;

    z-index: 1;

    overflow-y: auto;
}

.lopd_modal-check-header {
    text-align: center;
    font-weight: bold;
    padding: 1rem 2rem;
    color: white;
    background-color: #343434;

    font-size: 1.8rem;

    margin: 0.5rem 1rem;
}

.lopd_modal-check-title {
    margin: 0.5rem 1rem;
    font-size: 1.5rem;
    background-color: #ffa100;
    color: white;
    padding: 1rem;
    font-weight: bold;
    border-radius: 5px;
}

.lopd_modal-check__select-all {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem;
    padding: 0.8rem;
    background-color: #e8ecf0;
    border-radius: 5px;
}

.lopd_modal-check__select-all input {
    cursor: pointer;
    width: 15px;
    height: 15px;
    margin: 0;
}

.lopd_modal-check__select-all label {
    cursor: pointer;
    margin: 0;
}

.lopd_modal-check__body {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-items: flex-start;
    flex-wrap: nowrap;
}

.lopd_modal-check__body-col {
    width: calc(50% - 2rem);
    padding: 1.5rem;
}

.lopd_modal-check__body-col-border {
    border-right: solid 1px grey;
}


.lopd_modal-check__body-box {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: nowrap;
    width: 100%;
    margin-bottom: 1rem;
    min-height: 28px;
}


.lopd_modal-check__body-box input {
    display: block;
    
    cursor: pointer;
    width: 15px;
    height: 15px!important;
    padding: 0;


    margin: 0;
    margin-right: 0.5rem;
    margin-top: 0.5rem;
}

.lopd_modal-check__body-box label {
    display: block;
    cursor: pointer;
    width: 100%;
    margin-top: 0;
}

.lopd_modal-check-right {
    width: calc(100% - 2rem);
    margin: 0.5rem 1rem;
    text-align: right;
}

.lopd_modal-check-right-closed {
    cursor: pointer;
    font-weight: bold;
}

.lopd_modal-button-closed {
    cursor: pointer;
    padding: 6px 12px;
    text-align: center;
    margin: 0.5rem 1rem;
    margin-bottom: 2rem;
    background-color: #ffa100;
    color: white;
    font-size: 1.2rem;

    width: 80px;
}

