.admin-panel-container {
    margin: 20px 10px;
}

.panel-title {
    font-size: 22px;
    text-align: center;
    font-weight: 600;
    padding: 10px;
    border-bottom: 1px solid #d0c4c4;
    color: #2841bb;
}

.input_row {
    display: flex;
    margin: 10px 0;
    align-items: center;
}

.input_label {
    padding-right: 10px;
    font-weight: 600;
}

.input_box {
    flex: 6;
}

.single-input {
    flex: 1;
    display: flex;
    align-items: center;
}

.single-input input {
    width: 100%;
}

.metabox_content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.metabox_description {
    margin: 5px 0 0 5px;
    font-size: 11px;
    color: #3e3e3e;
}

.metabox-row {
    display: flex;
    align-items: center;
    width: 100%;
}

.show-pass-box {
    width: 100%;
    padding-left: 15px !important;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.ftpb-container {
    margin: 15px;
    border: 1px solid #e0e0e0;
}

.ftpb-header {
    padding: 2px 10px;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    background-color: #f20000;
    border-bottom: 1px solid #e0e0e0 !important;
    text-transform: uppercase;
}

.ftpb-container a:hover {
    color: #f20000;
    text-decoration: underline;
}

.ftpb-browser-row:hover {
    background-color: #d8d8d8 !important;
}

.ftpb-browser-row {
    display: flex;
    transition-duration: .3s;
}

.ftpb-browser-row:not(.browser-row-header):not(.dir-selected):hover {
    background-color: #515156;
}

.ftpb-browser-row .ftpb-col:nth-child(1) {
    flex: 4;
}

.ftpb-browser-row .ftpb-col:nth-child(2) {
    flex: 1;
}

.ftpb-browser-row .ftpb-col:nth-child(3) {
    flex: 1;
}

.ftpb-browser-row .ftpb-col:nth-child(4) {
    flex: 2;
}

.ftpb-browser-row.browser-row-header {
    background-color: #fff;
    color: #212529;
    font-weight: 400;
    border-bottom: 1px solid #e0e0e0;
    text-transform: uppercase;
}

.ftpb-browser-list {
    height: 400px;
    overflow-y: auto;
    background-color: #fff;
    color: #212529;
    text-transform: uppercase;
}

.search-list-result {
    overflow-y: auto;
    height: 400px;
}

.ftpb-browser-row:not(.browser-row-header) {
    color: #6c757d;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.ftpb-browser-row:not(.browser-row-header):not(.dir-selected) {
    cursor: pointer;
}

.ftpb-browser-row .ftpb-col:not(:last-child) {
    border-right: 1px solid #fff;
}

.ftpb-col {
    padding: 3px 5px;
    display: flex;
    align-items: center;
}

.ftpb-no-files {
    text-align: center;
    padding: 10px;
    color: #fff;
}

.ftp-browser-footer {
    background-color: #fff;
    text-align: end;
    padding: 2px 10px;
    font-size: 12px;
    color: #000;
    border-top: 1px solid #e0e0e0;
}

.ftp-struct-container {
    display: flex;
}

.ftp-struct-side:last-child {
    flex: 2;
}

.dir-btn.dir-selected {
    padding-left: 15px;
    background-color: #d8d8d8;
}

.ftp-struct-side:first-child {
    border-right: 1px solid #e0e0e0;
    flex: 1;
    max-width: 320px;
}

.ftpb-path i {
    padding: 0 5px;
}

.col-name {
    margin-left: 8px;
}

.ftpb-browser-row.browser-row-header.row-padded {
    padding-right: 16px;
}

.ftpb-browser-row.browser-row-header .ftpb-col {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.col-sort-box {
    font-size: 14px;
}

.col-sort-box.sort-disabled {
    display: none;
}

.col-sort-box:not(.sort-none) i.fa-solid.fa-sort {
    display: none;
}

.col-sort-box:not(.sort-up) i.fa-solid.fa-sort-up {
    display: none;
}

.col-sort-box:not(.sort-down) i.fa-solid.fa-sort-down {
    display: none;
}

i.fa-solid.fa-sort {
    color: #b3b3b3;
}

input#search_val {
    width: 100%;
    border: 0;
    padding: 5px 10px;
}

input#search_val:focus {
    box-shadow: unset;
}

.ftpb-search-box {
    display: flex;
    align-items: center;
    padding-right: 10px;
    border-bottom: 1px solid #ddd;
}

#notify{
    position: fixed;
    z-index: 9999999;
    display: flex;
    align-items: center;
    padding: 20px;
    color: #fff;
    line-height: 1.3;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.35);
    max-width: 350px;
    margin: 20px;
    overflow: hidden;
    -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.5);
    -o-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
}
@keyframes fade-in {
    from {
        visibility: hidden;
        opacity: 0;
    }
    to {
        visibility: visible;
        opacity: 1;
    }
}
#notify[data-notification-status="notice"]:before,
#notify[data-notification-status="error"]:before,
#notify[data-notification-status="warning"]:before,
#notify[data-notification-status="success"]:before {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    min-width: 30px;
    margin-right: 20px;
}
/** top left **/
.top-left {
    top: 0;
    left: 0;
}
#notify[data-notification-status="success"] {
    background-color: #66bb6a;
}
#notify[data-notification-status="success"]:before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M12 3.984c4.407 0 8.016 3.609 8.016 8.016 0 4.406-3.608 8.016-8.016 8.016S3.984 16.407 3.984 12 7.593 3.984 12 3.984m0-2C6.478 1.984 1.984 6.477 1.984 12c0 5.521 4.493 10.016 10.016 10.016S22.016 17.522 22.016 12c0-5.523-4.495-10.016-10.016-10.016zm0 2c4.407 0 8.016 3.609 8.016' fill='%2339813C'/%3E%3Cpath d='M10.477,13.136l5.085-5.085l1.406,1.406l-6.492,6.492l-3.446-3.445l1.406-1.406L10.477,13.136z' fill='%2339813C'/%3E%3C/svg%3E") center / cover no-repeat;
}
/**top right**/
.top-right {
    top: 0;
    right: 0;
}

.do-show {
    animation: fade-in 1s ease-in-out forwards,
    fade-in 1s ease-in-out reverse forwards 3s;
}
#notify[data-notification-status="warning"] {
    background-color: #ffca28;
}
#notify[data-notification-status="warning"]:before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M12 3.984c4.407 0 8.016 3.609 8.016 8.016 0 4.406-3.608 8.016-8.016 8.016S3.984 16.407 3.984 12 7.593 3.984 12 3.984m0-2C6.478 1.984 1.984 6.477 1.984 12c0 5.521 4.493 10.016 10.016 10.016S22.016 17.522 22.016 12c0-5.523-4.495-10.016-10.016-10.016zm0 2c4.407 0 8.016 3.609 8.016' fill='%23C19100'/%3E%3Cpath d='M11.016,17.016h1.968V15h-1.968V17.016z M11.016,6.983v6.001h1.968V6.983H11.016z' fill='%23C19100'/%3E%3C/svg%3E") center / cover no-repeat;
}
/** bottom-right**/
.bottom-right {
    bottom: 0;
    right: 0;
}

#notify[data-notification-status="error"] {
    background-color: #f22a4d;/*#ef5350*/
}
#notify[data-notification-status="error"]:before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M12 3.984c4.407 0 8.016 3.609 8.016 8.016 0 4.406-3.608 8.016-8.016 8.016S3.984 16.407 3.984 12 7.593 3.984 12 3.984m0-2C6.478 1.984 1.984 6.477 1.984 12c0 5.521 4.493 10.016 10.016 10.016S22.016 17.522 22.016 12c0-5.523-4.495-10.016-10.016-10.016zm0 2c4.407 0 8.016 3.609 8.016' fill='%23C61512'/%3E%3Cpath d='M13.406,12l2.578,2.578l-1.406,1.406L12,13.406l-2.578,2.578l-1.406-1.406L10.594,12L8.016,9.421l1.406-1.405L12,10.593 l2.578-2.577l1.406,1.405L13.406,12z' fill='%23C61512'/%3E%3C/svg%3E") center / cover no-repeat;
}
/** bottom-left **/
.bottom-left {
    bottom: 0;
    left: 0;
}
#notify[data-notification-status="notice"] {
    background-color: #29b6f6;
}
#notify[data-notification-status="notice"]:before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M12 3.984c4.407 0 8.016 3.609 8.016 8.016 0 4.406-3.608 8.016-8.016 8.016S3.984 16.407 3.984 12 7.593 3.984 12 3.984m0-2C6.478 1.984 1.984 6.477 1.984 12c0 5.521 4.493 10.016 10.016 10.016S22.016 17.522 22.016 12c0-5.523-4.495-10.016-10.016-10.016zm0 2c4.407 0 8.016 3.609 8.016' fill='%23077CB1'/%3E%3Cpath d='M11.016,6.984V9h1.968V6.984H11.016z M11.016,17.016h1.968v-6h-1.968V17.016z' fill='%23077CB1'/%3E%3C/svg%3E") center / cover no-repeat;
}

@media screen and (max-width: 767px) {
    .ftp-struct-container {
        flex-direction: column;
    }

    .ftp-struct-side.struct-directories {
        max-height: 200px;
        overflow-y: auto;
    }

    .ftp-struct-side {
        max-width: unset !important;
    }

    .ftpb-browser-row.browser-row-header {
        background-color: #7c7c7c;
        color: #fff;
        font-weight: 600;
        padding: 8px
    }
}

