﻿@import url('../../reset.css');

body, html {
    width: 100%;
    height: 100%;
}

.Fade {
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.PlayerBack {
    font-family: IRANSans, tahoma, arial, sans-serif;
    font-size: 10pt;
    position: fixed;
    top: 10px;
    left: 10px;
    display: table;
    z-index: 1;
    background: #333 url('images/bk.png') left center no-repeat;
    background-size: contain;
    direction: rtl;
    text-decoration: none;
    border-radius: 5px;
    color: #fff;
    padding: 5px 5px 5px 30px;
    border: 5px solid transparent;
}

    .PlayerBack:hover, .PlayerBack.Selected {
        background-color: #595959;
        border: 5px solid #b50e0e;
    }

.PMessage {
    z-index: 2;
    position: fixed;
    bottom: 50px;
    left: 50px;
    right: 50px;
    padding: 10px;
    color: #fff;
    background: #808080;
    direction: rtl;
    border-radius: 10px;
    text-align: center;
}

.VideoWrp {
    position: fixed;
    z-index: 3;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    justify-items: center;
    align-content: center;
    align-items: center;
}

.PlayNow {
    background: #000;
    height: 100px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 0 0 0 0;
    opacity: .6;
    color: #fff;
}

    .PlayNow::after {
        content: '';
        font-family: targanicon;
        cursor: pointer;
        font-size: 50pt;
    }

    .PlayNow.Stopped::after {
        content: '';
    }

    .PlayNow.Selected {
        color: #b50e0e;
    }
