.tile-bar {
    width: 100%;
    margin: 0;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    overflow-x: scroll;
    scrollbar-width: none;
    padding: 5px;
    box-sizing: border-box;
}

.tile-component {
    width: 105px;
    margin: 0 10px 10px 0;
    flex-shrink: 0;
    border-radius: var(--theme-component-border-radius);
    background-color: transparent;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.1s;
}

.tile-component:last-child {
    margin: 0 0 10px 0;
}

.tile-component:hover {
    translate: 0 -8px;
}

.tile-image {
    height: 100px;
    width: 100px;
    margin: 2px 2px 0 2px;
}

.tile-label {
    font-size: var(--font-size-l);
    cursor: pointer;
}

.tile-label-container {
    padding: 0 5px 5px 5px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

.tile-content {
    padding: 3px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    box-sizing: border-box;
}

/* Responsive */

@media only screen and (max-width: 800px) {
    .tile-bar {
        justify-content: start;
    }
    .tile-component {
        scale: 0.8;
        margin: 0;
        flex-shrink: 0;
    }
}