.timer-blk .wrapper {
    box-sizing: border-box;
    width: 640px;
    margin: 0 auto;
    text-align: center;
}

.timer-blk .timer {
    font-family: "Segment7Standard";
    font-size: 6rem;
    display: inline-block;
    vertical-align: top;
}

.timer-blk .clock {
    margin-top: 30px;
    color: #fff;
}
.timer-blk .text{
    margin-top: 0px;
    text-align: center;
}

.timer-blk .clock .column {
    display: inline-block;
}

.timer-blk p {
    line-height: 27px !important;
}

.timer-blk h1 {
    font-size: 31px;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 20px;
}

.timer-blk h2 {
    font-size: 16px;
    color: #d2f4fa;
    margin: 0 0 10px;
}

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

.timer-blk .days {
    display: none;
}

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

    .timer-blk .timer {
        font-size: 4rem;
    }
}

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

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

.timer-blk .spinner {
    width: 100px;
    height: 100px;
}

.timer-blk .spinner > span,
.timer-blk .spinner > span:before,
.timer-blk .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%);

}

.timer-blk .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;
}

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

.timer-blk .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);
    }
}
