
#playlists_page {
    padding-bottom: 80px;
}

#playlists_page .items_box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-radius: var(--radius);
    margin-bottom: 20px;
    margin-top: 20px;
}

#playlists_page .items_box .items {
    display: inline-block;
    width: 21%;
    background-color: var(--dark-color);
    border-radius: var(--radius);
    margin-bottom: 30px;
    padding:15px;

}
#playlists_page .items_box .items.cat{
    padding: 0;
}


#playlists_page .items_box .items .info {
    text-align: left;
    direction: ltr;
    color: var(--light-gray-color);
    padding-top: 7px;

    /*display: flex;*/
    /*flex-wrap: wrap;*/
    /*justify-content: space-between;*/

}

#playlists_page .items_box .items .cover {
    display: flex;
    /*min-height: 233px;*/
    border-radius: var(--radius);
    overflow: hidden;
}
#playlists_page .items_box .items.cat .cover{
    box-shadow: inset 0 0 2px 1px #ffffffa3;
}

#playlists_page .items_box .items .cover img{
    opacity: .5;
    transition: .3s ease;
}
#playlists_page .items_box .items:hover img{
    opacity: 1;
}
/*#packages_page .items .info .title a*/


#playlists_page .items_box .items .title {
    color: var(--light-gray-color);
    font-size: 2.2rem;
    display: block;
    line-height: 3rem;
    position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;
    text-align: center;
    padding: 5px;
    border-radius: 4px;
    text-transform: capitalize;
    /* text-shadow: -2px 0 black, 0 -2px black, 2px 0 black, 0 2px black; */
    width: 90%;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 500;
    font-style: normal;
    text-shadow: 2px 2px 6px #000000;
    /* text-shadow: 0 0 6px rgba(0, 0, 0, 0.9); */
}


#playlists_page .items_box .items .info .tag {
    /*background-color: var(--primary-color);*/
    /*color: var(--main-bg-color);*/
    /*padding: 0 10px;*/
    color: var(--light-gray-color);
    font-weight: bold;
    border-radius: 50px;
    font-size: .8rem;
    display: inline-block;
    height: 20px;
    line-height: 20px;
    margin-right: 5px;
}


#playlists_page .items_box .items .info .details {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/*#playlists_page .items_box .items .info .details .item {*/
/*    width: 33%;*/
/*}*/

.ic_track,
.ic_timer,
.ic_bpm {
    width: 15px;
    height: 15px;
    display: inline-block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 15px;
    vertical-align: middle;
}

.ic_track {
    background-image: url(../../uploads/icons/music-note.svg);
}

.ic_timer {
    background-image: url(../../uploads/icons/stopwatch.svg);
}

.ic_bpm {
    background-image: url(../../uploads/icons/trend-up.svg);
}

#playlists_page .items_box .items .info .details .tag {
    margin: 0;
    padding-right: 20px;
}

#playlists_page .items_box .items .info .details .tag:nth-child(3) {
    text-align: right;
}

#playlists_page .items_box .items .info .btn_main {
    width: 100%;
    padding:3px 10px 5px 10px;
    background-color: #850a0a3b;
    border:1px solid var(--secondary-color);
    color: #fff;
    border-radius: var(--radius);
    text-align: center;
    direction: rtl;
    cursor: pointer;
    font-size: 1rem;
    white-space: nowrap;
    font-weight: bold;
    min-height: 35px;
}
#playlists_page .items_box .items .info .cart {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#playlists_page .items_box .items .info .cart .icon_pause ,
#playlists_page .items_box .items .info .cart .icon_play {
    background-size: 34px;
    min-height: 34px;
    min-width: 34px;
    background-position: center;
    margin-left: 5px;
    background-color: var(--primary-color);
    border-radius: 50%;
    font-size: 0;
}
#playlists_page .items_box .items .info .ownership {
    background-color: rgb(255 190 11 / 50%);
    border:2px solid var(--primary-color);
}
#playlists_page #filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
    padding: 15px;
    border-radius: var(--radius);
    color: var(--secondary-color);
    background-color: var(--dark-color);
    border: 1px solid #333;
}

#playlists_page #filter .items {
    width: 45%;
    display: flex;
    align-items: center;
}

#playlists_page #filter .title {
    white-space: nowrap;
    padding-left: 10px;
    font-weight: bold;
}

#playlists_page #filter select {
    border: 1px solid var(--main-bg-color);
    background-color: var(--main-bg-color);
    padding: 6px 15px;
    width: 100%;
    height: 40px;
    font-weight: 500;
    font-size: 1rem;
    color: var(--title-color);
}

#playlists_page #filter select.selected {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}


#playlists_page .items .price {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-weight: bold;
    padding: 5px 0;
    direction: rtl;
    color: var(--secondary-color);
}
#playlists_page .items .price > div{
    padding: 0 5px;
}
#playlists_page .items .price .discounted {
    font-weight: normal;
    color: var(--primary-color);
}

#playlists_page .items .price .discounted:after {
    content: "";
    height: 1px;
    background: #eee;
    width: 100%;
    display: block;
    position: absolute;
    top: 12px;
    left: 0;
}

#playlists_page .items .price .discounted_price {
    font-weight: bold;
}


.irs--round {
    direction: ltr;
}


.irs--round .irs-handle,
.irs--round .irs-handle.state_hover, .irs--round .irs-handle:hover,
.irs--round .irs-line {
    background-color: var(--main-bg-color);
}

.irs--round .irs-handle {
    border-color: var(--primary-color);
    box-shadow: 0 1px 3px rgba(0, 0, 255, 0.3);
}

.irs--round .irs-bar,
.irs--round .irs-from, .irs--round .irs-to, .irs--round .irs-single {
    background-color: var(--primary-color);
}

.irs--round .irs-from:before, .irs--round .irs-to:before, .irs--round .irs-single:before {
    border-top-color: var(--primary-color);
}

.irs--round .irs-min, .irs--round .irs-max {
    background-color: var(--main-bg-color);
    color: var(--light-gray-color);
}


#playlist_page .detail {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: var(--dark-color);
    margin-bottom: 100px;
    border-radius: var(--radius);
}

#playlist_page .detail .img {
    width: 500px;
    height: 500px;
    min-width: 500px;
}


#playlist_page .detail .img .cover {
    position: absolute;
    width: 85%;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#playlist_page .detail .img .frame {
    width: 100%;
    border-radius: 10px;
    z-index: 1;
}

#playlist_page .detail .info {
    width: 50%;
    padding-right: 20px;

}

#playlist_page .detail .info .title {
    color: var(--title-color);
    font-weight: bold;
    font-size: 2rem;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 500;
    font-style: normal;
    text-shadow: 2px 2px 6px #000000;
}

#playlist_page .detail .info .tag {
    background-color: var(--primary-color);
    color: #111;
    padding: 0 10px;
    font-weight: bold;
    border-radius: 50px;
    font-size: .8rem;
    display: inline-block;
    height: 20px;
    line-height: 20px;
    margin-right: 5px;
}

#playlist_page .detail .info .items {
    color: var(--light-gray-color);
    font-size: 1rem;
    margin-top: 15px;
}

#playlist_page .detail .info .items .add_to_cart {
    margin-top: 0;
}

#playlist_page .detail .info .items .remove_cart {
    display: none;
    margin-top: 30px;
}

#playlist_page .detail .info .items .remove_cart.show {
    display: block;
}

#playlist_page .detail .info .items .add_to_cart.disabled {
    display: none;
}


#playlist_page .items.price {
    display: flex;
    font-weight: bold;
    padding: 5px 0;
}



#playlist_page .items.price span {
    margin-left: 5px;
    color: var(--title-color);

}

#playlist_page .items.price div {
    margin-left: 20px;
    color: var(--title-color);
}

#playlist_page .items.price .discounted {
    font-weight: normal;
    color: var(--title-color);
}

#playlist_page .items.price .discounted:after {
    content: "";
    height: 1px;
    background:var(--secondary-color);
    width: 100%;
    display: block;
    position: absolute;
    top: 12px;
    left: 0;
}

#playlist_page .items.price .discounted_price {
    color: var(--red-color);
    font-weight: bold;
}

#playlist_page .items.audio audio{
    width: 100%;


}

audio::-webkit-media-controls-play-button,
audio::-webkit-media-controls-panel {
    background-color: var(--gray-color);
    color: var(--gray-color);
}

#playlist_page .items.owner {
    background-color: var(--main-bg-color);
    border-radius: 5px;
    padding: 20px;
    text-align: left;
}
#playlist_page .items.owner a{
    display: block;
    color: var(--red-color);
    margin-top: 10px;
}
#packages_page {
    padding-bottom: 80px;
}

#packages_page .breadcrumbs {
    border-radius: 10px;
    margin: 20px 0;
    padding: 0 20px;
    background-color: var(--dark-color);
    border: 1px solid #333;

}

#packages_page .sec_title .cat {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

#packages_page .packages_empty {
    text-align: center;
    padding: 100px 0;
    min-height: 350px;
}

#packages_page .packages_empty .btn_main {

}

#packages_page .filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
    padding: 15px;
    border-radius: var(--radius);
    color: var(--primary-color);
    background-color: var(--dark-color);
    border: 1px solid #333;
}

#packages_page .filter select {
    background-color: var(--main-bg-color);
    border: none;
    padding: 6px 15px;
    width: 23%;
    height: 40px;
    font-weight: 500;
    color: var(--primary-color);
    min-width: 300px;
}

#packages_page .filter select.selected {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

#packages_page .sec_title {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

#packages_page .sec_title h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

#packages_page .sec_title a {
    font-size: 1rem;
    font-weight: 500;
    background-color: var(--secondary-color);
    color: var(--title-color);
    border-radius: 150px;
    padding: 5px 20px 7px 20px;
}

#packages_page .sec_title a.all {
    background-color: var(--primary-color);
}

/*#packages_page .sec_title a:after {*/
/*    content: '';*/
/*    display: inline-block;*/
/*    vertical-align: middle;*/
/*    width: 20px;*/
/*    height: 20px;*/
/*    transition: 0.5s;*/
/*    background-image: url(../../uploads/icons/arrow-narrow-left-white.svg);*/
/*    background-position: center;*/
/*    background-repeat: no-repeat;*/
/*    background-size: contain;*/
/*    margin-right: 5px;*/
/*}*/


#packages_page > .sub_title {
    font-weight: 500;
    color: #666;
    width: 80%;
}

#packages_page .products {
    margin-top: 50px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

#packages_page .items {
    display: flex;
    vertical-align: top;
    width: 310px;
    overflow: hidden;
    align-items: center;
    padding: 20px;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #333;
    margin: 0 20px  40px 20px;
    background-color:#4b4b4b3b;
    border-radius: 10px;
    box-shadow: inset 0px 0px 2px 1px #ffffffa3;
}

#packages_page .items .cat {
    font-weight: bold;
    color: var(--light-gray-color);
}
#packages_page .items .info {
    text-align: center;
}
#packages_page .items .details {
    width: 100%;
    margin-top: 30px;
}

#packages_page .items .sub_title {
    color: var(--title-color);
    font-weight: bold;
    font-size: 1.5rem;
    top: -80px;
}
#packages_page .items .cover {
    display: block;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    filter: brightness(1);
    overflow: hidden;
    margin: 0 auto;
    font-size: 0;
    border-radius: var(--radius);
    min-height: 250px;
    background-color: #111;
}
#packages_page .items .cover img{
    opacity: .3;
    transition: .3s ease;
}
#packages_page .items:hover img{
    opacity: 1;
}
#packages_page .items .cover .title {
    color: var(--light-gray-color);
    font-size: 2.7rem;
    display: block;
    line-height: 3.8rem;
    position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 40%;
    text-align: center;
    padding: 5px;
    border-radius: 4px;
    text-transform: capitalize;
    /* text-shadow: -2px 0 black, 0 -2px black, 2px 0 black, 0 2px black; */
    width: 90%;
    font-family: "Barlow Condensed","ColakFAnum", sans-serif;
    font-weight: 500;
    font-style: normal;
    text-shadow: 2px 2px 6px #000000;
    /* text-shadow: 0 0 6px rgba(0, 0, 0, 0.9); */
}

#packages_page .items .cover img {
    width: 100%;
    max-width: 300px;
    height: auto;
}

#packages_page .items .prerequisite {
    min-height: 140px;

}

#packages_page .items .cover {
    display: flex;
    min-height: 233px;
}
#packages_page .items .info .title a{
    color: var(--secondary-color);
    font-size: 0.8em;
}
#packages_page .items .cover .cnt {
    position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;
    width: 90%;
    text-align: center;
}
#packages_page .items .info .title {
    font-weight: bold;
    display: block;
    padding: 5px;
    text-shadow: -1px 0 black, 0 -1px black, 1px 0 black, 0 1px black;
    line-height: 40px;
    font-size: 2rem;

}



#packages_page .items .info .sub_title {
    font-size: 1em;
    font-weight: 400;
    padding-top: 2px;
    color: var(--title-color);
    display: block;
    text-shadow: -1px 0 black, 0 -1px black, 1px 0 black, 0 1px black;
}
#packages_page .items .info .sub_title a{
    color: var(--title-color);
}
#packages_page .items .info .desc {
    color: var(--light-gray-color);
    transition: .3s all;
}
#packages_page .items:hover .info .desc {
    color: #fff;
}

#packages_page .items .item {
    color: var(--primary-color);
    margin-bottom: 10px;
}

#packages_page .items .items_row {
    display: flex;
    justify-content: space-between;
    color: var(--light-gray-color);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-size: 0.9em;
    align-items: center;
    transition: .3s all;
}
#packages_page .items:hover .items_row:nth-child(2) > div {
    color: #fff;
}
#packages_page .items .items_row .item {
    margin-bottom: 0;
}

#packages_page .items .price {
    display: flex;
    justify-content: space-between;
    color: var(--title-color);
    font-weight: bold;
}

#packages_page .items .price .discounted {
    font-weight: normal;
}

#packages_page .items .price .discounted:after {
    content: "";
    height: 1px;
    background: var(--secondary-color);
    width: 100%;
    display: block;
    position: absolute;
    top: 12px;
    left: 0;
}

#packages_page .items .price .discounted_price {
    color: var(--red-color);
    font-weight: bold;
}


#packages_page .items .btn_main {
    width: 100%;
    text-align: center;
    padding: 5px;
    margin-top: 10px;
}


#packages_page .items .btn_main.owner {
    background: var(--secondary-color);
}

#packages_page .items .btn_main.disabled {
    cursor: default !important;
    background-color: var(--gray-color);
}


#package_page {
    padding: 1px 0 50px 0;
}

#package_page .breadcrumbs {
    background-color: var(--dark-color);
    border-radius: 10px;
    margin: 20px 0;
    padding: 0 20px;
}

#package_page .t_cover {
    width: 100%;
    min-height: 400px;
}


#package_page .f_container > div:nth-child(2) {
    width: 100%;
}

#package_page .side {
    padding-left: 50px;
    min-width: 350px;
    max-width: 400px;
}

#package_page .info {
    background-color: var(--dark-color);
    border-radius: var(--radius);
    padding: 20px;
    position: sticky;
    top: 100px;
}

#package_page .info .title {
    font-size: 1.3em;
    font-weight: bold;
    color: var(--primary-color);
    display: block;
}

#package_page .info .sub_title {
    font-weight: bold;
    color: var(--secondary-color);
}

#package_page .info .item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#package_page .info .item:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
    margin-bottom: 10px;
}

#package_page .info strong {
    color: var(--light-color);
    margin-left: 5px;
}

#package_page .teacher {
    margin: 10px 0;
    color: var(--light-color);

}

#package_page .time {
    display: flex;
    justify-content: space-between;
    color: var(--light-color);
    font-size: 0.9em;
}

#package_page .note {
    color: var(--light-color);
    font-size: 0.9em;
}

#package_page .info .price {
    color: var(--title-color);

}

#package_page .info .price .discounted:after {
    content: "";
    height: 1px;
    background: var(--secondary-color);
    width: 100%;
    display: block;
    position: absolute;
    top: 12px;
    left: 0;
}

#package_page .info .price .discounted_price {
    color: var(--red-color);
    font-weight: bold;
}


#package_page .info .btn_main {
    width: 100%;
    text-align: center;
    padding: 0 5px;
    margin-top: 20px;
}

#package_page .info .btn_main.disabled {
    cursor: default !important;
    background-color: var(--light-color);
    color: var(--primary-color);
}

#package_page .info .owner,
#package_page .info .login {
    background-color: var(--secondary-color);
}

#package_page .in_person {
    background-color: #fff;
    color: var(--primary-color);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
}

#package_page .content {
    background-color: var(--dark-color);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 30px;
    color: var(--light-gray-color);
}
#package_page .content .desc ol,
#package_page .content .desc li,
#package_page .content .desc ul{
    padding: revert;
}
#package_page .content .cover {
    display: block;
    margin-bottom: 20px;
    max-height: 300px;
    width: 100%;
    object-fit: cover;
    object-position: bottom;
}

#package_page .classes {
    margin-bottom: 30px;
}

#package_page .classes .tb {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid #eee;
    border-top: none;
}


#package_page .classes .tb .row .cell {
    background-color: var(--light-color);

}

#package_page .classes .tb .row:nth-child(odd) .cell {
    /*background-color: #f1f1f1;*/
}

#package_page .classes .tb .row:first-child .cell {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-weight: 500;
}

#package_page .classes .tb .row:not(:first-child) .cell {
    border-top: 1px solid var(--border-color);
}

#package_page .classes .tb .row.online .cell {
    background-color: var(--secondary-color);
    font-weight: 500;
}

#package_page .classes .tb .row .cell.file a {
    border-radius: var(--radius);
    background-color: var(--primary-color);
    display: inline-block;
    color: #fff;
    padding: 0 15px;
    font-weight: 500;
    cursor: pointer;
    font-size: .8em;
    align-content: center;
    width: auto;
    height: 35px;
    z-index: 2;
}

#package_page .classes .tb .row .cell.file a span {
    background-image: url("../../uploads/icons/file-download-white.svg");
    display: inline-block;
    vertical-align: middle;
    background-size: 17px;
    background-repeat: no-repeat;
    background-position: center;
    width: 17px;
    height: 17px;
    margin: 0 auto 0 5px;
}

#package_page .classes .tb .row.expired .cell {
    /*color: #bbb;*/
}

#package_page .classes .tb .row.expired .cell:nth-child(1):after,
#package_page .classes .tb .row.expired .cell:nth-child(2):after,
#package_page .classes .tb .row.expired .cell:nth-child(3):after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #415750;
    left: 0;
    top: 53%;
    opacity: .6;
}

#package_page .classes .tb .row.expired .cell:nth-child(1):after {
    right: 5%;
}

#package_page .classes .tb .cell {
    text-align: center;
    vertical-align: middle;
    color: var(--secondary-color);
}


#package_page .offline_video_info {
    position: fixed;
    background-color: #fff;
    padding: 50px;
    border-radius: var(--radius);
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    width: 60% !important;
    max-width: 100%;
    overflow-y: auto;
    text-align: right;
    box-shadow: 0 0 5px rgba(0, 0, 0, .2);
    -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 5px 5px rgba(0, 0, 0, .2);
    visibility: hidden;
    opacity: 0;
    z-index: 21;
    max-height: 100%;
}

#package_page .offline_video_info.show {
    visibility: visible;
    opacity: 1;
    overflow-wrap: break-word;
}

#package_page .offline_video_info .icon {
    display: block;
    background-image: url("../../uploads/icons/close_w.png");
    width: 20px;
    height: 20px;
    position: absolute;
    right: 10px;
    top: 10px;
    background-color: var(--primary-color);
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    cursor: pointer;
}

#package_page .offline_video_info .title {
    font-size: 1.3em;
    font-weight: bold;
    color: var(--primary-color);
}

#package_page .offline_video_info .desc {
    margin: 10px 0 20px 0;
}

#package_page .offline_video_info .desc li {
    margin-bottom: 10px;
}

#package_page .offline_video_info textarea {
    width: 100%;
    padding: 6px;
    height: 130px;
    min-width: 100%;
    min-height: 130px;
    max-height: 130px;
    margin-top: 20px;
}

#package_page .offline_video_info .btn_main {
    height: 30px;
    width: 100%;
    text-align: center;
}

#package_page .offline_video_info button {
    background: var(--secondary-color);
}


#package_page .classes .tb .cell .practice {
    position: fixed;
    background-color: #fff;
    padding: 50px;
    border-radius: var(--radius);
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    max-width: 350px;
    text-align: right;
    box-shadow: 0 0 5px rgba(0, 0, 0, .2);
    -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 5px 5px rgba(0, 0, 0, .2);
    visibility: hidden;
    opacity: 0;
    z-index: 21;
}

#package_page .classes .tb .cell .practice .icon {
    display: block;
    background-image: url("../../uploads/icons/close_w.png");
    width: 20px;
    height: 20px;
    position: absolute;
    right: 10px;
    top: 10px;
    background-color: var(--primary-color);
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    cursor: pointer;
}

#package_page .classes .tb .cell.show .practice {
    visibility: visible;
    opacity: 1;
}

#package_page .classes .tb .cell .practice_icon,
#package_page .classes .tb .cell .lessons {
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin: 0 auto;
    padding: 10px;
    border-radius: var(--radius);
}


#package_page .classes .tb .cell .practice_icon {
    background-image: url("../../uploads/icons/question.png");
}

#package_page .classes .tb .cell .lessons {
    background-image: url("../../uploads/icons/download-pdf.png");
}

#package_page .classes .tb .cell .link_icon {
    padding: 0 15px;
    border-radius: var(--radius);
    color: #fff;
    font-weight: 500;
    display: inline-block;
    cursor: pointer;
    font-size: .8em;
    align-content: center;
    width: auto;
    background-color: var(--primary-color);
    height: 35px;
}

#package_page .info .offline_video span,
#package_page .classes .tb .cell .link_icon span {
    background-image: url("../../uploads/icons/external-link-white.png");
    display: inline-block;
    vertical-align: middle;
    background-size: 15px;
    background-repeat: no-repeat;
    background-position: center;
    width: 15px;
    height: 15px;
    margin: 0 auto 0 5px;
}

#package_page .info .pdf span {
    background-image: url("../../uploads/icons/file-download-white.svg");
    display: inline-block;
    vertical-align: middle;
    background-size: 17px;
    background-repeat: no-repeat;
    background-position: center;
    width: 17px;
    height: 17px;
    margin: 0 auto 0 5px;
}


#package_page .box_fix_center.confirmation_letter {
    width: 600px;
    max-width: 100%;
}

#package_page .box_fix_center.confirmation_letter .btn_main {
    margin: 20px auto 0 auto;
    width: 100%;
    text-align: center;
}


@media only screen and (max-width: 1000px) {
    #playlist_page .detail {
        flex-wrap: wrap;
    }
    #packages_page .t_cover {
        min-height: auto;
    }

    #packages_page .products {
        justify-content: space-evenly;
    }

    #packages_page .offline_video_info {
        width: 90% !important;
    }
    #playlists_page .items_box .items {
        padding: 10px;
    }
    #playlist_page .detail .info{
        width: 100%;
    }
    #playlists_page .items_box .items{
        width: 30%;
    }
}



@media only screen and (max-width: 800px) {

    #playlists_page .items_box .items{
        width: 47%;
    }
    #packages_page .f_container {
        display: block;
    }

    #packages_page .side {
        padding-left: 0;
        max-width: 100%;
        margin-bottom: 20px;
        margin-top: 20px;
    }

    #packages_page .filter strong {
        display: none;
    }

    #packages_page .filter {
        flex-wrap: wrap;
        justify-content: center;
        max-width: 100%;
    }

    #packages_page .filter select {
        width: 45%;
    }



    #packages_page .filter #type{
        width: 100%;
        min-width: inherit;
    }
    #packages_page .filter #category,
    #packages_page .filter #day {
        margin-top: 20px;
        width: 100%;
        min-width: inherit;
    }
}
@media only screen and (max-width: 600px) {
    #playlist_page .detail .img {
        width: 400px;
        height: 400px;
        min-width: 400px;
    }
    #playlists_page .items_box .items{
        width: 100%;
    }
    #packages_page .items .cover .title{
        font-size: 2rem;
    }
}
@media only screen and (max-width: 500px) {
    #playlist_page .detail .img {
        width: 300px;
        height: 300px;
        min-width: 300px;
    }
    #packages_page .filter select {
        width: 100%;
    }

    #packages_page .filter #subject {
        margin-top: 20px;
    }
    #packages_page .items .sub_title {
        top: -60px;
    }
}