:root {
    --menu-color: #00000045;
    --lyrics-color: white;
    --font-family: "Montserrat", sans-serif;
}

.audio-sec {
    padding: 60px 0;
    max-width: 1024px;
    margin: auto
}

.cont-img {
    text-align: center
}

.cont-img img {
    height: auto;
    max-width: 350px;
    object-fit: cover;
    overflow: hidden;
    margin: 30px auto
}

.music-plyr {
    width: 100%;
    display: flex;
    flex-direction: column;
}


.song-inf {
    position: relative;
    color: #333;
    width: 100%;
    z-index: 50;
    padding: 15px 0;
    text-align: center
}

.song-inf > * {
    display: inline-block;
}

.song-inf button {
    margin: 0;
    background: inherit;
    border: none;
    color: #333;
    font-size: 100%;
    vertical-align: middle;
    transform: translateY(-40%);
    padding: 5px 10px;
}

.song-txt {
    width: 100%;
    line-height: 30px;
    text-align: center
}

.song-name {
    color: #333;
    font-size: 24px;
    clear: both;
}

.artist-name {
    color: #333333a4;
    font-size: 20px;
    font-weight: bold;
    text-align: center
}

@media only screen and (max-width: 340px) {
    .song-inf > button {
        font-size: 15px;
    }

    .song-inf > .song-txt * {
        font-size: 120%;
        line-height: 0;
    }

    .player-optns > button {
        font-size: 5vw !important;
        padding: 4px 6px !important;
    }

    .player-progress {
        width: 50% !important;
    }
}

#lyrics {
    width: 100%;
    height: 60vh;
    color: var(--lyrics-color);
    text-align: center;
    overflow-Y: scroll;
    font-size: 2vh;
}

#lyrics-content {
    margin: 0;
    padding: 20vh 0;
    transition: ease 0.1s all;
}

#lyrics h2 {
    opacity: 0.25;
}

#lyrics .current {
    opacity: 1;
    font-size: 250%;
    transform: translateY(25%);
}

#lyrics .current + h2 {
    opacity: 0.5;
    font-size: 180%;
}

.player-cont {
    position: relative;
    bottom: 0;
    width: 100%;
    z-index: 50;
    padding: 0 0 15px;
    float: right
}

.player-bar {
    position: relative;
    text-align: center;
    width: 100%;
}

.player-current,
.player-total {
    transform: translateY(-50%);
    padding: 0 2%;
    font-size: 3vh;
    float: left
}

.player-title {
    display: inline-block;
    transform: translateY(-50%);
    padding: 0 2%;
    font-size: 3vh;
}

.start-quiz {
    background-color: #00B451;
    color: #fff;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 13px
}

.player-total {
    float: right
}

@media only screen and (min-height: 500px) {

    .player-current,
    .player-total {
        font-size: 2.25vh !important;
    }
}

.player-current,
.player-progress,
.player-total {
    color: #333;
    display: inline-block;
}

.player-progress {
    position: relative;
    text-align: center;
    height: 0.35em;
    width: 100%;
    border: 1px solid #ddd;
    background: #ddd;
    border-radius: 20px;
    margin: 0;
    padding: 0;
    cursor: pointer;
    transform: translateY(-160%);
    direction: ltr;
}

.progress-now {
    height: 100%;
    width: 0%;
    background: #00B451;
    border-radius: 20px;
    text-align: right;
    transition: ease all;
}

.progress-now > i {
    position: absolute;
    transform: translate(-50%, -40%);
    border: 3px solid #fff;
    border-radius: 50%;
    color: #00B451
}

.player-optns {
    position: relative;
    text-align: center;
    width: 100%;
    overflow: hidden;
    padding-top: 26px;
}

.player-optns > button {
    padding: 10px 14px;
    border-radius: 50%;
    border: none;
    margin: 0 5px;
    background: inherit;
    color: #333;
    font-size: 20px;
    text-align: center;
    opacity: 0.75;
    cursor: pointer;
}

.player-optns > button > i {
    padding: 5px 3px 5px 5px;
}


.player-optns > button:hover {
    color: #00B451;
    border-color: #00B451;
}

.player-optns > button.active {
    color: #00B451;
    border-color: #00B451;
}


.player-optns > button:focus {
    outline: none;
}

.playlist-cont {
    position: relative;
    left: 0;
    width: 100%;
    z-index: 4;
    color: var(--lyrics-color);
    background-color: #fff;
}

.show-cont {
    position: relative;

    height: auto;
    width: 100%;
    overflow: auto;
}

.view-list {
    position: relative;
    height: auto;

    overflow-x: hidden;
    padding: 0 0 10px 0;
}

.view-list .float-song-card {
    position: relative;
    display: inline-block;
    height: auto;
    width: 100%;
    padding: 10px 19px 10px 0;
    font-size: 70%;
    margin: 0;
    cursor: pointer;
    text-align: left;
    transition: .1s ease-in-out;
    direction: rtl
}

.view-list .float-song-card:hover {
    background-color: #f5f5f5
}

.view-list .float-song-card:after {
    content: '';
    position: absolute;
    border-bottom: 1px solid #ddd;
    width: 200%;
    left: -48px;
    bottom: 0;
    right: -105px;
}

.lessons-table {
    padding: 0;
    width: 100%;
}

.lessons-table li {
    position: relative
}

.lessons-table li a,
.lessons-table li span {
    color: #333
}

.lessons-table li a::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}

.lessons-table li a:hover,
.lessons-table li:hover a,
.lessons-table li:hover > span,
.lessons-table li.played a,
.lessons-table li.played > span {
    color: #00B451;
    font-weight: bold
}

.float-song-card > h2,
.float-song-card > h4 {
    position: relative;
    z-index: 49;
    margin: 2px 0;
    font-size: 13px;
    color: #333;
    display: inline-block;
    margin: 0;
    float: right
}

.float-song-card .audio-icon {
    float: right;
    color: #333;
    font-size: 10px;
    line-height: 1.8em;
    margin: 0 5px;
}

.float-song-card .count {
    float: right;
    font-size: 13px;
    margin: 0 5px;
    line-height: 1.2em;
}

.float-song-card > h2 {
    margin: 0 5px;
    font-weight: bold;
}

.float-song-card > span {
    float: left;
    color: #333;
    margin: 0 10px;
}

.float-song-card > h4 {
    color: #333333db
}

.playlist-cont > #label {
    width: 100%;
    text-align: center;
    font-size: 100%;
}

.playlist-cont > #label > h1 {
    line-height: 0;
    margin: 6vh 0 2.5vh;
    color: #333
}

.float-song-card.active > h2,
.float-song-card.active > h4,
.float-song-card.active .count,
.float-song-card.active .audio-icon,
.float-song-card.active > span {
    color: #00B451
}

#search {
    background: transparent;
    color: white;
    border: 1px solid #ffffff99;
    padding: 8px;
    margin: 2.5vh 0;
    font-family: FontAwesome, sans-serif;
    transition: cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.5s all;
    background: white;
}

#search:focus {
    outline: none;
    border-radius: 8px;
    border: 1px solid #ffffff;
    width: 25vw;
    padding: 1vh 1.5vw;
    background: inherit;
}

@media only screen and (max-height: 500px) {
    .view-list .float-song-card {
        font-size: 40% !important;
        height: 60px;
        width: 50px;
    }

    .playlist-cont > #label {
        font-size: 70%;
    }

    #search {
        font-size: 10px;
        padding: 4px;
        width: 10px;
    }

    #search:focus {
        width: 40vw;
    }

    .playlist-cont > #label > h1 {
        margin: 8vh 0 4vh !important;
    }
}

#lyrics::-webkit-scrollbar,
.view-list::-webkit-scrollbar,
.show-cont::-webkit-scrollbar {
    width: 5px;
}

#lyrics::-webkit-scrollbar-track,
.view-list::-webkit-scrollbar-track,
.show-cont::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

#lyrics::-webkit-scrollbar-thumb,
.view-list::-webkit-scrollbar-thumb,
.show-cont::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    outline: 1px solid slategrey;
    border-radius: 15px;
}

.lessons-table li span:last-of-type {
    text-align: left
}

.floating-icon {
    position: absolute;
    bottom: 5%;
    z-index: 1000;
    font-size: 4vh;
    border: 1.5px solid white;
    border-radius: 50%;
    padding: 1vh 2vh;
    background: #222;
}

.floating-icon:nth-child(1) {
    right: 3vh;
}

.floating-icon:nth-child(2) {
    right: 12vh;
}

.view-list .float-song-card:last-of-type {
    margin-bottom: 26px
}

.show-more {
    display: none;
    cursor: pointer;
    text-align: center;
    color: #c5c5c5;
    font-size: 12px;
    font-weight: bold;
    bottom: 0;
    position: fixed;
    left: 0;
    right: 0;
    background-color: #fff;
    padding: 10px 0;
    transition: .1s ease-in-out
}

.show-more:hover {
    background-color: #f5f5f5;
    color: #00B451;

}



.tags-cont {
    border-top: 2px solid #f5f5f5;
    padding-top: 20px;
    top: 5rem;
    z-index: 5;
    margin-top: 20px
}

.tags-cont .tag-txt {
    margin: 0;
    font-size: 14px;
    margin-bottom: 7px;
    margin-left: 7px;
}

.tags-cont .tag {
    border-radius: 50px;
    background: #999;
    border: 1px solid #999;
    color: #fff;
    font-size: 13px;
    border: none;
    box-shadow: none;
    margin: 7px;
    outline: none;
    padding: 0px 20px;
    transition: .1s ease-in-out
}

.tags-cont .tag:hover {
    background-color: #333;
    color: #fff
}

.cats-sec {
    top: 5rem;
    z-index: 5;
}

.cats-sec button {
    color: #333;
    font-size: 14px;
    border: none;
    box-shadow: none;
    margin: 0;
    outline: none;
    padding: 5px 20px;
    transition: .1s ease-in-out;
    width: 100%;
    background: unset;
    text-align: left
}

.cats-sec button.active {
    background: #00B451;
    color: #fff;
    position: relative
}

.cats-sec button.active:after {
    left: 100%;
    top: 50%;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border: 15px solid transparent;
    border-left-color: #00B451;
    margin-top: -15px;
}

.intr-btn {
    background-color: unset;
    color: #333;
    margin: 6px 5px;
    outline: none;
    box-shadow: none;
    font-size: 16px !important;
    transition: .2s ease-in-out
}

.intr-btn.selected,
.intr-btn.selected * {
    color: #00B451;
}

.intr-btn.float-right {
    float: right
}

.intr-btn.float-left {
    float: left
}

.intr-btn:hover {
    border-color: #333333a4
}

.srch-bar {
    background-color: #194294;
}

.srch-bar .cat-title {
    color: #fff;
    font-weight: bold;
    font-size: 24px;
    text-align: center;
    margin-top: 0;
    display: inline-block;
    margin: auto;
    width: auto;
    transition: .1s ease-in-out
}

.accordion-button::after {
    margin-left: 0;
    margin-right: auto;
}

.audio-sec .accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #00B451;
}

.audio-sec .accordion-button:not(.collapsed)::after {
    filter: brightness(100);
}

.audio-sec .accordion-button:focus {
    border-color: #ddd;
    outline: none;
    box-shadow: none
}

@media screen and (max-width: 765px) {
    .view-list .float-song-card {
        font-size: 10px !important
    }

    .float-song-card > h2,
    .float-song-card > h4 {
        font-size: 10px
    }

    .player-current,
    .player-total {
        font-size: 12px !important;
    }

    .player-title {
        font-size: 12px
    }
    .srch-bar .back-btn {
        display: block;
        max-width: fit-content;
        margin: 15px auto;
      }
}

.fast-btn {
    font-size: 24px !important;
    margin: auto !important;
    position: relative !important;
    font-size: 26px !important
}

.fast-btn span {
    position: absolute;
    left: 20px;
    top: 18px;
    font-size: 10px;
    color: #333;
}

.fast-btn:hover span {
    color: #00B451;
}

.srch-bar .back-btn {
    font-size: 14px;
    vertical-align: middle;
    cursor: pointer
}
