.top_desktop_menu {
    background-color: var(--header-bk-colour);
    grid-template-columns: 1fr 16fr 50fr 1fr;
    width: 100%;
    height: 40px;
    top: 0;
    left: 0;
    position: fixed;
    display: grid;
    backdrop-filter: blur(6px);
    right: 0;
}

img.account_icon {
    grid-column-start: 1;
    cursor: pointer;
    width: 23px;
    padding: 0px;
    margin-right: 10px;
    margin-top: 7px;
    margin-left: 3px;
}

.top_menu_logo {
    grid-column-start: 2;
    width: 126px;
    margin-top: 11px;
    left: 0;
    margin-left: 0px;
}

.button_grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-column-start: 3;
    column-rule: 1px solid rgba(153, 204, 255, 0.3);
    position: absolute;
    display: grid;
    column-gap: 10px;
    float: right;
    right: 0;
    height: 100%;
}

.top_grid_bt {
    background-color: rgba(0, 0, 0, 0.0);
    text-align: center;
    justify-content: center;
    height: 100%;
}

.top_grid_right_bt {
    grid-column-start: 4;
    cursor: pointer;
    width: 23px;
    height: auto;
    margin-top: 9px;
    margin-right: 7px;
    padding: 0px;
}

.header_spacer {
    width: 100%;
    height: 300px;
}

.carousel_container {
    grid-auto-flow: column;
    column-rule: 1px solid rgba(153, 204, 255, 0.3);
    column-gap: 2px;
    background-color: black;
    display: grid;
    grid-template-rows: 1fr;
    -webkit-overflow-scrolling: touch;
    margin-top: 42px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    margin-bottom: -28px;
}

.carousel_item {
    position: relative;
    height: 300px;
    width: auto;
    max-height: 300px;
}

.carousel_text {
    width: 100%;
    height: 40px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    bottom: 0;
    text-align: center;
    align-items: center;
    vertical-align: center;
    justify-content: center;
}

.carousel_text:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

@media screen and (max-width: 800px) {
    .button_grid {
        display: none;
    }

    .header_spacer {
        height: 220px;
    }

    .carousel_item {
        height: 200px;
    }

    .top_grid_right_bt {
        display: grid;
    }
}