@import url('https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i&display=swap&subset=cyrillic');
@import url('https://fonts.googleapis.com/css?family=PT+Serif:400,400i,700,700i&subset=cyrillic');

*, :before, :after {
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}

html {
	height: 100%;
	width: 100%;
	min-width: 480px;
}
body
{
	display: flex;
	flex-direction: column;
	margin: 0px;
	padding: 0px;
	color: #555555;
	font-size: 16px;
	font-weight: 300;
	font-family: 'Roboto', sans-serif;
	min-width: 100%;
	width: auto !important;
	height: auto !important;
	min-height: 100%;
	position: relative;
	line-height: 1.5;
	background-color: #ffffff;
}

td, th {
	color: #555555;
	font-size: 16px;
	font-weight: 300;
	font-family: 'Roboto', sans-serif;
	padding: 0px 0px 0px 0px;
}
a {
	color: #35b297;
	text-decoration: none;
	outline: none;
}
a, button {
	transition: 0.5s;
}
a:hover {
	color: #555555;
	text-decoration: none;
	outline: none;
}
a.active {
	color: #555555;
}
a.nou, a.nou:hover {
	text-decoration: none;
}
a.blocked {
	color: #EEEEEE;
}
a.blocked:hover {
	text-decoration: none;
	color: #EEEEEE;
}
p {
	margin-top: 5px;
	margin-bottom: 15px;
}
img {
	border-width: 0px;
}

h1, h2, h3, h4 {
	color: #555555;
	font-weight: 700;
	font-family: 'PT Serif', sans-serif;
	text-transform: none;
	line-height: 1.2;
	/*letter-spacing: 0.05em;*/
}
h1 {
	font-size: 42px;
	margin: 0px 0px 20px 0px;
}
h2 {
	font-size: 36px;
	margin: 30px 0px 20px 0px;
}
h3 {
	font-size: 30px;
	margin: 25px 0px 15px 0px;
}
h4 {
	font-size: 24px;
	margin: 20px 0px 10px 0px;
}
h1 a, h2 a, h3 a, h4 a {
	color: #555555;
}

object, embed {
	margin: 0px;
	padding: 0px;
}

.block-center, .bg-block-center {
	position: relative;
	margin: 0px auto;
	width: 100%;
	max-width: 1400px;
}
.block-center {
	padding-left: 50px;
	padding-right: 50px;
}
.block-full img {
	width: 100%;
	height: auto;
}
.block-full iframe {
	width: 100%;
}

.desktop {
	display: block;
}
.tablet, .mobile {
	display: none;
}

/* header */
body > header {
	position: fixed;
	width: 100%;
	min-width: 480px;
	/*height: 175px;*/
	padding: 10px 0px;
	border-width: 0px 0px 1px 0px;
	border-style: solid;
	border-color: #4e536b;
	background-color: #ffffff;
	z-index: 850;
}
header h1 {
	color: #35b297;
	font-size: 24px;
	margin-bottom: 0px;
}
header h1 > span {
	display: block;
	font-size: 20px;
}

footer {
	padding: 20px 0px;
	background-color: #934ab5;
	color: #ffffff;
}
footer a:hover {
	color: #ffffff;
}

.social-icons {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 10px;
}
.social-icons > a {
	display: block;
	width: 40px;
	height: 40px;
	/*background-size: 78px auto;*/
	background-position: center center;
	background-repeat: no-repeat;
	transition: all 0.3s;
}
.social-icons > a.ico-discord {
	background-image: url(../assets/social_discord.svg);
}
.social-icons > a.ico-ig {
	background-image: url(../assets/social_ig.svg);
}
.social-icons > a.ico-tiktok {
	background-image: url(../assets/social_tiktok.svg);
}
.social-icons > a.ico-fb {
	background-image: url(../assets/social_fb.svg);
}
.social-icons > a.ico-tg {
	background-image: url(../assets/social_tg.svg);
}
.social-icons > a:hover {
	background-size: 40px auto;
}
/* end header */

body > article {
	display: flex;
	flex-direction: column;
	flex-grow: 2;
	padding-top: 50px;
	padding-bottom: 50px;
	z-index: 100;
}

.block-music {
	margin-top: 20px;
	display: flex;
	flex-wrap: wrap;
	column-gap: 30px;
	row-gap: 20px
}

.block-music .album {
	width: 600px;
}
.block-music .album > h2 {
	font-size: 24px;
	margin-top: 0;
	margin-bottom: 10px;
}
.block-music .songs {
	display: flex;
	height: 300px;
}
.block-music .songs > img {
	display: block;
	width: 300px;
	height: auto;
}
.block-music .songs > ol {
	margin: -5px 0 0 0;
}

.loader {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background: rgba(255, 255, 255, 0.9);
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
}

@keyframes rolling {
	0% {
		transform: translate(-50%, -50%) rotate(0deg);
	}

	100% {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

.loader .spinner .rolling div {
	position: absolute;
	width: 82px;
	height: 82px;
	border: 8px solid #934ab5;
	border-top-color: transparent;
	border-radius: 50%;
}

.loader .spinner .rolling div {
	animation: rolling 0.9615384615384615s linear infinite;
	top: 50px;
	left: 50px
}

.loader .spinner {
	width: 100px;
	height: 100px;
	display: inline-block;
	overflow: hidden;
	background: none;
}

.loader .spinner .rolling {
	width: 100%;
	height: 100%;
	position: relative;
	transform: translateZ(0) scale(1);
	backface-visibility: hidden;
	transform-origin: 0 0;
	/* see note above */
}

.loader .spinner .rolling div {
	box-sizing: content-box;
}

.loader .msg {
	margin-top: 50px;
}

/* icons */
.ico {
	/*background-image: url(../images/icons.png);*/
	background-repeat: no-repeat;
	display: inline-block;
  	background-position: center center;
}
.ico-exit {
  	background-image: url(../img/ico_exit.svg);
}
.ico-copy {
	background-image: url(../img/ico_copy_white.svg);
}
/* end icons */

/* txt colors */
.light {
	color: #A5A5A5;
}
.lightest {
	color: #EEEEEE;
}
.critical {
	color: #FD1F1F;
}
/* end txt colors */
/* txt sizes */
.small {
	font-size: 20px;
}
.smaller {
	font-size: 16px;
}
.smallest {
	font-size: 14px;
}
.medium {
	font-size: 24px;
}
.big {
	font-size: 28px;
}
.bigger {
	font-size: 36px;
}
/* end txt sizes */

/* global styles */
.hidden {
	display: none !important;
}
.nobg {
	background: none;
}
.noborder {
	border-width: 0px;
}
.u {
	text-decoration: underline;
}
.z {
	text-decoration: line-through;
}
.minh {
	min-height: 10px;
}

/* */
.mt20 {
	margin-top: 20px;
}
.ml20 {
	margin-left: 20px;
}
.vat {
	vertical-align: top;
}
.vam {
	vertical-align: middle;
}
.tal {
	text-align: left;
}
.tar {
	text-align: right;
}
.tac {
	text-align: center;
}
.ttu {
	text-transform: uppercase;
}
.fsi {
	font-style: italic;
	/*font-weight: 400i;*/
}
.fwb, .bold, strong {
	font-weight: 700;
}
.boldest {
	font-weight: 900;
}
/* position */
.posrel {
	position: relative;
}
.posabs {
	position: absolute;
}
/* end position */

@media only screen and (max-width: 700px) {
	.mobile {
		display: block;
	}

	.block-center {
		padding-left: 20px;
		padding-right: 20px;
	}

	.block-music {
		column-gap: 0px;
	}
	
	.block-music .album {
		width: 100%;
	}
	.block-music .songs {
		display: block;
		height: auto;
	}
	.block-music .songs > img {
		display: block;
		width: 100%;
	}
	.block-music .songs > ol {
		margin: 10px 0 0 0;
		padding-left: 20px;
	}
}