/* This is the default Tooltipster theme (feel free to modify or duplicate and create multiple themes!): */
.tooltipster-default {
    border-radius: 5px; 
    background: #4c4c4c;
    color: #fff;
}

/* Use this next selector to style things like font-size and line-height: */
.tooltipster-default .tooltipster-content {

    font-size: 12px;
    line-height: 16px;
    padding: 8px 10px;
    overflow: hidden;
}

/* This next selector defines the color of the border on the outside of the arrow. This will automatically match the color and size of the border set on the main tooltip styles. Set display: none; if you would like a border around the tooltip but no border around the arrow */
.tooltipster-default .tooltipster-arrow .tooltipster-arrow-border {
    /* border-color: ... !important; */
}


/* If you're using the icon option, use this next selector to style them */
.tooltipster-icon {
    cursor: help;
    margin-left: 4px;
}








/* This is the base styling required to make all Tooltipsters work */
.tooltipster-base {
    padding: 0;
    font-size: 0;
    line-height: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9999999;
    pointer-events: none;
    width: auto;
    overflow: visible;
}
.tooltipster-base .tooltipster-content {
    overflow: hidden;
}


/* These next classes handle the styles for the little arrow attached to the tooltip. By default, the arrow will inherit the same colors and border as what is set on the main tooltip itself. */
.tooltipster-arrow {
    display: block;
    text-align: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.tooltipster-arrow span, .tooltipster-arrow-border {
    display: block;
    width: 0; 
    height: 0;
    position: absolute;
}
.tooltipster-arrow-top span, .tooltipster-arrow-top-right span, .tooltipster-arrow-top-left span {
    border-left: 8px solid transparent !important;
    border-right: 8px solid transparent !important;
    border-top: 8px solid;
    bottom: -7px;
}
.tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-top-left .tooltipster-arrow-border {
    border-left: 9px solid transparent !important;
    border-right: 9px solid transparent !important;
    border-top: 9px solid;
    bottom: -7px;
}

.tooltipster-arrow-bottom span, .tooltipster-arrow-bottom-right span, .tooltipster-arrow-bottom-left span {
    border-left: 8px solid transparent !important;
    border-right: 8px solid transparent !important;
    border-bottom: 8px solid;
    top: -7px;
}
.tooltipster-arrow-bottom .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border {
    border-left: 9px solid transparent !important;
    border-right: 9px solid transparent !important;
    border-bottom: 9px solid;
    top: -7px;
}
.tooltipster-arrow-top span, .tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-bottom span, .tooltipster-arrow-bottom .tooltipster-arrow-border {
    left: 0;
    right: 0;
    margin: 0 auto;
}
.tooltipster-arrow-top-left span, .tooltipster-arrow-bottom-left span {
    left: 6px;
}
.tooltipster-arrow-top-left .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border {
    left: 5px;
}
.tooltipster-arrow-top-right span,  .tooltipster-arrow-bottom-right span {
    right: 6px;
}
.tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border {
    right: 5px;
}
.tooltipster-arrow-left span, .tooltipster-arrow-left .tooltipster-arrow-border {
    border-top: 8px solid transparent !important;
    border-bottom: 8px solid transparent !important; 
    border-left: 8px solid;
    top: 50%;
    margin-top: -7px;
    right: -7px;
}
.tooltipster-arrow-left .tooltipster-arrow-border {
    border-top: 9px solid transparent !important;
    border-bottom: 9px solid transparent !important; 
    border-left: 9px solid;
    margin-top: -8px;
}
.tooltipster-arrow-right span, .tooltipster-arrow-right .tooltipster-arrow-border {
    border-top: 8px solid transparent !important;
    border-bottom: 8px solid transparent !important; 
    border-right: 8px solid;
    top: 50%;
    margin-top: -7px;
    left: -7px;
}
.tooltipster-arrow-right .tooltipster-arrow-border {
    border-top: 9px solid transparent !important;
    border-bottom: 9px solid transparent !important; 
    border-right: 9px solid;
    margin-top: -8px;
}


/* Some CSS magic for the awesome animations - feel free to make your own custom animations and reference it in your Tooltipster settings! */

.tooltipster-fade {
    opacity: 0;
    -webkit-transition-property: opacity;
    -moz-transition-property: opacity;
    -o-transition-property: opacity;
    -ms-transition-property: opacity;
    transition-property: opacity;
}
.tooltipster-fade-show {
    opacity: 1;
}

.tooltipster-grow {
    -webkit-transform: scale(0,0);
    -moz-transform: scale(0,0);
    -o-transform: scale(0,0);
    -ms-transform: scale(0,0);
    transform: scale(0,0);
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    -ms-transition-property: -ms-transform;
    transition-property: transform;
    -webkit-backface-visibility: hidden;
}
.tooltipster-grow-show {
    -webkit-transform: scale(1,1);
    -moz-transform: scale(1,1);
    -o-transform: scale(1,1);
    -ms-transform: scale(1,1);
    transform: scale(1,1);
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
    -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
    -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
    -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}

.tooltipster-swing {
    opacity: 0;
    -webkit-transform: rotateZ(4deg);
    -moz-transform: rotateZ(4deg);
    -o-transform: rotateZ(4deg);
    -ms-transform: rotateZ(4deg);
    transform: rotateZ(4deg);
    -webkit-transition-property: -webkit-transform, opacity;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    -ms-transition-property: -ms-transform;
    transition-property: transform;
}
.tooltipster-swing-show {
    opacity: 1;
    -webkit-transform: rotateZ(0deg);
    -moz-transform: rotateZ(0deg);
    -o-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
    -webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 1);
    -webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4); 
    -moz-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4); 
    -ms-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4); 
    -o-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4); 
    transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
}

.tooltipster-fall {
    top: 0;
    -webkit-transition-property: top;
    -moz-transition-property: top;
    -o-transition-property: top;
    -ms-transition-property: top;
    transition-property: top;
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
    -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
    -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
    -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
}
.tooltipster-fall-show {
}
.tooltipster-fall.tooltipster-dying {
    -webkit-transition-property: all;
    -moz-transition-property: all;
    -o-transition-property: all;
    -ms-transition-property: all;
    transition-property: all;
    top: 0px !important;
    opacity: 0;
}

.tooltipster-slide {
    left: -40px;
    -webkit-transition-property: left;
    -moz-transition-property: left;
    -o-transition-property: left;
    -ms-transition-property: left;
    transition-property: left;
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
    -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
    -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
    -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}
.tooltipster-slide.tooltipster-slide-show {
}
.tooltipster-slide.tooltipster-dying {
    -webkit-transition-property: all;
    -moz-transition-property: all;
    -o-transition-property: all;
    -ms-transition-property: all;
    transition-property: all;
    left: 0px !important;
    opacity: 0;
}


/* CSS transition for when contenting is changing in a tooltip that is still open. The only properties that will NOT transition are: width, height, top, and left */
.tooltipster-content-changing {
    opacity: 0.5;
    -webkit-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}



.code-helper {
    background: #f1f1f1;
    padding: 20px;
    border: 1px dashed #666;
    display: none;
}
.et-fb-root-ancestor .code-helper {
    display: block;
}
.topbar{
    margin: 6px 0  8px !important;
}
.topbar h4.et_pb_module_header{
    padding-bottom: 0;
}
.topbar .et_pb_blurb_container{
    vertical-align: middle;
}
.topbar .et_pb_main_blurb_image{
    width: 20px;
}
/* Icon Colors - To change color generate filters with this tool: https://codepen.io/sosuke/pen/Pjoqqp */

/* Blue Icon */
.icon-blue .et_pb_main_blurb_image .et_pb_image_wrap img {
    filter: invert(16%) sepia(17%) saturate(6153%) hue-rotate(201deg) brightness(90%) contrast(90%);
}

/* White Icon */
.icon-white .et_pb_main_blurb_image .et_pb_image_wrap img {
    filter: invert(94%) sepia(51%) saturate(2%) hue-rotate(357deg) brightness(122%) contrast(100%);
}

/* White Icon on Hover */
.hover-white:hover .et_pb_main_blurb_image .et_pb_image_wrap img {
    filter: invert(94%) sepia(51%) saturate(2%) hue-rotate(357deg) brightness(122%) contrast(100%);
}
.custom_bullets_wpcc ul{
    padding-left: 0;
}
.custom_bullets_wpcc ul li {
    padding-left: 30px;
    list-style:none;
    margin-bottom: 0;
}
.custom_bullets_wpcc ul li::before {
    content: '\39';
    display: inline-block;
    margin-right: 7px;
    margin-left: -30px;
    padding-right: 5px;
    font-family:'ETmodules';
    font-size: 1.2em;
    vertical-align: middle;
}
.mobile_view{
    display: none !important;
}
.headingText h1{
    padding-bottom:0px;	
    text-transform:uppercase;
    color:#193669;
}

.et_pb_blog_grid article.format-standard.et_pb_post {
    transition: all 0.3s;
}
.et_pb_blog_grid article.format-standard.et_pb_post:hover {
    box-shadow: 0px 2px 18px 0px #e5e8fc;
}
.et_pb_blog_grid article.format-standard.et_pb_post:hover .et_pb_image_container a {
    overflow: hidden;
    transition: all 0.3s;
}
.et_pb_blog_grid article.format-standard.et_pb_post:hover .et_pb_image_container img {
    transform: scale(1.1);
    transition: all 0.3s ease;
}
.submit.et_pb_button,
.submit.et_pb_button:hover,
.submit.et_pb_button:focus{
    color: #FFFFFF!important;
    border-color: #193669;
    font-size: 16px;
    background-color: #193669;
}
body.single #left-area article.et_pb_post,
body.single-post #left-area article.et_pb_post,
body.archive #left-area article.et_pb_post {
    margin-bottom: 35px;
}

body.single #left-area article.et_pb_post h1.entry-title,
body.single-post #left-area article.et_pb_post h1.entry-title,
body.archive #left-area article.et_pb_post h2.entry-title{
    font-weight: 600;
    color: #193669;
}

body.single #left-area article.et_pb_post p.post-meta,
body.single-post #left-area article.et_pb_post p.post-meta,
body.archive #left-area article.et_pb_post p.post-meta{
    font-size: 13px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    text-align: left;
}

body.single #left-area article.et_pb_post p.post-meta a,
body.single-post #left-area article.et_pb_post p.post-meta a,
body.archive #left-area article.et_pb_post p.post-meta a{
    font-weight: 500;
    color: #666;
}

body.single #left-area article.et_pb_post .post-meta span.published,
body.single-post #left-area article.et_pb_post .post-meta span.published,
body.archive #left-area article.et_pb_post .post-meta span.published{
    position: relative;
}

body.single-post #left-area article.et_pb_post .entry-content{
    padding-top: 20px;
    text-align: left;
}
body.single #left-area article.et_pb_post .entry-content p,
body.single-post #left-area article.et_pb_post .entry-content p,
body.archive #left-area article.et_pb_post .entry-content p{
    font-size: 15px !important;
    line-height: 25px !important;
    padding-bottom: 20px !important;
    font-weight: 400 !important;
}
body.single #left-area article.et_pb_post .entry-content ul,
body.single-post #left-area article.et_pb_post .entry-content ul,
body.archive #left-area article.et_pb_post .entry-content ul{
    padding: 0px 0px 10px 0px;
}
body.single #left-area article.et_pb_post .entry-content ul li,
body.single-post #left-area article.et_pb_post .entry-content ul li,
body.archive #left-area article.et_pb_post .entry-content ul li{
    line-height: 25px;
    font-size: 15px;
    padding: 0px 0px 5px 25px;
    list-style: none;
    position: relative;
    font-weight: 400;
}

body.single #left-area article.et_pb_post .entry-content ul li:before,
body.single-post #left-area article.et_pb_post .entry-content ul li:before,
body.archive #left-area article.et_pb_post .entry-content ul li:before {
    content: '\f138';
    position: absolute;
    left: 0px;
    top: 0px;
    font-family: 'FontAwesome';
    color: #193669;
}

body.search #left-area article.et_pb_post,
body.search-results #left-area article.et_pb_post,
body.category #left-area article.et_pb_post {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e1e1e1;
}

body.search #left-area article.et_pb_post .entry-featured-image-url,
body.search-results #left-area article.et_pb_post .entry-featured-image-url,
body.category #left-area article.et_pb_post .entry-featured-image-url {
    margin-bottom: 20px;
    text-align: center;
}


body.search #left-area article.et_pb_post h2.entry-title,
body.search-results #left-area article.et_pb_post h2.entry-title,
body.category #left-area article.et_pb_post h2.entry-title {
    font-weight: 600;
}

body.search #left-area article.et_pb_post h2.entry-title a,
body.search-results #left-area article.et_pb_post h2.entry-title a,
body.category #left-area article.et_pb_post h2.entry-title a {
    transition: all 0.3s;
    font-weight: 600;
    color: #193669;
}

body.search #left-area article.et_pb_post h2.entry-title a:hover,
body.search-results #left-area article.et_pb_post h2.entry-title a:hover,
body.category #left-area article.et_pb_post h2.entry-title a:hover {
    opacity: 0.8;
}

body.search #left-area article.et_pb_post p.post-meta,
body.search-results #left-area article.et_pb_post p.post-meta,
body.category #left-area article.et_pb_post p.post-meta {
    font-size: 14px;
    padding-bottom: 10px;
    margin-bottom: 0px;
}

body.search #left-area article.et_pb_post p.post-meta a,
body.search-results #left-area article.et_pb_post p.post-meta a,
body.category #left-area article.et_pb_post p.post-meta a {
    font-weight: 600;
}

body.search #left-area article.et_pb_post .post-meta span.published,
body.search-results #left-area article.et_pb_post .post-meta span.published,
body.category #left-area article.et_pb_post .post-meta span.published {
    position: relative;
}

body.et_right_sidebar #left-area {
    float: left;
    padding-right: 50px;
    width: 75%;
}

body.et_right_sidebar #main-content .container:before {
    display: none;
}

body.et_right_sidebar #sidebar {
    padding-left: 0px;
    width: 25%;
}

body.et_right_sidebar #sidebar .widget_search{
    position: relative;
}
body.et_right_sidebar #sidebar .widget_search input#s {
    background-color: #f5f5f5;
    border-radius: 0 !important;
    height: 50px !important;
    padding: 10px 105px 10px 15px;
    color: #333;
    border-top-right-radius: 3px !important;
    border-bottom-right-radius: 3px !important;
}

body.et_right_sidebar #sidebar .widget_search input#searchsubmit {
    background: #193669;
    font-size: 15px!important;
    padding: 10px 20px !important;
    font-weight: 600;
    color: #fff!important;
    height: 50px !important;
    width: auto !important;
    border: none;
    outline: none;
    transition: all 0.3s;
    border-radius: 0px;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

body.et_right_sidebar #sidebar .widget_search input#searchsubmit:hover {
    background: #193669;
    color: #fff !important;
}

body.et_right_sidebar #sidebar h4.widgettitle {
    font-size: 24px;
    line-height: 32px;
    padding-bottom: 0px;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    color: #193669;
}

body.et_right_sidebar #sidebar .et_pb_widget ul li a {
    display: block;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    border-bottom: 1px solid #e1e1e1;
    padding-bottom: 10px;
    margin-bottom: 10px;
    position: relative;
    transition: all 0.3s;
}

body.et_right_sidebar #sidebar .et_pb_widget ul li a:hover {
    color: #193669;
}

.pagination {
    padding-left: 0;
    margin-bottom: 50px;
}

.pagination a {
    margin-right: 15px;
    background: #193669;
    color: #fff !important;
    padding: 5px 15px;
    display: inline-block;
    font-size: 14px !important;
    transition: all 0.3s;
    border-radius: 3px;
}

.pagination a:hover {
    background: #193669;
    color: #fff !important;
}
.et_pb_blog_grid .not-found-title{
    font-size: 24px;
    line-height: 32px;
    padding-bottom: 0px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #193669;
}

@media only screen and (max-width: 980px) {
    .mobile_view{
        display: block !important;
    }
    .et_pb_menu_0_tb_header .mobile_nav .mobile_menu_bar:before{
        color: #003399 !important;
    }
    .et_pb_blurb.topbar{
        width: auto;
        float: left;
    }
    .et_pb_menu_inner_container.clearfix {
        position: unset;
    }
    .et_mobile_menu {
        position: absolute;
        left: 0;
    }
    .et_pb_title_container h1.et_multi_view_hidden {
        display: block !important;
    }
    body.et_right_sidebar #left-area {
        float: none;
        padding-right: 0;
        width: 100% !important;
    }
}
@media only screen and (max-width: 405px) {
    .et_pb_blurb.topbar{
        margin-left: 80px !important;
        margin-right: 80px !important;
    }
}