
@font-face {
    font-family: 'titillium';
    src: url('titilliumweb-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.login-avatar, .login-header { display: none; }

@media (max-width: 300px) {
    .hide-small { display: none; }
}

@media (min-height: 480px) {
    .login-header { display: flex; }
    .login-form { justify-content: center; }
}

@media (min-height: 640px) {
    .login-avatar { display: block; }
}

@media (-moz-touch-enabled: 0), (hover: hover) {
    .start-item:hover {
        background-color: var(--bg2);
    }

    .menu-item:hover {
        background-color: var(--bg3) !important;
    }

    .menu-selection:hover .menu-icon {
        fill: var(--yellow) !important;
    }

    .action:hover {
        background-color: var(--bg3) !important;
    }

    .action-transparent:hover {
        background-color: var(--transparent-bg2) !important;
    }
}

svg {
    transition: transform 0.5s;
}

.notification-top {
    transition: height 0.5s, opacity 0.5s;
}

.menu-right {
    position: absolute;
    top: 0px;
    bottom: 0px;
    width: 100%;
    right: -100%;
    transition: left 0.1s, right 0.1s, opacity 0.1s;
}

.menu-left {
    position: absolute;
    top: 0px;
    bottom: 0px;
    width: 100%;
    left: -100%;
    transition: left 0.1s, right 0.1s, opacity 0.1s;
}

.menu-canvas {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
}

.menu-open-right > .menu-right {
    right: 0px;
}

.menu-open-left > .menu-left {
    left: 0px;
}

@media (min-width: 350px) {
    .menu-right {
        width: 350px;
        right: -350px;
    }
    .menu-left {
        width: 350px;
        left: -350px;
    }
}

.group-input:focus {
    background-color: var(--bg2) !important;
    color: var(--c1) !important;
    -webkit-appearance: none;
}

.group-input::placeholder {
    color: var(--c2);
    opacity: 1 !important;
}

.group-input::-webkit-input-placeholder {
    color: var(--c2);
    opacity: 1 !important;
}

.group-input::-ms-input-placeholder {
    color: var(--c2);
    opacity: 1 !important;
}

/* styled scrollbars for WebKit */

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: var(--client-bg2); 
}
 
::-webkit-scrollbar-thumb {
    background: var(--yellow); 
}

/* styled scrollbars for Firefox */

body {
    scrollbar-color: var(--yellow) var(--client-bg2);
    scrollbar-width: thin;
}
