﻿.main-section,
.player-section {
    height: 100vh;
    width: auto;
    min-width: 360px;
    overflow: hidden;
}

    .main-section img.poster {
        height: 105vh;
        width: auto;
    }

.player-section {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.heading {
    width: 100%;
    min-height: 50px;
    background: linear-gradient(#ffffffbf, #fff0);
    display: flex;
    flex-direction: row;
    padding: 25px;
}

    .heading .back {
        width: 20px;
        z-index: 1;
    }

    .heading .title {
        margin-right: -20px;
    }

    .heading, .heading .back a {
        color: #555;
        font-size: 0.9rem;
    }

.episode-title {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.toggle-play-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .toggle-play-section img {
        cursor: pointer;
         width: 90px;
        /*height: auto;*/
    }

        .toggle-play-section img[data-action="pause"] {
            animation-name: playing-animation;
            animation-duration: 1s;
            animation-iteration-count: infinite;
            border-radius: 50%;
        }

    .toggle-play-section .time {
        font-family: sans-serif, Tahoma !important;
        color: #868686;
        font-size: 14pt;
        margin-top: 15px;
    }



.plyr__video-wrapper, .seek-bar {
    width: 100%;
    height: 70px;
    background: linear-gradient(#0000,#000000bf)
}

.plyr__controls {
    background: transparent !important;
    margin-bottom: 8px;
    padding: 0px 15px !important;
}

.plyr__time--current {
    display: none;
}

.flex-1 {
    flex: 1;
}


/*@keyframes playing-animation {
    0% {
        box-shadow: 0px 0px 8px 2px #8080f1;
    }

    25% {
        box-shadow: 0px 0px 11px 4px #8080f1;
    }

    50% {
        box-shadow: 0px 0px 9px 3px #8080f1;
    }

    75% {
        box-shadow: 0px 0px 12px 5px #8080f1;
    }

    100% {
        box-shadow: 0px 0px 10px 3px #8080f1;
    }
}*/
