/* ----------------------------------------------------------------------------------- */
:root {
  --main-bg-color: #8e4ec7;
  --obvodka-color: rgb(230, 230, 230);
} 
b{
	font-weight: 500;
}
/* ----------------------------------------------------------------------------------- */
body{
	padding: 0px;
	margin: 0px;
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	background-color: #f9f9f9;

	background-image: url(../images_old/homepage-background-day.jpg);
	background-size: cover;
	background-attachment: fixed;
	background-position: center center; 
}
.block{
	display: block;
}
.block > *{
	width: 1300px;
	margin-left: auto;
	margin-right: auto; 
	background-color: #f9f9f9;
	
	--box-shadow: 0px 0px 25px #8e4ec7;
	
	padding-left: 20px;
	padding-right: 20px;
	box-sizing: border-box;

	border-left: var(--obvodka-color) 1px solid;
	border-right: var(--obvodka-color) 1px solid;
}
a{
	color: inherit;
}
a:hover{
	color: inherit;
	text-decoration: none;
}
.noselect {
  -webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}
/* ----------------------------------------------------------------------------------- */
header{
	color: white;
}
header > div{
	display: flex;  
	background-color: inherit !important;
	padding-left: 0px !important;
	padding-right: 0px !important;
	border: none !important;

	background: var(--main-bg-color) !important;
}
header > div > .left{
	text-align: left;
	display: flex;
	justify-content: stretch;
}
header > div > .center{
	text-align: center;
	flex-grow: 1;
}
header > div > .right{
	text-align: right
}
header .logo{
	font-weight: 500;
	font-size: 24px;
	flex-grow: 1;
	display: flex;
	align-items: center; 

	padding-left: 20px;
	padding-right: 20px; 
}
/* ------------------------------------------------------------- */
header nav{
	display: flex;
}
header nav > *{
	padding: 14px 10px;
}
header a, header .item{
	cursor: pointer;
	background-color: transparent;
	transition: .5s ease background-color;
}
header a, header .item:last-child{
	padding-left: 20px;
	padding-right: 20px;
}
header a:hover, header .item:hover{
	background: rgba(0,0,0,0.1);
}
/* ------------------------------------------------------------- */
header .bell{
	padding: 0px 10px;
	display: flex;
	align-items: center;
	cursor: pointer;
	/* padding-right: 15px; */
	position: relative;
}
header .bell:hover, header .burger:hover, header .bell.active{
	background: rgba(0,0,0,0.1);
}
header .bell i{
	font-size: 20px;
	position: relative;
}
header .bell .count{
	position: absolute;
	top: -2.5px;
	right: -2.5px;
	font-size: 8px;
	width: 10px;
	height: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: white;
	border-radius: 5px;
	color: black;
	font-style: normal;
	box-sizing: border-box;
	padding-left: 1px;
}
/* ------------------------------------------------------------- */
header .bell .submenu{
	position: absolute;
	left: 50%;
	width: 300px;
	margin-left: -150px;
	top: 100%;
	background-color: white;
	border: var(--obvodka-color) 1px solid;
	color: black;
	z-index: 40;
	display: flex;
	flex-direction: column;

	visibility: hidden;
	transition: .5s ease top, .5s ease opacity;
	top: calc(100% + 5px);

	cursor: default;
	box-shadow: 0 20px 40px 0 rgba(0,0,0,.3);

	max-height: 350px;
	overflow-y: auto;
}
header .bell.active .submenu{
	visibility: visible;
	top: 100%;
}
header .bell .submenu:after{
	content: "";
    margin: 0 0 20px 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid white;
    position: absolute;
    top: -6px;
    left: 50%;
    margin-left: -9px;
}
header .bell .submenu > div{
	display: flex;
	text-align: left;
	border-bottom: 1px solid var(--obvodka-color);
}
header .bell .submenu > div.new{
	background: rgba(217, 175, 255, 0.15);
}
header .bell .submenu > div:last-child{
	border-bottom: none;
}
header .bell .submenu > div > div{
	padding: 15px;
}
header .bell .submenu > div > div:last-child{
	flex-grow: 1;
	padding-left: 0px;
}
header .bell .submenu .button{
	max-width: 240px;
	margin-left: auto;
	margin-right: auto;
	padding: 5px;
	box-sizing: border-box;
	background-color: rgb(142, 78, 199);
	color: white;
	cursor: pointer;
	text-align: center;
	margin-top: 10px;
	margin-bottom: 10px;
}
header .bell .submenu .ava{ 
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
}
header .bell .submenu a{
	text-decoration: underline;
	padding: 0px;
}
header .bell .submenu a:hover{
	background-color: transparent;
}
/* ------------------------------------------------------------- */ 
header nav .item{
	position: relative;
}
header nav .item .submenu{
	box-shadow: 0 20px 40px 0 rgba(0,0,0,.3);
	background-color: white;
	position: absolute;
    left: 50%;
    width: 300px;
    margin-left: -150px;
    top: 100%;
    border: var(--obvodka-color) 1px solid;
    display: flex;
    flex-direction: column;
    color: black;
    text-align: center;

    visibility: hidden;
	transition: .2s ease top, .2s ease opacity;
	top: calc(100% + 5px);

	z-index: 10;
}
header nav .item:hover .submenu{
	visibility: visible;
	top: 100%;
	z-index: 9;
}
header nav .item .submenu > a{
	padding: 7px 0px;
}
header nav .item .submenu:after{
	content: "";
    margin: 0 0 20px 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid white;
    position: absolute;
    top: -6px;
    left: 50%;
    margin-left: -7px;
}
/* ----------------------------------------------------------------------------------- */
.block1{
	width: 100%;
	overflow: hidden;
}
.block1 > div{
	padding-top: 20px;
	padding-bottom: 20px;
}
.block1 .item{
	height: 340px;

	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;

	display: flex;
	position: relative;

	align-items: flex-end;
	justify-content: flex-start;

	margin-left: 10px;
	margin-right: 10px;

	overflow: hidden;
	border-radius: 15px;

	outline: none !important;
} 
.block1 .right-top{
	background: var(--main-bg-color);
	color: white;
	padding: 10px 10px;
	position: absolute;
	left: 0px;
	top: 20px;
	text-align: left;
}
.block1 .left-bottom{
	padding: 30px;
	box-sizing: border-box;
}
.block1 .right-bottom{
	background: var(--main-bg-color);
	color: white;
	padding: 10px 10px;
	position: absolute;
	right: 0px;
	bottom: 20px;
	text-align: left;
}
.block1 .zag{
	font-size: 32px;
	font-weight: 600;
	color: white;
}
.block1 .opis{
	font-size: 14px;
	line-height: 18px;
	color: white;
	padding-top: 5px;
	max-width: 600px;
}
.about .opis a{
	text-decoration: underline;
	cursor: pointer;
}
/* ------------------------------------------------------------- */ 
.block1 .slick-dotted.slick-slider{
	margin-bottom: 0px;
}
.block1 .slick-prev, .block1 .slick-next{
	display: none !important;
}
/*
.block1 .slick-list{
	overflow: visible; 
}
.block1 .slick-list{
	overflow: visible !important;
}
.block1 .slick-slide{
	opacity: .5;
	transition: .5s ease opacity;
}
.block1 .slick-current{
	opacity: 1;
}
*/
/* ----------------------------------------------------------------------------------- */
.block2{
	
}
.block2 > div{
	padding-top: 25px;
	padding-bottom: 25px;
}
.block2 .zag{
	font-size: 22px;
	margin-bottom: 15px;
	display: block;
}
.block2 .items{
	display: grid; /* 1 */
  	grid-template-columns: repeat(auto-fill, 300px); /* 2 */
  	grid-gap: 1rem; /* 3 */
  	justify-content: space-between; /* 4 */
} 
.block2 .items > a{
	margin-bottom: 10px; 
	margin-right: 10px; 
	cursor: pointer;	

	max-width: 420px;
}
.block2 .items > * .img{
	width: 297px;
	height: 200px;

	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;

	border-radius: 15px;
	border: 1px solid rgb(220, 220, 220);

	position: relative; 
	overflow: hidden; 

	background-color: white;
}
.block2 .items > * .img .number{
	position: absolute;
    color: white;
    left: 0px;
    top: 0px;
    background: rgba(50,50,50,.5);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0% 0% 100% 0%;
    padding-right: 6px;
    padding-bottom: 5px;
    box-sizing: border-box;
    font-size: 16px;
    z-index: 9;
}
.block2 .items > * .img .hover i{
	font-size: 32px;
}
.block2 .items > * .img .hover{
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.0);
	content: "Перейти";

	transition: .25s ease background-color, opacity ease .25s;
	opacity: 0;

	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.block2 .items > *:hover .img .hover{
	background-color: rgba(0,0,0,0.4);
	opacity: 1;
}
.block2 .items > * .name{
	font-size: 18px;
	padding-top: 10px;
}
.block2 .items > * .opis{
	font-size: 14px;
}
.block2 .items > *:hover{
	text-decoration: underline;
}
/* ----------------------------------------------------------------------------------- */
footer{
	color: white;
}
footer > div{
	/* display: flex; */
	background-color: inherit !important; 
	border: none !important;

	background: var(--main-bg-color) !important;

	padding-top: 10px;
	padding-bottom: 10px;
}
footer .left{
	text-align: left;
	display: flex;
	flex-direction: column;
	padding-right: 20px;
	width: 200px;
}
footer .left b{ 
	font-size: 16px;
	margin-bottom: 10px;
}
footer .left a{ 
	padding-top: 2px;
	padding-bottom: 2px;
}
footer .left a:hover{
	text-decoration: underline;
}
footer .logo{
	font-size: 24px;
}
footer .copy{

}
footer .center{
	text-align: center;
	flex-grow: 1;
}
footer .right{
	text-align: right;
	display: flex;
	flex-direction: column;
}
footer .right{

}
/* ----------------------------------------------------------------------------------- */
.project-picker{

}
.project-picker > div{
	padding: 15px;
	background-color: #fbfbfb;
	border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;

}
.project-picker .filters{
	display: flex;
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
	flex-wrap: wrap;
	align-items: center;
}
.project-picker .filters > div{
	padding-left: 10px;
	padding-right: 10px;
	box-sizing: border-box;
}
.project-picker .nameFilter{
	width: 40%;
}
.project-picker .zhanrFilter{
	width: 30%;
}
.project-picker .yearFilter{
	width: 30%;
}
.project-picker input[type=text], .project-picker select{
	padding: 11px 12px;
	outline: none;
	border-radius: 0px;
	background-color: white;
	box-shadow: none;
	border: 1px solid var(--obvodka-color);
	width: 100%;
	box-sizing: border-box;
	box-shadow: 0 4px 15px rgba(0,0,0,.12);
}
.project-picker select{
	padding: 11px 12px;
}
.project-picker .sortFilter{
	padding-top: 15px;
}
.project-picker .clearButtonDiv{
	padding-top: 16px;
}
/* --------------------------------- */
.project-picker .clearButtonDiv{

}
.project-picker .clearButton{
	background-color: white;
	border: 1px solid var(--obvodka-color);
	padding: 5px 20px;
	border-radius: 0px;
	cursor: pointer;
	transition: .5s ease all;
}
.project-picker .clearButton.disabled{
	background-color: #fbfbfb;
	cursor: default;
	color: darkgrey;
}
.project-picker .clearButton:hover{
	background-color: #f1f1f1;
}
.project-picker .showButton{
	background-color: var(--main-bg-color);
	color: white;
	padding: 5px 20px;
	border-radius: 0px;
	cursor: pointer;
	transition: .5s ease all;
}
.project-picker .showButton:hover{
	background-color: #572a80;
}
/* --------------------------------- */
.project-picker .chosen-container-active .chosen-choices{
	border: 1px solid var(--obvodka-color);
}
.project-picker .chosen-container-multi .chosen-choices{
	padding: 5.5px 12px;
	border: 1px solid var(--obvodka-color);
	background-color: white;
	background-image: none;
	box-shadow: 0 4px 15px rgba(0,0,0,.12);
}
.chosen-container-multi .chosen-choices li.search-field input[type=text]{
	font-family: 'Roboto', sans-serif !important;
	font-size: 14px !important;
	line-height: 1.15;
	color: #999;;
}
::placeholder {
    color: #999; 
} 
:-ms-input-placeholder {
    color: #999; 
} 
::-ms-input-placeholder {
    color: #999; 
} 
.chosen-container .chosen-results li.highlighted{
	background-image: none;
	background-color: gray;
	color: black;
	background: var(--main-bg-color);
	color: white;
}
.chosen-container-multi .chosen-choices li.search-choice{
	background-image: none;
	background-color: white;
	border: 1px solid var(--obvodka-color);
}
/* --------------------------------- */
.lcs_switch{
	width: 130px;
}
.lcs_label{
	width: 100px;
}
.lcs_label .lcs_label_on{
	left: 100px;
}
.lcs_switch.lcs_on .lcs_cursor {
	left: 104px;
}
.lcs_switch.lcs_on .lcs_label_on{
	left: 5px;
}
.lcs_switch.lcs_on {
    background: #f1f1f1;
    box-shadow: 0px 0px 2px #d6d6d6 inset;
}
.lcs_switch.lcs_off {
    background: white;
    box-shadow: 0px 0px 2px #d6d6d6 inset;
}
.lcs_label{
	color: black;
	font-family: 'Roboto', sans-serif;
    font-size: 12px;
    letter-spacing: 0px;
    font-weight: 400;
    color: #404040;
}
/* --------------------------------- */
.filterButton{
	background-color: white;
	border: 1px solid var(--obvodka-color);
	padding: 5px 20px;
	border-radius: 0px;
	cursor: pointer;
	transition: .5s ease all;

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

	height: 31px;
	box-sizing: border-box;
}
.clearButtonDiv label{
	margin-bottom: 0px;
}
.filterButton input{
	cursor: pointer;
	margin-right: 10px;
} 
/* ----------------------------------------------------------------------------------- */
.projects > div{
	padding-top: 10px;
	padding-bottom: 10px;
	background-color: white;
}
/* ----------------------------------------------------------------------------------- */
.page2{
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}
.page2 .block2{
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	align-content: center;
}
.page2 .block2 > div{
	flex-grow: 1;
	background-color: white;
}
/* ----------------------------------------------------------------------------------- */
.page3{
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}
.page3 .block2{
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	align-content: center;
}
.page3 .block2 > div{
	flex-grow: 1;
	background-color: white;
	padding-bottom: 10px;
	padding-bottom: 10px;
	border-top: 1px solid var(--obvodka-color);
}
.page3 .block2 > div:last-child{
	border-bottom: 1px solid var(--obvodka-color);

}
.page3 .block2.first > div{
	border-top: none;
}
/* ----------------------------------------------------------------------------------- */
.project-info{

}
.project-info > *{
	padding-top: 10px;
	padding-bottom: 10px;
	display: flex;
	align-items: center;

	background-color: #fbfbfb;
	background-color: #f9f9f9;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    border-bottom: none;

    flex-wrap: wrap;

    padding-right: 10px !important;
}
.project-info .left{
	display: flex;
	align-items: center;
	justify-content: center; 
	padding-left: 5px;
	padding-right: 5px;
	margin-left: -5px;
}
.project-info .left i, .project-info .right i{
	cursor: pointer;
	color: gray;
	font-size: 22px;
}
.project-info .left i:hover, .project-info .right i:hover{
	color: black;
}
.project-info .right{
	display: flex;
	align-items: center;
	justify-content: center; 
	padding-left: 5px;
	padding-right: 5px; 
}
.project-info .wrapper{ 
	flex-grow: 1; 
}
.project-info .info{
	display: flex; 
	flex-direction: column;
}
.project-info .name{
	font-size: 22px;
}
.project-info .desc{
	font-size: 12px;
}
.project-info .icons{
	display: flex;
}
.project-info .icons{

}
.project-info .icons > *{
	padding: 10px;
	display: flex;
	align-items: center;
	cursor: pointer;
}
.project-info .icons > *:hover{
	text-decoration: underline;
}
.project-info .icons i{
	font-size: 18px;
	padding-left: 5px;
	padding-right: 5px;
}
/* --------------------------------- */
.season-block{
	width: 100%;
	display: flex;
	flex-direction: column;
}
.season-block > div{
	padding-top: 10px;
	padding-bottom: 10px;
	background-color: #f9f9f9; 
    border-bottom: 1px solid #eee; 
    border-top: 1px solid #eee; 
}
/* --------------------------------- */
.season-name{
	font-size: 14px;
}
.season-picks{
	display: flex;
	padding-top: 0px;
	padding-bottom: 0px;
	flex-wrap: wrap;
}
.season-picks i{
	margin-right: 5px;
}
.season-pick{
	border: 1px solid var(--obvodka-color);
	margin-left: 0px;
	margin-right: 10px;

	min-width: 30px;
	padding-left: 10px;
	padding-right: 10px;
	box-sizing: border-box;
	height: 30px;

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

	cursor: pointer;
	transition: .3s ease background-color;

	box-shadow: 0 4px 15px rgba(0,0,0,.12);
	background-color: white;

	margin-top: 7.5px;
    margin-bottom: 7.5px;
}
.season-pick:first-child{
	margin-left: 0px;
}
.season-pick:hover{
	background-color: rgba(0,0,0,0.1);
}
.season-pick.active{
	background-color: var(--main-bg-color) !important;
	color: white;
}
/* --------------------------------- */
.season-info{
	display: flex;
	align-items: flex-start;
}
.season-info > div:first-child{
	flex-grow: 1;
	display: flex; 
	flex-wrap: wrap;
}
.season-info > div:last-child{
	display: flex;
	padding-top: 15px;
	flex-shrink: 0;
}
.season-info > div:first-child > div{
	padding-right: 25px;
}
/* --------------------------------- */
.subscribe-button{
	padding-top: 6px;
	padding-bottom: 6px;
	min-width: 140px;
	text-align: center;
	border: 1px solid var(--obvodka-color);
	cursor: pointer;
	transition: .3s ease background-color;
	box-shadow: 0 4px 15px rgba(0,0,0,.12);
	background-color: white;
}
.subscribe-button:hover{
	background-color: rgba(0,0,0,0.1);
}
/* --------------------------------- */
.sort-button{
	padding: 6px;
	margin-left: 10px;
	border: 1px solid var(--obvodka-color);
	cursor: pointer;
	transition: .3s ease background-color;
	background-color: white;
	box-shadow: 0 4px 15px rgba(0,0,0,.12);
}
.sort-button i{
	color: lightgray;
}
.sort-button i{
	transition: .5s color ease;
}
.sort-button i.active{
	color: black;
}
.sort-button:hover{
	background-color: rgba(0,0,0,0.1);
}
/* ----------------------------------------------------------------------------------- */
.page3 .block2 .items > a{

}
.page3 .block2 .items{
	display: grid; /* 1 */
  	grid-template-columns: repeat(auto-fill, 235px); /* 2 */
  	grid-gap: 1rem; /* 3 
  	justify-content: space-between; /* 4 */
} 
.page3 .block2 .items > * .img{
	width: 235px;
	height: 170px;
	height: 132.1875px;
	border-radius: 0px;
}

/*.page3 .block2 .items > *{
	max-width: 235px;
}*/
.page3 .block2 .items > * .hover{
	box-sizing: border-box;
    padding-bottom: 55px;
}
.page3 .block2 .items > *:hover .img .hover{
	background-color: rgba(0,0,0,0.5);
	opacity: 1;
}
.page3 .block2 .items .variants{
	position: absolute;
	bottom: 0px;
	left: 0px;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.page3 .block2 .items .variants > *{
	width: calc(50% - 1px);
	overflow: hidden;
	text-overflow: ellipsis;
	text-align: center;
	font-size: 12px;

	background-color: rgba(0,0,0,0.6);
	color: white;
	padding: 5px;
	transition: .3s ease background-color;

	border-top: 1px solid var(--main-bg-color);
	position: relative;

	border-right: 1px solid transparent;
} 
.page3 .block2 .items .variants > *.hidden{
	display: none;
}
.page3 .block2 .items .img.active .variants > *.hidden{
	display: block;
}
.page3 .block2 .items .variants > *.full{
	width: 100%;
}
.page3 .block2 .items .variants > *:hover{
	background-color: rgba(121, 78, 158, 0.86);
}
/* ----------------------------------------------------------------------------------- */
.page3 .about{
	
}
.page3 .about > div{
	padding-top: 30px;
	padding-bottom: 30px;

	background-color: white;
    border-bottom: 1px solid #eee;
}
.page3 .about-mine{
	display: flex;
}
.page3 .about-mine > div{
	width: 50%;
}
.page3 .about-mine > div:first-child{
	padding-right: 10px;
}
.page3 .about-mine > div:last-child{
	padding-left: 10px;
}
.page3 .about .image{
	width: 100%; 
	background-size: cover;
	background-position: center;
	text-align: center;
}
.page3 .about .image img{
	max-width: 100%;
	max-height: 100%;
	min-height: 200px;
	border: 1px solid var(--obvodka-color);
	margin-left: auto;
	margin-right: auto;
}
.page3 .about .button{
	width: 100%;
	max-width: 450px;
	height: 40px;
	border: 1px solid var(--main-bg-color);
	color: var(--main-bg-color);
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
	text-align: center;
	background-color: white;  

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

	cursor: pointer;
	transition: .3s ease all;
}
.page3 .about .button i{
	font-size: 18px;
	margin-right: 5px;
	margin-top: 2px;
}
.page3 .about .button:hover{
	background-color: var(--main-bg-color);
	color: white;
}

.page3 .about .button.additional{ 
	border: 1px solid var(--obvodka-color);
	color: black;
}
.page3 .about .button.additional:hover{
	background-color: rgba(0,0,0,0.05);
	color: black;
}

.page3 .about .zag{
	font-size: 22px;
}
/* --------------------------------- */
.page3 .about-mine > div:last-child{
	display: flex;
	flex-direction: column;
}
.opis{
	flex-grow: 1;
	position: relative;
	margin-top: 5px;
}
.opis > div{
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: auto;
}
.haracteristici .item{
	display: flex;
	text-align: left;
}
.haracteristici .item > div:first-child{
	width: 140px;
}
.haracteristici .item > div:last-child{
	flex-grow: 1;
}
/* ----------------------------------------------------------------------------------- */ 
.player-block > div{
	background-color: white;
	padding-top: 20px;
	padding-bottom: 20px;
	display: flex;
	align-items: center;
}
.player-block .name{
	font-size: 22px;
}
.player-block > div > div:first-child{
	flex-grow: 1;
	box-sizing: border-box;
	padding-right: 10px;
	flex-shrink: 1;
}
.player-block > div > div:last-child{
	width: 240px;
	box-sizing: border-box;
	padding-left: 10px;
	text-align: center;
	flex-shrink: 0;
}
/* --------------------------------- */
.player-info{
	display: flex;
}
.player-info > div:first-child{
	flex-grow: 1;
}
.player-info > div:last-child{

}
/* --------------------------------- */
.page4 .subscribe-button{
	min-width: 220px;
}
/* --------------------------------- */
.player-block video{
	max-width: 100%;
}
/* --------------------------------- */
.opis-block > div{
	background-color: #fbfbfb;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    display: flex;
    padding-top: 20px;
    padding-bottom: 20px;
}
.opis-block > div > div:first-child{
	width: 500px;
	box-sizing: border-box;
	padding-right: 50px;
}
.opis-block > div > div:last-child{
	flex-grow: 1;
}
/* --------------------------------- */
.opis-block .zag{
	font-size: 18px;
}
.opis-block .opis{
	font-size: 14px;
	margin-top: 10px;
}
/* --------------------------------- */
.page4 .opis-block .tableWrapper{
	max-width: 400px;
	margin-left: auto;
	margin-right: auto;
}
.page4 .opis-block table{
	width: 100%; 
}
.page4 .opis-block table tr{
	border-bottom: 1px solid var(--obvodka-color)
}
.page4 .opis-block table td{
	
}
.page4 .tableWrapper .zag{
	margin-bottom: 10px;
}
.page4 .opis-block table a{
	padding: 5px;
	display: inline-block;
}
.page4 .opis-block table a:hover{
	color: var(--main-bg-color)
}
.page4 .tableWrapper .allDownload{
	width: 100%;
	padding: 5px;
	box-sizing: border-box;
	text-align: center;
	border: 1px solid var(--main-bg-color);
	display: block;
	margin-top: 20px;
	cursor: pointer;
	transition: .2s background-color ease, .2s color ease;
	background-color: transparent;
	color: black;
}
.page4 .tableWrapper .allDownload:hover{
	background-color: var(--main-bg-color);
	color: white;
}
/* --------------------------------- */
.comments-block > div{
	background-color: white;
	padding-top: 15px;
	padding-bottom: 15px; 
}
.comments-block .zag{
	font-size: 18px;
}
.comments{
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 15px;
}
/* --------------------------------- */
.audio-block > div{
	background-color: white;
	padding-top: 15px;
	padding-bottom: 15px; 
 
	background-color: #fbfbfb; 
    border-bottom: 1px solid #eee;
}
.audio-block .zag{
	font-size: 18px;
} 
.audio-block .music{
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 15px;
}
.audio-block .item{
	display: flex;
	align-items: center;
}
.audio-block .item:hover .name{
	text-decoration: underline;
}
.audio-block .item .icon{
	padding-left: 5px;
	padding-right: 5px;
	font-size: 24px;
	color: var(--main-bg-color);
	cursor: pointer;
}
.audio-block .item .name{
	padding-left: 10px;
	padding-right: 10px;
	flex-grow: 1;
}
.audio-block .item .download{
	font-size: 20px;
}
/* --------------------------------- */ 
.audio-block .progress{
	width: 100%;
	height: 5px;
	visibility: hidden;
	position: relative;
	background-color: var(--obvodka-color);
	cursor: pointer; 
}
.audio-block .item.active .progress{
	visibility: visible;
}
.audio-block .progress div{
	background-color: var(--main-bg-color);
	transition: .2s ease width;
	width: 0%;
}
/* --------------------------------- */ 
.season-info .share{
	padding-top: 10px;
    padding-bottom: 10px;
}
.ya-share2__container_size_m .ya-share2__icon {
    height: 30px !important;
    width: 30px !important;
}
/* ----------------------------------------------------------------------------------- */
.nav{
	font-size: 14px;
}
.nav > div{
	padding-top: 10px;
	padding-bottom: 10px;
	background-color: #faf5ff;
	border-top: none;
    border-bottom: none;
}
.nav a{

}
.nav a:hover {
    text-decoration: none;
    color: var(--main-bg-color);
}
/* --------------------------------- */ 
.name-desc{
	display: flex;
	align-items: baseline; 
}
.name-desc .desc{
	margin-left: 10px;
}
.project-info .views{
	font-size: 12px;
}
/* ----------------------------------------------------------------------------------- */
.plyr canvas{
	margin-top: -40px;
	transition: .4s ease margin-top;
}
.plyr--hide-controls canvas{
	margin-top: 0px;
}
/* ----------------------------------------------------------------------------------- */
.plyr--video .plyr__control.plyr__tab-focus, .plyr--video .plyr__control:hover, .plyr--video .plyr__control[aria-expanded=true]{
	background: #6e3a9c !important
} 
.plyr__control.plyr__tab-focus {
    box-shadow: 0 0 0 5px rgba(98, 0, 255, 0.5); 
}
.plyr--full-ui input[type=range]{
	color: #8e4ec7;
}
.plyr__control--overlaid {
    background: rgb(142, 78, 199);
}
.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::before{
	background: #8e4ec7;
}
/* ----------------------------------------------------------------------------------- */
.season-info > div > div{
	margin-bottom: 10px;
}
.season-block > div{
	padding-bottom: 0px;
}
/* ----------------------------------------------------------------------------------- */ 
.page2 .block2 .items > * .img{
	width: 297px;
	height: 456px;
}
/* ----------------------------------------------------------------------------------- */
/**
 * Simple fade transition,
 */
.mfp-fade.mfp-bg {
	opacity: 0;
	-webkit-transition: all 0.15s ease-out; 
	-moz-transition: all 0.15s ease-out; 
	transition: all 0.15s ease-out;
}
.mfp-fade.mfp-bg.mfp-ready {
	opacity: 0.8;
}
.mfp-fade.mfp-bg.mfp-removing {
	opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
	opacity: 0;
	-webkit-transition: all 0.15s ease-out; 
	-moz-transition: all 0.15s ease-out; 
	transition: all 0.15s ease-out;
}
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
	opacity: 1;
}
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
	opacity: 0;
}
/* ----------------------------------------------------------------------------------- */
.page4 .tableWrapper .allDownload{
	display: flex;
	align-items: center;
	justify-content: center;
}
.page4 .tableWrapper .allDownload img {
	margin-left: 5px;
}
/* ----------------------------------------------------------------------------------- */
.blockStatic > div{
	padding-top: 20px;
	padding-bottom: 20px;
	background: white;
}
.blockStatic > div img{
	display: block;
	margin-left: auto;
	margin-right: auto;
}

:root {
    --ck-highlight-marker-blue: #72cdfd;
    --ck-highlight-marker-green: #63f963;
    --ck-highlight-marker-pink: #fc7999;
    --ck-highlight-marker-yellow: #fdfd77;
    --ck-highlight-pen-green: #118800;
    --ck-highlight-pen-red: #e91313;
    --ck-image-style-spacing: 1.5em;
    --ck-todo-list-checkmark-size: 16px;
}

/* ckeditor5-image/theme/imageresize.css */
.ck-content .image.image_resized {
    max-width: 100%;
    display: block;
    box-sizing: border-box;
}
/* ckeditor5-image/theme/imageresize.css */
.ck-content .image.image_resized img {
    width: 100%;
}
/* ckeditor5-image/theme/imageresize.css */
.ck-content .image.image_resized > figcaption {
    display: block;
}
/* ckeditor5-basic-styles/theme/code.css */
.ck-content code {
    background-color: hsla(0, 0%, 78%, 0.3);
    padding: .15em;
    border-radius: 2px;
}
/* ckeditor5-image/theme/image.css */
.ck-content .image {
    display: table;
    clear: both;
    text-align: center;
    margin: 1em auto;
}
/* ckeditor5-image/theme/image.css */
.ck-content .image > img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    min-width: 50px;
}
/* ckeditor5-image/theme/imagestyle.css */
.ck-content .image-style-side,
.ck-content .image-style-align-left,
.ck-content .image-style-align-center,
.ck-content .image-style-align-right {
    max-width: 50%;
}
/* ckeditor5-image/theme/imagestyle.css */
.ck-content .image-style-side {
    float: right;
    margin-left: var(--ck-image-style-spacing);
}
/* ckeditor5-image/theme/imagestyle.css */
.ck-content .image-style-align-left {
    float: left;
    margin-right: var(--ck-image-style-spacing);
}
/* ckeditor5-image/theme/imagestyle.css */
.ck-content .image-style-align-center {
    margin-left: auto;
    margin-right: auto;
}
/* ckeditor5-image/theme/imagestyle.css */
.ck-content .image-style-align-right {
    float: right;
    margin-left: var(--ck-image-style-spacing);
}
/* ckeditor5-page-break/theme/pagebreak.css */
.ck-content .page-break {
    position: relative;
    clear: both;
    padding: 5px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* ckeditor5-page-break/theme/pagebreak.css */
.ck-content .page-break::after {
    content: '';
    position: absolute;
    border-bottom: 2px dashed hsl(0, 0%, 77%);
    width: 100%;
}
/* ckeditor5-page-break/theme/pagebreak.css */
.ck-content .page-break__label {
    position: relative;
    z-index: 1;
    padding: .3em .6em;
    display: block;
    text-transform: uppercase;
    border: 1px solid hsl(0, 0%, 77%);
    border-radius: 2px;
    font-family: Helvetica, Arial, Tahoma, Verdana, Sans-Serif;
    font-size: 0.75em;
    font-weight: bold;
    color: hsl(0, 0%, 20%);
    background: #fff;
    box-shadow: 2px 2px 1px hsla(0, 0%, 0%, 0.15);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
/* ckeditor5-block-quote/theme/blockquote.css */
.ck-content blockquote {
    overflow: hidden;
    padding-right: 1.5em;
    padding-left: 1.5em;
    margin-left: 0;
    margin-right: 0;
    font-style: italic;
    border-left: solid 5px hsl(0, 0%, 80%);
}
/* ckeditor5-block-quote/theme/blockquote.css */
.ck-content[dir="rtl"] blockquote {
    border-left: 0;
    border-right: solid 5px hsl(0, 0%, 80%);
}
/* ckeditor5-media-embed/theme/mediaembed.css */
.ck-content .media {
    clear: both;
    margin: 1em 0;
    display: block;
    min-width: 15em;
}
/* ckeditor5-table/theme/table.css */
.ck-content .table {
    margin: 1em auto;
    display: table;
}
/* ckeditor5-table/theme/table.css */
.ck-content .table table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    height: 100%;
    border: 1px double hsl(0, 0%, 70%);
}
/* ckeditor5-table/theme/table.css */
.ck-content .table table td,
.ck-content .table table th {
    min-width: 2em;
    padding: .4em;
    border-color: hsl(0, 0%, 75%);
}
/* ckeditor5-table/theme/table.css */
.ck-content .table table th {
    font-weight: bold;
    background: hsla(0, 0%, 0%, 5%);
}
/* ckeditor5-list/theme/todolist.css */
.ck-content .todo-list {
    list-style: none;
}
/* ckeditor5-list/theme/todolist.css */
.ck-content .todo-list li {
    margin-bottom: 5px;
}
/* ckeditor5-list/theme/todolist.css */
.ck-content .todo-list li .todo-list {
    margin-top: 5px;
}
/* ckeditor5-list/theme/todolist.css */
.ck-content .todo-list .todo-list__label > input {
    -webkit-appearance: none;
    display: inline-block;
    position: relative;
    width: var(--ck-todo-list-checkmark-size);
    height: var(--ck-todo-list-checkmark-size);
    vertical-align: middle;
    border: 0;
    left: -25px;
    margin-right: -15px;
    right: 0;
    margin-left: 0;
}
/* ckeditor5-list/theme/todolist.css */
.ck-content .todo-list .todo-list__label > input::before {
    display: block;
    position: absolute;
    box-sizing: border-box;
    content: '';
    width: 100%;
    height: 100%;
    border: 1px solid hsl(0, 0%, 20%);
    border-radius: 2px;
    transition: 250ms ease-in-out box-shadow, 250ms ease-in-out background, 250ms ease-in-out border;
}
/* ckeditor5-list/theme/todolist.css */
.ck-content .todo-list .todo-list__label > input::after {
    display: block;
    position: absolute;
    box-sizing: content-box;
    pointer-events: none;
    content: '';
    left: calc( var(--ck-todo-list-checkmark-size) / 3 );
    top: calc( var(--ck-todo-list-checkmark-size) / 5.3 );
    width: calc( var(--ck-todo-list-checkmark-size) / 5.3 );
    height: calc( var(--ck-todo-list-checkmark-size) / 2.6 );
    border-style: solid;
    border-color: transparent;
    border-width: 0 calc( var(--ck-todo-list-checkmark-size) / 8 ) calc( var(--ck-todo-list-checkmark-size) / 8 ) 0;
    transform: rotate(45deg);
}
/* ckeditor5-list/theme/todolist.css */
.ck-content .todo-list .todo-list__label > input[checked]::before {
    background: hsl(126, 64%, 41%);
    border-color: hsl(126, 64%, 41%);
}
/* ckeditor5-list/theme/todolist.css */
.ck-content .todo-list .todo-list__label > input[checked]::after {
    border-color: hsl(0, 0%, 100%);
}
/* ckeditor5-list/theme/todolist.css */
.ck-content .todo-list .todo-list__label .todo-list__label__description {
    vertical-align: middle;
}
/* ckeditor5-image/theme/imagecaption.css */
.ck-content .image > figcaption {
    display: table-caption;
    caption-side: bottom;
    word-break: break-word;
    color: hsl(0, 0%, 20%);
    background-color: hsl(0, 0%, 97%);
    padding: .6em;
    font-size: .75em;
    outline-offset: -1px;
}
/* ckeditor5-highlight/theme/highlight.css */
.ck-content .marker-yellow {
    background-color: var(--ck-highlight-marker-yellow);
}
/* ckeditor5-highlight/theme/highlight.css */
.ck-content .marker-green {
    background-color: var(--ck-highlight-marker-green);
}
/* ckeditor5-highlight/theme/highlight.css */
.ck-content .marker-pink {
    background-color: var(--ck-highlight-marker-pink);
}
/* ckeditor5-highlight/theme/highlight.css */
.ck-content .marker-blue {
    background-color: var(--ck-highlight-marker-blue);
}
/* ckeditor5-highlight/theme/highlight.css */
.ck-content .pen-red {
    color: var(--ck-highlight-pen-red);
    background-color: transparent;
}
/* ckeditor5-highlight/theme/highlight.css */
.ck-content .pen-green {
    color: var(--ck-highlight-pen-green);
    background-color: transparent;
}
/* ckeditor5-horizontal-line/theme/horizontalline.css */
.ck-content hr {
    border-width: 1px 0 0;
    border-style: solid;
    border-color: hsl(0, 0%, 37%);
    margin: 0;
}
/* ckeditor5-code-block/theme/codeblock.css */
.ck-content pre {
    padding: 1em;
    color: #353535;
    background: hsla(0, 0%, 78%, 0.3);
    border: 1px solid hsl(0, 0%, 77%);
    border-radius: 2px;
    text-align: left;
    direction: ltr;
    tab-size: 4;
    white-space: pre-wrap;
    font-style: normal;
    min-width: 200px;
}
/* ckeditor5-code-block/theme/codeblock.css */
.ck-content pre code {
    background: unset;
    padding: 0;
    border-radius: 0;
}
@media print {
    /* ckeditor5-page-break/theme/pagebreak.css */
    .ck-content .page-break {
        padding: 0;
    }
    /* ckeditor5-page-break/theme/pagebreak.css */
    .ck-content .page-break::after {
        display: none;
    }
}
/* ----------------------------------------------------------------------------------- */
.blockStaticPicker > div{
    padding: 15px;
    background-color: #fbfbfb;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.blockStaticPicker a:hover{
	text-decoration: underline;
}
/* ----------------------------------------------------------------------------------- */
.blockNews > div{
	padding-top: 20px;
	padding-bottom: 20px;
	background: white;
	padding-left: 0px;
	padding-right: 0px;
}
.blockNews .zag{
	font-size: 24px;
	display: block;
	background-color: #8e4ec7;
	margin-left: -1px;
	width: calc(100% + 2px);
	color: white;
	padding: 10px 20px;
}
.blockNews .preview, .blockStatic .preview{
	text-align: center;
	padding-top: 10px;
	padding-bottom: 10px;
}
.blockNews .preview img, .blockStatic .preview img{
	max-height: 650px;
	max-width: 100%;
	width: auto;
	height: auto;
}
.blockNews .text{
	padding: 20px;
	padding-top: 10px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width: 1200px;
	box-sizing: border-box;
}
.blockNews .buttons{
	display: flex; 
	align-items: center;
	margin-top: 10px;
}
.blockNews .buttons a{
	display: block;
	padding: 8px;
	background-color: #8e4ec7;
	color: white;
	min-width: 120px;
	text-align: center;
	margin-top: 0px;
}
.blockNews .buttons a:hover{
	background-color: #8046b3;
}
.blockNews .status{
	flex-grow: 1;
}
.blockNews .pages{
	display: flex;
	align-items: center;
	padding-left: 20px;
	padding-right: 20px;
}
.blockNews .pages a{
	display: block;
	margin-left: 5px;
	margin-right: 5px;
	width: 25px;
	text-align: center;
	height: 25px;
	display: flex;
	align-items: center;
	justify-content: center;

	background-color: #fbfbfb;
    border: 1px solid #eee;
} 
.blockNews .pages a.current{
	background-color: #8e4ec7;
	color: white;
}
/* ----------------------------------------------------------------------------------- */
.blockStatic .status{
	font-size: 12px;
	margin-top: 10px;
	display: flex;
	align-items: center;
}
.blockStatic .status .date{
	flex-grow: 1;
}
/* ----------------------------------------------------------------------------------- */
.removeNone{
	display: none !important;
}
/* ----------------------------------------------------------------------------------- */
body{
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}
.bodyOsnBlock{
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}
.bodyOsnBlock > div{
	background: white;
	flex-grow: 1;
}
/* ----------------------------------------------------------------------------------- */
@media screen and (max-width: 900px) {
	.block > *{
		width: 100vw;
		padding-left: 10px;
		padding-right: 10px;
		box-sizing: border-box;
		border-left: none !important;
		border-right: none !important;
		min-width: 300px;
	}

	.block2 .items{
		justify-content: center;
	}
	.block2 .items > a{
		margin: 5px;
	}
	.block2 .items > * .opis{
		margin-top: 5px;
	}
	.project-picker .nameFilter{
		width: 100%;
	}
	.project-picker .zhanrFilter{
		width: 100%;
	}
	.project-picker .yearFilter{
		width: 100%;
	}

	.page3 .about-mine{
		flex-direction: column;
	}
	.page3 .about-mine > div{
		width: 100%;
	}
	.page3 .about-mine > div:first-child{
		padding-right: 0px;
	}
	.page3 .block2 .items{
		justify-content: center;
	}

	.player-block > div{
		flex-direction: column;
	}
	.opis-block > div > div:first-child{
		width: 100%;
		padding-right: 0px;
	}
	.opis-block > div{
		flex-direction: column;
	}

	.block1 > div{
		padding-bottom: 30px;
	}
	
	header > div{
		height: 56px;
	}
	header nav .item{
		display: none;
	}

	.project-picker .filters > div{
		margin-bottom: 15px;
	}
	.project-picker .sortFilter{
		padding-top: 0px;
	}
	.project-picker .clearButtonDiv{
		padding-top: 0px;
	}
	.project-picker .showButton{
		width: 100%; 
		max-width: 400px;
	}
	.project-picker .filters > div{
		width: 100%;
		text-align: center;
	}
	.project-picker .filters > div.halfOnMobile{
		width: 50%;
		text-align: center;
	}
	header .bell .submenu{
		right: 0px;
		left: auto;
		margin-left: 0px;
	}
	.nav > div{
		font-size: 12px;
	    line-height: 18px;
	    overflow: auto;
	    width: 100vw;
	    white-space: nowrap;
	}
	.project-info .name{
		font-size: 19px;
	}
	.project-info .icons{
		width: 100%;
		display: none;
	}
	.project-info .icons > *{
		flex-grow: 1;
		text-align: center;
	}
	.page3 .about .zag{
		margin-top: 15px;
	}
	.page3 .about .button{
		margin-top: 15px;
	}
	.season-picks{
		flex-wrap: wrap;
		width: calc(100vw - 20px);
		padding-bottom: 0px;
		padding-top: 0px; 
	  	display: flex;
	  	flex-flow: row wrap;
	  	justify-content: flex-start;
	}

	.season-picks:after {
	  	content: "";
	  	flex: auto;
	} 
	.season-pick{
		margin-top: 7.5px;
		margin-bottom: 7.5px;
		margin-right: 5px;
		margin-left: 5px; 
	}
	.season-pick:first-child{
		margin-left: 5px;
	}
	.season-info{
		flex-direction: column;
	}
	.season-info > div:first-child > div{
		padding-right: 0px;
	}
	.season-info > div:last-child{
		padding-top: 5px;
	}
	.season-info > div:last-child{
		justify-content: space-between;
		width: 100%;
		padding-left: 5px;
    	padding-right: 5px;
	}
	.page3 .block2 .items .variants > *:hover{
		background-color: rgba(0,0,0,0.6) !important; 
	}
	/* ------------------------------------------------------------------------------- */ 
}
/* ----------------------------------------------------------------------------------- */
.page3 .block2 .items > *:hover .img .hover.mobile{
	background-color: none !important;
	opacity: 0 !important;
}
/* ----------------------------------------------------------------------------------- */
@media screen and (max-width: 320px) {
	.page3 .block2 .items > * .img{
		width: 310px;
		height: 174.375px;
	}
	.page3 .block2 .items > *{
		max-width: 310px;
	}
	.page3 .block2 .items{
		grid-template-columns: repeat(auto-fill, 310px);
	}
}
@media screen and (max-width: 900px) {
	.page3 .block2 .items > * .img{
		width: 350px;
		height: 196.875px;
	}
	.page3 .block2 .items > *{
		max-width: 350px;
	}
	.page3 .block2 .items{
		grid-template-columns: repeat(auto-fill, 350px);
	}
}
/* ----------------------------------------------------------------------------------- */
.mobile .multipleSelect{
	height: 40px;
	position: relative;
}
.mobile .multipleSelect select{
	height: 40px;
	opacity: 0;
	position: absolute;
	left: 0px;
	width: 100%;
	height: 100%;
	top: 0px;
	box-sizing: border-box;
}
.multipleSelect .status{
	display: none;
}
.mobile .multipleSelect .status{
	padding: 11px 12px;
    outline: none;
    border-radius: 0px;
    background-color: white;
    box-shadow: none;
    border: 1px solid var(--obvodka-color);
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 4px 15px rgba(0,0,0,.12);
    height: 40px;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
}
.mobile .multipleSelect .status.disabled{
	color: #acacac;
}
/* ----------------------------------------------------------------------------------- */
header .burger{
	display: none;
}
@media screen and (min-width: 900px) {
	.drawerItem{
		display: none !important;
	}
}
@media screen and (max-width: 900px) {
	header .burger{
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 0px 10px;
		cursor: pointer;
		margin-right: 44px;
	}
	header .burger i {
	    font-size: 24px;
	    position: relative;
	}
	header > div > .left{
		text-align: center;
		flex-grow: 1;
	} 
	header > div > .center{
		flex-grow: 0;
	}
	header .logo{
		justify-content: center;
		/* pointer-events: none; */
		font-size: 20px;
	}
	header .burger, header .bell{
		width: 44px;
		box-sizing: border-box;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	footer .logo{
		font-size: 16px;
		margin-bottom: 10px;
	}
	header .burger:hover {
    	background-color: transparent !important;
	} 
	/* ------------------------------------------------ */
	.block2 > div{
		padding-top: 10px;
		padding-bottom: 10px;
	}
	.block2 .items > * .name{
		padding-top: 5px;
	}
	.block2 .items > * .opis{
		margin-top: 0px;
	}
	/* ------------------------------------------------ */
	.blockNews .zag{
		width: 100%;
		margin-left: 0px;
	}
	.blockNews .preview{
		padding-top: 0px;
	}
	.blockNews .text{
		padding: 10px;
		padding-top: 5px;
	}
	.blockNews .zag{
		padding: 10px;
	}
	.blockNews .pages{
		padding-left: 10px;
	}
	/* ------------------------------------------------ */
	.blockStatic .status{
		font-size: 14px;
	}
	.blockStatic > div{
		padding-top: 10px;
	}
	.blockStatic .preview{
		padding-top: 0px;
	}
	.blockStatic .preview img{
		width: 100vw;
		max-width: 100vw;
		margin-left: -10px;
	}
	/* ------------------------------------------------ */
	.project-picker .showButton, .project-picker .clearButton{
		padding-top: 7px;
		padding-bottom: 7px;
	}
	.filterButton{
		height: 35px;
	}
	/* ------------------------------------------------ */
	.mobile .multipleSelect .status{
		display: flex;
		align-items: center;
		justify-content: flex-start;
	}
	/* ------------------------------------------------ */
	.page2 .block2 .items > a{
		margin-left: auto;
		margin-right: auto;
		width: 300px;
	}
	.page2 .block2 .items > a{
		margin-bottom: 20px;
	}
	/* ------------------------------------------------ */
	.page3 .about-mine > div:last-child{
		padding-left: 0px;
	}
	.page3 .about > div{
		padding-top: 15px;
	}
	.about .opis{
		margin-top: 10px;
		line-height: 22px;
		font-size: 14px;
	}
	/* ------------------------------------------------ */ 
	.page3 .about .image img{
		max-width: 100vw;
		margin-left: -10px;
	}
	.page3 .about > div{
		padding-bottom: 0px;
	}
	/* ------------------------------------------------ */
}
@media screen and (max-width: 450px) { 
	/* ------------------------------------------------ */
	.block2 .items{
		display: flex;
		flex-direction: column;
	}
	.block2 .items > * .img{
		width: calc(100vw - 20px);
		height: calc((100vw - 20px) * 0.6734);
	}
	.block2 .items > a{
		margin-bottom: 10px;
		margin-top: 10px;
		margin-left: 0px;
		margin-right: 0px;
	}
	.block2 .zag{
		margin-bottom: 10px;
	}
	/* ------------------------------------------------ */
	.block1 .item{
		margin-left: 10px;
		margin-right: 10px;
	}
	.block1 > div{
		padding-left: 0px;
		padding-right: 0px;
	}
	/* ------------------------------------------------ */
	.block1 .item{
		height: calc((100vw - 20px) * 0.6734);
	}
	.block1 .left-bottom{
		padding: 15px;
	}
	.block1 .right-bottom{
		bottom: 70px;
	}
	.block1 .zag{
		font-size: 24px;
	}
	/* ------------------------------------------------ */
	.page3 .block2 .items{
		display: flex; 
		flex-direction: column;
	}
	.page3 .block2 .items > * .img{
		width: calc(100vw - 20px);
		height: calc((100vw - 20px) * 0.562);
	}
	.page3 .block2 .items > *{
		max-width: calc(100vw - 20px);
	}
	.page3 .block2 .items > *{
		margin-bottom: 5px;
	}
	/* ------------------------------------------------ */
}
/* ----------------------------------------------------------------------------------- */
.drawerBackground{
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	background-color: rgba(0,0,0,0.5);
	transition: .2s ease opacity;
	visibility: hidden;
	opacity: 0;

	z-index: 998;

	touch-action: pan-y;
    -webkit-user-drag: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);

    will-change: visibility, opacity;
}
.drawerBackground.active{
	visibility: visible;
	opacity: 1;
}
/* ----------------------------------------------------------------------------------- */
/*
.drawer{
    visibility: hidden;

	position: fixed;
	left: 0px;
	top: 0px;
	width: 300px;
	background-color: white;
	padding-bottom: 60px;
	box-sizing: border-box;
	height: 100%;
	will-change: transform;

	-webkit-transform: translateX(-105%);
    transform: translateX(-105%);

    z-index: 999;

    -webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);

    overflow-y: auto;

    transition: .2s ease-out transform;
}
.drawer.inited{
	visibility: visible;
}
.drawer.active{
	-webkit-transform: translateX(0);
    transform: translateX(0);
	visibility: visible;
}*/
.drawer{
	-webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
    background-color: white;
}
.tss-label{
	display: none !important;
}
.drawer .header{
	height: 120px;
	width: 100%;
	background-image: url(../images_old/homepage-background-day.jpg);
	background-size: cover;
	background-position: center center;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.drawer .header img{
	pointer-events: none;
	height: 70px;
}
.drawer .header .logoText{
	color: white;
	font-weight: 400;
	font-size: 18px;
}
.drawer .menu{
	display: flex;
	flex-direction: column;
	padding-top: 12px;
}
.drawer .menu a{
	color: rgba(0,0,0,0.87);
    display: block;
    font-size: 14px;
    font-weight: 500;
    height: 48px;
    line-height: 48px;
    padding: 0 32px;
}
.drawer .menu a:hover {
    background-color: rgba(0,0,0,0.05);
}
.drawer .copy{
	color: gray;
	width: 100%;
	text-align: center;
	left: 0px;
	bottom: 15px;
	font-size: 12px;
	position: absolute;
}
body.activeSlider{
	overflow: hidden;
}
/* ----------------------------------------------------------------------------------- */
@media screen and (max-width: 900px) {
	.season-picks:after{
		content: none;
	}
	.page4 .season-picks{
		width: 100%;
	}
	.player-block > div > div:first-child{
		padding-right: 0px;
	}
	.player-block > div{
		padding-left: 0px;
		padding-right: 0px;
	}

	.player-block > div > div:last-child{
		width: 100%;
		margin-top: 15px;
		padding-left: 10px;
		padding-right: 10px;
	}
	.project-info .wrapper{
		display: none;
	}
	.project-info .info{
		flex-grow: 1;
	}
	.opis-block .opis{
		line-height: 22px;
	} 
	.opis-block .mobileTableWrapper{
		margin-left: -10px;
		width: 100vw;
		padding-left: 10px;
		padding-right: 10px;
		overflow: auto;
	}
	.page4 .opis-block .tableWrapper{
		max-width: 100vw;
	}

	.mobileMenu{
		position: absolute;
		right: 0px;
		top: 0px;
		color: white;
		transform: translateY(0px);
		transition: .3s ease transform;
		background: rgba(0,0,0,0.2);
    	border-bottom-left-radius: 10px;
		padding-right: 5px;
	    padding-top: 5px;
	    padding-left: 5px;
	    padding-bottom: 5px;
	    z-index: 4;
	}
	.plyr__menu__container{
		bottom: auto;
		top: 5px;
    	right: 45px;
		z-index: 3;

		max-height: calc(100% - 45px);
    	overflow: auto;
	}
	.plyr__menu__container::after{
		top: 10px;
	    border: 4px solid transparent;
	    border-left-color: rgba(255,255,255,.9);
	    margin-top: 0px;
	    right: -8px;
	    content: none;
	}  
	.plyr--menu-open .mobileMenu:after{
		border: 4px solid transparent;
	    border-left-color: rgba(255,255,255,.9);
		content: "";
		position: absolute;
		left: -3px;
		top: 10px;
		animation: plyr-popup .2s ease;
	}
	.plyr--hide-controls .mobileMenu{
		transform: translateY(-50px);
	}
	/*
	.plyr__control--overlaid{
		z-index: 0;
	}
	*/

	.project-info .left i, .project-info .right i{
	    border-radius: 5px;
		transition: .3s ease all;
	}
	.project-info .left:hover i, .project-info .right:hover i{
		background: #8e4ec7;
	    color: white;
	}
}
/* ----------------------------------------------------------------------------------- */
@media screen and (max-width: 900px) {
	.plyr--video .plyr__control.plyr__tab-focus, .plyr--video .plyr__control:hover, .plyr--video .plyr__control[aria-expanded=true]{
		background: transparent !important;
	}
	.plyr--video .plyr__control:active, .plyr--video .plyr__control[aria-expanded=true]{
		background: #6e3a9c !important;
	}
	.plyr__control.plyr__tab-focus{
		box-shadow: none !important;
	}

	.opis-block > div > div:last-child{
		margin-top: 20px;
	}
} 
.mobileTableWrapper td:first-child{
	width: 130px;
    max-width: 130px;
    min-width: 130px;
}
/* ----------------------------------------------------------------------------------- */
.video .leftWrapper{
	position: absolute;
    left: 0px;
    width: 40%;
    top: 0px;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: white;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background-color: rgba(0,0,0,0.3);
    opacity: 0;
    transition: .5s ease opacity;

    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
} 
.video .leftWrapper.active{
	opacity: 1;
    transition: 0s ease opacity;
}
.video .rightWrapper{
	position: absolute;
    right: 0px;
    width: 40%;
    top: 0px;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: white;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background-color: rgba(0,0,0,0.3);
    opacity: 0;
    transition: .5s ease opacity;


    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
}
.video .rightWrapper.active{
	opacity: 1;
	transition: 0s ease opacity;
}

.video .leftWrapper .text, .video .rightWrapper .text{
	font-size: 14px;
} 
/* ----------------------------------------------------------------------------------- */
.recolor{
	position: fixed;
	left: 50px;
	bottom: 20px;
	border-radius: 50%;
	background-color: white;
	box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
	width: 56px;
	height: 56px;
	color: var(--main-bg-color);
	font-size: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;

	transition: .5s ease background-color;
}
.recolor:hover{
	background-color: #f1f1f1;
}
/* ----------------------------------------------------------------------------------- */
.shadowMain{
	display: flex;
	flex-direction: column;
	min-height: 100%;
	flex-grow: 1; 
}
.osnPart{
	display: flex;
	flex-direction: column;
	min-height: 100%;
	flex-grow: 1; 
}
/* ----------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------- */
.comics-page .block2 .items > * .img{
	width: 300px;
	height: 456px;
}
.comics-page .block2 .items > * .img .number{
	transition: .5s ease opacity;
}
.comics-page .block2 .items > *:hover .img .number{
	opacity: 0;
}
.comics-page .block2 .items{ 
  	grid-template-columns: repeat(auto-fill, 300px);
} 
.comics-page .block2 .items > *{
	max-width: 300px;
}
/* ----------------------------------------------------------------------------------- */
.block2 .items > * .img .hover.stripText{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding: 0px !important;
	text-align: center;
}
.page3 .block2 .items > *:hover .img .hover.stripText{
	background-color: rgba(0, 0, 0, 0.65);
}
.stripText .sinopsis, .stripText .name, .stripText .tags{
	padding: 0px 10px !important;
}
.stripText .sinopsis{
	font-size: 12px;
	font-style: italic;
}
.stripText .name{
	margin-bottom: 10px;
	padding-top: 10px !important;
}
.stripText .tags{
	margin-top: 10px;
}
.stripText .zapoln{
	flex-grow: 1;
}
.stripText .view{
	display: flex; 
	width: 100%;
}
.stripText .view > a{
	text-align: center;
	flex-grow: 1;
	flex-basis: auto; 
	padding: 10px;
	box-sizing: border-box;

	display: flex;
	flex-direction: column;
}
.stripText .view > a:hover{
	background-color: rgba(0, 0, 0, 0.5);
}
.stripText i{

}
.stripText .download{
	margin-top: 10px;
	display: flex;
	flex-direction: column;
}
.stripText .download div:hover{
	text-decoration: underline;
}
.stripText .download i{
	font-size: 16px !important;
	vertical-align: middle !important;
}
/* ----------------------------------------------------------------------------------- */
.downloadStatus{
	background-color: #352fbd;
	position: relative;
    pointer-events: auto;
    overflow: hidden;
    margin: 0 0 6px;
    padding: 15px 15px 15px 45px;
    width: 260px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background-position: 15px center;
    background-repeat: no-repeat;
    -moz-box-shadow: 0 0 12px #999;
    -webkit-box-shadow: 0 0 12px #999;
    box-shadow: 0 0 12px #999;
    color: #FFF;
    opacity: .8;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    filter: alpha(opacity=80);
    box-sizing: border-box;

    position: fixed;
    left: 20px;
    top: 20px;

    text-align: left;

    display: none;

    z-index: 99999999;

    outline: none;
    border: none;
}
.downloadStatus.active{
	display: flex;
}
.downloadStatus i{
	color: white;
    position: absolute;
    left: 12px;
    top: 8px;
    font-size: 24px;
}
/* ----------------------------------------------------------------------------------- */
.plyr__video-wrapper .poster{
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
/* ----------------------------------------------------------------------------------- */
.downloadButtonViewer:hover{
	background: black !important;
}
/* ----------------------------------------------------------------------------------- */
.skipBlock{
	position: absolute;
    right: 10px;
    bottom: 60px;
    z-index: 999;
    color: white;
    cursor: pointer;
	transition: .5s ease background; 

	padding: 10px 16px;
    border-radius: 4px;
    background-color: rgba(20,20,20,.8);
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    text-align: center;

    visibility: hidden;
}
.skipBlock.time1, .skipBlock.time2{
	visibility: visible;
}
.skipBlock:hover{
	background-color: rgba(20,20,20,.9);
}

@media screen and (max-width: 500px) {
	.skipBlock{
	    zoom: 0.9;
    	bottom: 50px;
	}
}
@media screen and (max-width: 900px) {
	.skipBlock{
	    zoom: 0.9;
    	bottom: 50px;
	}
}
/* ----------------------------------------------------------------------------------- */
@media screen and (max-width: 900px){
	.page3 .block2 .items{
		align-items: center;
	}
}
/* ----------------------------------------------------------------------------------- */
.comicsCatPicker{
	cursor: pointer;
	background: rgba(0,0,0,0);
	transition: .5s ease background;
}
.comicsCatPicker:hover{
	background: rgba(0,0,0,0.1);
}
.comicsCat{
	margin-top: 15px;
}
.comicsCat:first-child{
	margin-top: 0px;
}
/* ----------------------------------------------------------------------------------- */
@media screen and (min-width: 901px) {
	.downloadStatus{
		left: 65px !important;
	}
}
@media screen and (max-width: 1300px)  and (min-width: 901px) {
	/*
	.block > *{
		width: calc(100vw - 50px) !important;
	}
	.osnPart{
		width: calc(100vw - 50px) !important;
	}
	*/
}
@media screen and (max-width: 900px) {
	.osnPart{
		width: auto !important;
	}
}
@media screen and (max-width: 900px) {
	.recolor{
		display: none !important;
	}
}
.downloadButtonViewer{
	outline: none !important;
    border: none !important;
}
/* ----------------------------------------------------------------------------------- */
.season-pick.disabled{
	background: #efefef;
	cursor: default;
}
/* ----------------------------------------------------------------------------------- */
.ya-share2__container_size_m .ya-share2__icon{
	background-size: cover;
	background-position: center center;
}
/* ----------------------------------------------------------------------------------- */
/* v9 */
body{
	background-color: #fdfdfd;
	background-image: none;
	background-image: url(../imgs/pattern.png);
	background-repeat: repeat;
	background-size: auto;
	background-attachment: scroll;
	background-position: top left;
}
/*
header > div{
	background-color: transparent !important;
}*/
header{
	background: var(--main-bg-color) !important;
}
footer > div{
	background-color: transparent !important;
}
footer{
	background: var(--main-bg-color) !important;
}

.block > *{
	border-left: none;
	border-right: none;
} 

.osnPart{
	width: 1300px;
    margin-left: auto;
    margin-right: auto;
    /*
    box-shadow: 0 0 24px rgba(0,0,0,.2);
    */
    box-shadow: 0 0 20px rgb(142 78 199 / 20%);
}
/* ----------------------------------------------------------------------------------- */
header nav .item .submenu{
	right: 0px;
    left: auto;
}
header nav .item .submenu:after{
	right: 12px;
	left: auto;
}

header nav .item .submenu > a{
	text-align: right;
    padding: 7px 20px;
    box-sizing: border-box;
}
header nav .item .submenu{
	width: auto;
}
/* ----------------------------------------------------------------------------------- */
.darkThemeButton{
	width: 42px;
    height: 24px;
    border: 1px solid #dcdcdc;
    border-radius: 15px;
    background-color: #fff;
    position: relative;
    transition: .5s;
    margin: 7px 15px;
    display: inline-block;
    vertical-align: top;
    box-shadow: 0 0 3px rgba(0,0,0,.25);

    cursor: pointer;
}
.darkThemeButton i {
    width: 24px;
    height: 24px;
    border: 1px solid #dcdcdc;
    transition: .5s;
    font-size: 14px;
    position: absolute;
    left: -1px;
    top: -1px;
    border-radius: 50%;
    line-height: 24px;
    text-align: center;
    cursor: pointer;
    padding-left: 1px;

    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #7d4fa7;
}
.itemDarkButton{
	padding: 0px !important;
    display: flex;
    align-items: center;
}

.darkThemeButton.active {
    border: 1px solid #404040;
    background-color: #424242;
}
.darkThemeButton.active i {
    left: 43%;
    border: 1px solid #404040;
    background-color: #1a1a1a;
    color: white;
}
.darkHolderMobile{
	padding: 0 32px;
}
.darkHolderMobile .darkThemeButton{
	margin-left: 0px;
}
/* ----------------------------------------------------------------------------------- */
.block2.blockAdditional > div{
	background-color: #f9f9f9;
}
/* ----------------------------------------------------------------------------------- */
.block2.blockAdditional:nth-child(even) > div{
	background-color: white;
}
/* ----------------------------------------------------------------------------------- */
.box-row {
	height: 400px;
	width: 100% !important;
	border: 1px solid #8e4ec7;
}
.columns {
	position: relative;
	padding-left: .625rem;
	padding-right: .625rem;
	float: left;
}
.form-registration .form-group {
	margin-bottom: 12px;
}
.form-group .form-field {
	margin-bottom: 10px;
}
.form-group .form-field > input {
	margin: 0 auto;
	max-width: 302px;
	display: block;
}
.form-group .form-field.pass .link-forgot-pass {
	display: block;
	position: absolute;
	top: 12px;
	bottom: auto;
	right: 0;
	padding: 0 12px 0 0;
}
.form-footer {
	padding-top: 4px !important;
	margin: 0;
	text-align: center;
}
.form-footer .fields-footer .field-link {
	display: inline-block;
	vertical-align: middle;
}
.form-footer .fields-footer .field-link a span {
	position: relative;
	padding-bottom: 1px;
}
.form-footer .fields-footer .field-submit {
	display: inline-block;
	vertical-align: middle;
	width: 100%;
	max-width: 110px;
}
.form-footer .fields-footer .field-submit .btn {
	width: 100%;
	min-width: inherit;
}
.form-footer .fields-footer .field-link a span {
	position: relative;
	padding-bottom: 1px;
}
.fields-footer::after{
	height: 1px;
	margin-top: -1px;
	content: "";
	display: inline-block;
	width: 100%;
}
.form-group.form-footer .fields-footer {
	font-size: 0;
	text-align: justify;
}
.form-group.form-footer .fields-footer .field-link a {
	color: #8e4ec7;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2;
	text-decoration: none;
}
.box-row input[type="text"],.box-row input[type="password"],.box-row input[type="email"]{
	height: 43px;
	background-color: #fff;
	border: 1px solid #8e4ec7;
	padding: 0 15px;
	color: #000;
	font-size: 16px;
}
.form-registration .form-group.form-footer {
	padding-top: 4px !important;
	margin-bottom: 0;
}
.form-group.form-footer .fields-footer .field-link {
	display: inline-block;
	vertical-align: middle;
}
.form-registration .form-group.form-footer .field-submit {
	display: inline-block;
	vertical-align: middle;
	width: 100%;
	max-width: 161px;
	text-align: center;
}
.form-registration .form-group.form-footer .field-submit .btn {
	width: 100%;
	max-width: 298px;
	min-width: inherit;
}
.form-registration .form-group.form-footer .field-link .field-info {
	font-size: 13px;
	font-weight: 400;
	line-height: 1.2;
	color: #999898;
}
.btn.solid {
	background: #8e4ec7;
}
.btn .help {
	color: white;
	font-family: PT Sans,sans-serif;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.2;
	padding-bottom: 0;
}
.box-row .box-capabilities::before {
	content: "";
	display: block;
	position: absolute;
	left: -1px;
	top: -1px;
	bottom: -1px;
	right: 0;
	background: #fff;
	border: 1px solid #8e4ec7;
	box-shadow: 0 14px 29px rgba(176, 119, 230, 0.31);
}
.modal-body .box-row .box-forms {
	float: left !important;
	left: 50% !important;
	right: auto;
	padding: 54px 49px 0 41px;
}
.medium-6 {
	width: 50%;
}
.box-capabilities {
	height: 100%;
	position: relative;
	right: 50%;
	left: auto !important;
	float: right !important;
}
.row {
	width: 100%;
	margin: 0 auto;
	max-width: 72.5rem;
}
.block-capabilities {
	padding: 54px 26px 0;
	position: relative;
}
.block-capabilities .title {
	color: rgba(0,0,0,.9);
	font-size: 22px;
	font-weight: 400;
	line-height: 1.2;
	margin: 0 0 11px;
}
.form-group .title {
	color: rgba(0,0,0,.9);
	font-size: 22px;
	font-weight: 400;
	line-height: 1.2;
	margin: 0 0 11px;
}
.block-capabilities .links {
	padding-left: 12px;
}
ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
}
.block-capabilities .links li {
	display: block;
	margin: 0 0 23px;
}
.tab-content {
	display: inline-block;
	width: 100%;
}
.tab-content > .active {
	display: block;
	height: auto;
	visibility: visible;
	overflow: visible;
}

.modal-login .box-tabs {
	width: 100%;
}
.form-registration {
	padding: 6px 0 0;
	margin: 0 -13px 0 0;
}
.form-login{
	padding: 0 26px 0;
}
.modal-title {
	color: rgba(0,0,0,.9);
	font-size: 27px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	margin: 0 0 2px;
}
.sub-title {
	color: rgba(1,1,1,.6);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2;
	text-align: center;
	margin: 0 0 23px;
}
.modal-content {
	text-align: left;
	position: relative;
	background-color: #fefcff;
	padding: 41px 33px 68px;
}
.block-capabilities .links li p {
	color: rgba(0,0,0,.8);
	font-size: 16px;
	font-weight: 400;
	line-height: 22px;
}

.form-group .form-field.pass {
	position: relative;
}
.form-group .form-field {
	margin-bottom: 10px;
}
.form-group .form-field.pass .link-forgot-pass a {
	color: #8e4ec7;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.2;
	text-decoration: none;
}
.form-group .form-field.pass .link-forgot-pass a span {
	position: relative;
	padding-bottom: 1px;
}
.form-group .form-field.pass .link-forgot-pass a span::before {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background: rgba(122, 81, 255, 0.5);
	transition: all .2s ease 0s;
}
.box-tabs {
	width: 100%;
}
.modal.modal-login .modal-dialog .modal-content .modal-body {
	padding: 0;
}
/* ----------------------------------------------------------------------------------- */
form input[type="email"], form input[type="password"], form input[type="search"], form input[type="tel"], form input[type="text"], form input[type="url"], form textarea {
	border: 1px solid #4b4b4b;
	background: #fff;
	outline: 0;
	color: hsla(0,0%,92.5%,.7);
	font-family: PT Sans,sans-serif;
	font-size: 13px;
	font-weight: 400;
	text-align: left;
	width: 100%;
	transition: all .1s linear 0s;
	border-radius: 0;
	box-sizing: border-box;
	-webkit-appearance: none;
	background: transparent;
	background-color: transparent;
}
/* ----------------------------------------------------------------------------------- */
a[aria-expanded=true] .glyphicon.glyphicon-chevron-right .mdi-chevron-right::before {
  	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	-webkit-transition: -webkit-transform 350ms cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: -webkit-transform 350ms cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: transform 350ms cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: transform 350ms cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 350ms cubic-bezier(0.645, 0.045, 0.355, 1);
}
a .glyphicon.glyphicon-chevron-right .mdi-chevron-right::before {
	-webkit-transition: -webkit-transform 350ms cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: -webkit-transform 350ms cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: transform 350ms cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: transform 350ms cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 350ms cubic-bezier(0.645, 0.045, 0.355, 1);
}
/* ----------------------------------------------------------------------------------- */
.osnPart{
	height: auto !important;
	max-height: inherit !important;
}
#box{
	height: calc(100vh - 266px) !important;
	overflow: hidden !important;
}
/* ----------------------------------------------------------------------------------- */
.songs p{
	margin-bottom: 0px !important;
}
/* ----------------------------------------------------------------------------------- */
.adContainer{
	margin-top: 20px;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}
.adContainer:last-child{
	padding-bottom: 10px;
}
/* ----------------------------------------------------------------------------------- */
.adsBlockProject > div{
	background-color: white;
	padding-bottom: 20px;  
}
.adsBlockProject > div > div{
	margin-left: auto !important;
	margin-right: auto !important;
	max-width: 1200px !important;
}
.videoAdContainer{
	padding-left: 0px !important;
}
.videoAdContainer > div{
	margin-left: auto;
	margin-right: auto;
}
/* ----------------------------------------------------------------------------------- */ 
@media screen and (min-width: 900px){
	/*.player-block > div > div:last-child{
		width: 190px !important;
		
	}*/
	.player-block > div > div:last-child {
		zoom: 0.956;
	}

	/* .player-block > div > div:first-child{
		height: auto !important;
	}
	.player-block > div{
		align-items: stretch;
	} */

	/*.player-block video{
		height: 596.25px;
	}*/
}
/* ----------------------------------------------------------------------------------- */ 
.music {
	-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}
/* ----------------------------------------------------------------------------------- */ 
@media screen and (max-width: 900px) {
	#login .modal-body > .box-row{
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		height: auto;
	}
	#login .modal-body > .box-row > *{
		width: 100%;
    	position: static;
	}
	.box-row .box-capabilities::before{
		display: none;
	}
	.modal-body .box-row .box-forms{
		padding: 10px;
	}
	.form-login{
		padding-left: 0px;
		padding-right: 0px;
	}
	.modal-content{
		padding: 0px;
	}
	.block-capabilities{
		padding: 0px;
		padding-top: 10px;
	}
	.block-capabilities .links li p{
		margin-bottom: 5px;
	}
	/* ------------------------------------------------------------------------------- */ 
	.block-viewed table.viewed tbody tr td .btn{
		display: flex;
	    align-items: center;
	    justify-content: center;
	    white-space: nowrap;
	    width: 142px;
	    height: 33px;
	} 
	.block-viewed.with-remove-viewed-button table.viewed tbody tr td:first-child, .block-viewed.with-remove-viewed-button table.viewed thead tr th:first-child{
		width: 45% !important;
	}
	.block-viewed.with-remove-viewed-button table.viewed tbody tr td:nth-child(3), .block-viewed.with-remove-viewed-button table.viewed thead tr th:nth-child(3){
		width: 44% !important;
	}
	.block-viewed.with-remove-viewed-button table.viewed tbody tr td:nth-child(3), .block-viewed.with-remove-viewed-button table.viewed thead tr th:nth-child(3){
		padding-right: 22px !important;
	}
	/* ------------------------------------------------------------------------------- */ 
	.setting-cabinet .one-setting-block .caption-settings{
		margin-top: 20px;
	}
	/* ------------------------------------------------------------------------------- */ 
	.error-message2{
		margin-top: 10px !important;
	}
	.upload-photo-cabinet .text-photo .btn.solid, .upload-photo-cabinet .text-photo .btn.danger{
		background-color: black !important;
		color: white !important;
	}
	/* ------------------------------------------------------------------------------- */ 
}
/* ----------------------------------------------------------------------------------- */ 
.ck-content a{
	color: var(--main-bg-color) !important;
}
/* ----------------------------------------------------------------------------------- */
.fullTextPadding{
	padding-top: 20px !important;
} 
/* ----------------------------------------------------------------------------------- */ 
@media screen and (max-width: 900px) {
	.page3 .block2 .items .img.active .variants>*:hover {
	    background-color: rgba(121, 78, 158, 0.86) !important;
	}
}
/* ----------------------------------------------------------------------------------- */
.player-block{
	overflow: hidden;
}
.video{
    overflow: hidden;
}
/* ----------------------------------------------------------------------------------- */ 
.plyr__video-embed iframe {
    top: -50%;
    height: 200%;
}
/* ----------------------------------------------------------------------------------- */ 
.pswp{
	z-index: 99999 !important;
}
/* ----------------------------------------------------------------------------------- */
.player-block{
    overflow: hidden;
}
.video{
    overflow: hidden;
}
/* ----------------------------------------------------------------------------------- */
.loginFromVK{
    color: white !important;
    display: block;
    margin-top: 20px;
    background: #4a76a8;
    text-align: center;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loginFromVK:hover{
    background-color: #416a9a;
}
.loginFromVK i{
    font-size: 24px;
    display: block;
    margin-left: 10px;
}
/* ----------------------------------------------------------------------------------- */

.dark .adsBlockProject > div{
	background-color: black;
}
.dark .block2 .items > * .img{
	background-color: transparent;
}

/* ----------------------------------------------------------------------------------- */
.dark hr{
	border-top: 1px solid rgba(255,255,255,.15);
}
.dark .project-info > * {
    border-top: none;
    background-color: #131313;
}
/* ----------------------------------------------------------------------------------- */

 
/*
.page3 .block2 .items > * .hover{
	padding-bottom: 0px;
}
*/

.block2 .items > * .img{
    border: none !important;
} 
/* ----------------------------------------------------------------------------------- */
.pad-fix {
padding-left: 20px;
}
/* ----------------------------------------------------------------------------------- */
/*
video::-webkit-media-controls {
    display:none !important;
}
*::-webkit-media-controls-panel {
  display: none!important;
  -webkit-appearance: none;
}
*::-webkit-media-controls-play-button {
  display: none!important;
  -webkit-appearance: none;
}
*::-webkit-media-controls-start-playback-button {
  display: none!important;
  -webkit-appearance: none;
}
video::-webkit-media-controls-start-playback-button {
  display: none !important;
}
*/
.plyr__controls {
  /* z-index: 2147483647 !important; */
}
/* ----------------------------------------------------------------------------------- */
.dark header .bell .submenu{
    background: var(--main-bg-color) !important;
    color: white;
}
/* ----------------------------------------------------------------------------------- */

.plyr__ads::after {
	display: none;
}