::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-thumb {
    border-radius: 5px;
    border: 0 none;
    background: hsla(0, 0%, 45%, 0.4);
    background-clip: content-box;
}

::-webkit-scrollbar-track {
    background: hsla(0, 0%, 100%, 0);
}

input[type="number"] {
    box-sizing: border-box;
    -moz-appearance: textfield;
}

input["number"]::-webkit-outer-spin-button,
input["number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

@keyframes loading-fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.loading-logo {
    display: flex;
    align-items: center;
    animation-delay: 500ms;
    animation-duration: 300ms;
    animation-fill-mode: both;
    animation-name: loading-fade-in;
    animation-timing-function: ease-in;
    height: 100vh;
    justify-content: center;
}

.loading-logo img {
    font-family: "PT Sans", Roboto, sans-serif;
    font-weight: 600;
    height: 64px;
    margin: 8px auto;
    text-align: center;
    width: 64px;
}

/* fix CKEditor panels */
.ck-balloon-panel {
    z-index: 100 !important;
}

.ck-balloon-panel_toolbar_west {
    z-index: 10 !important;
}

.ck-content .image > figcaption {
    display: block !important;
}
