/***** Фотоальбом *****/
.album-wrapper__item {
    position: relative;
    display: block;
}

.album-wrapper__hover {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.4);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    opacity: 0;
}

.album-wrapper__hover .overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #fff;
    font-size: 30px;
}

.album-wrapper__item:hover .album-wrapper__hover {
    opacity: 1;
}

/***** Конец блока Фотоальбом *****/
.slick-slider:not(.slick-initialized)> :nth-child(n+2) {
    display: none;
}

#wrapper {
    min-height: 100vh;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    overflow-x: hidden;
}

.footer {
    margin-top: auto;
}

.form-group {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.control-label {
    display: block;
    width: 100%;
}

.checkbox+.checkbox,
.radio+.radio {
    position: relative;
}

/**	13. Owl Carousel v1.3.3
*************************************************** **/
/* clearfix */
.owl-carousel .owl-wrapper:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

/* display none until init */
.owl-carousel {
    display: none;
    position: relative;
    width: 100%;
    -ms-touch-action: pan-y;
}

.owl-carousel .owl-wrapper {
    display: none;
    position: relative;
    -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper-outer {
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 0;
}

.owl-carousel .owl-wrapper-outer.autoHeight {
    -webkit-transition: height 500ms ease-in-out;
    -moz-transition: height 500ms ease-in-out;
    -ms-transition: height 500ms ease-in-out;
    -o-transition: height 500ms ease-in-out;
    transition: height 500ms ease-in-out;
}

.owl-carousel .owl-item {
    float: left;
}

.owl-controls .owl-page,
.owl-controls .owl-buttons div {
    cursor: pointer;
}

.owl-controls {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.owl-carousel.featured .owl-controls .owl-prev {
    /*margin-right:3px;*/
}

#progressBar {
    width: 100%;
    background: rgba(0, 0, 0, 0.05);
}

#progressBar #bar {
    height: 3px;
    width: 100%;
    background-color: #333;
}

/* mouse grab icon */
.grabbing {
    cursor: url(../images/grabbing.png) 8 8, move;
}

/* fix */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}

/* Owl Carousel CSS3 Transitions  v1.3.2 */
.owl-origin {
    -webkit-perspective: 1200px;
    -webkit-perspective-origin-x: 50%;
    -webkit-perspective-origin-y: 50%;
    -moz-perspective: 1200px;
    -moz-perspective-origin-x: 50%;
    -moz-perspective-origin-y: 50%;
    perspective: 1200px;
}

/* fade */
.owl-fade-out {
    z-index: 10;
    -webkit-animation: fadeOut .7s both ease;
    -moz-animation: fadeOut .7s both ease;
    animation: fadeOut .7s both ease;
}

.owl-fade-in {
    -webkit-animation: fadeIn .7s both ease;
    -moz-animation: fadeIn .7s both ease;
    animation: fadeIn .7s both ease;
}

/* backSlide */
.owl-backSlide-out {
    -webkit-animation: backSlideOut 1s both ease;
    -moz-animation: backSlideOut 1s both ease;
    animation: backSlideOut 1s both ease;
}

.owl-backSlide-in {
    -webkit-animation: backSlideIn 1s both ease;
    -moz-animation: backSlideIn 1s both ease;
    animation: backSlideIn 1s both ease;
}

/* goDown */
.owl-goDown-out {
    -webkit-animation: scaleToFade .7s ease both;
    -moz-animation: scaleToFade .7s ease both;
    animation: scaleToFade .7s ease both;
}

.owl-goDown-in {
    -webkit-animation: goDown .6s ease both;
    -moz-animation: goDown .6s ease both;
    animation: goDown .6s ease both;
}

/* scaleUp */
.owl-fadeUp-in {
    -webkit-animation: scaleUpFrom .5s ease both;
    -moz-animation: scaleUpFrom .5s ease both;
    animation: scaleUpFrom .5s ease both;
}

.owl-fadeUp-out {
    -webkit-animation: scaleUpTo .5s ease both;
    -moz-animation: scaleUpTo .5s ease both;
    animation: scaleUpTo .5s ease both;
}

.owl-buttons {
    text-decoration: none
}


/* Keyframes */
@-webkit-keyframes empty {
    0% {
        opacity: 1
    }
}

@-moz-keyframes empty {
    0% {
        opacity: 1
    }
}

@keyframes empty {
    0% {
        opacity: 1
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-moz-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-webkit-keyframes backSlideOut {
    25% {
        opacity: .5;
        -webkit-transform: translateZ(-500px);
    }

    75% {
        opacity: .5;
        -webkit-transform: translateZ(-500px) translateX(-200%);
    }

    100% {
        opacity: .5;
        -webkit-transform: translateZ(-500px) translateX(-200%);
    }
}

@-moz-keyframes backSlideOut {
    25% {
        opacity: .5;
        -moz-transform: translateZ(-500px);
    }

    75% {
        opacity: .5;
        -moz-transform: translateZ(-500px) translateX(-200%);
    }

    100% {
        opacity: .5;
        -moz-transform: translateZ(-500px) translateX(-200%);
    }
}

@keyframes backSlideOut {
    25% {
        opacity: .5;
        transform: translateZ(-500px);
    }

    75% {
        opacity: .5;
        transform: translateZ(-500px) translateX(-200%);
    }

    100% {
        opacity: .5;
        transform: translateZ(-500px) translateX(-200%);
    }
}

@-webkit-keyframes backSlideIn {

    0%,
    25% {
        opacity: .5;
        -webkit-transform: translateZ(-500px) translateX(200%);
    }

    75% {
        opacity: .5;
        -webkit-transform: translateZ(-500px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateZ(0) translateX(0);
    }
}

@-moz-keyframes backSlideIn {

    0%,
    25% {
        opacity: .5;
        -moz-transform: translateZ(-500px) translateX(200%);
    }

    75% {
        opacity: .5;
        -moz-transform: translateZ(-500px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateZ(0) translateX(0);
    }
}

@keyframes backSlideIn {

    0%,
    25% {
        opacity: .5;
        transform: translateZ(-500px) translateX(200%);
    }

    75% {
        opacity: .5;
        transform: translateZ(-500px);
    }

    100% {
        opacity: 1;
        transform: translateZ(0) translateX(0);
    }
}

@-webkit-keyframes scaleToFade {
    to {
        opacity: 0;
        -webkit-transform: scale(.8);
    }
}

@-moz-keyframes scaleToFade {
    to {
        opacity: 0;
        -moz-transform: scale(.8);
    }
}

@keyframes scaleToFade {
    to {
        opacity: 0;
        transform: scale(.8);
    }
}

@-webkit-keyframes goDown {
    from {
        -webkit-transform: translateY(-100%);
    }
}

@-moz-keyframes goDown {
    from {
        -moz-transform: translateY(-100%);
    }
}

@keyframes goDown {
    from {
        transform: translateY(-100%);
    }
}

@-webkit-keyframes scaleUpFrom {
    from {
        opacity: 0;
        -webkit-transform: scale(1.5);
    }
}

@-moz-keyframes scaleUpFrom {
    from {
        opacity: 0;
        -moz-transform: scale(1.5);
    }
}

@keyframes scaleUpFrom {
    from {
        opacity: 0;
        transform: scale(1.5);
    }
}

@-webkit-keyframes scaleUpTo {
    to {
        opacity: 0;
        -webkit-transform: scale(1.5);
    }
}

@-moz-keyframes scaleUpTo {
    to {
        opacity: 0;
        -moz-transform: scale(1.5);
    }
}

@keyframes scaleUpTo {
    to {
        opacity: 0;
        transform: scale(1.5);
    }
}

/*CUSTOM REWRITE**/
.owl-carousel {
    overflow: hidden;
    position: relative;
}

.owl-carousel.owl-padding-0 .owl-item {
    padding: 0 !important;
}

.owl-carousel.owl-padding-1 .owl-item {
    padding: 0 1px;
}

.owl-carousel.owl-padding-2 .owl-item {
    padding: 0 2px;
}

.owl-carousel.owl-padding-3 .owl-item {
    padding: 0 3px;
}

.owl-carousel.owl-padding-6 .owl-item {
    padding: 0 6px;
}

.owl-carousel.owl-padding-10 .owl-item {
    padding: 0 10px;
}

.owl-carousel.owl-padding-15 .owl-item {
    padding: 0 15px;
}

.owl-carousel.owl-padding-20 .owl-item {
    padding: 0 20px;
}

.owl-carousel img {
    display: inline-block;
    width: 100%;
}

.owl-carousel.buttons-autohide .owl-buttons {
    filter: Alpha(Opacity=0);
    opacity: 0;
    -webkit-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

.owl-carousel.buttons-autohide:hover .owl-buttons {
    filter: Alpha(Opacity=100);
    opacity: 1;
}

.owl-theme .owl-controls .owl-buttons div {
    color: #121212;
    background: #fff;
    border: #fff 1px solid;
    opacity: 1;
    filter: Alpha(Opacity=100);
    /*-webkit-border-radius: 3px;-moz-border-radius: 3px;border-radius: 3px;*/
}

section.dark .owl-theme .owl-controls .owl-buttons div {
    color: #fff;
    background: #212121;
    border: #212121 1px solid;
}

.controlls-over .owl-controls .owl-prev {
    position: absolute;
    top: 50%;
    margin-top: -28px;
    right: auto;
    left: -13px;
    zoom: 1;
    width: 36px;
    height: 36px;
    opacity: 0;
}

.controlls-over .owl-controls .owl-next {
    position: absolute;
    top: 50%;
    margin-top: -28px;
    left: auto;
    right: -13px;
    zoom: 1;
    width: 36px;
    height: 36px;
    opacity: 0;
}

.controlls-over .owl-pagination {
    text-align: center;
    position: absolute;
    width: 60%;
    margin: auto;
    bottom: -20px;
    left: 0;
    right: 0;
    z-index: 1;
}

.owl-theme.controlls-over .owl-controls .owl-page {
    background: rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.owl-theme.controlls-over .owl-controls .owl-page:first-child {
    -webkit-border-top-left-radius: 10px;
    -webkit-border-bottom-left-radius: 10px;
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-bottomleft: 10px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.owl-theme.controlls-over .owl-controls .owl-page:last-child {
    -webkit-border-top-right-radius: 10px;
    -webkit-border-bottom-right-radius: 10px;
    -moz-border-radius-topright: 10px;
    -moz-border-radius-bottomright: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.owl-theme.controlls-over .owl-controls .owl-page span {
    background: #fff;
}

.bottom-pagination .owl-controls .owl-page {
    margin-bottom: -40px !important;
}

/* top text caption */
/*.owl-carousel .owl-item div {position:relative;text-align:center;}*/
.owl-carousel .owl-caption {
    padding: 10px;
    position: absolute !important;
    left: 0;
    top: 0;
    right: 0;
    margin-top: 0;
    max-width: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: block;
    color: #fff;
}

.owl-carousel .owl-caption p {
    color: #fff;
    font-size: 13px;
    line-height: 20px;
    padding: 0;
    margin: 0;
}

.owl-carousel .owl-caption .h1,
.owl-carousel .owl-caption .h1 a,
.owl-carousel .owl-caption .h2,
.owl-carousel .owl-caption .h2 a,
.owl-carousel .owl-caption .h3,
.owl-carousel .owl-caption .h3 a {
    color: #fff;
    font-size: 21px;
    line-height: 21px;
    font-weight: bold;
    margin-bottom: 10px;
}

.owl-carousel .owl-caption a {
    color: #fff;
    font-weight: bold;
}

.owl-carousel.controls-hover-only .owl-controls {
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

.slider:hover .owl-carousel.controls-hover-only .owl-controls,
.owl-carousel.controls-hover-only:hover .owl-controls {
    filter: alpha(opacity=100);
    opacity: 1;
}

/* Featured Item */
.owl-carousel.featured .owl-featured-item {
    width: 99%;
    padding-bottom: 15px;
    text-align: center;
    display: block;
    webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.owl-carousel.featured .owl-featured-item:hover {
    background-color: #eaeaea;
}

.owl-carousel.featured .owl-featured-item a.figure {
    margin: 0;
    padding: 0;
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
    text-align: center;
    z-index: 0;
    position: relative;
}

.owl-carousel.featured .owl-featured-item a.figure>img {
    height: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    vertical-align: top;
}

.owl-carousel.featured .owl-featured-detail {
    position: relative;
    padding-top: 6px;
}

.owl-carousel.featured .owl-featured-detail:after {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
    left: 50%;
    margin-left: -10px;
    top: -10px;
    z-index: 10;
    webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.owl-carousel.featured .owl-featured-item:hover>.owl-featured-detail:after {
    border-bottom: 10px solid #eaeaea;
}

.owl-carousel.featured .owl-featured-detail>a.featured-title {
    color: #333;
    margin-top: 6px;
    display: block;
}

.owl-carousel.featured .owl-featured-detail>span.price {
    display: block;
    margin-bottom: 6px;
}

.owl-title {
    border-bottom: 2px solid;
    font-size: 16px;
    line-height: 20px;
    text-transform: none;
    padding: 0 0 5px 0;
    font-weight: 600;
    color: #000000;
}

.owl-carousel.featured a.figure>span {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.owl-carousel.featured a.figure>span>i {
    color: #333;
    position: absolute;
    left: 50%;
    top: 50%;
    background: #fff;
    font-size: 21px;
    width: 50px;
    height: 50px;
    line-height: 50px !important;
    text-align: center;
    margin-left: -20px;
    margin-top: -20px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-border-bottom-right-radius: 20px;
    -webkit-border-top-left-radius: 20px;
    -moz-border-radius-bottomright: 20px;
    -moz-border-radius-topleft: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
}

.owl-carousel.featured a.figure:hover>span {
    filter: alpha(opacity=100);
    opacity: 1;
}

.owl-carousel.featured {
    overflow: inherit !important;
}

.owl-carousel.featured .owl-prev,
.owl-carousel.featured .owl-next {
    display: inline-block !important;
    color: #999 !important;
    width: 33px !important;
    height: 33px !important;
    line-height: 33px !important;
    font-size: 20px !important;
    vertical-align: middle;
    text-align: center;
}

.owl-carousel.featured .owl-prev .fa,
.owl-carousel.featured .owl-next .fa {
    display: block;
    line-height: 33px;
}

.owl-carousel.featured .owl-prev:hover,
.owl-carousel.featured .owl-next:hover {
    color: #121212 !important;
}

section.dark .owl-carousel.featured .owl-featured-detail>a.featured-title {
    color: #fff;
}

section.dark .owl-carousel.featured .owl-featured-detail:after {
    border-bottom-color: #212121;
}

section.dark .owl-carousel.featured .owl-featured-item:hover {
    background-color: #111;
}

section.dark .owl-carousel.featured .owl-featured-item:hover>.owl-featured-detail:after {
    border-bottom-color: #111;
}

section.dark .owl-carousel.featured .owl-prev,
section.dark .owl-carousel.featured .owl-next {
    color: #999 !important
}

section.dark .owl-carousel.featured .owl-prev:hover,
section.dark .owl-carousel.featured .owl-next:hover {
    color: #fff !important
}

section.dark h2.owl-featured {
    border-bottom-color: #666;
}

/* buttons bottom */
.owl-carousel.buttons-bottom .owl-controls {
    top: auto !important;
}

.owl-carousel.buttons-bottom .owl-next,
.owl-carousel.buttons-bottom .owl-prev {
    margin-top: -20px !important;
}

/* special carousel title */
.owl-carousel .owl-carousel-caption {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    color: #fff;
    padding: 20px;
    height: 96px;
    overflow: hidden;
}

.owl-carousel .owl-carousel-caption.top {
    top: 0;
    bottom: auto;
}

.owl-carousel .owl-carousel-caption.bottom {
    top: auto;
    bottom: 29px;
}

.owl-carousel .owl-carousel-caption .h2,
.owl-carousel .owl-carousel-caption .h3,
.owl-carousel .owl-carousel-caption .h4 {
    color: #fff;
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 10px;
    font-weight: bold;
    overflow: hidden;
    display: block;
    width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.owl-carousel .owl-carousel-caption p {
    color: #fff;
    font-size: 12px;
    line-height: 15px;
    padding: 0;
    margin: 0;
}

.owl-controls .owl-page,
.owl-controls .owl-buttons div {
    cursor: pointer;
}

.controlls-over .owl-controls .owl-prev {
    margin-left: 10px;
}

.controlls-over .owl-controls .owl-next {
    margin-right: 10px;
}

/* Styling Pagination*/
.owl-theme .owl-controls .owl-page {
    display: inline-block;
    zoom: 1;
    *display: inline;
    /*IE7 life-saver */
}

.owl-theme .owl-controls .owl-page span {
    display: block;
    width: 20px;
    height: 5px;
    margin: 5px 7px;
    filter: Alpha(Opacity=50);
    /*IE7 fix*/
    opacity: 0.5;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    background: #869791;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
    filter: Alpha(Opacity=100);
    /*IE7 fix*/
    opacity: 1;
}

/* If PaginationNumbers is true */
.owl-theme .owl-controls .owl-page span.owl-numbers {
    height: auto;
    width: auto;
    color: #FFF;
    padding: 2px 10px;
    font-size: 12px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}

@media only screen and (max-width: 600px) {
    .owl-pagination {
        display: none;
    }
}

/**	14. Animate v3.2.3        https://github.com/daneden/animate.css
*************************************************** **/
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s
}

@-webkit-keyframes bounce {

    0%,
    100%,
    20%,
    53%,
    80% {
        -webkit-transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
        transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    40%,
    43% {
        -webkit-transition-timing-function: cubic-bezier(0.755, .050, .855, .060);
        transition-timing-function: cubic-bezier(0.755, .050, .855, .060);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0)
    }

    70% {
        -webkit-transition-timing-function: cubic-bezier(0.755, .050, .855, .060);
        transition-timing-function: cubic-bezier(0.755, .050, .855, .060);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0)
    }
}

@keyframes bounce {

    0%,
    100%,
    20%,
    53%,
    80% {
        -webkit-transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
        transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    40%,
    43% {
        -webkit-transition-timing-function: cubic-bezier(0.755, .050, .855, .060);
        transition-timing-function: cubic-bezier(0.755, .050, .855, .060);
        -webkit-transform: translate3d(0, -30px, 0);
        -ms-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0)
    }

    70% {
        -webkit-transition-timing-function: cubic-bezier(0.755, .050, .855, .060);
        transition-timing-function: cubic-bezier(0.755, .050, .855, .060);
        -webkit-transform: translate3d(0, -15px, 0);
        -ms-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        -ms-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0)
    }
}

.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom
}

@-webkit-keyframes flash {

    0%,
    100%,
    50% {
        opacity: 1
    }

    25%,
    75% {
        opacity: 0
    }
}

@keyframes flash {

    0%,
    100%,
    50% {
        opacity: 1
    }

    25%,
    75% {
        opacity: 0
    }
}

.flash {
    -webkit-animation-name: flash;
    animation-name: flash
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05)
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        -ms-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05)
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse
}

@-webkit-keyframes rubberBand {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }

    30% {
        -webkit-transform: scale3d(1.25, .75, 1);
        transform: scale3d(1.25, .75, 1)
    }

    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1)
    }

    50% {
        -webkit-transform: scale3d(1.15, .85, 1);
        transform: scale3d(1.15, .85, 1)
    }

    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1)
    }

    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1)
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes rubberBand {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }

    30% {
        -webkit-transform: scale3d(1.25, .75, 1);
        -ms-transform: scale3d(1.25, .75, 1);
        transform: scale3d(1.25, .75, 1)
    }

    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        -ms-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1)
    }

    50% {
        -webkit-transform: scale3d(1.15, .85, 1);
        -ms-transform: scale3d(1.15, .85, 1);
        transform: scale3d(1.15, .85, 1)
    }

    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        -ms-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1)
    }

    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        -ms-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1)
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand
}

@-webkit-keyframes shake {

    0%,
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }

    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }
}

@keyframes shake {

    0%,
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        -ms-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }

    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translate3d(10px, 0, 0);
        -ms-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }
}

.shake {
    -webkit-animation-name: shake;
    animation-name: shake
}

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg)
    }

    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg)
    }

    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg)
    }

    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg)
    }

    100% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg)
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        -ms-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg)
    }

    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        -ms-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg)
    }

    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        -ms-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg)
    }

    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        -ms-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg)
    }

    100% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        -ms-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg)
    }
}

.swing {
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing
}

@-webkit-keyframes tada {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }

    10%,
    20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg)
    }

    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
    }

    40%,
    60%,
    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes tada {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }

    10%,
    20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        -ms-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg)
    }

    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        -ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
    }

    40%,
    60%,
    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        -ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

.tada {
    -webkit-animation-name: tada;
    animation-name: tada
}

@-webkit-keyframes wobble {
    0% {
        -webkit-transform: none;
        transform: none
    }

    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
    }

    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
    }

    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
    }

    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
    }

    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
    }

    100% {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes wobble {
    0% {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }

    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        -ms-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
    }

    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        -ms-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
    }

    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        -ms-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
    }

    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        -ms-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
    }

    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        -ms-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
    }

    100% {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
}

.wobble {
    -webkit-animation-name: wobble;
    animation-name: wobble
}

@-webkit-keyframes bounceIn {

    0%,
    100%,
    20%,
    40%,
    60%,
    80% {
        -webkit-transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
        transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }

    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03)
    }

    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97)
    }

    100% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes bounceIn {

    0%,
    100%,
    20%,
    40%,
    60%,
    80% {
        -webkit-transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
        transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        -ms-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        -ms-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }

    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        -ms-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        -ms-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03)
    }

    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        -ms-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97)
    }

    100% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

.bounceIn {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
    -webkit-animation-duration: .75s;
    animation-duration: .75s
}

@-webkit-keyframes bounceInDown {

    0%,
    100%,
    60%,
    75%,
    90% {
        -webkit-transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
        transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0)
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0)
    }

    100% {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes bounceInDown {

    0%,
    100%,
    60%,
    75%,
    90% {
        -webkit-transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
        transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        -ms-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        -ms-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0)
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        -ms-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        -ms-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0)
    }

    100% {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
}

.bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown
}

@-webkit-keyframes bounceInLeft {

    0%,
    100%,
    60%,
    75%,
    90% {
        -webkit-transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
        transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0)
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0)
    }

    100% {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes bounceInLeft {

    0%,
    100%,
    60%,
    75%,
    90% {
        -webkit-transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
        transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        -ms-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        -ms-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0)
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        -ms-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        -ms-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0)
    }

    100% {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
}

.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft
}

@-webkit-keyframes bounceInRight {

    0%,
    100%,
    60%,
    75%,
    90% {
        -webkit-transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
        transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0)
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0)
    }

    100% {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes bounceInRight {

    0%,
    100%,
    60%,
    75%,
    90% {
        -webkit-transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
        transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        -ms-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        -ms-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0)
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        -ms-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        -ms-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0)
    }

    100% {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
}

.bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight
}

@-webkit-keyframes bounceInUp {

    0%,
    100%,
    60%,
    75%,
    90% {
        -webkit-transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
        transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }

    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0)
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes bounceInUp {

    0%,
    100%,
    60%,
    75%,
    90% {
        -webkit-transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
        transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        -ms-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        -ms-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }

    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        -ms-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        -ms-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0)
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp
}

@-webkit-keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }

    50%,
    55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
}

@keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9, .9, .9);
        -ms-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }

    50%,
    55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        -ms-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        -ms-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
}

.bounceOut {
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut;
    -webkit-animation-duration: .75s;
    animation-duration: .75s
}

@-webkit-keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }

    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

@keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        -ms-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }

    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        -ms-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        -ms-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

.bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown
}

@-webkit-keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
}

@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        -ms-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        -ms-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
}

.bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft
}

@-webkit-keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
}

@keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        -ms-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        -ms-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
}

.bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight
}

@-webkit-keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }

    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

@keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        -ms-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }

    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        -ms-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        -ms-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

.bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        -ms-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown
}

@-webkit-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        -ms-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
}

.fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        -ms-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft
}

@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        -ms-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
}

.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        -ms-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight
}

@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        -ms-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
}

.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        -ms-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}

@-webkit-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        -ms-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
}

.fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut
}

@-webkit-keyframes fadeOutDown {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
}

@keyframes fadeOutDown {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        -ms-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
}

.fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown
}

@-webkit-keyframes fadeOutDownBig {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        -ms-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

.fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig
}

@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        -ms-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
}

.fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft
}

@-webkit-keyframes fadeOutLeftBig {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        -ms-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
}

.fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig
}

@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        -ms-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
}

.fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight
}

@-webkit-keyframes fadeOutRightBig {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        -ms-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
}

.fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig
}

@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
}

@keyframes fadeOutUp {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        -ms-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
}

.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp
}

@-webkit-keyframes fadeOutUpBig {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        -ms-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

.fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig
}

@-webkit-keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    80% {
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
        transform: perspective(400px) scale3d(.95, .95, .95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

@keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -ms-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -ms-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -ms-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    80% {
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
        -ms-transform: perspective(400px) scale3d(.95, .95, .95);
        transform: perspective(400px) scale3d(.95, .95, .95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    100% {
        -webkit-transform: perspective(400px);
        -ms-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

.animated.flip {
    -webkit-backface-visibility: visible;
    -ms-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip
}

@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -ms-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -ms-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        -ms-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        -ms-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
    }

    100% {
        -webkit-transform: perspective(400px);
        -ms-transform: perspective(400px);
        transform: perspective(400px)
    }
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX
}

@-webkit-keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -ms-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -ms-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        -ms-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        -ms-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
    }

    100% {
        -webkit-transform: perspective(400px);
        -ms-transform: perspective(400px);
        transform: perspective(400px)
    }
}

.flipInY {
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInY;
    animation-name: flipInY
}

@-webkit-keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1
    }

    100% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0
    }
}

@keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px);
        -ms-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -ms-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1
    }

    100% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -ms-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0
    }
}

.flipOutX {
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important
}

@-webkit-keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1
    }

    100% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0
    }
}

@keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px);
        -ms-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        -ms-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1
    }

    100% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -ms-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0
    }
}

.flipOutY {
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY;
    -webkit-animation-duration: .75s;
    animation-duration: .75s
}

@-webkit-keyframes lightSpeedIn {
    0% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0
    }

    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1
    }

    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1
    }

    100% {
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes lightSpeedIn {
    0% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        -ms-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0
    }

    60% {
        -webkit-transform: skewX(20deg);
        -ms-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1
    }

    80% {
        -webkit-transform: skewX(-5deg);
        -ms-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1
    }

    100% {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        opacity: 1
    }
}

.lightSpeedIn {
    -webkit-animation-name: lightSpeedIn;
    animation-name: lightSpeedIn;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
}

@-webkit-keyframes lightSpeedOut {
    0% {
        opacity: 1
    }

    100% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0
    }
}

@keyframes lightSpeedOut {
    0% {
        opacity: 1
    }

    100% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        -ms-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0
    }
}

.lightSpeedOut {
    -webkit-animation-name: lightSpeedOut;
    animation-name: lightSpeedOut;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
}

@-webkit-keyframes rotateIn {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes rotateIn {
    0% {
        -webkit-transform-origin: center;
        -ms-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        -ms-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: center;
        -ms-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        opacity: 1
    }
}

.rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn
}

@-webkit-keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        -ms-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        opacity: 1
    }
}

.rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft
}

@-webkit-keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        -ms-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        opacity: 1
    }
}

.rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight
}

@-webkit-keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        -ms-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        opacity: 1
    }
}

.rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft
}

@-webkit-keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        -ms-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        opacity: 1
    }
}

.rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight
}

@-webkit-keyframes rotateOut {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1
    }

    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0
    }
}

@keyframes rotateOut {
    0% {
        -webkit-transform-origin: center;
        -ms-transform-origin: center;
        transform-origin: center;
        opacity: 1
    }

    100% {
        -webkit-transform-origin: center;
        -ms-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        -ms-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0
    }
}

.rotateOut {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut
}

@-webkit-keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }
}

@keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1
    }

    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        -ms-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }
}

.rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft
}

@-webkit-keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
}

@keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1
    }

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        -ms-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
}

.rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight
}

@-webkit-keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
}

@keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1
    }

    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        -ms-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
}

.rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft
}

@-webkit-keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0
    }
}

@keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1
    }

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        -ms-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0
    }
}

.rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight
}

@-webkit-keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    20%,
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    40%,
    80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1
    }

    100% {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0
    }
}

@keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    20%,
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        -ms-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    40%,
    80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        -ms-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1
    }

    100% {
        -webkit-transform: translate3d(0, 700px, 0);
        -ms-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0
    }
}

.hinge {
    -webkit-animation-name: hinge;
    animation-name: hinge
}

@-webkit-keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        -ms-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
}

.rollIn {
    -webkit-animation-name: rollIn;
    animation-name: rollIn
}

@-webkit-keyframes rollOut {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg)
    }
}

@keyframes rollOut {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        -ms-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg)
    }
}

.rollOut {
    -webkit-animation-name: rollOut;
    animation-name: rollOut
}

@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }

    50% {
        opacity: 1
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        -ms-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }

    50% {
        opacity: 1
    }
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn
}

@-webkit-keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(0.55, .055, .675, .19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(0.175, .885, .32, 1)
    }
}

@keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        -ms-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(0.55, .055, .675, .19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -ms-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(0.175, .885, .32, 1)
    }
}

.zoomInDown {
    -webkit-animation-name: zoomInDown;
    animation-name: zoomInDown
}

@-webkit-keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(0.55, .055, .675, .19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(0.175, .885, .32, 1)
    }
}

@keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        -ms-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(0.55, .055, .675, .19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        -ms-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(0.175, .885, .32, 1)
    }
}

.zoomInLeft {
    -webkit-animation-name: zoomInLeft;
    animation-name: zoomInLeft
}

@-webkit-keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(0.55, .055, .675, .19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(0.175, .885, .32, 1)
    }
}

@keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        -ms-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(0.55, .055, .675, .19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        -ms-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(0.175, .885, .32, 1)
    }
}

.zoomInRight {
    -webkit-animation-name: zoomInRight;
    animation-name: zoomInRight
}

@-webkit-keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(0.55, .055, .675, .19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(0.175, .885, .32, 1)
    }
}

@keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        -ms-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(0.55, .055, .675, .19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -ms-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(0.175, .885, .32, 1)
    }
}

.zoomInUp {
    -webkit-animation-name: zoomInUp;
    animation-name: zoomInUp
}

@-webkit-keyframes zoomOut {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }

    100% {
        opacity: 0
    }
}

@keyframes zoomOut {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        -ms-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }

    100% {
        opacity: 0
    }
}

.zoomOut {
    -webkit-animation-name: zoomOut;
    animation-name: zoomOut
}

@-webkit-keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(0.55, .055, .675, .19)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(0.175, .885, .32, 1)
    }
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -ms-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(0.55, .055, .675, .19)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        -ms-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        -ms-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(0.175, .885, .32, 1)
    }
}

.zoomOutDown {
    -webkit-animation-name: zoomOutDown;
    animation-name: zoomOutDown
}

@-webkit-keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
        transform: scale(.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center
    }
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
        -ms-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
        -ms-transform: scale(.1) translate3d(-2000px, 0, 0);
        transform: scale(.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        -ms-transform-origin: left center;
        transform-origin: left center
    }
}

.zoomOutLeft {
    -webkit-animation-name: zoomOutLeft;
    animation-name: zoomOutLeft
}

@-webkit-keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
        transform: scale(.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center
    }
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
        -ms-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
        -ms-transform: scale(.1) translate3d(2000px, 0, 0);
        transform: scale(.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        -ms-transform-origin: right center;
        transform-origin: right center
    }
}

.zoomOutRight {
    -webkit-animation-name: zoomOutRight;
    animation-name: zoomOutRight
}

@-webkit-keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(0.55, .055, .675, .19)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(0.175, .885, .32, 1)
    }
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -ms-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(0.55, .055, .675, .19)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        -ms-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        -ms-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(0.175, .885, .32, 1)
    }
}

.zoomOutUp {
    -webkit-animation-name: zoomOutUp;
    animation-name: zoomOutUp
}

@-webkit-keyframes slideInDown {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        visibility: visible
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes slideInDown {
    0% {
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
        visibility: visible
    }

    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown
}

@-webkit-keyframes slideInLeft {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        visibility: visible
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes slideInLeft {
    0% {
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
        visibility: visible
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft
}

@-webkit-keyframes slideInRight {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        visibility: visible
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes slideInRight {
    0% {
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
        visibility: visible
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight
}

@-webkit-keyframes slideInUp {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        visibility: visible
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes slideInUp {
    0% {
        -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
        transform: translateY(100%);
        visibility: visible
    }

    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp
}

@-webkit-keyframes slideOutDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        visibility: hidden;
        -webkit-transform: translateY(100%);
        transform: translateY(100%)
    }
}

@keyframes slideOutDown {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        visibility: hidden;
        -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
        transform: translateY(100%)
    }
}

.slideOutDown {
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown
}

@-webkit-keyframes slideOutLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        visibility: hidden;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%)
    }
}

@keyframes slideOutLeft {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        visibility: hidden;
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%)
    }
}

.slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft
}

@-webkit-keyframes slideOutRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        visibility: hidden;
        -webkit-transform: translateX(100%);
        transform: translateX(100%)
    }
}

@keyframes slideOutRight {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        visibility: hidden;
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%)
    }
}

.slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight
}

@-webkit-keyframes slideOutUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        visibility: hidden;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }
}

@keyframes slideOutUp {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        visibility: hidden;
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%)
    }
}

.slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp
}

/**	15. Fontawesome v4.7.0 http://fortawesome.github.io/Font-Awesome/
*************************************************** **/
@font-face {
    font-family: 'FontAwesome';
    src: url('/public/fonts/fontawesome-webfont.eot?v=4.7.0');
    src: url('/public/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('/public/fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('/public/fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'), url('/public/fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('/public/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.fa-lg {
    font-size: 1.33333333em;
    line-height: .75em;
    vertical-align: -15%
}

.fa-2x {
    font-size: 2em
}

.fa-3x {
    font-size: 3em
}

.fa-4x {
    font-size: 4em
}

.fa-5x {
    font-size: 5em
}

.fa-fw {
    width: 1.28571429em;
    text-align: center
}

.fa-ul {
    padding-left: 0;
    margin-left: 2.14285714em;
    list-style-type: none
}

.fa-ul>li {
    position: relative
}

.fa-li {
    position: absolute;
    left: -2.14285714em;
    width: 2.14285714em;
    top: .14285714em;
    text-align: center
}

.fa-li.fa-lg {
    left: -1.85714286em
}

.fa-border {
    padding: .2em .25em .15em;
    border: solid .08em #eee;
    border-radius: .1em
}

.fa-pull-left {
    float: left
}

.fa-pull-right {
    float: right
}

.fa.fa-pull-left {
    margin-right: .3em
}

.fa.fa-pull-right {
    margin-left: .3em
}

.pull-right {
    float: right
}

.pull-left {
    float: left
}

.fa.pull-left {
    margin-right: .3em
}

.fa.pull-right {
    margin-left: .3em
}

.fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear
}

.fa-pulse {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8)
}

@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

.fa-rotate-90 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg)
}

.fa-rotate-180 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.fa-rotate-270 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg)
}

.fa-flip-horizontal {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1)
}

.fa-flip-vertical {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
    -webkit-transform: scale(1, -1);
    -ms-transform: scale(1, -1);
    transform: scale(1, -1)
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
    filter: none
}

.fa-stack {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    vertical-align: middle
}

.fa-stack-1x,
.fa-stack-2x {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center
}

.fa-stack-1x {
    line-height: inherit
}

.fa-stack-2x {
    font-size: 2em
}

.fa-inverse {
    color: #fff
}

.fa-glass:before {
    content: "\f000"
}

.fa-music:before {
    content: "\f001"
}

.fa-search:before {
    content: "\f002"
}

.fa-envelope-o:before {
    content: "\f003"
}

.fa-heart:before {
    content: "\f004"
}

.fa-star:before {
    content: "\f005"
}

.fa-star-o:before {
    content: "\f006"
}

.fa-user:before {
    content: "\f007"
}

.fa-film:before {
    content: "\f008"
}

.fa-th-large:before {
    content: "\f009"
}

.fa-th:before {
    content: "\f00a"
}

.fa-th-list:before {
    content: "\f00b"
}

.fa-check:before {
    content: "\f00c"
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
    content: "\f00d"
}

.fa-search-plus:before {
    content: "\f00e"
}

.fa-search-minus:before {
    content: "\f010"
}

.fa-power-off:before {
    content: "\f011"
}

.fa-signal:before {
    content: "\f012"
}

.fa-gear:before,
.fa-cog:before {
    content: "\f013"
}

.fa-trash-o:before {
    content: "\f014"
}

.fa-home:before {
    content: "\f015"
}

.fa-file-o:before {
    content: "\f016"
}

.fa-clock-o:before {
    content: "\f017"
}

.fa-road:before {
    content: "\f018"
}

.fa-download:before {
    content: "\f019"
}

.fa-arrow-circle-o-down:before {
    content: "\f01a"
}

.fa-arrow-circle-o-up:before {
    content: "\f01b"
}

.fa-inbox:before {
    content: "\f01c"
}

.fa-play-circle-o:before {
    content: "\f01d"
}

.fa-rotate-right:before,
.fa-repeat:before {
    content: "\f01e"
}

.fa-refresh:before {
    content: "\f021"
}

.fa-list-alt:before {
    content: "\f022"
}

.fa-lock:before {
    content: "\f023"
}

.fa-flag:before {
    content: "\f024"
}

.fa-headphones:before {
    content: "\f025"
}

.fa-volume-off:before {
    content: "\f026"
}

.fa-volume-down:before {
    content: "\f027"
}

.fa-volume-up:before {
    content: "\f028"
}

.fa-qrcode:before {
    content: "\f029"
}

.fa-barcode:before {
    content: "\f02a"
}

.fa-tag:before {
    content: "\f02b"
}

.fa-tags:before {
    content: "\f02c"
}

.fa-book:before {
    content: "\f02d"
}

.fa-bookmark:before {
    content: "\f02e"
}

.fa-print:before {
    content: "\f02f"
}

.fa-camera:before {
    content: "\f030"
}

.fa-font:before {
    content: "\f031"
}

.fa-bold:before {
    content: "\f032"
}

.fa-italic:before {
    content: "\f033"
}

.fa-text-height:before {
    content: "\f034"
}

.fa-text-width:before {
    content: "\f035"
}

.fa-align-left:before {
    content: "\f036"
}

.fa-align-center:before {
    content: "\f037"
}

.fa-align-right:before {
    content: "\f038"
}

.fa-align-justify:before {
    content: "\f039"
}

.fa-list:before {
    content: "\f03a"
}

.fa-dedent:before,
.fa-outdent:before {
    content: "\f03b"
}

.fa-indent:before {
    content: "\f03c"
}

.fa-video-camera:before {
    content: "\f03d"
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
    content: "\f03e"
}

.fa-pencil:before {
    content: "\f040"
}

.fa-map-marker:before {
    content: "\f041"
}

.fa-adjust:before {
    content: "\f042"
}

.fa-tint:before {
    content: "\f043"
}

.fa-edit:before,
.fa-pencil-square-o:before {
    content: "\f044"
}

.fa-share-square-o:before {
    content: "\f045"
}

.fa-check-square-o:before {
    content: "\f046"
}

.fa-arrows:before {
    content: "\f047"
}

.fa-step-backward:before {
    content: "\f048"
}

.fa-fast-backward:before {
    content: "\f049"
}

.fa-backward:before {
    content: "\f04a"
}

.fa-play:before {
    content: "\f04b"
}

.fa-pause:before {
    content: "\f04c"
}

.fa-stop:before {
    content: "\f04d"
}

.fa-forward:before {
    content: "\f04e"
}

.fa-fast-forward:before {
    content: "\f050"
}

.fa-step-forward:before {
    content: "\f051"
}

.fa-eject:before {
    content: "\f052"
}

.fa-chevron-left:before {
    content: "\f053"
}

.fa-chevron-right:before {
    content: "\f054"
}

.fa-plus-circle:before {
    content: "\f055"
}

.fa-minus-circle:before {
    content: "\f056"
}

.fa-times-circle:before {
    content: "\f057"
}

.fa-check-circle:before {
    content: "\f058"
}

.fa-question-circle:before {
    content: "\f059"
}

.fa-info-circle:before {
    content: "\f05a"
}

.fa-crosshairs:before {
    content: "\f05b"
}

.fa-times-circle-o:before {
    content: "\f05c"
}

.fa-check-circle-o:before {
    content: "\f05d"
}

.fa-ban:before {
    content: "\f05e"
}

.fa-arrow-left:before {
    content: "\f060"
}

.fa-arrow-right:before {
    content: "\f061"
}

.fa-arrow-up:before {
    content: "\f062"
}

.fa-arrow-down:before {
    content: "\f063"
}

.fa-mail-forward:before,
.fa-share:before {
    content: "\f064"
}

.fa-expand:before {
    content: "\f065"
}

.fa-compress:before {
    content: "\f066"
}

.fa-plus:before {
    content: "\f067"
}

.fa-minus:before {
    content: "\f068"
}

.fa-asterisk:before {
    content: "\f069"
}

.fa-exclamation-circle:before {
    content: "\f06a"
}

.fa-gift:before {
    content: "\f06b"
}

.fa-leaf:before {
    content: "\f06c"
}

.fa-fire:before {
    content: "\f06d"
}

.fa-eye:before {
    content: "\f06e"
}

.fa-eye-slash:before {
    content: "\f070"
}

.fa-warning:before,
.fa-exclamation-triangle:before {
    content: "\f071"
}

.fa-plane:before {
    content: "\f072"
}

.fa-calendar:before {
    content: "\f073"
}

.fa-random:before {
    content: "\f074"
}

.fa-comment:before {
    content: "\f075"
}

.fa-magnet:before {
    content: "\f076"
}

.fa-chevron-up:before {
    content: "\f077"
}

.fa-chevron-down:before {
    content: "\f078"
}

.fa-retweet:before {
    content: "\f079"
}

.fa-shopping-cart:before {
    content: "\f07a"
}

.fa-folder:before {
    content: "\f07b"
}

.fa-folder-open:before {
    content: "\f07c"
}

.fa-arrows-v:before {
    content: "\f07d"
}

.fa-arrows-h:before {
    content: "\f07e"
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
    content: "\f080"
}

.fa-twitter-square:before {
    content: "\f081"
}

.fa-facebook-square:before {
    content: "\f082"
}

.fa-camera-retro:before {
    content: "\f083"
}

.fa-key:before {
    content: "\f084"
}

.fa-gears:before,
.fa-cogs:before {
    content: "\f085"
}

.fa-comments:before {
    content: "\f086"
}

.fa-thumbs-o-up:before {
    content: "\f087"
}

.fa-thumbs-o-down:before {
    content: "\f088"
}

.fa-star-half:before {
    content: "\f089"
}

.fa-heart-o:before {
    content: "\f08a"
}

.fa-sign-out:before {
    content: "\f08b"
}

.fa-linkedin-square:before {
    content: "\f08c"
}

.fa-thumb-tack:before {
    content: "\f08d"
}

.fa-external-link:before {
    content: "\f08e"
}

.fa-sign-in:before {
    content: "\f090"
}

.fa-trophy:before {
    content: "\f091"
}

.fa-github-square:before {
    content: "\f092"
}

.fa-upload:before {
    content: "\f093"
}

.fa-lemon-o:before {
    content: "\f094"
}

.fa-phone:before {
    content: "\f095"
}

.fa-square-o:before {
    content: "\f096"
}

.fa-bookmark-o:before {
    content: "\f097"
}

.fa-phone-square:before {
    content: "\f098"
}

.fa-twitter:before {
    content: "\f099"
}

.fa-facebook-f:before,
.fa-facebook:before {
    content: "\f09a"
}

.fa-github:before {
    content: "\f09b"
}

.fa-unlock:before {
    content: "\f09c"
}

.fa-credit-card:before {
    content: "\f09d"
}

.fa-feed:before,
.fa-rss:before {
    content: "\f09e"
}

.fa-hdd-o:before {
    content: "\f0a0"
}

.fa-bullhorn:before {
    content: "\f0a1"
}

.fa-bell:before {
    content: "\f0f3"
}

.fa-certificate:before {
    content: "\f0a3"
}

.fa-hand-o-right:before {
    content: "\f0a4"
}

.fa-hand-o-left:before {
    content: "\f0a5"
}

.fa-hand-o-up:before {
    content: "\f0a6"
}

.fa-hand-o-down:before {
    content: "\f0a7"
}

.fa-arrow-circle-left:before {
    content: "\f0a8"
}

.fa-arrow-circle-right:before {
    content: "\f0a9"
}

.fa-arrow-circle-up:before {
    content: "\f0aa"
}

.fa-arrow-circle-down:before {
    content: "\f0ab"
}

.fa-globe:before {
    content: "\f0ac"
}

.fa-wrench:before {
    content: "\f0ad"
}

.fa-tasks:before {
    content: "\f0ae"
}

.fa-filter:before {
    content: "\f0b0"
}

.fa-briefcase:before {
    content: "\f0b1"
}

.fa-arrows-alt:before {
    content: "\f0b2"
}

.fa-group:before,
.fa-users:before {
    content: "\f0c0"
}

.fa-chain:before,
.fa-link:before {
    content: "\f0c1"
}

.fa-cloud:before {
    content: "\f0c2"
}

.fa-flask:before {
    content: "\f0c3"
}

.fa-cut:before,
.fa-scissors:before {
    content: "\f0c4"
}

.fa-copy:before,
.fa-files-o:before {
    content: "\f0c5"
}

.fa-paperclip:before {
    content: "\f0c6"
}

.fa-save:before,
.fa-floppy-o:before {
    content: "\f0c7"
}

.fa-square:before {
    content: "\f0c8"
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
    content: "\f0c9"
}

.fa-list-ul:before {
    content: "\f0ca"
}

.fa-list-ol:before {
    content: "\f0cb"
}

.fa-strikethrough:before {
    content: "\f0cc"
}

.fa-underline:before {
    content: "\f0cd"
}

.fa-table:before {
    content: "\f0ce"
}

.fa-magic:before {
    content: "\f0d0"
}

.fa-truck:before {
    content: "\f0d1"
}

.fa-pinterest:before {
    content: "\f0d2"
}

.fa-pinterest-square:before {
    content: "\f0d3"
}

.fa-google-plus-square:before {
    content: "\f0d4"
}

.fa-google-plus:before {
    content: "\f0d5"
}

.fa-money:before {
    content: "\f0d6"
}

.fa-caret-down:before {
    content: "\f0d7"
}

.fa-caret-up:before {
    content: "\f0d8"
}

.fa-caret-left:before {
    content: "\f0d9"
}

.fa-caret-right:before {
    content: "\f0da"
}

.fa-columns:before {
    content: "\f0db"
}

.fa-unsorted:before,
.fa-sort:before {
    content: "\f0dc"
}

.fa-sort-down:before,
.fa-sort-desc:before {
    content: "\f0dd"
}

.fa-sort-up:before,
.fa-sort-asc:before {
    content: "\f0de"
}

.fa-envelope:before {
    content: "\f0e0"
}

.fa-linkedin:before {
    content: "\f0e1"
}

.fa-rotate-left:before,
.fa-undo:before {
    content: "\f0e2"
}

.fa-legal:before,
.fa-gavel:before {
    content: "\f0e3"
}

.fa-dashboard:before,
.fa-tachometer:before {
    content: "\f0e4"
}

.fa-comment-o:before {
    content: "\f0e5"
}

.fa-comments-o:before {
    content: "\f0e6"
}

.fa-flash:before,
.fa-bolt:before {
    content: "\f0e7"
}

.fa-sitemap:before {
    content: "\f0e8"
}

.fa-umbrella:before {
    content: "\f0e9"
}

.fa-paste:before,
.fa-clipboard:before {
    content: "\f0ea"
}

.fa-lightbulb-o:before {
    content: "\f0eb"
}

.fa-exchange:before {
    content: "\f0ec"
}

.fa-cloud-download:before {
    content: "\f0ed"
}

.fa-cloud-upload:before {
    content: "\f0ee"
}

.fa-user-md:before {
    content: "\f0f0"
}

.fa-stethoscope:before {
    content: "\f0f1"
}

.fa-suitcase:before {
    content: "\f0f2"
}

.fa-bell-o:before {
    content: "\f0a2"
}

.fa-coffee:before {
    content: "\f0f4"
}

.fa-cutlery:before {
    content: "\f0f5"
}

.fa-file-text-o:before {
    content: "\f0f6"
}

.fa-building-o:before {
    content: "\f0f7"
}

.fa-hospital-o:before {
    content: "\f0f8"
}

.fa-ambulance:before {
    content: "\f0f9"
}

.fa-medkit:before {
    content: "\f0fa"
}

.fa-fighter-jet:before {
    content: "\f0fb"
}

.fa-beer:before {
    content: "\f0fc"
}

.fa-h-square:before {
    content: "\f0fd"
}

.fa-plus-square:before {
    content: "\f0fe"
}

.fa-angle-double-left:before {
    content: "\f100"
}

.fa-angle-double-right:before {
    content: "\f101"
}

.fa-angle-double-up:before {
    content: "\f102"
}

.fa-angle-double-down:before {
    content: "\f103"
}

.fa-angle-left:before {
    content: "\f104"
}

.fa-angle-right:before {
    content: "\f105"
}

.fa-angle-up:before {
    content: "\f106"
}

.fa-angle-down:before {
    content: "\f107"
}

.fa-desktop:before {
    content: "\f108"
}

.fa-laptop:before {
    content: "\f109"
}

.fa-tablet:before {
    content: "\f10a"
}

.fa-mobile-phone:before,
.fa-mobile:before {
    content: "\f10b"
}

.fa-circle-o:before {
    content: "\f10c"
}

.fa-quote-left:before {
    content: "\f10d"
}

.fa-quote-right:before {
    content: "\f10e"
}

.fa-spinner:before {
    content: "\f110"
}

.fa-circle:before {
    content: "\f111"
}

.fa-mail-reply:before,
.fa-reply:before {
    content: "\f112"
}

.fa-github-alt:before {
    content: "\f113"
}

.fa-folder-o:before {
    content: "\f114"
}

.fa-folder-open-o:before {
    content: "\f115"
}

.fa-smile-o:before {
    content: "\f118"
}

.fa-frown-o:before {
    content: "\f119"
}

.fa-meh-o:before {
    content: "\f11a"
}

.fa-gamepad:before {
    content: "\f11b"
}

.fa-keyboard-o:before {
    content: "\f11c"
}

.fa-flag-o:before {
    content: "\f11d"
}

.fa-flag-checkered:before {
    content: "\f11e"
}

.fa-terminal:before {
    content: "\f120"
}

.fa-code:before {
    content: "\f121"
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
    content: "\f122"
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
    content: "\f123"
}

.fa-location-arrow:before {
    content: "\f124"
}

.fa-crop:before {
    content: "\f125"
}

.fa-code-fork:before {
    content: "\f126"
}

.fa-unlink:before,
.fa-chain-broken:before {
    content: "\f127"
}

.fa-question:before {
    content: "\f128"
}

.fa-info:before {
    content: "\f129"
}

.fa-exclamation:before {
    content: "\f12a"
}

.fa-superscript:before {
    content: "\f12b"
}

.fa-subscript:before {
    content: "\f12c"
}

.fa-eraser:before {
    content: "\f12d"
}

.fa-puzzle-piece:before {
    content: "\f12e"
}

.fa-microphone:before {
    content: "\f130"
}

.fa-microphone-slash:before {
    content: "\f131"
}

.fa-shield:before {
    content: "\f132"
}

.fa-calendar-o:before {
    content: "\f133"
}

.fa-fire-extinguisher:before {
    content: "\f134"
}

.fa-rocket:before {
    content: "\f135"
}

.fa-maxcdn:before {
    content: "\f136"
}

.fa-chevron-circle-left:before {
    content: "\f137"
}

.fa-chevron-circle-right:before {
    content: "\f138"
}

.fa-chevron-circle-up:before {
    content: "\f139"
}

.fa-chevron-circle-down:before {
    content: "\f13a"
}

.fa-html5:before {
    content: "\f13b"
}

.fa-css3:before {
    content: "\f13c"
}

.fa-anchor:before {
    content: "\f13d"
}

.fa-unlock-alt:before {
    content: "\f13e"
}

.fa-bullseye:before {
    content: "\f140"
}

.fa-ellipsis-h:before {
    content: "\f141"
}

.fa-ellipsis-v:before {
    content: "\f142"
}

.fa-rss-square:before {
    content: "\f143"
}

.fa-play-circle:before {
    content: "\f144"
}

.fa-ticket:before {
    content: "\f145"
}

.fa-minus-square:before {
    content: "\f146"
}

.fa-minus-square-o:before {
    content: "\f147"
}

.fa-level-up:before {
    content: "\f148"
}

.fa-level-down:before {
    content: "\f149"
}

.fa-check-square:before {
    content: "\f14a"
}

.fa-pencil-square:before {
    content: "\f14b"
}

.fa-external-link-square:before {
    content: "\f14c"
}

.fa-share-square:before {
    content: "\f14d"
}

.fa-compass:before {
    content: "\f14e"
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
    content: "\f150"
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
    content: "\f151"
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
    content: "\f152"
}

.fa-euro:before,
.fa-eur:before {
    content: "\f153"
}

.fa-gbp:before {
    content: "\f154"
}

.fa-dollar:before,
.fa-usd:before {
    content: "\f155"
}

.fa-rupee:before,
.fa-inr:before {
    content: "\f156"
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
    content: "\f157"
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
    content: "\f158"
}

.fa-won:before,
.fa-krw:before {
    content: "\f159"
}

.fa-bitcoin:before,
.fa-btc:before {
    content: "\f15a"
}

.fa-file:before {
    content: "\f15b"
}

.fa-file-text:before {
    content: "\f15c"
}

.fa-sort-alpha-asc:before {
    content: "\f15d"
}

.fa-sort-alpha-desc:before {
    content: "\f15e"
}

.fa-sort-amount-asc:before {
    content: "\f160"
}

.fa-sort-amount-desc:before {
    content: "\f161"
}

.fa-sort-numeric-asc:before {
    content: "\f162"
}

.fa-sort-numeric-desc:before {
    content: "\f163"
}

.fa-thumbs-up:before {
    content: "\f164"
}

.fa-thumbs-down:before {
    content: "\f165"
}

.fa-youtube-square:before {
    content: "\f166"
}

.fa-youtube:before {
    content: "\f167"
}

.fa-xing:before {
    content: "\f168"
}

.fa-xing-square:before {
    content: "\f169"
}

.fa-youtube-play:before {
    content: "\f16a"
}

.fa-dropbox:before {
    content: "\f16b"
}

.fa-stack-overflow:before {
    content: "\f16c"
}

.fa-instagram:before {
    content: "\f16d"
}

.fa-flickr:before {
    content: "\f16e"
}

.fa-adn:before {
    content: "\f170"
}

.fa-bitbucket:before {
    content: "\f171"
}

.fa-bitbucket-square:before {
    content: "\f172"
}

.fa-tumblr:before {
    content: "\f173"
}

.fa-tumblr-square:before {
    content: "\f174"
}

.fa-long-arrow-down:before {
    content: "\f175"
}

.fa-long-arrow-up:before {
    content: "\f176"
}

.fa-long-arrow-left:before {
    content: "\f177"
}

.fa-long-arrow-right:before {
    content: "\f178"
}

.fa-apple:before {
    content: "\f179"
}

.fa-windows:before {
    content: "\f17a"
}

.fa-android:before {
    content: "\f17b"
}

.fa-linux:before {
    content: "\f17c"
}

.fa-dribbble:before {
    content: "\f17d"
}

.fa-skype:before {
    content: "\f17e"
}

.fa-foursquare:before {
    content: "\f180"
}

.fa-trello:before {
    content: "\f181"
}

.fa-female:before {
    content: "\f182"
}

.fa-male:before {
    content: "\f183"
}

.fa-gittip:before,
.fa-gratipay:before {
    content: "\f184"
}

.fa-sun-o:before {
    content: "\f185"
}

.fa-moon-o:before {
    content: "\f186"
}

.fa-archive:before {
    content: "\f187"
}

.fa-bug:before {
    content: "\f188"
}

.fa-vk:before {
    content: "\f189"
}

.fa-weibo:before {
    content: "\f18a"
}

.fa-renren:before {
    content: "\f18b"
}

.fa-pagelines:before {
    content: "\f18c"
}

.fa-stack-exchange:before {
    content: "\f18d"
}

.fa-arrow-circle-o-right:before {
    content: "\f18e"
}

.fa-arrow-circle-o-left:before {
    content: "\f190"
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
    content: "\f191"
}

.fa-dot-circle-o:before {
    content: "\f192"
}

.fa-wheelchair:before {
    content: "\f193"
}

.fa-vimeo-square:before {
    content: "\f194"
}

.fa-turkish-lira:before,
.fa-try:before {
    content: "\f195"
}

.fa-plus-square-o:before {
    content: "\f196"
}

.fa-space-shuttle:before {
    content: "\f197"
}

.fa-slack:before {
    content: "\f198"
}

.fa-envelope-square:before {
    content: "\f199"
}

.fa-wordpress:before {
    content: "\f19a"
}

.fa-openid:before {
    content: "\f19b"
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
    content: "\f19c"
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
    content: "\f19d"
}

.fa-yahoo:before {
    content: "\f19e"
}

.fa-google:before {
    content: "\f1a0"
}

.fa-reddit:before {
    content: "\f1a1"
}

.fa-reddit-square:before {
    content: "\f1a2"
}

.fa-stumbleupon-circle:before {
    content: "\f1a3"
}

.fa-stumbleupon:before {
    content: "\f1a4"
}

.fa-delicious:before {
    content: "\f1a5"
}

.fa-digg:before {
    content: "\f1a6"
}

.fa-pied-piper-pp:before {
    content: "\f1a7"
}

.fa-pied-piper-alt:before {
    content: "\f1a8"
}

.fa-drupal:before {
    content: "\f1a9"
}

.fa-joomla:before {
    content: "\f1aa"
}

.fa-language:before {
    content: "\f1ab"
}

.fa-fax:before {
    content: "\f1ac"
}

.fa-building:before {
    content: "\f1ad"
}

.fa-child:before {
    content: "\f1ae"
}

.fa-paw:before {
    content: "\f1b0"
}

.fa-spoon:before {
    content: "\f1b1"
}

.fa-cube:before {
    content: "\f1b2"
}

.fa-cubes:before {
    content: "\f1b3"
}

.fa-behance:before {
    content: "\f1b4"
}

.fa-behance-square:before {
    content: "\f1b5"
}

.fa-steam:before {
    content: "\f1b6"
}

.fa-steam-square:before {
    content: "\f1b7"
}

.fa-recycle:before {
    content: "\f1b8"
}

.fa-automobile:before,
.fa-car:before {
    content: "\f1b9"
}

.fa-cab:before,
.fa-taxi:before {
    content: "\f1ba"
}

.fa-tree:before {
    content: "\f1bb"
}

.fa-spotify:before {
    content: "\f1bc"
}

.fa-deviantart:before {
    content: "\f1bd"
}

.fa-soundcloud:before {
    content: "\f1be"
}

.fa-database:before {
    content: "\f1c0"
}

.fa-file-pdf-o:before {
    content: "\f1c1"
}

.fa-file-word-o:before {
    content: "\f1c2"
}

.fa-file-excel-o:before {
    content: "\f1c3"
}

.fa-file-powerpoint-o:before {
    content: "\f1c4"
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
    content: "\f1c5"
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
    content: "\f1c6"
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
    content: "\f1c7"
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
    content: "\f1c8"
}

.fa-file-code-o:before {
    content: "\f1c9"
}

.fa-vine:before {
    content: "\f1ca"
}

.fa-codepen:before {
    content: "\f1cb"
}

.fa-jsfiddle:before {
    content: "\f1cc"
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
    content: "\f1cd"
}

.fa-circle-o-notch:before {
    content: "\f1ce"
}

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
    content: "\f1d0"
}

.fa-ge:before,
.fa-empire:before {
    content: "\f1d1"
}

.fa-git-square:before {
    content: "\f1d2"
}

.fa-git:before {
    content: "\f1d3"
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
    content: "\f1d4"
}

.fa-tencent-weibo:before {
    content: "\f1d5"
}

.fa-qq:before {
    content: "\f1d6"
}

.fa-wechat:before,
.fa-weixin:before {
    content: "\f1d7"
}

.fa-send:before,
.fa-paper-plane:before {
    content: "\f1d8"
}

.fa-send-o:before,
.fa-paper-plane-o:before {
    content: "\f1d9"
}

.fa-history:before {
    content: "\f1da"
}

.fa-circle-thin:before {
    content: "\f1db"
}

.fa-header:before {
    content: "\f1dc"
}

.fa-paragraph:before {
    content: "\f1dd"
}

.fa-sliders:before {
    content: "\f1de"
}

.fa-share-alt:before {
    content: "\f1e0"
}

.fa-share-alt-square:before {
    content: "\f1e1"
}

.fa-bomb:before {
    content: "\f1e2"
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
    content: "\f1e3"
}

.fa-tty:before {
    content: "\f1e4"
}

.fa-binoculars:before {
    content: "\f1e5"
}

.fa-plug:before {
    content: "\f1e6"
}

.fa-slideshare:before {
    content: "\f1e7"
}

.fa-twitch:before {
    content: "\f1e8"
}

.fa-yelp:before {
    content: "\f1e9"
}

.fa-newspaper-o:before {
    content: "\f1ea"
}

.fa-wifi:before {
    content: "\f1eb"
}

.fa-calculator:before {
    content: "\f1ec"
}

.fa-paypal:before {
    content: "\f1ed"
}

.fa-google-wallet:before {
    content: "\f1ee"
}

.fa-cc-visa:before {
    content: "\f1f0"
}

.fa-cc-mastercard:before {
    content: "\f1f1"
}

.fa-cc-discover:before {
    content: "\f1f2"
}

.fa-cc-amex:before {
    content: "\f1f3"
}

.fa-cc-paypal:before {
    content: "\f1f4"
}

.fa-cc-stripe:before {
    content: "\f1f5"
}

.fa-bell-slash:before {
    content: "\f1f6"
}

.fa-bell-slash-o:before {
    content: "\f1f7"
}

.fa-trash:before {
    content: "\f1f8"
}

.fa-copyright:before {
    content: "\f1f9"
}

.fa-at:before {
    content: "\f1fa"
}

.fa-eyedropper:before {
    content: "\f1fb"
}

.fa-paint-brush:before {
    content: "\f1fc"
}

.fa-birthday-cake:before {
    content: "\f1fd"
}

.fa-area-chart:before {
    content: "\f1fe"
}

.fa-pie-chart:before {
    content: "\f200"
}

.fa-line-chart:before {
    content: "\f201"
}

.fa-lastfm:before {
    content: "\f202"
}

.fa-lastfm-square:before {
    content: "\f203"
}

.fa-toggle-off:before {
    content: "\f204"
}

.fa-toggle-on:before {
    content: "\f205"
}

.fa-bicycle:before {
    content: "\f206"
}

.fa-bus:before {
    content: "\f207"
}

.fa-ioxhost:before {
    content: "\f208"
}

.fa-angellist:before {
    content: "\f209"
}

.fa-cc:before {
    content: "\f20a"
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
    content: "\f20b"
}

.fa-meanpath:before {
    content: "\f20c"
}

.fa-buysellads:before {
    content: "\f20d"
}

.fa-connectdevelop:before {
    content: "\f20e"
}

.fa-dashcube:before {
    content: "\f210"
}

.fa-forumbee:before {
    content: "\f211"
}

.fa-leanpub:before {
    content: "\f212"
}

.fa-sellsy:before {
    content: "\f213"
}

.fa-shirtsinbulk:before {
    content: "\f214"
}

.fa-simplybuilt:before {
    content: "\f215"
}

.fa-skyatlas:before {
    content: "\f216"
}

.fa-cart-plus:before {
    content: "\f217"
}

.fa-cart-arrow-down:before {
    content: "\f218"
}

.fa-diamond:before {
    content: "\f219"
}

.fa-ship:before {
    content: "\f21a"
}

.fa-user-secret:before {
    content: "\f21b"
}

.fa-motorcycle:before {
    content: "\f21c"
}

.fa-street-view:before {
    content: "\f21d"
}

.fa-heartbeat:before {
    content: "\f21e"
}

.fa-venus:before {
    content: "\f221"
}

.fa-mars:before {
    content: "\f222"
}

.fa-mercury:before {
    content: "\f223"
}

.fa-intersex:before,
.fa-transgender:before {
    content: "\f224"
}

.fa-transgender-alt:before {
    content: "\f225"
}

.fa-venus-double:before {
    content: "\f226"
}

.fa-mars-double:before {
    content: "\f227"
}

.fa-venus-mars:before {
    content: "\f228"
}

.fa-mars-stroke:before {
    content: "\f229"
}

.fa-mars-stroke-v:before {
    content: "\f22a"
}

.fa-mars-stroke-h:before {
    content: "\f22b"
}

.fa-neuter:before {
    content: "\f22c"
}

.fa-genderless:before {
    content: "\f22d"
}

.fa-facebook-official:before {
    content: "\f230"
}

.fa-pinterest-p:before {
    content: "\f231"
}

.fa-whatsapp:before {
    content: "\f232"
}

.fa-server:before {
    content: "\f233"
}

.fa-user-plus:before {
    content: "\f234"
}

.fa-user-times:before {
    content: "\f235"
}

.fa-hotel:before,
.fa-bed:before {
    content: "\f236"
}

.fa-viacoin:before {
    content: "\f237"
}

.fa-train:before {
    content: "\f238"
}

.fa-subway:before {
    content: "\f239"
}

.fa-medium:before {
    content: "\f23a"
}

.fa-yc:before,
.fa-y-combinator:before {
    content: "\f23b"
}

.fa-optin-monster:before {
    content: "\f23c"
}

.fa-opencart:before {
    content: "\f23d"
}

.fa-expeditedssl:before {
    content: "\f23e"
}

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
    content: "\f240"
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
    content: "\f241"
}

.fa-battery-2:before,
.fa-battery-half:before {
    content: "\f242"
}

.fa-battery-1:before,
.fa-battery-quarter:before {
    content: "\f243"
}

.fa-battery-0:before,
.fa-battery-empty:before {
    content: "\f244"
}

.fa-mouse-pointer:before {
    content: "\f245"
}

.fa-i-cursor:before {
    content: "\f246"
}

.fa-object-group:before {
    content: "\f247"
}

.fa-object-ungroup:before {
    content: "\f248"
}

.fa-sticky-note:before {
    content: "\f249"
}

.fa-sticky-note-o:before {
    content: "\f24a"
}

.fa-cc-jcb:before {
    content: "\f24b"
}

.fa-cc-diners-club:before {
    content: "\f24c"
}

.fa-clone:before {
    content: "\f24d"
}

.fa-balance-scale:before {
    content: "\f24e"
}

.fa-hourglass-o:before {
    content: "\f250"
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
    content: "\f251"
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
    content: "\f252"
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
    content: "\f253"
}

.fa-hourglass:before {
    content: "\f254"
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
    content: "\f255"
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
    content: "\f256"
}

.fa-hand-scissors-o:before {
    content: "\f257"
}

.fa-hand-lizard-o:before {
    content: "\f258"
}

.fa-hand-spock-o:before {
    content: "\f259"
}

.fa-hand-pointer-o:before {
    content: "\f25a"
}

.fa-hand-peace-o:before {
    content: "\f25b"
}

.fa-trademark:before {
    content: "\f25c"
}

.fa-registered:before {
    content: "\f25d"
}

.fa-creative-commons:before {
    content: "\f25e"
}

.fa-gg:before {
    content: "\f260"
}

.fa-gg-circle:before {
    content: "\f261"
}

.fa-tripadvisor:before {
    content: "\f262"
}

.fa-odnoklassniki:before {
    content: "\f263"
}

.fa-odnoklassniki-square:before {
    content: "\f264"
}

.fa-get-pocket:before {
    content: "\f265"
}

.fa-wikipedia-w:before {
    content: "\f266"
}

.fa-safari:before {
    content: "\f267"
}

.fa-chrome:before {
    content: "\f268"
}

.fa-firefox:before {
    content: "\f269"
}

.fa-opera:before {
    content: "\f26a"
}

.fa-internet-explorer:before {
    content: "\f26b"
}

.fa-tv:before,
.fa-television:before {
    content: "\f26c"
}

.fa-contao:before {
    content: "\f26d"
}

.fa-500px:before {
    content: "\f26e"
}

.fa-amazon:before {
    content: "\f270"
}

.fa-calendar-plus-o:before {
    content: "\f271"
}

.fa-calendar-minus-o:before {
    content: "\f272"
}

.fa-calendar-times-o:before {
    content: "\f273"
}

.fa-calendar-check-o:before {
    content: "\f274"
}

.fa-industry:before {
    content: "\f275"
}

.fa-map-pin:before {
    content: "\f276"
}

.fa-map-signs:before {
    content: "\f277"
}

.fa-map-o:before {
    content: "\f278"
}

.fa-map:before {
    content: "\f279"
}

.fa-commenting:before {
    content: "\f27a"
}

.fa-commenting-o:before {
    content: "\f27b"
}

.fa-houzz:before {
    content: "\f27c"
}

.fa-vimeo:before {
    content: "\f27d"
}

.fa-black-tie:before {
    content: "\f27e"
}

.fa-fonticons:before {
    content: "\f280"
}

.fa-reddit-alien:before {
    content: "\f281"
}

.fa-edge:before {
    content: "\f282"
}

.fa-credit-card-alt:before {
    content: "\f283"
}

.fa-codiepie:before {
    content: "\f284"
}

.fa-modx:before {
    content: "\f285"
}

.fa-fort-awesome:before {
    content: "\f286"
}

.fa-usb:before {
    content: "\f287"
}

.fa-product-hunt:before {
    content: "\f288"
}

.fa-mixcloud:before {
    content: "\f289"
}

.fa-scribd:before {
    content: "\f28a"
}

.fa-pause-circle:before {
    content: "\f28b"
}

.fa-pause-circle-o:before {
    content: "\f28c"
}

.fa-stop-circle:before {
    content: "\f28d"
}

.fa-stop-circle-o:before {
    content: "\f28e"
}

.fa-shopping-bag:before {
    content: "\f290"
}

.fa-shopping-basket:before {
    content: "\f291"
}

.fa-hashtag:before {
    content: "\f292"
}

.fa-bluetooth:before {
    content: "\f293"
}

.fa-bluetooth-b:before {
    content: "\f294"
}

.fa-percent:before {
    content: "\f295"
}

.fa-gitlab:before {
    content: "\f296"
}

.fa-wpbeginner:before {
    content: "\f297"
}

.fa-wpforms:before {
    content: "\f298"
}

.fa-envira:before {
    content: "\f299"
}

.fa-universal-access:before {
    content: "\f29a"
}

.fa-wheelchair-alt:before {
    content: "\f29b"
}

.fa-question-circle-o:before {
    content: "\f29c"
}

.fa-blind:before {
    content: "\f29d"
}

.fa-audio-description:before {
    content: "\f29e"
}

.fa-volume-control-phone:before {
    content: "\f2a0"
}

.fa-braille:before {
    content: "\f2a1"
}

.fa-assistive-listening-systems:before {
    content: "\f2a2"
}

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
    content: "\f2a3"
}

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
    content: "\f2a4"
}

.fa-glide:before {
    content: "\f2a5"
}

.fa-glide-g:before {
    content: "\f2a6"
}

.fa-signing:before,
.fa-sign-language:before {
    content: "\f2a7"
}

.fa-low-vision:before {
    content: "\f2a8"
}

.fa-viadeo:before {
    content: "\f2a9"
}

.fa-viadeo-square:before {
    content: "\f2aa"
}

.fa-snapchat:before {
    content: "\f2ab"
}

.fa-snapchat-ghost:before {
    content: "\f2ac"
}

.fa-snapchat-square:before {
    content: "\f2ad"
}

.fa-pied-piper:before {
    content: "\f2ae"
}

.fa-first-order:before {
    content: "\f2b0"
}

.fa-yoast:before {
    content: "\f2b1"
}

.fa-themeisle:before {
    content: "\f2b2"
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
    content: "\f2b3"
}

.fa-fa:before,
.fa-font-awesome:before {
    content: "\f2b4"
}

.fa-handshake-o:before {
    content: "\f2b5"
}

.fa-envelope-open:before {
    content: "\f2b6"
}

.fa-envelope-open-o:before {
    content: "\f2b7"
}

.fa-linode:before {
    content: "\f2b8"
}

.fa-address-book:before {
    content: "\f2b9"
}

.fa-address-book-o:before {
    content: "\f2ba"
}

.fa-vcard:before,
.fa-address-card:before {
    content: "\f2bb"
}

.fa-vcard-o:before,
.fa-address-card-o:before {
    content: "\f2bc"
}

.fa-user-circle:before {
    content: "\f2bd"
}

.fa-user-circle-o:before {
    content: "\f2be"
}

.fa-user-o:before {
    content: "\f2c0"
}

.fa-id-badge:before {
    content: "\f2c1"
}

.fa-drivers-license:before,
.fa-id-card:before {
    content: "\f2c2"
}

.fa-drivers-license-o:before,
.fa-id-card-o:before {
    content: "\f2c3"
}

.fa-quora:before {
    content: "\f2c4"
}

.fa-free-code-camp:before {
    content: "\f2c5"
}

.fa-telegram:before {
    content: "\f2c6"
}

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
    content: "\f2c7"
}

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
    content: "\f2c8"
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
    content: "\f2c9"
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
    content: "\f2ca"
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
    content: "\f2cb"
}

.fa-shower:before {
    content: "\f2cc"
}

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
    content: "\f2cd"
}

.fa-podcast:before {
    content: "\f2ce"
}

.fa-window-maximize:before {
    content: "\f2d0"
}

.fa-window-minimize:before {
    content: "\f2d1"
}

.fa-window-restore:before {
    content: "\f2d2"
}

.fa-times-rectangle:before,
.fa-window-close:before {
    content: "\f2d3"
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
    content: "\f2d4"
}

.fa-bandcamp:before {
    content: "\f2d5"
}

.fa-grav:before {
    content: "\f2d6"
}

.fa-etsy:before {
    content: "\f2d7"
}

.fa-imdb:before {
    content: "\f2d8"
}

.fa-ravelry:before {
    content: "\f2d9"
}

.fa-eercast:before {
    content: "\f2da"
}

.fa-microchip:before {
    content: "\f2db"
}

.fa-snowflake-o:before {
    content: "\f2dc"
}

.fa-superpowers:before {
    content: "\f2dd"
}

.fa-wpexplorer:before {
    content: "\f2de"
}

.fa-meetup:before {
    content: "\f2e0"
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto
}


.btn-social {
    position: relative;
    padding-left: 54px;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 26px;
    margin: 0;
}

.btn-social>:first-child {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 42px;
    line-height: 40px;
    font-size: 1.6em;
    text-align: center;
    border-right: 1px solid rgba(0, 0, 0, 0.2)
}

.btn-social>i {
    padding-right: 0;
    height: 40px;
}

.btn-social.btn-lg {
    padding-left: 61px
}

.btn-social.btn-lg>:first-child {
    line-height: 45px;
    width: 45px;
    font-size: 1.8em
}

.btn-social.btn-sm {
    padding-left: 38px
}

.btn-social.btn-sm>:first-child {
    line-height: 28px;
    width: 28px;
    font-size: 1.4em
}

.btn-social.btn-xs {
    padding-left: 30px
}

.btn-social.btn-xs>:first-child {
    line-height: 20px;
    width: 20px;
    font-size: 1.2em
}

.btn-social-icon {
    position: relative;
    padding-left: 44px;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 34px;
    width: 34px;
    padding: 0
}

.btn-social-icon>:first-child {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 32px;
    line-height: 34px;
    font-size: 1.6em;
    text-align: center;
    border-right: 1px solid rgba(0, 0, 0, 0.2)
}

.btn-social-icon.btn-lg {
    padding-left: 61px
}

.btn-social-icon.btn-lg>:first-child {
    line-height: 45px;
    width: 45px;
    font-size: 1.8em
}

.btn-social-icon.btn-sm {
    padding-left: 38px
}

.btn-social-icon.btn-sm>:first-child {
    line-height: 28px;
    width: 28px;
    font-size: 1.4em
}

.btn-social-icon.btn-xs {
    padding-left: 30px
}

.btn-social-icon.btn-xs>:first-child {
    line-height: 20px;
    width: 20px;
    font-size: 1.2em
}

.btn-social-icon>:first-child {
    border: none;
    text-align: center;
    width: 100% !important
}

.btn-social-icon.btn-lg {
    height: 45px;
    width: 45px;
    padding-left: 0;
    padding-right: 0
}

.btn-social-icon.btn-sm {
    height: 30px;
    width: 30px;
    padding-left: 0;
    padding-right: 0
}

.btn-social-icon.btn-xs {
    height: 22px;
    width: 22px;
    padding-left: 0;
    padding-right: 0
}

.btn-adn {
    color: #fff;
    background-color: #d87a68;
    border-color: rgba(0, 0, 0, 0.2)
}

.btn-adn:hover,
.btn-adn:focus,
.btn-adn:active,
.btn-adn.active,
.open>.dropdown-toggle.btn-adn {
    color: #fff;
    background-color: #ce563f;
    border-color: rgba(0, 0, 0, 0.2)
}

.btn-adn:active,
.btn-adn.active,
.open>.dropdown-toggle.btn-adn {
    background-image: none
}

.btn-adn.disabled,
.btn-adn[disabled],
fieldset[disabled] .btn-adn,
.btn-adn.disabled:hover,
.btn-adn[disabled]:hover,
fieldset[disabled] .btn-adn:hover,
.btn-adn.disabled:focus,
.btn-adn[disabled]:focus,
fieldset[disabled] .btn-adn:focus,
.btn-adn.disabled:active,
.btn-adn[disabled]:active,
fieldset[disabled] .btn-adn:active,
.btn-adn.disabled.active,
.btn-adn[disabled].active,
fieldset[disabled] .btn-adn.active {
    background-color: #d87a68;
    border-color: rgba(0, 0, 0, 0.2)
}

.btn-adn .badge {
    color: #d87a68;
    background-color: #fff
}

.btn-facebook {
    color: #fff;
    background-color: #3b5998;
    border-color: rgba(0, 0, 0, 0.2)
}

.btn-facebook:hover,
.btn-facebook:focus,
.btn-facebook:active,
.btn-facebook.active,
.open>.dropdown-toggle.btn-facebook {
    color: #fff;
    background-color: #2d4373;
    border-color: rgba(0, 0, 0, 0.2)
}

.btn-facebook:active,
.btn-facebook.active,
.open>.dropdown-toggle.btn-facebook {
    background-image: none
}

.btn-facebook.disabled,
.btn-facebook[disabled],
fieldset[disabled] .btn-facebook,
.btn-facebook.disabled:hover,
.btn-facebook[disabled]:hover,
fieldset[disabled] .btn-facebook:hover,
.btn-facebook.disabled:focus,
.btn-facebook[disabled]:focus,
fieldset[disabled] .btn-facebook:focus,
.btn-facebook.disabled:active,
.btn-facebook[disabled]:active,
fieldset[disabled] .btn-facebook:active,
.btn-facebook.disabled.active,
.btn-facebook[disabled].active,
fieldset[disabled] .btn-facebook.active {
    background-color: #3b5998;
    border-color: rgba(0, 0, 0, 0.2)
}

.btn-facebook .badge {
    color: #3b5998;
    background-color: #fff
}

.btn-google {
    color: #fff;
    background-color: #dd4b39;
    border-color: rgba(0, 0, 0, 0.2)
}

.btn-google:hover,
.btn-google:focus,
.btn-google:active,
.btn-google.active,
.open>.dropdown-toggle.btn-google {
    color: #fff;
    background-color: #c23321;
    border-color: rgba(0, 0, 0, 0.2)
}

.btn-google:active,
.btn-google.active,
.open>.dropdown-toggle.btn-google {
    background-image: none
}

.btn-google.disabled,
.btn-google[disabled],
fieldset[disabled] .btn-google,
.btn-google.disabled:hover,
.btn-google[disabled]:hover,
fieldset[disabled] .btn-google:hover,
.btn-google.disabled:focus,
.btn-google[disabled]:focus,
fieldset[disabled] .btn-google:focus,
.btn-google.disabled:active,
.btn-google[disabled]:active,
fieldset[disabled] .btn-google:active,
.btn-google.disabled.active,
.btn-google[disabled].active,
fieldset[disabled] .btn-google.active {
    background-color: #dd4b39;
    border-color: rgba(0, 0, 0, 0.2)
}

.btn-google .badge {
    color: #dd4b39;
    background-color: #fff
}

.btn-instagram {
    color: #fff;
    background-color: #3f729b;
    border-color: rgba(0, 0, 0, 0.2)
}

.btn-instagram:hover,
.btn-instagram:focus,
.btn-instagram:active,
.btn-instagram.active,
.open>.dropdown-toggle.btn-instagram {
    color: #fff;
    background-color: #305777;
    border-color: rgba(0, 0, 0, 0.2)
}

.btn-instagram:active,
.btn-instagram.active,
.open>.dropdown-toggle.btn-instagram {
    background-image: none
}

.btn-instagram.disabled,
.btn-instagram[disabled],
fieldset[disabled] .btn-instagram,
.btn-instagram.disabled:hover,
.btn-instagram[disabled]:hover,
fieldset[disabled] .btn-instagram:hover,
.btn-instagram.disabled:focus,
.btn-instagram[disabled]:focus,
fieldset[disabled] .btn-instagram:focus,
.btn-instagram.disabled:active,
.btn-instagram[disabled]:active,
fieldset[disabled] .btn-instagram:active,
.btn-instagram.disabled.active,
.btn-instagram[disabled].active,
fieldset[disabled] .btn-instagram.active {
    background-color: #3f729b;
    border-color: rgba(0, 0, 0, 0.2)
}

.btn-instagram .badge {
    color: #3f729b;
    background-color: #fff
}

.btn-linkedin {
    color: #fff;
    background-color: #007bb6;
    border-color: rgba(0, 0, 0, 0.2)
}

.btn-linkedin:hover,
.btn-linkedin:focus,
.btn-linkedin:active,
.btn-linkedin.active,
.open>.dropdown-toggle.btn-linkedin {
    color: #fff;
    background-color: #005983;
    border-color: rgba(0, 0, 0, 0.2)
}

.btn-linkedin:active,
.btn-linkedin.active,
.open>.dropdown-toggle.btn-linkedin {
    background-image: none
}

.btn-linkedin.disabled,
.btn-linkedin[disabled],
fieldset[disabled] .btn-linkedin,
.btn-linkedin.disabled:hover,
.btn-linkedin[disabled]:hover,
fieldset[disabled] .btn-linkedin:hover,
.btn-linkedin.disabled:focus,
.btn-linkedin[disabled]:focus,
fieldset[disabled] .btn-linkedin:focus,
.btn-linkedin.disabled:active,
.btn-linkedin[disabled]:active,
fieldset[disabled] .btn-linkedin:active,
.btn-linkedin.disabled.active,
.btn-linkedin[disabled].active,
fieldset[disabled] .btn-linkedin.active {
    background-color: #007bb6;
    border-color: rgba(0, 0, 0, 0.2)
}

.btn-linkedin .badge {
    color: #007bb6;
    background-color: #fff
}

.btn-twitter {
    color: #fff;
    background-color: #55acee;
    border-color: rgba(0, 0, 0, 0.2)
}

.btn-twitter:hover,
.btn-twitter:focus,
.btn-twitter:active,
.btn-twitter.active,
.open>.dropdown-toggle.btn-twitter {
    color: #fff;
    background-color: #2795e9;
    border-color: rgba(0, 0, 0, 0.2)
}

.btn-twitter:active,
.btn-twitter.active,
.open>.dropdown-toggle.btn-twitter {
    background-image: none
}

.btn-twitter.disabled,
.btn-twitter[disabled],
fieldset[disabled] .btn-twitter,
.btn-twitter.disabled:hover,
.btn-twitter[disabled]:hover,
fieldset[disabled] .btn-twitter:hover,
.btn-twitter.disabled:focus,
.btn-twitter[disabled]:focus,
fieldset[disabled] .btn-twitter:focus,
.btn-twitter.disabled:active,
.btn-twitter[disabled]:active,
fieldset[disabled] .btn-twitter:active,
.btn-twitter.disabled.active,
.btn-twitter[disabled].active,
fieldset[disabled] .btn-twitter.active {
    background-color: #55acee;
    border-color: rgba(0, 0, 0, 0.2)
}

.btn-twitter .badge {
    color: #55acee;
    background-color: #fff
}

.btn-vimeo {
    color: #fff;
    background-color: #1ab7ea;
    border-color: rgba(0, 0, 0, 0.2)
}

.btn-vimeo:hover,
.btn-vimeo:focus,
.btn-vimeo:active,
.btn-vimeo.active,
.open>.dropdown-toggle.btn-vimeo {
    color: #fff;
    background-color: #1295bf;
    border-color: rgba(0, 0, 0, 0.2)
}

.btn-vimeo:active,
.btn-vimeo.active,
.open>.dropdown-toggle.btn-vimeo {
    background-image: none
}

.btn-vimeo.disabled,
.btn-vimeo[disabled],
fieldset[disabled] .btn-vimeo,
.btn-vimeo.disabled:hover,
.btn-vimeo[disabled]:hover,
fieldset[disabled] .btn-vimeo:hover,
.btn-vimeo.disabled:focus,
.btn-vimeo[disabled]:focus,
fieldset[disabled] .btn-vimeo:focus,
.btn-vimeo.disabled:active,
.btn-vimeo[disabled]:active,
fieldset[disabled] .btn-vimeo:active,
.btn-vimeo.disabled.active,
.btn-vimeo[disabled].active,
fieldset[disabled] .btn-vimeo.active {
    background-color: #1ab7ea;
    border-color: rgba(0, 0, 0, 0.2)
}

.btn-vimeo .badge {
    color: #1ab7ea;
    background-color: #fff
}

.btn-vk {
    color: #fff;
    background-color: #587ea3;
    border-color: rgba(0, 0, 0, 0.2)
}

.btn-vk:hover,
.btn-vk:focus,
.btn-vk:active,
.btn-vk.active,
.open>.dropdown-toggle.btn-vk {
    color: #fff;
    background-color: #466482;
    border-color: rgba(0, 0, 0, 0.2)
}

.btn-vk:active,
.btn-vk.active,
.open>.dropdown-toggle.btn-vk {
    background-image: none
}

.btn-vk.disabled,
.btn-vk[disabled],
fieldset[disabled] .btn-vk,
.btn-vk.disabled:hover,
.btn-vk[disabled]:hover,
fieldset[disabled] .btn-vk:hover,
.btn-vk.disabled:focus,
.btn-vk[disabled]:focus,
fieldset[disabled] .btn-vk:focus,
.btn-vk.disabled:active,
.btn-vk[disabled]:active,
fieldset[disabled] .btn-vk:active,
.btn-vk.disabled.active,
.btn-vk[disabled].active,
fieldset[disabled] .btn-vk.active {
    background-color: #587ea3;
    border-color: rgba(0, 0, 0, 0.2)
}

.btn-vk .badge {
    color: #587ea3;
    background-color: #fff
}

/* featured buttons */
.btn-featured {
    width: 100%;
    display: inline-block;
    position: relative;
    height: 70px;
    padding: 0;
    border: 0;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}

.btn-featured.btn-default {
    background-color: #666;
}

.btn-featured:hover,
.btn-featured:focus,
.btn-featured:active {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    /* move the element up by 5px */
}

.btn-featured:hover:before,
.btn-featured:focus:before,
.btn-featured:active:before {
    opacity: 1;
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
    /* move the element down by 5px (it will stay in place because it's attached to the element that also moves up 5px) */
}

.btn-featured:before {
    pointer-events: none;
    position: absolute;
    z-index: -1;
    content: '';
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 0;
    background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
    /* W3C */
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: "transform, opacity";
    transition-property: "transform, opacity";
}

.btn-featured span {
    float: left;
    height: 70px;
    line-height: 70px;
    text-align: center;
    width: calc(100% - 70px);
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.btn-featured i {
    background-color: rgba(0, 0, 0, 0.1);
    float: left;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    color: #fff;
    font-size: 30px;
    margin: 0;
}

.btn-featured.btn-inverse span {
    float: right
}

.btn-featured.btn-inverse i {
    float: right;
}

/**	19. Counters & Countdown
*************************************************** **/
.countTo-sm,
.countTo-md,
.countTo-lg {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}

.countTo-sm span.countTo {
    margin-bottom: 20px;
    font-size: 25px;
    /*display:block;*/
}

.parallax .countTo-sm i {
    color: #fff;
}

.countTo-sm i {
    font-size: 30px;
    margin-bottom: 10px;
}

.countTo-md span.countTo {
    margin-bottom: 20px;
    font-size: 40px;
    display: block;
}

.countTo-md i {
    font-size: 50px;
    margin-bottom: 10px;
}

.countTo-lg span.countTo {
    margin-bottom: 20px;
    font-size: 46px;
    display: block;
}

.countTo-lg i {
    font-size: 50px;
    margin-bottom: 10px;
}

.countTo-sm h4,
.countTo-sm h5,
.countTo-md h4,
.countTo-md h5,
.countTo-lg h4,
.countTo-lg h5 {
    font-weight: 300;
}

/* Countdown */
.countdown {
    display: block;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}

.countdown-row {
    display: block;
    position: relative;
    text-align: center;
}

.countdown-section {
    display: inline-block;
    font-size: 11px;
    line-height: 1;
    text-align: center;
    width: 25%;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    color: #888;
    text-transform: capitalize;
}

section.dark .countdown-section,
.parallax .countdown-section {
    color: #ccc;
    border-left-color: rgba(255, 255, 255, 0.2);
}

.countdown-section:first-child {
    border-left: 0;
}

.countdown-amount {
    display: block;
    font-size: 20px;
    color: #333;
    margin-bottom: 5px;
}

section.dark .countdown-amount,
.parallax .countdown-amount {
    color: #fff;
}

.countdown-descr {
    display: block;
    width: 100%;
}

/* medium */
.countdown-md .countdown-section {
    font-size: 14px;
}

.countdown-md .countdown-amount {
    font-size: 30px;
    margin-bottom: 7px;
}

/* large */
.countdown-lg .countdown-section {
    font-size: 14px;
}

.countdown-lg .countdown-amount {
    font-size: 45px;
    margin-bottom: 7px;
}

/* inline */
.countdown.countdown-inline {
    display: inline-block;
}

.countdown.countdown-inline .countdown-row {
    display: inline-block;
    text-align: center;
}

.countdown.countdown-inline .countdown-section {
    display: inline-block;
    font-size: inherit;
    line-height: inherit;
    width: auto;
    border: none;
    color: inherit;
    margin-left: 7px;
    text-transform: lowercase;
}

.countdown.countdown-inline .countdown-section:first-child {
    margin-left: 0;
}

.countdown.countdown-inline .countdown-amount {
    display: inline-block;
    font-size: inherit;
    color: inherit;
    font-weight: bold;
    margin: 0 3px 0 0;
}

.countdown.countdown-inline .countdown-descr {
    display: inline-block;
    width: auto;
}

/* countdown - slider & footer */
footer .countdown-section,
footer .countdown-amount,
footer .countdown.countdown-inline,
footer .countdown,
#slider .countdown-section,
#slider .countdown-amount,
#slider .countdown.countdown-inline,
#slider .countdown {
    color: #fff;
}

.countdown.squared .countdown-section,
.countdown.circle .countdown-section {
    border-left: 0;
}

.countdown.squared .countdown-amount,
.countdown.circle .countdown-amount {
    background-color: rgba(0, 0, 0, 0.3) !important;
    width: 100px;
    height: 100px;
    line-height: 100px;
    font-weight: 300;
    font-size: 35px;
    color: #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.countdown.dark .countdown-amount {
    background-color: rgba(0, 0, 0, 0.6) !important;
}

.countdown.light .countdown-amount {
    background-color: rgba(255, 255, 255, 0.3) !important;
}

.countdown.squared .countdown-amount {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.countdown.squared .countdown-section,
.countdown.circle .countdown-section {
    width: 100px;
    margin-left: 15px;
    font-size: 13px;
}

.countdown.bordered-squared .countdown-section,
.countdown.bordered .countdown-section {
    border-left: 0;
}

.countdown.bordered-squared .countdown-amount,
.countdown.bordered .countdown-amount {
    border: rgba(0, 0, 0, 0.3) 3px solid !important;
    width: 100px;
    height: 100px;
    line-height: 90px;
    font-weight: 300;
    font-size: 35px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.countdown.bordered-squared .countdown-amount {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.countdown.theme-style .countdown-amount {
    -webkit-border-bottom-right-radius: 40px;
    -webkit-border-top-left-radius: 40px;
    -moz-border-radius-bottomright: 40px;
    -moz-border-radius-topleft: 40px;
    border-bottom-right-radius: 40px;
    border-top-left-radius: 40px;
}

.countdown.bordered-squared .countdown-section,
.countdown.bordered .countdown-section {
    width: 100px;
    margin-left: 15px;
    font-size: 13px;
}

#slider .countdown.bordered .countdown-amount,
footer .countdown.bordered .countdown-amount {
    color: #fff;
}

section#slider {
    border-bottom: 0 none;
    box-shadow: none;
    display: block;
    margin: 0;
    overflow: hidden;
    padding: 0;
    transition: all 0s ease 0s;
    z-index: 0;
}

@media only screen and (max-width: 900px) {

    .countdown-sm .countdown-section,
    .countdown-md .countdown-section,
    .countdown-lg .countdown-section {
        font-size: 12px;
    }

    .countdown-sm .countdown-amount,
    .countdown-md .countdown-amount,
    .countdown-lg .countdown-amount {
        font-size: 20px;
        margin-bottom: 7px;
    }

    footer .countdown-section,
    #slider .countdown-section {
        border-left: 1px dotted rgba(255, 255, 255, 0.3);
    }

    footer .countdown-section:first-child,
    #slider .countdown-section:first-child {
        border-left: 0;
    }

    footer .countdown .countdown-amount,
    footer .countdown .countdown-section,
    #slider .countdown .countdown-section,
    #slider .countdown .countdown-amount {
        background-color: transparent !important;
        width: 60px;
        height: inherit;
        line-height: inherit;
        font-weight: 300;
        font-size: 22px;
        text-align: center;
        margin-left: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
    }

    footer .countdown .countdown-section,
    #slider .countdown .countdown-section {
        font-size: 12px;
    }
}

/**	20. Clients
*************************************************** **/
ul.clients-dotted {
    overflow: hidden;
}

ul.clients-dotted>li {
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
    display: inline-block;
}

ul.clients-dotted>li a {
    text-align: center;
    display: block;
}

ul.clients-dotted>li img {
    display: inline-block;
}

ul.clients-dotted>li:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 0;
    top: auto;
    left: 0;
    bottom: -1px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.3);
}

ul.clients-dotted>li:before {
    content: '';
    position: absolute;
    height: 100%;
    top: 0;
    left: -1px;
    border-left: 1px dashed rgba(0, 0, 0, 0.3);
}

/**	21. Alerts
*************************************************** **/
div.alert {
    border-left-color: #de002b;
    border-width: 1px;
    border-left-width: 5px;
}

div.alert-default {
    background-color: rgba(0, 0, 0, 0.1);
}

section.dark .alert-default {
    color: #fff;
    background-color: #111;
}

section.dark .alert-default h1,
section.dark .alert-default h2,
section.dark .alert-default h3,
section.dark .alert-default h4,
section.dark .alert-default h5,
section.dark .alert-default h6,
section.dark .alert-default p {
    color: #fff !important;
}

div.alert.alert-primary,
div.alert.alert-primary a {
    color: #fff;
}

div.alert.alert-bordered-dashed {
    padding: 30px 20px;
    border: #ccc 2px dashed;
}

div.alert.alert-bordered-dotted {
    padding: 30px 20px;
    border: #ccc 2px dotted;
}

div.alert.alert-bordered {
    padding: 30px 20px;
    border: #ccc 2px solid;
}

div.alert.alert-theme-color,
div.alert.alert-dark {
    color: #fff;
    background-color: #333;
    border: 0;
    padding: 30px 20px;
}

div.alert.alert-theme-color h1,
div.alert.alert-theme-color h2,
div.alert.alert-theme-color h3,
div.alert.alert-theme-color h4,
div.alert.alert-theme-color h5,
div.alert.alert-theme-color h6,
div.alert.alert-dark h1,
div.alert.alert-dark h2,
div.alert.alert-dark h3,
div.alert.alert-dark h4,
div.alert.alert-dark h5,
div.alert.alert-dark h6 {
    color: #fff;
}

section.dark div.alert,
section.dark div.alert h1,
section.dark div.alert h2,
section.dark div.alert h3,
section.dark div.alert h4,
section.dark div.alert h5,
section.dark div.alert h6,
section.dark div.alert p {
    color: #333;
}

section.dark div.callout.alert.alert-border,
section.dark div.callout.alert.alert-border h1,
section.dark div.callout.alert.alert-border h2,
section.dark div.callout.alert.alert-border h3,
section.dark div.callout.alert.alert-border h4,
section.dark div.callout.alert.alert-border h5,
section.dark div.callout.alert.alert-border h6,
section.dark div.callout.alert.alert-border p {
    color: #fff;
}

.alert-info {
    color: #333;
    background-color: #f5f5f5;
    border-color: #ddd;
}

/* bordered top|botom */
div.alert>.container {
    margin-top: 35px;
    margin-bottom: 35px;
}

div.alert.bordered-bottom {
    border-bottom: rgba(0, 0, 0, 0.1) 1px solid;
    border-left-width: 0;
}

div.alert.bordered-top {
    border-bottom: rgba(0, 0, 0, 0.1) 1px solid;
    border-left-width: 0;
}

div.alert.bordered-bottom h4,
div.alert.bordered-top h4,
div.alert.bordered-bottom h3,
div.alert.bordered-top h3 {
    font-weight: 400;
    margin: 0;
}

div.alert.bordered-bottom p,
div.alert.bordered-top p,
div.alert.bordered-bottom p,
div.alert.bordered-top p {
    margin-top: 0;
}

section.dark div.alert.bordered-bottom {
    border-bottom: #666 1px solid;
}

section.dark div.alert.bordered-top {
    border-bottom: #666 1px solid;
}

@media only screen and (max-width: 760px) {
    div.alert.bordered-bottom {
        text-align: center;
    }

    div.alert.bordered-bottom .btn {
        text-align: center;
        display: block;
        margin-top: 35px;
    }
}

/* mini alerts */
.alert.alert-mini {
    padding: 6px 10px;
    border-left: 0;
}

/** 22. Dividers
*************************************************** **/
div.divider {
    margin: 40px 0;
    position: relative;
    display: block;
    min-height: 20px;
}

div.divider i {
    line-height: 1;
    font-size: 18px;
    color: #ccc;
}

div.divider:after {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    right: 0;
    height: 0;
    border-top: 1px solid #ddd;
}

section.dark div.divider:after {
    border-top: rgba(255, 255, 255, 0.1) 1px solid;
}

section.dark div.divider:before {
    border-top: rgba(255, 255, 255, 0.1) 1px solid;
}

div.divider.double-line:before {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    height: 0;
    border-top: 1px solid #ddd;
}

section.dark div.divider.double-line:after {
    border-top: rgba(255, 255, 255, 0.1) 1px solid;
}

div.divider.divider-left:after {
    left: 30px;
    right: 0;
}

div.divider.divider-left i {
    float: left;
}

div.divider.divider-right:after {
    left: 0;
    right: 30px;
}

div.divider.divider-right i {
    float: right;
}

div.divider.divider-center:after {
    left: 50% !important;
    right: 0;
    margin-left: 20px;
}

div.divider.divider-center:before {
    left: 0 !important;
    right: 50%;
    margin-right: 20px;
    content: '';
    position: absolute;
    top: 8px;
    height: 0;
    border-top: 1px solid #ddd;
}

div.divider.divider-center {
    text-align: center;
}

div.divider.divider-center.divider-short:before {
    left: auto !important;
    right: 50%;
    margin-right: 20px;
    width: 15%;
}

div.divider.divider-center.divider-short:after {
    left: 50% !important;
    right: auto !important;
    margin-left: 20px;
    width: 15%;
}

/* dotted */
div.divider.divider-dotted {
    height: 10px;
    border: 0;
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKAQMAAAC3/F3+AAAABlBMVEX///+QkJApn3LQAAAAAnRSTlMAgJsrThgAAAAOSURBVHheYwCCUAdcJAAnnALqo5TBzAAAAABJRU5ErkJggg==') repeat-x center;
}

div.divider.divider-dotted:after {
    display: none;
}

/* color */
div.divider.divider-circle.divider-left:after {
    left: 50px;
}

div.divider.divider-circle.divider-right:after {
    right: 50px;
}

div.divider.divider-circle.divider-center:after {
    margin-left: 30px;
}

div.divider.divider-circle.divider-center:before {
    margin-right: 30px;
}

div.divider.divider-circle i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: #F5F5F5;
    margin-top: -11px;
    text-align: center;
    z-index: 1;
    color: #999;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

/* border */
div.divider.divider-border.divider-left:after {
    left: 50px;
}

div.divider.divider-border.divider-right:after {
    right: 50px;
}

div.divider.divider-border.divider-center:after {
    margin-left: 30px;
}

div.divider.divider-border.divider-center:before {
    margin-right: 30px;
}

div.divider.divider-border i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-top: -11px;
    text-align: center;
    z-index: 1;
    border: #ddd 1px solid;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

section.dark div.divider.divider-border i {
    border-color: rgba(255, 255, 255, 0.5);
}

/* scroll to top */
div.divider.divider-border>a>i.fa-chevron-up {
    line-height: 36px;
}

div.divider.divider-border>a>i {
    -webkit-transition: all .300s;
    -moz-transition: all .300s;
    -o-transition: all .300s;
    transition: all .300s;
}

div.divider.divider-border>a:hover>i {
    color: #333;
}

section.theme-color div.divider.divider-border>a:hover>i.fa-chevron-up {
    color: #fff;
}

/** 23. Headings
*************************************************** **/
div.heading-title {
    position: relative;
    margin-bottom: 40px;
}

.heading-title.parallax h1,
.heading-title.parallax h2,
.heading-title.parallax h3,
.heading-title.parallax h4,
.heading-title.parallax h5,
.heading-title.parallax h6 {
    margin: 0;
    padding: 0;
}

.heading-title.parallax p {
    margin-top: 0;
}

div.heading-title h1,
div.heading-title h2,
div.heading-title h3,
div.heading-title h4,
.heading-title h5,
div.heading-title h6,
div.heading-title .h1,
div.heading-title .h2,
div.heading-title .h3,
div.heading-title .h4,
.heading-title .h5,
div.heading-title .h6 {
    margin: 0;
    padding: 0;
    background-color: #fff;
    position: relative;
    display: inline-block;
    padding-left: 0;
    padding-right: 15px;
}

div.heading-title.text-center h1,
div.heading-title.text-center h2,
div.heading-title.text-center h3,
div.heading-title.text-center h4,
div.heading-title.text-center h5,
div.heading-title.text-center h6,
div.heading-title.text-center .h1,
div.heading-title.text-center .h2,
div.heading-title.text-center .h3,
div.heading-title.text-center .h4,
div.heading-title.text-center .h5,
div.heading-title.text-center .h6 {
    padding-left: 15px;
    padding-right: 15px;
}

div.heading-title.text-right h1,
div.heading-title.text-right h2,
div.heading-title.text-right h3,
div.heading-title.text-right h4,
div.heading-title.text-right h5,
div.heading-title.text-right h6,
div.heading-title.text-right .h1,
div.heading-title.text-right .h2,
div.heading-title.text-right .h3,
div.heading-title.text-right .h4,
div.heading-title.text-right .h5,
div.heading-title.text-right .h6 {
    padding-left: 15px;
    padding-right: 0;
}

div.heading-title p {
    margin: 0;
    padding: 0;
    font-weight: 300;
}

/* Line : Single|Double */
div.heading-title.heading-line-single:before,
div.heading-title.heading-line-double:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 0;
    left: auto;
    right: 0;
}

div.heading-title.heading-line-single:before {
    top: 54%;
    border-top: #EEE 1px solid;
}

section.dark div.heading-title.heading-line-single:before {
    border-top-color: #666;
}

div.heading-title.heading-line-double:before {
    top: 50%;
    border-top: 3px double #E5E5E5;
}

section.dark div.heading-title.heading-line-double:before {
    border-top-color: #666;
}

/* Border Bottom */
div.heading-title.heading-border-bottom {
    border-bottom: #ccc 2px solid;
}

section.dark div.heading-title.heading-border-bottom {
    border-bottom-color: #666;
}

/* Border Left */
div.heading-title.heading-border {
    padding-left: 15px;
    border-left: #ccc 5px solid;
    text-align: left;
}

section.dark div.heading-title.heading-border {
    border-left-color: #666;
}

div.heading-title.heading-border.heading-inverse {
    padding-right: 15px;
    border-left: 0;
    border-right: #ccc 5px solid;
    text-align: right;
}

section.dark div.heading-title.heading-border.heading-inverse {
    border-right-color: #666;
}

/* Dotted */
div.heading-title.heading-dotted {
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKAQMAAAC3/F3+AAAABlBMVEX///+QkJApn3LQAAAAAnRSTlMAgJsrThgAAAAOSURBVHheYwCCUAdcJAAnnALqo5TBzAAAAABJRU5ErkJggg==') repeat-x center;
}

section.alternate div.heading-title h1,
section.alternate div.heading-title h2,
section.alternate div.heading-title h3,
section.alternate div.heading-title h4,
section.alternate div.heading-title h5,
section.alternate div.heading-title h6 {
    background-color: #F9F9F9;
}

section.dark div.heading-title h1,
section.dark div.heading-title h2,
section.dark div.heading-title h3,
section.dark div.heading-title h4,
section.dark div.heading-title h5,
section.dark div.heading-title h6 {
    background-color: #212121;
}

section.dark.alternate div.heading-title h1,
section.dark.alternate div.heading-title h2,
section.dark.alternate div.heading-title h3,
section.dark.alternate div.heading-title h4,
section.dark.alternate div.heading-title h5,
section.dark.alternate div.heading-title h6 {
    background-color: #151515;
}

/* Arrow Heading */
.heading-title.heading-arrow-top,
.heading-title.heading-arrow-bottom {
    color: #fff;
    background-color: #252525;
}

.heading-title.heading-arrow-top h1,
.heading-title.heading-arrow-bottom h1,
.heading-title.heading-arrow-top h2,
.heading-title.heading-arrow-bottom h2,
.heading-title.heading-arrow-top h3,
.heading-title.heading-arrow-bottom h3,
.heading-title.heading-arrow-top h4,
.heading-title.heading-arrow-bottom h4,
.heading-title.heading-arrow-top h5,
.heading-title.heading-arrow-bottom h5,
.heading-title.heading-arrow-top h6,
.heading-title.heading-arrow-bottom h6,
.heading-title.heading-arrow-top p,
.heading-title.heading-arrow-bottom p {
    color: #fff;
    margin: 0;
}

.heading-title.heading-arrow-top h1,
.heading-title.heading-arrow-bottom h1 {
    font-size: 70px;
    line-height: 100px;
}

.heading-title.heading-arrow-top h2,
.heading-title.heading-arrow-bottom h2 {
    font-size: 60px;
    line-height: 90px;
}

.heading-title.heading-arrow-top h3,
.heading-title.heading-arrow-bottom h3 {
    font-size: 50px;
    line-height: 80px;
}

@media only screen and (max-width: 760px) {

    .heading-title.heading-arrow-top h1,
    .heading-title.heading-arrow-bottom h1 {
        font-size: 55px;
        line-height: 85px;
    }

    .heading-title.heading-arrow-top h2,
    .heading-title.heading-arrow-bottom h2 {
        font-size: 45px;
        line-height: 75px;
    }

    .heading-title.heading-arrow-top h3,
    .heading-title.heading-arrow-bottom h3 {
        font-size: 45px;
        line-height: 75px;
    }
}

@media only screen and (max-width: 500px) {

    .heading-title.heading-arrow-top h1,
    .heading-title.heading-arrow-bottom h1 {
        font-size: 36px;
        line-height: 66px;
    }

    .heading-title.heading-arrow-top h2,
    .heading-title.heading-arrow-bottom h2 {
        font-size: 30px;
        line-height: 60px;
    }

    .heading-title.heading-arrow-top h3,
    .heading-title.heading-arrow-bottom h3 {
        font-size: 30px;
        line-height: 60px;
    }
}

.heading-title.heading-arrow-bottom:after {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #252525;
    left: 50%;
    margin-left: -20px;
    bottom: -20px;
}

.heading-title.heading-arrow-top:after {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid #252525;
    left: 50%;
    margin-left: -20px;
    top: -20px;
}

/** 25. Icon Boxes
*************************************************** **/
.box-icon {
    margin: 30px 0;
}

.box-icon>a,
.box-icon .box-icon-title {
    text-decoration: none !important;
    display: block;
}

.box-icon .box-icon-title>i {
    height: 35px;
    width: 35px;
    line-height: 37px;
    font-size: 18px;
    margin-right: 15px;
    background-color: #333;
    text-align: center;
    color: #fff;
    -webkit-transition: all .200s;
    -moz-transition: all .200s;
    -o-transition: all .200s;
    transition: all .200s;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

section.dark .box-icon .box-icon-title>i {
    background-color: #666;
}

.box-icon .box-icon-title.box-icon-transparent>i {
    color: #414141;
    background-color: transparent;
}

section.dark .box-icon .box-icon-title.box-icon-transparent>i {
    color: #fff;
}

.box-icon.box-icon-left .box-icon-title>i {
    float: left;
}

.box-icon.box-icon-round .box-icon-title>i {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.box-icon .box-icon-title>h2 {
    font-size: 18px;
    line-height: 35px;
    margin: 0;
    -webkit-transition: all .200s;
    -moz-transition: all .200s;
    -o-transition: all .200s;
    transition: all .200s;
}

.box-icon .box-icon-title>img+h2,
.box-icon .box-icon-title>img+h3,
.box-icon .box-icon-title>img+h4,
.box-icon .box-icon-title>img+h5 {
    font-size: 16px;
    line-height: 16px;
    margin-top: 20px;
}

.box-icon p {
    margin: 15px 0;
}

.box-icon a.box-icon-more {
    display: block;
    text-align: right;
    position: relative;
    color: #000;
}

section.dark .box-icon a.box-icon-more {
    color: #fff;
}

.box-icon a.box-icon-more:after {
    font-family: FontAwesome;
    content: "\f105";
    padding-left: 10px;
    top: 50%;
    margin-top: -2px;
}

.box-icon.box-icon-right .box-icon-title>i {
    float: right;
    margin-right: 0;
    margin-left: 10px;
}

.box-icon.box-icon-right {
    text-align: right;
}

@media only screen and (max-width: 760px) {
    .box-icon.box-icon-right .box-icon-title>i {
        float: left;
        margin-right: 10px;
        margin-left: 0;
    }

    .box-icon.box-icon-right {
        text-align: left;
    }
}

/* center */
.box-icon.box-icon-center .box-icon-more,
.box-icon.box-icon-center .box-icon-title,
.box-icon.box-icon-center p {
    text-align: center !important;
}

.box-icon.box-icon-center .box-icon-title>i {
    float: none;
    margin: 0 0 10px 0;
}

/* transparent icon */
.box-icon.box-icon-transparent .box-icon-title>i {
    background-color: transparent;
    border: #ccc 1px solid;
    color: #333;
}

section.dark .box-icon.box-icon-transparent .box-icon-title>i {
    color: #fff;
    background-color: #212121;
    border: #555 1px solid;
}

/* large icon */
.box-icon.box-icon-large .box-icon-title>i {
    width: 65px;
    height: 65px;
    line-height: 65px;
    font-size: 24px;
}

.box-icon.box-icon-large a.box-icon-title:hover>i {
    border-color: transparent;
}

/* box content */
.box-icon.box-icon-content {
    background-color: rgba(0, 0, 0, 0.05);
    padding: 45px 15px 15px 15px;
    display: block;
    margin-top: 33px;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

section.dark .box-icon.box-icon-content {
    background-color: rgba(0, 0, 0, 0.1);
}

.box-icon.box-icon-content .box-icon-title>i {
    background-color: #fff;
    top: 0;
    margin-left: -33px;
    position: absolute;
}

section.alternate .box-icon.box-icon-content .box-icon-title>i {
    background-color: #F9F9F9;
}

/* box icon side */
.box-icon.box-icon-side {
    position: relative;
    padding-left: 70px;
}

.box-icon.box-icon-side>i {
    position: absolute;
    left: 0;
    top: 10px;
    font-size: 48px;
}

/* Box Video */
.box-video {
    border: rgba(0, 0, 0, 0.1) 1px solid;
    margin: 30px 0;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

section.dark .box-video {
    border: rgba(255, 255, 255, 0.1) 1px solid;
}

.box-video .box-video-title {
    text-decoration: none !important;
}

.box-video .box-video-title h2 {
    margin: 20px 15px 15px 15px;
    font-size: 18px;
    line-height: 20px;
}

.box-video p,
.box-video .btn,
.box-video button {
    margin-bottom: 15px;
}

.box-video p {
    margin-top: 0;
    margin-left: 15px;
    margin-right: 15px;
}

/* Box Image */
.box-image {
    border: rgba(0, 0, 0, 0.1) 1px solid;
    margin: 15px 0;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

section.dark .box-image {
    border: rgba(255, 255, 255, 0.1) 1px solid;
}

.box-image .box-image-title {
    text-decoration: none !important;
}

.box-image img {
    margin-bottom: 20px;
}

.box-image .box-image-title.h2 {
    margin: 0 15px 15px 15px;
    font-size: 18px;
    line-height: 20px;
}

.box-image p,
.box-image .btn,
.box-image button {
    margin-bottom: 15px;
}

.box-image p {
    margin-top: 0;
    margin-left: 15px;
    margin-right: 15px;
}

@media only screen and (max-width: 760px) {
    .box-icon {
        margin: 60px 0;
    }

    .box-icon.box-icon-content .box-icon-title>i {
        top: -33px;
    }
}

/** FLIP BOXES
 **************** */
.box-flip {
    margin: 0 auto;
    position: relative;
    -webkit-perspective: 600px;
    -moz-perspective: 600px;
    perspective: 600;
    width: 100%;
}

.box-flip .front,
.box-flip .back {
    text-align: center;
}

.box-flip .front {
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 1;
    text-align: center;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -webkit-transform: rotateX(0deg) rotateY(0deg);
    -moz-transform: rotateX(0deg) rotateY(0deg);
    transform: rotateX(0deg) rotateY(0deg);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.box-flip .back {
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 2;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.box-flip.flip .front {
    width: 100%;
    z-index: 1;
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    -o-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}

.box-flip.flip .back {
    width: 100%;
    z-index: 2;
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
}

.box-flip .box1 {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.05);
    min-height: 50px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

section.dark .box-flip .box1 {
    background-color: rgba(255, 255, 255, 0.05);
}

.box-flip .box2 {
    width: 100%;
    background-color: #333;
    min-height: 50px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

.box-flip hr {
    border-color: rgba(0, 0, 0, 0.1);
}

.box-flip .box-icon-title>i {
    color: #111;
    background-color: rgba(0, 0, 0, 0.07);
}

section.dark .box-flip .box-icon-title>i {
    color: #fff;
}

.box-flip.box-color h1,
.box-flip.box-color h2,
.box-flip.box-color h3,
.box-flip.box-color h4,
.box-flip.box-color h5,
.box-flip.box-color h6,
.box-flip.box-color p,
.box-flip.box-color .box-icon-title>i {
    color: #fff;
}

.box-flip .btn-lg.btn-translucid {
    font-size: 14px;
}

.box-flip .box-default,
.box-flip .box-default p,
.box-flip .box-default h1,
.box-flip .box-default h2,
.box-flip .box-default h3,
.box-flip .box-default h4,
.box-flip .box-default h5 {
    color: #000 !important;
}

/* box static */
.box-static {
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.05);
    border-top: 3px solid !important;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

.box-static.box-transparent {
    background-color: transparent;
}

.box-static.box-bordered {
    border: rgba(0, 0, 0, 0.1) 1px solid;
}

.box-static.box-color,
.box-static.box-dark {
    color: #fff;
    background-color: #333;
}

.box-static.box-color h1,
.box-static.box-color h2,
.box-static.box-color h3,
.box-static.box-color h4,
.box-static.box-color h5,
.box-static.box-color h6,
.box-static.box-dark h1,
.box-static.box-dark h2,
.box-static.box-dark h3,
.box-static.box-dark h4,
.box-static.box-dark h5,
.box-static.box-dark h6 {
    color: #fff;
}

.box-static.box-border-top {
    border-top: rgba(0, 0, 0, 0.5) 3px solid;
}

.box-static .box-title {
    margin-bottom: 20px;
    border-bottom: rgba(0, 0, 0, 0.1) 1px solid;
}

.box-static.box-color .box-title,
.box-static.box-dark .box-title {
    border-bottom: rgba(255, 255, 255, 0.1) 1px solid;
}

section.dark .box-static.box-bordered {
    border: rgba(255, 255, 255, 0.1) 1px solid;
}

section.dark .box-static {
    color: #fff;
    padding: 15px;
    background-color: #333;
}

section.dark .box-static input,
section.dark .box-static label {
    color: #fff;
}

section.dark .box-static .box-title {
    border-bottom: rgba(255, 255, 255, 0.1) 1px solid;
}

@media all and (max-width: 992px) {
    .box-flip {
        margin-bottom: 30px;
    }
}

/** Box Colors */
.box-light {
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.05);
}

.box-dark {
    color: #fff;
    padding: 15px;
    background-color: #333;
}

.box-dark h1,
.box-dark h2,
.box-dark h3,
.box-dark h4,
.box-dark h5,
.box-dark h6 {
    color: #fff;
}

.box-inner {
    padding: 15px;
    display: block;
}

.box-inner h1,
.box-inner h2,
.box-inner h3,
.box-inner h4,
.box-inner h5,
.box-inner h6 {
    font-size: 14px;
    line-height: 17px;
    padding-bottom: 12px;
    border-bottom: rgba(0, 0, 0, 0.1) 1px solid;
    margin-bottom: 15px;
}

.box-light .box-inner {
    background-color: #fff;
}

.box-dark .box-inner {
    background-color: #111;
}

.box-footer {
    margin: 1px 0;
    padding: 8px 15px;
}

.box-light .box-footer {
    background-color: #fff;
}

.box-dark .box-footer {
    background-color: #111;
}

section.dark .box-light {
    background-color: rgba(255, 255, 255, 0.05);
}

section.dark .box-dark {
    background-color: rgba(0, 0, 0, 0.8);
}

section.dark .box-light .box-inner {
    background-color: #111;
}

section.dark .box-dark .box-inner {
    background-color: #111;
}

section.dark .box-light .box-footer {
    background-color: #111;
}

section.dark .box-dark .box-footer {
    background-color: #111;
}

section.dark .box-inner h1,
section.dark .box-inner h2,
section.dark .box-inner h3,
section.dark .box-inner h4,
section.dark .box-inner h5,
section.dark .box-inner h6 {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

section.dark .box-inner h1>a:hover,
section.dark .box-inner h2>a:hover,
section.dark .box-inner h3>a:hover,
section.dark .box-inner h4>a:hover,
section.dark .box-inner h5>a:hover,
section.dark .box-inner h6>a:hover {
    text-decoration: underline !important;
}

/* successive colored boxes */
.box-gradient {
    color: #fff;
    margin: 0;
    text-align: center;
}

.box-gradient>div {
    margin: 0;
    padding: 50px 8px 30px 8px;
    -webkit-transition: all .400s;
    -moz-transition: all .400s;
    -o-transition: all .400s;
    transition: all .400s;
}

.box-gradient>div>p {
    font-size: 15px;
    margin: 0;
    height: 50px;
    overflow: hidden;
}

.box-gradient h1,
.box-gradient h2,
.box-gradient h3,
.box-gradient h4,
.box-gradient h5,
.box-gradient h6 {
    color: #fff;
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 50px;
    line-height: 50px;
    font-weight: 300;
}

/* pink */
.box-pink>div:nth-child(1) {
    background-color: #e2476b;
}

.box-pink>div:nth-child(2) {
    background-color: #e9738f;
}

.box-pink>div:nth-child(3) {
    background-color: #f09fb2;
}

.box-pink>div:nth-child(4) {
    background-color: #f7cbd5;
}

/* blue */
.box-blue>div:nth-child(1) {
    background-color: #004080;
}

.box-blue>div:nth-child(2) {
    background-color: #006fdd;
}

.box-blue>div:nth-child(3) {
    background-color: #2b95ff;
}

.box-blue>div:nth-child(4) {
    background-color: #6cb6ff;
}

/* orange */
.box-orange>div:nth-child(1) {
    background-color: #ea5726;
}

.box-orange>div:nth-child(2) {
    background-color: #ee754d;
}

.box-orange>div:nth-child(3) {
    background-color: #f19272;
}

.box-orange>div:nth-child(4) {
    background-color: #f5b39c;
}

/* yellow */
.box-yellow>div:nth-child(1) {
    background-color: #e3a42d;
}

.box-yellow>div:nth-child(2) {
    background-color: #eaba60;
}

.box-yellow>div:nth-child(3) {
    background-color: #eec882;
}

.box-yellow>div:nth-child(4) {
    background-color: #f2d7a4;
}

/* purple */
.box-purple>div:nth-child(1) {
    background-color: #864699;
}

.box-purple>div:nth-child(2) {
    background-color: #9a50af;
}

.box-purple>div:nth-child(3) {
    background-color: #a96cbb;
}

.box-purple>div:nth-child(4) {
    background-color: #bb89c9;
}

/* red */
.box-red>div:nth-child(1) {
    background-color: #b92c28;
}

.box-red>div:nth-child(2) {
    background-color: #d33834;
}

.box-red>div:nth-child(3) {
    background-color: #d9524f;
}

.box-red>div:nth-child(4) {
    background-color: #e17673;
}

/* brown */
.box-brown>div:nth-child(1) {
    background-color: #633232;
}

.box-brown>div:nth-child(2) {
    background-color: #7b3e3e;
}

.box-brown>div:nth-child(3) {
    background-color: #9d4f4f;
}

.box-brown>div:nth-child(4) {
    background-color: #b36868;
}

/* green */
.box-green>div:nth-child(1) {
    background-color: #0c5849;
}

.box-green>div:nth-child(2) {
    background-color: #117964;
}

.box-green>div:nth-child(3) {
    background-color: #16a387;
}

.box-green>div:nth-child(4) {
    background-color: #1ccaa7;
}

/* black */
.box-black>div:nth-child(1) {
    background-color: #000000;
}

.box-black>div:nth-child(2) {
    background-color: #1d1d1d;
}

.box-black>div:nth-child(3) {
    background-color: #2e2e2e;
}

.box-black>div:nth-child(4) {
    background-color: #454545;
}

/* gray */
.box-gray>div:nth-child(1) {
    background-color: #333333;
}

.box-gray>div:nth-child(2) {
    background-color: #4a4a4a;
}

.box-gray>div:nth-child(3) {
    background-color: #5f5f5f;
}

.box-gray>div:nth-child(4) {
    background-color: #797979;
}

/* teal */
.box-teal>div:nth-child(1) {
    background-color: #426062;
}

.box-teal>div:nth-child(2) {
    background-color: #4f7275;
}

.box-teal>div:nth-child(3) {
    background-color: #618c8f;
}

.box-teal>div:nth-child(4) {
    background-color: #8aadb0;
}

@media all and (max-width: 768px) {
    .box-gradient>div {
        margin: 0 !important;
    }
}

@media all and (max-width: 482px) {

    .box-gradient h1,
    .box-gradient h2,
    .box-gradient h3,
    .box-gradient h4,
    .box-gradient h5,
    .box-gradient h6 {
        font-size: 36px;
        line-height: 36px;
    }
}

/**	26. Labels & Badges
*************************************************** **/
.badge,
.label {
    font-weight: 400;
}

.label.label-square {
    font-size: 13px;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    margin-right: 10px;
    padding: 0;
}

.label.label-square.pull-left {
    margin-left: 10px;
}

.label.label-square.pull-right {
    margin-right: 10px;
}

h1 .label,
h2 .label,
h3 .label,
h4 .label,
h5 .label,
h6 .label {
    padding: 3px 10px;
}

section .nav-pills>li>a,
section .nav-pills>li.active>a:hover,
section .nav-pills>li.active>a {
    color: #111;
}

section.dark .nav-pills>li>a,
section.dark .nav-pills>li.active>a:hover,
section.dark .nav-pills>li.active>a {
    color: #fff;
}

section.dark .nav-pills>li.active>a {
    background-color: rgba(255, 255, 255, 0.3) !important;
}

section.dark a.label,
section.dark .label {
    color: #fff;
}

/* corner */
.badge.badge-corner {
    top: -7px !important;
    right: -15px !important;
    position: absolute !important;
    color: #fff !important;
}

/* colors */
span.badge-default,
span.label-default,
.list-group-item.active>.badge.badge-default {
    background-color: #333 !important;
}

span.label-blue,
span.badge-blue,
.list-group-item.active>.badge {
    background: #3498db !important;
}

span.label-red,
span.badge-red,
.list-group-item.active>.badge {
    background: #e74c3c !important;
}

span.label-green,
span.badge-green,
.list-group-item.active>.badge.badge-green {
    background: #2ecc71 !important;
}

span.label-sea,
span.badge-sea,
.list-group-item.active>.badge.badge-sea {
    background: #1abc9c !important;
}

span.label-orange,
span.badge-orange,
.list-group-item.active>.badge.badge-orange {
    background: #e67e22 !important;
}

span.label-yellow,
span.badge-yellow,
.list-group-item.active>.badge.badge-yellow {
    background: #f1c40f !important;
}

span.label-purple,
span.badge-purple,
.list-group-item.active>.badge.badge-purple {
    background: #9b6bcc !important;
}

span.label-aqua,
span.badge-aqua,
.list-group-item.active>.badge.badge-aqua {
    background: #27d7e7 !important;
}

span.label-brown,
span.badge-brown,
.list-group-item.active>.badge.badge-brown {
    background: #9c8061 !important;
}

span.label-dark-blue,
span.badge-dark-blue,
.list-group-item.active>.badge.badge-dark-blue {
    background: #4765a0 !important;
}

span.label-light-green,
span.badge-light-green,
.list-group-item.active>.badge.badge-light-green {
    background: #79d5b3 !important;
}

span.label-light,
span.badge-light,
.list-group-item.active>.badge.badge-light {
    color: #777;
    background: #ecf0f1 !important;
}

span.label-dark,
span.badge-dark,
.list-group-item.active>.badge.badge-dark {
    background: #555 !important;
}

/** 27. Lightbox Ajax [Magnific Popup]
*************************************************** **/
.lightbox-ajax {
    position: relative;
    background-color: #FFF;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.lightbox-ajax .lightbox-ajax-body {
    padding: 20px;
}

.lightbox-ajax>h1,
.lightbox-ajax>h2,
.lightbox-ajax>h3,
.lightbox-ajax>h4,
.lightbox-ajax>h5,
.lightbox-ajax>h6 {
    background-color: #F9F9F9;
    border-bottom: 1px solid #EEE;
    padding: 20px 30px;
    margin: 0;
}

@media all and (max-width: 992px) {
    .lightbox-ajax .lightbox-ajax-body .row>div {
        margin-bottom: 30px;
    }
}

/** 28. Panels
*************************************************** **/
.panel {
    margin-bottom: 30px;
}

section.dark .panel-default>.panel-heading {
    border-color: #666;
}

.panel-footer .social-icon {
    margin-top: 0;
    margin-bottom: 0;
}

.panel-heading .btn,
.panel-footer .btn {
    margin: 0;
}

.panel-footer.panel-footer-transparent,
.panel-heading.panel-heading-transparent {
    background-color: transparent;
}

section.dark .panel {
    background-color: #373737;
    border-color: #666;
}

section.dark .panel .btn {
    color: #fff !important;
}

section.dark .panel-footer {
    border-top-color: rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.1);
}

.panel .table {
    background-color: transparent;
}

section.dark table {
    color: #fff;
    background-color: #373737;
}

section.dark .panel .panel-heading,
section.dark .panel .panel-heading h2 {
    color: #111 !important;
}

section.dark .panel .panel-heading.panel-heading-transparent,
section.dark .panel .panel-heading.panel-heading-transparent h2 {
    color: #eaeaea !important;
}

.panel table thead {
    background-color: rgba(0, 0, 0, 0.01);
}

section.dark .table>thead>tr>th {
    border-bottom-color: #666;
}

section.dark .panel>.panel-body+.table,
section.dark .panel>.panel-body+.table-responsive,
section.dark .panel>.table+.panel-body,
section.dark .panel>.table-responsive+.panel-body,
section.dark .table>tbody>tr>td,
section.dark .table>tbody>tr>th,
section.dark .table>tfoot>tr>td,
section.dark .table>tfoot>tr>th,
section.dark .table>thead>tr>td,
section.dark .table>thead>tr>th {
    border-top-color: #666;
}

section.dark .table>tbody>tr:hover>td {
    color: #000;
}

section.dark .table-striped>tbody>tr:nth-of-type(odd) {
    color: #000;
}

/** 29. Modals
*************************************************** **/
.modal-content {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.modal-header .btn,
.modal-footer .btn {
    margin: 0;
}

.modal-full {
    width: 100% !important;
    margin-left: 8px;
}

/** 30. Toastr
*************************************************** **/
.toast-title {
    font-weight: bold;
}

.toast-message {
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}

.toast-message a,
.toast-message label {
    color: #ffffff;
}

.toast-message a:hover {
    color: #cccccc;
    text-decoration: none;
}

.toast-close-button {
    position: relative;
    right: -0.3em;
    top: -0.3em;
    float: right;
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    opacity: 0.8;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    filter: alpha(opacity=80);
}

.toast-close-button:hover,
.toast-close-button:focus {
    color: #000000;
    text-decoration: none;
    cursor: pointer;
    opacity: 0.4;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
    filter: alpha(opacity=40);
}

button.toast-close-button {
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
}

.toast-top-center {
    top: 0;
    right: 0;
    width: 100%;
}

.toast-bottom-center {
    bottom: 0;
    right: 0;
    width: 100%;
}

.toast-top-full-width {
    top: 0;
    right: 0;
    width: 100%;
}

.toast-bottom-full-width {
    bottom: 0;
    right: 0;
    width: 100%;
}

.toast-top-left {
    top: 12px;
    left: 12px;
}

.toast-top-right {
    top: 12px;
    right: 12px;
}

.toast-bottom-right {
    right: 12px;
    bottom: 12px;
}

.toast-bottom-left {
    bottom: 12px;
    left: 12px;
}

#toast-container {
    position: fixed;
    z-index: 999999;
    /*overrides*/
}

#toast-container * {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

#toast-container>div {
    position: relative;
    overflow: hidden;
    margin: 0 0 6px;
    padding: 15px 15px 15px 50px;
    width: 300px;
    -moz-border-radius: 3px 3px 3px 3px;
    -webkit-border-radius: 3px 3px 3px 3px;
    border-radius: 3px 3px 3px 3px;
    background-position: 15px center;
    background-repeat: no-repeat;
    color: #ffffff;
    opacity: 0.8;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    filter: alpha(opacity=80);
}

#toast-container> :hover {
    opacity: 1;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    filter: alpha(opacity=100);
    cursor: pointer;
}

#toast-container>.toast-info {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=") !important;
}

#toast-container>.toast-error {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=") !important;
}

#toast-container>.toast-success {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==") !important;
}

#toast-container>.toast-warning {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=") !important;
}

#toast-container.toast-top-center>div,
#toast-container.toast-bottom-center>div {
    width: 300px;
    margin: auto;
}

#toast-container.toast-top-full-width>div,
#toast-container.toast-bottom-full-width>div {
    width: 96%;
    margin: auto;
}

.toast {
    background-color: #030303;
}

#toast-container .toast-primary {
    padding: 15px;
}

.toast-primary {
    border: 0;
    background-color: #333;
}

.toast-success {
    background-color: #51a351;
}

.toast-error {
    background-color: #bd362f;
}

.toast-info {
    background-color: #2f96b4;
}

.toast-warning {
    background-color: #f89406;
}

.toast-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    background-color: #000000;
    opacity: 0.4;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
    filter: alpha(opacity=40);
}

/*Responsive Design*/
@media all and (max-width: 240px) {
    #toast-container>div {
        padding: 8px 8px 8px 50px;
        width: 11em;
    }

    #toast-container .toast-close-button {
        right: -0.2em;
        top: -0.2em;
    }
}

@media all and (min-width: 241px) and (max-width: 480px) {
    #toast-container>div {
        padding: 8px 8px 8px 50px;
        width: 18em;
    }

    #toast-container .toast-close-button {
        right: -0.2em;
        top: -0.2em;
    }
}

@media all and (min-width: 481px) and (max-width: 768px) {
    #toast-container>div {
        padding: 15px 15px 15px 50px;
        width: 25em;
    }
}

/** 33. Tables
*************************************************** **/
.responsive-utilities td.is-visible {
    color: #468847;
    background-color: #dff0d8 !important;
}

/** 34. Callouts
*************************************************** **/
.callout.alert {
    padding: 20px 0;
    color: #111;
    margin-bottom: 0;
}

section.callout.alert {
    padding: 40px 0;
}

.callout.alert h1,
.callout.alert h2,
.callout.alert h3,
.callout.alert h4,
.callout.alert h5,
.callout.alert h6 {
    color: #111;
    margin-bottom: 3px;
    font-weight: 500;
}

.callout.alert p:last-child {
    margin: 0;
}

.callout.alert .btn {
    margin: 2px 0 0 0;
}

.callout.alert-border {
    border: rgba(0, 0, 0, 0.1) 2px solid;
}

.callout-box {
    clear: both;
    position: relative;
    overflow: hidden;
    background: #ddd;
    padding: 36px 0;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.callout-box h1,
.callout-box h2,
.callout-box h3,
.callout-box h4,
.callout-box h5,
.callout-box h6 {
    margin-bottom: 0;
}

.callout-dark {
    z-index: 10;
    position: relative;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.callout-dark h1,
.callout-dark h2,
.callout-dark h3,
.callout-dark h4,
.callout-dark h5,
.callout-dark h6 {
    /**margin-bottom: 20px !important;**/
}

.callout-dark p {
    color: #b1b1b1 !important;
    font-size: 17px !important;
    max-width: 960px !important;
    margin: auto !important;
}

.callout-dark a.social-icon,
.callout-dark .btn {
    color: #fff;
}

.callout-dark.heading-title {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.callout .row {
    margin-left: 0;
    margin-right: 0;
}

.callout {
    padding: 30px 0;
    color: #fff;
    -webkit-transition: all .400s;
    -moz-transition: all .400s;
    -o-transition: all .400s;
    transition: all .400s;
}

.callout h1,
.callout h2,
.callout h3,
.callout h4,
.callout h5,
.callout h6 {
    color: #fff;
    margin: 0 !important;
    font-weight: 300;
}

.callout p {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 300;
}

.callout .btn {
    margin: 6px 0 0 0;
}

.callout.callout-theme-color .btn,
.callout.callout-dark .btn {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.callout.callout-theme-color .btn:hover,
.callout.callout-dark .btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.callout.callout-dark {
    background-color: #252525;
}

.callout.callout-hover:hover {
    opacity: 0.85;
    filter: alpha(opacity=85);
}

.callout.callout-transparent,
.callout.callout-transparent h1,
.callout.callout-transparent h2,
.callout.callout-transparent h3,
.callout.callout-transparent h4,
.callout.callout-transparent h5,
.callout.callout-transparent h6,
.callout.callout-transparent p {
    color: #111;
    margin: 0 !important;
    font-weight: 300;
}

/* dark */
section.dark .callout,
section.dark .callout p,
section.dark .callout.alert {
    color: #111;
}

section.dark .callout h1,
section.dark .callout h2,
section.dark .callout h3,
section.dark .callout h4,
section.dark .callout h5,
section.dark .callout h6,
section.dark .callout p {
    color: #111;
}

section.dark .callout.alert-bolder,
section.dark .callout.alert-bolder h1,
section.dark .callout.alert-bolder h2,
section.dark .callout.alert-bolder h3,
section.dark .callout.alert-bolder h4,
section.dark .callout.alert-bolder h5,
section.dark .callout.alert-bolder h6,
section.dark .callout.alert-bolder p {
    color: #111;
}

section.dark .alert-border,
section.dark .alert-border h1,
section.dark .alert-border h2,
section.dark .alert-border h3,
section.dark .alert-border h4,
section.dark .alert-border h5,
section.dark .alert-border h6,
section.dark .alert-border p,
section.dark .callout .btn {
    color: #fff;
}

section.dark .alert-transparent {
    border-left-color: #444;
}

section.dark .alert-transparent,
section.dark .alert-transparent h1,
section.dark .alert-transparent h2,
section.dark .alert-transparent h3,
section.dark .alert-transparent h4,
section.dark .alert-transparent h5,
section.dark .alert-transparent h6,
section.dark .alert-transparent p,
section.dark .callout .btn {
    color: #fff;
}

section.dark .callout.alert-border {
    border-color: #666;
}

section.dark .callout-box.callout-default,
section.dark .callout-box.callout-default h1,
section.dark .callout-box.callout-default h2,
section.dark .callout-box.callout-default h3,
section.dark .callout-box.callout-default h4,
section.dark .callout-box.callout-default h5,
section.dark .callout-box.callout-default h6,
section.dark .callout-box.callout-default p {
    color: #111;
}

section.dark .callout-box .btn {
    color: #fff;
}

section.dark .callout-theme-color,
section.dark .callout-theme-color h1,
section.dark .callout-theme-color h2,
section.dark .callout-theme-color h3,
section.dark .callout-theme-color h4,
section.dark .callout-theme-color h5,
section.dark .callout-theme-color h6,
section.dark .callout-theme-color p {
    color: #fff;
}

section.dark .callout-dark {
    background-color: #111;
}

section.dark .callout-dark,
section.dark .callout-dark h1,
section.dark .callout-dark h2,
section.dark .callout-dark h3,
section.dark .callout-dark h4,
section.dark .callout-dark h5,
section.dark .callout-dark h6,
section.dark .callout-dark p {
    color: #fff;
}

section.dark .callout-transparent,
section.dark .callout-transparent h1,
section.dark .callout-transparent h2,
section.dark .callout-transparent h3,
section.dark .callout-transparent h4,
section.dark .callout-transparent h5,
section.dark .callout-transparent h6,
section.dark .callout-transparent p {
    color: #fff;
}

@media only screen and (max-width: 960px) {
    .callout a.social-icon {
        margin-top: 30px;
        float: none !important;
    }

    .callout div.text-right {
        text-align: left;
    }

    .callout-box.callout-default .btn,
    .callout .btn {
        display: block;
        margin-top: 30px !important;
    }

    .callout.alert,
    .callout-box.callout-default {
        padding: 20px 15px;
    }
}

@media only screen and (max-width: 480px) {

    .callout.callout-dark,
    .callout.callout-theme-color,
    .callout div.text-left,
    .callout div.text-right {
        text-align: center !important;
    }

    .callout h1,
    .callout h2,
    .callout h3,
    .callout h4,
    .callout h5,
    .callout h6 {
        margin-bottom: 30px !important;
    }

    .callout .btn {
        display: block;
        margin-top: 30px !important;
    }
}

/* Info Bar */
.info-bar {
    margin: 0;
    border: 0;
    color: #000;
    background-color: rgba(0, 0, 0, 0.05);
}

.info-bar div.row>div {
    padding-top: 20px;
    padding-bottom: 20px;
    margin: 0 !important;
}

.info-bar div.row>div:last-child {
    border: 0;
}

.info-bar div.row>div i {
    color: #333;
    font-size: 32px;
    line-height: 1.2;
    margin-right: 10px;
    float: left;
}

.info-bar h1,
.info-bar h2,
.info-bar h3,
.info-bar h4,
.info-bar h5,
.info-bar h6,
.info-bar p {
    color: #333;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}

.info-bar p {
    line-height: 18px;
}

/* dark */
.info-bar.info-bar-dark {
    background-color: #171717;
}

.info-bar.info-bar-dark a,
.info-bar.info-bar-dark div.row>div i,
.info-bar.info-bar-dark h1,
.info-bar.info-bar-dark h2,
.info-bar.info-bar-dark h3,
.info-bar.info-bar-dark h4,
.info-bar.info-bar-dark h5,
.info-bar.info-bar-dark h6,
.info-bar.info-bar-dark p {
    color: #fff;
}

.info-bar.info-bar-dark div.row>div {
    border-right-color: rgba(255, 255, 255, 0.1);
}

/* color */
.info-bar.info-bar-color a,
.info-bar.info-bar-color div.row>div i,
.info-bar.info-bar-color h1,
.info-bar.info-bar-color h2,
.info-bar.info-bar-color h3,
.info-bar.info-bar-color h4,
.info-bar.info-bar-color h5,
.info-bar.info-bar-color h6,
.info-bar.info-bar-color p {
    color: #fff;
}

.info-bar.info-bar-color div.row>div {
    border-right-color: rgba(0, 0, 0, 0.1);
}

/* clean */
.info-bar.info-bar-clean {
    background-color: #fff;
}

section.dark .info-bar-light {
    background-color: #fff;
}

section.dark .info-bar-dark {
    background-color: #313131;
}

/* bordered */
.info-bar.info-bar-bordered {
    margin: 30px 0;
    border: rgba(0, 0, 0, 0.1) 1px solid;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.info-bar.info-bar-bordered div.row>div {
    padding-top: 15px;
    padding-bottom: 15px;
}

section.dark .info-bar.info-bar-bordered {
    border-color: rgba(255, 255, 255, 0.1);
}

section.dark .info-bar div.row>div {
    border-right-color: rgba(255, 255, 255, 0.1);
}

section.dark .info-bar div.row>div i {
    color: #fff;
}

section.dark .info-bar.info-bar-color div.row>div {
    border-right-color: rgba(255, 255, 255, 0.2);
}

/** 37. Styled Icons
 **************************************************************** **/
i.ico-transparent,
i.ico-bordered,
i.ico-rounded,
i.ico-color,
i.ico-light,
i.ico-dark {
    color: #444;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 25px;
    border: 1px solid #555;
    background-color: transparent;
    text-align: center;
    display: inline-block;
    margin-bottom: 5px;
    margin: 4px 8px 7px 0;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

i.ico-transparent {
    border: transparent;
}

i.ico-rounded {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

i.ico-light {
    border: transparent;
    background-color: rgba(0, 0, 0, 0.05);
}

i.ico-dark {
    color: #fff;
    border: transparent;
    background-color: #333;
}

i.ico-color {
    color: #fff;
    border: transparent;
    text-shadow: rgba(0, 0, 0, .3) 1px 1px 1px;
}

i.ico-hover:hover {
    color: #fff;
    background-color: #111;
}

i.ico-hover-dark:hover {
    color: #fff !important;
    background-color: #111 !important;
}

i.ico-color.ico-hover:hover {
    background-color: #212121;
}

i.ico-xs {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 15px;
}

i.ico-lg {
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 45px;
}

section.dark i.ico-rounded,
section.dark i.ico-bordered {
    color: #ddd;
    border-color: #666;
}

section.dark i.ico-dark {
    color: #ccc;
    background-color: #111;
}

section.dark i.ico-light {
    color: #ddd;
    background-color: #444;
}

section.dark i.ico-transparent {
    color: #ddd;
}

section.dark i.ico-color.ico-hover:hover {
    background-color: #666;
}

/**	38. Pickers: Datepicker & Rangepicker & Colorpicker
*************************************************** **/
.datepicker {
    padding: 4px;
    border-radius: 4px;
    direction: ltr;
}

.datepicker-inline {
    width: 220px;
}

.datepicker.datepicker-rtl {
    direction: rtl;
}

.datepicker.datepicker-rtl table tr td span {
    float: right;
}

.datepicker-dropdown {
    top: 0;
    left: 0;
}

.datepicker-dropdown:before {
    content: '';
    display: inline-block;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #ccc;
    border-top: 0;
    border-bottom-color: rgba(0, 0, 0, 0.2);
    position: absolute;
}

.datepicker-dropdown:after {
    content: '';
    display: inline-block;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
    border-top: 0;
    position: absolute;
}

.datepicker-dropdown.datepicker-orient-left:before {
    left: 6px;
}

.datepicker-dropdown.datepicker-orient-left:after {
    left: 7px;
}

.datepicker-dropdown.datepicker-orient-right:before {
    right: 6px;
}

.datepicker-dropdown.datepicker-orient-right:after {
    right: 7px;
}

.datepicker-dropdown.datepicker-orient-top:before {
    top: -7px;
}

.datepicker-dropdown.datepicker-orient-top:after {
    top: -6px;
}

.datepicker-dropdown.datepicker-orient-bottom:before {
    bottom: -7px;
    border-bottom: 0;
    border-top: 7px solid #999;
}

.datepicker-dropdown.datepicker-orient-bottom:after {
    bottom: -6px;
    border-bottom: 0;
    border-top: 6px solid #fff;
}

.datepicker>div {
    display: none;
}

.datepicker.days div.datepicker-days {
    display: block;
}

.datepicker.months div.datepicker-months {
    display: block;
}

.datepicker.years div.datepicker-years {
    display: block;
}

.datepicker table {
    margin: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.datepicker table tr td,
.datepicker table tr th {
    text-align: center;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    border: none;
}

.table-striped .datepicker table tr td,
.table-striped .datepicker table tr th {
    background-color: transparent;
}

.datepicker table tr td.day:hover,
.datepicker table tr td.day.focused {
    background: #eeeeee;
    cursor: pointer;
}

.datepicker table tr td.old,
.datepicker table tr td.new {
    color: #999999;
}

.datepicker table tr td.disabled,
.datepicker table tr td.disabled:hover {
    background: none;
    color: #999999;
    cursor: default;
}

.datepicker table tr td.today,
.datepicker table tr td.today:hover,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today.disabled:hover {
    color: #000000;
    background-color: #ffdb99;
    border-color: #ffb733;
}

.datepicker table tr td.today:hover,
.datepicker table tr td.today:hover:hover,
.datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today.disabled:hover:hover,
.datepicker table tr td.today:focus,
.datepicker table tr td.today:hover:focus,
.datepicker table tr td.today.disabled:focus,
.datepicker table tr td.today.disabled:hover:focus,
.datepicker table tr td.today:active,
.datepicker table tr td.today:hover:active,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.active,
.datepicker table tr td.today:hover.active,
.datepicker table tr td.today.disabled.active,
.datepicker table tr td.today.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.today,
.open .dropdown-toggle.datepicker table tr td.today:hover,
.open .dropdown-toggle.datepicker table tr td.today.disabled,
.open .dropdown-toggle.datepicker table tr td.today.disabled:hover {
    color: #000000;
    background-color: #ffcd70;
    border-color: #f59e00;
}

.datepicker table tr td.today:active,
.datepicker table tr td.today:hover:active,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.active,
.datepicker table tr td.today:hover.active,
.datepicker table tr td.today.disabled.active,
.datepicker table tr td.today.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.today,
.open .dropdown-toggle.datepicker table tr td.today:hover,
.open .dropdown-toggle.datepicker table tr td.today.disabled,
.open .dropdown-toggle.datepicker table tr td.today.disabled:hover {
    background-image: none;
}

.datepicker table tr td.today.disabled,
.datepicker table tr td.today:hover.disabled,
.datepicker table tr td.today.disabled.disabled,
.datepicker table tr td.today.disabled:hover.disabled,
.datepicker table tr td.today[disabled],
.datepicker table tr td.today:hover[disabled],
.datepicker table tr td.today.disabled[disabled],
.datepicker table tr td.today.disabled:hover[disabled],
fieldset[disabled] .datepicker table tr td.today,
fieldset[disabled] .datepicker table tr td.today:hover,
fieldset[disabled] .datepicker table tr td.today.disabled,
fieldset[disabled] .datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today:hover.disabled:hover,
.datepicker table tr td.today.disabled.disabled:hover,
.datepicker table tr td.today.disabled:hover.disabled:hover,
.datepicker table tr td.today[disabled]:hover,
.datepicker table tr td.today:hover[disabled]:hover,
.datepicker table tr td.today.disabled[disabled]:hover,
.datepicker table tr td.today.disabled:hover[disabled]:hover,
fieldset[disabled] .datepicker table tr td.today:hover,
fieldset[disabled] .datepicker table tr td.today:hover:hover,
fieldset[disabled] .datepicker table tr td.today.disabled:hover,
fieldset[disabled] .datepicker table tr td.today.disabled:hover:hover,
.datepicker table tr td.today.disabled:focus,
.datepicker table tr td.today:hover.disabled:focus,
.datepicker table tr td.today.disabled.disabled:focus,
.datepicker table tr td.today.disabled:hover.disabled:focus,
.datepicker table tr td.today[disabled]:focus,
.datepicker table tr td.today:hover[disabled]:focus,
.datepicker table tr td.today.disabled[disabled]:focus,
.datepicker table tr td.today.disabled:hover[disabled]:focus,
fieldset[disabled] .datepicker table tr td.today:focus,
fieldset[disabled] .datepicker table tr td.today:hover:focus,
fieldset[disabled] .datepicker table tr td.today.disabled:focus,
fieldset[disabled] .datepicker table tr td.today.disabled:hover:focus,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today:hover.disabled:active,
.datepicker table tr td.today.disabled.disabled:active,
.datepicker table tr td.today.disabled:hover.disabled:active,
.datepicker table tr td.today[disabled]:active,
.datepicker table tr td.today:hover[disabled]:active,
.datepicker table tr td.today.disabled[disabled]:active,
.datepicker table tr td.today.disabled:hover[disabled]:active,
fieldset[disabled] .datepicker table tr td.today:active,
fieldset[disabled] .datepicker table tr td.today:hover:active,
fieldset[disabled] .datepicker table tr td.today.disabled:active,
fieldset[disabled] .datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.disabled.active,
.datepicker table tr td.today:hover.disabled.active,
.datepicker table tr td.today.disabled.disabled.active,
.datepicker table tr td.today.disabled:hover.disabled.active,
.datepicker table tr td.today[disabled].active,
.datepicker table tr td.today:hover[disabled].active,
.datepicker table tr td.today.disabled[disabled].active,
.datepicker table tr td.today.disabled:hover[disabled].active,
fieldset[disabled] .datepicker table tr td.today.active,
fieldset[disabled] .datepicker table tr td.today:hover.active,
fieldset[disabled] .datepicker table tr td.today.disabled.active,
fieldset[disabled] .datepicker table tr td.today.disabled:hover.active {
    background-color: #ffdb99;
    border-color: #ffb733;
}

.datepicker table tr td.today:hover:hover {
    color: #000;
}

.datepicker table tr td.today.active:hover {
    color: #fff;
}

.datepicker table tr td.range,
.datepicker table tr td.range:hover,
.datepicker table tr td.range.disabled,
.datepicker table tr td.range.disabled:hover {
    background: #eeeeee;
    border-radius: 0;
}

.datepicker table tr td.range.today,
.datepicker table tr td.range.today:hover,
.datepicker table tr td.range.today.disabled,
.datepicker table tr td.range.today.disabled:hover {
    color: #000000;
    background-color: #f7ca77;
    border-color: #f1a417;
    border-radius: 0;
}

.datepicker table tr td.range.today:hover,
.datepicker table tr td.range.today:hover:hover,
.datepicker table tr td.range.today.disabled:hover,
.datepicker table tr td.range.today.disabled:hover:hover,
.datepicker table tr td.range.today:focus,
.datepicker table tr td.range.today:hover:focus,
.datepicker table tr td.range.today.disabled:focus,
.datepicker table tr td.range.today.disabled:hover:focus,
.datepicker table tr td.range.today:active,
.datepicker table tr td.range.today:hover:active,
.datepicker table tr td.range.today.disabled:active,
.datepicker table tr td.range.today.disabled:hover:active,
.datepicker table tr td.range.today.active,
.datepicker table tr td.range.today:hover.active,
.datepicker table tr td.range.today.disabled.active,
.datepicker table tr td.range.today.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.range.today,
.open .dropdown-toggle.datepicker table tr td.range.today:hover,
.open .dropdown-toggle.datepicker table tr td.range.today.disabled,
.open .dropdown-toggle.datepicker table tr td.range.today.disabled:hover {
    color: #000000;
    background-color: #f4bb51;
    border-color: #bf800c;
}

.datepicker table tr td.range.today:active,
.datepicker table tr td.range.today:hover:active,
.datepicker table tr td.range.today.disabled:active,
.datepicker table tr td.range.today.disabled:hover:active,
.datepicker table tr td.range.today.active,
.datepicker table tr td.range.today:hover.active,
.datepicker table tr td.range.today.disabled.active,
.datepicker table tr td.range.today.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.range.today,
.open .dropdown-toggle.datepicker table tr td.range.today:hover,
.open .dropdown-toggle.datepicker table tr td.range.today.disabled,
.open .dropdown-toggle.datepicker table tr td.range.today.disabled:hover {
    background-image: none;
}

.datepicker table tr td.range.today.disabled,
.datepicker table tr td.range.today:hover.disabled,
.datepicker table tr td.range.today.disabled.disabled,
.datepicker table tr td.range.today.disabled:hover.disabled,
.datepicker table tr td.range.today[disabled],
.datepicker table tr td.range.today:hover[disabled],
.datepicker table tr td.range.today.disabled[disabled],
.datepicker table tr td.range.today.disabled:hover[disabled],
fieldset[disabled] .datepicker table tr td.range.today,
fieldset[disabled] .datepicker table tr td.range.today:hover,
fieldset[disabled] .datepicker table tr td.range.today.disabled,
fieldset[disabled] .datepicker table tr td.range.today.disabled:hover,
.datepicker table tr td.range.today.disabled:hover,
.datepicker table tr td.range.today:hover.disabled:hover,
.datepicker table tr td.range.today.disabled.disabled:hover,
.datepicker table tr td.range.today.disabled:hover.disabled:hover,
.datepicker table tr td.range.today[disabled]:hover,
.datepicker table tr td.range.today:hover[disabled]:hover,
.datepicker table tr td.range.today.disabled[disabled]:hover,
.datepicker table tr td.range.today.disabled:hover[disabled]:hover,
fieldset[disabled] .datepicker table tr td.range.today:hover,
fieldset[disabled] .datepicker table tr td.range.today:hover:hover,
fieldset[disabled] .datepicker table tr td.range.today.disabled:hover,
fieldset[disabled] .datepicker table tr td.range.today.disabled:hover:hover,
.datepicker table tr td.range.today.disabled:focus,
.datepicker table tr td.range.today:hover.disabled:focus,
.datepicker table tr td.range.today.disabled.disabled:focus,
.datepicker table tr td.range.today.disabled:hover.disabled:focus,
.datepicker table tr td.range.today[disabled]:focus,
.datepicker table tr td.range.today:hover[disabled]:focus,
.datepicker table tr td.range.today.disabled[disabled]:focus,
.datepicker table tr td.range.today.disabled:hover[disabled]:focus,
fieldset[disabled] .datepicker table tr td.range.today:focus,
fieldset[disabled] .datepicker table tr td.range.today:hover:focus,
fieldset[disabled] .datepicker table tr td.range.today.disabled:focus,
fieldset[disabled] .datepicker table tr td.range.today.disabled:hover:focus,
.datepicker table tr td.range.today.disabled:active,
.datepicker table tr td.range.today:hover.disabled:active,
.datepicker table tr td.range.today.disabled.disabled:active,
.datepicker table tr td.range.today.disabled:hover.disabled:active,
.datepicker table tr td.range.today[disabled]:active,
.datepicker table tr td.range.today:hover[disabled]:active,
.datepicker table tr td.range.today.disabled[disabled]:active,
.datepicker table tr td.range.today.disabled:hover[disabled]:active,
fieldset[disabled] .datepicker table tr td.range.today:active,
fieldset[disabled] .datepicker table tr td.range.today:hover:active,
fieldset[disabled] .datepicker table tr td.range.today.disabled:active,
fieldset[disabled] .datepicker table tr td.range.today.disabled:hover:active,
.datepicker table tr td.range.today.disabled.active,
.datepicker table tr td.range.today:hover.disabled.active,
.datepicker table tr td.range.today.disabled.disabled.active,
.datepicker table tr td.range.today.disabled:hover.disabled.active,
.datepicker table tr td.range.today[disabled].active,
.datepicker table tr td.range.today:hover[disabled].active,
.datepicker table tr td.range.today.disabled[disabled].active,
.datepicker table tr td.range.today.disabled:hover[disabled].active,
fieldset[disabled] .datepicker table tr td.range.today.active,
fieldset[disabled] .datepicker table tr td.range.today:hover.active,
fieldset[disabled] .datepicker table tr td.range.today.disabled.active,
fieldset[disabled] .datepicker table tr td.range.today.disabled:hover.active {
    background-color: #f7ca77;
    border-color: #f1a417;
}

.datepicker table tr td.selected,
.datepicker table tr td.selected:hover,
.datepicker table tr td.selected.disabled,
.datepicker table tr td.selected.disabled:hover {
    color: #ffffff;
    background-color: #999999;
    border-color: #555555;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.datepicker table tr td.selected:hover,
.datepicker table tr td.selected:hover:hover,
.datepicker table tr td.selected.disabled:hover,
.datepicker table tr td.selected.disabled:hover:hover,
.datepicker table tr td.selected:focus,
.datepicker table tr td.selected:hover:focus,
.datepicker table tr td.selected.disabled:focus,
.datepicker table tr td.selected.disabled:hover:focus,
.datepicker table tr td.selected:active,
.datepicker table tr td.selected:hover:active,
.datepicker table tr td.selected.disabled:active,
.datepicker table tr td.selected.disabled:hover:active,
.datepicker table tr td.selected.active,
.datepicker table tr td.selected:hover.active,
.datepicker table tr td.selected.disabled.active,
.datepicker table tr td.selected.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.selected,
.open .dropdown-toggle.datepicker table tr td.selected:hover,
.open .dropdown-toggle.datepicker table tr td.selected.disabled,
.open .dropdown-toggle.datepicker table tr td.selected.disabled:hover {
    color: #ffffff;
    background-color: #858585;
    border-color: #373737;
}

.datepicker table tr td.selected:active,
.datepicker table tr td.selected:hover:active,
.datepicker table tr td.selected.disabled:active,
.datepicker table tr td.selected.disabled:hover:active,
.datepicker table tr td.selected.active,
.datepicker table tr td.selected:hover.active,
.datepicker table tr td.selected.disabled.active,
.datepicker table tr td.selected.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.selected,
.open .dropdown-toggle.datepicker table tr td.selected:hover,
.open .dropdown-toggle.datepicker table tr td.selected.disabled,
.open .dropdown-toggle.datepicker table tr td.selected.disabled:hover {
    background-image: none;
}

.datepicker table tr td.selected.disabled,
.datepicker table tr td.selected:hover.disabled,
.datepicker table tr td.selected.disabled.disabled,
.datepicker table tr td.selected.disabled:hover.disabled,
.datepicker table tr td.selected[disabled],
.datepicker table tr td.selected:hover[disabled],
.datepicker table tr td.selected.disabled[disabled],
.datepicker table tr td.selected.disabled:hover[disabled],
fieldset[disabled] .datepicker table tr td.selected,
fieldset[disabled] .datepicker table tr td.selected:hover,
fieldset[disabled] .datepicker table tr td.selected.disabled,
fieldset[disabled] .datepicker table tr td.selected.disabled:hover,
.datepicker table tr td.selected.disabled:hover,
.datepicker table tr td.selected:hover.disabled:hover,
.datepicker table tr td.selected.disabled.disabled:hover,
.datepicker table tr td.selected.disabled:hover.disabled:hover,
.datepicker table tr td.selected[disabled]:hover,
.datepicker table tr td.selected:hover[disabled]:hover,
.datepicker table tr td.selected.disabled[disabled]:hover,
.datepicker table tr td.selected.disabled:hover[disabled]:hover,
fieldset[disabled] .datepicker table tr td.selected:hover,
fieldset[disabled] .datepicker table tr td.selected:hover:hover,
fieldset[disabled] .datepicker table tr td.selected.disabled:hover,
fieldset[disabled] .datepicker table tr td.selected.disabled:hover:hover,
.datepicker table tr td.selected.disabled:focus,
.datepicker table tr td.selected:hover.disabled:focus,
.datepicker table tr td.selected.disabled.disabled:focus,
.datepicker table tr td.selected.disabled:hover.disabled:focus,
.datepicker table tr td.selected[disabled]:focus,
.datepicker table tr td.selected:hover[disabled]:focus,
.datepicker table tr td.selected.disabled[disabled]:focus,
.datepicker table tr td.selected.disabled:hover[disabled]:focus,
fieldset[disabled] .datepicker table tr td.selected:focus,
fieldset[disabled] .datepicker table tr td.selected:hover:focus,
fieldset[disabled] .datepicker table tr td.selected.disabled:focus,
fieldset[disabled] .datepicker table tr td.selected.disabled:hover:focus,
.datepicker table tr td.selected.disabled:active,
.datepicker table tr td.selected:hover.disabled:active,
.datepicker table tr td.selected.disabled.disabled:active,
.datepicker table tr td.selected.disabled:hover.disabled:active,
.datepicker table tr td.selected[disabled]:active,
.datepicker table tr td.selected:hover[disabled]:active,
.datepicker table tr td.selected.disabled[disabled]:active,
.datepicker table tr td.selected.disabled:hover[disabled]:active,
fieldset[disabled] .datepicker table tr td.selected:active,
fieldset[disabled] .datepicker table tr td.selected:hover:active,
fieldset[disabled] .datepicker table tr td.selected.disabled:active,
fieldset[disabled] .datepicker table tr td.selected.disabled:hover:active,
.datepicker table tr td.selected.disabled.active,
.datepicker table tr td.selected:hover.disabled.active,
.datepicker table tr td.selected.disabled.disabled.active,
.datepicker table tr td.selected.disabled:hover.disabled.active,
.datepicker table tr td.selected[disabled].active,
.datepicker table tr td.selected:hover[disabled].active,
.datepicker table tr td.selected.disabled[disabled].active,
.datepicker table tr td.selected.disabled:hover[disabled].active,
fieldset[disabled] .datepicker table tr td.selected.active,
fieldset[disabled] .datepicker table tr td.selected:hover.active,
fieldset[disabled] .datepicker table tr td.selected.disabled.active,
fieldset[disabled] .datepicker table tr td.selected.disabled:hover.active {
    background-color: #999999;
    border-color: #555555;
}

.datepicker table tr td.active,
.datepicker table tr td.active:hover,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled:hover {
    color: #ffffff;
    background-color: #428bca;
    border-color: #357ebd;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.datepicker table tr td.active:hover,
.datepicker table tr td.active:hover:hover,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.disabled:hover:hover,
.datepicker table tr td.active:focus,
.datepicker table tr td.active:hover:focus,
.datepicker table tr td.active.disabled:focus,
.datepicker table tr td.active.disabled:hover:focus,
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.active,
.open .dropdown-toggle.datepicker table tr td.active:hover,
.open .dropdown-toggle.datepicker table tr td.active.disabled,
.open .dropdown-toggle.datepicker table tr td.active.disabled:hover {
    color: #ffffff;
    background-color: #3276b1;
    border-color: #285e8e;
}

.datepicker table tr td.active:active,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.active,
.open .dropdown-toggle.datepicker table tr td.active:hover,
.open .dropdown-toggle.datepicker table tr td.active.disabled,
.open .dropdown-toggle.datepicker table tr td.active.disabled:hover {
    background-image: none;
}

.datepicker table tr td.active.disabled,
.datepicker table tr td.active:hover.disabled,
.datepicker table tr td.active.disabled.disabled,
.datepicker table tr td.active.disabled:hover.disabled,
.datepicker table tr td.active[disabled],
.datepicker table tr td.active:hover[disabled],
.datepicker table tr td.active.disabled[disabled],
.datepicker table tr td.active.disabled:hover[disabled],
fieldset[disabled] .datepicker table tr td.active,
fieldset[disabled] .datepicker table tr td.active:hover,
fieldset[disabled] .datepicker table tr td.active.disabled,
fieldset[disabled] .datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active:hover.disabled:hover,
.datepicker table tr td.active.disabled.disabled:hover,
.datepicker table tr td.active.disabled:hover.disabled:hover,
.datepicker table tr td.active[disabled]:hover,
.datepicker table tr td.active:hover[disabled]:hover,
.datepicker table tr td.active.disabled[disabled]:hover,
.datepicker table tr td.active.disabled:hover[disabled]:hover,
fieldset[disabled] .datepicker table tr td.active:hover,
fieldset[disabled] .datepicker table tr td.active:hover:hover,
fieldset[disabled] .datepicker table tr td.active.disabled:hover,
fieldset[disabled] .datepicker table tr td.active.disabled:hover:hover,
.datepicker table tr td.active.disabled:focus,
.datepicker table tr td.active:hover.disabled:focus,
.datepicker table tr td.active.disabled.disabled:focus,
.datepicker table tr td.active.disabled:hover.disabled:focus,
.datepicker table tr td.active[disabled]:focus,
.datepicker table tr td.active:hover[disabled]:focus,
.datepicker table tr td.active.disabled[disabled]:focus,
.datepicker table tr td.active.disabled:hover[disabled]:focus,
fieldset[disabled] .datepicker table tr td.active:focus,
fieldset[disabled] .datepicker table tr td.active:hover:focus,
fieldset[disabled] .datepicker table tr td.active.disabled:focus,
fieldset[disabled] .datepicker table tr td.active.disabled:hover:focus,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active:hover.disabled:active,
.datepicker table tr td.active.disabled.disabled:active,
.datepicker table tr td.active.disabled:hover.disabled:active,
.datepicker table tr td.active[disabled]:active,
.datepicker table tr td.active:hover[disabled]:active,
.datepicker table tr td.active.disabled[disabled]:active,
.datepicker table tr td.active.disabled:hover[disabled]:active,
fieldset[disabled] .datepicker table tr td.active:active,
fieldset[disabled] .datepicker table tr td.active:hover:active,
fieldset[disabled] .datepicker table tr td.active.disabled:active,
fieldset[disabled] .datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active:hover.disabled.active,
.datepicker table tr td.active.disabled.disabled.active,
.datepicker table tr td.active.disabled:hover.disabled.active,
.datepicker table tr td.active[disabled].active,
.datepicker table tr td.active:hover[disabled].active,
.datepicker table tr td.active.disabled[disabled].active,
.datepicker table tr td.active.disabled:hover[disabled].active,
fieldset[disabled] .datepicker table tr td.active.active,
fieldset[disabled] .datepicker table tr td.active:hover.active,
fieldset[disabled] .datepicker table tr td.active.disabled.active,
fieldset[disabled] .datepicker table tr td.active.disabled:hover.active {
    background-color: #428bca;
    border-color: #357ebd;
}

.datepicker table tr td span {
    display: block;
    width: 23%;
    height: 54px;
    line-height: 54px;
    float: left;
    margin: 1%;
    cursor: pointer;
    border-radius: 4px;
}

.datepicker table tr td span:hover {
    background: #eeeeee;
}

.datepicker table tr td span.disabled,
.datepicker table tr td span.disabled:hover {
    background: none;
    color: #999999;
    cursor: default;
}

.datepicker table tr td span.active,
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active.disabled:hover {
    color: #ffffff;
    background-color: #428bca;
    border-color: #357ebd;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.datepicker table tr td span.active:hover,
.datepicker table tr td span.active:hover:hover,
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active.disabled:hover:hover,
.datepicker table tr td span.active:focus,
.datepicker table tr td span.active:hover:focus,
.datepicker table tr td span.active.disabled:focus,
.datepicker table tr td span.active.disabled:hover:focus,
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td span.active,
.open .dropdown-toggle.datepicker table tr td span.active:hover,
.open .dropdown-toggle.datepicker table tr td span.active.disabled,
.open .dropdown-toggle.datepicker table tr td span.active.disabled:hover {
    color: #ffffff;
    background-color: #3276b1;
    border-color: #285e8e;
}

.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td span.active,
.open .dropdown-toggle.datepicker table tr td span.active:hover,
.open .dropdown-toggle.datepicker table tr td span.active.disabled,
.open .dropdown-toggle.datepicker table tr td span.active.disabled:hover {
    background-image: none;
}

.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active:hover.disabled,
.datepicker table tr td span.active.disabled.disabled,
.datepicker table tr td span.active.disabled:hover.disabled,
.datepicker table tr td span.active[disabled],
.datepicker table tr td span.active:hover[disabled],
.datepicker table tr td span.active.disabled[disabled],
.datepicker table tr td span.active.disabled:hover[disabled],
fieldset[disabled] .datepicker table tr td span.active,
fieldset[disabled] .datepicker table tr td span.active:hover,
fieldset[disabled] .datepicker table tr td span.active.disabled,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active:hover.disabled:hover,
.datepicker table tr td span.active.disabled.disabled:hover,
.datepicker table tr td span.active.disabled:hover.disabled:hover,
.datepicker table tr td span.active[disabled]:hover,
.datepicker table tr td span.active:hover[disabled]:hover,
.datepicker table tr td span.active.disabled[disabled]:hover,
.datepicker table tr td span.active.disabled:hover[disabled]:hover,
fieldset[disabled] .datepicker table tr td span.active:hover,
fieldset[disabled] .datepicker table tr td span.active:hover:hover,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover:hover,
.datepicker table tr td span.active.disabled:focus,
.datepicker table tr td span.active:hover.disabled:focus,
.datepicker table tr td span.active.disabled.disabled:focus,
.datepicker table tr td span.active.disabled:hover.disabled:focus,
.datepicker table tr td span.active[disabled]:focus,
.datepicker table tr td span.active:hover[disabled]:focus,
.datepicker table tr td span.active.disabled[disabled]:focus,
.datepicker table tr td span.active.disabled:hover[disabled]:focus,
fieldset[disabled] .datepicker table tr td span.active:focus,
fieldset[disabled] .datepicker table tr td span.active:hover:focus,
fieldset[disabled] .datepicker table tr td span.active.disabled:focus,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover:focus,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active:hover.disabled:active,
.datepicker table tr td span.active.disabled.disabled:active,
.datepicker table tr td span.active.disabled:hover.disabled:active,
.datepicker table tr td span.active[disabled]:active,
.datepicker table tr td span.active:hover[disabled]:active,
.datepicker table tr td span.active.disabled[disabled]:active,
.datepicker table tr td span.active.disabled:hover[disabled]:active,
fieldset[disabled] .datepicker table tr td span.active:active,
fieldset[disabled] .datepicker table tr td span.active:hover:active,
fieldset[disabled] .datepicker table tr td span.active.disabled:active,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active:hover.disabled.active,
.datepicker table tr td span.active.disabled.disabled.active,
.datepicker table tr td span.active.disabled:hover.disabled.active,
.datepicker table tr td span.active[disabled].active,
.datepicker table tr td span.active:hover[disabled].active,
.datepicker table tr td span.active.disabled[disabled].active,
.datepicker table tr td span.active.disabled:hover[disabled].active,
fieldset[disabled] .datepicker table tr td span.active.active,
fieldset[disabled] .datepicker table tr td span.active:hover.active,
fieldset[disabled] .datepicker table tr td span.active.disabled.active,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover.active {
    background-color: #428bca;
    border-color: #357ebd;
}

.datepicker table tr td span.old,
.datepicker table tr td span.new {
    color: #999999;
}

.datepicker th.datepicker-switch {
    width: 145px;
}

.datepicker thead tr:first-child th,
.datepicker tfoot tr th {
    cursor: pointer;
}

.datepicker thead tr:first-child th:hover,
.datepicker tfoot tr th:hover {
    background: #eeeeee;
}

.datepicker .cw {
    font-size: 10px;
    width: 12px;
    padding: 0 2px 0 5px;
    vertical-align: middle;
}

.datepicker thead tr:first-child th.cw {
    cursor: default;
    background-color: transparent;
}

.input-group.date .input-group-addon i {
    cursor: pointer;
    width: 16px;
    height: 16px;
}

.input-daterange input {
    text-align: center;
}

.input-daterange input:first-child {
    border-radius: 3px 0 0 3px;
}

.input-daterange input:last-child {
    border-radius: 0 3px 3px 0;
}

.input-daterange .input-group-addon {
    width: auto;
    min-width: 16px;
    padding: 4px 5px;
    font-weight: normal;
    line-height: 1.428571429;
    text-align: center;
    text-shadow: 0 1px 0 #fff;
    vertical-align: middle;
    background-color: #eeeeee;
    border: solid #cccccc;
    border-width: 1px 0;
    margin-left: -5px;
    margin-right: -5px;
}

.datepicker.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    float: left;
    display: none;
    min-width: 160px;
    list-style: none;
    background-color: #ffffff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    *border-right-width: 2px;
    *border-bottom-width: 2px;
    color: #333333;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 13px;
    line-height: 1.428571429;
}

.datepicker.dropdown-menu th,
.datepicker.datepicker-inline th,
.datepicker.dropdown-menu td,
.datepicker.datepicker-inline td {
    padding: 0px 5px;
}

/** RANGE PICKER
******************************************* **/
.form-group .datepicker {
    padding: 6px 12px;
}

/**	39. Select2
*************************************************** **/
.select2-container {
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    position: relative;
    vertical-align: middle;
}

.select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 28px;
    user-select: none;
    -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
    padding-right: 8px;
    padding-left: 20px;
}

.select2-container .select2-selection--multiple {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    min-height: 32px;
    user-select: none;
    -webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
    display: inline-block;
    overflow: hidden;
    padding-left: 8px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.select2-container .select2-search--inline {
    float: left;
}

.select2-container .select2-search--inline .select2-search__field {
    box-sizing: border-box;
    border: none;
    font-size: 100%;
    margin-top: 5px;
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

.select2-dropdown {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    display: block;
    position: absolute;
    left: -100000px;
    width: 100%;
    z-index: 1051;
}

section.dark .select2-dropdown {
    border-color: #666;
}

.select2-results {
    display: block;
}

.select2-results__options {
    list-style: none;
    margin: 0;
    padding: 0;
}

.select2-results__option {
    padding: 6px;
    user-select: none;
    -webkit-user-select: none;
    font-size: 13px;
    line-height: 16px;
}

.select2-results__option[aria-selected] {
    cursor: pointer;
}

.select2-container--open .select2-dropdown {
    left: 0;
}

.select2-container--open .select2-dropdown--above {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.select2-search--dropdown {
    display: none;
    padding: 4px;
}

.select2-search--dropdown .select2-search__field {
    padding: 4px;
    width: 100%;
    box-sizing: border-box;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
    display: none;
}

.select2-close-mask {
    border: 0;
    margin: 0;
    padding: 0;
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    opacity: 0;
    z-index: 99;
    background-color: #fff;
    filter: alpha(opacity=0);
}

.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 4px;
}

section.dark .select2-container--default .select2-selection--single {
    border-color: #666;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #161616;
    line-height: 12px;
    font-size: 12px;
    text-transform: uppercase;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    position: relative;
    top: -2px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b:after {
    content: '\f107';
    font-family: FontAwesome;
}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
    float: left;
}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
    left: 1px;
    right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: #eee;
    cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
    display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    transform: rotate(180deg);
}

.select2-container--default .select2-selection--multiple {
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: text;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0 5px;
    width: 100%;
}

.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
    color: #999;
    margin-top: 5px;
    float: left;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-top: 5px;
    margin-right: 10px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #999;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #333;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice,
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder {
    float: right;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
    margin-left: 5px;
    margin-right: auto;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
    margin-left: 2px;
    margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: solid black 1px;
    outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
    background-color: #eee;
    cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
    display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
}

.select2-container--default .select2-search--inline .select2-search__field {
    background: transparent;
    border: none;
    outline: 0;
}

.select2-container--default .select2-results>.select2-results__options {
    max-height: 200px;
    overflow-y: auto;
    background: #e6071e;
}

.select2-container--default .select2-results__option[role=group] {
    padding: 0;
}

.select2-container--default .select2-results__option[aria-disabled=true] {
    color: #999;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #ddd;
}

.select2-container--default .select2-results__option .select2-results__option {
    padding-left: 1em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
    padding-left: 0;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -1em;
    padding-left: 2em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -2em;
    padding-left: 3em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -3em;
    padding-left: 4em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -4em;
    padding-left: 5em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -5em;
    padding-left: 6em;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #5897fb;
    color: white;
}

.select2-container--default .select2-results__group {
    cursor: default;
    display: block;
    padding: 6px;
}

.select2-container--classic .select2-selection--single {
    background-color: #f6f6f6;
    border: 1px solid #aaa;
    border-radius: 4px;
    outline: 0;
    background-image: -webkit-linear-gradient(top, #ffffff 50%, #eeeeee 100%);
    background-image: -o-linear-gradient(top, #ffffff 50%, #eeeeee 100%);
    background-image: linear-gradient(to bottom, #ffffff 50%, #eeeeee 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
}

.select2-container--classic .select2-selection--single:focus {
    border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px;
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-right: 10px;
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
    color: #999;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
    background-color: #ddd;
    border: none;
    border-left: 1px solid #aaa;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px;
    background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
    background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
    background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#cccccc', GradientType=0);
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
    border-color: #888 transparent transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    height: 0;
    left: 50%;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0;
}

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
    float: left;
}

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
    border: none;
    border-right: 1px solid #aaa;
    border-radius: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    left: 1px;
    right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
    border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
    background: transparent;
    border: none;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #888 transparent;
    border-width: 0 4px 5px 4px;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background-image: -webkit-linear-gradient(top, #ffffff 0%, #eeeeee 50%);
    background-image: -o-linear-gradient(top, #ffffff 0%, #eeeeee 50%);
    background-image: linear-gradient(to bottom, #ffffff 0%, #eeeeee 50%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background-image: -webkit-linear-gradient(top, #eeeeee 50%, #ffffff 100%);
    background-image: -o-linear-gradient(top, #eeeeee 50%, #ffffff 100%);
    background-image: linear-gradient(to bottom, #eeeeee 50%, #ffffff 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: text;
    outline: 0;
}

.select2-container--classic .select2-selection--multiple:focus {
    border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
    list-style: none;
    margin: 0;
    padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
    display: none;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
    color: #888;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #555;
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
    float: right;
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
    margin-left: 5px;
    margin-right: auto;
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
    margin-left: 2px;
    margin-right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
    border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
    outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
    outline: 0;
}

.select2-container--classic .select2-dropdown {
    background-color: white;
    border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
    border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
    border-top: none;
}

.select2-container--classic .select2-results>.select2-results__options {
    max-height: 200px;
    overflow-y: auto;
}

.select2-container--classic .select2-results__option[role=group] {
    padding: 0;
}

.select2-container--classic .select2-results__option[aria-disabled=true] {
    color: grey;
}

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
    background-color: #3875d7;
    color: white;
}

.select2-container--classic .select2-results__group {
    cursor: default;
    display: block;
    padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
    border-color: #5897fb;
}

/** Rewrite Select2  the same height as input element */
.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--single .select2-selection__rendered,
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 30px;
    line-height: 30px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    outline: none !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.select2-dropdown {
    border-color: #ddd;
    border-width: 2px;
    border: none !important;
}
.select2-container--default .select2-selection--single{
    border: none !important;
}
.fancy-form .select2-selection__arrow {
    display: none;
}

.select2-container--default .select2-selection--single {
    background-color: transparent;
}

/* Stacked Alternate */
.nav-tabs.nav-alternate {
    background-color: transparent;
}

div.tab-content.nav-alternate {
    background-color: transparent;
    padding: 0;
}

.nav-tabs.nav-alternate>li>a {
    background-color: #fafafa;
}

.nav-tabs.nav-alternate>li.active>a {
    color: #fff !important;
    background-color: #999;
}

section.dark .tab-content.nav-alternate {
    background-color: transparent !important;
}

/**	43. Testimonials
**************************************************************** **/
ul.testimonial-dotted {
    overflow: hidden;
}

ul.testimonial-dotted>li {
    padding-top: 30px;
    padding-bottom: 30px;
}

ul.testimonial-dotted>li figure {
    text-align: center;
    display: block;
}

ul.testimonial-dotted>li img {
    display: inline-block;
}

ul.testimonial-dotted>li:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 0;
    top: auto;
    left: 0;
    bottom: -1px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.3);
}

ul.testimonial-dotted>li:before {
    content: '';
    position: absolute;
    height: 100%;
    top: 0;
    left: -1px;
    border-left: 1px dashed rgba(0, 0, 0, 0.3);
}

section.dark ul.testimonial-dotted>li:after {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
}

section.dark ul.testimonial-dotted>li:before {
    border-left: 1px dashed rgba(255, 255, 255, 0.3);
}

div.testimonial p {
    margin-top: 0;
}

div.testimonial>figure>img {
    width: 65px;
    height: 65px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.testimonial cite {
    font-weight: bold;
    text-shadow: none;
}

.testimonial cite span {
    display: block;
    color: #888;
    font-size: 12px;
    font-weight: 300;
}

section.parallax .testimonial cite span {
    color: #ddd;
}

.testimonial-content {
    position: relative;
    padding-left: 75px;
}

/* owl carousel testimonial */
div.owl-carousel.owl-testimonial .testimonial {
    margin-bottom: 50px;
    display: block;
}

/* owl mini carousel testimonial */
div.owl-carousel.owl-mini-testimonial {
    text-align: left;
}

div.owl-carousel.owl-mini-testimonial .testimonial-content {
    text-align: left;
}

div.owl-carousel.owl-mini-testimonial .testimonial {
    margin-bottom: 30px;
}

div.owl-carousel.owl-mini-testimonial .testimonial img {
    float: left;
    margin-right: 20px;
}

div.owl-carousel.owl-mini-testimonial .testimonial p {
    margin: 0;
}

div.owl-carousel.owl-mini-testimonial .owl-controls {
    text-align: right;
}

div.owl-carousel.owl-mini-testimonial .owl-controls .owl-page span {
    width: 6px;
    height: 6px;
    margin: 5px 4px;
}

/* bordered */
div.testimonial-bordered {
    border: #eaeaea 2px solid;
    padding: 30px 15px;
    margin: 30px 0;
}

section.dark div.testimonial-bordered {
    border-color: #666;
    background-color: rgba(0, 0, 0, 0.1);
}

/** Dribbble **/
ul.widget-dribbble,
ul.widget-dribbble li {
    list-style: none;
    margin: 0;
    padding: 0;
    -webkit-transition: all .300s;
    -moz-transition: all .300s;
    -o-transition: all .300s;
    transition: all .300s;
}

ul.widget-dribbble>li img {
    padding: 1px;
    -webkit-transition: all .300s;
    -moz-transition: all .300s;
    -o-transition: all .300s;
    transition: all .300s;
}

ul.widget-dribbble[data-col='1']>li {
    float: left;
    width: 100% !important;
}

ul.widget-dribbble[data-col='2']>li {
    float: left;
    width: 50% !important;
}

ul.widget-dribbble[data-col='3']>li {
    float: left;
    width: 33.3% !important;
}

ul.widget-dribbble>li,
ul.widget-dribbble[data-col='4']>li {
    float: left;
    width: 25% !important;
}

ul.widget-dribbble[data-col='5']>li {
    float: left;
    width: 20% !important;
}

ul.widget-dribbble[data-col='6']>li {
    float: left;
    width: 16.66% !important;
}

ul.widget-dribbble>li:hover>a>img {
    opacity: 0.85;
    filter: alpha(opacity=85);
}

@media only screen and (max-width: 482px) {

    ul.widget-dribbble>li,
    ul.widget-dribbble[data-col='4']>li {
        float: left;
        width: 50% !important;
    }

    ul.widget-dribbble[data-col='5']>li {
        float: left;
        width: 50% !important;
    }

    ul.widget-dribbble[data-col='6']>li {
        float: left;
        width: 50% !important;
    }
}

/** 46. Side Nav
**************************************************************** **/
div.side-nav li.list-group-item {
    padding: 0 15px;
}

div.side-nav ul,
div.side-nav ul>li {
    border: 0 !important;
}

div.side-nav ul>li {
    background-color: transparent !important;
}

div.side-nav ul>li:before {
    content: "\f105";
    font-family: FontAwesome;
    position: absolute;
    font-size: 15px;
    left: 0;
    top: 4px;
    color: #999;
}

div.side-nav ul.list-group-noicon>li:before,
div.side-nav ul.list-group-noicon>li>ul>li:before {
    content: '';
    display: none;
}

div.side-nav ul.list-group-noicon>li {
    padding-left: 0;
}

div.side-nav ul>li>a {
    display: block;
    padding: 4px 0 4px 0;
}

div.side-nav ul>li>a {
    color: #777;
    text-decoration: none;
}

div.side-nav ul>li:hover>a,
div.side-nav ul>li.active>a {
    color: #111 !important;
}

button.page-side-nav-mobile {
    display: none;
}

div.side-nav ul>li>ul>li>a {
    padding: 4px 0 4px 15px;
}

ul.side-nav>li>a>i {
    margin-right: 8px;
}

/* side nav sub categs */
div.side-nav ul>li>a.dropdown-toggle:before {
    content: "\f196";
    font-family: FontAwesome;
    position: absolute;
    font-size: 17px;
    right: 20px;
    top: 6px;
    color: #999;
}

div.side-nav ul>li.active>a.dropdown-toggle:before {
    content: "\f147";
}

div.side-nav ul>li>ul {
    display: none;
}

div.side-nav ul>li.active>ul {
    display: block;
}

div.side-nav ul>li>ul,
div.side-nav ul>li>ul>li {
    margin: 0;
    padding: 0;
    list-style: none;
}

div.side-nav ul>li>ul {
    padding: 10px 0;
}

div.side-nav ul>li>ul>li a {
    font-size: 12px;
}

/* */
div.side-nav .side-nav-head {
    position: relative;
}

div.side-nav .side-nav-head h4 {
    font-size: 16px;
}

div.side-nav ul.list-group-bordered>li>a {
    display: block;
    border-bottom: rgba(0, 0, 0, 0.05) 1px solid;
    padding: 6px;
}

div.side-nav ul.list-group-bordered>li>a>span.pull-left,
div.side-nav ul.list-group-bordered>li>a>span.pull-right {
    margin-top: 3px;
}

div.side-nav .side-nav-head button {
    display: none;
    font-size: 21px;
    background-color: rgba(0, 0, 0, 0.2);
    height: 44px;
    width: 44px;
}

@media only screen and (min-width: 990px) {
    div.side-nav>ul {
        display: block !important;
    }
}

@media only screen and (max-width: 767px) {
    div.side-nav ul {
        display: none;
        max-height: 350px;
        overflow-y: auto;
        margin-bottom: 30px;
    }

    div.side-nav ul>li {
        border-bottom: rgba(0, 0, 0, 0.03) 1px solid !important;
    }

    div.side-nav .side-nav-head {
        height: 44px;
        background-color: rgba(0, 0, 0, 0.1);
        margin-bottom: 30px;
    }

    div.side-nav .side-nav-head>h4 {
        line-height: 44px;
        padding-left: 15px;
        margin: 0;
    }

    div.side-nav .side-nav-head button {
        display: block;
        position: absolute;
        right: 0;
    }
}

@media only screen and (max-width: 768px) {
    div.side-nav ul {
        max-height: 250px;
        overflow-y: auto;
    }
}

/** 47. Star Rating <div class="rating rating-0"><!-- rating-1 ... rating-5 --></div>
**************************************************************** **/
.rating {
    position: relative;
    display: block;
    min-height: 17px;
    width: 100%;
    color: #999;
    display: inline-block;
    font-family: FontAwesome;
}

section.dark .rating {
    color: #666;
}

.rating-0:after {
    content: "\f006\20\f006\20\f006\20\f006\20\f006";
}

.rating-1:after {
    content: "\f005\20\f006\20\f006\20\f006\20\f006";
}

.rating-2:after {
    content: "\f005\20\f005\20\f006\20\f006\20\f006";
}

.rating-3:after {
    content: "\f005\20\f005\20\f005\20\f006\20\f006";
}

.rating-4:after {
    content: "\f005\20\f005\20\f005\20\f005\20\f006";
}

.rating-5:after {
    content: "\f005\20\f005\20\f005\20\f005\20\f005";
}

/** 48. Image Zoom [plugin] assets/plugins/image.zoom
**************************************************************** **/
figure.zoom img::selection {
    background-color: transparent;
}

figure.zoom {
    display: inline-block;
    position: relative;
    -webkit-transition: all .300s;
    -moz-transition: all .300s;
    -o-transition: all .300s;
    transition: all .300s;
}

/* lightbox button position */
.owl-carousel.zoom-more .owl-controls .owl-buttons div {
    background-color: inherit;
    border: 0;
}

.owl-carousel.zoom-more .owl-controls {
    top: auto !important;
    bottom: 0 !important;
    margin-top: 0;
    margin-bottom: 0;
    right: 6px;
}

.owl-carousel.zoom-more a,
.owl-carousel.zoom-more a>img {
    text-align: center;
    -webkit-transition: all .300s;
    -moz-transition: all .300s;
    -o-transition: all .300s;
    transition: all .300s;
}

/** 49. Forms
**************************************************************** **/
input.err,
input.error,
textarea.err,
textarea.error,
select.err,
select.error {
    border: #bf6464 2px dashed !important;
    background-color: #fdfbfb !important;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

/*Form Validation*/
form.validate label.error {
    position: absolute;
    background-color: #ff0000;
    color: #fff;
    left: 0;
    z-index: 10;
    bottom: -26px;
    left: 36px;
    font-size: 11px;
    font-weight: 400;
    padding: 3px;
    display: none !important;
}

/*
        CUSTOM FILE UPLOAD
        <input class="custom-file-upload" type="file" id="file" name="myfiles[]" multiple />
*/
.custom-file-upload-hidden {
    display: none;
    visibility: hidden;
    position: absolute;
    left: -9999px;
}

.file-upload-wrapper {
    position: relative;
    margin-bottom: 5px;
}

.file-upload-input {
    width: 300px;
    font-size: 16px;
    padding: 11px 17px;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    float: left;
    /* IE 9 Fix */
}

/* FORM ELEMENTS */
.radio+.radio,
.checkbox+.checkbox {
    margin-top: 1px;
}

/* radios and checkboxes */
.radio,
.checkbox {
    display: inline-block;
    margin: 0 15px 3px 0;
    padding-left: 27px;
    font-size: 15px;
    line-height: 1.4;
    color: #404040;
    cursor: pointer;
}

section.dark .radio,
section.dark .checkbox {
    color: #eee;
}

.radio input,
.checkbox input {
    position: absolute;
    left: -9999px;
}

.radio i,
.checkbox i {
    position: absolute;
    top: 2px;
    left: 0;
    display: block;
    width: 19px;
    height: 19px;
    outline: none;
    border-width: 2px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.3);
    background: #fff;
}

section.dark .radio i,
section.dark .checkbox i {
    border-color: rgba(255, 255, 255, 0.3);
    background: transparent;
}

.radio i {
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
    border-radius: 50% !important;
}

.radio input+i:after,
.checkbox input+i:after {
    position: absolute;
    opacity: 0;
    transition: opacity 0.1s;
    -o-transition: opacity 0.1s;
    -ms-transition: opacity 0.1s;
    -moz-transition: opacity 0.1s;
    -webkit-transition: opacity 0.1s;
}

.radio input+i:after {
    content: '';
    top: 5px;
    left: 5px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

.checkbox input+i:after {
    content: '\f00c';
    top: 0;
    left: 1px;
    width: 14px;
    height: 14px;
    font: normal 12px/14px FontAwesome;
    /*text-align: center;*/
    vertical-align: middle;
}

.radio input:checked+i:after,
.checkbox input:checked+i:after {
    opacity: 1;
}

.inline-group {
    margin: 0 -30px -4px 0;
}

.inline-group:after {
    content: '';
    display: table;
    clear: both;
}

.inline-group .radio,
.inline-group .checkbox {
    float: left;
    margin-right: 30px;
}

.inline-group .radio:last-child,
.inline-group .checkbox:last-child {
    margin-bottom: 4px;
}

/**hover state **/
.input:hover input,
.select:hover select,
.textarea:hover textarea,
.radio:hover i,
.checkbox:hover i,
.toggle:hover i {
    /*border-color: #de002b;*/
}

section.dark .input:hover input,
section.dark .select:hover select,
section.dark .textarea:hover textarea,
section.dark .radio:hover i,
section.dark .checkbox:hover i,
section.dark .toggle:hover i {
    border-color: rgba(255, 255, 255, 0.3);
}

.button:hover {
    opacity: 1;
}

/*focus state */
.input input:focus,
.select select:focus,
.textarea textarea:focus,
.radio input:focus+i,
.checkbox input:focus+i,
.toggle input:focus+i {
    border-color: rgba(0, 0, 0, 0.6);
}

section.dark .input input:focus,
section.dark .select select:focus,
section.dark .textarea textarea:focus,
section.dark .radio input:focus+i,
section.dark .checkbox input:focus+i,
section.dark .toggle input:focus+i {
    border-color: rgba(255, 255, 255, 0.7);
}

/*checked state */
.radio input+i:after {
    background-color: rgba(0, 0, 0, 8);
}

section.dark .radio input+i:after {
    background-color: rgba(255, 255, 255, 8);
}

.checkbox input+i:after {
    /*color: #de002b;*/
}

section.dark .checkbox input+i:after {
    color: rgba(255, 255, 255, 8);
}

.radio input:checked+i,
.checkbox input:checked+i,
.toggle input:checked+i {
    /*border-color:#de002b;*/
}

section.dark .radio input:checked+i,
section.dark .checkbox input:checked+i,
section.dark .toggle input:checked+i {
    border-color: rgba(255, 255, 255, 8);
}

section.dark select>option,
section.dark select>optgroup {
    background-color: #333;
}

/* @toggle switch elements
-------------------------------------------------- */
.switch {
    cursor: pointer;
    position: relative;
    padding-right: 10px;
    display: inline-block;
    margin-bottom: 5px;
    height: 26px;
}

.switch>.switch-label {
    cursor: pointer;
    display: inline-block;
    position: relative;
    height: 25px;
    width: 58px;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    line-height: 20px;
    text-align: center;
    background: #B5C1C7;
    border: 2px solid #B5C1C7;
    text-transform: uppercase;
    font-family: Helvetica, Arial, sans-serif;
    -webkit-transition: 0.3s ease-out;
    -moz-transition: 0.3s ease-out;
    -o-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
}

.switch>.switch-label+span {
    display: inline-block;
    padding-left: 5px;
    position: relative;
    top: -7px;
}

.switch>.switch-label:before {
    content: attr(data-off);
    position: absolute;
    top: 1px;
    right: 3px;
    width: 33px;
}

.switch>.switch-label:after {
    content: "";
    margin: 1px;
    width: 19px;
    height: 19px;
    display: block;
    background: #fff;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    -o-border-radius: 1px;
    border-radius: 1px;
}

.switch>input {
    -webkit-appearance: none;
    position: absolute;
    width: inherit;
    height: inherit;
    opacity: 0;
    left: 0;
    top: 0;
}

/* @toggle switch focus state
-------------------------------------------------------------- */
.switch>input:focus {
    outline: none;
}

.switch>input:focus+.switch-label {
    color: #fff;
    border-color: #a1a6a9;
    background: #a1a6a9;
}

.switch>input:focus+.switch-label:after {
    background: #fff;
}

/* @toggle switch normal state
--------------------------------------------------------------- */
.switch>input:checked+.switch-label {
    border-color: #333;
    background: #333;
    padding-left: 33px;
    color: white;
}

.switch.switch-success>input:checked+.switch-label {
    border-color: #4cae4c;
    background: #4cae4c;
}

.switch.switch-danger>input:checked+.switch-label {
    border-color: #d43f3a;
    background: #d43f3a;
}

.switch.switch-warning>input:checked+.switch-label {
    border-color: #eea236;
    background: #eea236;
}

.switch.switch-info>input:checked+.switch-label {
    border-color: #46b8da;
    background: #46b8da;
}

.switch.switch-default>input:checked+.switch-label {
    border-color: rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.1);
}

.switch.switch-default>input:checked+.switch-label:before {
    color: #888;
}

.switch>input:checked+.switch-label:before {
    content: attr(data-on);
    left: 1px;
    top: 1px;
}

.switch>input:checked+.switch-label:after {
    margin: 1px;
    width: 19px;
    height: 19px;
    background: white;
}

/* @toggle switch normal state focus
--------------------------------------------------------------------------------- */
.switch-round>.switch-label {
    -webkit-border-radius: 13px;
    -moz-border-radius: 13px;
    -o-border-radius: 13px;
    border-radius: 13px;
}

.switch-round>.switch-label+span {
    top: -2px;
}

.switch-round>.switch-label:before {
    width: 33px;
}

.switch-round>.switch-label:after {
    width: 19px;
    color: #B5C1C7;
    content: "\2022";
    font: 20px/20px Times, Serif;
    -webkit-border-radius: 13px;
    -moz-border-radius: 13px;
    -o-border-radius: 13px;
    border-radius: 13px;
}

.switch-round>input:checked+.switch-label {
    padding-left: 33px;
}

.switch-round>input:checked+.switch-label:after {
    color: #333
}

/* fancy upload
-------------------------------------------------------- */
.fancy-file-upload {
    position: relative;
    height: 40px;
    overflow: hidden;
    display: block;
    margin-bottom: 3px;
}

.fancy-file-upload>span.button {
    color: #fff;
    background-color: #333;
    position: absolute;
    top: 4px;
    right: 4px;
    top: 4px;
    bottom: 4px;
    line-height: 34px;
    padding: 0 16px;
    z-index: 10;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.fancy-file-upload.fancy-file-primary>span.button {
    background-color: #333;
}

.fancy-file-upload.fancy-file-success>span.button {
    background-color: #4cae4c;
}

.fancy-file-upload.fancy-file-danger>span.button {
    background-color: #d43f3a;
}

.fancy-file-upload.fancy-file-warning>span.button {
    background-color: #eea236;
}

.fancy-file-upload.fancy-file-info>span.button {
    background-color: #46b8da;
}

.fancy-file-upload.fancy-file-default>span.button {
    color: #666;
    background-color: rgba(0, 0, 0, 0.1);
}

.fancy-file-upload>input[type=text] {
    background-color: transparent;
    padding-left: 36px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.fancy-file-upload>input[type=file] {
    width: 100%;
    height: 100%;
    cursor: pointer;
    padding: 8px 10px;
    position: absolute;
    -moz-opacity: 0;
    opacity: 0;
    z-index: 11;
    bottom: 0;
    right: 0;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.fancy-file-upload>i {
    position: absolute;
    top: -1px;
    width: 42px;
    height: 42px;
    color: inherit;
    line-height: 42px;
    position: absolute;
    text-align: center;
    color: #888;
    z-index: 10;
}

/* fancy inputs / selects / textareas
-------------------------------------------------------- */
.fancy-form {
    position: relative;
    margin-bottom: 3px;
}

.fancy-form .fancy-hint {
    padding: 6px 10px;
    border-top: rgba(0, 0, 0, 0.1) 1px solid;
    background-color: rgba(0, 0, 0, 0.05);
    margin-top: -2px;
    border: #ddd 2px solid;
    border-top-width: 1px;
    display: block;
    z-index: 10;
}

section.dark .fancy-form .fancy-hint {
    border-color: #666;
    background-color: rgba(255, 255, 255, 0.1);
}

.fancy-form>i {
    position: absolute;
    top: 50%;
    left: 15px;
    margin-top: -7px;
    z-index: 10;
    width: 14px;
    height: 14px;
    color: #888;
}

.fancy-form>textarea+i {
    top: 0;
    margin-top: 12px;
}

.fancy-form>textarea,
.fancy-form>input {
    padding-left: 36px;
    margin: 0;
}

.fancy-form.fancy-icon-inverse>i {
    right: 15px;
    left: auto;
}

.fancy-form.fancy-icon-inverse>textarea,
.fancy-form.fancy-icon-inverse>input {
    padding-right: 36px;
    padding-left: 15px;
}

.fancy-form>select {
    display: block;
    padding: 9px 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    text-indent: 0.01px;
    text-overflow: '';
    z-index: 10;
    margin: 0;
    cursor: pointer;
}

.fancy-form>.fancy-arrow,
.fancy-form>.fancy-arrow-double {
    position: absolute;
    top: 15px;
    right: 5px;
    left: auto;
    width: 24px;
    height: 24px;
    color: #B5C1C7;
    pointer-events: none;
    z-index: 16;
}

.fancy-form>.fancy-arrow:before,
.fancy-form>.fancy-arrow-double:after,
.fancy-form>.fancy-arrow-double:before {
    content: '';
    position: absolute;
    font: 12px monospace;
    font-style: normal;
    pointer-events: none;
    left: 6px;
}

.fancy-form>.fancy-arrow:before {
    content: '\25BC';
    bottom: 4px;
}

.fancy-form>.fancy-arrow-double:before {
    content: '\25BC';
    bottom: -1px;
}

.fancy-form>.fancy-arrow-double:after {
    content: '\25B2';
    top: -1px;
}

.fancy-form-select:before {
    position: absolute;
    content: ' ';
    top: 2px;
    right: 2px;
    bottom: 2px;
    width: 37px;
    background: #F2F4FA;
    border-left: 1px solid rgba(0, 0, 0, 0.08);
}

section.dark .fancy-form-select:before {
    background: #262626;
}

/* fancy tooltip
-------------------------------------------------------- */
.fancy-tooltip {
    position: absolute;
    z-index: 10;
    color: #fff;
    background: #313131;
    left: -9999px;
    top: -100%;
    font-size: 11px;
    font-weight: normal;
    margin-top: 20px;
    padding: 10px;
    -webkit-opacity: 0;
    -khtml-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    -ms-filter: alpha(opacity=0);
    filter: alpha(opacity=0);
    -webkit-transition: margin 0.6s, opacity 0.6s;
    -moz-transition: margin 0.6s, opacity 0.6s;
    -ms-transition: margin 0.6s, opacity 0.6s;
    -o-transition: margin 0.6s, opacity 0.6s;
    transition: margin 0.6s, opacity 0.6s;
}

.fancy-tooltip:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 12px;
    border-top: 8px solid #313131;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
}

.fancy-tooltip:hover .tooltip,
.fancy-tooltip:focus+.tooltip,
select.fancy-tooltip:focus~.tooltip {
    opacity: 1;
    z-index: 999;
}

.fancy-form>select:focus+.fancy-tooltip,
.fancy-form>textarea:focus+.fancy-tooltip,
.fancy-form>input:focus+.fancy-tooltip {
    left: auto;
    top: -100%;
    margin-top: -8px;
    -webkit-opacity: 1;
    -khtml-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    -ms-filter: alpha(opacity=100);
    filter: alpha(opacity=100);
}

.fancy-tooltip {
    padding: 0;
}

input:focus+.fancy-tooltip {
    padding: 10px;
}

/* @tooltip top left
----------------- */
.fancy-tooltip.top-left {
    top: -100%;
    left: 0;
    right: auto;
    margin-bottom: 20px;
}

.fancy-tooltip.top-left:after {
    left: 12px;
    right: auto;
    border-top: 8px solid #313131;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
}

/* @tooltip top right
----------------- */
.fancy-tooltip.top-right {
    top: -100%;
    left: auto;
    right: 0;
    margin-bottom: 20px;
}

.fancy-tooltip.top-right:after {
    right: 12px;
    left: auto;
    border-top: 8px solid #313131;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
}

/* autosuggest [typehead]
-------------------------------------------------------- */
div.autosuggest pre {
    margin: 0;
}

div.autosuggest .twitter-typeahead {
    display: block !important;
}

div.autosuggest .tt-menu {
    top: 38px !important;
    width: 100% !important;
    padding: 6px !important;
    background-color: #fff;
    border: #ccc 2px solid;
    border-top: 0;
}

section.dark div.autosuggest .tt-menu {
    border-color: #999;
    background-color: #333;
}

div.autosuggest .tt-menu .tt-suggestion {
    cursor: pointer;
    padding: 3px;
    border-bottom: rgba(0, 0, 0, 0.05) 1px solid;
}

div.autosuggest .tt-menu .tt-suggestion:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

div.autosuggest .tt-menu .tt-suggestion:last-child {
    border: 0;
}

div.autosuggest .tt-dataset {
    max-height: 200px;
    overflow-y: auto;
}

/* UI SLIDER------------------------------------------------------*/
.ui-slider .ui-slider-range,
.progress>button[type="submit"]:hover,
.progress>button[type="submit"],
.progress-bar>.bar {
    background-size: 16px 16px;
    /*background-image: -webkit-linear-gradient(top left,transparent, transparent 25%, rgba(255, 255, 255, 0.3) 25%, rgba(255, 255, 255, 0.3) 50%, transparent 50%, transparent 75%, rgba(255, 255, 255, 0.3) 75%, rgba(255, 255, 255, 0.3));background-image: -moz-linear-gradient(top left, transparent, transparent 25%, rgba(255, 255, 255, 0.3) 25%, rgba(255, 255, 255, 0.3) 50%, transparent 50%, transparent 75%, rgba(255, 255, 255, 0.3) 75%, rgba(255, 255, 255, 0.3));background-image: -o-linear-gradient(top left, transparent, transparent 25%, rgba(255, 255, 255, 0.3) 25%, rgba(255, 255, 255, 0.3) 50%, transparent 50%, transparent 75%, rgba(255, 255, 255, 0.3) 75%, rgba(255, 255, 255, 0.3));background-image: linear-gradient(to bottom right, transparent, transparent 25%, rgba(255, 255, 255, 0.3) 25%, rgba(255, 255, 255, 0.3) 50%, transparent 50%, transparent 75%, rgba(255, 255, 255, 0.3) 75%, rgba(255, 255, 255, 0.3));*/
}

.slider-wrapper,
.sliderv-wrapper {
    background: #E2E8F1;
    position: relative;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
}

section.dark .slider-wrapper,
section.dark .sliderv-wrapper {
    background-color: #222;
}

.ui-slider {
    position: relative;
    text-align: left;
}

.ui-slider .ui-slider-handle {
    position: absolute;
    z-index: 2;
    width: 18px;
    height: 18px;
    cursor: default;
    background: #fff;
    text-decoration: none;
    border: 3px solid;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
    -ms-touch-action: none;
    touch-action: none;
    outline: none;
}

/*.ui-slider .ui-slider-handle:before{content: '';width: 7px;height: 7px;position:absolute;background-color: #1ABC9C;-webkit-border-radius: 10px;-moz-border-radius: 10px;-o-border-radius: 10px; border-radius: 10px;z-index: 2;	left:5px;top:5px;}*/
.ui-slider .ui-slider-range {
    position: absolute;
    z-index: 1;
    font-size: .7em;
    display: block;
    border: 0;
    background-position: 0 0;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
}

.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
    filter: inherit;
}

.ui-slider-horizontal {
    height: 4px;
}

.ui-slider-horizontal .ui-slider-handle {
    top: -7px;
    margin-left: -.6em;
}

.ui-slider-horizontal .ui-slider-range {
    top: 0;
    height: 100%;
}

.ui-slider-horizontal .ui-slider-range-min {
    left: 0;
}

.ui-slider-horizontal .ui-slider-range-max {
    right: 0;
}

.ui-slider-vertical,
.sliderv-wrapper {
    width: .5em;
    height: 100px;
}

.ui-slider-vertical .ui-slider-handle {
    left: -.45em;
    margin-left: 0;
    margin-bottom: -.6em;
}

.ui-slider-vertical .ui-slider-range {
    left: 0;
    width: 100%;
}

.ui-slider-vertical .ui-slider-range-min {
    bottom: 0;
}

.ui-slider-vertical .ui-slider-range-max {
    top: 0;
}

.slider-input {
    color: #f6931f !important;
    border: 0;
    background: none;
}

.slider-group .sliderv-wrapper {
    height: 150px;
    float: left;
    margin: 15px 15px;
}

.ui-slider .ui-state-active {
    cursor: -webkit-grabbing;
    cursor: -moz-grabbing;
    cursor: grabbing;
}

/* @ui slider tooltip--------------------- */
.slider-tip {
    display: block;
    position: absolute;
    text-align: center;
    font: 10pt Tahoma, Arial, sans-serif;
    background: #34495E;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    padding: 10px;
    color: #fff;
}

.slider-wrapper .slider-tip {
    top: -50px;
    left: -15px;
}

.slider-wrapper .slider-tip:after {
    content: '';
    position: absolute;
    top: 98%;
    left: 35%;
    border-top: 8px solid #34495E;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
}

.sliderv-wrapper .slider-tip {
    left: 30px;
    top: -12px;
}

.sliderv-wrapper .slider-tip:after {
    content: '';
    position: absolute;
    top: 30%;
    right: 98%;
    border-right: 8px solid #34495E;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

/* @ui slider themes--------------------- */
.warning-slider .ui-slider .ui-slider-handle {
    border-color: #ed9c28;
}

.warning-slider .ui-slider .ui-slider-handle:before,
.warning-slider .ui-slider .ui-slider-range {
    background-color: #ed9c28;
}

.danger-slider .ui-slider .ui-slider-handle {
    border-color: #e74c3c;
}

.danger-slider .ui-slider .ui-slider-handle:before,
.danger-slider .ui-slider .ui-slider-range {
    background-color: #e74c3c;
}

.purple-slider .ui-slider .ui-slider-handle {
    border-color: #9B59B6;
}

.purple-slider .ui-slider .ui-slider-handle:before,
.purple-slider .ui-slider .ui-slider-range {
    background-color: #9B59B6;
}

.info-slider .ui-slider .ui-slider-handle {
    border-color: #3498db;
}

.info-slider .ui-slider .ui-slider-handle:before,
.info-slider .ui-slider .ui-slider-range {
    background-color: #3498db;
}

.black-slider .ui-slider .ui-slider-handle {
    border-color: #34495e;
}

.black-slider .ui-slider .ui-slider-handle:before,
.black-slider .ui-slider .ui-slider-range {
    background-color: #34495e;
}

.success-slider .ui-slider .ui-slider-handle {
    border-color: #2ecc71;
}

.success-slider .ui-slider .ui-slider-handle:before,
.success-slider .ui-slider .ui-slider-range {
    background-color: #2ecc71;
}

.yellow-slider .ui-slider .ui-slider-handle {
    border-color: #ed9c28;
}

.yellow-slider .ui-slider .ui-slider-handle:before,
.yellow-slider .ui-slider .ui-slider-range {
    background-color: #ed9c28;
}

/* UI slider addons | labels + tooltips -------------------- */
.ui-slider-horizontal.ui-slider-pips {
    margin-bottom: 0.5em;
}

.ui-slider-pips .ui-slider-label,
.ui-slider-pips .ui-slider-pip-hide {
    display: none;
}

.ui-slider-pips .ui-slider-pip-label .ui-slider-label {
    display: block;
}

.ui-slider-pips .ui-slider-pip {
    width: 2em;
    height: 1em;
    line-height: 1em;
    position: absolute;
    font-size: 0.8em;
    color: #999;
    overflow: visible;
    text-align: center;
    top: 10px;
    left: 20px;
    margin-left: -1em;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.ui-slider-pips .ui-slider-line {
    background: #999;
    width: 1px;
    height: 3px;
    position: absolute;
    left: 50%;
}

.ui-slider-pips .ui-slider-label {
    position: absolute;
    top: 5px;
    left: 50%;
    margin-left: -1em;
    width: 2em;
}

.ui-slider-pip:hover .ui-slider-label {
    color: black;
    font-weight: bold;
}

.ui-slider-vertical.ui-slider-pips {
    margin-bottom: 1em;
    margin-right: 10px;
}

.ui-slider-vertical.ui-slider-pips .ui-slider-pip {
    text-align: left;
    top: auto;
    left: 10px;
    margin-left: 0;
    margin-bottom: -0.5em;
}

.ui-slider-vertical.ui-slider-pips .ui-slider-line {
    width: 3px;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 0;
}

.ui-slider-vertical.ui-slider-pips .ui-slider-label {
    top: 50%;
    left: 0.5em;
    margin-left: 0;
    margin-top: -0.5em;
    width: 2em;
}

/* UI slider tooltips
--------------------- */
.ui-slider-float .ui-slider-handle:focus,
.ui-slider-float .ui-slider-handle:focus .ui-slider-tip,
.ui-slider-float .ui-slider-handle:focus .ui-slider-tip-label {
    outline: none;
}

.ui-slider-float .ui-slider-tip,
.ui-slider-float .ui-slider-tip-label {
    position: absolute;
    visibility: hidden;
    margin-top: -10px;
    display: block;
    width: auto;
    padding: 5px 10px;
    margin-left: -50%;
    line-height: 20px;
    background: #000;
    border-radius: 3px;
    text-align: center;
    font-size: 11px;
    font-weight: bold;
    color: #fff;
    opacity: 0;
    -webkit-transition-duration: 200ms, 200ms, 0;
    -moz-transition-duration: 200ms, 200ms, 0;
    -ms-transition-duration: 200ms, 200ms, 0;
    transition-duration: 200ms, 200ms, 0;
    -webkit-transition-property: opacity, top, visibility;
    -moz-transition-property: opacity, top, visibility;
    -ms-transition-property: opacity, top, visibility;
    transition-property: opacity, top, visibility;
    -webkit-transition-delay: 0, 0, 200ms;
    -moz-transition-delay: 0, 0, 200ms;
    -ms-transition-delay: 0, 0, 200ms;
    transition-delay: 0, 0, 200ms;
}

.ui-slider-float .ui-slider-handle:hover .ui-slider-tip,
.ui-slider-float .ui-slider-handle:focus .ui-slider-tip,
.ui-slider-float .ui-slider-pip:hover .ui-slider-tip-label {
    opacity: 1;
    top: -30px;
    visibility: visible;
    -webkit-transition-delay: 200ms, 200ms, 0;
    -moz-transition-delay: 200ms, 200ms, 0;
    -ms-transition-delay: 200ms, 200ms, 0;
    transition-delay: 200ms, 200ms, 0;
}

.ui-slider-float .ui-slider-pip .ui-slider-tip-label {
    top: 42px;
}

.ui-slider-float .ui-slider-pip:hover .ui-slider-tip-label {
    top: 32px;
    font-weight: normal;
}

.ui-slider-float .ui-slider-tip:after,
.ui-slider-float .ui-slider-pip .ui-slider-tip-label:after {
    content: " ";
    width: 0;
    height: 0;
    border-top: 8px solid #000;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    position: absolute;
    bottom: -6px;
    left: 30%;
}

/** 50. Sky Form**************************************************************** **/
.sky-form,
.sky-form .label {
    color: #333;
    text-align: left;
    padding: 0;
    font-size: 14px;
    font-weight: 300
}

.checkbox+.checkbox,
.radio+.radio {
    margin-top: 12px
}

.sky-form.boxed {
    border: rgba(0, 0, 0, .1) solid
}

.sky-form header {
    margin: 0;
    background: -webkit-linear-gradient(top, #fff 1%, #f9f9f9 98%);
    background: linear-gradient(to bottom, #fff 1%, #f9f9f9 98%);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    border-bottom: rgba(0, 0, 0, .07) 1px solid;
    padding: 15px 20px;
    font-size: 20px;
    font-weight: 400
}

.sky-form.boxed fieldset {
    padding: 15px
}

.sky-form label.captcha>img {
    position: absolute;
    top: 3px;
    right: 2px
}

.sky-form fieldset {
    display: block;
    padding: 25px 30px 5px;
    border: none
}

.sky-form fieldset+fieldset {
    border-top: 1px solid rgba(0, 0, 0, .1)
}

.sky-form .section,
.sky-form section {
    padding: 0;
    margin-bottom: 20px
}

.sky-form footer {
    margin: 0 15px 10px;
    border-top: rgba(0, 0, 0, .03) 1px solid
}

.sky-form footer:after {
    content: '';
    display: table;
    clear: both
}

.sky-form .label {
    display: block;
    margin-bottom: 6px;
    line-height: 19px
}

.sky-form .label.col {
    margin: 0;
    padding-top: 10px;
}

.sky-form .note {
    margin-top: 6px;
    padding: 0 1px;
    font-size: 12px;
    line-height: 15px;
    color: rgba(0, 0, 0, .5);
    font-weight: 400
}

.sky-form .button,
.sky-form .checkbox,
.sky-form .input,
.sky-form .radio,
.sky-form .select,
.sky-form .textarea,
.sky-form .toggle {
    position: relative;
    display: block
}

.sky-form .input input,
.sky-form .select select,
.sky-form .textarea textarea {
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100%;
    height: 40px;
    padding: 8px 10px;
    outline: 0;
    border-width: 2px;
    border-style: solid;
    border-radius: 0;
    background: #fff;
    font: 15px/19px 'Open Sans', Helvetica, Arial, sans-serif;
    color: #404040;
    appearance: normal;
    -moz-appearance: none;
    -webkit-appearance: none
}

.sky-form .col {
    float: left;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    box-sizing: border-box;
    -moz-box-sizing: border-box
}

.sky-form .input-file .button {
    position: absolute;
    top: 4px;
    right: 4px;
    float: none;
    height: 31px;
    margin: 0;
    padding: 0 20px;
    font-size: 13px;
    line-height: 31px
}

.sky-form .input-file .button:hover {
    box-shadow: none
}

.sky-form .input-file .button input {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0;
    font-size: 30px;
    cursor: pointer;
    opacity: 0
}

.sky-form .select i {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 5px;
    height: 11px;
    background: #fff;
    box-shadow: 0 0 0 12px #fff
}

.sky-form .select i:after,
.sky-form .select i:before {
    content: '';
    position: absolute;
    right: 0;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent
}

.sky-form .select i:after {
    bottom: 0;
    border-top: 4px solid #404040
}

.sky-form .select i:before {
    top: 0;
    border-bottom: 4px solid #404040
}

.sky-form .select-multiple select {
    height: auto
}

.sky-form .textarea textarea {
    height: auto;
    resize: none
}

.sky-form .textarea-resizable textarea {
    resize: vertical
}

.sky-form .textarea-expandable textarea {
    height: 40px
}

.sky-form .textarea-expandable textarea:focus {
    height: auto
}

.sky-form .checkbox,
.sky-form .radio {
    margin-bottom: 4px;
    padding-left: 27px;
    font-size: 15px;
    line-height: 27px;
    color: #404040;
    cursor: pointer
}

.sky-form .checkbox:last-child,
.sky-form .radio:last-child {
    margin-bottom: 0
}

.sky-form .checkbox input,
.sky-form .radio input {
    position: absolute;
    left: -9999px
}

.sky-form .checkbox i,
.sky-form .radio i {
    position: absolute;
    top: 5px;
    left: 0;
    display: block;
    width: 19px;
    height: 19px;
    outline: 0;
    border-width: 2px;
    border-style: solid;
    background: #fff
}

.sky-form .radio i {
    border-radius: 50%
}

.sky-form .checkbox input+i:after,
.sky-form .radio input+i:after {
    position: absolute;
    opacity: 0;
    transition: opacity .1s;
    -o-transition: opacity .1s;
    -ms-transition: opacity .1s;
    -moz-transition: opacity .1s;
    -webkit-transition: opacity .1s
}

.sky-form .radio input+i:after {
    content: '';
    top: 5px;
    left: 5px;
    width: 5px;
    height: 5px;
    border-radius: 50%
}

.sky-form .checkbox input+i:after {
    content: '\f00c';
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    font: 400 12px/16px FontAwesome;
    text-align: center
}

.sky-form .checkbox input:checked+i:after,
.sky-form .radio input:checked+i:after {
    opacity: 1
}

.sky-form .inline-group {
    margin: 0 -30px -4px 0
}

.sky-form .inline-group:after {
    content: '';
    display: table;
    clear: both
}

.sky-form .inline-group .checkbox,
.sky-form .inline-group .radio {
    float: left;
    margin-right: 30px
}

.sky-form .inline-group .checkbox:last-child,
.sky-form .inline-group .radio:last-child {
    margin-bottom: 4px
}

.sky-form .toggle {
    margin-bottom: 4px;
    padding-right: 61px;
    font-size: 15px;
    line-height: 27px;
    color: #404040;
    cursor: pointer
}

.sky-form .toggle:last-child {
    margin-bottom: 0
}

.sky-form .toggle input {
    position: absolute;
    left: -9999px
}

.sky-form .toggle i {
    content: '';
    position: absolute;
    top: 5px;
    right: 0;
    display: block;
    width: 49px;
    height: 22px;
    border-width: 2px;
    border-style: solid;
    border-radius: 12px;
    background: #fff
}

.sky-form .toggle i:after {
    content: 'OFF';
    position: absolute;
    top: 2px;
    right: 8px;
    left: 8px;
    font-style: normal;
    font-size: 9px;
    line-height: 13px;
    font-weight: 700;
    text-align: left;
    color: #5f5f5f
}

.sky-form .toggle i:before {
    content: '';
    position: absolute;
    z-index: 1;
    top: 4px;
    right: 4px;
    display: block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    opacity: 1;
    transition: right .2s;
    -o-transition: right .2s;
    -ms-transition: right .2s;
    -moz-transition: right .2s;
    -webkit-transition: right .2s
}

.sky-form .toggle input:checked+i:after {
    content: 'ON';
    text-align: right
}

.sky-form .toggle input:checked+i:before {
    right: 33px
}

.sky-form .rating {
    margin-bottom: 4px;
    font-size: 15px;
    line-height: 27px;
    color: #404040
}

.sky-form .rating:last-child {
    margin-bottom: 0
}

.sky-form .rating input {
    position: absolute;
    left: -9999px
}

.sky-form .rating label {
    display: block;
    float: right;
    height: 17px;
    margin-top: 5px;
    padding: 0 2px;
    font-size: 17px;
    line-height: 17px;
    cursor: pointer
}

.sky-form .button {
    float: right;
    height: 40px;
    overflow: hidden;
    margin: 10px 0 0 20px;
    padding: 0 25px;
    outline: 0;
    border: 0;
    font: 300 15px/39px 'Open Sans', Helvetica, Arial, sans-serif;
    text-decoration: none;
    color: #fff;
    cursor: pointer
}

.sky-form .btn {
    margin: 10px 0 0 20px
}

.sky-form .btn:hover {
    margin-bottom: 0
}

.sky-form .input-group-btn .btn {
    margin: 0
}

.sky-form .tooltip {
    position: absolute;
    z-index: 1;
    left: -9999px;
    padding: 2px 8px 3px;
    font-size: 11px;
    line-height: 16px;
    font-weight: 400;
    background: rgba(0, 0, 0, .9);
    color: #fff;
    opacity: 0;
    transition: margin .3s, opacity .3s;
    -o-transition: margin .3s, opacity .3s;
    -ms-transition: margin .3s, opacity .3s;
    -moz-transition: margin .3s, opacity .3s;
    -webkit-transition: margin .3s, opacity .3s
}

.sky-form .tooltip:after {
    content: '';
    position: absolute
}

.sky-form .input input:focus+.tooltip,
.sky-form .textarea textarea:focus+.tooltip {
    opacity: 1
}

.sky-form .tooltip-top-right {
    bottom: 100%;
    margin-bottom: 15px
}

.sky-form .tooltip-top-right:after {
    top: 100%;
    right: 16px;
    border-top: 4px solid rgba(0, 0, 0, .9);
    border-right: 4px solid transparent;
    border-left: 4px solid transparent
}

.sky-form .input input:focus+.tooltip-top-right,
.sky-form .textarea textarea:focus+.tooltip-top-right {
    right: 0;
    left: auto;
    margin-bottom: 5px
}

.sky-form .tooltip-top-left {
    bottom: 100%;
    margin-bottom: 15px
}

.sky-form .tooltip-top-left:after {
    top: 100%;
    left: 16px;
    border-top: 4px solid rgba(0, 0, 0, .9);
    border-right: 4px solid transparent;
    border-left: 4px solid transparent
}

.sky-form .input input:focus+.tooltip-top-left,
.sky-form .textarea textarea:focus+.tooltip-top-left {
    right: auto;
    left: 0;
    margin-bottom: 5px
}

.sky-form .tooltip-right {
    top: 9px;
    white-space: nowrap;
    margin-left: 15px
}

.sky-form .tooltip-right:after {
    top: 6px;
    right: 100%;
    border-top: 4px solid transparent;
    border-right: 4px solid rgba(0, 0, 0, .9);
    border-bottom: 4px solid transparent
}

.sky-form .input input:focus+.tooltip-right,
.sky-form .textarea textarea:focus+.tooltip-right {
    left: 100%;
    margin-left: 5px
}

.sky-form .tooltip-left {
    top: 9px;
    white-space: nowrap;
    margin-right: 15px
}

.sky-form .tooltip-left:after {
    top: 6px;
    left: 100%;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 4px solid rgba(0, 0, 0, .9)
}

.sky-form .input input:focus+.tooltip-left,
.sky-form .textarea textarea:focus+.tooltip-left {
    right: 100%;
    left: auto;
    margin-right: 5px
}

.sky-form .tooltip-bottom-right {
    top: 100%;
    margin-top: 15px
}

.sky-form .tooltip-bottom-right:after {
    bottom: 100%;
    right: 16px;
    border-right: 4px solid transparent;
    border-bottom: 4px solid rgba(0, 0, 0, .9);
    border-left: 4px solid transparent
}

.sky-form .input input:focus+.tooltip-bottom-right,
.sky-form .textarea textarea:focus+.tooltip-bottom-right {
    right: 0;
    left: auto;
    margin-top: 5px
}

.sky-form .tooltip-bottom-left {
    top: 100%;
    margin-top: 15px
}

.sky-form .tooltip-bottom-left:after {
    bottom: 100%;
    left: 16px;
    border-right: 4px solid transparent;
    border-bottom: 4px solid rgba(0, 0, 0, .9);
    border-left: 4px solid transparent
}

.sky-form .input input:focus+.tooltip-bottom-left,
.sky-form .textarea textarea:focus+.tooltip-bottom-left {
    right: auto;
    left: 0;
    margin-top: 5px
}

.sky-form .checkbox i,
.sky-form .ico-append,
.sky-form .ico-prepend,
.sky-form .input input,
.sky-form .radio i,
.sky-form .select select,
.sky-form .textarea textarea,
.sky-form .toggle i {
    border-color: #e5e5e5;
    transition: border-color .3s;
    -o-transition: border-color .3s;
    -ms-transition: border-color .3s;
    -moz-transition: border-color .3s;
    -webkit-transition: border-color .3s
}

.sky-form .toggle i:before {
    background-color: #2da5da
}

.sky-form .rating label {
    color: #ccc;
    transition: color .3s;
    -o-transition: color .3s;
    -ms-transition: color .3s;
    -moz-transition: color .3s;
    -webkit-transition: color .3s
}

.sky-form .button {
    background-color: #2da5da;
    opacity: .8;
    transition: opacity .2s;
    -o-transition: opacity .2s;
    -ms-transition: opacity .2s;
    -moz-transition: opacity .2s;
    -webkit-transition: opacity .2s
}

.sky-form .button.button-secondary {
    background-color: #b3b3b3
}

.sky-form .ico-append,
.sky-form .ico-prepend {
    color: #ccc
}

.sky-form .ico-prepend {
    left: 5px;
    padding-right: 3px;
    border-right-width: 1px;
    border-right-style: solid
}

.sky-form .ico-append {
    right: 5px;
    padding-left: 3px;
    border-left-width: 1px;
    border-left-style: solid
}

.sky-form .ico-append,
.sky-form .ico-prepend {
    position: absolute;
    top: 5px;
    width: 29px;
    height: 29px;
    font-size: 15px;
    line-height: 29px;
    text-align: center
}

.sky-form .input .ico-prepend+.ico-append+input,
.sky-form .input .ico-prepend+input,
.sky-form .textarea .ico-prepend+.ico-append+textarea,
.sky-form .textarea .ico-prepend+textarea {
    padding-left: 46px
}

.sky-form .checkbox:hover i,
.sky-form .input:hover input,
.sky-form .radio:hover i,
.sky-form .select:hover select,
.sky-form .textarea:hover textarea,
.sky-form .toggle:hover i {
    border-color: #8dc9e5
}

.sky-form .rating input+label:hover,
.sky-form .rating input+label:hover~label {
    color: #2da5da
}

.sky-form .button:hover {
    opacity: 1
}

.sky-form .checkbox input:focus+i,
.sky-form .input input:focus,
.sky-form .radio input:focus+i,
.sky-form .select select:focus,
.sky-form .textarea textarea:focus,
.sky-form .toggle input:focus+i {
    border-color: #2da5da
}

.sky-form .radio input+i:after {
    background-color: #2da5da
}

.sky-form .checkbox input+i:after {
    color: #2da5da
}

.sky-form .checkbox input:checked+i,
.sky-form .radio input:checked+i,
.sky-form .toggle input:checked+i {
    border-color: #2da5da
}

.sky-form .rating input:checked~label {
    color: #2da5da
}

.sky-form .checkbox.state-error i,
.sky-form .radio.state-error i,
.sky-form .state-error input,
.sky-form .state-error select,
.sky-form .state-error textarea,
.sky-form .toggle.state-error i {
    background: #fff0f0
}

.sky-form .state-error select+i {
    background: #fff0f0;
    box-shadow: 0 0 0 12px #fff0f0
}

.sky-form .toggle.state-error input:checked+i {
    background: #fff0f0
}

.sky-form .note-error {
    color: #fff;
    padding: 3px;
    display: inline-block;
    background-color: #ee9393
}

.sky-form .checkbox.state-success i,
.sky-form .radio.state-success i,
.sky-form .state-success input,
.sky-form .state-success select,
.sky-form .state-success textarea,
.sky-form .toggle.state-success i {
    background: #f0fff0
}

.sky-form .state-success select+i {
    background: #f0fff0;
    box-shadow: 0 0 0 12px #f0fff0
}

.sky-form .toggle.state-success input:checked+i {
    background: #f0fff0
}

.sky-form .note-success {
    color: #fff;
    padding: 3px;
    display: inline-block;
    background-color: #6fb679
}

.sky-form .button.state-disabled,
.sky-form .checkbox.state-disabled,
.sky-form .input.state-disabled input,
.sky-form .radio.state-disabled,
.sky-form .select.state-disabled,
.sky-form .textarea.state-disabled,
.sky-form .toggle.state-disabled {
    cursor: default;
    opacity: .5
}

.sky-form .checkbox.state-disabled:hover i,
.sky-form .input.state-disabled:hover input,
.sky-form .radio.state-disabled:hover i,
.sky-form .select.state-disabled:hover select,
.sky-form .textarea.state-disabled:hover textarea,
.sky-form .toggle.state-disabled:hover i {
    border-color: #e5e5e5
}

.sky-form.boxed {
    border: rgba(0, 0, 0, 0.1) 1px solid;
}

.sky-form footer {
    padding: 8px 0;
    margin-bottom: 0;
}

.sky-form .btn {
    margin-top: 0;
}

.sky-form .btn-social {
    margin: 0;
}

.sky-form.boxed {
    background-color: #fff;
}

.sky-form fieldset {
    padding: 0 0 30px 0;
}

.sky-form header {
    background: transparent !important;
}

.sky-form .checkbox input:hover+i,
.sky-form .input input:hover,
.sky-form .radio input:hover+i,
.sky-form .select select:hover,
.sky-form .textarea textarea:hover,
.sky-form .toggle input:hover+i,
.sky-form .checkbox input:focus+i,
.sky-form .input input:focus,
.sky-form .radio input:focus+i,
.sky-form .select select:focus,
.sky-form .textarea textarea:focus,
.sky-form .toggle input:focus+i {
    border-color: #c6c6c6;
}

section.alternate .sky-form.boxed {
    background-color: #F9F9F9;
}

section.dark .sky-form.boxed {
    background-color: #333;
    border: 0;
}

section.dark .sky-form header {
    color: #fff;
    background: -webkit-linear-gradient(top, #000 1%, #222 98%);
    background: linear-gradient(to bottom, #000 1%, #222 98%);
    border-bottom: rgba(255, 255, 255, .07) 1px solid;
}

section.dark .sky-form .checkbox i,
section.dark .sky-form .ico-append,
section.dark .sky-form .ico-prepend,
section.dark .sky-form .input input,
section.dark .sky-form .radio i,
section.dark .sky-form .select select,
section.dark .sky-form .textarea textarea,
section.dark .sky-form .toggle i {
    border-color: #666;
}

section.dark .sky-form .input input,
section.dark .sky-form .select select,
section.dark .sky-form .textarea textarea {
    background-color: transparent;
}

section.dark .sky-form footer {
    border-top-color: #444;
}

section.dark .sky-form .checkbox input:hover+i,
section.dark .sky-form .input input:hover,
section.dark .sky-form .radio input:hover+i,
section.dark .sky-form .select select:hover,
section.dark .sky-form .textarea textarea:hover,
section.dark .sky-form .toggle input:hover+i,
section.dark .sky-form .checkbox input:focus+i,
section.dark .sky-form .input input:focus,
section.dark .sky-form .radio input:focus+i,
section.dark .sky-form .select select:focus,
section.dark .sky-form .textarea textarea:focus,
section.dark .sky-form .toggle input:focus+i {
    border-color: #999;
}

section.dark .dropdown-menu,
section.dark .dropdown-menu p,
section.dark .dropdown-menu a,
section.dark .dropdown-menu>li>a,
section.dark .dropdown-menu>li>a>h1,
section.dark .dropdown-menu>li>a>h2,
section.dark .dropdown-menu>li>a>h3,
section.dark .dropdown-menu>li>a>h4,
section.dark .dropdown-menu>li>a>h5,
section.dark .dropdown-menu>li>a>h6,
section.dark .note-popover .popover .popover-content .note-para .dropdown-menu i.fa,
section.dark .note-toolbar .note-para .dropdown-menu i.fa {
    color: #000;
}

.news-v3-in-sm .h2 {
    font-size: 22px;
    letter-spacing: 0;
    margin-bottom: 10px;
    margin-top: 0
}

.posted-info {
    margin-bottom: 10px
}

.news-v3 .posted-info li {
    color: #555555;
    font-style: italic;
}

.news-v3 .news-v3-in-sm .posted-info li {
    font-size: 12px;
    padding: 0 0 0 5px;
}

.news-v3 .news-v3-in-sm {
    padding: 20px;
}

.no-padding {
    padding: 0 !important;
}

.shop_cats .navbar-default {
    background-color: transparent;
}

canvas {
    width: auto !important;
}

/**	HOME - MODAL ON LOAD **************************************************************** **/
#shopLoadModal {
    max-width: 740px;
    margin: auto !important;
    height: 400px;
    margin-right: 30px;
}

#shopLoadModal .modal-content {
    height: 320px;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: left top;
}

#shopLoadModal .modal-dialog {
    left: 10px;
    right: 10px;
    width: auto !important;
    max-width: 700px;
    margin-right: 30px;
}

#shopLoadModal .block-content {
    float: left;
    max-width: 312px;
    text-align: center;
}

#shopLoadModal .modal-header .close {
    margin-top: -5px;
    font-size: 24px;
}

/**	SHOP ITEM LIST  **************************************************************** **/
/* Fix for owl-carousel or flexslider  on responsive */
/* 6 COLUMNS - RECALIBRATE FOR LONG TITLES*/
ul.shop-item-list>li.col-lg-2:nth-child(6n+1),
ul.shop-item-list>li.col-md-2:nth-child(6n+1) {
    /*clear:both;*/
}

/* 5 COLUMNS - RECALIBRATE FOR LONG TITLES*/
ul.shop-item-list>li.col-lg-5th:nth-child(5n+1),
ul.shop-item-list>li.col-md-5th:nth-child(5n+1) {
    /*clear:both;*/
}

/* 4 COLUMNS - RECALIBRATE FOR LONG TITLES*/
ul.shop-item-list>li.col-lg-3:nth-child(4n+1),
ul.shop-item-list>li.col-md-3:nth-child(4n+1) {
    /*clear:both;*/
}

/* 3 COLUMNS - RECALIBRATE FOR LONG TITLES*/
ul.shop-item-list>li.col-lg-4:nth-child(3n+1),
ul.shop-item-list>li.col-md-4:nth-child(3n+1) {
    /*clear:both;*/
}

/* 2 COLUMNS - RECALIBRATE FOR LONG TITLES*/
ul.shop-item-list>li.col-lg-6:nth-child(2n+1),
ul.shop-item-list>li.col-md-6:nth-child(2n+1) {
    /*clear:both;*/
}

/*div.shop-item {margin-bottom:60px;}*/
div.shop-item .shop-item-buttons a.btn-default {
    border: 0;
    background-color: rgba(0, 0, 0, 0.1);
}

div.shop-item .shop-item-buttons a.btn-default:hover {
    border: 0;
    background-color: rgba(0, 0, 0, 0.18);
}

div.shop-item>.thumbnail {
    background-color: transparent !important;
    border-color: #ddd !important;
    margin-bottom: 6px;
}

section.dark div.shop-item>.thumbnail {
    border-color: #444 !important;
}

div.shop-item>.thumbnail>a.shop-item-image>img {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

/* double image transition effect */
div.shop-item>.thumbnail>a.shop-item-image {
    display: block;
    position: relative;
}

div.shop-item>.thumbnail>a.shop-item-image>img:last-child {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all .500s;
    -moz-transition: all .500s;
    -o-transition: all .500s;
    transition: all .500s;
}

div.shop-item>.thumbnail:hover>a.shop-item-image>img:last-child {
    opacity: 1;
    filter: alpha(opacity=100);
}

div.shop-item>.thumbnail>a.shop-item-image>img:first-child {
    position: relative;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* buttons over image */
div.shop-item>.thumbnail>.shop-option-over {
    position: absolute;
    top: 8px;
    right: 2px;
    z-index: 20;
    width: 50px;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all .300s;
    -moz-transition: all .300s;
    -o-transition: all .300s;
    transition: all .300s;
}

div.shop-item>.thumbnail>.shop-option-over>a {
    width: 44px;
    text-align: center;
    margin: 0 0 3px 0;
    -webkit-border-bottom-right-radius: 15px;
    -webkit-border-top-left-radius: 15px;
    -moz-border-radius-bottomright: 15px;
    -moz-border-radius-topleft: 15px;
    border-bottom-right-radius: 15px;
    border-top-left-radius: 15px;
}

div.shop-item:hover>.thumbnail>.shop-option-over {
    opacity: 1;
    filter: alpha(opacity=100);
}

/* info over image */
div.shop-item>.thumbnail>.shop-item-info {
    position: absolute;
    top: 8px;
    left: 0;
    z-index: 20;
    width: 70px;
}

/* summary */
div.shop-item-summary .h2,
div.shop-item-summary .h2 a {
    font-size: 15px;
    color: #666;
    margin: 0 0 4px 0;
}

div.shop-item-rating-line {
    display: block;
    position: relative;
}

/* list item price */
div.shop-item-price {
    font-size: 20px;
    margin-top: 6px;
    font-weight: bold;
}

div.shop-item-price>span {
    color: #999;
    font-size: 15px;
    display: inline-block;
    padding: 0 10px;
    font-weight: 400;
}

/* list item buttons */
section.dark div.shop-item-buttons a.btn-default:hover {
    color: #fff;
}

/* out of stock */
span.out-of-stock {
    display: block;
    margin-top: 15px;
}

span.out-of-stock:before {
    content: '–x– ';
}

span.out-of-stock:after {
    content: ' –x–';
}

span.out-of-stock.clean:before,
span.out-of-stock.clean:after {
    content: '';
}

/* list item countdown */
div.shop-item>.thumbnail>.shop-item-counter {
    position: relative;
    position: absolute;
    bottom: 4px;
    left: 4px;
    right: 4px;
    z-index: 20;
    background-color: rgba(33, 33, 33, 0.5);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-border-top-left-radius: 0;
    -moz-border-radius-topleft: 0;
    border-top-left-radius: 0;
}

div.shop-item>.thumbnail>.shop-item-counter:before {
    position: absolute;
    left: 0;
    top: -20px;
    padding: 0 6px;
    height: 20px;
    color: #fff;
    font: normal normal normal 14px/1 FontAwesome;
    content: "\f017 \20 limited offer";
    text-align: center;
    line-height: 20px;
    background-color: rgba(33, 33, 33, 0.5);
    -webkit-border-top-right-radius: 3px;
    -moz-border-radius-topright: 3px;
    border-top-right-radius: 3px;
    -webkit-border-top-left-radius: 3px;
    -moz-border-radius-topleft: 3px;
    border-top-left-radius: 3px;
}

div.shop-item>.thumbnail>.shop-item-counter>.countdown .countdown-section {
    display: inline-block;
    font-size: 11px;
    color: #fff;
    line-height: 1;
    text-align: center;
    width: 20%;
    margin: 0 3px !important;
    padding: 8px !important;
    text-align: center !important;
    margin: 0;
    padding: 0;
    text-transform: capitalize;
    overflow: hidden;
    -webkit-transition: all .500s;
    -moz-transition: all .500s;
    -o-transition: all .500s;
    transition: all .500s;
}

div.shop-item>.thumbnail>.shop-item-counter>.countdown .countdown-amount {
    color: #fff;
    display: block;
    font-size: 13px;
    font-weight: bold;
    margin: 0;
    padding: 0;
}

div.shop-item>.thumbnail>.shop-item-counter>.countdown .countdown-period {
    font-size: 10px !important;
    text-transform: lowercase !important;
    margin-top: 5px;
    display: block !important;
    margin-bottom: -18px !important;
    -webkit-transition: all .500s;
    -moz-transition: all .500s;
    -o-transition: all .500s;
    transition: all .500s;
}

div.shop-item:hover>.thumbnail>.shop-item-counter>.countdown .countdown-period {
    margin-bottom: 0 !important;
}

.thumbnail>.shop-limited-offer {
    position: absolute !important;
    left: 5px;
    top: 5px;
    z-index: 20;
    color: #fff;
    font-size: 18px;
    text-align: center;
}

.thumbnail>.shop-limited-offer>i {
    margin-left: 8px;
    margin-top: 6px;
}

.thumbnail>.shop-limited-offer:before {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    border: 26px solid transparent;
    border-left-color: #333;
    border-top-color: #333;
    left: 0;
    top: 0;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

/* list item options */
.shop-list-options label {
    margin: 0 6px
}

.shop-list-options select,
.shop-list-options input {
    height: 35px;
    padding: 6px;
    border-width: 1px;
    cursor: pointer;
}

.shop-list-options .btn {
    height: 35px;
    line-height: 22px;
    color: #ccc;
    border: #E5E7E9 1px solid;
    display: inline-block;
    margin-top: -4px;
    margin-right: 0;
}

.shop-list-options .btn.active {
    color: #fff;
    background-color: #333;
}

@media only screen and (max-width: 768px) {

    .shop-list-options ul,
    .shop-list-options select,
    .shop-list-options a {
        margin-bottom: 3px;
        float: none !important;
        max-width: 150px;
    }

    .shop-list-options .options-left {
        display: block;
        margin-top: 20px;
    }
}

/* 1 Column */
.shop-item-list>.col-lg-12>.shop-item {
    position: relative;
    min-height: 230px;
}

.shop-item-list>.col-lg-12 {
    margin-bottom: 30px;
    width: 100%;
}

.shop-item-list>.col-lg-12>.shop-item .h2 a {
    font-size: 20px;
}

.shop-item-list>.col-lg-12>.shop-item>.thumbnail,
.shop-item-list>.col-md-12>.shop-item>.thumbnail {
    float: left;
    width: 200px;
}

.shop-item-list>.col-lg-12>.shop-item>.shop-item-buttons,
.shop-item-list>.col-md-12>.shop-item>.shop-item-buttons {
    text-align: left;
}

.shop-item-list>.col-lg-12>.shop-item>.shop-item-summary>.shop-item-price>span,
.shop-item-list>.col-md-12>.shop-item>.shop-item-summary>.shop-item-price>span {
    padding-left: 0;
}

.shop-item-list>.col-lg-12>.shop-item p {
    margin: 15px 0;
    display: inline-block;
}

@media only screen and (max-width: 480px) {
    .shop-item-list>.col-lg-12>.shop-item {
        min-height: 100px;
    }

    .shop-item-list>.col-lg-12>.shop-item>.thumbnail,
    .shop-item-list>.col-md-12>.shop-item>.thumbnail {
        float: none;
        width: 100%;
    }

    .shop-item-list>.col-lg-12>.shop-item>.shop-item-summary,
    .shop-item-list>.col-md-12>.shop-item>.shop-item-summary {
        position: relative;
        left: 0;
    }

    .shop-item-list>.col-lg-12>.shop-item>.shop-item-buttons,
    .shop-item-list>.col-md-12>.shop-item>.shop-item-buttons,
    .shop-item-list>.col-lg-12>.shop-item>.shop-item-summary,
    .shop-item-list>.col-md-12>.shop-item>.shop-item-summary {
        float: none;
        text-align: center !important;
    }

    .shop-item-list>.col-lg-12>.shop-item>.shop-item-summary>.shop-item-price>span,
    .shop-item-list>.col-md-12>.shop-item>.shop-item-summary>.shop-item-price>span {
        padding: 0 10px;
    }
}

/* SHOP COMPARE TABLE */
.shop-compare-title {
    background-color: rgba(0, 0, 0, 0.05);
}

section.dark .shop-compare-title {
    background-color: rgba(255, 255, 255, 0.1);
}

.shop-compare>tbody>tr>td:first-child {
    font-weight: bold;
}

.shop-compare a.shop-compare-item>img {
    margin-bottom: 10px;
}

/* SHOP CART */
.cartContent {
    padding: 0;
}

.cartContent .item {
    position: relative;
    background: rgba(0, 0, 0, 0.01);
}

.cartContent .item {
    margin-top: -1px;
    border: rgba(0, 0, 0, 0.05) 1px solid;
}

.cartContent .sky-form.boxed {
    border: rgba(0, 0, 0, 0.1) 1px solid;
}

.cartContent .item.head {
    border-bottom: 0;
}

.cartContent .product_name {
    float: left;
    width: 35%;
    padding: 10px;
    text-decoration: none;
    min-height: 60px;
}

.cartContent .product_name:hover>span {
    text-decoration: underline;
}

.cartContent .product_name>small {
    display: block;
    font-size: 12px;
    line-height: 12px;
    color: rgba(0, 0, 0, 0.5);
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}

.cartContent .qty {
    float: right;
    width: 160px;
    font-size: 15px;
    padding: 10px;
    text-align: center;
}

.cartContent .qty input {
    padding: 3px;
    margin: 0;
    border: #ccc 1px solid;
    width: 50px;
    margin-right: 3px;
    text-align: center;
}

.cartContent .total_price {
    float: right;
    width: 150px;
    font-size: 15px;
    padding: 10px;
    line-height: 30px;
    text-align: center;
    font-weight: bold;
}

.cartContent .remove_item {
    float: right;
    padding: 5px 5px 5px 7px;
    width: 30px;
    margin-right: 8px;
}

.cartContent a.remove_item {
    background: rgba(0, 0, 0, 0.1);
    border: rgba(0, 0, 0, 0.1) 1px solid;
    padding-top: 0;
    margin-top: 10px;
    height: 30px;
    line-height: 26px;
    font-size: 18px;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.5);
    border-radius: 3px;
}

.cartContent .btn_update {
    margin-top: 20px;
}

@media only screen and (max-width: 992px) {
    .cartContent .item.head {
        display: none;
    }

    .cartContent .product_name {
        font-size: 11px;
        line-height: 15px;
    }

    .cartContent .item .qty {
        float: left;
        text-align: left;
    }

    .cartContent .product_name {
        width: 50%;
    }
}

/* dark */
section.dark .cartContent .item {
    background: rgba(255, 255, 255, 0.04);
}

section.dark .cartContent .item {
    border: rgba(255, 255, 255, 0.05) 1px solid;
}

section.dark .cartContent .sky-form.boxed {
    border: rgba(255, 255, 255, 0.1) 1px solid;
}

section.dark .cartContent .qty input {
    color: #000;
}

section.dark .cartContent .product_name>small {
    color: rgba(255, 255, 255, 0.5);
}

section.dark .cartContent a.remove_item {
    color: #eee;
    background: rgba(255, 255, 255, 0.1);
}

/**SHOP PRODUCT**/
.product-opt-color,
.product-opt-size,
.product-opt-qty {
    margin-right: 10px;
}

/* QTY DROP DOWN */
ul#product-qty-dd {
    padding: 1px 0 0 1px;
    min-width: 115px;
    margin-top: -1px;
}

ul#product-qty-dd li {
    float: left;
    width: 49.1%;
    margin-right: 1px;
    margin-bottom: 1px;
    background-color: rgba(0, 0, 0, 0.05);
    text-align: center;
    cursor: pointer;
}

button.product-qty-dd .caret {
    float: right;
    margin-top: 8px;
}

button.product-qty-dd {
    width: 100px;
    text-align: left;
}

/* SIZE DROP DOWN */
ul#product-size-dd {
    margin-top: -1px;
    min-width: 159px;
    padding: 1px 0 0 1px;
}

ul#product-size-dd li {
    float: left;
    width: 51px;
    margin-right: 1px;
    margin-bottom: 1px;
    background-color: rgba(0, 0, 0, 0.05);
    text-align: center;
    cursor: pointer;
}

ul#product-size-dd li>a {
    padding: 3px 0;
}

button.product-size-dd {
    width: 100px;
    text-align: left;
}

button.product-size-dd .caret {
    float: right;
    margin-top: 8px;
}

/* COLOR DROP DOWN */
ul#product-color-dd {
    margin-top: -1px;
    min-width: 50px;
    padding: 1px 0 0 1px;
}

ul#product-color-dd li {
    float: left;
    width: 25px !important;
    margin-right: 1px;
    margin-bottom: 1px;
    background-color: rgba(0, 0, 0, 0.05);
    text-align: center;
    cursor: pointer;
}

ul#product-color-dd li>a {
    padding: 3px 0;
}

ul#product-color-dd .tag.shop-color {
    width: 24px !important;
    height: 24px !important;
}

button.product-color-dd {
    width: 55px;
    text-align: left;
    position: relative;
}

button.product-color-dd .caret {
    float: right;
    margin-top: 8px;
}

button.product-color-dd>.tag {
    height: 17px;
    width: 20px;
    margin: 0;
    position: absolute;
    top: 7px;
    left: 7px;
}

.product-opt-color>ul>li {
    padding: 0 1px !important;
}

@media only screen and (max-width: 480px) {

    ul#product-size-dd,
    ul#product-qty-dd {
        margin-top: -21px;
    }

    .product-size-dd,
    .product-qty-dd,
    .product-add-cart {
        min-width: 90px;
        width: 100% !important;
        display: block !important;
        float: none !important;
        margin-bottom: 20px !important;
    }
}

#topMain .caret {
    display: none
}

.parallax h3 {
    font-size: 50px;
}

.parallax h1,
.parallax h2,
.parallax h3,
.parallax h4,
.parallax h5,
.parallax h6,
.parallax p,
.parallax .btn,
.parallax img,
.parallax div,
.parallax {
    color: #ffffff;
    z-index: 10;
}

div.row .col-md-12 img.img-responsive,
div.row .col-md-4 img.img-responsive,
div.row .col-md-6 img.img-responsive,
div.row .col-md-2 img.img-responsive {
    width: auto;
}


/** Portfolio
 **************************************************************** **/
/* do not move from here - we rewrite this below */
.item-box-desc .h2,
.item-box-desc .h3,
.item-box-desc .h4,
.item-box-desc .h5 {
    font-size: 18px;
    line-height: 21px;
    margin: 0;
    padding: 0;
}

.item-box .owl-carousel {
    margin-top: 0px !important;
}

#portfolio {
    overflow: hidden;
}

#portfolio .h2,
#portfolio .h3 {
    font-size: 18px;
    line-height: 20px;
    margin: 0;
    color: #111;
}

#portfolio .portfolio-item .h2,
#portfolio .portfolio-item .h3 {
    text-overflow: ellipsis;
    white-space: nowrap;
}

#portfolio div.col-md-3 .h2,
#portfolio div.col-md-3 .h3 {
    font-size: 18px;
    line-height: 18px;
}

#portfolio div.col-md-5th .h2,
#portfolio div.col-md-5th .h3 {
    font-size: 15px;
    line-height: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#portfolio div.col-md-2 .h2,
#portfolio div.col-md-2 .h3 {
    font-size: 13px;
    line-height: 13px;
}

#portfolio div.col-md-2 .item-box-desc,
#portfolio div.col-md-2 .item-box-desc {
    padding: 20px 6px 0 15px !important;
}

section.dark #portfolio .h2,
section.dark #portfolio .h3 {
    color: #fff;
}

#portfolio.portfolio-title-over div.col-md-2 .item-box .item-hover .inner {
    margin-top: -20px !important;
}

#portfolio div.col-md-2 ul.categories>li>a,
#portfolio div.col-md-5th ul.categories>li>a {
    font-size: 11px;
    line-height: 11px;
}

#portfolio .item-box-desc .h2,
#portfolio .item-box-desc .h3 {
    font-size: 18px;
    line-height: 20px;
}

#portfolio .item-box-overlay-title {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 8px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    z-index: 100;
}

#portfolio .item-box-overlay-title .h2,
#portfolio .item-box-overlay-title .h3,
#portfolio .item-box-overlay-title .h4,
#portfolio .item-box-overlay-title a {
    color: #fff;
}

#portfolio .item-box-overlay-title a:hover {
    color: #fff !important;
}

#portfolio .controlls-over .owl-pagination {
    bottom: auto;
    top: 10px;
    right: 10px;
    left: auto;
    width: auto;
}

@media only screen and (max-width: 992px) {

    #portfolio div.col-md-5>.h2,
    #portfolio div.col-md-5>.h3 {
        margin-top: 30px;
    }
}

@media only screen and (max-width: 480px) {
    #portfolio.portfolio-title-over .item-box .item-hover .inner {
        margin-top: -40px !important;
    }
}

/** Gutter ****************** **/
#portfolio.portfolio-gutter .item-box {
    margin-bottom: 30px;
}

#portfolio.portfolio-nogutter .row>div,
#portfolio.portfolio-nogutter .item-box {
    padding: 0 !important;
    margin: 0 !important;
}

#portfolio.portfolio-gutter .item-box .item-box-desc {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/** Isotope Portfolio
 ****************** **/
#portfolio.portfolio-isotope {
    display: block;
    margin: auto;
    width: 100%;
}

#portfolio.portfolio-isotope .item-box-desc {
    margin-bottom: 0;
}

#portfolio.portfolio-isotope-3 .portfolio-item.has-title .inner,
#portfolio.portfolio-isotope-4 .portfolio-item.has-title .inner,
#portfolio.portfolio-isotope-5 .portfolio-item.has-title .inner {
    margin-top: -36px !important;
}

#portfolio.portfolio-isotope-6 .portfolio-item.has-title .inner {
    margin-top: -26px !important;
}

/* 2 columns */
#portfolio.portfolio-isotope-2 .portfolio-item {
    margin: 0 20px 20px 0;
    float: left;
}

#portfolio.portfolio-isotope-2 .item-box-desc {
    padding: 20px;
}

/* 3 columns */
#portfolio.portfolio-isotope-3 .portfolio-item {
    margin: 0 15px 15px 0;
}

#portfolio.portfolio-isotope-3 .item-box-desc {
    padding: 20px;
}

/* 4 columns */
#portfolio.portfolio-isotope-4 .portfolio-item {
    margin: 0 12px 12px 0;
}

#portfolio.portfolio-isotope-4 .portfolio-item .h3,
#portfolio.portfolio-isotope-4 .portfolio-item .h4 {
    font-size: 17px;
    line-height: 17px;
}

#portfolio.portfolio-isotope-4 .item-box-desc {
    padding: 20px 10px 20px 10px;
}

/* 5 columns */
#portfolio.portfolio-isotope-5 .portfolio-item {
    margin: 0 10px 10px 0;
}

#portfolio.portfolio-isotope-5 .portfolio-item .h3,
#portfolio.portfolio-isotope-5 .portfolio-item .h4 {
    font-size: 16px;
    line-height: 16px;
}

#portfolio.portfolio-isotope-5 .item-box-desc {
    padding: 20px 10px 20px 10px;
}

/* 6 columns */
#portfolio.portfolio-isotope-6 .portfolio-item {
    margin: 0 6px 6px 0;
}

#portfolio.portfolio-isotope-6 .portfolio-item .h3,
#portfolio.portfolio-isotope-6 .portfolio-item .h4 {
    font-size: 15px;
    line-height: 15px;
}

#portfolio.portfolio-isotope-6 .item-box-desc {
    padding: 20px 10px 20px 10px;
}

#portfolio.portfolio-isotope.portfolio-nogutter .portfolio-item {
    margin: 0;
}

#blog.blog-isotope-3 .blog-post-item {
    border: 0 none;
    margin: 0 15px 15px 0;
}

.blog-post-item {
    display: block;
    padding-bottom: 60px;
}

#blog.blog-nogutter .blog-post-item {
    margin: 0 0;
}

.timeline {
    padding-left: 100px;
    position: relative;
}

/** Timeline **************************************************************** **/
.timeline {
    position: relative;
    padding-left: 100px;
}

.timeline.timeline-inverse {
    padding-left: 0;
    padding-right: 100px;
}

.timeline .timeline-item {
    position: relative;
    min-height: 150px;
    display: block;
    margin-bottom: 30px;
}

.timeline .timeline-item-bordered {
    border-left: #ccc 1px dashed;
    padding-left: 20px;
}

section.dark .timeline .timeline-item-bordered {
    border-left: rgba(255, 255, 255, 0.2) 1px dashed;
}

.timeline.timeline-inverse .timeline-item-bordered {
    border-right: #ccc 1px dashed;
    border-left: 0;
    padding-right: 20px;
    padding-left: 0;
}

/* horizontal line [left|center|right] */
.timeline>.timeline-hline {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin-left: 30px;
    width: 1px;
    border-left: rgba(0, 0, 0, 0.1) 1px dashed;
    height: 100%;
}

section.dark .timeline>.timeline-hline {
    border-left-color: rgba(255, 255, 255, 0.2);
}

.timeline.timeline-inverse>.timeline-hline {
    left: auto;
    right: 0;
    margin-left: 0;
    margin-right: 30px;
    border-left: 0;
    border-right: rgba(0, 0, 0, 0.1) 1px dashed;
}

section.dark .timeline.timeline-inverse>.timeline-hline {
    border-right-color: rgba(255, 255, 255, 0.2);
}

/* timeline entry */
.timeline .timeline-entry {
    display: block;
    border: rgba(0, 0, 0, 0.1) 3px solid;
    background-color: #fff;
    padding-top: 10px;
    top: 20px;
    z-index: 10;
    position: absolute;
    left: -102px;
    right: auto;
    width: 64px;
    height: 64px;
    font-size: 26px;
    text-align: center;
    line-height: 1;
    color: #ccc;
    font-weight: bold;
    font-family: 'Lato', 'Open Sans', Arial, Helvetica, sans-serif;
}

.timeline .timeline-entry>.timeline-vline {
    position: absolute;
    top: 50%;
    margin-top: -1px;
    right: -40px;
    width: 40px;
    height: 0;
    border-top: 1px dashed #CCC;
}

.timeline.timeline-inverse .timeline-entry {
    right: -102px;
    left: auto;
}

.timeline.timeline-inverse .timeline-entry>.timeline-vline {
    right: auto;
    left: -40px;
}

.timeline .timeline-entry>span {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 300;
}

section.alternate .timeline .timeline-entry {
    background-color: #F9F9F9;
}

section.dark .timeline .timeline-entry {
    color: #666;
    background-color: #212121;
    border-color: rgba(255, 255, 255, 0.2);
}

section.dark .timeline .timeline-entry>.timeline-vline {
    border-top-color: rgba(255, 255, 255, 0.2);
}

section.dark.alternate .timeline .timeline-entry {
    background-color: #151515;
}

@media only screen and (min-width: 1024px) {
    .shop-item .quick-view {
        opacity: 1;
        visibility: visible;
    }
}

.btn-link {
    color: #666666;
}

/* video background */
section.section-video {
    border: 0;
}

section.section-video .section-container-video {
    position: absolute !important;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
}

section.section-video .section-container-video>video {
    position: absolute;
    top: 0;
    left: 0;
}

section.section-video h1,
section.section-video h2,
section.section-video h3,
section.section-video h4,
section.section-video h5,
section.section-video h6,
section.section-video .h1,
section.section-video .h2,
section.section-video .h3,
section.section-video .h4,
section.section-video .h5,
section.section-video .h6,
section.section-video p,
section.section-video .btn,
section.section-video img,
section.section-video div,
section.section-video {
    color: #fff;
    position: relative;
    z-index: 10;
}

section.section-video .overlay {
    background-color: rgba(34, 34, 34, .3);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
}

section.section-video h1,
section.section-video .h1 {
    font-size: 70px;
}

section.section-video h2,
section.section-video .h2 {
    font-size: 60px;
}

section.section-video h3,
section.section-video .h3 {
    font-size: 50px;
}

@media only screen and (max-width: 760px) {

    section.section-video h1,
    section.section-video .h1 {
        font-size: 55px;
    }

    section.section-video h2,
    section.section-video .h2 {
        font-size: 45px;
    }

    section.section-video h3,
    section.section-video .h3 {
        font-size: 45px;
    }
}

@media only screen and (max-width: 500px) {

    section.section-video h1,
    section.section-video .h1 {
        font-size: 36px;
    }

    section.section-video h2,
    section.section-video .h2 {
        font-size: 30px;
    }

    section.section-video h3,
    section.section-video .h3 {
        font-size: 30px;
    }
}

#popup_message .form-horizontal {
    overflow-x: hidden
}

.shop-item-buttons table {
    font-size: 12px;
    line-height: 12px;
}

.wiget-position {
    display: inline;
}

.wiget-position::before {
    outline: 2px dotted #ff0000;
}

.snippets_html {
    position: relative
}

.remove-snippet {
    background-color: #f7632e;
    color: #ffffff;
    cursor: pointer;
    font-size: 15px;
    height: 30px;
    line-height: 30px;
    padding: 0 10px;
    position: absolute;
    right: 0;
    top: -15px;
    z-index: 9999;
    display: none;
}

.remove-snippet i {
    margin-right: 5px
}

.snippets_html:hover .remove-snippet {
    display: block
}

.checkbox-form-color input:checked+i,
.checkbox-form-color:hover i {
    border-color: #c33245;
}

/** TIME PICKER
 ******************************************* **/
.time_pick .ti_tx,
.time_pick .mi_tx,
.time_pick .mer_tx {
    width: 100%;
    text-align: center;
    margin: 10px 0;
}

.time_pick .time,
.time_pick .mins,
.time_pick .meridian {
    width: 50px;
    float: left;
    margin: 0;
    font-size: 20px;
    color: #2d2e2e;
    font-family: arial;
    font-weight: 700;
}

.time_pick .prev,
.time_pick .next {
    position: relative;
    cursor: pointer;
    padding: 12px 18px;
    width: 28%;
    height: 20px;
    border: 2px solid #ddd;
    margin: auto;
    text-align: center;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

section.dark .time_pick .prev,
section.dark .time_pick .next {
    border-color: #666;
    color: #fff;
}

.time_pick .prev:before,
.time_pick .next:before {
    position: absolute;
    left: 8px;
    top: 3px;
    content: "\f077";
    font-family: 'FontAwesome';
    display: inline-block;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.time_pick .next:before {
    content: "\f078";
}

.time_pick .prev:hover,
.time_pick .next:hover {
    background-color: #ccc;
}

.time_pick .next {
    background-position: 50% 150%;
}

.time_pick .prev {
    background-position: 50% -50%;
}

.time_pick {
    position: relative;
}

.time_pick .timepicker_wrap {
    padding: 10px;
    z-index: 998;
    display: none;
    background: #fff;
    border: 2px solid #ddd;
    float: left;
    position: absolute;
    top: 38px !important;
    left: 0;
    -webkit-border-bottom-right-radius: 3px;
    -webkit-border-bottom-left-radius: 3px;
    -moz-border-radius-bottomright: 3px;
    -moz-border-radius-bottomleft: 3px;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}

.time_pick input.timepicker+.timepicker_wrap {
    border-top: 0;
}

section.dark .time_pick .timepicker_wrap {
    color: #eee;
    background: #212121;
    background: #333;
    border-color: #666;
}

.time_pick .arrow_top {
    position: absolute;
    top: -10px;
    left: 20px;
    width: 18px;
    height: 10px;
    z-index: 999;
}

.time_pick input.timepicki-input {
    background: none repeat scroll 0 0 #FFFFFF;
    border: 2px solid #ddd;
    float: none;
    margin: 0;
    text-align: center;
    width: 82%;
    font-weight: 300;
    font-size: 15px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

section.dark .time_pick input.timepicki-input {
    color: #333;
    border-color: #666;
}

.time_pick a.reset_time {
    float: left;
    margin-top: 5px;
    color: #000;
}

.checkbox-form-color input:checked+i,
.checkbox-form-color:hover i {
    border-color: #c33245;
}

/* Mega Menu */
#topNav li.mega-menu {
    position: inherit;
    color: #fff;

}

#topNav li.mega-menu>ul {
    max-width: 100%;
    width: 100%;
    top: inherit;
    box-shadow: rgba(0, 0, 0, 0.2) 0 6px 12px;
    border: #eee 1px solid;
}

#topNav li.mega-menu div.row {
    display: table;
    margin: 0;
    padding: 0;
    width: 100%;
}

#topNav li.mega-menu div.row div {
    display: table-cell;
    border-left: rgba(0, 0, 0, 0.1) 1px solid;
    margin-left: -1px;
    display: table-cell;
    vertical-align: top;
    float: none;

    margin: 0;
    padding: 0 0 0 0;
}

#topNav li.mega-menu div.row>div:first-child {
    border-left: 0 !important;
}

#topNav li.mega-menu div.row div>ul>li>span {
    color: #111;
    font-weight: bold;
    display: block;
    padding: 6px 15px 15px 15px;
}

@media only screen and (max-width: 992px) {
    #topNav li.mega-menu div.row div>ul>li>span {
        color: #fff;
    }
}

#topNav li.mega-menu div.row div:first-child {
    border-left: 0;
}

#topNav li.mega-menu div.row div>ul>li+li>span {
    margin-top: 25px;
}

/** Boxed
 **************************************************************** **/
body.boxed {
    background-color: #f1f2f7;
}

body.boxed #wrapper {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    /*margin-top:50px;margin-bottom:50px;*/
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

@media only screen and (max-width: 992px) {
    body.boxed #wrapper {
        margin-top: 0;
        margin-bottom: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
    }
}

/* Sticky 60px */
#header.fixed {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 1040;
}

/* Static */
#header.static {
    position: fixed;
    border-bottom: rgba(0, 0, 0, 0.08) 1px solid;
}

/** Scroll To Top
 **************************************************************** **/
#toTop {
    font-size: 38px;
    line-height: 33px;
    background-color: rgba(0, 0, 0, 0.3);
    color: #FFF;
    position: fixed;
    height: 35px;
    width: 40px;
    right: 6px;
    bottom: 70px;
    text-align: center;
    text-transform: uppercase;
    opacity: 0.9;
    filter: alpha(opacity=90);
    text-decoration: none;
    display: none;
    z-index: 9999;
    -webkit-border-radius: 2px !important;
    -moz-border-radius: 2px !important;
    border-radius: 2px !important;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

#toTop:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

#toTop:before {
    font-family: "fontawesome";
    content: "\f102";
}

/** Search Page
 **************************************************************** **/
/*div.search-result {padding:20px 0;border-bottom:#eee 1px solid;font-size: 14px;}*/
div.search-result p {
    margin: 0;
    padding: 0;
}

div.search-result img {
    float: left;
    margin-right: 10px;
    margin-top: 6px;
}

.search-title-aside {
    margin-top: 20px;
    font-size: 17px;
    line-height: 20px;
    color: #888;
    font-weight: 400;
}

ul.search-history {
    border-bottom: #eee 1px solid;
    margin-bottom: 0;
    padding-bottom: 6px;
}

/*************************** РЎС‚РёР»Рё РїСЂРѕС‡РµРµ СЂР°СЃРєРёРґР°С‚СЊ **************************/
#alert_mess {
    font-size: 18px;
    left: 0;
    position: fixed;
    right: 0;
    text-align: center;
    top: 0;
    z-index: 9999
}

.bootbox .tab-content {
    padding-bottom: 0
}

.bootbox {
    font-size: 13px;
}

.bootbox .form-group {
    margin-bottom: 5px;
}

span.ajax-loader {
    background: rgba(0, 0, 0, 0) url("../images/ajax-loader.gif") no-repeat scroll 0 0;
    display: none;
    float: left;
    left: 6px;
    position: relative;
    top: 11px;
    width: 36px
}

#popup_info {
    border: 1px solid #666666;
    display: none;
    float: left;
    margin: 3px 2px;
    padding: 2px 9px 1px;
    position: relative
}

#popup_info.error {
    background-color: #e6a4a4
}

#popup_info.info {
    background-color: #aeffa4
}

.bootbox section {
    padding: 0;
    border: 0 none;
}

.bootbox form {
    margin-bottom: 0
}

.debug_info {
    color: #ccc;
    margin: 10px
}

#debug_query_dump {
    display: none
}

.debug_query_count a {
    border-color: #fff;
    color: #fff
}

#send_order_form {
    overflow: hidden;
    padding: 5px;
    width: 630px
}

#send_order_form .line .error {
    border: 1px solid #ed1c24;
    display: none;
    width: 450px
}

#send_order_form .line .errortext {
    background: #ff8e8e none repeat scroll 0 0;
    border-radius: 5px;
    box-shadow: 0 0 0 5px #efe6e6;
    color: #8e0404;
    display: block;
    margin: 20px auto;
    max-width: 878px;
    padding: 10px 25px;
    width: 290px
}

#cboxClose {
    top: 0
}

#cboxLoadedContent {
    margin-bottom: 0
}

#cart_form .radio label,
#cart_form .checkbox label {
    padding: 0
}

.open .nav-left-ml {
    display: block !important;
}

.featured-icon {
    font-size: 3.4em;
    padding-top: 10px;
    text-align: center;
}

.space-bottom {
    margin-bottom: 36px;
}

.space-top {
    margin-top: 36px;
}

.ch-delivery {
    min-height: 120px !important;
    position: relative;
}

.desc_delivery {
    background: #f6f6f6 none repeat scroll 0 0;
    min-height: 60px;
    padding: 10px;
    overflow: hidden
}

.ch-delivery .checkbox label {
    display: block
}

.ch-delivery .checkbox label input {
    padding: 10px !important;
}

.ch-pay {
    border: 1px solid #dddddd;
    padding: 5px 11px 12px;
}

.plos {
    height: 60px;
    padding-left: 10px;
}

.mb10 {
    margin-bottom: 15px;
}

.ch-delivery label {
    position: relative
}

.delivery-calc-ems-plugin {
    position: relative
}

input.err,
input.error,
textarea.err,
textarea.error,
select.err,
select.error {
    background: #f7f7f7 !important;
    border: 1px solid !important;
    transition: all 0.2s ease-in 0s;
}

form.validate label.error {
    position: absolute;
    background-color: #ff0000;
    color: #fff;
    left: 0;
    z-index: 10;
    bottom: -26px;
    left: 36px;
    font-size: 11px;
    font-weight: 400;
    padding: 3px;
    display: none !important;
}

.alert.errors {
    display: none
}

.ch-delivery.errorDelivery {
    border: 1px solid #ff0000;
}

.errDelivery {
    display: none
}

.errorDelivery .errDelivery {
    background: #ff0000 none repeat scroll 0 0;
    bottom: 60px;
    color: #ffffff;
    display: block;
    padding: 2px;
    position: absolute;
    text-align: center;
    width: 100%;
    z-index: 1;
}

.ch-delivery label {
    font-weight: 400;
    color: #111
}

.ch-delivery .radio input,
.ch-delivery .checkbox input,
.ch-pay .radio input,
.ch-pay .checkbox input {
    left: 0px;
    position: relative;
}

.ch-delivery .checkbox {
    display: block;
    margin-bottom: 0;
    margin-right: 0;
    padding: 0;
}

.ch-pay .checkbox {
    padding-left: 0;
}

.buy-widget {
    background: rgba(255, 255, 255, 0.7) none repeat scroll 0 0;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 100
}

#info_vars .form-control {
    height: auto;
    position: relative;
    z-index: 101
}

.color_char {
    border: 1px solid #666666;
    display: inline-block;
    height: 23px;
    margin: 0 6px 3px 0;
    width: 23px !important;
}

.select_color {
    box-shadow: 0 0 3px #ff0000
}

#filter_form .color_char {
    cursor: pointer
}

#filter_form {
    font-size: 16px
}

#form_product .color_group {
    display: inline-block
}

#filter_form .form-group {
    margin-bottom: 10px
}

#filter_form label {
    display: inline-block
}

.overflow-h {
    overflow: hidden;
}

.product-color .color_char {
    transition: color 0.3s ease 0s;
    display: block;
    float: right;
    font-size: 24px;
    height: 50px;
    padding: 5px;
    text-align: center;
    width: 50px !important;
}

.product-color .color_char:hover {
    border: 2px solid #18ba9b;
    cursor: pointer;
}

.sidebar-vertical .sidebar-nav .navbar-header {
    float: none;
}

.et-beaker:after {
    content: "\f105";
    color: #1a1a1a;
    display: block;
    font-family: "FontAwesome";
    font-style: normal;
    height: 0;
    margin-right: 10px;
    margin-top: 0;
    position: absolute;
    right: 5px;
    top: 8px;
    width: 0;
}

.sidebar-vertical .navbar-header>.h4 {
    padding-left: 0;
    line-height: 15px;
}

.is-mobile .title_block {
    margin-top: 10px;
}

.is-mobile #center_column .title_block span {
    background-color: #ffffff;
    display: inline-block;
    font-size: 20px !important;
    line-height: 26px !important;
    margin: 0;
    padding: 0 0 0 0;
    position: relative;
}

.is-mobile #center_column .title_block {
    background: none;
    margin-bottom: 0px;
    position: relative;
}

.sidebar-vertical .navbar-header .h4 {
    font-size: 13px;
}

.page-heading {
    margin-bottom: 10px
}

.rating-gly {
    font-family: "FontAwesome"
}

.rating-gly-star {
    font-family: "FontAwesome";
    padding-left: 2px
}

.rating-gly-star .rating-stars:before {
    padding-left: 2px
}

.rating-lg .rating-gly-star,
.rating-lg .rating-gly-star .rating-stars:before {
    padding-left: 4px
}

.rating-xl .rating-gly-star,
.rating-xl .rating-gly-star .rating-stars:before {
    padding-left: 2px
}

.rating-active {
    cursor: default
}

.rating-disabled {
    cursor: not-allowed
}

.rating-uni {
    font-size: 1.1em;
    margin-top: -5px
}

.rating-container {
    color: #e3e3e3;
    display: inline-block;
    overflow: hidden;
    position: relative;
    vertical-align: middle
}

.rating-container:before {
    content: attr(data-content)
}

.rating-container .rating-stars {
    color: #fde16d;
    cursor: pointer;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    transition: all 0.25s ease-out 0s;
    white-space: nowrap
}

.rating-container .rating-stars:before {
    content: attr(data-content);
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.7)
}

.rating-container-rtl {
    color: #fde16d;
    display: inline-block;
    overflow: hidden;
    position: relative;
    vertical-align: middle
}

.rating-container-rtl:before {
    content: attr(data-content);
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.7)
}

.rating-container-rtl .rating-stars {
    color: #e3e3e3;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    transition: all 0.25s ease-out 0s;
    white-space: nowrap
}

.rating-container-rtl .rating-stars:before {
    content: attr(data-content)
}

.rating-xl {
    font-size: 4.89em
}

.rating-lg {
    font-size: 3.91em
}

.rating-md {
    font-size: 3.13em
}

.rating-sm {
    font-size: 2.5em
}

.rating-xs {
    font-size: 2em
}

.star-rating .clear-rating,
.star-rating-rtl .clear-rating {
    color: #aaa;
    cursor: not-allowed;
    display: inline-block;
    font-size: 60%;
    vertical-align: middle
}

.clear-rating-active {
    cursor: pointer
}

.clear-rating-active:hover {
    color: #843534
}

.star-rating .clear-rating {
    padding-right: 5px
}

.star-rating .caption,
.star-rating-rtl .caption {
    color: #999;
    display: inline-block;
    font-size: 55%;
    vertical-align: middle
}

.star-rating .caption {
    padding-left: 5px
}

.star-rating-rtl .caption {
    padding-right: 5px
}

.pagination .last_link,
.pagination .first_link {
    display: none
}

.shop_cats_view {
    min-height: 140px
}

@media only screen and (max-width: 992px) {
    .shop_cats_view {
        min-height: 140px
    }
}

.gold-star {
    color: #FAB600;
}

.product-star-vote label {
    margin: 0 15px 30px 0 !important;
    font-weight: 300;
}

div.star:after {
    color: #777676;
    content: "\f006";
    display: inline-block;
    font-family: "FontAwesome"
}

div.star_on:after {
    color: #ef8743;
    content: "\f005";
    display: inline-block;
    font-family: "FontAwesome"
}

.star_content {
    display: inline-block;
    margin: 0 0 0 5px;
    vertical-align: middle
}

div.star.star_on {
    display: block
}

.star {
    cursor: pointer;
    float: left;
    font-size: 14px;
    font-weight: normal;
    overflow: hidden;
    position: relative;
    top: -1px;
    width: 14px
}

div.comment .comment_details {
    border-left: 1px solid #d6d4d4;
    overflow: hidden
}

div.comment .comment_author {
    padding: 0 20px
}

.comment_author_infos strong {
    color: #333333;
    display: block
}

.comment_author_infos em {
    color: #adadad
}

div.comment:first-child {
    border: medium none;
    padding: 0
}

div.comment {
    border-top: 1px solid #d6d4d4;
    margin: 0 0 14px;
    padding-top: 14px
}

blockquote p {
    margin-bottom: 20px;
    position: relative;
}

blockquote cite::after {
    content: "- ";
    padding-left: 10px;
}

blockquote cite::before {
    content: "- ";
    padding-right: 8px;
}

blockquote cite {
    color: #9ca6b4;
    display: block;
    font-size: 0.75em;
}

blockquote cite span {
    color: #888888;
    display: block;
    font-size: 11px;
    font-weight: 300;
}

.com-title {
    font-size: 18px;
    letter-spacing: normal;
    margin: 0 0 5px;
    font-weight: 700
}

blockquote {
    border-left: 5px solid rgba(0, 0, 0, 0.1);
    font-size: 16px;
    font-style: normal;
    margin: 15px 0;
    padding: 0 0 0 25px;
    position: relative;
}

.bottom_cart .navbar-nav>li>a {
    color: inherit;
    padding-bottom: 8px;
    padding-top: 8px;
}

.bottom_cart .btn.btn-danger {
    color: #fff;
}

.bottom_cart .navbar-nav {
    margin-top: 5px
}

#tc {
    position: relative
}

.action_form {
    background: rgba(0, 0, 0, 0.6) none repeat scroll 0 0;
    box-shadow: 10px 10px 34px rgba(0, 0, 0, 0.5);
    padding: 30px 30px 10px;
}

.action_form button {
    display: block;
    font-size: 18px;
    margin: 15px auto 0;
    width: 100%;
}

.action_form legend {
    border: medium none;
    color: #ffffff;
    font-size: 28px;
    text-align: center;
}

section.action {
    color: #ffffff;
    font-size: 30px;
    margin: 0;
    padding: 20px 0;
    text-shadow: 2px 2px rgba(0, 0, 0, 0.3);
}

.wrap-akc {
    border-top: 1px solid #ffffff;
    color: #ffffff;
    font-size: 18px;
    padding-top: 15px;
    text-align: center;
}

.blog-post-item {
    border-bottom: 1px solid #eeeeee;
    display: block;
    margin-bottom: 80px;
    padding-bottom: 60px;
    position: relative;
}

.h1.blog-post-title,
.blog-post-item .h2 {
    font-size: 22px;
    letter-spacing: 0;
    margin-bottom: 10px;
}

.navbar-brand_admin {
    background-color: #bf0625;
    border-radius: 0 4px 4px 0;
    color: #ffffff;
    font-size: 1.9em;
    padding: 5px 0;
    position: fixed;
    text-align: center;
    top: 5px;
    transition: all 300ms ease 0s;
    width: 60px;
    z-index: 1001;
}

.navbar-brand_admin:hover i {
    animation: 4s linear 0s normal none infinite running spin;
}

ul.blog-post-info {
    display: block;
    margin-bottom: 0;
}

ul.blog-post-info li i,
ul.blog-post-info li {
    color: #888888;
    margin-right: 5px;
}

ul.blog-post-info li {
    margin-right: 20px;
    font-size: 14px
}

body.stop-scrolling {
    height: 100%;
    overflow: hidden;
}

.sweet-overlay {
    background-color: black;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
    background-color: rgba(0, 0, 0, 0.4);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: none;
    z-index: 10000;
}

.sweet-alert {
    background-color: white;
    width: 478px;
    padding: 17px;
    border-radius: 5px;
    text-align: center;
    position: fixed;
    left: 50%;
    top: 50%;
    margin-left: -256px;
    margin-top: -200px;
    overflow: hidden;
    display: none;
    z-index: 99999;
}

@media all and (max-width: 540px) {
    .sweet-alert {
        width: auto;
        margin-left: 0;
        margin-right: 0;
        left: 15px;
        right: 15px;
    }
}

.sweet-alert h2 {
    color: #575757;
    font-size: 30px;
    text-align: center;
    font-weight: 600;
    text-transform: none;
    position: relative;
    margin: 25px 0;
    padding: 0;
    line-height: 40px;
    display: block;
}

.sweet-alert p {
    color: #797979;
    font-size: 16px;
    text-align: center;
    font-weight: 300;
    position: relative;
    text-align: inherit;
    float: none;
    margin: 0;
    padding: 0;
    line-height: normal;
}

.sweet-alert fieldset {
    border: none;
    position: relative;
}

.sweet-alert .sa-error-container {
    background-color: #f1f1f1;
    margin-left: -17px;
    margin-right: -17px;
    overflow: hidden;
    padding: 0 10px;
    max-height: 0;
    webkit-transition: padding 0.15s, max-height 0.15s;
    transition: padding 0.15s, max-height 0.15s;
}

.sweet-alert .sa-error-container.show {
    padding: 10px 0;
    max-height: 100px;
    webkit-transition: padding 0.2s, max-height 0.2s;
    transition: padding 0.25s, max-height 0.25s;
}

.sweet-alert .sa-error-container .icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #ea7d7d;
    color: white;
    line-height: 24px;
    text-align: center;
    margin-right: 3px;
}

.sweet-alert .sa-error-container p {
    display: inline-block;
}

.sweet-alert .sa-input-error {
    position: absolute;
    top: 29px;
    right: 26px;
    width: 20px;
    height: 20px;
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
}

.sweet-alert .sa-input-error::before,
.sweet-alert .sa-input-error::after {
    content: "";
    width: 20px;
    height: 6px;
    background-color: #f06e57;
    border-radius: 3px;
    position: absolute;
    top: 50%;
    margin-top: -4px;
    left: 50%;
    margin-left: -9px;
}

.sweet-alert .sa-input-error::before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.sweet-alert .sa-input-error::after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.sweet-alert .sa-input-error.show {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.sweet-alert input {
    width: 100%;
    box-sizing: border-box;
    border-radius: 3px;
    border: 1px solid #d7d7d7;
    height: 43px;
    margin-top: 10px;
    margin-bottom: 17px;
    font-size: 18px;
    box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.06);
    padding: 0 12px;
    display: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.sweet-alert input:focus {
    outline: none;
    box-shadow: 0px 0px 3px #c4e6f5;
    border: 1px solid #b4dbed;
}

.sweet-alert input:focus::-moz-placeholder {
    transition: opacity 0.3s 0.03s ease;
    opacity: 0.5;
}

.sweet-alert input:focus:-ms-input-placeholder {
    transition: opacity 0.3s 0.03s ease;
    opacity: 0.5;
}

.sweet-alert input:focus::-webkit-input-placeholder {
    transition: opacity 0.3s 0.03s ease;
    opacity: 0.5;
}

.sweet-alert input::-moz-placeholder {
    color: #bdbdbd;
}

.sweet-alert input:-ms-input-placeholder {
    color: #bdbdbd;
}

.sweet-alert input::-webkit-input-placeholder {
    color: #bdbdbd;
}

.sweet-alert.show-input input {
    display: block;
}

.sweet-alert .sa-confirm-button-container {
    display: inline-block;
    position: relative;
}

.sweet-alert .la-ball-fall {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -27px;
    margin-top: 4px;
    opacity: 0;
    visibility: hidden;
}

.sweet-alert button {
    background-color: #8CD4F5;
    color: white;
    border: none;
    box-shadow: none;
    font-size: 17px;
    font-weight: 500;
    -webkit-border-radius: 4px;
    border-radius: 5px;
    padding: 10px 32px;
    margin: 26px 5px 0 5px;
    cursor: pointer;
}

.sweet-alert button:focus {
    outline: none;
    box-shadow: 0 0 2px rgba(128, 179, 235, 0.5), inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.sweet-alert button:hover {
    background-color: #7ecff4;
}

.sweet-alert button:active {
    background-color: #5dc2f1;
}

.sweet-alert button.cancel {
    background-color: #C1C1C1;
}

.sweet-alert button.cancel:hover {
    background-color: #b9b9b9;
}

.sweet-alert button.cancel:active {
    background-color: #a8a8a8;
}

.sweet-alert button.cancel:focus {
    box-shadow: rgba(197, 205, 211, 0.8) 0px 0px 2px, rgba(0, 0, 0, 0.0470588) 0px 0px 0px 1px inset !important;
}

.sweet-alert button[disabled] {
    opacity: .6;
    cursor: default;
}

.sweet-alert button.confirm[disabled] {
    color: transparent;
}

.sweet-alert button.confirm[disabled]~.la-ball-fall {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}

.sweet-alert button::-moz-focus-inner {
    border: 0;
}

.sweet-alert[data-has-cancel-button=false] button {
    box-shadow: none !important;
}

.sweet-alert[data-has-confirm-button=false][data-has-cancel-button=false] {
    padding-bottom: 40px;
}

.sweet-alert .sa-icon {
    width: 80px;
    height: 80px;
    border: 4px solid gray;
    -webkit-border-radius: 40px;
    border-radius: 40px;
    border-radius: 50%;
    margin: 20px auto;
    padding: 0;
    position: relative;
    box-sizing: content-box;
}

.sweet-alert .sa-icon.sa-error {
    border-color: #F27474;
}

.sweet-alert .sa-icon.sa-error .sa-x-mark {
    position: relative;
    display: block;
}

.sweet-alert .sa-icon.sa-error .sa-line {
    position: absolute;
    height: 5px;
    width: 47px;
    background-color: #F27474;
    display: block;
    top: 37px;
    border-radius: 2px;
}

.sweet-alert .sa-icon.sa-error .sa-line.sa-left {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    left: 17px;
}

.sweet-alert .sa-icon.sa-error .sa-line.sa-right {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    right: 16px;
}

.sweet-alert .sa-icon.sa-warning {
    border-color: #F8BB86;
}

.sweet-alert .sa-icon.sa-warning .sa-body {
    position: absolute;
    width: 5px;
    height: 47px;
    left: 50%;
    top: 10px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    margin-left: -2px;
    background-color: #F8BB86;
}

.sweet-alert .sa-icon.sa-warning .sa-dot {
    position: absolute;
    width: 7px;
    height: 7px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    margin-left: -3px;
    left: 50%;
    bottom: 10px;
    background-color: #F8BB86;
}

.sweet-alert .sa-icon.sa-info {
    border-color: #C9DAE1;
}

.sweet-alert .sa-icon.sa-info::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 29px;
    left: 50%;
    bottom: 17px;
    border-radius: 2px;
    margin-left: -2px;
    background-color: #C9DAE1;
}

.sweet-alert .sa-icon.sa-info::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    margin-left: -3px;
    top: 19px;
    background-color: #C9DAE1;
    left: 50%;
}

.sweet-alert .sa-icon.sa-success {
    border-color: #A5DC86;
}

.sweet-alert .sa-icon.sa-success::before,
.sweet-alert .sa-icon.sa-success::after {
    content: '';
    -webkit-border-radius: 40px;
    border-radius: 40px;
    border-radius: 50%;
    position: absolute;
    width: 60px;
    height: 120px;
    background: white;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.sweet-alert .sa-icon.sa-success::before {
    -webkit-border-radius: 120px 0 0 120px;
    border-radius: 120px 0 0 120px;
    top: -7px;
    left: -33px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 60px 60px;
    transform-origin: 60px 60px;
}

.sweet-alert .sa-icon.sa-success::after {
    -webkit-border-radius: 0 120px 120px 0;
    border-radius: 0 120px 120px 0;
    top: -11px;
    left: 30px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 0px 60px;
    transform-origin: 0px 60px;
}

.sweet-alert .sa-icon.sa-success .sa-placeholder {
    width: 80px;
    height: 80px;
    border: 4px solid rgba(165, 220, 134, 0.2);
    -webkit-border-radius: 40px;
    border-radius: 40px;
    border-radius: 50%;
    box-sizing: content-box;
    position: absolute;
    left: -4px;
    top: -4px;
    z-index: 2;
}

.sweet-alert .sa-icon.sa-success .sa-fix {
    width: 5px;
    height: 90px;
    background-color: white;
    position: absolute;
    left: 28px;
    top: 8px;
    z-index: 1;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.sweet-alert .sa-icon.sa-success .sa-line {
    height: 5px;
    background-color: #A5DC86;
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 2;
}

.sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
    width: 25px;
    left: 14px;
    top: 46px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.sweet-alert .sa-icon.sa-success .sa-line.sa-long {
    width: 47px;
    right: 8px;
    top: 38px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.sweet-alert .sa-icon.sa-custom {
    background-size: contain;
    border-radius: 0;
    border: none;
    background-position: center center;
    background-repeat: no-repeat;
}

/*  * Animations  */
@-webkit-keyframes showSweetAlert {
    0% {
        transform: scale(0.7);
        -webkit-transform: scale(0.7);
    }

    45% {
        transform: scale(1.05);
        -webkit-transform: scale(1.05);
    }

    80% {
        transform: scale(0.95);
        -webkit-transform: scale(0.95);
    }

    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}

@keyframes showSweetAlert {
    0% {
        transform: scale(0.7);
        -webkit-transform: scale(0.7);
    }

    45% {
        transform: scale(1.05);
        -webkit-transform: scale(1.05);
    }

    80% {
        transform: scale(0.95);
        -webkit-transform: scale(0.95);
    }

    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}

@-webkit-keyframes hideSweetAlert {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }

    100% {
        transform: scale(0.5);
        -webkit-transform: scale(0.5);
    }
}

@keyframes hideSweetAlert {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }

    100% {
        transform: scale(0.5);
        -webkit-transform: scale(0.5);
    }
}

@-webkit-keyframes slideFromTop {
    0% {
        top: 0%;
    }

    100% {
        top: 50%;
    }
}

@keyframes slideFromTop {
    0% {
        top: 0%;
    }

    100% {
        top: 50%;
    }
}

@-webkit-keyframes slideToTop {
    0% {
        top: 50%;
    }

    100% {
        top: 0%;
    }
}

@keyframes slideToTop {
    0% {
        top: 50%;
    }

    100% {
        top: 0%;
    }
}

@-webkit-keyframes slideFromBottom {
    0% {
        top: 70%;
    }

    100% {
        top: 50%;
    }
}

@keyframes slideFromBottom {
    0% {
        top: 70%;
    }

    100% {
        top: 50%;
    }
}

@-webkit-keyframes slideToBottom {
    0% {
        top: 50%;
    }

    100% {
        top: 70%;
    }
}

@keyframes slideToBottom {
    0% {
        top: 50%;
    }

    100% {
        top: 70%;
    }
}

.showSweetAlert[data-animation=pop] {
    -webkit-animation: showSweetAlert 0.3s;
    animation: showSweetAlert 0.3s;
}

.showSweetAlert[data-animation=none] {
    -webkit-animation: none;
    animation: none;
}

.showSweetAlert[data-animation=slide-from-top] {
    -webkit-animation: slideFromTop 0.3s;
    animation: slideFromTop 0.3s;
}

.showSweetAlert[data-animation=slide-from-bottom] {
    -webkit-animation: slideFromBottom 0.3s;
    animation: slideFromBottom 0.3s;
}

.hideSweetAlert[data-animation=pop] {
    -webkit-animation: hideSweetAlert 0.2s;
    animation: hideSweetAlert 0.2s;
}

.hideSweetAlert[data-animation=none] {
    -webkit-animation: none;
    animation: none;
}

.hideSweetAlert[data-animation=slide-from-top] {
    -webkit-animation: slideToTop 0.4s;
    animation: slideToTop 0.4s;
}

.hideSweetAlert[data-animation=slide-from-bottom] {
    -webkit-animation: slideToBottom 0.3s;
    animation: slideToBottom 0.3s;
}

@-webkit-keyframes animateSuccessTip {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }

    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }

    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }

    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }

    100% {
        width: 25px;
        left: 14px;
        top: 45px;
    }
}

@keyframes animateSuccessTip {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }

    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }

    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }

    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }

    100% {
        width: 25px;
        left: 14px;
        top: 45px;
    }
}

@-webkit-keyframes animateSuccessLong {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }

    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }

    84% {
        width: 55px;
        right: 0px;
        top: 35px;
    }

    100% {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}

@keyframes animateSuccessLong {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }

    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }

    84% {
        width: 55px;
        right: 0px;
        top: 35px;
    }

    100% {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}

@-webkit-keyframes rotatePlaceholder {
    0% {
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
    }

    5% {
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
    }

    12% {
        transform: rotate(-405deg);
        -webkit-transform: rotate(-405deg);
    }

    100% {
        transform: rotate(-405deg);
        -webkit-transform: rotate(-405deg);
    }
}

@keyframes rotatePlaceholder {
    0% {
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
    }

    5% {
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
    }

    12% {
        transform: rotate(-405deg);
        -webkit-transform: rotate(-405deg);
    }

    100% {
        transform: rotate(-405deg);
        -webkit-transform: rotate(-405deg);
    }
}

.animateSuccessTip {
    -webkit-animation: animateSuccessTip 0.75s;
    animation: animateSuccessTip 0.75s;
}

.animateSuccessLong {
    -webkit-animation: animateSuccessLong 0.75s;
    animation: animateSuccessLong 0.75s;
}

.sa-icon.sa-success.animate::after {
    -webkit-animation: rotatePlaceholder 4.25s ease-in;
    animation: rotatePlaceholder 4.25s ease-in;
}

@-webkit-keyframes animateErrorIcon {
    0% {
        transform: rotateX(100deg);
        -webkit-transform: rotateX(100deg);
        opacity: 0;
    }

    100% {
        transform: rotateX(0deg);
        -webkit-transform: rotateX(0deg);
        opacity: 1;
    }
}

@keyframes animateErrorIcon {
    0% {
        transform: rotateX(100deg);
        -webkit-transform: rotateX(100deg);
        opacity: 0;
    }

    100% {
        transform: rotateX(0deg);
        -webkit-transform: rotateX(0deg);
        opacity: 1;
    }
}

.animateErrorIcon {
    -webkit-animation: animateErrorIcon 0.5s;
    animation: animateErrorIcon 0.5s;
}

@-webkit-keyframes animateXMark {
    0% {
        transform: scale(0.4);
        -webkit-transform: scale(0.4);
        margin-top: 26px;
        opacity: 0;
    }

    50% {
        transform: scale(0.4);
        -webkit-transform: scale(0.4);
        margin-top: 26px;
        opacity: 0;
    }

    80% {
        transform: scale(1.15);
        -webkit-transform: scale(1.15);
        margin-top: -6px;
    }

    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
        margin-top: 0;
        opacity: 1;
    }
}

@keyframes animateXMark {
    0% {
        transform: scale(0.4);
        -webkit-transform: scale(0.4);
        margin-top: 26px;
        opacity: 0;
    }

    50% {
        transform: scale(0.4);
        -webkit-transform: scale(0.4);
        margin-top: 26px;
        opacity: 0;
    }

    80% {
        transform: scale(1.15);
        -webkit-transform: scale(1.15);
        margin-top: -6px;
    }

    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
        margin-top: 0;
        opacity: 1;
    }
}

.animateXMark {
    -webkit-animation: animateXMark 0.5s;
    animation: animateXMark 0.5s;
}

@-webkit-keyframes pulseWarning {
    0% {
        border-color: #F8D486;
    }

    100% {
        border-color: #F8BB86;
    }
}

@keyframes pulseWarning {
    0% {
        border-color: #F8D486;
    }

    100% {
        border-color: #F8BB86;
    }
}

.pulseWarning {
    -webkit-animation: pulseWarning 0.75s infinite alternate;
    animation: pulseWarning 0.75s infinite alternate;
}

@-webkit-keyframes pulseWarningIns {
    0% {
        background-color: #F8D486;
    }

    100% {
        background-color: #F8BB86;
    }
}

@keyframes pulseWarningIns {
    0% {
        background-color: #F8D486;
    }

    100% {
        background-color: #F8BB86;
    }
}

.pulseWarningIns {
    -webkit-animation: pulseWarningIns 0.75s infinite alternate;
    animation: pulseWarningIns 0.75s infinite alternate;
}

@-webkit-keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Internet Explorer 9 has some special quirks that are fixed here */
/* The icons are not animated. */
/* This file is automatically merged into sweet-alert.min.js through Gulp */
/* Error icon */
.sweet-alert .sa-icon.sa-error .sa-line.sa-left {
    -ms-transform: rotate(45deg) \9;
}

.sweet-alert .sa-icon.sa-error .sa-line.sa-right {
    -ms-transform: rotate(-45deg) \9;
}

/* Success icon */
.sweet-alert .sa-icon.sa-success {
    border-color: transparent\9;
}

.sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
    -ms-transform: rotate(45deg) \9;
}

.sweet-alert .sa-icon.sa-success .sa-line.sa-long {
    -ms-transform: rotate(-45deg) \9;
}

/*!
 * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
 * Copyright 2015 Daniel Cardoso <@DanielCardoso>
 * Licensed under MIT
 */
.la-ball-fall,
.la-ball-fall>div {
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.la-ball-fall {
    display: block;
    font-size: 0;
    color: #fff;
}

.la-ball-fall.la-dark {
    color: #333;
}

.la-ball-fall>div {
    display: inline-block;
    float: none;
    background-color: currentColor;
    border: 0 solid currentColor;
}

.la-ball-fall {
    width: 54px;
    height: 18px;
}

.la-ball-fall>div {
    width: 10px;
    height: 10px;
    margin: 4px;
    border-radius: 100%;
    opacity: 0;
    -webkit-animation: ball-fall 1s ease-in-out infinite;
    -moz-animation: ball-fall 1s ease-in-out infinite;
    -o-animation: ball-fall 1s ease-in-out infinite;
    animation: ball-fall 1s ease-in-out infinite;
}

.la-ball-fall>div:nth-child(1) {
    -webkit-animation-delay: -200ms;
    -moz-animation-delay: -200ms;
    -o-animation-delay: -200ms;
    animation-delay: -200ms;
}

.la-ball-fall>div:nth-child(2) {
    -webkit-animation-delay: -100ms;
    -moz-animation-delay: -100ms;
    -o-animation-delay: -100ms;
    animation-delay: -100ms;
}

.la-ball-fall>div:nth-child(3) {
    -webkit-animation-delay: 0ms;
    -moz-animation-delay: 0ms;
    -o-animation-delay: 0ms;
    animation-delay: 0ms;
}

.la-ball-fall.la-sm {
    width: 26px;
    height: 8px;
}

.la-ball-fall.la-sm>div {
    width: 4px;
    height: 4px;
    margin: 2px;
}

.la-ball-fall.la-2x {
    width: 108px;
    height: 36px;
}

.la-ball-fall.la-2x>div {
    width: 20px;
    height: 20px;
    margin: 8px;
}

.la-ball-fall.la-3x {
    width: 162px;
    height: 54px;
}

.la-ball-fall.la-3x>div {
    width: 30px;
    height: 30px;
    margin: 12px;
}

/*  * Animation */
@-webkit-keyframes ball-fall {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-145%);
        transform: translateY(-145%);
    }

    10% {
        opacity: .5;
    }

    20% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    80% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    90% {
        opacity: .5;
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(145%);
        transform: translateY(145%);
    }
}

@-moz-keyframes ball-fall {
    0% {
        opacity: 0;
        -moz-transform: translateY(-145%);
        transform: translateY(-145%);
    }

    10% {
        opacity: .5;
    }

    20% {
        opacity: 1;
        -moz-transform: translateY(0);
        transform: translateY(0);
    }

    80% {
        opacity: 1;
        -moz-transform: translateY(0);
        transform: translateY(0);
    }

    90% {
        opacity: .5;
    }

    100% {
        opacity: 0;
        -moz-transform: translateY(145%);
        transform: translateY(145%);
    }
}

@-o-keyframes ball-fall {
    0% {
        opacity: 0;
        -o-transform: translateY(-145%);
        transform: translateY(-145%);
    }

    10% {
        opacity: .5;
    }

    20% {
        opacity: 1;
        -o-transform: translateY(0);
        transform: translateY(0);
    }

    80% {
        opacity: 1;
        -o-transform: translateY(0);
        transform: translateY(0);
    }

    90% {
        opacity: .5;
    }

    100% {
        opacity: 0;
        -o-transform: translateY(145%);
        transform: translateY(145%);
    }
}

@keyframes ball-fall {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-145%);
        -moz-transform: translateY(-145%);
        -o-transform: translateY(-145%);
        transform: translateY(-145%);
    }

    10% {
        opacity: .5;
    }

    20% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }

    80% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }

    90% {
        opacity: .5;
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(145%);
        -moz-transform: translateY(145%);
        -o-transform: translateY(145%);
        transform: translateY(145%);
    }
}

#filter_form .filter-preview {
    background: #ffffff none repeat scroll 0 0;
    border-radius: 0 5px 5px 0;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
    margin: -10px 0 0 20px;
    padding: 6px 10px;
}

.filter-preview {
    border: 1px solid #cfcfcf;
    display: none;
    font-size: 14px;
    position: absolute;
    z-index: 1000;
}

#filter_form .loader-search {
    background: rgba(0, 0, 0, 0) url("../images/AjaxLoader.gif") no-repeat scroll right center;
    float: left;
    height: 16px;
    margin-right: 5px;
    width: 16px;
}

.filter-preview span {
    white-space: nowrap;
}

.filter-preview {
    font-size: 12px;
}

#topBar .list-icons {
    margin-bottom: 0;
    float: left;
}

/*#topBar .list-icons li {display: inline-block;margin-left: -3px;padding: 0 7px;position: relative;font-size: 12px;  color: #151515}*/
.block-li li {
    display: block !important
}

.bootbox .row {
    margin-bottom: 0
}

.bootbox .smart-form fieldset,
.bootbox fieldset {
    padding: 0;
    margin-bottom: 0
}

.fancybox-slide .proudct {
    max-width: 1000px
}

.smart-form label {
    font-weight: 400
}

.snippets_html .p_info {
    display: none
}

.snippets_html .col-sm-3:hover .p_info {
    display: block
}

.dropzone_edit {
    box-sizing: border-box;
    height: 100%;
    background-color: #fafcfd;
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.03) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.03) 50%, rgba(0, 0, 0, 0.03) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));
    background-size: 16px 16px;
}

.dropzone_edit a i {
    background-color: #ffffff;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    color: #666666;
    font-size: 30px;
    height: 50px;
    left: 50%;
    line-height: 50px !important;
    margin: -20px -25px -22px;
    padding-left: 10px;
    position: absolute;
    top: 40%;
    transition: all 0.3s ease 0s;
    width: 50px;
}

.dropzone_edit a {
    box-sizing: border-box;
    display: block;
    height: 100%;
    min-height: 128px;
}

.dropzone_edit .thumbnail {
    background-color: transparent
}



.loadConfigCat {
    background-color: #64BF06;
    border-radius: 4px 0 0 4px;
    color: #ffffff;
    font-size: 1.9em;
    padding: 5px 0;
    position: fixed;
    right: 0;
    text-align: center;
    top: 5px;
    transition: all 300ms ease 0s;
    width: 60px;
    z-index: 1001;
}

.call-button-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    will-change: transform;
    z-index: 1030;
}

@media screen and (min-width: 768px) {
    .call-button-container {
        display: none;
    }
}

.call-button {
    display: block;
    margin: 10px;
    background-color: #ee501b;
    color: #ffffff;
    padding: 5px;
    text-align: center;
}

.call-button:hover {
    color: #ffffff;
    text-decoration: none;
}

.call-button_icon {
    font-size: 36px;
    vertical-align: middle;
    margin-right: 10px;
}

.call-button_text {
    display: inline-block;
    vertical-align: middle;
    font-size: 12px;
}

#popup_message .row {
    margin-left: 0;
    margin-right: 0;
    margin-top: 5px
}

.form-agreement-yes {
    font-weight: 400;
    font-size: 80% !important;
    display: block;
    position: relative;
}

/*link*/
.link-red {
    font-size: 13px;
    font-weight: 400;
}

.link-red span {
    text-transform: lowercase;
}

.link-red:hover {
    color: #1d2029;
}

.link-black {
    color: #1d2029;
    font-size: 13px;
    font-weight: 400;
}

/*BTN*/
.btn-red {
    color: #FFF;
    transition: background-color ease 0.3s;
    font-weight: 600;
    font-size: 13px;
    padding: 10px 20px;
    display: inline-block;
}

.btn-red:hover,
.btn-red:focus {
    background-color: #FFF !important;
    border: 1px solid;
    padding: 9px 19px;
    transition: background-color ease 0.3s;
}

.btn-red-r {
    display: inline-block;
    background-color: #FFF;
    /*color: #d9002a;*/
    border: 1px solid
        /*#d9002a*/
    ;
    padding: 9px 19px;
    font-weight: 600;
    font-size: 13px;
    transition: background-color ease 0.3s;
}

.btn-red-r:hover,
.btn-red-r:focus {
    color: #FFF;
    /*background: #d9002a;*/
    padding: 9px 19px;
    transition: background-color ease 0.3s;
}

.btn[disabled] {
    opacity: 1;
    background-color: #f5f5f5;
}

/*checkbox*/
.checkbox i {
    width: 15px;
    height: 15px;
    border-radius: 2px;
    border: 1px solid #ddd;
}

/*Input radio*/
/*input[type="radio"]:after {content: '';border-color: #86AF49;}*/
.isVisibl {
    display: none;
}

/*basket*/
.basket-wrap {
    position: fixed;
    right: 0;
    top: 35%;
    padding: 0;
    margin: 0;
    z-index: 1000;
    transition: .5s all;
}

.basket-wrap.basket-open {
    right: 375px;
}

.basket-wrap li {
    float: none;
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #424f60;
    position: relative;
    margin-left: 0 !important;
}

.basket-wrap li:hover {
    background: #5e6978;
}

.basket-wrap li:after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    background: #e7edf2;
    opacity: 0.2;
}

.basket-wrap>li>a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.basket-wrap li a span {
    width: 17px;
    height: 17px;
    vertical-align: middle;
    line-height: 17px;
    padding: 0;
    border-radius: 50%;
}

.basket-wrap li a .fa {
    font-size: 20px;
    color: #fff;
    position: relative;
}

.basket-wrap a.deleteItemFromCart .fa {
    font-size: 15px;
}

.basket-wrap li.quick-cart a.deleteItemFromCart {
    padding: 0 3px;
    border-bottom: 0;
}

@media only screen and (max-width: 500px) {
    .basket-wrap {
        position: relative;
        top: 0;
        display: flex;
        justify-content: space-between;
    }

    .basket-wrap li {
        width: 100%;
    }

    .basket-wrap li:after {
        content: '';
        display: block;
        width: 1px;
        height: 100%;
        position: absolute;
        right: 0;
        background: #e7edf2;
        opacity: 0.2;
    }

    li.quick-cart .quick-cart-box_smarty {
        display: none;
    }
}

/*subscribtion*/
#subscribtion_form {
    margin-bottom: 0;
}

.subscribtion {
    padding: 14px 19px 21px;
    border: 1px solid #eaebec;
    border-bottom: 3px solid;
    margin-bottom: 30px;
}

.subscribtion p {
    font-size: 16px;
    font-weight: 500;
    color: #1d2029;
    margin: 0px 0px 8px;
}

.subscribtion .input-group {
    margin-bottom: 12px;
    width: 100%;
}

.subscribtion .input-group input {
    background: #fff;
    font-size: 14px;
    padding: 5px 43px 5px 13px;
    height: auto;
}

.subscribtion .input-group .fa {
    color: #fff;
}

.subscribtion .input-group .input-group-btn {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 45px;
    z-index: 5;
}

.subscribtion .input-group .input-group-btn .subscribtion-btn {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*info-bar*/
.info-bar p {
    font-size: 13px;
    color: #555555;
}

/*news side-bar*/
.news {
    border: 1px solid #eaebec;
    border-radius: 2px;
    padding: 10px 20px 20px;
    margin-bottom: 30px;
    border-bottom: 3px solid;
}

.news .navbar-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.news .navbar-header::before,
.news .navbar-header::after {
    display: none;
}

.news .title-block {
    font-size: 16px;
    color: #1d2029;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
}

.b-news {
    padding: 0;
    margin: 0;
}

.b-news .news-items {
    margin-bottom: 20px;
}

.b-news .news-items:last-child {
    margin-bottom: 0;
}

.b-news .news-items .news-wrap {
    border-bottom: 1px solid #ebeef1;
    padding-bottom: 20px;
}

.b-news .news-items:last-child .news-wrap {
    border: 0;
}

.b-news .news-items .news-wrap span {
    display: block;
    color: #888888;
    font-size: 13px;
}

.b-news .news-items .news-wrap .news-link {
    color: #1d2029;
    font-size: 13px;
    font-weight: 600;
}

.b-news .news-items .news-wrap .news-link:hover {
    color: #c50026;
}

/*Shop Cards*/
.shop-item-list.list>li {
    -ms-flex-preferred-size: 0;
    flex-basis: 0 !important;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1 !important;
    flex: 100% !important;
    max-width: 100% !important;
}

.shop-item-list {
    padding-bottom: 10px;
}

.shop-item {
    border: 1px solid #eaebec;
    margin-bottom: 5px;
    position: relative;
}

.shop-item:hover {
    width: 100%;
    /*position: relative;*/
    /*height:400px;*/
    z-index: 10;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
    -webkit-transition: box-shadow ease-out 0.2s, border ease-out 0.2s;
    -moz-transition: box-shadow ease-out 0.2s, border ease-out 0.2s;
    -o-transition: box-shadow ease-out 0.2s, border ease-out 0.2s;
    transition: box-shadow ease-out 0.2s, border ease-out 0.2s;
}

.shop-item .shop-item-wrap {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    width: 100%;
    background: #fff;
    padding: 16px;
}

.shop-item-buttons {
    margin-top: auto;
}

.shop-item .thumbnail {
    padding: 0;
    margin-bottom: 10px;
    border: 0;
}

.shop-item .shop-item-info {
    position: absolute;
    top: 10px;
    left: 0;
    display: flex;
    flex-direction: column;
}

.shop-item .shop-item-info span {
    margin-bottom: 5px;
    border-radius: 0;
    position: relative;
    padding: 0 5px;
    text-align: center;
}

.shop-item-info .sticker-recommend {
    background-color: #893ca9;
}

.shop-item-info .sticker-new {
    background-color: #4fad00;
}

.shop-item-info .stiker-stok {
    background-color: #ffc438;
    color: #333;
}

.shop-item .shop-option-over {
    position: absolute;
    top: 10px;
    right: 3px;
    flex-direction: column;
    display: none;
}

.shop-item:hover .shop-option-over {
    display: flex;
    transition: background-color ease 0.1s;
}

.shop-item .shop-option-over .btn {
    height: auto;
    padding: 3px;
    margin-bottom: 3px;
    border-radius: 2px;
    color: #999999;
    line-height: 1.3;
    border: none !important;
}

.shop-item .shop-option-over .btn:hover {
    background-color: #E3E3E3;
    color: #111;
}

.shop-item .shop-option-over .btn.btn-success {
    background-color: #c50026;
}

.shop-item .shop-option-over .btn.btn-success .fa {
    color: #fff;
}

.shop-item-summary .h2-title {
    color: #1d2029;
    font-size: 14px;
}

.shop-item-summary .h2-title:hover {
    color: #c50026;
    font-size: 14px;
}

.shop-item-summary .h2-title a {
    color: #1d2029;
    font-weight: 600;
}

.shop-item .shop-item-buttons form {
    display: flex;
    justify-content: space-between;
    opacity: 1;
    -webkit-transition: all .1s ease;
    -moz-transition: all .1s ease;
    transition: all .1s ease;
}

.shop-item-buttons form {
    margin-bottom: 0;
}

.shop-item-buttons table {
    display: none
}
.shop-item {
    margin-bottom: 30px;
    position: relative;
    width: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}

.shop-item.shop-list .shop-item-buttons {
    display: flex;
    opacity: 1;
    justify-content: flex-start;
}

@media only screen and (max-width: 992px) {
    .shop-item .shop-option-over {
        display: flex;
    }

    .shop-item .shop-item-buttons form {
        display: flex;
        opacity: 1;
        justify-content: space-between;
    }
}

@media only screen and (max-width: 450px) {
    .shop-item {
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 767px) {
    .shop-item .shop-item-buttons form {
        width: 100%;
    }
}

/*Shop List*/
@media only screen and (min-width: 992px) {
    .shop-list .shop-item-wrap {
        -webkit-flex-direction: row;
        -moz-flex-direction: row;
        -ms-flex-direction: row;
        -o-flex-direction: row;
        flex-direction: row;
        -ms-align-items: center;
        align-items: center;
    }

    .shop-list .thumbnail {
        margin: 0;
        width: 20%;
    }

    .shop-list .shop-item-summary {
        padding: 0 20px;
        margin: 0;
        width: 60%;
        text-align: left !important;
    }

    .shop-list .shop-item-buttons {
        margin: 0;
        width: 20%;
    }
}

/*Actions*/
.b-action {
    margin-bottom: 10px;
}

.b-action .thumbnail {
    padding: 0;
}

.b-action .thumbnail:hover {
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
}

.b-action .thumbnail img {
    width: 100% !important;
    height: 150px;
    object-fit: cover;
}

.b-action .thumbnail .caption {
    display: flex;
    flex-direction: column;
    padding: 15px 15px 10px;
}

.b-action .thumbnail .action-date {
    line-height: 18px;
    font-size: 11px;
    color: #666;
}

.b-action .thumbnail .action-link {
    font-size: 14px;
}

/*Footer menu*/
#footer .nav-list-main {}

#footer .nav-list-main li {
    padding: 2px 0;
}

#footer .nav-list-main>li>a {
    color: #1d2029;
    font-size: 13px;
    font-weight: 400;
    padding: 0;
    display: inline-block;
    background: none;
}

/*feedback form*/
.feedback-wrap .form-control {
    background: #f7f7f7;
    border: 1px solid #eaebec;
    border-radius: 2px;
    box-shadow: none;
    color: #383838;
    height: auto;
    font-size: 13px;
    padding: 8px 13px 7px;
    width: 100%;
}

.feedback-wrap textarea.form-control {
    min-height: 140px;
}

/*brands*/
.brands {
    margin: 20px 0;
}

.brands .brands-img {
    transition: all ease .5s;
    filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
    -moz-opacity: 0.5;
    -khtml-opacity: 0.5;
    opacity: 0.5;
    filter: gray;
    -webkit-filter: grayscale(100%);
    max-width: 120px;
}

.brands .brands-img:hover {
    khtml-opacity: 1;
    opacity: 1;
    filter: none;
    -webkit-filter: grayscale(0%);
}

/*-----------------------*/
.w-brands-img {
    transition: box-shadow ease 0.2s;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.w-brands-img:hover {
    box-shadow: 0px 0px 0px 1px #eaebec;
}

.w-brands-img img {
    max-width: 150px;
    height: auto;
}

/*Category item*/
.category-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
}

.category-item img {
    width: 100% !important;
}

.category-item:hover {
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
    -webkit-transition: box-shadow ease-out 0.2s, border ease-out 0.2s;
    -moz-transition: box-shadow ease-out 0.2s, border ease-out 0.2s;
    -o-transition: box-shadow ease-out 0.2s, border ease-out 0.2s;
    transition: box-shadow ease-out 0.2s, border ease-out 0.2s;
}

.category-item .image-hover {
    flex-basis: 40%;
}

.category-item .shop_cats-wrap {
    flex-basis: 60%;
    padding-left: 1em;
}

.category-item .shop_cats-wrap p {
    padding: 0;
    margin: 0;
}

.category-item .shop_cats-wrap .link-red {
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
}

/*Cards item*/
.wrap-item_catalog {
    border: 1px solid #eaebec;
    margin: 20px 0 30px;
}

.title-product {
    font-size: 36px;
    font-weight: 600;
    line-height: 38px;
    margin-bottom: 25px;
}

@media only screen and (max-width: 767px) {
    .title-product {
        font-size: 28px;
    }
}

.wrap-item_catalog .thumbnail {
    border: 0;
}

#zoom-primary .popupzoom {
    position: absolute;
    bottom: 10px;
    right: 12px;
}
#zoom-primary .popupzoom .svg{
    width: 21px;
    height: 20px;
    fill:#b0b0b0;
}

#zoom-primary .btn-compare {
    top: 50px;
}

#zoom-primary div.tooltip {
    z-index: 100;
}

#form_product .info {
    color: #333333;
}


.presence .product_qty {
    font-size: 12px;
}

/*Order*/
/*Panel-default*/
.panel-default {
    border-radius: 2px;
    border: 1px solid #f3f3f3;
    border-bottom: 3px solid #d40029;
    box-shadow: none;
}

.panel-default .panel-header {
    background: #fbfbfb;
}

.cart_row {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.cart_row .thumbnail {
    border: 0;
}

.cart-name .product-name {
    display: flex;
    justify-content: space-between;
    padding: 7px 0;
}

.panel-default .number-spinner {
    margin-right: 0;
}

.info-cart-wrp>div {
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 992px) {
    .cart_row {
        display: block;
    }
}

@media only screen and (max-width: 769px) {
    .item-num {
        text-align: right;
    }
}

.form-horizontal .form-group {
    margin-right: 0;
    margin-left: 0;
    max-width: 700px;
}

.form-horizontal .control-label {
    text-align: left;
    font-size: 13px;
    margin-bottom: 2px;
    line-height: 20px;
    font-weight: 500;
    padding-top: 5px;
}

/*services*/
.wrap-services {
    border: rgba(0, 0, 0, 0.1) 1px solid;
    margin: 15px 0 25px;
    border-top: 2px solid #de002b;
    background: #fbfbfb;
}

.wrap-services .small {
    margin-left: 27px;
}

/*comment*/
.wrap-comment {
    margin: 15px 0;
}

/*Illustration v3
------------------------------------*/
/*shop-tree-img*/
.shop-tree-img {
    margin-bottom: 30px;
}

.shop-tree-item {
    margin-bottom: 2px;
    position: relative;
    padding-left: 1px;
    padding-right: 1px;
}

/*Illustration v3*/
.illustration-v3 {
    display: block;
    overflow: hidden;
    max-height: 250px;
    background-size: cover;
    background-position: center center;
}

.illustration-v3:before {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    content: " ";
    position: absolute;
}

.illustration-v3:hover {
    text-decoration: none;
}

.illustration-v3 .illustration-bg {
    width: 100%;
    display: block;
    max-height: 250px;
    background-clip: padding-box;
}

.illustration-v3 .illustration-ads {
    width: 100%;
    height: 250px;
    overflow: hidden;
    text-align: center;
    display: block;
    vertical-align: middle;
    padding: 15px 20px 20px;
    background-clip: padding-box;
}

/*Illustration Images*/
.illustration-v3.illustration-img {
    transition: all 0.2s ease-in-out;
    border: 1px solid #eaebec;
}

.illustration-v3.illustration-img:hover {
    transform: scale(1.25);
}

.illustration-v3.illustration-img:hover:before {
    background-color: rgba(0, 0, 0, .5);
}

.illustration-v3-category {
    z-index: 1;
    display: inline-block;
    position: absolute;
    left: 15px;
    bottom: 15px;
}

span.product-category {
    color: #fff;
    display: block;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 4px 10px;
    line-height: 1.2;
    vertical-align: middle;
}

span.product-amount {
    color: #ddd;
    font-size: 18px;
}

/*funsy box*/
.fancybox-overlay {
    background: none;
    background-color: rgba(0, 0, 0, .4);
}

.fancybox-wrap .fancybox-skin {
    box-shadow: none !important;
    border-radius: 0;
    background: #fff;
    padding: 15px 35px 35px !important;
}

.fancybox-wrap .fancybox-skin .h3 {
    font-size: 26px;
    font-weight: 500;
    line-height: 18px;
    padding: 20px 35px;
    color: #383838;
}

.fancybox-wrap form {
    margin-bottom: 0;
}

.fancybox-close {
    background-image: none;
    top: 15px;
    right: 15px;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    text-align: center;
    line-height: 20px;
}

.fancybox-close:before {
    content: '\f00d';
    display: block;
    width: 20px;
    height: 20px;
    font-family: FontAwesome;
}

.fancybox-wrap .btn-red-r {
    padding: 9px 16px;
}

/*Filter form*/
#filter_form {}

#filter_form .navbar {
    border: 1px solid #eaebec;
    border-bottom: 3px solid;
    margin-bottom: 30px;
    border-radius: 0px;
}

#filter_form .navbar-collapse {
    padding: 0 !important;
}

#filter_form .navbar-toggle {
    margin: 0;
}

#filter_form .h4 {
    margin-bottom: 0 !important;
    line-height: 1.3;
}

#filter_form .navbar-header.block {
    padding: 10px 19px 10px;
}

#filter_form .block {
    padding: 14px 19px 21px;
    border-bottom: 1px solid #eaebec;
    background: #f9f9f9;
}

#filter_form .block:hover {
    background: #fdfdfd;
}

/*Shop item lasted*/
.last-view .last-view-item {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    margin: 5px 5px;
    padding: 20px 12px 10px;
    border: 1px solid #eaebec;
    border-radius: 4px;
    transition: box-shadow ease-out 0.2s, border ease-out 0.2s;
}

.last-view .last-view-item:hover {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
}

.last-view .last-view-item .thumbnail {
    border: 0;
    margin: 0;
}

.last-view .last-view-item .thumbnail img {
    max-width: 120px;
    width: 100%;
    height: auto;
}

.last-view .last-view-item .view-item-title {
    line-height: 18px;
    font-weight: 600;
    font-size: 13px;
    transition: color ease-out 0.02s;
    display: block;
    text-align: center;
    min-height: 36px;
}

.last-view .last-view-item .view-item-title:hover {
    color: #333;
}

.last-view .last-view-item .view-item-price {
    font-size: 14px;
    font-weight: 600;
    margin: 8px auto 2px;
    color: #1d2029;
}

.header-slider .owl-item img {
    width: 100%;
}

/*404*/
.er-404 img {
    background: #cf0036;
}

/*products*/
#info_vars .last-view-item {
    height: auto;
    min-height: 200px;
}

#info_vars .last-view-item.active {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15) !important;
}

/*Collections*/
.collections .shop-item {
    height: 370px;
}

.collections .shop-item .content_price {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 20px;
}

.collections .shop-item form {
    margin-bottom: 0;
}

.collections .shop-item .shop-item-buttons {
    display: flex;
    justify-content: space-between;
}

.collections .shop-item .value {
    color: #d9002a;
    margin-bottom: 15px;
    display: block;
}

.collections .content_price .fa {
    font-size: 20px;
    margin-left: 5px;
}

/*funsy box*/
.fancybox-overlay {
    background: none;
    background-color: rgba(0, 0, 0, .4);
}

.fancybox-slider-wrap .fancybox-slider {
    box-shadow: none !important;
    border-radius: 0;
    /*background: #fff;*/
    padding: 15px 35px 35px !important;
}

.fancybox-slider-wrap .h3 {
    font-size: 26px;
    padding: 15px 20px;
}

.fancybox-slider-wrap form {
    margin-bottom: 0;
}

.fancybox-close-small {
    background-image: none;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    text-align: center;
    line-height: 20px;
}