/* ## Theme Switcher ********************** */
.color-switcher {
    width: 220px;
    position: fixed;
    left: 40px;
    top: 180px;
    z-index: 999;
    padding: 0px;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.color-switcher h5 {
    font-size: 15px;
    margin-top: 0;
    padding: 0 20px 0;
}

.color-switcher p {
    font-size: 12px;
    color: #000;
    margin-bottom: 0;
    background: #fff;
    height: 40px;
    text-align: left;
    font-weight: bold;
    line-height: 42px;
    text-transform: uppercase;
}

.color-switcher ul {
    list-style: none;
    padding: 0;
}

.color-switcher ul li {
    float: left;
}

.color-switcher ul li a {
    display: block;
    width: 35px;
    height: 35px;
    outline: none;
    text-align: center;
    line-height: 35px;
    font-size: 14px;
    color: #333;
}

.color-switcher ul li a.blue {
    background: #00c1ef;
}

.color-switcher ul li a.green {
    background: #7ec333;
}

.color-switcher ul li a.red {
    background: #d33636;
}

.color-switcher ul li a.yellow {
    background: #EAD630;
}

.color-switcher ul li a.light-green {
    background: #64e294;
}

.color-switcher ul li a.orange {
    background: #eca928;
}

.color-switcher ul li a.pink {
    background: #fd6b6b;
}

.color-switcher ul li a.black {
    background: #999;
}

.color-switcher .gray {
    background: #656565;
}

.color-switcher .black {
    background: #000;
}

.color-switcher .white {
    background: #fff;
}

.color-switcher .light {
    background: #fff;
    width: 60px;
    color: #000;
    text-align: center;
    float: left;
    border: 1px solid #666;
    margin-top: 15px;
    margin-right: 22px;
}

.color-switcher .dark {
    background: #272727;
    width: 60px;
    float: right;
    color: #fff;
    border: 1px solid #666;
    margin-top: 15px;
}

.picker_close {
    width: 40px;
    height: 40px;
    position: absolute;
    left: -40px;
    top: 0px;
    text-align: center;
    background: #fff;
}

.picker_close i {
    font-size: 22px;
    margin-top: 9px;
}

.position {
    left: 40px;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.position .theme-colours {
    display: table;
}

.theme-colours, .layouts, .backgrounds, .choose-header, .choose-footer {
    display: none;
    text-align: left;
    padding-top: 0px;
    width: 100%;
    padding: 19px;
    background: #fff;
    padding-top: 0px;
}

.layouts a, .choose-header a, .choose-footer a {
    display: inline-block;
    text-align: center;
    width: 40%;
    margin: 0 5px 0 0;
    color: #5d5d5d;
    font-size: 15px;
    border: 1px solid #e7e7e7;
    padding: 5px 7px 2px;
}

.layouts a:hover, .choose-header a:hover, .choose-footer a:hover {
    border: 2px solid #a9a9a9;
    padding: 4px 5px 1px;
}

.styleswitcher {
    position: fixed;
    width: 120px;
    background: #ffffff;
    color: #595959;
    top: 150px;
    right: -123px;
    z-index: 999;
}

.styleswitcher p {
    color: #000 !important;
}

.styleswitcher.ackapa {
    left: 0;
}

.styleswitcher .switch {
    padding-left: 15px;
    padding-bottom: 10px;
}

.styleswitcher .switch h5 {
    margin-top: 20px;
}

.styleswitcher .switch p {
    margin-top: 10px;
}

.stylebutton {
    cursor: pointer;
    position: absolute;
    text-align: center;
    line-height: 40px;
    background: #fff;
    font-size: 20px;
    width: 40px;
    height: 40px;
    top: 0px;
    right: -40px;
}

.styleswitcher a {
    width: 24px;
    height: 24px;
    float: left;
    margin-right: 7px;
    margin-bottom: 10px;
    position: relative;
    z-index: 99999999;
}

.color-switcher ul li {
    margin: 3px;
}

/* ## GOTO Next ********************** */
.goto-next {
    text-transform: uppercase;
    position: absolute;
    bottom: 50px;
    z-index: 999;
    display: inline-block;
    text-align: center;
    left: 0;
    right: 0;
}

.goto-next a {
    display: block;
    position: relative;
}

@-moz-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -moz-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -moz-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    60% {
        -moz-transform: translateY(-15px);
        transform: translateY(-15px);
    };
}

@-webkit-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    };
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -moz-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    60% {
        -moz-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

.arrow {
    position: fixed;
    bottom: -25px;
    left: 50%;
    margin-left: -20px;
    width: 25px;
    height: 14px;
	/* background-image: url("../images/icon/bounsing-aerrow.png");*/
    background-size: contain;
}

.bounce {
    -moz-animation: bounce 5s infinite;
    -webkit-animation: bounce 5s infinite;
    animation: bounce 5s infinite;
}
/* Back to Top */
.back-to-top {
    width: 80px;
    height: 56px;
    background-image: url("../../../../../www.erathemes.com/demo/html/flibz/images/shape/featured-polygon.html");
    display: block;
    margin: 0 auto;
    color: #ccc;
    text-align: center;
    line-height: 50px;
    font-size: 35px;
    bottom: 0;
}

.back-to-top:hover {
    color: #ccc;
}

/* ## Time Line Section ####################### */

.time-line-section .odd {
    float: left;
    padding-right: 35px;
    position: relative;
    min-height: 170px;
}

.time-line-section .even {
    padding-left: 35px;
    margin-top: 25px;
    float: right;
    min-height: 170px;
}

.odd .timeline-badge {
    left: auto;
    right: -9px;
    background-color: #fff;
}

.even .timeline-badge {
    right: auto;
    left: -9px;
}

.time-line-section .even {
    float: right;
}

.time-line-image {
    list-style: none;
    padding-left: 0;
    margin: 10px 0;
}

.time-line-image li {
    display: inline-block;
    margin: 0 5px;
}

.timeline {
    list-style: none;
    padding: 40px;
    position: relative;
    background-image: url("../images/time-line-bg.png");
    background-repeat: repeat-y;
    background-position: center top;
    height: 100%;
    display: inline-block;
    margin-bottom: 0;
}

.timeline > li {
    float: left;
    margin-bottom: 20px;
    position: relative;
    width: 50%;
}

.timeline > li:hover > .timeline-panel {
    background-color: #00c1ef;
    color: #fff;
}

.timeline > li > .timeline-panel {
    width: 100%;
    float: left;
    padding: 20px;
    position: relative;
    background-color: #fff;
}

.timeline > li:hover > .timeline-badge {
    background-image: url("../images/icon/time-line-polygon-hover.png");
}

.timeline > li:hover > .timeline-panel:before {
    position: absolute;
    top: 26px;
    right: -15px;
    display: inline-block;
    border-top: 15px solid transparent;
    border-left: 15px solid #00c1ef;
    border-right: 0 solid #00c1ef;
    border-bottom: 15px solid transparent;
    content: " ";
}

.timeline > li:hover > .timeline-panel:after {
    position: absolute;
    top: 27px;
    right: -14px;
    display: inline-block;
    border-top: 14px solid transparent;
    border-left: 14px solid #00c1ef;
    border-right: 0 solid #00c1ef;
    border-bottom: 14px solid transparent;
    content: " ";
}

.timeline > li > .timeline-badge {
    color: #fff;
    width: 17px;
    height: 19px;
    line-height: 50px;
    font-size: 1.4em;
    text-align: center;
    position: absolute;
    top: 30px;
    background-color: transparent;
    z-index: 100;
    border-top-right-radius: 50%;
    border-top-left-radius: 50%;
    border-bottom-right-radius: 50%;
    border-bottom-left-radius: 50%;
    background-image: url("../images/icon/time-line-polygon.png");
}

.timeline > li.timeline-inverted > .timeline-panel {
    float: right;
    width: 100%;
}

.timeline > li.timeline-inverted > .timeline-panel:before {
    border-left-width: 0;
    border-right-width: 15px;
    left: -15px;
    right: auto;
}

.timeline > li.timeline-inverted > .timeline-panel:after {
    border-left-width: 0;
    border-right-width: 14px;
    left: -14px;
    right: auto;
}

.timeline-title {
    margin-top: 0;
    color: inherit;
    font-size: 14px;
}

.timeline-title a {
    color: #333;
}

.timeline > li:hover .timeline-title a {
    color: #fff;
}

.timeline-title span {
    float: right;
    font-size: 13px;
    text-transform: uppercase;
}

.timeline-body > p {
    font-size: 12px;
}

.timeline-body > p,
.timeline-body > ul {
    margin-bottom: 0;
}

.timeline-body > p + p {
    margin-top: 5px;
}

.timeline-end {
    text-align: center;
    color: #000;
    margin-top: 70px;
}

@media (max-width: 767px) {
    ul.timeline:before {
        left: 40px;
    }

    ul.timeline > li > .timeline-badge {
        left: 15px;
        margin-left: 0;
        top: 16px;
    }

    ul.timeline > li > .timeline-panel {
        float: right;
    }

    ul.timeline > li > .timeline-panel:before {
        border-left-width: 0;
        border-right-width: 15px;
        left: -15px;
        right: auto;
    }

    ul.timeline > li > .timeline-panel:after {
        border-left-width: 0;
        border-right-width: 14px;
        left: -14px;
        right: auto;
    }
}

/* Superslides navigation */
.slides-navigation {
    margin: 0 auto;
    position: absolute;
    z-index: 3;
    top: 46%;
    width: 100%;
}

.slides-navigation a {
    display: block;
    text-decoration: none;
    color: white;
    font-size: 22px;
    margin: 0 25px;
    background-color: #00C1EF;
    text-shadow: 0 1px 1px #000;
    text-align: center;
    height: 34px;
    width: 40px;
    top: -40px;
    padding: 1px;
    border-radius: 0 5px;
    -webkit-transition: background 0.15s ease;
    -moz-transition: background 0.15s ease;
    -o-transition: background 0.15s ease;
    transition: background 0.15s ease;
}

.slides-navigation a:hover {
    background: rgba(0, 0, 0, 0.4);
}

.slides-navigation a {
    position: absolute;
    display: block;
}

.slides-navigation a.prev {
    left: 0;
}

.slides-navigation a.next {
    right: 0;
}

.slides-pagination {
    position: absolute;
    z-index: 3;
    bottom: auto;
    text-align: center;
    width: 100%;
    top: 542px;
}

.slides-pagination a {
    background-color: transparent;
    background-image: url("../images/icon/slider-indicator.png");
    background-repeat: no-repeat;
    border: medium none;
    border-radius: 0;
    height: 14px;
    width: 12px;
    font-size: 0;
    display: inline-block;
    margin: 0 4px;
}

.slides-pagination a.current {
    background-image: url("../images/icon/slider-indicator-active.png");
    background-color: transparent;
    width: 11px;
    height: 14px;
}


@-moz-keyframes bounce_escapingBallG {
    0% {
        left: 0px;
        -moz-transform: scale(0.5, 1);
    }

    25% {
        left: 42px;
        -moz-transform: scale(1, 0.5);
    }

    50% {
        left: 106px;
        -moz-transform: scale(0.5, 1);
    }

    75% {
        left: 42px;
        -moz-transform: scale(1, 0.5);
    }

    100% {
        left: 0px;
        -moz-transform: scale(0.5, 1);
    };
}

@-webkit-keyframes bounce_escapingBallG {
    0% {
        left: 0px;
        -webkit-transform: scale(0.5, 1);
    }

    25% {
        left: 42px;
        -webkit-transform: scale(1, 0.5);
    }

    50% {
        left: 106px;
        -webkit-transform: scale(0.5, 1);
    }

    75% {
        left: 42px;
        -webkit-transform: scale(1, 0.5);
    }

    100% {
        left: 0px;
        -webkit-transform: scale(0.5, 1);
    };
}

@-ms-keyframes bounce_escapingBallG {
    0% {
        left: 0px;
        -ms-transform: scale(0.5, 1);
    }

    25% {
        left: 42px;
        -ms-transform: scale(1, 0.5);
    }

    50% {
        left: 106px;
        -ms-transform: scale(0.5, 1);
    }

    75% {
        left: 42px;
        -ms-transform: scale(1, 0.5);
    }

    100% {
        left: 0px;
        -ms-transform: scale(0.5, 1);
    };
}

@-o-keyframes bounce_escapingBallG {
    0% {
        left: 0px;
        -o-transform: scale(0.5, 1);
    }

    25% {
        left: 42px;
        -o-transform: scale(1, 0.5);
    }

    50% {
        left: 106px;
        -o-transform: scale(0.5, 1);
    }

    75% {
        left: 42px;
        -o-transform: scale(1, 0.5);
    }

    100% {
        left: 0px;
        -o-transform: scale(0.5, 1);
    };
}

@keyframes bounce_escapingBallG {
    0% {
        left: 0px;
        transform: scale(0.5, 1);
    }

    25% {
        left: 42px;
        transform: scale(1, 0.5);
    }

    50% {
        left: 106px;
        transform: scale(0.5, 1);
    }

    75% {
        left: 42px;
        transform: scale(1, 0.5);
    }

    100% {
        left: 0px;
        transform: scale(0.5, 1);
    }
}
