/*====================================================================================================================
 * base.css
 *====================================================================================================================*/

/* Full height page: login */
body.full-height > .container {
    margin-top: 50px;
    margin-bottom: 50px;
}

@media screen and (min-width: 1024px) and (min-height: 850px) {
    body.full-height {
        min-height: 100vh;
    }

    body.full-height > .container {
        margin-top: 50px;
    }

    body.full-height footer {
        position: absolute;
        width: 100%;
        bottom: 0;
    }
}

/* Separators */
.grey-line-shadow {
    position: relative;
    height:1px;
    width: 100%;
    padding: 0;
    margin:0;
    overflow: hidden;
    border: 0;
    border-bottom: 1px solid #cacbc6;
}

.grey-dashed-line-shadow {
    position: relative;
    height: 2px;
    width: 100%;
    padding: 0;
    overflow: hidden;
    border: 0;
}

.grey-dashed-line-shadow:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 2px; /* height of the border top */
    width: 10px; /* width of the border top */
    background:  #fefffd; /* border color */
    box-shadow: /* top border */
            20px 0 0 #fefffd,  40px 0 0 #fefffd,  60px 0 0 #fefffd,  80px 0 0 #fefffd, 100px 0 0 #fefffd,
            120px 0 0 #fefffd, 140px 0 0 #fefffd, 160px 0 0 #fefffd, 180px 0 0 #fefffd, 200px 0 0 #fefffd,
            220px 0 0 #fefffd, 240px 0 0 #fefffd, 260px 0 0 #fefffd, 280px 0 0 #fefffd, 300px 0 0 #fefffd,
            320px 0 0 #fefffd, 340px 0 0 #fefffd, 360px 0 0 #fefffd, 380px 0 0 #fefffd, 400px 0 0 #fefffd,
            420px 0 0 #fefffd, 440px 0 0 #fefffd, 460px 0 0 #fefffd, 480px 0 0 #fefffd, 500px 0 0 #fefffd,
            520px 0 0 #fefffd, 540px 0 0 #fefffd, 560px 0 0 #fefffd, 580px 0 0 #fefffd, 600px 0 0 #fefffd,
            620px 0 0 #fefffd, 640px 0 0 #fefffd, 660px 0 0 #fefffd, 680px 0 0 #fefffd, 700px 0 0 #fefffd;
}

.green-dashed-line-shadow {
    position: relative;
    height: 2px;
    width: 100%;
    padding: 0;
    overflow: hidden;
    border: 0;
}

.green-dashed-line-shadow:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 2px; /* height of the border top */
    width: 10px; /* width of the border top */
    background: #849b55; /* border color */
    box-shadow: /* top border */
            20px 0 0 #849b55,  40px 0 0 #849b55,  60px 0 0 #849b55,  80px 0 0 #849b55, 100px 0 0 #849b55,
            120px 0 0 #849b55, 140px 0 0 #849b55, 160px 0 0 #849b55, 180px 0 0 #849b55, 200px 0 0 #849b55,
            220px 0 0 #849b55, 240px 0 0 #849b55, 260px 0 0 #849b55, 280px 0 0 #849b55, 300px 0 0 #849b55,
            320px 0 0 #849b55, 340px 0 0 #849b55, 360px 0 0 #849b55, 380px 0 0 #849b55, 400px 0 0 #849b55,
            420px 0 0 #849b55, 440px 0 0 #849b55, 460px 0 0 #849b55, 480px 0 0 #849b55, 500px 0 0 #849b55,
            520px 0 0 #849b55, 540px 0 0 #849b55, 560px 0 0 #849b55, 580px 0 0 #849b55, 600px 0 0 #849b55,
            620px 0 0 #849b55, 640px 0 0 #849b55, 660px 0 0 #849b55, 680px 0 0 #849b55, 700px 0 0 #fefffd;
}

.btn-green {
    color: #fff;
    background-color: #849b55;
    border-color: #849b55;
}

.btn-green:hover {
    color: #fff;
    background-color: #849b55;
    border-color: #849b55;
}

.btn-green:focus, .btn-green.focus {
    box-shadow: 0 0 0 0.2rem rgba(132, 155, 85, 0.5);
}

/* Link */
a {
    color: #849b55;
}

a:hover {
    color: #849b55;
}

/* List */
.list-group-item.active {
    color: #495057;
    border-color: rgba(132, 155, 85, 0.5);
    background-color: rgba(132, 155, 85, 0.5);
}

/* Form */
.form-control:focus {
    border-color: #849b55;
    box-shadow: 0 0 0 0.2rem rgba(132, 155, 85, 0.5);
}



/*====================================================================================================================
 * header.css
 *====================================================================================================================*/

body > header {
    background: #f4f4f4;
    border-bottom: 1px solid #c9c9c9;
}

.navbar-header {
    padding-right: 0px;
}

.navbar-toggler-icon .fa {
    font-size: 1.5em;
    color: #495057;
}

.navbar-brand {
    padding-top: 0rem;
    padding-bottom: 0rem;
}

.navbar-brand img {
    max-height: 65px;
}

/* Navigation */

header .nav-link {
    display: block;
    height: 65px;
    line-height: 65px;
    padding: 0 1rem;
}

header .navbar-text {
    padding-top: 0rem;
    padding-bottom: 0rem;
    height: 65px;
    line-height: 65px;
}

@media (max-width: 991.98px) {

    .navbar-header {
        padding: 0.5rem 1rem 0rem 1rem;
    }

    header .nav-link,
    header .navbar-text {
        display: block;
        height: 35px;
        line-height: 35px;
        padding: 0rem;

        border-top: 1px solid #c9c9c9;
        text-align: center;
    }
}

header .nav-link,
header .navbar-text a {
    text-transform: uppercase;
    color: #5e5e5e;
    font-weight: bold;
}

.navbar-admin {
    border-left: 1px solid #cacbc6;
    box-shadow: 5px 0 5px -5px inset #a8a8a8;
}

.navbar-text-admin:before {
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 1.2rem;
    content: "\f2c0";
    padding-right: 6px;
    color: #849b55;
}

.navbar-text-admin {
    padding-left: 0.75rem;
}









/*====================================================================================================================
 * footer.css
 *====================================================================================================================*/

/**
 * Top footer
 */
.footer-top {
    background: #f4f4f4;
}

/**
 * Bottom footer
 */
.footer-bottom  {
    background: #353831;
    color: #fefffd;
}

body > footer a {
    color: #fefffd;
}

.footer-infos,
.footer-social {
    display: inline-block;
}

.footer-infos-title,
.footer-social-title {
    font-size: 1.4rem;
    font-weight: bold;
}

.footer-infos hr {
    margin-top: 0.5rem;
    border-top: none;
}

.footer-infos ul {
    list-style-type: none;
    padding-left: 0;
}

.footer-social {
    /* float: right;*/
}

.footer-social-title {
    margin-bottom: 15px;
}

.footer-social-title a {
    position: relative;
    left: -38px;
}

.footer-social .fa {
    position: relative;
    top: 6px;
    font-size: 2rem;
}

.footer-social-title .fa {
    transform: rotate(-45deg);
    position: relative;
    top: 30px;
    right: 33px;
}

.footer-social ul {
    list-style: none;
    padding-left: 30px;
}

.footer-social a {
    line-height: 2rem;
}


/*====================================================================================================================
 * main.css
 *====================================================================================================================*/

.content-block hr {
    margin-top: 0rem;
}

.content-block-title {
    margin-top: 1rem;
    font-size: 1.75rem;
    font-weight: bold;
}

@media (min-width: 992px) {
    .content-block-title {
        font-size: 2rem;
    }
}

.content-block-title img {
    position: relative;
    top: -28px;
    right: -6px;
}

/**
 * Sidebar
 */

.site-sidebar h3 {
    background: #f5f5f5;
    text-align: center;
    padding: 8px 0;
    text-transform: uppercase;
    font-size: 1.25rem;
    font-weight: bold;
}

/*====================================================================================================================
 * page_home.css
 *====================================================================================================================*/

.homepage-slider {
    background: #cacbc6 url('../../bundles/app/images/homepage-1.png') no-repeat center center;
    height: 339px;
}

.homepage-slider hr {
    margin-top: 0;
}

.homepage-slider-title {
    text-transform: uppercase;
    font-weight: bold;
}

.homepage-slider-content-more {
    margin-top: 1rem;
}

.homepage-slider-title {
    font-size: 1.3rem;
    margin-top: 4.5rem;
}

@media (min-width: 576px) {
    .homepage-slider-title {
        font-size: 1.3rem;
        margin-top: 4.5rem;
    }
}

@media (min-width: 768px) {
    .homepage-slider-title {
        font-size: 1.75rem;
        margin-top: 4.5rem;
    }
}

@media (min-width: 992px) {
    .homepage-slider-title {
        font-size: 1.75rem;
        margin-top: 4.5rem;
    }
}

@media (min-width: 1200px) {
    .homepage-slider-title {
        margin-top: 4.5rem;
        font-size: 2.25rem;
    }
    .homepage-slider-content {
        font-size: 1.15rem;
    }
}

/*!
 * jQVMap Version 1.0 
 *
 * http://jqvmap.com
 *
 * Copyright 2012, Peter Schmalfeldt <manifestinteractive@gmail.com>
 * Licensed under the MIT license.
 *
 * Fork Me @ https://github.com/manifestinteractive/jqvmap
 */
.jqvmap-label
{
	position: absolute;
	display: none;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background: #292929;
	color: white;
	font-family: sans-serif, Verdana;
	font-size: smaller;
	padding: 3px;
}
.jqvmap-zoomin, .jqvmap-zoomout
{
	position: absolute;
	left: 10px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background: #000000;
	padding: 3px;
	color: white;
	width: 10px;
	height: 10px;
	cursor: pointer;
	line-height: 10px;
	text-align: center;
}
.jqvmap-zoomin
{
	top: 10px;
}
.jqvmap-zoomout
{
	top: 30px;
}
.jqvmap-region
{
  cursor: pointer;
}
.jqvmap-ajax_response
{
  width: 100%;
  height: 500px;
}

.responsive-map {
	width: 100%;
}