@charset "UTF-8";
* {box-sizing: border-box;}
body, html {margin: 0; padding: 0;}
body {
	background: #222;
	color:#EDE;
	font-size:14px;
	font-family: arial, sans-seris;
	min-height: 100vh;
}

/* Замочек */
.lock {
	display: none;
	font-size: 275px;
	color: #1e50ba;
	clear: right;
	text-shadow: 40px 30px  16px rgba(70, 70, 70, 0.5);
	transition: transform 0.5s linear;
	text-align: center;
	width: 270px;
	margin: 0 auto;
}

.informer {
	float: right;
	margin-right: 20px;
	margin-top: 10px;
	border: 1px solid #CCC;
	border-radius: 5px;
	background-color: #000;
	display: flex;
	flex-wrap: nowrap;
}
.informer section {padding: 5px 10px;}
.informer h2 {
	padding: 0;
	margin: 0 0 5px;
	font-size: 14px;
	color: #999;
	font-weight: normal;
}
.informer .погода {border-right: 1px solid #555; min-width: 130px;}
.informer .валюты {color: #FC6; font-family: monospace; }
.informer .валюты i, .погода .curr {color:#DF9; font-style: normal;}

.rem {
	color: #BBB;
	font-size: 14px;
	padding-top: 10px;
	margin: 0 0 0 20px;
}


/* --------------------- */
.photolist {
	display: flex;
	flex-wrap: wrap;
	padding: 10px 15px;
}
.photolist > * {
	border: 1px solid #888;
	background: #282828;
	padding: 20px;
	margin: 5px 5px;
	min-width: 100px;
	max-width: 210px;
	border-radius: 5px;
}
.photolist > *:hover {
	background: #222;
}
.photolist a {
	color: #DFD;
	text-decoration: none;
	outline: none;
}
.photolist > a:hover {color: #FFF;}

/* календарь */
#calendar {
	font-size: 14px;
	display: inline-block;
	border-radius: 2px;
	border: 2px solid #444;
	color: #9DF;
	position: fixed;
	left: 50%;
	top: 0;
	z-index: 1;
	transform: translate(-50%, -44px);
	transition: transform 0.11s;
	animation: bordercolor linear 15s infinite;
}

@keyframes bordercolor  {
	0% {border-bottom-color: #444;}
	33% {border-bottom-color: #CA9;}
	66% {border-bottom-color: #AAF;}
}

#calendar:hover {

	transform: translate(-50%, 0); 
}
#calendar .days, #calendar .wd {
	display: flex;
	flex-wrap: nowrap;
}
#calendar .wd {
	border-bottom: 1px solid #444;
	background-color: #222;
	width: 100%;
}
#calendar .wd > div {
	width: 30px;
	min-width: 30px;
	text-align: center;
	padding: 2px 0;
	font-size: 12px;
	color: #FCA;
	background-color: #222;
}
#calendar .wd .sunday {color: #B04;}
#calendar .days > div {
	padding: 3px 0;
	text-align: center;
	width: 30px;
	min-width: 30px;
	border-right: 1px solid #444;
	background-image: linear-gradient(to bottom, #0d0d0d, #03233A);
}
#calendar .days > div:last-child {
	border-right: none;
}
#calendar .days .now {
	background-image: linear-gradient(to top, #06262c, #0c7a8d);
	color: #FFF;
	font-weight: bold;
	font-size: 1.2em;
}
#calendar .days .sunday {
	border-right-color: #B04;
}

.bnn {
	opacity: 0.3;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

@media (max-width: 1439px) {
	.informer {
		width: 100%;
		margin: 0;
		border-radius: 0;
		border-right: none;
		border-left: none;
	}
	
	#calendar {
		width: 100vw;
		overflow-x: auto;
	}
}