/* PANEL BOX */
.spw-dialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    z-index: 9;
    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.4);
    z-index: 9;
    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;
}

/* DIALOG FOR SELECT OPTION. */
.spw-select-parent {
    position: relative;
}
.spw-select {
    position: absolute;
    top: 100%;
    left: 0;
    width: 150%;
    border: 1px solid #e4eaec;
    z-index: 9;
    background: white;
    height: 200px;
    overflow: auto;
    box-shadow: 2px 2px 2px rgba(0,0,0,.1);
}
.spw-select::-webkit-scrollbar {
    cursor: pointer;
    width: 6px;
    height: 6px;
    background: rgba(241,241,241,1);
}
.spw-select::-webkit-scrollbar-track {
    cursor: pointer;
    background: rgba(241,241,241,1);
}
.spw-select::-webkit-scrollbar-thumb {
    cursor: pointer;
    background: rgba(193,193,193, 1);
}
.spw-option {
    padding: 8px 10px;
    cursor: pointer;
    font-size: 12px;
}
.spw-option:hover {
    background-color: #e4eaec;
}