/*
 * Base
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
body {
    font-family: 'Open Sans', sans-serif;
    color: #555555;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans', sans-serif;
    color: #292929;
    font-weight: 600;
}

a, button, .button, .icon {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}


/*
 * Header
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#site-header {
    padding: 0;
    position: relative;
    z-index: 999;
      background-color: white;
  -webkit-box-shadow: 0 1px 0 0 rgba(0,0,0,0.1);
  box-shadow: 0 1px 0 0 rgba(0,0,0,0.1);
  font-size: 14px;
  display: block;
  max-width: 100%;
}
#site-header:before {
  width: 100%;
  height: 2px;
  display: block;
  content: '';
  background: #1991eb;
}
.is-sticky #site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
}

#site-header .container {
    position: relative !important;
}


/*
 * Logo
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.site-title {
    margin: 5px 0 0;
    padding: 0;
}

    .site-title a {
        display: block;
    }

    .site-title img {
        vertical-align: top !important;
    }

.is-sticky .site-title {
    margin-top: 12px;
}

.section.light .site-title a {
    color: #292929;
}

.section.complex .site-title a,
.section.dark .site-title a {
    color: #FFFFFF;
}


/*
 * Site nav
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#site-nav {
}

    #site-nav > ul > li > a {
        color: #292929;
        display: block;
        padding: 18px 20px;
        font-weight: 600;
        text-transform: uppercase;
        -webkit-transition-property: color, background;
        transition-property: color, background;
    }

        #site-nav > ul > li > a:hover {
            color: #3498DB;
        }

.section.dark #site-nav > ul > li > a {
    color: #FFFFFF;
}

.is-sticky #site-nav > ul > li > a {
    padding-top: 20px;
    padding-bottom: 20px;
}

#site-nav > ul > li.over > a {
    background-color: rgba(32, 32, 32, 0.95);
    color: #FFFFFF;
}

#site-nav .fa {
    width: 20px;
    font-size: 14px;
    vertical-align: -5%;
}

#site-nav ul ul {
    background-color: #FFFFFF;
    background-color: rgba(32, 32, 32, 0.95);
    padding: 10px 20px;
    border-radius: 0 0 2px 2px;
}

#site-nav .mega-menu > ul {
    padding: 25px 0;
}

    #site-nav .mega-menu > ul > li {
        border-right: 1px solid rgba(255, 255, 255, 0.05);
    }

        #site-nav .mega-menu > ul > li:last-child {
            border-right: none;
        }

#site-nav .mega-menu ul ul {
    background-color: transparent;
    padding: 0 20px;
}

#site-nav .mega-menu > ul > li > a {
    color: #FFFFFF;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0 20px 8px;
}

#site-nav .mega-menu.full > ul {
    margin-left: 0;
}

    #site-nav .mega-menu.full > ul ul {
        padding: 0 30px;
    }

    #site-nav .mega-menu.full > ul > li > a {
        padding: 5px 30px 8px;
    }

#site-nav ul ul a {
    color: #C2C2C2;
    padding: 4px 0;
}

    #site-nav ul ul a:hover {
        color: #FFFFFF;
    }

#site-nav ul ul ul {
    margin-top: -5px;
}


/*
 * Mobile menu
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#mobile-menu-trigger {
    float: right;
    display: inline-block;
    width: 32px;
    height: 32px;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 32px;
    text-align: center;
    background-color: #202020;
    margin: 25px 0;
    display: none;
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none;
}

.is-sticky #mobile-menu-trigger {
    margin: 15px 0;
}

#mobile-menu {
    display: none;
    background-color: #202020;
    text-align: left;
}

.slicknav_menu {
    width: 100%;
    position: relative;
}

    .slicknav_menu .slicknav_btn {
        display: none;
    }

.slicknav_nav,
.slicknav_nav ul,
.slicknav_nav li {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .slicknav_nav li a {
        color: #C2C2C2;
        display: block;
        padding: 10px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .slicknav_nav .slicknav_item a {
        display: inline;
        padding: 0;
        border: none;
    }

    .slicknav_nav li a:hover {
        color: #FFFFFF;
        text-decoration: none;
    }

    .slicknav_nav .slicknav_parent ul {
        background-color: rgba(255, 255, 255, 0.05);
    }

.slicknav_arrow {
    float: right;
    font-size: 10px;
}


/*
 * Header Social
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#header-social {
    float: right;
    padding: 20px 0;
    margin-left: 20px;
}

.is-sticky #header-social {
    padding: 12px 0;
}


/*
 * Banner
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#banner {
    padding: 0;
}

    #banner .tp-banner > ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }


/*
 * Page title
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.page-title .section-header {
    margin-bottom: 40px;
}

    .page-title .section-header:after {
        display: none;
    }


/*
 * Breadcrumbs
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.breadcrumbs {
    background-color: #3498DB;
    display: inline-block;
    padding: 6px 12px;
}

    .breadcrumbs,
    .breadcrumbs a {
        color: #FFFFFF !important;
    }


/*
 * Entry
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.entry {
    border-bottom: 1px solid #EFEFEF;
    margin: 0 0 30px 0;
    padding: 0 0 12px 0;
    position: relative;
}

    .entry:last-child {
        border: 0;
        padding-bottom: 0;
    }

.single-entry {
    border-bottom: none;
    padding-bottom: 0;
}

.entry-header {
    margin: 0 0 20px;
}

.entry-featured {
    margin: 0 0 25px;
    padding: 5px 0 0;
}

.entry-date {
    font-weight: 600;
    text-transform: uppercase;
}

.light .entry-date {
    color: #3498DB;
}

.entry-title {
    font-size: 1.846em;
    margin: 10px 0 10px;
}

.light .entry-title a {
    color: #292929;
}

    .light .entry-title a:hover {
        color: #3498DB;
        text-decoration: none;
    }

.light .entry-meta {
    color: #9A9A9A;
}

    .light .entry-meta a {
        color: #555555;
    }

        .light .entry-meta a:hover {
            color: #3486BC;
        }

.entry-content {
    margin-bottom: 20px;
}

.entry-more-link {
    padding: 5px 0 0;
}


/*
 * Page entry
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.page-entry {
}


/*
 * Masonry entry
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.masonry-entries {
    margin-bottom: -10px;
}

    .masonry-entries .entry {
        margin-bottom: 30px;
    }

        .masonry-entries .entry .entry-header {
            margin: 0 0 15px;
            padding: 20px 0 0;
        }

        .masonry-entries .entry .entry-title {
            font-size: 18px;
        }

.light .masonry-entries .entry .entry-title a {
    color: #292929;
}

    .light .masonry-entries .entry .entry-title a:hover {
        color: #3486BC;
        text-decoration: none;
    }

.masonry-entries .entry .entry-meta {
    font-size: 0.923em;
}

    .masonry-entries .entry .entry-meta .fa {
        font-size: 14px;
        margin-right: 3px;
    }

.masonry-entries .entry .entry-featured {
    margin: 0;
}

.masonry-entries .entry .entry-summary {
    margin: 0 0 25px;
    padding: 0 0;
}

.masonry-entries .entry .entry-footer {
    border-top: 1px solid #EFEFEF;
    overflow: hidden;
    padding: 10px 0 0;
}

.masonry-entries .entry .entry-date {
    font-size: 12px;
}


/*
 * Comments
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#comments {
    border-bottom: 1px solid #EFEFEF;
    margin: 0 0 20px;
    padding: 10px 0;
}

    #comments .comment-list,
    #comments .children {
        list-style: none;
        margin: 10px 0;
        padding: 0;
    }

    #comments .comment {
        margin-bottom: 20px;
        padding: 0 0 0 100px;
        position: relative;
    }

    #comments .comment-body {
        border-top: 1px solid #EFEFEF;
        padding: 20px 0 0;
    }

    #comments .comment:first-child .comment-body {
        border: 0;
        padding: 20px 0 0;
    }

    #comments .comment-content {
    }

        #comments .comment-content .reply {
        }

    #comments .comment-meta {
        margin-bottom: 12px;
    }

    #comments .comment-author {
        margin-bottom: 2px;
    }

        #comments .comment-author img {
            position: absolute;
            left: 0;
            top: 23px;
            width: 80px;
            height: 80px;
        }

        #comments .comment-author .fn {
            color: #292929;
            font-size: 14px;
            font-weight: 600;
        }

        #comments .comment-author .says {
        }

    #comments .comment-metadata {
        color: #9A9A9A;
        font-size: 0.846em;
    }

    /* Children */
    #comments .children {
        border-top: 1px solid #EFEFEF;
        margin: 20px 0;
    }

        #comments .children .comment {
            padding-left: 68px;
        }

        #comments .children .comment-author img {
            width: 48px;
            height: 48px;
        }


/*
 * Comment Form
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#respond {
    padding: 20px 0 0;
    margin: 0;
}


/*
 * Pagenavi
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.pagenavi {
    margin: 0 0 25px;
    padding: 20px 0 0;
}

    .pagenavi a,
    .pagenavi span {
        background-color: #FFFFFF;
        border: 1px solid #EFEFEF;
        color: #555555;
        display: inline-block;
        font-weight: 600;
        padding: 5px 9px;
        text-align: center;
        min-width: 12px;
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        -ms-border-radius: 2px;
        -o-border-radius: 2px;
        border-radius: 2px;
    }

.dark .pagenavi a,
.complex .pagenavi a,
.dark .pagenavi span,
.complex .pagenavi span {
    background-color: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pagenavi a:hover,
.pagenavi span.current {
    background-color: #3498DB;
    border-color: #3498DB;
    color: #FFFFFF;
    text-decoration: none;
}


/*
 * Project filter
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.project-filter {
    margin: 0 0 30px;
}

    .project-filter li {
        margin-right: 20px;
    }

    .project-filter a {
        font-weight: 600;
        text-transform: uppercase;
    }

.light .project-filter a {
    color: #292929;
}

    .light .project-filter .active a,
    .light .project-filter a:hover {
        color: #3498DB;
    }

.dark .project-filter .active a {
    color: #FFFFFF;
}


/*
 * Project items
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.projects {
    overflow: hidden;
    margin-bottom: -10px;
}

.project {
    margin-bottom: 30px;
}

    .project .project-thumb {
        margin: 0 0 15px;
        overflow: hidden;
        position: relative;
    }

        .project .project-thumb figcaption {
            background-color: #3498DB;
            position: absolute;
            width: 100%;
            height: 100%;
            text-align: center;
        }

            .project .project-thumb figcaption .icon {
                background-color: transparent;
                border-color: #FFFFFF;
                border-width: 2px;
                color: #FFFFFF;
            }

                .project .project-thumb figcaption .icon:hover {
                    background-color: #FFFFFF;
                    border-color: #FFFFFF;
                    color: #3498DB;
                }

    .project .project-title {
        margin: 0 0 2px;
    }

.light .project .project-title a {
    color: #292929;
}

    .light .project .project-title a:hover {
        color: #3486BC;
    }


/*
 * Single project
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.single-project {
    /*margin-bottom: 20px;*/
}

.project-images {
    margin-bottom: 24px;
}

    .project-images.fullwidth {
        margin-bottom: 40px;
    }

.project-summary {
    margin: 0 0 35px;
}

.project-tools {
    margin: 0 0 40px;
}

#related-projects {
    padding: 10px 0 0;
}

    #related-projects .projects {
        padding-top: 10px;
    }

#project-nav {
    margin: 30px 0;
    line-height: 33px;
}

    #project-nav div > span {
        color: #292929;
        font-size: 14px;
        font-weight: 600;
    }

    #project-nav .prev .icon {
        float: left;
        margin-right: 10px;
    }

    #project-nav .next .icon {
        float: right;
        margin-left: 10px;
    }


/*
 * Image slider
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.image-slider {
    position: relative;
    margin: 0 0 20px;
}

    .image-slider ul,
    .image-slider li {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .image-slider .bx-controls-direction a {
        background: rgba(32, 32, 32, 0.5);
        border-radius: 2px;
        color: #FFFFFF;
        display: block;
        font-size: 28px;
        width: 48px;
        height: 48px;
        line-height: 44px;
        position: absolute;
        top: 50%;
        margin-top: -24px;
        text-align: center;
        filter: Alpha(Opacity=0);
        opacity: 0;
        -webkit-backface-visibility: hidden;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }

    .image-slider:hover .bx-controls-direction a {
        filter: Alpha(Opacity=100);
        opacity: 1;
    }

    .image-slider .bx-controls-direction .bx-prev {
        left: 20px;
    }

    .image-slider .bx-controls-direction .bx-next {
        right: 20px;
    }


/*
 * Iconbox
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.iconboxes {
    margin-bottom: -10px;
}

.iconbox {
    margin-bottom: 30px;
}

    .iconbox.text-left .icon {
        float: left;
    }

    .iconbox.text-left .iconbox-content {
        margin-left: 52px;
    }

    .iconbox.text-left .icon.small + .iconbox-content {
        margin-left: 40px;
    }

    .iconbox.text-left .icon.medium + .iconbox-content {
        margin-left: 68px;
    }

    .iconbox.text-left .icon.large + .iconbox-content {
        margin-left: 84px;
    }

    .iconbox.text-left .icon.big + .iconbox-content {
        margin-left: 100px;
    }

    .iconbox.text-left .icon.huge + .iconbox-content {
        margin-left: 116px;
    }

    .iconbox.text-center .icon {
        margin-bottom: 20px;
    }

    .iconbox.text-right .icon {
        float: right;
    }

        .iconbox.text-right .icon.small + .iconbox-content {
            margin-right: 44px;
        }

        .iconbox.text-right .icon.medium + .iconbox-content {
            margin-right: 68px;
        }

        .iconbox.text-right .icon.large + .iconbox-content {
            margin-right: 84px;
        }

        .iconbox.text-right .icon.big + .iconbox-content {
            margin-right: 100px;
        }

        .iconbox.text-right .icon.huge + .iconbox-content {
            margin-right: 116px;
        }

    .iconbox .title {
        margin: 0 0 10px;
        padding: 0;
    }

    .iconbox p {
        margin-bottom: 15px;
    }


/*
 * Staff
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.staff {
    margin-bottom: -10px;
}

.member {
    margin-bottom: 30px;
    text-align: center;
}

    .member > a {
        display: inline-block;
        position: relative;
        width: 150px;
        border-radius: 50%;
        margin: 0 0 15px;
    }

    .member img {
        width: 100%;
        border-radius: 50%;
    }

    .member figcaption h4 {
        margin: 0 0 2px;
    }

    .member .bubble {
        position: absolute;
        top: 0;
        right: 0;
    }


/*
 * Quote rotator
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.quote-rotator {
    position: relative;
    margin-bottom: 20px;
    padding-top: 53px;
}

    .quote-rotator:before {
        content: '\f10e';
        color: #292929;
        display: block;
        font-family: 'FontAwesome';
        width: 28px;
        height: 28px;
        font-size: 28px;
        line-height: 28px;
        position: absolute;
        text-align: center;
        position: absolute;
        top: 5px;
        left: 50%;
        margin-left: -14px;
        -webkit-backface-visibility: hidden;
    }

.dark .quote-rotator:before,
.complex .quote-rotator:before {
    color: #FFFFFF;
}

.quote-rotator .bx-wrapper {
    position: relative;
}

.quote-rotator .bxslider {
}

.quote-rotator .bx-viewport {
}

.quote-rotator .quote {
    border: 0;
    padding: 0;
    margin: 0;
}

.quote-rotator .quote-text {
    color: #292929;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3em;
}

.dark .quote-rotator .quote-text,
.complex .quote-rotator .quote-text {
    color: #FFFFFF;
}

.quote-rotator .quote cite {
    font-size: 14px;
    font-weight: 600;
}

    .quote-rotator .quote cite span {
        font-weight: 300;
    }

    .quote-rotator .quote cite:before {
        content: '';
        display: none;
    }

.quote-rotator .bx-pager {
    text-align: center;
    margin: 30px 0 0;
    line-height: 12px;
}

    .quote-rotator .bx-pager div {
        display: inline-block;
        margin: 0 2px;
    }

    .quote-rotator .bx-pager a {
        background: #555555;
        display: block;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        text-indent: -9999em;
        filter: Alpha(Opacity=30);
        opacity: 0.3;
    }

        .quote-rotator .bx-pager a.active {
            filter: Alpha(Opacity=100);
            opacity: 1;
        }

.complex .quote-rotator .bx-pager a,
.dark .quote-rotator .bx-pager a {
    background: #FFFFFF;
}

.quote-rotator .bx-controls-direction a {
    color: #555555;
    display: block;
    font-size: 48px;
    width: 48px;
    height: 48px;
    position: absolute;
    top: 50%;
    margin-top: -63px;
    text-align: center;
    filter: Alpha(Opacity=0);
    opacity: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.quote-rotator:hover .bx-controls-direction a {
    filter: Alpha(Opacity=100);
    opacity: 1;
}

.quote-rotator .bx-controls-direction .bx-prev {
    left: -48px;
}

.quote-rotator .bx-controls-direction .bx-next {
    right: -48px;
}


/*
 * Testimonial
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.testimonial {
    background: none;
    border: none;
    padding: 0;
}

    .testimonial p {
        background-color: #F7F7F7;
        border: 1px solid #EFEFEF;
        position: relative;
        padding: 20px;
        margin: 0 0 20px;
    }

        .testimonial p:after {
            background-color: #F7F7F7;
            border: 1px solid;
            border-color: transparent #EFEFEF #EFEFEF transparent;
            display: block;
            content: '';
            width: 16px;
            height: 16px;
            position: absolute;
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
            bottom: -8px;
            left: 20px;
        }

.dark .testimonial p,
.dark .testimonial p:after,
.complex .testimonial p,
.complex .testimonial p:after {
    background-color: #FFFFFF;
}

.testimonial cite:before {
    display: none;
    content: '';
}

.testimonial cite img {
    width: 24px;
    height: 24px;
}


/*
 * Clients
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.clients {
    text-align: center;
    margin-bottom: -5px;
}

.client {
    margin-bottom: 30px;
    -webkit-backface-visibility: hidden;
}

    .client a {
        display: block;
    }

    .client img {
        -webkit-filter: grayscale(100%);
        -moz-filter: grayscale(100%);
        -ms-filter: grayscale(100%);
        -o-filter: grayscale(100%);
        filter: grayscale(100%);
        filter: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgogPGZpbHRlciBpZD0iZ3JheXNjYWxlIj4KICA8ZmVDb2xvck1hdHJpeCB0eXBlPSJtYXRyaXgiIHZhbHVlcz0iMC4zMzMzIDAuMzMzMyAwLjMzMzMgMCAwIDAuMzMzMyAwLjMzMzMgMC4zMzMzIDAgMCAwLjMzMzMgMC4zMzMzIDAuMzMzMyAwIDAgMCAwIDAgMSAwIj48L2ZlQ29sb3JNYXRyaXg+CiA8L2ZpbHRlcj4KPC9zdmc+#grayscale");
        filter: gray;
    }

        .client img:hover {
            -webkit-filter: none;
            -moz-filter: none;
            -ms-filter: none;
            -o-filter: none;
            filter: none;
        }


/*
 * Callout
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.callout {
    display: table;
    width: 100%;
    margin-bottom: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

    .callout.boxed {
        background-color: #F7F7F7;
        padding: 20px 30px;
    }

.dark .callout.boxed {
    background-color: rgba(0, 0, 0, 0.08);
}

.callout > div {
    display: table-cell;
    vertical-align: middle;
}

.callout-text h1,
.callout-text h2,
.callout-text h3,
.callout-text h4,
.callout-text h5,
.callout-text h6,
.callout-text p {
    margin: 5px 0;
    padding: 0;
}

.callout-button {
    text-align: right;
    -webkit-backface-visibility: hidden;
}


/*
 * Progress bar
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.progress-bar {
    margin: 0 0 20px;
}

    .progress-bar .bar {
        background-color: #EFEFEF;
        height: 10px;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        -ms-border-radius: 4px;
        -o-border-radius: 4px;
        border-radius: 4px;
    }

    .progress-bar .label {
        color: #292929;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .progress-bar .bar div {
        background-color: #3498DB;
        height: 10px;
        width: 0;
        position: relative;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        -ms-border-radius: 4px;
        -o-border-radius: 4px;
        border-radius: 4px;
    }

    .progress-bar.stripped .bar div {
        background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
        background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
        background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
        background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
        background-size: 40px 40px;
    }

    .progress-bar .bar.black div {
        background-color: #686868;
    }

    .progress-bar .bar.green div {
        background-color: #00ACEE;
    }

    .progress-bar .bar.green div {
        background-color: #58B25E;
    }

    .progress-bar .bar.orange div {
        background-color: #EF7B45;
    }

    .progress-bar .bar.purple div {
        background-color: #A085C6;
    }

    .progress-bar .bar.red div {
        background-color: #F35958;
    }

    .progress-bar .bar.yellow div {
        background-color: #FBAD2F;
    }

    .progress-bar.animate .bar div {
        -webkit-animation: stripped-bar 2s linear infinite;
        -moz-animation: stripped-bar 2s linear infinite;
        -ms-animation: stripped-bar 2s linear infinite;
        -o-animation: stripped-bar 2s linear infinite;
        animation: stripped-bar 2s linear infinite;
    }

@-webkit-keyframes stripped-bar {
    from {
        background-position: 40px 0;
    }

    to {
        background-position: 0 0;
    }
}

@-moz-keyframes stripped-bar {
    from {
        background-position: 40px 0;
    }

    to {
        background-position: 0 0;
    }
}

@-o-keyframes stripped-bar {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 40px 0;
    }
}

@keyframes stripped-bar {
    from {
        background-position: 40px 0;
    }

    to {
        background-position: 0 0;
    }
}


/*
 * Pie chart
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.pie-chart {
    display: inline-block;
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    max-width: 100%;
}

    .pie-chart canvas {
        max-width: 100%;
    }

    .pie-chart .percent {
        position: absolute;
        width: 100%;
        height: 100%;
        text-align: center;
        font-size: 14px;
        font-weight: 600;
        display: table-cell;
        line-height: 100%;
        vertical-align: middle;
    }

        .pie-chart .percent:before {
            content: '';
            display: inline-block;
            height: 100%;
            vertical-align: middle;
        }

        .pie-chart .percent span {
            display: inline-block;
            position: relative;
            vertical-align: middle;
        }

            .pie-chart .percent span:after {
                content: '%';
            }


/*
 * Stats counter
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.stats {
    margin: 0 0 20px;
    text-align: center;
}

    .stats .number {
        font-size: 36px;
        font-weight: 400;
        line-height: 100%;
        margin: 0 0 8px;
    }

.light .stats .number {
    color: #292929;
}

.dark .stats .number {
    color: #FFFFFF;
}

.stats .label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

    .stats .label .fa {
        font-size: 14px;
        margin-right: 4px;
        vertical-align: -5%;
    }


/*
 * Tabs
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.tabs {
    margin-bottom: 0px;
    padding: 0px 0 0;
}

    .tabs:before,
    .tabs:after {
        display: table;
        content: '';
    }

    .tabs:after {
        clear: both;
    }

    .tabs .tabnav a {
        color: #292929;
        font-weight: 600;
        padding: 10px 20px;
    }

    .tabs .tabnav .fa {
        font-size: 14px;
        width: 18px;
    }

    .tabs .tab {
        display: none;
    }

        .tabs .tab h1:first-child,
        .tabs .tab h2:first-child,
        .tabs .tab h3:first-child,
        .tabs .tab h4:first-child,
        .tabs .tab h5:first-child,
        .tabs .tab h6:first-child {
            padding-top: 0;
        }

    /* Horizontal tabs */
    .tabs.horizontal .tabnav {
        margin-bottom: -1px;
    }

        .tabs.horizontal .tabnav ul {
            display: table;
        }

        .tabs.horizontal .tabnav li {
            display: table-cell !important;
        }

        .tabs.horizontal .tabnav a {
            border: 1px solid transparent;
            border-bottom: none;
            margin-bottom: -1px;
            -webkit-border-radius: 2px 2px 0 0;
            -moz-border-radius: 2px 2px 0 0;
            -ms-border-radius: 2px 2px 0 0;
            -o-border-radius: 2px 2px 0 0;
            border-radius: 2px 2px 0 0;
        }

        .tabs.horizontal .tabnav .active a {
            background-color: #F7F7F7;
            border-color: #EFEFEF;
        }

    .tabs.horizontal .tab {
        background-color: #F7F7F7;
        padding: 25px 20px 8px;
        border: 1px solid #EFEFEF;
        -webkit-border-radius: 0 0 2px 2px;
        -moz-border-radius: 0 0 2px 2px;
        -ms-border-radius: 0 0 2px 2px;
        -o-border-radius: 0 0 2px 2px;
        border-radius: 0 0 2px 2px;
    }

    /* Verical tabs */
    .tabs.vertical .tabnav {
        margin-bottom: 20px;
    }

        .tabs.vertical .tabnav a {
            background-color: #FFFFFF;
            border: 1px solid #EFEFEF;
            margin-bottom: -1px;
            position: relative;
        }

        .tabs.vertical .tabnav li:first-child a {
            border-radius: 3px 0 0 0;
        }

        .tabs.vertical .tabnav li:last-child a {
            border-radius: 0 0 0 3px;
        }

        .tabs.vertical .tabnav a:after {
            border-style: solid;
            border-width: 21px 0 21px 15px;
            border-color: transparent;
            display: block;
            content: '';
            height: 0px;
            position: absolute;
            top: -1px;
            right: -16px;
        }

        .tabs.vertical .tabnav .active a {
            background-color: #3498DB;
            border-color: #3498DB;
            color: #FFFFFF;
        }

            .tabs.vertical .tabnav .active a:after {
                border-left-color: #3498DB;
            }

    .tabs.vertical .tab p:last-child {
        margin-bottom: 0;
    }


/*
 * Accordion
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.accordion {
    padding: 5px 0 0;
    margin-bottom: 25px;
}

.accordion-trigger {
    background-color: #F7F7F7;
    color: #292929;
    font-weight: 600;
    border: 1px solid #EFEFEF;
    margin: 0 0 10px;
    padding: 10px 30px 10px 20px;
    position: relative;
    cursor: pointer;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
}

    .accordion-trigger:after {
        content: '\f105';
        display: block;
        font-family: 'FontAwesome';
        width: 18px;
        height: 18px;
        font-size: 18px;
        line-height: 18px;
        position: absolute;
        right: 15px;
        top: 50%;
        margin-top: -9px;
        text-align: center;
    }

    .accordion-trigger.active {
        cursor: default;
    }

        .accordion-trigger.active:after {
            content: '\f107';
        }

    .accordion-trigger .fa {
        font-size: 14px;
        width: 20px;
    }

.accordion-content {
    display: none;
    margin: 0 0 10px;
    padding: 10px 0 15px;
}

    .accordion-content:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .accordion-content p:last-child {
        margin-bottom: 0;
    }

    .accordion-content.active {
        display: block;
    }


/*
 * Pricing
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.pricing {
}

    .pricing .plan {
        background-color: #FFFFFF;
        border: 1px solid #EFEFEF;
        margin: 0 0 20px;
        position: relative;
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        -ms-border-radius: 2px;
        -o-border-radius: 2px;
        border-radius: 2px;
    }

.collapsed .plan {
    margin-right: -1px;
}

.pricing .plan.recommended {
    border-color: #3498DB;
    border-width: 4px;
    margin-top: -9px;
    z-index: 1;
}

.pricing .plan-header {
    background-color: #F7F7F7;
    border-bottom: 1px solid #EFEFEF;
    padding: 20px;
    -webkit-border-radius: 2px 2px 0 0;
    -moz-border-radius: 2px 2px 0 0;
    -ms-border-radius: 2px 2px 0 0;
    -o-border-radius: 2px 2px 0 0;
    border-radius: 2px 2px 0 0;
}

.pricing .plan.recommended .plan-header {
    padding-top: 25px;
}

.pricing .plan-title {
    margin-bottom: 10px;
}

.pricing .plan-price {
    color: #3498DB;
    font-size: 40px;
    font-weight: 600;
    line-height: 40px;
}

    .pricing .plan-price sup {
        font-size: 18px;
        top: -0.7em;
    }

.pricing .plan-content {
    font-size: 14px;
    padding: 15px 0 0;
}

.pricing .plan-icon {
    display: none;
    margin-bottom: 15px;
}

.pricing .plan-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .pricing .plan-content ul li {
        margin: 0 0 8px;
        padding: 0 20px 8px;
        border-bottom: 1px solid #F3F3F3;
    }

.pricing .plan-footer {
    padding: 10px 20px 20px;
}

.pricing .plan.recommended .plan-footer {
    padding-bottom: 25px;
}


/*
 * Notifications
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.notification {
    background-color: #F7F7F7;
    border: 1px solid #EFEFEF;
    border-radius: 3px;
    padding: 15px 35px 15px 20px;
    margin: 0 0 20px;
    position: relative;
}

    .notification p {
        margin: 0;
    }

    .notification.danger {
        background-color: #F6D1D1;
        border-color: #F1B9B9;
        color: #990000;
    }

    .notification.info {
        background-color: #ECF6FF;
        border-color: #DAECFF;
        color: #236592;
    }

    .notification.warning {
        background-color: #FFF1C7;
        border-color: #FFE8A2;
        color: #A1830A;
    }

    .notification.success {
        background-color: #DAECD1;
        border-color: #C7E3B9;
        color: #1F884B;
    }

    .notification .close {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 14px;
        opacity: 0.5;
        cursor: pointer;
    }

        .notification .close:hover {
            opacity: 1;
            -webkit-transition: all 0.5s ease;
            -moz-transition: all 0.5s ease;
            -o-transition: all 0.5s ease;
            transition: all 0.5s ease;
        }


/*
 * Widget
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.widget {
    margin-bottom: 30px;
}


/*
 * Post list widget
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.post-list {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

    .post-list li {
        margin: 0 0 12px;
    }

        .post-list li:last-child {
            margin-bottom: 0;
        }

    .post-list .details {
        margin: 0 0 0 20px;
        position: relative;
    }

        .post-list .details .title {
            font-weight: 400;
            line-height: 1.5em;
            margin: 0 0 5px;
            padding: 0;
        }

        .post-list .details .meta {
            font-size: 0.846em;
        }

.light .post-list .details .title a {
    color: #555555;
}

    .light .post-list .details .title a:hover {
        color: #3486BC;
    }

.light .post-list .details .meta {
    color: #9A9A9A;
}

.post-list:not(.post-thumb-list) .details:before {
    content: '\f0f6';
    font-family: 'FontAwesome';
    font-size: 14px;
    float: left;
    line-height: 100%;
    position: absolute;
    left: -20px;
    top: 4px;
    -webkit-font-smoothing: antialiased;
}


/*
 * Post list thumbnail
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.post-list.post-thumb-list li {
    margin: 0 0 15px;
}

    .post-list.post-thumb-list li:last-child {
        margin-bottom: 0;
    }

.post-list .thumb {
    width: 64px;
    float: left;
}

    .post-list .thumb img {
        -webkit-border-radius: 1px;
        -moz-border-radius: 1px;
        -ms-border-radius: 1px;
        -o-border-radius: 1px;
        border-radius: 1px;
    }

.post-list.post-thumb-list .details {
    margin: 0 0 0 79px;
}


/*
 * Titter feeds
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.tweets ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .tweets ul li {
        position: relative;
        padding-left: 20px;
        margin: 0 0 12px 0;
    }

        .tweets ul li:before {
            content: '\f099';
            font-family: 'FontAwesome';
            font-size: 14px;
            float: left;
            line-height: 100%;
            position: absolute;
            left: 0;
            top: 3px;
            -webkit-font-smoothing: antialiased;
        }

.tweets .tweet_time {
    display: block;
    font-size: 0.846em;
    margin: 5px 0 0;
}

.light .tweets .tweet_time a {
    color: #9A9A9A;
}

.dark .tweets .tweet_time a {
    color: #A2A5A7;
}


/*
 * Tag cloud widget
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.tags {
    -webkit-backface-visibility: hidden;
}

    .tags a {
        margin: 2px 0.5px;
    }


/*
 * Footer widgets
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#footer-widgets {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

    #footer-widgets .section-content {
        padding-bottom: 30px;
    }


/*
 * Footer bottom
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#footer-bottom {
    padding-top: 30px;
    padding-bottom: 10px;
}


/*
 * Footer nav
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#footer-nav li {
    margin: 0 15px;
}

    #footer-nav li:first-child {
        margin-left: 0;
    }

    #footer-nav li:last-child {
        margin-right: 0;
    }

.light #footer-nav a {
    color: #292929;
}


/*
 * Revolution slider captions
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.tparrows {
    background: rgba(32, 32, 32, 0.75) !important;
    width: 48px !important;
    height: 48px !important;
    color: #FFFFFF;
    line-height: 48px;
    text-align: center;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
}

    .tparrows:before {
        font-family: 'FontAwesome';
        content: '\f053';
    }

.tp-rightarrow:before {
    content: '\f054';
}

.tp-bullets.simplebullets.navbar {
    height: 35px;
    padding: 0px 0px;
}

.tp-bullets.simplebullets .bullet {
    cursor: pointer;
    position: relative !important;
    background: rgba(32, 32, 32, 0.5) !important;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    width: 6px !important;
    height: 6px !important;
    border: 5px solid rgba(32, 32, 32, 0) !important;
    display: inline-block;
    margin-right: 2px !important;
    margin-bottom: 14px !important;
    -webkit-transition: background-color 0.2s, border-color 0.2s;
    -moz-transition: background-color 0.2s, border-color 0.2s;
    -o-transition: background-color 0.2s, border-color 0.2s;
    -ms-transition: background-color 0.2s, border-color 0.2s;
    transition: background-color 0.2s, border-color 0.2s;
    float: none !important;
}

    .tp-bullets.simplebullets .bullet.last {
        margin-right: 0px;
    }

    .tp-bullets.simplebullets .bullet:hover,
    .tp-bullets.simplebullets .bullet.selected {
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 1) !important;
        width: 6px !important;
        height: 6px !important;
        border: 5px solid rgba(32, 32, 32, 1) !important;
    }

/* Large Text */
.tp-caption.large-white {
    color: #FFFFFF;
    font-size: 28px;
    font-weight: 400;
    line-height: 34px;
}

.tp-caption.large-black {
    color: #292929;
    font-size: 28px;
    font-weight: 400;
    line-height: 34px;
}

.tp-caption.large-grey {
    color: #555555;
    font-size: 28px;
    font-weight: 400;
    line-height: 34px;
}

.tp-caption.large-light-white {
    color: #FFFFFF;
    font-size: 28px;
    font-weight: 300;
    line-height: 34px;
}

.tp-caption.large-light-black {
    color: #292929;
    font-size: 28px;
    font-weight: 300;
    line-height: 34px;
}

.tp-caption.large-light-grey {
    color: #555555;
    font-size: 28px;
    font-weight: 300;
    line-height: 34px;
}

.tp-caption.large-medium-white {
    color: #FFFFFF;
    font-size: 28px;
    font-weight: 600;
    line-height: 34px;
}

.tp-caption.large-medium-black {
    color: #292929;
    font-size: 28px;
    font-weight: 600;
    line-height: 34px;
}

.tp-caption.large-medium-grey {
    color: #555555;
    font-size: 28px;
    font-weight: 600;
    line-height: 34px;
}

.tp-caption.large-bold-white {
    color: #FFFFFF;
    font-size: 28px;
    font-weight: 700;
    line-height: 34px;
}

.tp-caption.large-bold-black {
    color: #292929;
    font-size: 28px;
    font-weight: 700;
    line-height: 34px;
}

.tp-caption.large-bold-grey {
    color: #555555;
    font-size: 28px;
    font-weight: 700;
    line-height: 34px;
}

/* Big Text */
.tp-caption.big-white {
    color: #FFFFFF;
    font-size: 40px;
    font-weight: 400;
    line-height: 46px;
}

.tp-caption.big-black {
    color: #292929;
    font-size: 40px;
    font-weight: 400;
    line-height: 46px;
}

.tp-caption.big-grey {
    color: #555555;
    font-size: 40px;
    font-weight: 400;
    line-height: 46px;
}

.tp-caption.big-light-white {
    color: #FFFFFF;
    font-size: 40px;
    font-weight: 300;
    line-height: 46px;
}

.tp-caption.big-light-black {
    color: #292929;
    font-size: 40px;
    font-weight: 300;
    line-height: 46px;
}

.tp-caption.big-light-grey {
    color: #555555;
    font-size: 40px;
    font-weight: 300;
    line-height: 46px;
}

.tp-caption.big-medium-white {
    color: #FFFFFF;
    font-size: 40px;
    font-weight: 600;
    line-height: 46px;
}

.tp-caption.big-medium-black {
    color: #292929;
    font-size: 40px;
    font-weight: 600;
    line-height: 46px;
}

.tp-caption.big-medium-grey {
    color: #555555;
    font-size: 40px;
    font-weight: 600;
    line-height: 46px;
}

.tp-caption.big-bold-white {
    color: #FFFFFF;
    font-size: 40px;
    font-weight: 700;
    line-height: 46px;
}

.tp-caption.big-bold-black {
    color: #292929;
    font-size: 40px;
    font-weight: 700;
    line-height: 46px;
}

.tp-caption.big-bold-grey {
    color: #555555;
    font-size: 40px;
    font-weight: 700;
    line-height: 46px;
}

/* Medium Text */
.tp-caption.medium-white {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}

.tp-caption.medium-black {
    color: #292929;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}

.tp-caption.medium-grey {
    color: #555555;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}

.tp-caption.medium-light-white {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 300;
    line-height: 24px;
}

.tp-caption.medium-light-black {
    color: #292929;
    font-size: 18px;
    font-weight: 300;
    line-height: 24px;
}

.tp-caption.medium-light-grey {
    color: #555555;
    font-size: 18px;
    font-weight: 300;
    line-height: 24px;
}

.tp-caption.medium-medium-white {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
}

.tp-caption.medium-medium-black {
    color: #292929;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
}

.tp-caption.medium-medium-grey {
    color: #555555;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
}

.tp-caption.medium-bold-white {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
}

.tp-caption.medium-bold-black {
    color: #292929;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
}

.tp-caption.medium-bold-grey {
    color: #555555;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
}

/* Normal Text */
.tp-caption.white {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.tp-caption.black {
    color: #292929;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.tp-caption.grey {
    color: #555555;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}


/*
 * 404 Not found
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#notfound {
    padding-top: 100px;
}

    #notfound .section-content {
        padding-bottom: 100px;
    }

        #notfound .section-content h1 {
            font-size: 3.5em;
            margin: 10px 0;
        }

/*
 * Waypoint
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.waypoint {
    opacity: 0;
}

/*
 * Map
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.map {
    min-height: 300px;
    margin-bottom: 20px;
}

    .map img {
        max-width: none;
    }

/*ALERTS*/

.notifypanel {
    padding: 8px 10px 8px 10px;
    margin-bottom: 5px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    background-color: #fcf8e3;
    border: 1px solid #fbeed5;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    vertical-align: middle;
}

.notifypanel, .notifypanel-heading {
    color: #c09853;
}

    .notifypanel .close {
        position: relative;
        top: -2px;
        right: -21px;
        line-height: 18px;
    }

.notifypanel-success {
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

    .notifypanel-success, .notifypanel-success .notifypanel-heading {
        color: #468847;
    }

.notifypanel-danger, .notifypanel-error {
    background-color: #f2dede;
    border-color: #eed3d7;
}

    .notifypanel-danger,
    .notifypanel-error,
    .notifypanel-danger .notifypanel-heading,
    .notifypanel-error .notifypanel-heading {
        color: #b94a48;
    }

.notifypanel-info {
    background-color: #d9edf7;
    border-color: #bce8f1;
}

    .notifypanel-info, .notifypanel-info .notifypanel-heading {
        color: #3a87ad;
    }

.notifypanel-block {
    padding-top: 14px;
    padding-bottom: 14px;
}

    .notifypanel-block > p, .notifypanel-block > ul {
        margin-bottom: 0;
    }

    .notifypanel-block p + p {
        margin-top: 5px;
    }

.MyCalendar .ajax__calendar_container {
    border: 1px solid #646464;
    background-color: #FCFCFC;
    color: red;
}

    .MyCalendar .ajax__calendar_container th {
        padding: 0px;
    }

    .MyCalendar .ajax__calendar_container td {
        background-color: #FCFCFC;
        padding: 0px;
    }

.MyCalendar .ajax__calendar_other .ajax__calendar_day, .MyCalendar .ajax__calendar_other .ajax__calendar_year {
    color: black;
}

.MyCalendar .ajax__calendar_hover .ajax__calendar_day, .MyCalendar .ajax__calendar_hover .ajax__calendar_month, .MyCalendar .ajax__calendar_hover .ajax__calendar_year {
    color: black;
}

.MyCalendar .ajax__calendar_active .ajax__calendar_day, .MyCalendar .ajax__calendar_active .ajax__calendar_month, .MyCalendar .ajax__calendar_active .ajax__calendar_year {
    color: black;
    font-weight: bold;
}
/* Modal Pop-up */

.modalBackground {
    position: absolute;
    z-index: 100;
    top: 0px;
    left: 0px;
    background-color: #000;
    filter: alpha(opacity=60);
    -moz-opacity: 0.6;
    opacity: 0.6;
}

.modalPopup {
    background-color: #ffffdd;
    border-width: 3px;
    border-style: solid;
    border-color: Gray;
    padding: 3px;
    width: 250px;
}

.modalBackground {
    background-color: Black;
    filter: alpha(opacity=40);
    opacity: 0.5;
}

.ModalWindow {
    background-color: #FFFFFF;
    border-width: 3px;
    border-style: solid;
    border-color: black;
    padding-top: 10px;
    padding-left: 10px;
    width: 620px;
    position: absolute;
    top: 50%;
    left: 50%;
}

.ModalWindowLookup {
    background-color: #FFFFFF;
    border-width: 3px;
    border-style: solid;
    border-color: black;
    padding-top: 10px;
    padding-left: 10px;
    width: 820px;
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 14px;
}

.helpPopupBackground {
    position: absolute;
    z-index: 100;
    top: 0px;
    left: 0px;
    background-color: black;
    filter: alpha(opacity=60);
    -moz-opacity: 0.6;
    opacity: 0.6;
}

.helpPopup {
    background-color: black;
    border-width: 3px;
    border-style: solid;
    border-color: Gray;
    padding: 3px;
    width: 250px;
}

.helpPopupWindow {
    background-color: black;
    border-width: 3px;
    border-style: solid;
    border-color: black;
    padding-top: 10px;
    padding-left: 10px;
    width: 620px;
    position: absolute;
    top: 50%;
    left: 50%;
}

floatingfooter {
    position: fixed;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 20px;
    margin: auto;
}

floatingheader {
    position: absolute;
    top: 0;
    width: 100%;
    height: 20px;
    margin: auto;
}

floatingheader2 {
    position: fixed;
    bottom: 50px;
    left: 50px;
    height: 20px;
    margin: auto;
    z-index: -1;
}

div.centered table {
    margin: 0 auto;
    text-align: left;
}

.nopadding {
    padding: 0px;
}

.noborder {
    border: none;
}

.smallpadding {
    padding: 2px;
}
/* -------------------------------------------
		TABS
-------------------------------------------- */
.Static {
    display: block;
    padding: 10px 20px;
    color: #FFF;
    background: #FFF;
    background-color: rgba(0, 172, 238, 100);
    border: 1px solid rgba(0, 172, 238, 100);
    text-transform: uppercase;
    font-size: 14px;
    border-bottom: 0;
}

.Help {
    display: block;
    padding: 1px 15px;
    color: #FFF;
    background: #FFF;
    background-color: rgba(0, 128, 178,100);
    text-transform: uppercase;
    font-size: 12px;
    border-bottom: 0;
    cursor: pointer;
}

.Initial {
    display: block;
    padding: 10px 20px;
    background: #ccc;
    color: #535353;
    font-family: 'RobotoBoldCondensed', Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    -moz-border-radius: 2px 2px 0 0;
    -webkit-border-radius: 2px 2px 0 0;
    border-radius: 2px 2px 0 0;
    border: 1px solid #ccc;
    border-bottom: 0;
    cursor: pointer;
}

    .Initial:hover {
        background-color: #00ACEE;
        border-color: #aaa;
    }

.Clicked {
    display: block;
    padding: 10px 20px;
    background: #fff;
    color: #00ACEE;
    font-family: 'RobotoBoldCondensed', Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    -moz-border-radius: 2px 2px 0 0;
    -webkit-border-radius: 2px 2px 0 0;
    border-radius: 2px 2px 0 0;
    border: 1px solid #ccc;
    border-bottom: 0;
}

.mockupiconclicked {
    display: block;
    padding: 5px 5px;
    background: #00ACEE;
    cursor:default;
}

.mockupiconinitial {
    display: block;
    padding: 5px 5px;
    background: #F7F7F7;
    cursor:pointer;
}

.hornav {
    list-style: none;
}

    .hornav li {
        display: inline-block;
        float: left;
        margin-right: 5px;
    }

        .hornav li a {
            display: block;
            padding: 10px 20px;
            background: #ccc;
            color: #fff;
            font-family: 'RobotoBoldCondensed', Arial, Helvetica, sans-serif;
            text-transform: uppercase;
            font-size: 14px;
            -moz-border-radius: 2px 2px 0 0;
            -webkit-border-radius: 2px 2px 0 0;
            border-radius: 2px 2px 0 0;
            border: 1px solid #ccc;
            border-bottom: 0;
        }

            .hornav li a:hover {
                background: #bbb;
                border-color: #aaa;
            }

        .hornav li.current a {
            background: #fff;
            color: #FB9337;
        }

            .hornav li.current a:hover {
                border-color: #ccc;
            }



div.tabbutton input {
    display: block;
    padding: 10px 20px;
    background: #CCC;
    color: #fff;
    font-family: 'RobotoBoldCondensed', Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    -moz-border-radius: 2px 2px 0 0;
    -webkit-border-radius: 2px 2px 0 0;
    border-radius: 2px 2px 0 0;
    border: 1px solid #ccc;
    border-bottom: 0;
    height: 41px;
}


.hornav li {
    display: inline-block;
    float: left;
    margin-right: 5px;
}
/*TILT*/
.tilt {
  -webkit-transition: all 0.5s ease;
     -moz-transition: all 0.5s ease;
       -o-transition: all 0.5s ease;
      -ms-transition: all 0.5s ease;
          transition: all 0.5s ease;
}
 
.tilt:hover {
  -webkit-transform: rotate(-10deg);
     -moz-transform: rotate(-10deg);
       -o-transform: rotate(-10deg);
      -ms-transform: rotate(-10deg);
          transform: rotate(-10deg);
}
.pic {
    border: 5px solid #ccc;
  float: left;
  overflow: hidden;
}
/*GROW*/
.grow img {
  height: 300px;
  width: 300px;
 
  -webkit-transition: all 1s ease;
     -moz-transition: all 1s ease;
       -o-transition: all 1s ease;
      -ms-transition: all 1s ease;
          transition: all 1s ease;
}
 
.grow img:hover {
  width: 400px;
  height: 400px;
}
/*ZOOM*/
.zoom {
    -webkit-transition: all 1s ease; /* Safari and Chrome */
    -moz-transition: all 1s ease; /* Firefox */
    -ms-transition: all 1s ease; /* IE 9 */
    -o-transition: all 1s ease; /* Opera */
    transition: all 1s ease;
}

.zoom:hover {
    -webkit-transform:scale(1.1); /* Safari and Chrome */
    -moz-transform:scale(1.1); /* Firefox */
    -ms-transform:scale(1.1); /* IE 9 */
    -o-transform:scale(1.1); /* Opera */
     transform:scale(1.1);
}

.RadUpload .ruButton {
  background-color: #3486BC !important;
  border-color: #3486BC !important;
  color: #FFFFFF !important;
    align-items: flex-start !important;
  text-align: center !important;
  cursor: pointer !important;
  height:32px !important;  
  width:170px  !important;
  padding: 2px 6px 3px !important;
  border-image-source: initial !important;
  border-image-slice: initial !important;
  border-image-width: initial !important;
  border-image-outset: initial !important;
  border-image-repeat: initial !important;
  box-sizing: border-box !important;
}

.RadUpload .ruFileWrap {
    height: 34px  !important;
}

.RadUpload .ruUploadProgress {
    padding-right: 18px  !important;

}
.RadUpload .ruInputs {
   text-align: left !important;
}
.RadUpload .ruRemove:hover {
  text-decoration: underline;
}
.RadUpload .ruRemove {
  height: 21px !important;
  padding: 0 0 0 20px !important;
  border: 0 !important;
  color: #0394ae !important;
  background: 0 !important;
  filter: none !important;
  font-size: 12px !important;
}
.RadUpload .ruCancel {
    height: 21px !important;
    padding: 0 0 0 20px !important;
    border: 0 !important;
    color: #0394ae !important;
    background: 0 !important;
    filter: none !important;
    font-size: 12px !important;

.DropZone1  {
      background-color: #686868;
      /*background-image:url('../img/draganddrop.png');*/
      background-color:#fff;
  text-align: center;
  width:165px;
  border-radius: 5px; 
-moz-border-radius: 5px; 
-webkit-border-radius: 5px; 
border: 2px dashed #DBDBDB;
    font-size: smaller;
    padding: 5px;

}
.DropZoneBrandingImage  {
      background-color: #686868;
      /*background-image:url('../img/draganddrop.png');*/
      background-color:#fff;
  text-align: center;
    width: 155px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border: 2px dashed #DBDBDB;
    font-size: smaller;
    padding: 5px;
}
.DropZoneThumbnailImage  {
      background-color: #686868;
      /*background-image:url('../img/draganddrop.png');*/
      background-color:#fff;
  text-align: center;
    width: 155px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border: 2px dashed #DBDBDB;
    font-size: smaller;
    padding: 5px;
}
.DropZoneContact  {
      background-color: #686868;
      /*background-image:url('../img/draganddrop.png');*/
      background-color:#fff;
  text-align: center;
    width: 155px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border: 2px dashed #DBDBDB;
    font-size: smaller;
    padding: 5px;
}
.DropZoneContact2  {
      background-color: #686868;
      /*background-image:url('../img/draganddrop.png');*/
      background-color:#fff;
  text-align: center;
    width: 155px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border: 2px dashed #DBDBDB;
    font-size: smaller;
    padding: 5px;
}
.RoundedBox{
    border-radius: 5px; 
-moz-border-radius: 5px; 
-webkit-border-radius: 5px; 
border: 1px solid #EFEFEF;
padding:25px;
}