.plyr__notice {
	position: absolute;
	z-index: 10;
	background-color:#29333D;
	color: #fff;
	top: .58em;
	left: .58em;
	padding: .28em .67em;
	border-radius: 4px;
	font-size: .67rem;
}
.plyr__event {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border-radius: 4px;
	width: 170px;
	height: 230px;
}
.plyr__event-icon {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(0, 0, 0, .12);
}
.plyr__event-text {
	color: #fff;
	font-size: .8rem;
	text-align: center;
	line-height: 1.23;
}


/**
 * Консоль плеера 
 * 
 * 
 */

.plyr__controls {
	display: grid!important;
	grid-template-columns: repeat(18, 1fr);

}


.plyr__controls__item.plyr__control {
	display: flex!important;
	align-items: center;
	justify-content: center;
	margin:0!important;
	padding: .15;
	/*border:1px solid red ;*/
	/*background-color: rgba(255, 255, 255, .14);*/
}
.plyr__controls__item.plyr__control:hover,
.plyr__controls__item.plyr__volume:hover .plyr__control, 
.plyr__controls__item.plyr__menu:hover .plyr__control {
	background-color: transparent!important;
}
.plyr__controls__item.plyr__control svg{
	width: 25px;
	height: 25px;
}

.plyr__controls__item.plyr__control:hover svg{
	/*opacity: .7;*/
}
.plyr__controls__item.plyr__time  {
	width: 60px;
} 
.plyr__time + .plyr__time {
	display: block!important;
	width: 60px;
}

/**
 * Прогресс 
 */

.plyr__controls__item.plyr__progress__container {
	grid-row: 1;
	grid-column: 1/19;
	width: 100%;
}

/**
 * Воспроизвести, перемотка вперед назад  
 */
.plyr__controls__item.plyr__control {
	grid-row: 2;
}
.plyr__controls__item.plyr__control[data-plyr="play"] svg{
	width: 30px;
	height: 30px;
}

/**
 * Громкость 
 */
.plyr__controls__item.plyr__volume {
	grid-row: 2;
	grid-column: 4;
}

.plyr__controls__item.plyr__volume input[type="range"] {
	width: 100%;
	max-width: 100%;
}


/**
 * Тайминги (текущее время / длительность) 
 * 
 * 
 */

.plyr__controls__item.plyr__time--current.plyr__time{
	grid-row: 2;
	grid-column: 5;
}
.plyr__controls__item.plyr__time--duration.plyr__time {
	grid-row: 2;
	grid-column: 5;
	margin-left: 54px;
}



/**
 * Переход на Rutube 
 * 
 * 
 */

.plyr__controls__item.plyr__rutube {

	grid-row: 2;
	grid-column: 14/17;

	display: flex;
	align-items: center;
	justify-content: center;

	background-color:transparent;
	border: none;
}


/**
 * Настройки
 * 
 */

.plyr__controls__item.plyr__menu {

	grid-row: 2;
	grid-column: 17;
}



/**
 * Во весь экран 
 * 
 */
.plyr__controls__item.plyr__control[data-plyr='fullscreen'] {
	grid-row: 2;
	grid-column: 18;
}


.fs-active .plyr__controls {

	margin: 0 auto!important;
	left: 0;
	box-shadow: 0px 4px 10px rgba(116, 102, 248, 0.2);
}

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

	.plyr__controls__item.plyr__control[data-plyr='play'] {
		position: fixed;
		top: 50%!important;
		left: 50%;
		transform: translate(-50%, -70%)!important;
		z-index: 1000;
		/*border: 1px solid red;*/
		height: 100px;
		width: 120px;
		opacity: 0;
		/*top: -200px;*/
	}
	.plyr__controls__item.plyr__control[data-plyr='rewind'] {
		position: fixed;
		top: 50%;
		left: 5%;
		transform: translate(30%, -70%)!important;
		z-index: 1000;
		/*border: 1px solid red;*/
		height: 100px;	
		width: 70px;
		opacity: 0;
	}

	.plyr__controls__item.plyr__control[data-plyr='fast-forward'] {
		position: fixed;
		top: 50%;
		right: 5%;
		transform: translate(-30%, -70%)!important;
		z-index: 1000;
		/*border: 1px solid red;*/
		height: 100px;	
		width: 70px;
		opacity: 0;
	}
	.plyr__controls__item.plyr__rutube {
		display: none;
	}
	.plyr__controls__item.plyr__volume {
		grid-column: 1/2;
	}

	.plyr--video.plyr--hide-controls .plyr__controls {
		opacity: 1;
	}


}