/*
Theme Name: Benefit 09.11 BYN
Theme URI: https://wordpress.org/themes/twentyfifteen/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: Our 2015 default theme is clean, blog-focused, and designed for clarity. Twenty Fifteen's simple, straightforward typography is readable on a wide variety of screen sizes, and suitable for multiple languages. We designed it using a mobile-first approach, meaning your content takes center-stage, regardless of whether your visitors arrive by smartphone, tablet, laptop, or desktop computer.
Version: 1.7.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ex

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400');

body, body * {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	color: #fff;
	overflow: hidden;
	height: 100vh;
	display: flex;
	flex-direction: column;
}

img {
	max-width: 100%;
	height: auto;
}

video {
	position: fixed;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: -100;
	-ms-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	background-size: cover;
}

.page {
	flex: 1 1 auto;
	display: flex;
}

.main {
	display: flex;
	align-items: center;
	justify-content: center;
	height: auto;
	width: 1262px;
	max-width: 1600px;
}

.text-center {
	text-align: center;
}

/******* DateTime Widget *******/
.widget {
	/* flex: 1 0 auto; */
	box-sizing: border-box;
	width: 7%;
	margin: 4% auto;
	font-family: 'Roboto', sans-serif;
}

.widget .text-big {
	font-weight: 300;
	font-size: 6em;
	line-height: 1em;
	letter-spacing: -.05em;
}

.widget .text-small {
	font-size: 1.3em;
	text-transform: uppercase;
	font-weight: bold;
}

/******* Weather *******/
.widget .weather > .icon {
	margin-bottom: 15%;
}

.widget .weather .wind .direction-icon {
	font-size: 1.6em;
	line-height: 0;
	vertical-align: middle;
}

.widget .weather .temperature .unit {
	font-size: 60%;
	vertical-align: middle;
	font-family: 'bebas_neue_regularregular', sans-serif;
	position: relative;
	padding-left: 2%;
	margin-left: 10px;
}

.widget .weather .temperature .unit:before {
	content: " ";
	display: inline-block;
	width: 7px;
	height: 7px;
	border: 2px solid #fff;
	border-radius: 100%;
	position: absolute;
	left: -5px;
	top: .1em;
}

/******* Weather end *******/

/******* Clock *******/

.widget .date-time .clock {
	margin-top: 10%;
	margin-left: auto;
	margin-right: auto;
	width: 80%;
	height: 0;
	padding-top: 80%;
	border: 2px solid #fff;
	border-radius: 100%;
	position: relative;
	transform: rotate(-90deg);
}

.widget .date-time .clock .hour,
.widget .date-time .clock .minutes {
	content: " ";
	position: absolute;
	width: 45%;
	height: 0;
	outline: 1px solid #fff;
	top: 50%;
	left: 50%;
	transform-origin: 0 0;
}

.widget .date-time .clock .hour {
	width: 30%;
}

/******* Clock end *******/
/******* DateTime Widget end *******/

/*
@-webkit-keyframes pulse {
	0% {
		background: rgba(255,255,255,1);
		box-shadow: inset 0px 0px 10px 2px rgba(117,182,255,0.5),
		0px 0px 40px 2px rgba(105,135,255,1);
	}
	100% {
		background: rgba(255,255,255,0);
		box-shadow: inset 0px 0px 10px 2px rgba(117,182,255,0.5),
		0px 0px 30px 2px rgba(105,135,255,0.3);
	}
}*/

/******* Stocks *******/
.stocks {
	width: 100%;
	background: #0a4166;
	font-family: Arial;
	padding: 20px 0;
	font-size: 30px;
	text-transform: uppercase;
	font-style: italic;
	letter-spacing: .1em;
	position: relative;
	line-height: 1em;
}

.stocks:before {
	content: " ";
	width: 100%;
	display: block;
	height: 3px;
	position: absolute;
	background: #abaeb1;
	top: 0;
	left: 0;
	box-shadow: 0 6px 9px -1px #000;
}
/******* Stocks end *******/