@charset "UTF-8";
@font-face {
	font-family: 'Poppins';
	src: local('☺'), url('../fonts/Poppins-Light.woff2') format('woff2');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Poppins';
	src: local('☺'), url('../fonts/Poppins-Regular.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Poppins';
	src: local('☺'), url('../fonts/Poppins-SemiBold.woff2') format('woff2');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Lora';
	src: url('../fonts/Lora/Lora-Bold.woff2') format('woff2'),
		 url('../fonts/Lora/Lora-Bold.woff') format('woff');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Open Sans';
	src: url('../fonts/OpenSans/OpenSans-Regular.woff2') format('woff2'),
		 url('../fonts/OpenSans/OpenSans-Regular.woff') format('woff');
  	font-weight: 400;
  	font-style: normal;
	font-display: swap;
}
/*Обнуление*/
*{
	padding: 0;
	margin: 0;
	border: 0;
}
*,*:before,*:after{
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
:focus,:active{outline: none;}
a:focus,a:active{outline: none;}
nav,footer,header,aside{display: block;}
html,body{
	height: 100%;
	width: 100%;
	font-size: 100%;
	line-height: 1;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
input,button,textarea{font-family:inherit;background-color: transparent;}
input::-ms-clear{display: none;}
button {
  padding: 0;
  border: none;
  font: inherit;
  color: inherit;
  background-color: transparent;
  cursor: pointer;}
button::-moz-focus-inner {padding:0;border:0;}
a, a:visited{text-decoration: none;}
a:hover{text-decoration: none;}
ul li{list-style: none;}
img{vertical-align: top;max-width:100%;}
h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight: 400;}
/*--------------------*/
/* outline */
*:active,
*:focus {
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
	-webkit-tap-highlight-color: transparent;
}
/*FIXIKI*/
.hidden_input_file{
	display: none;
}

progress {
  /* стилевые правила */
	max-width: 480px;
	width: 100%;
	height: 10px;
	border-radius: 25px;
	background: #fff;
	overflow: hidden;
	position: relative;
}
progress::-webkit-progress-bar {
  /* стилевые правила */
	max-width: 480px;
	width: 100%;
	height: 10px;
	border-radius: 25px;
	background: #fff;
	overflow: hidden;
	position: relative;
}
progress::-webkit-progress-value {
  /* стилевые правила */
  	content: '';
	position: absolute;
	background: #3B82C5;
	height: 100%;
	width: 25%;
}
progress::-moz-progress-bar {
  /* стилевые правила */
  	content: '';
	position: absolute;
	background: #3B82C5;
	height: 100%;
	width: 25%;
}
main{
	height:100%;
	min-height:100%;
	max-height:100%;
}

/* #video_progress */
#video_progress[type="range"]{
	-webkit-appearance: none;
	border-radius:5px;
	width: 80%;
	height: 2px;
	background-color: #3c3c3c;
	outline : none;
	transition:.1s;
}
#video_progress[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	width:12px;
	height:12px;
	background:#fff;
	box-shadow: 0px 0px 0px 5px rgba(228, 240, 252, 0.15);
	border-radius:50%;
	cursor: pointer;
	transition:.1s;
}
#video_progress[type="range"]::-moz-range-thumb {
	-webkit-appearance: none;
	width:12px;
	height:12px;
	background:#fff;
	box-shadow: 0px 0px 0px 5px rgba(228, 240, 252, 0.15);
	border-radius:50%;
	transition:.1s;
	cursor: pointer;
	border:none;
}
#video_progress[type="range"]::-webkit-slider-thumb:hover,
#video_progress[type="range"]::-webkit-slider-thumb:active {
	box-shadow: 0px 0px 3px 6px rgba(174, 226, 238, 0.42);
}
#video_progress[type="range"]::-moz-range-thumb:hover,
#video_progress[type="range"]::-moz-range-thumb:active {
	box-shadow: 0px 0px 3px 6px rgba(174, 226, 238, 0.42);
}

/* body */
body {
	/*display: flex;
	flex-direction: column;*/
	font-family: 'Poppins', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	background: #17182D;
	color: #FFF;
	overflow-x: hidden;
}
@media (max-width:991px) {
	body.lock-scroll {
		overflow: hidden;
	}
}
/* header */
.header {
	position: relative;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 50;
}
.header:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #0B0F26;
	z-index: 2;
}
.header.header-no-fixed {
	position: relative;
}
.header.header-no-fixed + main {
	padding-top: 0;
}
.header__body {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 72px;
}
.header__logo {
	max-width: 428px;
	padding-right: 10px;
	position: relative;
	z-index: 4;
}
.header__logo img {
	max-width: 100%;
	display: block;
}
.header__burger {
	display: none;
}
.header__menu {
	display: flex;
	justify-content: flex-end;
	flex: 1;
	height: 100%;
}
.header__list {
	display: flex;
	align-items: center;
	height: 100%;
	position: relative;
	z-index: 2;
}
.header__list li {
	display: flex;
	align-items: center;
	height: 100%;
	margin-right: 15px;
}
.header__list li:last-child {
	margin-right: 0px;
}
.header__link,
.header__menu-text {
	font-weight: 500;
	font-size: 24px;
	line-height: 29px;
  color: #EFEFEF;
  text-transform: uppercase;
	transition: ease 0.3s;
}
.header__link {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 45px;
	height: 45px;
	background: #25283c;
	border-radius: 50%;
	transition: ease .3s;
}
.header__link.header__link-king {
	border: 3px solid #5f4918;
}
.header__link.header__link-king img {
	vertical-align: initial;
}
.header__menu-text {
	padding-right: 15px;
}
.header__link:hover,
.header__menu-text:hover {
	background: #2c2e3c;
}
.header__link span {
	position: relative;
	top: 0;
}
.header__link:hover span {
  top: -1px;
}
.header__link.header__link-king:hover {
	border: 3px solid #896c27;
}
.header__open-menu {
	cursor: default;
}
.header__button {
	display: flex;
	align-items: center;
	margin-left: 38px;
	z-index: 2;
	position: relative;
}
.header__button .button {
	min-height: 47px;
	font-size: 16px;
	padding: 10px 31px;
}
.header__add {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 15px;
	position: relative;
	z-index: 3;
	margin-left: 60px;
}
.header__add:before {
	content: url(../img/header-add.png);
	position: absolute;
	left: -36px;
	bottom: -28px;
	z-index: -1;
}
.header__add .button {
	font-size: 34px;
	font-weight: 400;
	padding: 5px 12.4px;
  border-radius: 50%;
  min-height: 48px;
	color: #EFEFEF;
	box-shadow: 0px 0px 0px 6px #1c3256;
	transition: ease .3s;
}
.header__add .button:hover {
	box-shadow: 0px 0px 0px 6px #17203a;
}
.header__add-text {
	font-size: 15px;
	line-height: 20px;
	color: #E0E0E0;
	margin-left: 18px;
	padding-bottom: 8px;
}
@media (max-width:999px) {
	.header__body {
		flex-wrap: wrap;
		height: 140px;
	}
	.header__add {
		padding-top: 0;
		margin-left: 0;
    margin-right: 0px;
    right: 0;
	}
	.header__add:before {
		display: none;
	}
	.header__menu {
		justify-content: center;
    width: 100%;
    flex: auto;
    height: 50px;
	}
}
@media (max-width:499px) {
	.header__logo {
		flex: 0 0 230px;
	}
	.header__add-text {
		display: none;
	}
	.header__link {
		width: 40px;
		height: 40px;
	}
	.header__list li{
		margin-right: 10px;
	}
	.header__button {
		margin-left: 15px;
	}
	.header__button .button {
		min-height: 40px;
    font-size: 14px;
    padding: 7px 16px;
	}
}
.save-video {
	display: none;
	position: absolute;
	right: 0;
	top: 20px;
	padding: 18px 30px 37px 30px;
	width: 392px;
	background: #FEFEFE;
	border-radius: 16px;
	z-index: 10;
	font-size: 13px;
	line-height: 21px;
	color: #747474;
}
.save-video-close {
	position: absolute;
  right: 30px;
  top: 20px;
  color: #ABABAB;
  cursor: pointer;
  font-size: 40px;
  font-weight: 300;
	transition: ease .3s;
}
.save-video-close:hover {
	color: #636363;
}
.save-video-title {
	font-weight: 600;
	font-size: 18px;
	line-height: 27px;
	color: #0B0F26;
	padding-bottom: 13px;
	border-bottom: 1px solid #EEEEEE;
	margin-bottom: 20px;
}
.save-video-text {
	font-size: 14px;
	color: #747474;
	margin-bottom: 18px;
}
/* spoiler */
.spoiler {
	margin-bottom: 23px;
	position: relative;
}
.spoiler-title {
	border: 1px solid #DDDDDD;
	border-radius: 8px;
	font-weight: 600;
	color: #17182D;
	padding: 10px 18px;
	cursor: pointer;
	transition: ease .7s;
}
.spoiler-title.closed {
	border-bottom: 1px solid transparent;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.spoiler-arrow {
	position: absolute;
	margin-left: 14px;
	top: 16px;
	right: 30px;
}
.spoiler-arrow:before,
.spoiler-arrow:after {
  content: "";
	position: absolute;
  top: 0px;
  left: 0px;
  width: 2px;
  height: 9px;
  z-index: 1;
  transition: all .23s;
  transform: rotate(-45deg);
  background: #17182D;
}
.spoiler-arrow:before {
	left: 6px;
	transform: rotate(45deg);
}
.spoiler-title.closed .spoiler-arrow:before {
	left: 3px;
}
.spoiler-title.closed .spoiler-arrow:after {
	left: 8px;
}
.spoiler-body {
	padding: 7px 18px 0;
  position: absolute;
  left: 0;
  top: 42px;
  z-index: 2;
  background: #fff;
  border: 1px solid #DDDDDD;
  border-top: none;
  border-radius: 8px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  width: 100%;
}
.spoiler-text {
	position: relative;
	color: #17182D;
	padding: 15px 0px;
	border-top: 1px solid #F2F2F2;
	font-weight: 600;
	cursor: pointer;
}
.spoiler-text .video-menu-clarification {
	right: -150px;
	top: 7px;
}
.spoiler-text:hover .video-menu-clarification, .spoiler-text:hover .video-menu-clarification:after, .spoiler-text:hover .video-menu-clarification:before {
	visibility: visible;
	opacity: 1;
	z-index: 1;
}
.spoiler-text:hover .video-menu-clarification:before {
	z-index: 2;
}
@media (max-width:1630px) {
	.spoiler-text .video-menu-clarification {
		right: -60px;
    top: 45px;
	}
	.spoiler-text .video-menu-clarification:before {
    top: -25px;
    left: 11px;
    border: 9px solid transparent;
    border-bottom: 18px solid #17182D;
	}
	.spoiler-text .video-menu-clarification:after {
    top: -28px;
    left: 11px;
    border: 9px solid transparent;
    border-bottom: 18px solid rgba(220, 159, 4, 0.4);
	}
}
@media (max-width:499px) {
	.spoiler-text .video-menu-clarification {
		right: -33px;
	}
	.save-video {
		right: -18px;
		padding: 15px;
		width: 307px;
	}
}
/* main */
main {
	flex-grow: 1;
}
.container {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 15px;
}
/* button */
.button_goback {
	display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 62px;
  font-weight: 600;
	font-size: 18px;
	padding: 10px 73px;
  text-align: center;
  color: #fff;
  outline: none;
  background: #25293d;
	border-radius: 39px;
}
.button_goback:hover {
	background: rgba(229, 229, 229, 0.16);
	box-shadow: 0px 0px 0px 6px rgb(0 0 0, 0.29);
	border-radius: 45px;
}

.button_goback span{
	position: relative;
	z-index: 1;
}

/* button */
.button {
	display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 62px;
  font-weight: 600;
	font-size: 18px;
	padding: 10px 73px;
  text-align: center;
  color: #fff;
  outline: none;
  background: #3B82C5;
	border-radius: 39px;
	box-shadow: 0px 0px 0px 6px rgb(59 130 197 / 12%);
}
.button:hover {
	box-shadow: 0px 0px 0px 6px rgba(115, 169, 220, 0.11);
}
.button span{
	position: relative;
	z-index: 1;
}
@media (max-width:767px) {
	.button {
		font-size: 16px;
    line-height: 20px;
    padding: 10px 45px 10px 20px;
    min-height: 50px;
	}
}
.button:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	color: #fff;
	text-decoration: none;
	border-radius: 39px;
	background: #136BBE;
	opacity: 0;
	transition: opacity 0.5s;
}
.button:hover:after {
	opacity: 1;
}
.button:active:after {
	opacity: 1;
	background: #136BBE;
}
.button .btn__icon {
	z-index: 1;
  margin-right: 11px;
}
@media (max-width:767px) {
  .button .btn__icon {
    width: 16px;
    height: 18px;
    right: 16px;
  }
}
.button .btn__icon-block {
	z-index: 1;
  margin-right: 11px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.button:hover .btn__icon-top {
	animation: bounce 2s;
}
@keyframes bounce {
	0%, 20%, 60%, 100% {
		transform: translateY(0);
		transform: translateY(0);
	}
	40% {
		transform: translateY(-5px);
		transform: translateY(-5px);
	}
	80% {
		transform: translateY(-2px);
		transform: translateY(-2px);
	}
}
.button.button-orange {
  background: #ED8843;
	box-shadow: none;
}
.button.button-orange:after {
  background: #FF7527;
}
.button.button-blue {
  background: #7EAAFF;
}
.button.button-blue:after {
  background: #3066B1;
}
.button.button-blue-dark {
  background: #3066B1;
}
.button.button-blue-dark:after {
  background: #7EAAFF;
}
.button.button-green {
  background: #049D41;
	box-shadow: none;
	min-height: 55px;
	font-weight: 600;
	font-size: 17px;
	line-height: 25px;
	color: #FAFAFA;
	padding: 10px 35px;
}
.button.button-green:after {
  background: #00B94A;
}
/* footer */
.footer {
	background: #222;
	position: relative;
	z-index: 1;
}
/* main-open-file */
.main-open-file {
	margin: 20px 40px 40px;
	padding: 12% 20px 20px;
	border: 2px dashed #484C70;
	border-radius: 15px;
}
.section-title {
	font-weight: 600;
	font-size: 44px;
	line-height: 66px;
	text-align: center;
	color: #EFEFEF;
	margin-bottom: 10px;
}
@media (max-width:767px) {
	.main-open-file {
		margin: 15px;
	}
	.section-title {
		font-size: 36px;
		line-height: 36px;
	}
}
.section-desctription {
	font-size: 18px;
	line-height: 27px;
	color: #D6D6D6;
	margin-bottom: 38px;
	text-align: center;
}
.btn-block {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.btn-block-text {
	font-weight: 300;
	font-size: 16px;
	line-height: 24px;
	text-align: center;
	color: #5D5E64;
	margin-top: 25px;
}
/* loading-progress */
.loading-block {
	display: flex;
	justify-content: center;
	align-items: center;
}
.loading-progress {
	max-width: 480px;
	width: 100%;
	height: 10px;
	border-radius: 25px;
	background: #fff;
	overflow: hidden;
	position: relative;
}
.loading-progress:before {
	content: '';
	position: absolute;
	background: #3B82C5;
	height: 100%;
	width: 25%;
}
.loading-closs {
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 0 0 30px;
	height: 30px;
	border-radius: 50%;
	color: #B4B4B4;
	border: 2px solid #B4B4B4;
	margin-left: 30px;
	cursor: pointer;
	position: relative;
	transition: ease .3s;
}
.loading-closs:hover {
	color: #fff;
	border: 2px solid #fff;
}
.loading-closs-hint {
	display: none;
	position: absolute;
	left: 50%;
	bottom: calc(100% + 10px);
	transform: translateX(-50%);
	background: #0B0F26;
	border: 1px solid #3B82C5;
	border-radius: 6px;
	padding: 6px 10px;
	font-size: 12px;
	line-height: 16px;
	color: #fff;
	white-space: nowrap;
	z-index: 2;
}
.loading-closs:hover .loading-closs-hint {
	display: block;
}
.loading-closs:before,
.loading-closs:after {
	content: ' ';
	position: absolute;
	height: 60%;
	width: 2px;
	background-color: #B4B4B4;
	transition: ease .3s;
}
.loading-closs:before {
transform: rotate(45deg);
}
.loading-closs:after {
transform: rotate(-45deg);
}
.loading-closs:hover:before,
.loading-closs:hover:after {
	background-color: #fff;
}
.loading-text {
	font-weight: 300;
	font-size: 16px;
	line-height: 24px;
	text-align: center;
	color: #7A7B83;
	margin-top: 25px;
}
/* section-video */
.section-video {
	margin-top: 25px;
}
@media (max-width:1399px) {
	.section-video {
		margin-top: 10px;
	}
}
.video-block {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}
.video-menu {
	display: flex;
	background: #0B0F26;
	border-radius: 0px 6px 6px 0px;
	margin-top: 35px;
	margin-right: 26px;
	width: calc(37.8% - 26px);
}
.video-menu-left {
	flex: 0 0 165px;
	display: flex;
	flex-direction: column;
}
.video-menu-left-bottom {
	background: #000221;
	padding-left: 25px;
	border-top-right-radius: 20px;
	flex-grow: 1;
}
.video-menu-item {
	display: flex;
	position: relative;
	font-size: 16px;
	color: #494B61;
	padding: 20px 20px 20px 0;
	cursor: pointer;
}
.video-menu-item-active {
	color: #fff;
	padding-left: 25px;
	cursor: default;
}
@media (max-width:1299px) {
	.video-menu {
		min-width: 400px;
		width: auto;
	}
	.video-menu-left {
    flex: 0 0 140px;
	}
	.video-menu-left-bottom {
		padding-left: 10px;
	}
	.video-menu-item {
		padding-left: 10px;
	}
	.video-menu-item-active {
		padding-left: 20px;
	}
	#video-player{
		height:455px !important;
	}
}
@media (max-width:999px) {
	.video-menu {
		min-width: auto;
		/*width: 100%;*/
		margin: 15px 0 15px;
	}
	.video-menu-left {
    flex: 0 0 180px;
	}
	.video-menu-left-bottom {
		padding-left: 0px;
	}
	.video-menu-item {
		padding-left: 20px;
	}
	.video-menu-item-active {
		padding-left: 20px;
	}
	#video-player{
		height:350px !important;
	}
}
@media (max-width:799px) {
	#video-player{
		height:250px !important;
	}
}
@media (max-width:499px) {
	.video-menu-left {
    flex: 0 0 140px;
	}
	.video-menu-left-bottom {
		padding-left: 0px;
	}
	.video-menu-item {
		padding-left: 15px;
	}
	.video-menu-item-active {
		padding-left: 15px;
	}
	#video-player{
		height:150px !important;
	}
}
.video-menu-item img {
	margin-right: 15px;
	opacity: 0.3;
	width: 22px;
	height: 22px;
}
.video-menu-item-active img {
	opacity: 1;
}
.video-menu-clarification {
	position: absolute;
  opacity: 0;
  visibility: hidden;
	z-index: 1;
	right: -255px;
  top: 15px;
	background: #17182D;
	border-radius: 6px;
	border: 1px solid rgba(220, 159, 4, 0.4);
	box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.25);
	padding: 18px 30px 16px 35px;
	font-size: 14px;
	line-height: 21px;
	color: #EFEFEF;
	width: 260px;
	cursor: default;
	transition: ease .3s;
}
.video-menu-clarification:after, .video-menu-clarification:before {
	content: '';
	position: absolute;
	opacity: 0;
  visibility: hidden;
	left: -27.5px;
	top: 9.3px;
	border: 9px solid transparent;
	border-right: 18px solid rgba(220, 159, 4, 0.4);
}
.video-menu-clarification:before {
	top: 10px;
  left: -24.5px;
  z-index: 2;
  border: 8px solid transparent;
  border-right: 18px solid #17182D;
}
.video-menu-item:hover .video-menu-clarification, .video-menu-item:hover .video-menu-clarification:after, .video-menu-item:hover .video-menu-clarification:before {
	visibility: visible;
	opacity: 1;
	z-index: 1;
}
.video-menu-item:hover .video-menu-clarification:before {
	z-index: 2;
}
.video-menu-clarification p {
	margin-bottom: 8px;
}
.video-menu-clarification a {
	font-weight: 500;
	font-size: 14px;
	line-height: 21px;
	color: #4290DA;
}
.video-menu-clarification a:hover {
	text-decoration-line: underline;
}
@media (max-width:499px) {
	.video-menu-clarification {
		right: -147px;
    top: 66px;
		padding: 14px;
	}
	.video-menu-clarification:after {
		top: -28px;
    left: 11px;
		border: 9px solid transparent;
		border-bottom: 18px solid rgba(220, 159, 4, 0.4);
	}
	.video-menu-clarification:before {
    top: -25px;
    left: 11px;
		border: 9px solid transparent;
		border-bottom: 18px solid #17182D;
	}
}
.video-menu-right {
	/*padding: 20px 45px 20px 40px;*/
	padding: 20px;
	flex: 1;
}
@media (max-width:1299px) {
	.video-menu-right {
		padding: 20px 15px 20px 15px;
	}
}
@media (max-width:999px) {
	.video-menu-right {
		padding: 20px 15px 20px 40px;
	}
}
@media (max-width:499px) {
	.video-menu-right {
    padding: 20px 15px 20px 15px;
	}
}
.video-menu-text {
	font-size: 15px;
	line-height: 22px;
	color: #C9C9C9;
	margin-bottom: 25px;
}
.video-duration-block {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #1A1D33;
	padding-bottom: 30px;
	margin-bottom: 30px;
}
.video-duration {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #191d33;
	padding: 11px 14px;
	border-radius: 7px;
	font-size: 16px;
	line-height: 24px;
	color: #EFEFEF;
}
.video-duration[data-time-control] {
	width: 132px;
	box-sizing: border-box;
	flex: 0 0 132px;
}
#startTimeInput1,
#endTimeInput1,
#finalTimeInput {
	font-variant-numeric: tabular-nums;
}
#startTimeInput1,
#endTimeInput1 {
	width: 76px;
	flex: 0 0 76px;
	text-align: center;
}
#finalTimeInput {
	box-sizing: border-box;
	text-align: center;
}
.video-duration:first-child {
	margin-right: 5px;
}
@media (max-width:999px) {
	.video-duration-block {
		justify-content: start;
	}
	.video-duration:first-child {
		margin-right: 15px;
	}
}
@media (max-width:499px) {
	.video-duration-block {
		justify-content: center;
		flex-wrap: wrap;
		flex-direction: column;
	}
	.video-duration:first-child {
		margin-right: 0px;
		margin-bottom: 10px;
	}
}
.duration-arrow {
	display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  font-size: 0;
  flex: 1;
  margin-left: 20px;
}
.duration-arrow-up,
.duration-arrow-down {
	display: flex;
  justify-content: center;
  align-items: center;
	width: 14px;
  height: 14px;
  transition: opacity .2s;
  opacity: .4;
  background-repeat: no-repeat;
  cursor: pointer;
	background-image: url(../img/arrow.webp);
}
.duration-arrow-up {
	background-position: top;
}
.duration-arrow-down {
	background-position: bottom;
	transform: rotate(180deg);
}
.duration-arrow-up:hover,
.duration-arrow-down:hover {
	opacity: 1;
}
.duration-arrow-up:active,
.duration-arrow-down:active {
	opacity: 1;
	filter: brightness(0.5);
}
.volume-block {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 210px;
	flex: 0 0 210px;
}
@media (max-width:999px) {
	.volume-block {
		max-width: 400px;
		justify-content: start;
	}
}
/* volume */
.volume[type="range"]{
	-webkit-appearance: none;
	border-radius:5px;
	width: 160px;
	flex: 0 0 160px;
	height: 2px;
	background-image:-webkit-linear-gradient(left ,#39C 0%,#39C 50%,#CCC 50%, #CCC 100%);
	outline : none;
	transition:.1s;
}
.volume[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	width:12px;
	height:12px;
	background:#fff;
	box-shadow: 0px 0px 0px 5px rgba(228, 240, 252, 0.15);
	border-radius:50%;
	cursor: pointer;
	transition:.1s;
}
.volume[type="range"]::-moz-range-thumb {
	-webkit-appearance: none;
	width:12px;
	height:12px;
	background:#fff;
	box-shadow: 0px 0px 0px 5px rgba(228, 240, 252, 0.15);
	border-radius:50%;
	transition:.1s;
	cursor: pointer;
	border:none;
}
.volume[type="range"]::-webkit-slider-thumb:hover,
.volume[type="range"]::-webkit-slider-thumb:active {
	box-shadow: 0px 0px 3px 6px rgba(174, 226, 238, 0.42);
}
.volume[type="range"]::-moz-range-thumb:hover,
.volume[type="range"]::-moz-range-thumb:active {
	box-shadow: 0px 0px 3px 6px rgba(174, 226, 238, 0.42);
}
.result-text {
	font-size: 14px;
	width: 40px;
	flex: 0 0 40px;
	text-align: right;
	line-height: 21px;
	color: #EFEFEF;
	margin-left: 7px;
}
/* checkbox */
.checkbox {
  display: block;
  position: relative;
  padding-left: 40px;
  font-size: 16px;
	line-height: 24px;
	color: #C9C9C9;
  cursor: pointer;
  user-select: none;
	margin-bottom: 18px;
	z-index: 0;
}
.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  width: 22.5px;
	height: 22.5px;
  background: #2B2F45;
	border-radius: 5px;
}
.checkbox:hover input ~ .checkmark {
  background-color: #2B2F45;
}
.checkbox input:checked ~ .checkmark {
  background-color: #2B2F45;
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.checkbox input:checked ~ .checkmark:after {
  display: block;
}
.checkbox .checkmark:after {
  left: 8px;
  top: 4px;
  width: 8px;
  height: 12px;
  border: solid #EEEDEA;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
/* video */
.video {
	display: flex;
	flex-direction: column;
	width: 62.2%;
}
@media (max-width:1299px) {
	.video {
		flex: 1;
    width: auto;
	}
}
@media (max-width:999px) {
	.video {
		flex: 1;
    width: 100%;
	}
}
.video-name {
	width: 100%;
	font-size: 16px;
	line-height: 24px;
	color: #EEEEEE;
	margin-bottom: 11px;
}

.video-thumbnail {
  position: relative;
  padding-bottom: 51.5%;
  height: 0;
  overflow: hidden;
	background: #000;
	box-shadow: 0px 7px 20px rgba(20, 41, 94, 0.2);
}
.video-thumbnail iframe,
.video-thumbnail object,
.video-thumbnail embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-thumbnail__image{
  width: 100%;
	height: 100%;
	object-fit: cover;
}
.video-thumbnail__preview{
  position: relative;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-thumbnail__content{
  display: none;
}
.video-thumbnail--active .video-thumbnail__preview{
  display: none;
}
.video-thumbnail--active .video-thumbnail__content{
	display: block;
	position: absolute;
	max-width: 100%;
	height: 100%;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
.video-thumbnail__play{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 76px; 
  height: 76px;
  transform: translateX(-50%) translateY(-50%);
  z-index: 4;
	background: url(../img/play.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: none;
  transition: all 0.2s ease-in-out;
}
.video-thumbnail__preview:hover .video-thumbnail__play{
  opacity: 0.7;
} 
.video-thumbnail__preview:after{
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
	height: 100%;
	background: none;
	transition: ease 0.4s;
}


.video-player {
	width: 100%;
}
.video-panel {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	/*width: 62.2%;*/
	width: 100%;
}
@media (max-width:999px) {
	.video-panel {
    width: 100%;
	}
}
@media (max-width:499px) {
	.video-panel {
    flex-wrap: wrap;
	}
}
.no_support_format {
	width: 62.2%;
	min-height: 455px;
	justify-content: center;
	padding: 20px;
	background: #000;
	box-shadow: 0px 7px 20px rgba(20, 41, 94, 0.2);
	text-align: center;
}
@media (max-width:999px) {
	.no_support_format {
		width: 100%;
	}
}
@media (max-width:799px) {
	.no_support_format {
		min-height: 250px;
	}
}
@media (max-width:499px) {
	.no_support_format {
		min-height: 150px;
	}
}
.video-btn {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.previous {
	width: 16px;
	height: 20px;
	background: url(../img/previous.webp) center no-repeat;
	transition: ease .3s;
}
.play {
	display: flex;
	justify-content: center;
	align-items: center;
	background: url(../img/play.webp) center no-repeat;
	background-color: #25293D;
	box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
	border-radius: 25px;
	width: 51px;
	height: 51px;
	margin: 0 5px;
	/*margin: 0 34px;*/
	transition: ease .3s;
}
.play:hover {
	background-color: #323547;
}
.play:active {
	filter: brightness(0.5);
}
.play.play-stop {
	background: url(../img/play-stop.svg) center no-repeat;
}
.play.play-stop:hover {
	background-color: #323547;
}
.play.play-stop:active {
	filter: brightness(0.5);
}
.next {
	width: 16px;
	height: 20px;
	background: url(../img/next.webp) center no-repeat;
	transition: ease .3s;
}
.previous:hover,
.next:hover {
	box-shadow: 0px 0px 13px 0px #ffffff78, inset 0px 0px 14px 0px #ffffff5e;
}
.previous:active,
.next:active {
	filter: brightness(0.5);
}
@media (max-width:599px) {
	.previous,
	.next {
		width: 14px;
    height: 15px;
		background-size: 100%;
	}
	.play {
		width: 45px;
    height: 45px;
		margin: 0 15px;
	}
}
.progress-block {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-grow: 1;
	margin: 0 5px;
	/*margin: 0 50px;*/
}
@media (max-width:599px) {
	.progress-block {
		margin: 0 25px;
	}
}
@media (max-width:499px) {
	.progress-block {
		margin: 15px 0px;
		order: 2;
		width: 100%;
	}
}
.progress {
	width: 100%;
	height: 2px;
	background: rgba(122, 143, 166, .3);
	border-radius: 2px;
	position: relative;
	margin: 0 20px;
	display: flex;
	align-items: center;
}
.progress:before {
	content: '';
  position: absolute;
  background: #fff;
  height: 100%;
  width: 60%;
}
.progress-point {
  position: absolute;
	left: 60%;
	width: 12px;
	height: 12px;
	z-index: 2;
	border-radius: 50%;
  background: #fff;
	box-shadow: 0px 0px 0px 5px rgba(228, 240, 252, 0.15);
	cursor: pointer;
	transition: ease .3s;
}
.progress-point:hover {
	box-shadow: 0px 0px 3px 6px rgba(174, 226, 238, 0.42);
}
.time {
	color: #FFFFFF;
	font-size: 14px;
	line-height: 23px;
	/*fix*/
	padding-right: 5px;
    padding-left: 5px;
    min-width: 70px;
}
.sound-block {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 5px;
	min-width: 240px;
}
.sound {
	width: 20px;
	height: 18px;
	flex: 0 0 20px;
	background: url(../img/sound.svg) center no-repeat;
	transition: ease .3s;
}
.sound:hover {
	box-shadow: 0px 0px 13px 0px #ffffff78, inset 0px 0px 14px 0px #ffffff5e;
	border-radius: 5px;
}
.sound:active {
	filter: brightness(0.5);
}
.sound.sound-mute {
	background: url(../img/sound-mute.svg) center no-repeat;
}
.sound-scale-block {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 6px 16px;
	background: rgba(255, 255, 255, 0.07);
	border-radius: 31px;
	margin-left: 22px;
}
@media (max-width:599px) {
	.sound-scale-block {
		padding: 3px 13px;
    margin-left: 20px;
	}
}
.sound-scale {
	margin-left: 15px;
	width: 16px;
	height: 16px;
	background: url(../img/scale.svg) center no-repeat;
	border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
	transition: ease .3s;
}
.sound-scale:hover {
	box-shadow: 0px 0px 16px 0px #ffffff63, inset 0px 0px 13px 0px #ffffff3d;
}
.sound-scale:active {
	filter: brightness(0.5);
}
/* video-timeline */
.video-timeline {
	display: flex;
	width: 100%;
	position: relative;
	margin: 50px 0px 0px 0px;
}
.timeline {
	display: flex;
	width: 100%;
}
.frame {
	width: 10%;
	height: 74.4px;
}
.frame img {
	width: 100%;
  height: 100%;
	object-fit: cover;
}

.control-bars {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 2;
}
.mask {
	position: absolute;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}
.mask.left {
	left: 0;
	width: 20%;
}
.mask.right {
	right: 0;
	width: 40%;
}
.control-bars-wrapper {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	border: none;
	left: 20%;
	right: 40%;
	cursor: grab;
}
.control-bar {
	width: 12.42px;
	position: absolute;
	top: 0;
	bottom: 0;
	background: #3B95EB;
	transition: ease .2s;
	pointer-events: all;
	cursor: ew-resize;
	box-sizing: border-box;
	z-index:4;
}
.control-bar:before {
	background-repeat: no-repeat;
	background-position: 50%;
	content: "....";
	width: 17px;
	height: 37px;
	position: absolute;
	top: 50%;
	left: 50%;
	font-size: 20px;
	letter-spacing: 2px;
	transform: translate(-50%,-50%) rotate(90deg);
	margin-top: 0;
}
.control-bar.cb-left {
	transform: translateX(-100%);
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.control-bar.cb-right {
	right: 0;
  transform: translateX(100%);
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 4px;
	border-top-right-radius: 4px;
}
.control-bar:hover {
	background-color: #62B3FF;
}
.progress-line {
	position: absolute;
  bottom: -25px;
  /*left: -18px;*/
  left: 0;

  font-size: 12px;
	line-height: 18px;
	color: #3B95EB;
  display: flex;
  align-items: flex-start;
  padding: 1px 0;
  justify-content: center;
	cursor: auto;
}

.progress-line_last{
	right: 0;
	left: auto;
}

.selected-range-output {
	position: absolute;
	top: 0;
	left: 45%;
	bottom: 0;
	z-index: 3;
	width: 1px;
	height: 110px;
	background-color: #DB4A4A;
	transform: translate(-50%,-28px);

}
.selected-range-output:before {
	content: url(../img/polygon.webp);
	position: absolute;
	top: -2px;
	left: -9px;
	bottom: 0;
	z-index: 3;
	cursor: ew-resize;
	transition: ease 0.3s;

}
.selected-range-output:hover:before{
	filter: brightness(1.2);
}

.no_drag {
	user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
	cursor: default;
}
.selected-range-text {
	position: absolute;
	right: -65px;
  top: 5px;
	font-size: 12px;
	line-height: 18px;
	color: #EFEFEF;
	cursor: auto;
	user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}
.selected-range-text_left {
	right: auto;
	left: -65px;
	text-align: right;
}
/* mfp */
.white-popup {
  position: relative;
  padding: 38px 20px 18px 65px;
  max-width: 763.65px;
  margin: 0 auto; 
	border: 1px solid rgba(141, 192, 239, 0.2);
	box-sizing: border-box;
	box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.38);
	border-radius: 20px;
	background: url(../img/popup-bg.webp) right 75px no-repeat, #0B0F26;
}
@media (max-width:599px) {
	.white-popup {
		padding: 15px;
	}
}
.popup-over-title {
	font-size: 21px;
	color: #FFFFFF;
	margin-bottom: 20px;
	line-height: 31px;
	max-width: 625px;
}
.popup-title {
	font-size: 30px;
	font-weight: 700;
	line-height: 1.1;
	color: #FFFFFF;
	margin-bottom: 25px;
}
.popup-sale {
	display: inline-block;
	padding: 9px 36px;
	border: 1px dashed rgba(240, 187, 187, 0.43);
	border-radius: 26px;
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	color: #D35F5F;
	margin-bottom: 32px;
}
.popup-benefits {
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 20px;
	color: #FFFFFF;
}
.popup-list {
	margin-bottom: 30px;
}
.popup-list li {
	position: relative;
	padding-left: 20px;
	margin-bottom: 10px;
	font-size: 16px;
	color: #E7E7E7;
}
.popup-list li:before {
	content: '';
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	left: 0;
	top: 9px;
	font-size: 40px;
	width: 6px;
	height: 6px;
	background: #C4C4C4;
	border-radius: 50%;
}
.white-popup .button-green {
	margin-bottom: 11px;
}
.white-popup .btn__icon {
	margin-right: 18px;
}
.price-block {
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
	max-width: 270px;
}
.price-old {
  position: relative;
  font-size: 16px;
  line-height: 15px;
  margin-right: 10px;
	color: #C8C8C8;
}
.price-old:after, .price-old:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  display: inline-block;
  transform: rotate(35deg);
  left: 0%;
  top: 50%;
  background: rgba(177, 177, 177, 0.51);
}
.price-old:after {
  transform: rotate(35deg);
}
.price-old:before {
  transform: rotate(-35deg);
}
.price {
  font-size: 18px;
  line-height: 27px;
  font-weight: 600;
}
.mfp-close-btn-in .mfp-close {
	color: #ABABAB;
	font-size: 37px;
	right: 15px;
	top: 15px;
}
.mfp-close-btn-in .mfp-close:active {
	top: 15px;
}
/* ZOOM */
.mfp-zoom-in .mfp-with-anim {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
}
.mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.mfp-zoom-in.mfp-ready .mfp-with-anim {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.mfp-zoom-in.mfp-ready.mfp-bg {
  background: rgba(255, 255, 255, 0.13);
	opacity: 1;
}
.mfp-zoom-in.mfp-removing .mfp-with-anim {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0;
}
.mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}


/* download-popup */
.download-popup {
  position: relative;
  padding: 40px 42px 58px 42px;
  width: 100%;
  max-width: 946px;
  margin: 0 auto;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  background: #fff;
  border-radius: 20px;
  color: #252831;
  font-family: 'Open Sans';
}
.download-popup-title {
  font-family: "Lora";
  font-weight: 700;
  font-size: 36px;
  line-height: 120%;
  text-align: center;
  margin-bottom: 42px;
}
.download-popup-block {
  display: flex;
  align-items: center;
  gap: 30px;
}
.download-popup-left {
  width: 100%;
  max-width: 400px;
  display: flex;
}
.download-popup-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 160%;
  margin-bottom: 12px;
}
.download-popup-text b {
  color: #ff6400;
}
.download-popup-right {
  display: flex;
  flex: 1;
  flex-direction: column;
}
.download-popup-or {
  display: flex;
  margin: 30px 0px;
  gap: 18px;
  font-weight: 400;
  font-size: 18px;
  line-height: 0;
  text-align: center;
}
.download-popup-or-line {
  height: 1px;
  background: #ececed;
  width: 100%;
}
.download-popup-ver {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.download-popup-ver p {
  font-weight: 700;
  font-size: 25px;
  line-height: 120%;
  text-align: center;
  margin-bottom: 22px;
  font-family: "Lora";
}
.mfp-close-btn-in .download-popup .mfp-close {
  color: #fff;
  right: -40px;
  top: -15px;
  font-size: 36px;
  opacity: 1;
}
.mfp-close-btn-in .download-popup .mfp-close:hover {
  opacity: .65;
}
@media (max-width:1000px) {
  .mfp-close-btn-in  .download-popup .mfp-close {
    right: 0;
    top: 0;
    color: #333;
  }
}
@media (max-width:991px) {
  .download-popup-left {
    max-width: 350px;
  }
}
@media (max-width:767px) {
  .download-popup {
    padding: 35px 30px 40px 30px;
  }
  .download-popup-block {
    flex-direction: column;
  }
  .download-popup-left {
    max-width: 400px;
  }
}
@media (max-width:575px) {
  .download-popup-title {
    font-size: 32px;
    margin-bottom: 24px;
  }
  .download-popup-or {
    margin: 25px 0px;
  }
}

.download-popup-button {
	display: inline-flex;
  	justify-content: center;
  	align-items: center;
  	position: relative;
  	font-weight: 400;
  	font-size: 20px;
	line-height: 24px;
  	padding: 19.5px 22.25px 19.5px 22.25px;
  	text-align: center;
  	color: #fff;
	outline: none;
	background: #FF7821;
  	border-radius: 10px;
	transition: ease 0.3s;
}
.download-popup-button span {
	position: relative;
	z-index: 1;
}
.download-popup-button:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #FF8B40;
  	border-radius: 10px;
	opacity: 0;
	transition: opacity 0.3s;
}
.download-popup-button:hover:after,
.download-popup-button:active:after {
	opacity: 1;
}
.download-popup-button .btn__icon {
	z-index: 1;
  	margin-right: 16px;
  	transition: ease .3s;
}
.download-popup-button .btn__icon.btn__icon-cart {
	width: 26px;
}
