.desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.window-area,
.task-bar {
    position: relative;
    display: block;
}
.window-area {
    height: 100%;
    position: relative;
}
.task-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    height: 42px;
    background-color: transparent;
}
.task-bar .task-bar-section {
    height: 100%;
    width: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
}
.task-bar .task-bar-section.m span {
    color: #E81414;
}
.task-bar .task-bar-item {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    margin: 0;
    padding: 0;
    color: #519BE0;
    background-color: transparent;
    border: none;
    vertical-align: middle;
    text-align: center;
    min-width: 0;
    outline: none;
}
.task-bar .badge-mini {
    background-color: #E55A5A;
    width: 7px;
    height: 7px;
    position: absolute;
    top: 5px;
    right: 5px;
    border-radius: 50%;
}
.task-bar .task-bar-item > * {
    display: block;
    margin: 8px;
    height: 24px;
    width: 24px;
    font-size: 18px;
    line-height: 24px;
    vertical-align: middle;
}
.task-bar .task-bar-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
.task-bar .task-bar-item.active {
    background-color: rgba(255, 255, 255, 0.3);
}
.task-bar .task-bar-item.started::after {
    display: block;
    content: "";
    position: absolute;
    bottom: 0;
    left: 5px;
    right: 5px;
    height: 3px;
    background-color: #5ebdec;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.task-bar .task-bar-item.started:hover::after {
    left: 1px;
    right: 1px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.task-bar .task-bar-item:active,
.task-bar .task-bar-item.focus,
.task-bar .task-bar-item:focus {
    -webkit-box-shadow: none!important;
    box-shadow: none!important;
}
.task-bar.icons-small {
    height: 30px;
    padding: 0;
}
.task-bar.icons-small .task-bar-item {
    width: 16px;
    height: 16px;
    margin: 0 8px;
}
.task-bar a.task-bar-item {
    color: #ffffff;
}
.task-bar a.task-bar-item:hover {
    color: #ffffff;
}
.start-menu-content {
    overflow-y: hidden;
}

.tiles-area {
    scrollbar-width: thin;
    scrollbar-color: #727272 #4c4c4c;
}

.tiles-area::-webkit-scrollbar {
    width: 12px;
}

.tiles-area::-webkit-scrollbar-track {
    background: #4c4c4c;
    border-radius: 5px;
}

.tiles-area::-webkit-scrollbar-thumb {
    background-color: #727272;
    border-radius: 20px;
    border: 3px solid #4c4c4c;
}
.tiles-area::-webkit-scrollbar-thumb:hover {
    background-color: #8c8c8c;
    cursor: pointer;
}

.tiles-area {
    display: grid;
    grid-gap: 10px 0;
    overflow-y: auto;
}
@media (max-width: 575.98px) {
    .tiles-grid {
        grid-template-columns: repeat(auto-fill, 90px);
        grid-template-rows: repeat(auto-fill, 90px);

        padding: 5px 0;
        margin: 0 auto;
        width: 97%;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .tiles-grid {
        grid-template-columns: repeat(auto-fill, 120px);
        grid-template-rows: repeat(auto-fill, 120px);

        padding: 5px 0;
        margin: 0 auto;
        width: 97%;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .tiles-grid {
        grid-template-columns: repeat(auto-fill, 120px);
        grid-template-rows: repeat(auto-fill, 120px);

        padding: 5px 0;
        margin: 0 auto;
        width: 97%;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .tiles-grid {
        grid-template-columns: repeat(auto-fill, 120px);
        grid-template-rows: repeat(auto-fill, 120px);

        padding: 5px 0;
        margin: 0 auto;
        width: 97%;
    }
}

@media (min-width: 1200px) {
    .tiles-grid {
        grid-template-columns: repeat(auto-fill, 120px);
        grid-template-rows: repeat(auto-fill, 120px);
        padding: 5px;
    }
}
.tiles-grid {
    grid-auto-flow: dense;
    margin-bottom: 2rem;
    margin-top: 3rem;

    background: linear-gradient(90deg, rgb(76, 76, 76) 0%, rgb(64, 64, 64) 35%, #383838 100%);
    padding: 5px;
}
.tiles-group::before {
    letter-spacing: 1px;
}

.start-menu-box {
    margin: auto 0;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.start-menu-content {
    display: flex;
    width: 100%;
}
.t-menu {
    background-color: transparent;
}
.start-menu {
    color: #ffffff;
    margin: 0;
    list-style: none inside none;
    position: fixed;
    top: 0;
    bottom: 45px;
    right: 0;
    left: 0;
}

.tile-small .branding-bar,
.tile-medium .branding-bar,
.tile-wide .branding-bar,
.tile-large .branding-bar,
.tile-app .branding-bar {
    letter-spacing: 1px;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1;
    color: #c5d8d6;
    word-break: break-word;
    padding: 5px;
}
div[data-cover] > .branding-bar {
    background-color: #4f4f4f;
}

.start-menu-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
}
.start-menu .sys-buttons {
    width: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.start-menu .explorer {
    width: 220px;
}
.ani-swoopInTop {
    -webkit-animation-name: swoopInTop;
    animation-name: swoopInTop;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}
.ani-swoopOutTop {
    -webkit-animation-name: swoopOutTop;
    animation-name: swoopOutTop;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}
@-webkit-keyframes swoopInTop {
    0% {
        opacity: 0;
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: scaleY(1.5) translate3d(0, -400px, 0);
        transform: scaleY(1.5) translate3d(0, -400px, 0);
    }
    40% {
        opacity: 1;
        -webkit-animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
        animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
        -webkit-transform: scaleY(1.2) translate3d(0, 0, 0);
        transform: scaleY(1.2) translate3d(0, 0, 0);
    }
    65% {
        -webkit-transform: scaleY(1) translate3d(0, 20px, 0);
        transform: scaleY(1) translate3d(0, 20px, 0);
    }
    100% {
        -webkit-animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
        animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
        -webkit-transform: scaleY(1) translate3d(0, 0, 0);
        transform: scaleY(1) translate3d(0, 0, 0);
    }
}
@keyframes swoopInTop {
    0% {
        opacity: 0;
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: scaleY(1.5) translate3d(0, -400px, 0);
        transform: scaleY(1.5) translate3d(0, -400px, 0);
    }
    40% {
        opacity: 1;
        -webkit-animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
        animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
        -webkit-transform: scaleY(1.2) translate3d(0, 0, 0);
        transform: scaleY(1.2) translate3d(0, 0, 0);
    }
    65% {
        -webkit-transform: scaleY(1) translate3d(0, 20px, 0);
        transform: scaleY(1) translate3d(0, 20px, 0);
    }
    100% {
        -webkit-animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
        animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
        -webkit-transform: scaleY(1) translate3d(0, 0, 0);
        transform: scaleY(1) translate3d(0, 0, 0);
    }
}
@-webkit-keyframes swoopOutTop {
    0% {
        -webkit-animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
        animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
        -webkit-transform: scaleY(1) translate3d(0, 0, 0);
        transform: scaleY(1) translate3d(0, 0, 0);
    }
    40% {
        opacity: 1;
        -webkit-transform: scaleY(1) translate3d(0, 20px, 0);
        transform: scaleY(1) translate3d(0, 20px, 0);
    }
    60% {
        -webkit-animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
        animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
        -webkit-transform: scaleY(1.2) translate3d(0, 0, 0);
        transform: scaleY(1.2) translate3d(0, 0, 0);
    }
    100% {
        opacity: 0;
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: scaleY(1.5) translate3d(0, -400px, 0);
        transform: scaleY(1.5) translate3d(0, -400px, 0);
    }
}
@keyframes swoopOutTop {
    0% {
        -webkit-animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
        animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
        -webkit-transform: scaleY(1) translate3d(0, 0, 0);
        transform: scaleY(1) translate3d(0, 0, 0);
    }
    40% {
        opacity: 1;
        -webkit-transform: scaleY(1) translate3d(0, 20px, 0);
        transform: scaleY(1) translate3d(0, 20px, 0);
    }
    60% {
        -webkit-animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
        animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
        -webkit-transform: scaleY(1.2) translate3d(0, 0, 0);
        transform: scaleY(1.2) translate3d(0, 0, 0);
    }
    100% {
        opacity: 0;
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: scaleY(1.5) translate3d(0, -400px, 0);
        transform: scaleY(1.5) translate3d(0, -400px, 0);
    }
}