
.fotkipress-content {
    display: flex;
    flex-direction: row;
}

.fotkipress-file-browser {
    flex: 1;
}

.fotkipress-directory-settings {
    background-color: white;
    border: 1px solid grey;
    border-radius: 2px;
    min-width: 250px;
    width: 250px;
    height: 300px;
    padding: 5px;
    margin: 0 0 0 10px;
}

.fotkipress-directory-settings .header {
    border-bottom: 1px solid grey;
    margin: 0 0 10px 0;
    text-align: center;
}

.fotkipress-directory-settings .content {
    padding: 5px;
}

.fotkipress-directory-settings .content .loader-wrapper {
    padding: 0 0 0 50px;
}

.fotkipress-loader {
    width: 60px;
    height: 60px;
    border: 13px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    margin: 0;
    padding: 0;
    animation: fokipress-loader-keyframes 2s linear infinite;
}

@keyframes fokipress-loader-keyframes {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.fotkipress-switch {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 21px;
}

.fotkipress-switch input {
    display: none;
}

.fotkipress-switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    border-radius: 34px;
    transition: 0.4s;
}

.fotkipress-switch .slider:before {
    position: absolute;
    content: "";
    height: 17px;
    width: 17px;
    left: 2px;
    bottom: 2px;
    top: 2px;
    background-color: white;
    border-radius: 50%;
    transition: 0.4s;
}

.fotkipress-switch input:checked + .slider {
    background-color: #2196F3;
}

.fotkipress-switch input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

.fotkipress-switch input:checked + .slider:before {
    transform: translateX(24px);
}

.fotkipress-switch input:disabled + .slider {
    cursor: not-allowed;
}

.fotkipress-switch .text {
    display: block;
    width: 175px;
    position: relative;
    left: 50px;
    text-align: center;
}

.fotkipress-dir-path {
    margin: 5px 0 5px 0;
}

.fotkipress-shortcode-examples {
    padding: 10px;
    margin: 0 0 10px 0 ;
    background-color: #e0e0e0;
    border-radius: 2px;
}

.fotkipress-files-container-wrapper {
    display: flex;
    min-height: 800px;
}

.fotkipress-files-container-wrapper .drop-area-layout {
    background-color: #6ecce8;
    opacity: 0.3;
    height: 100%;
    border: 1px solid #126dde;

    position: absolute;
    z-index: 1;
}

.fotkipress-files-container-wrapper .drop-area-input {
    opacity: 0;
    height: 100%;
    position: absolute;
    z-index: 100;
}

.fotkipress-files-container-wrapper .fotkipress-files-section {
    width: 100%;
}

.fotkipress-files-container-wrapper .fotkipress-files-section .fotkipress-layout {
    position: absolute;
    background-color: black;
    opacity: 0.7;
    z-index: 100;
}

.fotkipress-directory-tree {
    min-width: 250px;
    margin: 3px 10px 0 0;
}

.fotkipress-directory-tree > ul {
    margin: 0;
}

.fotkipress-directory-tree .fotkipress-directory-element {
    padding: 5px;
    margin: 0 5px 3px 0;
    position: relative;
    border: 1px solid #ccc;
    width: 90%;
}

.fotkipress-directory-tree .fotkipress-directory-element-dragged {
    background: transparent;
    border: 1px dashed #ccc;
}

.fotkipress-directory-tree .fotkipress-directory-element-dragged a,
.fotkipress-directory-tree .fotkipress-directory-element-dragged div {
    display: inline;
    background: #f1f1f1;
}

.fotkipress-directory-tree .fotkipress-directory-element-dragged-over {
    color: black;
}

.fotkipress-directory-tree .fotkipress-directory-element-subpaths .fotkipress-directory-element {
    padding: 3px 0 0 25px;
    border: none;
}

.fotkipress-directory-tree .fotkipress-directory-element-subpaths .fotkipress-directory-element:before {
    position: absolute;
    left: 6px;
    top: 0px;
    content: '';
    display: block;
    border-left: 1px solid #ccc;
    height: 1em;
    border-bottom: 1px solid #ccc;
    width: 10px;
}

.fotkipress-directory-tree .fotkipress-directory-element-subpaths .fotkipress-directory-element:after {
    position: absolute;
    left: 6px;
    bottom: -7px;
    content: '';
    display: block;
    border-left: 1px solid #ccc;
    height: 100%;
}

.fotkipress-directory-tree .fotkipress-directory-element-subpaths .fotkipress-directory-element:last-child:after {
    display: none;
}

.fotkipress-directory-tree .fotkipress-directory-element .fotkipress-directory-toggle-directory {
    float: left;
    margin: 0 5px 0 0;
}

.fotkipress-directory-tree .fotkipress-directory-element .fotkipress-directory-toggle-directory-hidden {
    visibility: hidden;
}

.fotkipress-directory-tree .fotkipress-directory-element a {
    font-weight: 600;
    text-decoration: none;
}

.fotkipress-directory-tree .fotkipress-active-tree-link {
    color: red;
}

.fotkipress-files-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.fotkipress-file {
    padding: 3px;
    max-height: 152px;
}

.fotkipress-file-info-message {
    height: 150px;

    border: 2px solid #cccccc;
    border-radius: 2px;

    margin: 3px;
    padding: 0;

    text-decoration: none;
    box-shadow: none;

    display: table;
}

.fotkipress-file-info-message span {
    padding: 10px;
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    word-break: break-word;
    overflow: hidden;
}

.fotkipress-directory-component {
    min-width: 150px;
    max-width: 150px;
    height: 150px;
    width: 150px;

    border: 2px solid #cccccc;
    border-radius: 2px;

    margin: 0;
    padding: 0;

    text-align: center;
    display: table-cell;
    vertical-align: middle;
    word-break: break-word;
    overflow: hidden;

    text-decoration: none;
    box-shadow: none;
}

.fotkipress-directory-component:focus {
    box-shadow: none;
}

.fotkipress-directory-component-dragged > a {
    background-color: #eee;
    box-shadow: none;
}

.fotkipress-directory-component-dragged > a:active {
    box-shadow: none;
}

.fotkipress-directory-component-drag-over > a {
    border: 2px dashed #0085ba;
    background-color: #fdf9de;
}

.fotkipress-directory-component img {
    display: block;
    border-radius: 1px;

    min-width: 150px;
    max-width: 150px;
    width: 150px;
    max-height: 150px;
}

.fotkipress-directory-component-preloader {
    background-color: #8996a3;
}

.fotkipress-directory-component-preloader img {
    height: 50px;
    width: 50px;
}

.fotkipress-directory-folder {
    background-color: #fbf4be;
}

.fotkipress-directory-public-folder {
    background-color: #e1eef6;
}

.not-readable a {
    color: red;
}

.fotkipress-modal-window {
    width: 500px;
    max-height: 500px;
    background-color: white;
    border: 1px solid #cccccc;
    border-radius: 2px;

    position: fixed;
    z-index: 100;
}

.fotkipress-modal-window:hover {
    border-color: black;
}

.fotkipress-modal-window header {
    font-size: 14px;
    font-weight: 400;
    color: white;
    background-color: #23282d;
    padding: 8px 3px 8px 3px;

    display: flex;
}

.fotkipress-modal-window header div:last-child {
    flex: 1;
    text-align: right;
}

.fotkipress-modal-window header .header-button {
    cursor: pointer;
    background-color: #f7f7f7;
    color: #555555;
    padding: 5px;

    border: 1px solid #cccccc;
    border-radius: 3px;
}

.fotkipress-modal-window header .header-button:hover {
    background-color: white;
}

.fotkipress-modal-window .modal-window-content {
    max-height: 450px;
    overflow-y: scroll;
}

.fotkipress-modal-window .file-description {
    padding: 5px;
    border-bottom: 1px solid #cccccc;
}

.fotkipress-modal-window .file-description .no-files {
    text-align: center;
    padding: 10px;
}

.fotkipress-modal-window .file-description .name-and-status {
    display: flex;
}

.fotkipress-modal-window .file-description .name-and-status .file-status {
    flex: 1;
    text-align: right;
    font-weight: 600;
}

.fotkipress-modal-window .file-description progress {
    width: 100%;
    height: 20px;
}

.fotkipress-modal-window .uploading-error {
    color: red;
}

.fotkipress-create-directory-window {
    width: 500px;
    max-height: 500px;
    min-height: 100px;

    background-color: white;
    border: 1px solid #cccccc;
    border-radius: 2px;

    position: fixed;
    z-index: 101;
    top: 300px;
    left: 35%;
}

.fotkipress-modal-window-content {
    margin: 0px 10px 16px 10px;
}

.fotkipress-ext-status-ok {
    font-weight: 600;
    color: green;
}

.fotkipress-ext-status-missing {
    font-weight: 600;
    color: red;
}

.fotkipress-form-caption {
    text-align: left;
    padding: 15px 10px 15px 10px;
}

.fotkipress-form-textarea {
    min-height: 100px;
}

.fotkipress-about {
    max-width: 600px;
}
