/* LITEcore
* https://goload.ru */

@import url('https://fonts.googleapis.com/icon?family=Material+Icons&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap');

* {
	outline: none;
	text-decoration: none;
}
::selection {
	background: #b3d4fc;
	text-shadow: none;
}
html, body, #page {
	height: 100%;
	margin: 0;
	font-family: 'Roboto', sans-serif;
	-webkit-font-smoothing: antialiased;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}

.container {
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	min-height: 100%;
}
.grid {
	background-color: #151D26;
	transition: all .3s ease;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-moz-box-orient: horizontal;
	-moz-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
	-moz-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}
.grid_cell {
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-moz-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
}

.left_block {
	background: #5d80a6;
	padding: 16px;
}
.dropzone {
	color: #fff;
	cursor: pointer;
	text-align: center;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 18px;
	font-weight: 700;
	line-height: 24px;
	position: relative;
	flex-flow: column;
}
.dropload {
	display: flex;
	flex-flow: column;
	max-width: 400px;
	width: 100%;
}
.file {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
input[type=file] {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	outline: 0;
	z-index: 1;
}
input[type=text] {
	background-color: transparent;
	padding: 8px 16px;
	border-bottom: 1px solid #fff !important;
	color: #fff;
	border: none; 
	margin: 16px auto 8px;
	z-index: 2;
	width: 100%;
	max-width: 248px;
	box-sizing: border-box;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
::-webkit-input-placeholder {color: rgba(255, 255, 255, .75);}
::-moz-placeholder          {color: rgba(255, 255, 255, .75);}
:-moz-placeholder           {color: rgba(255, 255, 255, .75);}
:-ms-input-placeholder      {color: rgba(255, 255, 255, .75);}
*:before, *:after {
	box-sizing: border-box;
}
@keyframes ripple {
	0% {
		box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0);
	}
	50% {
		box-shadow: 0px 0px 0px 15px rgba(0, 0, 0, .1);
	}
	100% {
		box-shadow: 0px 0px 0px 15px rgba(0, 0, 0, 0);
	}
}
.date {
	margin: 8px auto 28px;
	z-index: 2;
	cursor: default;
}
.md-radio {
	margin: 12px 0;
}
.md-radio.md-radio-inline {
	display: inline-block;
}
.md-radio input[type="radio"] {
	display: none;
}
.md-radio input[type="radio"]:checked + label:before {
	border-color: #fff;
	animation: ripple .2s linear forwards;
}
.md-radio input[type="radio"]:checked + label:after {
	transform: scale(1);
}
.md-radio label {
	display: inline-block;
	height: 20px;
	position: relative;
	padding: 0 8px 0 24px;
	font-weight: normal;
	margin-bottom: 0;
	cursor: pointer;
	vertical-align: middle;
}
.md-radio label:before, .md-radio label:after {
	position: absolute;
	content: '';
	border-radius: 50%;
	transition: all .3s ease;
	transition-property: transform, border-color;
}
.md-radio label:before {
	top: 2px;
	left: 0;
	width: 18px;
	height: 18px;
	border: 2px solid rgba(255, 255, 255, 0.35);
}
.md-radio label:after {
	top: 7px;
	left: 5px;
	width: 8px;
	height: 8px;
	transform: scale(0);
	background: #fff;
}
.btn {
	color: #fff;
	background-color: #4d7199;
	padding: 8px 32px;
	border: 0;
	z-index: 2;
	border-radius: 50px;
	margin: 0 auto 16px;
	font-family: 'Roboto', sans-serif !important;
	line-height: 15px;
}
#error {
	color: #fff;
	font-size: 15px;
	font-weight: 500;
}
.upload_icon {
	background-image: url(img/ic_upload.png);
	background-repeat: no-repeat;
	background-position-x: center;
	background-size: 232px;
	display: block;
	height: 224px;
	width: 100%;
}
.help {
	z-index: 2;
	position: relative;
	margin-bottom: -34px;
	left: -80px;
	cursor: default;
}
.help .formats {
	display: none;
}
.help i {
	cursor: pointer;
}
i:hover + .formats {
	display: block;
	padding: 8px 16px;
	font-size: 14px;
	font-weight: normal;
	color: rgba(255, 255, 255, .75);
	background: rgba(77, 113, 153, .8);
	position: absolute;
	top: -306px;
	left: 64px;
	width: 100%;
}
.help .formats_title {
	font-size: 14px;
	font-weight: 700;
	color: rgba(255, 255, 255, .9);
}

.right_block {
	padding: 16px;
}
.right_nav {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	white-space: nowrap;
	overflow: auto;
	padding: 16px;
	box-sizing: border-box;
	line-height: 37px;
}
h1.logo {
	font-size: 24px;
	color: #5d80a6;
	margin: 0 8px 0 0 !important;
	position: relative;
	top: 1px;
	font-weight: normal;
	display: initial;
	cursor: default;
}
h1 .icon {
	background: url(img/app-icon.svg) no-repeat;
	background-size: cover;
	display: inline-flex;
	width: 42px;
	height: 42px;
	position: relative;
	margin-top: -3px;
	vertical-align: top;
	margin-left: -6px;
}
h1 .name {
	display: initial;
}
.right_nav a {
	color: #8E9399;
	padding: 8px 6px;
	font-size: 19px;
	font-weight: 700;
	position: relative;
}
.right_nav a:before, .right_nav a:after {
	content: '';
	position: absolute;
	transition: transform .2s ease;
}
.right_nav a:before {
	left: 0;
	bottom: -4px;
	width: 100%;
	height: 2px;
	background: #8E9399;
	transform: scaleX(0);
}
.right_nav a:hover:before {
	transform: scaleX(1);
}
.ic_lang {
	font-style: normal;
	background-size: 16px !important;
	padding-left: 24px;
	margin-left: 8px;
}
.ic_lang.ru {
	background: url(img/ru.svg) no-repeat 0 3px;
}
.ic_lang.en {
	background: url(img/en.svg) no-repeat 0 3px;
}
.right_content {
	margin-top: 56px;
}
.right_content .items {
	color: #8E9399;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 18px;
	font-weight: 700;
	line-height: 24px;
	margin: 48px auto;
	position: relative;
}

@media only screen and (max-width: 792px) {
	.grid {
		display: block;
		height: 100%;
	}
	.right_nav {
		line-height: 28px;
	}
	h1.logo {
		margin: 0 !important;
		font-size: 20px !important;
	}
	h1 .icon {
		width: 32px;
		height: 32px;
		position: relative;
		margin-left: -4px;
		margin-top: -3px;
		vertical-align: top;
	}
	h1 .name {
		display: none !important;
	}
	.right_nav a, .right_content .items, .dropzone {
		font-size: 16px !important;
	}
}

/* Light theme */
.light .grid {
	background-color: #fff;
}
.light .right_nav a {
	color: #333;
}
.light .right_nav a:before {
	background: #333;
}
.light .right_content .items {
	color: #333;
}