/************** GENERAL WEBSITE STYLES **************/

.required{color:red !important}

body {
	background-color:#C2DBF4 !important;
	color: #2E2E2E;
	font-size: 16px;
	line-height:16px;
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	height: 100vh;
}

#page {
	opacity: 1!important;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* links */

a {
	color: #950000;
}

a:link {
	color: #000;
	text-decoration: none;
}

a:visited {
	color: #000;
	text-decoration: none;
}

a:hover {
	color: #000;
	text-decoration: underline;
}

/* overwite richeditor and plugins content */

#body.richeditor {
	background-color: #fff;
}

#body.richeditor p,
.plugins p {
	color: #2E2E2E;
	margin: 0;
    padding: 0;
    font-size: 16px;
	line-height: 28px;
}

#body.richeditor span,
.plugins span {
	color: inherit;
}

#body.richeditor h1,
.plugins h1 {
	color: #C41230;
	margin: 0;
	padding: 0;
	font-size: 38px;
	line-height: 52px;
	font-weight: bold;
}

#body.richeditor h2,
.plugins h2 {
	color: #2E2E2E;
	margin: 0;
	padding: 0;
	font-size: 28px;
	line-height: 38px;
	font-weight: bold;
}

#body.richeditor h3,
.plugins h3 {
	color: #2E2E2E;
	margin: 0;
	padding: 0;
	font-size: 20px;
	line-height: 28px;
}

#body.richeditor h4,
.plugins h4 {
	color: #2E2E2E;
	margin: 0;
	padding: 0;
	font-size: 20px;
	line-height: 28px;
}

#body.richeditor h5,
.plugins h5 {
	color: #2E2E2E;
	margin: 0;
	padding: 0;
	font-size: 20px;
	line-height: 28px;
}

#body.richeditor h6,
.plugins h6 {
	color: #2E2E2E;
	margin: 0;
	padding: 0;
	font-size: 20px;
	line-height: 28px;
}

#body.richeditor h1 {
	font-size: 38px;
	line-height: 52px;
	font-weight: bold;
}

#body.richeditor h2 {
	font-size: 28px;
	line-height: 38px;
	font-weight: bold;
}

#body.richeditor h3,
#body.richeditor h4,
#body.richeditor h5,
#body.richeditor h6 {
	font-size: 20px;
	line-height: 28px;
}

#body.richeditor ul, 
.plugins ul {
	color: #2E2E2E;
	margin: 0;
    /* padding-left: 30px; */
    font-size: 16px;
	line-height: 28px;    
}

#body.richeditor ol,
.plugins ol {
	color: #2E2E2E;
	margin: 0;
    padding-left: 30px;
    font-size: 16px;
	line-height: 28px;    
}

#body.richeditor blockquote,
.plugins blockquote {
	color: #2E2E2E;
	margin: 0;
    padding: 0;
    font-size: 16px;
	line-height: 28px;    
}

#body.richeditor table tr:nth-child(odd),
.plugins table tr:nth-child(odd) {
	background: #eee;opacity: 0.8;
}

#body.richeditor table tr td,
.plugins table tr td {
	padding: 15px;
}

#body.richeditor img.img-align-left,
.plugins img.img-align-left {
	float: left;
	padding: 0 15px 15px 0;
}

#body.richeditor img.img-align-right,
.plugins img.img-align-right {
	float: right;
	padding: 0 0 15px 15px;
}

/* backend richeditor hacks */

body.mce-content-body {
	background: none!important;
	padding: 20px!important;
}

body.mce-content-body a {
	/*text-decoration: underline;*/
}

/* focus border color */

textarea:focus,
textarea.form-control:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=number]:focus,
[type=text].form-control:focus,
[type=password].form-control:focus,
[type=email].form-control:focus,
[type=tel].form-control:focus,
[contenteditable].form-control:focus {
	border: 1px solid #4C91D1!important;
}

/* pagination */

.page-item.active .page-link {
	color: #fff !important;
	background-color: #3182e1;
	border-color: #3182e1;
}

.page-item .page-link:focus {
	z-index: 2;
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(49, 120, 225, 0.25);
}

/* gallery */

.container .gallery-wrapper {
	padding: 0 15px;
}

.gallery-wrapper img {
	min-width: 100%;
}

.gallery-wrapper figure {
	position: relative;
	overflow: hidden;
	-webkit-filter: brightness(70%);
	filter: brightness(70%);
	transition: all 0.3s ease;
	margin: 0;
}

.gallery-wrapper figure:hover {
	-webkit-filter: brightness(100%);
	filter: brightness(100%);
}

.gallery-wrapper figure::before {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	display: block;
	content: '';
	width: 0;
	height: 0;
	background: rgba(255, 255, 255, .2);
	border-radius: 100%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	opacity: 0;
}

.gallery-wrapper figure:hover::before {
	-webkit-animation: circle .75s;
	animation: circle .75s;
}

@-webkit-keyframes circle {
	0% {
		opacity: 1;
	}
	40% {
		opacity: 1;
	}
	100% {
		width: 200%;
		height: 200%;
		opacity: 0;
	}
}

@keyframes circle {
	0% {
		opacity: 1;
	}
	40% {
		opacity: 1;
	}
	100% {
		width: 200%;
		height: 200%;
		opacity: 0;
	}
}


/************** HELPERS **************/

.hidden {
	display: none;
}

.bold {
	font-weight: bold;
}

.pointer {
	cursor: pointer;
}

.white {
	color: #fff!important;
}

.gray {
	color: #C9C9C9!important;
}

.blue {
	color: #007BFF!important;
}

.round {
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.required-field{color:#d00000!important;}

@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}

.rotate {
  animation: spin 2s infinite linear;
}

/************** GRID **************/

.layout-section {
	background-position-x: center;
	flex: 1;
}

.section-p-0 .container-fluid {
	padding-left: 0;
	padding-right: 0;
}

@media screen and (max-width: 1200px) {
	.section-p-0 .container-fluid .row{
		margin-left: 0;
		margin-right: 0;
	}

	.section-p-0 .container-fluid [class^="col-"] {
		padding-left: 0;
		padding-right: 0;
	}
}


/************** ALERTS **************/

body .alert{font-size:16px;line-height: 1.4;font-weight: 400;}
.action-alert .toast{background:#fff!important;}
.action-alert svg{color:#4d4d4d;height:2em;width:2em!important;}
.action-alert .col{color:#4d4d4d;font-weight:400;line-height:18px;}
.action-alert .col a{color:#4d4d4d;text-decoration:underline;}


/************** PLUGINS **************/

/* header desktop */
.plugin-header {}
.plugin-header .member-login-btn{background:#C41230;color:#fff;font-size:16px;font-weight:600;line-height:33px;padding:0.375rem 0.75rem;text-decoration:none;border-radius:0.25rem;height:100%;}
.plugin-header .navbar-light .navbar-nav .nav-link{color:#FFF;font-size:18px;line-height:24px;}
.plugin-header .navbar-light .navbar-nav .nav-link.show{background:#007BFF;color:#FFF}
.plugin-header .navbar-nav .nav-item img{width:45px;}
.plugin-header .header-join{background:#C41230;color:#fff;font-size:16px;font-weight:bold;text-decoration:none;margin-top:-25px;}

.plugin-header .navbar-toggler{border: 0px solid transparent;padding:0;margin-right:12px;transform: scale(1.5);}
.plugin-header .navbar-toggler:focus{box-shadow:none;border: 0px solid transparent;}
.plugin-header .navbar-toggler.collapsed .navbar-toggler-icon{opacity:1;width:3em;height:3em;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");}
.plugin-header .navbar-toggler .navbar-toggler-icon{opacity:0.55;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e");}
.plugin-header .dropdown-menu{background: #007bff;border:none;border-radius:0;margin-block-start:0;}
.plugin-header .dropdown-menu .dropdown-item{color:#FFF;}
.plugin-header .dropdown-menu .dropdown-item:hover{color:#FFF;background: #007bff;}

.plugin-header .animated-hamburger {width: 30px !important;height: 20px !important;position: relative !important;margin: 0px !important;-webkit-transform: rotate(0deg) !important;-moz-transform: rotate(0deg) !important;-o-transform: rotate(0deg) !important;transform: rotate(0deg) !important;-webkit-transition: .5s ease-in-out !important;-moz-transition: .5s ease-in-out !important;-o-transition: .5s ease-in-out !important;transition: .5s ease-in-out !important;cursor: pointer !important;}
.plugin-header .animated-hamburger span {display: block !important;position: absolute !important;height: 3px !important;width: 100% !important;border-radius: 9px !important;opacity: 1 !important;left: 0 !important;-webkit-transform: rotate(0deg) !important;-moz-transform: rotate(0deg) !important;-o-transform: rotate(0deg) !important;transform: rotate(0deg) !important;-webkit-transition: .25s ease-in-out !important;-moz-transition: .25s ease-in-out !important;-o-transition: .25s ease-in-out !important;transition: .25s ease-in-out !important;}
.plugin-header .animated-hamburger span {background: #fff !important;}
.plugin-header .animated-hamburger span:nth-child(1) {top: 0px !important;-webkit-transform-origin: left center !important;-moz-transform-origin: left center !important;-o-transform-origin: left center !important;transform-origin: left center !important;}
.plugin-header .animated-hamburger span:nth-child(2) {top: 10px !important;-webkit-transform-origin: left center !important;-moz-transform-origin: left center !important;-o-transform-origin: left center !important;transform-origin: left center !important;}
.plugin-header .animated-hamburger span:nth-child(3) {top: 20px !important;-webkit-transform-origin: left center !important;-moz-transform-origin: left center !important;-o-transform-origin: left center !important;transform-origin: left center !important;}
.plugin-header .navbar-toggler:not(.collapsed) .animated-hamburger span:nth-child(1) {-webkit-transform: rotate(45deg) !important;-moz-transform: rotate(45deg) !important;-o-transform: rotate(45deg) !important;transform: rotate(45deg) !important;top: 0px !important;left: 8px !important;}
.plugin-header .navbar-toggler:not(.collapsed) .animated-hamburger span:nth-child(2) {width: 0% !important;opacity: 0 !important;}
.plugin-header .navbar-toggler:not(.collapsed) .animated-hamburger span:nth-child(3) {-webkit-transform: rotate(-45deg) !important;-moz-transform: rotate(-45deg) !important;-o-transform: rotate(-45deg) !important;transform: rotate(-45deg) !important;top: 21px !important;left: 8px !important;}

.plugin-header .search-btn{color:#8BC3FF;border:1px solid #8BC3FF;}

@media (max-width: 991px) {
	.plugin-header .header-logo{max-width:190px;}
}

/* back to top */
#back-to-top {position: fixed;bottom: 40px;right: calc(50% - 20px);z-index: 9999;width: 40px;height: 40px;text-align: center;line-height: 30px;cursor: pointer;border: 0;text-decoration: none;transition: opacity 0.3s ease-out;opacity: 0;}
#back-to-top.show {opacity:1;}


/* breadcrumbs */
.plugin-breadcrumbs {background:#264A6E;color:#8BC3FF;font-size:1rem;}
.plugin-breadcrumbs li{color:#8BC3FF;}
.plugin-breadcrumbs a{color:#FFF;font-size:1rem;}
.plugin-breadcrumbs .breadcrumb{padding-left:15px;}
.plugin-breadcrumbs .breadcrumb-item+.breadcrumb-item::before{content: "\003C";color:#A2A2A2;}


/* slider */
.plugin-slider{background:transparent;/*padding:0 15px;*/}
.plugin-slider .swiper {width: 100%;/*)height: 530px;*/}
.plugin-slider .swiper .swiper-slide-title{color:#fff;font-size:46px;line-height: 56px;}
.plugin-slider .swiper .swiper-slide-body{color:#fff;font-size:26px;line-height:36px;}
.plugin-slider .swiper .swiper-slide-body *{color:#fff;font-size:26px;line-height:36px;}
.plugin-slider .swiper .swiper-slide-link{color:#343A40;background:#FFC107;font-size:20px;text-decoration:none;}
.plugin-slider .swiper .swiper-overlay{background:rgba(0,0,0,.6);height:100%;}


/* contactform */
.blue-bg-gradient{background-image: url("/_data/cms_files/template/bg-triangle.png"), linear-gradient(#005FAA, #003055)!important;background-size: contain!important;background-repeat: no-repeat;}
.plugin-contactform input{background-color: rgba(255,255,255,.1);color:#C9C9C9;}
.plugin-contactform textarea{background-color: rgba(255,255,255,.1);color:#C9C9C9;}

.plugin-contactform ::-webkit-input-placeholder {color: #C9C9C9!important;}
.plugin-contactform ::-moz-placeholder {color: #C9C9C9!important;}
.plugin-contactform :-ms-input-placeholder {color: #C9C9C9!important;}
.plugin-contactform :-moz-placeholder {color: #C9C9C9!important;}

/* card */
.plugin-card .card-body {
	background-image: url('data:image/svg+xml;utf8,<svg class="lc-shape-divider-bottom" style="fill:white" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 279.24" preserveAspectRatio="none"><path d="M1000 0S331.54-4.18 0 279.24h1000z" opacity=".05"></path><path d="M1000 279.24s-339.56-44.3-522.95-109.6S132.86 23.76 0 25.15v254.09z" opacity=".1"></path></svg>')!important;	
}

/* calendar */
.plugin-calendar .tiva-calendar-full .calendar-btn,
.plugin-calendar .tiva-calendar-full .calendar-title{background:#c41230;}
.plugin-calendar .tiva-calendar-full .calendar-event-name{background: #0055a5!important;}
.plugin-calendar .tiva-calendar-full .calendar-table tr th{color:#0055a5;}
.plugin-calendar .events-calendar-bar .bar-btn.active{background: #0b5ed7!important;}
.plugin-calendar .tiva-event-detail-full .event-name{color:#0055a5;}
.plugin-calendar .svg-inline--fa{margin-right:10px;}


/* wizzard */
.wizzard-wrapper {margin-bottom:10px;}
.wizzard-wrapper .wizzard-step {border-radius:5px;background:#eee;color:#aaa;padding:6px;margin-bottom:4px;}
.wizzard-wrapper .wizzard-step.current {background:#379928;color:#fff;}


/* subpages */
.plugin-subpages a{color:#4D4D4D;font-size:1rem;}
.plugin-subpages #subpages-wrapper{background:#71ADE5;color:#fff;font-size:22px;line-height:30px;}


/* profilemenu */
.plugin-profilemenu a{text-decoration: none;color:#0d6efd;}
.plugin-profilemenu h2{font-size:38px;}

@media (max-width: 991px) {
    .plugin-profilemenu h2{font-size:28px;}
}


/* pagetitle */
.plugin-pagetitle {}


/* search */
.plugin-search a{color:#007BFF!important;}


/* textprimary */
@media (min-width: 992px) {
    .col-lg-9 .plugin-textprimary{width:85%!important;}
}
.plugin-textprimary a{color:#007BFF!important;}


/* text */
.plugin-text{}
@media (min-width: 992px) {
    .col-lg-9 .plugin-text{width:85%!important;}
}
.plugin-text a{color:#007BFF!important;}


/* uniserv listing */
.plugin-uniservdirectorslisting {}
.plugin-uniservdirectorslisting .director-wrapper{padding-top:15px;padding-bottom:15px;}
.plugin-uniservdirectorslisting .director-wrapper p {margin-bottom:6px;}
.plugin-uniservdirectorslisting .director-name{font-weight:bold;margin-bottom:20px;}
.plugin-uniservdirectorslisting .director-district{font-weight:bold;font-size:1.4rem;margin-bottom:20px;}
.plugin-uniservdirectorslisting .director-description{font-style:italic;}

/* postsbycategory */
.plugin-postsbycategory a{color:#007BFF;}
.plugin-postsbycategory .card-body{
	background-image: url('data:image/svg+xml;utf8,<svg class="lc-shape-divider-bottom" style="fill:lightgray" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 279.24" preserveAspectRatio="none"><path d="M1000 0S331.54-4.18 0 279.24h1000z" opacity=".05"></path><path d="M1000 279.24s-339.56-44.3-522.95-109.6S132.86 23.76 0 25.15v254.09z" opacity=".1"></path></svg>')!important;
}

/* mediabycategory */
.plugin-mediabycategory p{color:#1c191c;}


/* table */
.plugin-table.img-max-width img{max-width:130px;}
.tablelegislators td img{max-width:130px !important;}

/* footer */
.plugin-footer {color:#fff;font-size:18px;line-height:24px;}
.plugin-footer p{color:#fff;font-size:16px;line-height:32px;margin-bottom:0px;font-weight:400;}
.plugin-footer a{color:#fff;font-size:16px;line-height:32px;text-decoration:none;font-weight:400;transition:color 0.3s ease;}
.plugin-footer a:hover{color:#fff;}




/* NEW STYLING */
:root {
    --swiper-theme-color: #fff!important;
    --swiper-navigation-size: 36px!important;
}

.swiper-button-prev {
    left: 1.5rem!important;
}

.swiper-button-next {
    right: 1.5rem!important;
}

#section-22e43e3a34b3ad9b9b46f953f17ac408{
	background-color:#0055a5!important;
	background-image: url('data:image/svg+xml;utf8,<svg class="lc-shape-divider-bottom" style="fill:white" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 279.24" preserveAspectRatio="none"><path d="M1000 0S331.54-4.18 0 279.24h1000z" opacity=".05"></path><path d="M1000 279.24s-339.56-44.3-522.95-109.6S132.86 23.76 0 25.15v254.09z" opacity=".1"></path></svg>')!important;
}
#section-22e43e3a34b3ad9b9b46f953f17ac408 .layout-row{padding-top:0;padding-bottom:0;}

#section-f2fd121aeb593072f1f8d49663af519b,
#section-457694057404ff5c53ba6e0e0aac8608{
	background-image: url('data:image/svg+xml;utf8,<svg class="lc-shape-divider-bottom" style="fill:white" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 279.24" preserveAspectRatio="none"><path d="M1000 0S331.54-4.18 0 279.24h1000z" opacity=".05"></path><path d="M1000 279.24s-339.56-44.3-522.95-109.6S132.86 23.76 0 25.15v254.09z" opacity=".1"></path></svg>')!important;
}