.fileTreeItem {

}

.interface-pinned-items {
    display : none !important;
}

.laraberg__editor {
    transition : all 0.3s ease-in-out;
}

body.is-fullscreen-mode {
    transition : all 0.3s ease-in-out;
    max-width  : 100vw;
    max-height : 100vh;
}

.is-fullscreen-mode .laraberg__editor {
    position : fixed;
    top      : 0;
    left     : 0;
    width    : 100vw;
    height   : 100vh;
    z-index  : 99;
}

.animated {
    -webkit-animation-duration  : 1s;
    animation-duration          : 1s;
    -webkit-animation-fill-mode : both;
    animation-fill-mode         : both;
}

.animated.faster {
    -webkit-animation-duration : 500ms;
    animation-duration         : 500ms;
}

.fadeIn {
    -webkit-animation-name : fadeIn;
    animation-name         : fadeIn;
}

.fadeOut {
    -webkit-animation-name : fadeOut;
    animation-name         : fadeOut;
}

@keyframes fadeIn {
    from {
        opacity : 0;
    }

    to {
        opacity : 1;
    }
}

@keyframes fadeOut {
    from {
        opacity : 1;
    }

    to {
        opacity : 0;
    }
}

input[type="checkbox"],
input[type="radio"] {
    cursor : pointer;
}

.center-vertically {
    position  : absolute;
    top       : 50%;
    transform : translateY(-50%);
}
