.main {
    z-index: 50;
}
#countdown-popup {
    position: fixed;
    top: 0;
    z-index: 5000;
    opacity: 0;
    width: 100%;
    height: 0%;
    transition: opacity 250ms ease-out;
}
#countdown-popup.active {
    height: 100%;
    opacity: 1;
    transition: opacity 250ms ease-in;
}
#countdown-popup.active:after {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 0;
}
.countdown-wrapper {
    padding-left: 30px;
    padding: 0 40px;
    z-index: 1000;
    width: 100%;
    max-width: 450px;
    margin: auto;
    background-color: white;
    position: fixed;
    left: 50%;
    padding: 40px 10px;
    border: 15px solid #fff;
    background: #efefef url(../../images/main_pattern.png) 0 0 repeat fixed;
    transform: translate3D(-50%, -150%, 0);
    transition: transform 300ms ease;
}
#countdown-popup.active .countdown-wrapper {
    transform: translate3D(-50%, 50%, 0);
}

.countdown-wrapper p {
    font-size: 35px;
    line-height: 45px;
    padding: 5px 0;
    width: 100%;
    float: left;
    font-weight: bold;
    letter-spacing: -1px;
    text-align: center;
}
.countdown {
    width: 100%;
    float: left;
    position: relative;
    margin-bottom: 30px;
}
.seconds {
    width: 100%;
    height: 100%;
    line-height: 240px;
    position: absolute;
    font-size: 80px;
    color: #ff0001;
    z-index: 1500;
    text-align: center;
}
.circular-chart {
    display: block;
    margin: 10px auto;
    max-width: 220px;
    max-height: 220px;
}
.circle {
    stroke: #ff0001;
    fill: none;
    stroke-width: 2.8;
    stroke-linecap: round;
    -webkit-transition: stroke-dashoffset 1000ms linear;
    -o-transition: stroke-dashoffset 1000ms linear;
    transition: stroke-dashoffset 1000ms linear;
}
.circle-back {
    fill: rgba(224, 224, 224, 0.3);
}
#cacel-countdown {
    border: 0;
    background: #ff0202;
    display: block;
    width: auto;
    margin: auto;
    height: 48px;
    padding-bottom: 2px;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 24px;
    text-shadow: 0 -1px 0 rgba(0,0,0,0.75);
    letter-spacing: 1px;
    font-family: 'PT Sans Narrow Bold','Trebuchet MS',arial,sans-serif;
    cursor: pointer;
    padding: 0 30px;
}