/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/

.line-narrow {
    clear: both;
    position: relative;
    width: 100%;
    margin: 0 0 15px 0;
    border-top: 1px solid #EEE;
}

.process-steps li {
    pointer-events: all !important;
}

.span-error {
    color:#ff3f4d;
    display: block;
    margin-top: 5px;
}

ul {
    margin-left: 20px;
}

#header-wrap,
#header.sticky-header #header-wrap{
    background: #fff;
}

#header .menu-bg:before {
    border-bottom-color: #fff;
}

#header .menu-bg:after,
#header .menu-bg {
    background-color: #115e67;
}

#primary-menu ul ul:not(.mega-menu-column) {
    border-top-color: #115e67;
}

#primary-menu ul ul:not(.mega-menu-column) {
    background-color: #115e67;
    border: 1px solid #115e67;
}

#primary-menu ul > li > a {
    color: #c4d600 !important;
}

#primary-menu ul li > a.header-button {
    background-color: #868686;
}

#primary-menu ul ul li:hover > a {
    background-color: #157782;
    color: #c4d600;
}

.bgcolor {
    background-color: #115e67 !important;
}

#copyrights,
#copyrights a {
    color: #c4d600;
}

a,
.spost .entry-title h4 a:hover {
    color: #115e67;
}

.entry:after {
    background-color: #115e67;
}

.slider-feature a:hover {
    color: #c4d600;
}

.button-dark {
    background-color: #115e67;
}

.button-dark:hover {
    background-color: #c4d600 !important;
}

#primary-menu ul li > a {
    padding: 24px 10px;
}

:root,
::selection {
    --themecolor: #115e67;
    background: #115e67;
}

.footer-wrapper {
    background: url('/template/images/footer.jpg') repeat bottom center / cover;
    padding: 35px 0 145px
}

@media (min-width: 768px){
    .col-md-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 30%;
        /* max-width: 30%; */
    }
}

.slider-element {
    min-height: 680px;
}

@media (max-width: 768px){
    .footer-wrapper {
        background: url('/template/images/footer-mobile.jpg') no-repeat top center;
        background-size: contain;
        padding: 100px 0 145px
    }

    .slider-element,
    .swiper-slide {
        min-height: 420px;
    }
}

@media (max-width: 540px){
    .footer-wrapper {
        background: url('/template/images/footer-mobile.jpg') no-repeat top center;
        background-size: contain;
        padding: 180px 0 145px
    }
}

.submitted_loader_wrapper {
    position: absolute;
    background: rgba(0,0,0,0.9);
    left: 0;
    top: 0;
    right:0;
    bottom:0;
    z-index: 9999999;
}

.submitted_loader_wrapper h2 {
    color:#fff;
    position: relative;
    display: block;
    text-align: center;
    margin:20% auto 10px;
}

.submitted_loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: block;
    position: relative;
    border-top: 3px solid #FFF;
    border-right: 3px solid transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    z-index: 999999999;
    margin:0 auto;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.form-control {
    font-weight: 300;
    font-size: 13px;
}

.checkbox-style-3-label {
    font-weight: 500;
}

input[type="checkbox"] {
    -webkit-appearance:none;
    height:1.5em;
    width:1.5em;
    cursor:pointer;
    position:relative;
    -webkit-transition: .10s;
    border-radius:4em;
    background-color: #ffffff;
    border: 1px solid #c6c09c;
    margin-bottom: -6px;
    margin-right: 3px;
}
input[type="checkbox"]:checked {
    background-color: #c6c09c;
}
input[type="checkbox"]:before, input[type="checkbox"]:checked:before {
    position:absolute;
    top:2px;
    left:0;
    width:100%;
    height:100%;
    line-height:1.25em;
    text-align: center;
    color:white;
}
input[type="checkbox"]:checked:before {
    content: '✔';
}