.container {
    display: flex;
    justify-content: space-between;
    height: 750px;
    position: relative;
    /* width: 90%; */
    max-width: 1900px;
    margin: auto;
    margin-bottom: 40px;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    pointer-events: none;
}

.main {
    position: relative;
    height: 100%;
    flex: 1;
    cursor: pointer;
}
.main_image {
    height: 100%;
    border-radius: 5px;
    width: 100%;
}
.main_detail {
    position: absolute;
    bottom: 0;
    padding: 0 30px 20px 30px;
}

.category {
    font-size: 45px;
    font-weight: 500;
}
.artist_name {
    font-size: 45px;
    font-size: 300;
    margin: 5px 0;
}
.meta_info {
    font-size: 20px;
    font-weight: 300;
    opacity: 0.9;
    margin: 9px 0;
}
.play_trailer {
    margin: 9px 0;
    opacity: 0.9;
    display: flex;
    display: flex;
    align-items: center;
}
.play_trailer p {
    margin-left: 5px;
    font-size: 18px;
    font-weight: 300;
}

.select {
    position: relative;
    margin-left: 20px;
    width: 350px;
    overflow-y: scroll;
    padding-right: 10px;
}

.select::-webkit-scrollbar {
    width: 3px;
}
.select::-webkit-scrollbar-track {
    background: inherit;
}
.select::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.select_item {
    height: 180px;
    width: 100%;
    margin-bottom: 15px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: flex-end;
}
.select_item.active {
    border: 1px solid #aaa;
}

.select_item_detail {
    padding: 10px;
}

.select_item_detail .category {
    font-size: 16px;
}
.select_item_detail .artist_name {
    font-size: 14px;
    margin: 3px 0;
}

.select_item_detail .meta_info {
    font-size: 12px;
    margin: 0;
    opacity: 0.9;
}
.play_trailer_icon {
    height: 40px;
    width: 40px;
}

.slider_container {
    display: none;
    cursor: pointer;
    width: 100%;
}

.slider_container div {
    margin-top: 5px;
    margin-right: 5px;
}

.slider_container div div div {
    width: 250px;
}

@media screen and (max-width: 2000px) {
    .container {
        height: 550px;
    }
}

@media screen and (max-width: 1600px) {
    .container {
        height: 500px;
    }
    .select_item {
        height: 155px;
    }
}

@media screen and (max-width: 1200px) {
    .main {
        width: 750px;
    }
}
@media screen and (max-width: 1150px) {
    .select {
        width: 250px;
    }
    .select_item {
        height: 130px;
    }
}

@media screen and (max-width: 950px) {
    .container {
        height: auto;
        flex-direction: column;
    }
    .main {
        flex: initial;
        width: 100%;
        height: 430px;
    }
    .select {
        display: none;
    }
    .slider_container {
        display: block;
    }
}
@media screen and (max-width: 700px) {
    .main {
        height: 330px;
    }
    .category {
        font-size: 28px;
    }
    .artist_name {
        font-size: 24px;
    }
    .meta_info {
        font-size: 18px;
    }
    .play_trailer p {
        font-size: 16px;
    }
}
@media screen and (max-width: 500px) {
    .main {
        margin-bottom: 50px;
    }
    .main_image {
        height: 230px;
    }
    .main_detail {
        background: var(--secondary-color);
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
        position: initial;
        padding: 15px 0 10px 15px;
    }
    .category {
        font-size: 22px;
    }
    .artist_name {
        font-size: 18px;
    }
    .meta_info {
        font-size: 14px;
    }
    .play_trailer p {
        font-size: 12px;
    }
}
@media screen and (max-width: 300px) {
    .main {
        margin-bottom: 0;
        padding: 0;
    }
    .main_image {
        height: 150px;
    }
    .category {
        font-size: 20px;
    }
    .artist_name {
        font-size: 16px;
    }
    .meta_info {
        font-size: 12px;
    }
    .play_trailer p {
        font-size: 10px;
    }
    .play_trailer_icon {
        height: 20px;
        width: 20px;
    }
}
