/* Add here all your CSS customizations */
div.dataTables_wrapper div.dataTables_filter{
	text-align: left !important;
}

.dataTables_filter input[type="search"]{
	height: 38px !important;
}

@media (max-width: 992px){
	div.dataTables_wrapper div.dataTables_filter input{
		display: block !important;
		margin-left:  0 !important;
	}
}

		[type="radio"]:checked,
		[type="radio"]:not(:checked) {
		    position: absolute;
		    left: -9999px;
		}
		[type="radio"]:checked + label,
		[type="radio"]:not(:checked) + label
		{
		    position: relative;
		    padding-left: 28px;
		    cursor: pointer;
		    line-height: 20px;
		    display: inline-block;
		}
		[type="radio"]:checked + label:before,
		[type="radio"]:not(:checked) + label:before {
		    content: '';
		    position: absolute;
		    left: 0;
		    top: 0;
		    width: 18px;
		    height: 18px;
		    border: 1px solid black;
		    border-radius: 100%;
		    background: #fff;
		}
		[type="radio"]:checked + label:after,
		[type="radio"]:not(:checked) + label:after {
		    content: '';
		    width: 12px;
		    height: 12px;
		    background: #ed1c24;
		    position: absolute;
		    top: 3px;
		    left: 3px;
		    border-radius: 100%;
		    -webkit-transition: all 0.2s ease;
		    transition: all 0.2s ease;
		}
		[type="radio"]:not(:checked) + label:after {
		    opacity: 0;
		    -webkit-transform: scale(0);
		    transform: scale(0);
		}
		[type="radio"]:checked + label:after {
		    opacity: 1;
		    -webkit-transform: scale(1);
		    transform: scale(1);
		}

.container-input input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.container-input:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container-input input:checked ~ .checkmark {
  background-color: transparent;
  border: 1px solid #ed1c24;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container-input input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container-input .checkmark:after {
  left: 8px;
  top: 4px;
  width: 8px;
  height: 13px;
  border: solid #ed1c24;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.container-input {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.cars-in-parking .svg-options a:hover{
	text-decoration: none !important;
}

.cars-in-parking svg{
	width: 58px !important;
}

.cars-in-parking .svg-options-not-finished svg .st0{
	fill: #ed1c24;
}
.cars-in-parking .svg-options-finished svg .st0{
	fill: #5bc0de;
}

.cars-in-parking .svg-options-lavage-not-finished svg .st11{
	fill: #ed1c24;
}

.cars-in-parking .svg-options-finished-lavage svg .st11{
	fill: #5bc0de;
}

/* Newsletter PopUp */
.newsletter-popup{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999999999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.newsletter-popup .newsletter-form{
    min-width: 50%;
    max-width: 50%;
    background-color: #fff;
    border-radius: 15px;
    background-image: url(/img/newsletter-plane.jpeg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    overflow: hidden;
}

.newsletter-popup .newsletter-form .inputs{
    display: flex;
    flex-direction: column;
    padding: 2rem 2rem 2rem 2rem;
}

.newsletter-popup .newsletter-form .text{
   display: flex;
   align-items: flex-end;
   background-color: rgba(0, 0, 0, 0.3);
   padding: 2rem 2rem 2rem 2rem;
   position: relative;
}

.newsletter-popup .newsletter-form .text p{
    line-height: 24px;
    font-size: 18px;
}

.newsletter-popup .newsletter-form .inputs input{
    margin-bottom: 2rem;
    height: 35px;
    background-color: #fff;
    border-radius: 5px;
    outline: 0;
    color: #7F7F7F;
    border: 1px solid #7F7F7F;
    padding-left: 10px;
    padding-right: 10px;
}

.newsletter-popup .newsletter-form .inputs input::placeholder{
    color: #7F7F7F; 
}

.newsletter-popup .newsletter-form .inputs input:last-child{
    margin-bottom: 0;
}

.newsletter-popup .newsletter-form .inputs .button{
    height: 35px;
    border: 1px solid #7F7F7F;
    color: #000;
    outline: 0;
    background-image: linear-gradient(to right, #C1D4DE , #9CB7C7);
}

.newsletter-popup .newsletter-form .close-popup{
    position: absolute;
    right: 2rem;
    top: 1rem;
    border: 1px solid #000;
    width: 25px;
    height: 25px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

@media (max-width: 992px) and (min-width: 767px){
    .newsletter-popup .newsletter-form{
        min-width: 80%;
        max-width: 80%;
    }
}

@media (max-width: 767px){
    .newsletter-popup .newsletter-form{
        min-width: 90%;
        max-width: 90%;
    }

    .newsletter-popup .newsletter-form .text{
       order: 1;
    }

    .newsletter-popup .newsletter-form .inputs{
       order: 2;
    }
}
/* End Newsletter PopUp */