.clock-wrapper {
    text-align: center;
    margin: 30px auto 0;
    padding: 30px 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0px 15px 5px rgba(255, 255, 255, 0.3);
}

.clock-wrapper > span {
	margin-bottom: 60px;
	display: inline-block;
	padding: 0;
	border-radius: 10px;
	font-weight: 600;
	font-size: 26px;
	position: relative;
	color: #066b01;
	font-family: "Montserrat",sans-serif;
	line-height: 1.3;
}



#clock > div {
    display: inline-table;
    text-align: center;
    width: 120px;
    height: 120px;
    padding-top: 15px;
    position: relative;
    line-height: 1;
}

#clock > div:not(.delimiter) {
	background: #02101b;
	border-radius: 50%;
	margin: 0 10px 30px;
}

#clock > div:not(.delimiter):after {
	content:'';
	width: 40%;
	height: 10px;
	position: absolute;
	z-index: 0;
	bottom: -5px;
	left: 30%;
	background: rgba(20, 20, 20, 0.3);
	box-shadow: 0px 0 20px 35px rgba(20,20,20,0.3);
	border-radius: 30px / 40px;
	-webkit-transform: scaleY(.24);
	-moz-transform: scaleY(.24);
	-ms-transform: scaleY(.24);
	-o-transform: scaleY(.24);
	transform: scaleY(.24);
}

#clock > div span {
    display: block;
    font-weight: 600;
    font-family: "Montserrat";
    font-size: 48px;
    margin-bottom: 0px;
    line-height: 1;
    padding-top: 10px;
    color: white;
}

#clock > .delimiter {
    width: 20px;
    display: none;
}

.delimiter:before {
    content: ':';
    color: #02101b;
    font-size: 30px;
    font-weight: 400;
}


@media only screen and (min-width: 768px) {
	
	.clock-wrapper {
		margin-top: 0;
		padding-bottom: 50px;
		margin-bottom: 40px;
		
	}
	#clock > div:not(.delimiter) {
		margin: 0 10px 0;
	}

	#clock {
		margin-left: -15px;
		margin-right: -15px;
	}

}

@media only screen and (min-width:992px) {
	
	.clock-wrapper {
		padding-bottom: 30px;
	}
	.clock-wrapper > span {
		font-size: 34px;
		margin-top: 20px;
	}
	#clock > .delimiter {
		display: inline-block;
	}

}

@media only screen and (min-width: 1200px) {

	.clock-wrapper {
		margin-top: 40px;
		margin-bottom: 10px;
	}
	#clock > div:not(.delimiter) {
		margin: 0 15px
	}
}

