.form-horizontal .control-label {
    text-align: left;
}
.fancy-left-border{
	/*padding-left:1.5em;
	border-left: 1px solid #26aae1;
	font-size: 1.1em;*/
}

.fancy-left-border h4{
	color: #666;
}
.fancy-left-border h4:after{
	content: '';
	display:block;
	width: 30px;
	height: 1px;
	background-color: rgba(0,0,0,0.5);
	margin-top: 1em;
	margin-bottom: 1em;
}

.fancy-left-border a.mapprint{
	display: none;
}
#eledger-bottom-logos{
	text-align: center;
}
#eledger-bottom-logos a figure figcaption{
	color: #666;
	font-size: 0.9em;
	opacity:0.6;
	-webkit-transition: all .8s ease-in-out; 
	-moz-transition: all .8s ease-in-out;
	transition: all .8s ease-in-out;
}
#eledger-bottom-logos a figure img{
	display: inline-block;
	height: 40px;
	filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 10+ */
    filter: gray; /* IE6-9 */
    -webkit-filter: grayscale(100%); /* Chrome 19+ & Safari 6+ */
    -webkit-transition: all .8s ease-in-out; /* Fade to color for Chrome and Safari */
	-moz-transition: all .8s ease-in-out;
	transition: all .8s ease-in-out;
}
#eledger-bottom-logos a figure:hover img{
	filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale");
    -webkit-filter: grayscale(0%);
}
#eledger-bottom-logos a figure:hover figcaption{
	opacity: 1;
}

p{
	line-height: 1.7em;
}
h2:after{
	content: '';
	display:block;
	width: 50px;
	height: 1px;
	background-color: #333;
	margin-top: 0.7em;
	margin-bottom: 1em;
	/*box-shadow: 0 -10px 0 #26aae1;*/
}

.eledger-feature-button{
	display: inline-block;
    border-radius: 3em;
    border: 1px solid black;
    color: black;
    padding: 10px 20px;
    font-weight: bold;
    letter-spacing: 0.075em;
    text-transform: uppercase;
	background: transparent;
    box-shadow: none;
    text-shadow: none;
	outline: 0;
	font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    font-weight: 300;
    vertical-align: baseline;
	margin: 0 auto;
	-webkit-transition: all .2s ease-in-out; 
	-moz-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
.eledger-feature-button:hover,
.eledger-feature-button:focus{
	background: #26aae1;
	border-color: #26aae1;
	color: #FFF;
}


.eledger-feature-button-white{
	display: inline-block;
    border-radius: 3em;
    border: 1px solid #fff;
    color: #FFF;
    padding: 10px 20px;
    font-weight: bold;
    letter-spacing: 0.075em;
    text-transform: uppercase;
	background: transparent;
    box-shadow: none;
    text-shadow: none;
	outline: 0;
	font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    font-weight: 300;
    vertical-align: baseline;
	margin: 0 auto;
	-webkit-transition: all .2s ease-in-out; 
	-moz-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
.eledger-feature-button-white:hover,
.eledger-feature-button-white:focus{
	background: #FFF;
	border-color: #FFF;
	color: #26aae1;
}


blockquote{
	border-left: none;
}
blockquote footer{
	text-align:center;
	margin-top: 1.4em;
	color: rgba(255,255,255,0.85);
}

.gradient-bg{
	
background: rgba(255,255,255,1);
background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 47%, rgba(237,237,237,1) 100%);
background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(47%, rgba(246,246,246,1)), color-stop(100%, rgba(237,237,237,1)));
background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 47%, rgba(237,237,237,1) 100%);
background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 47%, rgba(237,237,237,1) 100%);
background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 47%, rgba(237,237,237,1) 100%);
background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 47%, rgba(237,237,237,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed', GradientType=0 );

}

.gradient-bg-reverse{
	
background: rgba(237,237,237,1);
background: -moz-linear-gradient(top, rgba(237,237,237,1) 0%, rgba(246,246,246,1) 47%, rgba(255,255,255,1) 100%);
background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(237,237,237,1)), color-stop(47%, rgba(246,246,246,1)), color-stop(100%, rgba(255,255,255,1)));
background: -webkit-linear-gradient(top, rgba(237,237,237,1) 0%, rgba(246,246,246,1) 47%, rgba(255,255,255,1) 100%);
background: -o-linear-gradient(top, rgba(237,237,237,1) 0%, rgba(246,246,246,1) 47%, rgba(255,255,255,1) 100%);
background: -ms-linear-gradient(top, rgba(237,237,237,1) 0%, rgba(246,246,246,1) 47%, rgba(255,255,255,1) 100%);
background: linear-gradient(to bottom, rgba(237,237,237,1) 0%, rgba(246,246,246,1) 47%, rgba(255,255,255,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ededed', endColorstr='#ffffff', GradientType=0 );

}


.sp-copyright{
	font-size:0.8em;
}


#sp-page-builder .sppb-section-title {
margin-bottom: 0px
}


.cutom-form input{
	width: 100% !important;
	padding: 10px 8px !important;
	display: block !important;
	height: auto !important;
	outline: 0;
	border: 1px solid #DEDEDE;
	border-radius: 2px;
}

.cutom-form textarea.rsform-text-box{
	width: 100% !important;
	padding: 10px 8px !important;
	display: block !important;
	height: auto !important;
	outline: 0;
	border: 1px solid #DEDEDE;
	border-radius: 2px;
	min-height:200px;
}
.cutom-form textarea.rsform-text-box:focus,
.cutom-form input:focus{
	outline: 0;
	box-shadow: none;
	border-color: #26aae1;
}
.cutom-form div.formBody{
	width: 100% !important;
}
.cutom-form .formRed {
    background: #CF4D4D !important;
	padding: 10px 8px !important;
	color: #FFF !important;
    font-weight: 300 !important;
	border-radius:2px !important;
}




a.logo h1 img{
	max-height: 90px;
}




/* ---------------- gdpr ------------*/
.activebar-container {
    background-color: rgba(0, 0, 0, 0.8) !important;
    border-bottom: 1px solid #000;
    color: #fff !important;
}
.activebar-container p {
    font-size: 16px;
}
.activebar-container a {
    font-weight: bold;
    font-size: 14px;
}
.activebar-container {
    margin: 0;
    display: block;
    position: fixed;
    top: auto !important;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 9999;
    overflow: hidden;
    overflow-x: hidden;
  border-top: 1px dotted white;
}
.activebar-container button.accept {
    color: #fff !important;
    background-color: #5cba3c !important;
}

.activebar-container button {
    float: right;
    clear: none;
    margin: 5px 10px;
    padding: 10px 20px !important;
    border-radius: 5px;
    border: none;
}

.activebar-container button {
    float: right;
    clear: none;
    margin: 5px 10px;
    padding: 10px 20px !important;
    border-radius: 5px;
    border: none;
}
.plg_system_eprivacy_module div.plg_system_eprivacy_accepted, .plg_system_eprivacy_module div.plg_system_eprivacy_declined {
    overflow: hidden;
    border: none !important;
    border-top: 1px dotted #333333 !important;
    color: #333 !important;
    vertical-align: middle;
    padding: 10px !important;
    background-color: #fafafa;
}
.plg_system_eprivacy_module div.plg_system_eprivacy_accepted button, .plg_system_eprivacy_module div.plg_system_eprivacy_declined button {
    border: 1px solid #ffffff;
    color: white;
    padding: 5px 10px !important;
    margin-right: 10px;
    background-color: rgb(38, 170, 225);
    -webkit-box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.6);
    -moz-box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.6);
    box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.6);
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}
.plg_system_eprivacy_module div.plg_system_eprivacy_accepted button:hover, .plg_system_eprivacy_module div.plg_system_eprivacy_declined button:hover {
    color: black;
    border-color: rgb(38, 170, 225);
    background-color: #fff;
}



/* 2023 update */

#eledger-bottom-logos {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-row {
    margin-top: 50px;
}





.cc-compliance.cc-highlight > .cc-deny {
    order: 3 !important;
    color: black !important;
    background: #ffffff !important;
}

.cc-compliance.cc-highlight > .cc-allow {
    order: 2 !important;
}

.cc-compliance.cc-highlight > .cc-allowall {
    order: 1 !important;
    background: #333333 !important;
    color: white !important;
}


/* 2025 update */

@media(max-width: 992px) {
  #sp-header .logo {
    max-width: 120px;
  }

  #sp-menu a i:before {
    font-size: 30px !important;
}

  
}