*{
	box-sizing: border-box;
}

body{
	padding:0;
	margin:0;
	font-family:Roboto, sans-serif;
	background: url(../img/bg-image.jpg);
  	background-position: center;
  	background-repeat: no-repeat;
  	background-size: cover;
  	background-attachment: fixed;
}

.top{
	position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    background: #061217;
    padding: 10px 20px;
    overflow: hidden;
    z-index: 999;
    height: 55px;
}

.right {
	float: right;
}

.right img{
	width: 70px;
	margin-top: 8px;
}

.left{
	float: left;
	display: flex;
    align-items: center;
}

.left img:nth-child(1){
	width: 9px;
    margin-top: 8px;
}

.left img:nth-child(2){
	margin-left: 15px;
    margin-top: 7px;
    width: 20px;
}

.left span{
	color: #fff;
    display: inline-block;
    margin: 7px 0 0 4px;
    font-size: 15px;
}

.date{
	background: #293d46;
    width: 55px;
    text-align: center;
    display: block;
    margin: 70px auto 12px;
    border-radius: 8px;
    color: #fff;
    padding: 5px 0;
    font-size: 10px;
}

.bottom{
    max-width: 500px;
    display: block;
    margin: 0 auto;
}

.box {
    width: 84%;
    position: relative;
    background: #293d46;
    min-height: 20px;
    margin: 0 14px;
    border-radius: 12px;
    padding: 10px;
    color: white;
    text-align: left;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 21px;
    display: none;
}

.box .today{
	font-weight: 600;
    margin-bottom: 5px;
}

.box a{
	box-shadow: inset 0 1px 0 #38d35e;
    border: 1px solid #38d35e;
    width: 100%;
    height: 46px;
    border-radius: 35px;
    color: #fff;
    font-size: 17px;
    font-weight: 400;
    text-shadow: 0 -1px 1px #38d35e;
    background-color: #38d35e;
    cursor: pointer;
    display: block;
    text-align: center;
    text-decoration: none;
    line-height: 45px;
    margin-top: 20px;
}

.clock {
    display: block;
    text-align: right;
    margin-top: 5px;
    position: relative;
    text-align: right;
    color: #83959d;
    font-size: 12px;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-delay: 7s;
  -webkit-animation-delay: 7s;
}
@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}