.dropzone {
    width: 100%;
    min-height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px dashed #aaa;
}

#box-upload {
    display: none;
}

.dropzone-close-btn {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 16px;
    color: #999;
    cursor: pointer;
}

.gallery-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.gallery-list li {
    width: 150px;
    height: 150px;
    margin: 20px;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.gallery-list li img {
    width: 100%;
    border-radius: 20px;
}

.gimage-delete-btn {
    position: absolute;
    right: 10px;
    top: 10px;
    background: #ffffff90;
    border-radius: 15px;
    padding: 0;
    color: #00000050;
    cursor: pointer;
    height: 21px;
    width: 21px;
}

/*********** Folders ***********/

/* Customize the label (the container) */

.cb_container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */

.cb_container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */

.cb_container:hover input~.checkmark {
    background-color: #ddd;
}

/* When the checkbox is checked, add a blue background */

.cb_container input:checked~.checkmark {
    background-color: #023F87;
}

/* Create the checkmark/indicator (hidden when not checked) */

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */

.cb_container input:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */

.cb_container .checkmark:after {
    left: 8px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.folder-header {
    cursor: pointer;
}

.folder-box {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 10px;
}

tr.folder-row:hover {
    background-color: aliceblue !important;
}

tr.folder-row>td.td-first {
    cursor: pointer;
    font-size: 16px;
}

tr.folder-row>td.td-second {
    width: 250px;
}

tr.folder-row>td.td-first i {
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    margin-right: 10px;
}

tr.folder-row td i.fa-angle-down {
    display: none;
}

tr.folder-row.active td {
    background-color: rgb(93, 176, 248) !important;
}

tr.subfolder-row {
    background-color: aliceblue !important;
}

.cb_container input:checked~.checkmark.disabled {
	background-color: #bbb;
}