/* Custom styles here */
.countdown-wrapper {
	padding: 40px 0;
	text-align: center;
	background: #1E2326;
	margin-bottom: 15px;
}
.countdown-title {
	font-family: "Oswald", sans-serif;
	text-align: center;
	color: white;
	margin-top: 0;	
	margin-bottom: 35px;
	font-size: 1.6em;
}

.countdown-logo {
	vertical-align: middle;
}

.countdown-ticker {
	color: #fb560b;
	/*text-transform: uppercase;*/
	font-family: "Oswald", sans-serif;
	font-weight: 300;
	font-size: 38px;
	min-width: 435px;
	word-spacing: 7px;
}

.countdown-button {
	display: inline-block;
    text-transform: uppercase;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 5px 45px 5px 45px;
    font-size: 1em;
    font-weight: 100;
}

.countdown-body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

@media only screen and (max-width: 768px) {
	.countdown-body {
		-webkit-box-orient: vertical;
-webkit-box-direction: normal;
    -ms-flex-direction: column;
        flex-direction: column;
	}
	.countdown-cell {
		margin-bottom: 40px;
	}
}