.container {
    width: 100%;
    max-width: 1900px;
    margin: 10px auto 40px auto;
}

.head {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto 10px auto;
}
.head p {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 1px;
}
.head span {
    margin-right: 20px;
    cursor: pointer;
    font-size: 18px;
}
.see_all {
    display: flex;
    align-items: flex-end;
}
.see_all span {
    font-size: 20px;
    margin-left: 20px;
    font-family: "Nanum Gothic";
}

.slider_container {
    cursor: pointer;
    max-width: 1900px;
    width: 100vw;
    margin-top: 20px;
}

.slider_item {
    width: 280px;
    height: 100px;
    display: flex;
    align-items: flex-start;
    margin-right: 40px;
}
.slider_item .artist_image {
    height: 100%;
    width: 100px;
    border-radius: 5px;
}
.artist_detail {
    margin: 10px 0 0 10px;
    flex: 1;
}
.artist_name {
    font-size: 18px;
    font-weight: 400;
}
.episode_number {
    font-size: 14px;
    font-weight: 300;
    margin: 5px 0;
}

.progress_bar_holder {
    position: relative;
    height: 5px;
    width: 100%;
    border-radius: 10px;
    margin-top: 15px;
    background: var(--secondary-color-light);
}

.progress_bar {
    position: absolute;
    height: 100%;
    /* width: 100%; */
    border-radius: inherit;
    transform-origin: left;
    /* transform: scaleX(0.5); */
    background: var(--gradient);
    transition: transform 0.4s linear;
}

.no_progress_found {
    margin-left: 35px;
}

.msg_small {
    display: none;
}

@media screen and (max-width: 2000px) {
    .msg_small {
        display: block;
    }
    .msg_large {
        display: none;
    }
}

@media screen and (max-width: 1800px) {
    .container {
        margin-left: auto;
    }
}

@media screen and (max-width: 450px) {
    .head {
        width: 95%;
        margin: 0 auto;
    }
    .head p {
        font-size: 14px;
    }
    .head span {
        margin: 0;
        font-size: 14px;
    }
    .head span span {
        font-size: 16px;
        margin-left: 12px;
    }
    .slider_item {
        width: 250px;
        height: 80px;
        padding-right: 5px;
    }
    .artist_name {
        font-size: 14px;
        font-weight: 400;
    }
    .episode_number {
        font-size: 12px;
        font-weight: 300;
        margin: 5px 0;
    }
}
@media screen and (max-width: 400px) {
    .slider_item {
        /* width: 100%; */
    }
}
