/* PANEL BOX */
.spw-dialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
    z-index: 99999;
    padding: 3%;
    overflow-y: auto;
}
.spw-dialog::-webkit-scrollbar {
    cursor: pointer;
    width: 6px;
    height: 6px;
    background: rgba(241,241,241,1);
}
.spw-dialog::-webkit-scrollbar-track {
    cursor: pointer;
    background: rgba(241,241,241,1);
}
.spw-dialog::-webkit-scrollbar-thumb {
    cursor: pointer;
    background: rgba(193,193,193, 1);
}
@media screen and (max-width: 766px) {
    .spw-dialog {
        padding: 10px;
    }
}
.spw-dialog-header {
    height: 40px;
}
.spw-dialog-out-1 {
    width: 3%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
}
.spw-dialog-out-2 {
    width: 100%;
    height: 6%;
    left: 0;
    top: 0;
    position: absolute;
}
.spw-dialog-out-3 {
    width: 3%;
    height: 100%;
    right: 0;
    top: 0;
    position: absolute;
}
.spw-dialog-out-4 {
    width: 100%;
    height: 6%;
    left: 0;
    bottom: 0;
    position: absolute;
}

/* PANEL BOX SMALL*/
.spw-dialog-sm {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
    z-index: 99999;
    padding: 5% 25%;
    overflow-y: auto;
}
.spw-dialog-sm::-webkit-scrollbar {
    cursor: pointer;
    width: 6px;
    height: 6px;
    background: rgba(241,241,241,1);
}
.spw-dialog-sm::-webkit-scrollbar-track {
    cursor: pointer;
    background: rgba(241,241,241,1);
}
.spw-dialog-sm::-webkit-scrollbar-thumb {
    cursor: pointer;
    background: rgba(193,193,193, 1);
}
@media screen and (max-width: 766px) {
    .spw-dialog-sm {
        padding: 10px;
    }
}
.spw-dialog-sm-header {
    height: 40px;
}
.spw-dialog-sm-out-1 {
    width: 25%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
}
.spw-dialog-sm-out-2 {
    width: 100%;
    height: 25%;
    left: 0;
    top: 0;
    position: absolute;
}
.spw-dialog-sm-out-3 {
    width: 25%;
    height: 100%;
    right: 0;
    top: 0;
    position: absolute;
}
.spw-dialog-sm-out-4 {
    width: 100%;
    height: 40%;
    left: 0;
    bottom: 0;
    position: absolute;
}

/* MENU */
.spw-menu-box {
    width: 100%;
    border: 1px solid #A3AFB7;
    text-align: center;
    cursor: pointer;
    min-height: 80px;
    border-radius: 3px;
    padding: 10px;
    margin-bottom: 20px;
    color: #526069;
}
.spw-menu-box:hover {
    background-color: #00909E;
    color: white;
}
.spw-menu-box-txt {
    line-height: 15px;
    height: 25px;
}
.spw-menu-box-icon {
    font-size: 24px;
}
.spw-box-obj {
    border: 1px solid #526069;
    border-radius: 8px;
    margin-bottom: 16px;
    background-color: white;
}
.spw-box-answer {
    width: 100%;
    font-size: 0.9em;
}