div#showsList {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width:calc(100% - 50px);
}
@media screen and (max-width: 480px) and (orientation: portrait) {
    .upcoming-show-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 5px;
        flex-direction: row;
        padding: 5px;
        border-radius: 8px;
        border: 2px solid white;
        font-size: 14px;
        width: calc(100% + 45px);
        cursor: pointer;
        margin-left: -30px;
    }
    
    span.show-thumbnail img {
        height: 40px;
        width: 40px;
        border-radius: 8px;
    }
    
    span.show-location-trigger svg {
        height: 16px;
        fill:white!important;
    }
    
    span.show-date {
        display: flex;
        text-align: center;
        color: white;
        font-family: 'Rubik Dirt', system-ui;
        font-size: 11px;
        gap:5px;
    }
    
    .show-location {
        display: flex;
        text-align: center;
        color: white;
        font-family: 'Rubik Dirt', system-ui;
        font-size: 11px;
        flex-direction: column;
        gap: 5px;
    }
    
    span.show-page-trigger svg {
        width: 20px;
        fill: white;
        stroke-width: 5px;
    }
}

@media screen and (min-width: 1025px) {
    div.home-slide-component h2 {
        font-family: 'Shadows Into Light', cursive;
        color: #000000;
        background-color: #ffffff;
        padding: 5px;
        border-radius: 8px;
        text-align: center;
        font-size: 18px;
        font-weight: 600;
        width: 90%;
        margin-top: 5%;
    }
    .upcoming-show-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: white;
        font-family: 'Rubik Dirt', system-ui;
        border: 2px solid white;
        border-radius: 8px;
        padding: 0px 20px;
        width: calc(100% - 430px);
        margin-left: 360px;
        cursor: pointer;
        transition-duration: 0.4s;
    }
    .upcoming-show-item:hover {
        background-color: #3f3f3f;
    }
    span.show-location-trigger svg {
        fill: white;
        width: 24px;
    }
    span.show-date, .show-location {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }
    span.show-page-trigger svg {
        fill: white;
        width: 36px;
    }
    span.show-thumbnail img {
        width: 50px;
    }
}