/***************** MAIN ********************/

.main-div {
    margin-left: auto;
    margin-right: auto;
    max-width: 1874px;
    padding-left: 22px;
    padding-right: 22px;
    padding-top: 90px;
}

.main-div header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.container {
    overflow: hidden;
    margin: 0 -22px;
}

.content {
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    margin-bottom: -26.4px;
    overflow: scroll;
    overflow-x: scroll;
    overflow-y: hidden;
    padding: 0 22px 24.2px;
    scroll-behavior: smooth;
    transform: translate(0) translateZ(0);
    transition: transform .3s ease-in-out;
    margin: 0 0 -26.4px -22px;
    /* margin: 0 0 -26.4px -44px; */
}

.container .layout-item {
    white-space: normal;
    display: inline-block;
    font-size: 1rem;
    padding-left: 22px;
    vertical-align: top;
    width: 100%;
    width: 200px;
}

.block {
    display: inline-block;
    text-align: center;
    width: 100%;
}

.block .block-action {
    background-color: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    z-index: 1;
    position: absolute;
    display: none;
    cursor: pointer;
}

.block:hover .block-action {
    display: flex;
    background-color: rgba(0, 0, 0, 0.714);
    transition: all .15s ease-in-out;
}

.block-action:hover {
    width: 50px;
    height: 50px;
}

.block-action i {
    color: white;
}

.block-image-container {
    margin-bottom: 11px;
    min-width: 100%;
    height: 172px;
    border-radius: 4px;
    overflow: hidden;
    text-align: center;
    white-space: nowrap;
    /* margin: 0 0 0 -22px; */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .15s ease-in-out;
}

.block-image-container img {
    transition: all .15s ease-in-out;
}

.block-image {
    width: 100%;
}

.block:hover .block-image-container {
    background-color: rgb(0, 0, 0);
}

.block:hover img {
    opacity: 0.5;
}

.block-image-link img{
    width: 100%;
}

/* Sidebar Queue */

.sidebar-queue {
    display: none;
}

.sidebar-queue {
    transform: translateX(301px);
    position: fixed;
    right: 0;
    top: 99px;
    overflow: hidden;
    width: 380px;
    box-shadow: 0 0 12px 4px rgb(0 0 0 / 5%);
    border-radius: 8px 0 0 8px;
    transition: all .3s ease-in-out;
}

.sidebar-queue:hover {
    transform: none;
}

.queue-container {
    height: 478px;
    overflow-y: scroll;
}

.queue-container .snippet {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.snippet-item figure{
    display: flex;
    align-items: center;
}

.snippet {
    cursor: pointer;
    padding: 5px 20px;
    border: 1px solid #81818100;
}

.snippet:hover {
    background-color: white;
    border: 1px solid #81818140;
}