.clock .timer {    
    /*font-family: "Segment7Standard";*/
    font-size: 20px;
    display: inline-block;
    vertical-align: top;
    font-weight: bold;
    line-height: normal;
}
.clock .text {
    font-size:11px;
}

.clock {
    margin-top: 15px;
}

.clock .column {
    display: inline-block;
    padding: 10px;
    border: 1px solid #b30101;
}

p {
    line-height: 27px;
}

h1 {
    font-size: 31px;
    color: #ffffff;
    margin-top: 20px;
    margin-bottom: 20px;
}

h2 {
    font-size: 16px;
    color: #a3deff;
    margin: 0 0 10px;
}

a {
    color: #a3deff;
    text-decoration: none;
}

.days {
    display: none;
}

@media only screen and (max-width: 768px) {
    .wrapper {
        width: 100%;
        padding: 0 20px;
    }

    .timer {
        font-size: 35px;
    }
}

/*.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}*/

.clear-loading {
    text-align: center;
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
}

.spinner {
    width: 100px;
    height: 100px;
}

.spinner > span,
.spinner > span:before,
.spinner > span:after {
    content: "";
    display: block;
    border-radius: 50%;
    border: 2px solid #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);

}

.spinner > span {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-left-color: transparent;
    -webkit-animation: effect-2 2s infinite linear;
    -moz-animation: effect-2 2s infinite linear;
    -o-animation: effect-2 2s infinite linear;
    animation: effect-2 2s infinite linear;
}

.spinner > span:before {
    width: 75%;
    height: 75%;
    border-right-color: transparent;
}

.spinner > span:after {
    width: 50%;
    height: 50%;
    border-bottom-color: transparent;
}

@-webkit-keyframes effect-2 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes effect-2 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}