.countdown-bar{
    position: fixed;
    top: 0;
    z-index: 100000;
    display: block;
    width: 100%;
    background: #000;
    /*background-image: linear-gradient(45deg, #361752, #B31B67);*/
    /*background-image: -webkit-linear-gradient(45deg, #361752, #B31B67);*/
    /*background-image: -moz-linear-gradient(45deg, #361752, #B31B67);*/
    /*background-image: -ms-linear-gradient(45deg, #361752, #B31B67);*/
    /*background-image: -o-linear-gradient(45deg, #361752, #B31B67);*/
    color: white;
    padding: 1em 0 2em;
    font-size: 125%;
}
.countdown-bar *{
    font-family: "Titillium Web", Arial, sans-serif;
}
.countdown-bar {
    vertical-align: middle;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #7ABF21;
}
.countdown-bar .countdown-container {
    /* height: 130px; */
    width: auto;
    display: inline-block;
    margin: 0 2em;
}
.countdown-bar .time {
    border-radius: 5px;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
    display: inline-block;
    text-align: center;
    position: relative;
    height: 95px;
    width: 65px;
    margin-right: 7px;
    -webkit-perspective: 479px;
    -moz-perspective: 479px;
    -ms-perspective: 479px;
    -o-perspective: 479px;
    perspective: 479px;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
.countdown-bar .count {
    background: #202020;
    color: #f8f8f8;
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 2.6em;
    line-height: 2.4em;
    overflow: hidden;
    position: absolute;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    top: 0;
    width: 100%;

    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);

    -webkit-transform-style: flat;
    -moz-transform-style: flat;
    -ms-transform-style: flat;
    -o-transform-style: flat;
    transform-style: flat;
}
.countdown-bar .count.top {
    border-top: 1px solid rgba(255,255,255,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    border-radius: 5px 5px 0 0;
    height: 50%;

    -webkit-transform-origin: 50% 100%;
    -moz-transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    -o-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
}
.countdown-bar .count.bottom {
    background-image: linear-gradient(rgba(255,255,255,0.1), transparent);
    background-image: -webkit-linear-gradient(rgba(255,255,255,0.1), transparent);
    background-image: -moz-linear-gradient(rgba(255,255,255,0.1), transparent);
    background-image: -ms-linear-gradient(rgba(255,255,255,0.1), transparent);
    background-image: -o-linear-gradient(rgba(255,255,255,0.1), transparent);
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    border-radius: 0 0 5px 5px;
    line-height: 0;
    height: 50%;
    top: 50%;

    -webkit-transform-origin: 50% 0;
    -moz-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    -o-transform-origin: 50% 0;
    transform-origin: 50% 0;
}
.countdown-bar .count.next {
}
.countdown-bar .label {
    font-size: normal;
    margin-top: 5px;
    display: block;
    position: absolute;
    top: 95px;
    width: 100%;
}
/* Animation start */
.countdown-bar .count.curr.top {
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    transform: rotateX(0deg);
    z-index: 3;
}
.countdown-bar .count.next.bottom {
    -webkit-transform: rotateX(90deg);
    -moz-transform: rotateX(90deg);
    -ms-transform: rotateX(90deg);
    -o-transform: rotateX(90deg);
    transform: rotateX(90deg);
    z-index: 2;
}
/* Animation end */
.countdown-bar .flip .count.curr.top {
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    -ms-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;

    -webkit-transform: rotateX(-90deg);
    -moz-transform: rotateX(-90deg);
    -ms-transform: rotateX(-90deg);
    -o-transform: rotateX(-90deg);
    transform: rotateX(-90deg);
}
.countdown-bar .flip .count.next.bottom {
    -webkit-transition: all 250ms ease-in-out 250ms;
    -moz-transition: all 250ms ease-in-out 250ms;
    -ms-transition: all 250ms ease-in-out 250ms;
    -o-transition: all 250ms ease-in-out 250ms;
    transition: all 250ms ease-in-out 250ms;

    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    transform: rotateX(0deg);
}
.countdown-label{
    display: inline-block;
    text-transform: uppercase;
    word-wrap: break-word;
    width: 34%;
    height: 100%;
    float: left;
    font-size: 3.0em;
    margin-left: 10%;
}
.countdown-label h1 {
    font-weight: bolder;
    font-size: 0.6em;
}

.bf-enter-now {
    font-size: 12px;
}

.countdown-view-more{
    float: left;
    height: 100%;
    margin-top: 2%;
    background: #f1f1f1;
    color: #000;
    border-radius: 4px;
    font-size: 80%;
    display: none;
}
.countdown-view-more span{
    height: 100%;
    margin: auto;
    display: none;
    padding: 3px;
}
.page .header-msg {
    top: 160px;
}
.page .new-header-style{
    margin-top: 160px;
}
.page .col1-layout{
    /*margin-top: 240px;*/
}

@media screen and (max-width: 48em) {
    .countdown-bar {
        position: relative;
        width: 100%;
    }
    /*.countdown-bar .countdown-container {*/
        /*width: 40%;*/
        /*!*float: left;*!*/
    /*}*/
    .countdown-bar .time {
        height: 37px;
        width: 30px;
        margin-right: 2px;
    }
    .countdown-bar .count {
        font-size: 1.4em;
        line-height: 35px;
    }
    .countdown-bar .label {
        font-size: 0.6em;
        top: 36px;
    }
    .page .new-header-style{
        margin-top: 95px;
    }
    .page .header-msg{
        top: 100px;
    }
    .countdown-label {
        margin-left: 0;
    }
    .countdown-label h1{
        font-size: 0.3em;
    }
    .countdown-view-more{
        display: inline-block;
    }
}

.bf-left-box{
    float: left;
}
.bf-row{
    width: 100%;
    height: 100%;
    margin: 0 0;
    padding: 25px 0;
    display: block;
    font-family: "Titillium Web", Arial, sans-serif;
}
.bf-clear{
    clear:both;
}
.bf-title{
    font-size: 4em;
}
.bf-faq, .bf-prizes{
    background-color: #efeef3;
    padding: 10px 17px;
    margin-left: 15px;
    border-radius: 5px;
    border: 0.7px solid #d9d3f1;
}

div.time.weeks {
    display: none;
}
div.time.days {
     display: none;
}

.countdown-new-label {
    font-family: 'Titillium Web';
    font-weight: 700;
	font-size: 90%;
}

.countdown-new-label h1{
    font-family: 'Titillium Web';
    font-size: 1.5em;
    text-transform: uppercase;
    font-weight: 700;
}

.boldd {
    font-weight: 700;
}

a.enter-now:link, a.enter-now:visited, a.enter-now:hover, a.enter-now:active{
    color: #7ABF21;
}

a.enter-now h1 {
    font-weight: 700;
}

@media screen and (max-width: 48em) {
    .countdown-bar .countdown-container{
        width: 40%;
        display: inline-block;
        margin: 0 .5em;
    }

    .countdown-new-label h1{
        font-size: 1em;
        text-transform: uppercase;
        transform: translateY(45%);
    }
    .jijeg {
        font-size: 0.7em;
    }

    .enter-now h1 {
    	font-size: 1em;
    text-transform: uppercase;
    transform: translateY(45%)
    }

    .fixwid {
    }
}

.header-msg {
    display: none;
}

@media screen and (max-width: 48em) {
    .new-header {
        margin-top: 0 !important;
    }

    .sepreation-nav {
        margin-top: 0px !important;
    }
}


@media screen and (min-width: 1024px) {
    .new-header {
        margin-top: 130px !important;
    }

    .sepreation-nav {
        margin-top: 220px !important;
    }
}

.ui-corner-all, .ui-corner-top, .ui-corner-bottom {
    border-radius: 0 !important;
}

.ui-accordion-header {
    margin-bottom: 10px !important;
    box-shadow: 0 3px 2px #333;
}

.new-header-style{
    background-color: #000 !important;
}
