
/*
.display {
	flex: 1;
	display: flex;
	flex-direction : column;
	align-items : center;
	justify-content : center;
	background: #001f3f;
	font-family: tahoma !important;
	padding-bottom: 60px;
}
*/
.event_title {
    text-align: left;
    display: block;
    color: #000;
    font-size: 20px;
    font-weight: 900;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 30px;
    margin-top: 70px;
    letter-spacing: 1px;
}
p.action_caption{
	color: #fff;	
	text-align: center;
	font-size: 16px;
	letter-spacing: 5px;
	font-weight: 100;
}
#door{
	text-align: center;
}
.call_to_action_button{
	margin-top: 40px;
	border-radius: 20px;
}
button.call_to_action_button {
	letter-spacing: 2px;
	text-align: center;
	font-size: 16px;
	top: 50%;
	left: 50%;
	color: #fff;
	padding: 20px;
	width: 0 auto;
	border-radius: 20px;
	box-sizing: border-box;
	background: #0074D9;
	border-style: none;
}
button:hover{
	background: #fff;
	color: #0074D9;
	font-weight: bold;
}
button:active{
	background: #fff;
	color: #0074D9;
	font-weight: bold;
}
button:focus{
	background: #fff;
	color: #0074D9;
	font-weight: bold;
}
.clock{
}

#numbers {
    width: 100%;
    display: flex;
}
#numbers span {
    float: none;
    text-align: center;
    font-size: 46px;
    margin-right: 26px;
    color: #000;
    padding: 20px;
    width: 23.2%;
    height: 125px;
    border-radius: 10px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    padding-bottom: 50px;
    border: 1px solid #000;
}
#numbers span.seconds {
    margin-right: 0;
}
/*
#numbers span:nth-child(1){
  background: #f8b717;
}
#numbers span:nth-child(2){
  background: #c93394;
}
#numbers span:nth-child(3){
  background: #ad6d00;
}
#numbers span:nth-child(4){
  background: #000000;
}
*/


#units {
    position: relative;
    margin-top: -40px;
    display: flex;
}
#units span {
    float: none;
    width: 23.2%;
    text-align: center;
    color: #000;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 1px;
    margin-right: 26px;
    display: inline-block;
    font-weight: 600;
}
#units span:last-child {
    margin-right: 0;
}
span.turn{
  	animation: turn 0.7s ease forwards;
}

@keyframes turn{
	0%{transform: rotateX(0deg)}
	100%{transform: rotateX(360deg)}
}

.hide{
	display: none;
}

.author{
	padding-top: 60px;
	color: #fff;	
	text-align: center;
	font-size: 13px;
	letter-spacing: 2px;
	font-weight: 100;
}

