:root{
  --plyr-color-main: #FF486A;
}

.plyr-player,
.plyr-video,
.plyr-video-control{
    display: block;
    width: 100%;
    max-width: 100%;
}

.plyr-video-form{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.plyr-video-form input{
    display: block;
    flex: 1 1 auto;
    max-width: 100%;
    width: 100%;
    margin-bottom: 0 !important;
}

.plyr-video-form button {
    background-color: var(--plyr-color-main);
    text-align: center;
    padding: 0 12px;
    color: #fff;
    height: 45px;
    margin: 0 0 0 15px;
}

.plyr-video-control-wrapper{
    position: relative;
}

.plyr-video-empty{
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
   
}

.plyr-video-empty svg{
    width: 100%;
    height: 100%;
}

.plyr-video-empty svg rect{
    fill: #f9f9f9;
}

.plyr-video-empty svg path {
    fill: var(--plyr-color-main);
}


.plyr-video-empty._hide{
    display: none;
}

.plyr-video-msg{
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
    display: none;
}

.plyr-video-msg._show {
    display: block;
}

@media (max-width:768px) {
    .plyr-video-form {
        flex-direction: column;
        justify-content: flex-start;
    }

    .plyr-video-form button {
        margin: 10px 0 0 0;
        width: 100%;
    }

    .plyr-video-msg {
        font-size: 20px;
    }
}