

/* ---------------------- Animations -------------------------- */
@keyframes animation-kf-zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 1;
  }
}
.animation-zoomIn {
  display: inline-block;
  animation-name: animation-kf-zoomIn;
  animation-duration: 2s;
  animation-iteration-count: 1;
}


@keyframes animation-kf-slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animation-slideInRight {
  display: inline-block;
  animation-name: animation-kf-slideInRight;
  animation-duration: 4s;
  animation-iteration-count: 1;
}



@keyframes animation-kf-scale-in-center {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.animation-scale-in-center {
    animation: animation-kf-scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1s both;
}



@keyframes animation-kf-rotate-in-center {
  0% {
    transform: rotate(-360deg);
    opacity: 1;
  }
  100% {
    transform: rotate(0);
    opacity: 1;
  }
}
.animation-rotate-in-center {
  animation: animation-kf-rotate-in-center 3s linear reverse ;
}


@keyframes animation-kf-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.animation-fade-in {
   animation: animation-kf-fade-in 3s ease-in 2s both;
}
/* ------------------------------ Fin Animations ---------------------- */



/*--------------------------  temoignage ----------------------------- */
.temoignage-carousel .owl-item .temoignage-text,
.temoignage-carousel .owl-item.center .temoignage-text * {
    transition: .5s;
}

.temoignage-carousel .owl-item.center .temoignage-text {
    background: #D81324 !important;
}

.temoignage-carousel .owl-item.center .temoignage-text * {
    color: #FFFFFF !important;
}



.temoignage-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    
}

.owl-carousel button.owl-dot {
  border: 1px solid #CCCCCC;
}


.temoignage-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    transition: .5s;
}

.temoignage-carousel .owl-dot.active {
    background: #D81324;
    border-color: #CCCCCC;
}
/*--------------------------  fin temoignage ----------------------------- */



/* -----------------  personalisation css jquery-datetimepicker  ------- */


.xdsoft_datetimepicker .xdsoft_calendar td,.xdsoft_datetimepicker .xdsoft_calendar th {
  width: 14.2857142%;
  background: #fdfcfc;
  border: 1px solid #ddd;
  color: #070707;
  font-size: 14px;
  text-align: right;
  vertical-align: middle;
  padding: 0;
  border-collapse: collapse;
  cursor: pointer;
  height: 25px;
}

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box >div >div {
  background: #fdfcfc;
  border-top: 1px solid #ddd;
  color: #666;
  font-size: 14px;
  text-align: center;
  border-collapse: collapse;
  cursor: pointer;
  border-bottom-width: 0;
  height: 25px;
  line-height: 25px;
}



/* -----------------  fin personalisation css jquery-datetimepicker  ------- */


/* ------------------- divers ------------------------- */
.bg-header {
  background: #4d126a;
}
.bg-titre-centre {
  background: #505870;
  
}
.bg-gris {
  background: #f2f4f5;
}
.rouge {
  color: #D81324;
}
.vert {
  color: green;
}
.bleu {
  color: rgb(16, 48, 112);
}
.blanc {
  color: white;
}

.bg_res_champ {
  color:white;
  background: #61546d;
}
.nav-tabs {
  border-width: 3px;
  border-top-width:3px;
  border-left-width:3px;
  border-right-width:3px;
}

.dropdown_menu a {
  display: block;
  padding: 0.5rem 1rem;
  color: white;
  text-decoration: none;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
  background-color: bg-header;
}

.dropdown_menu a:hover {
  color: rgb(35, 64, 211);
  background-color:bg-header;

}

.checkbox-lg {
  top: .8rem;
  scale: 1.4;
  margin-right: 0.7rem;
}

.font_size_12 {
  font-size: 12px;
}
 

/* ------------------- fin divers -------------------- */



/*----------- formulaire ------------*/
/*
.form-holder {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      min-height: 100vh;
}

.form-holder .form-content {
    position: relative;
    text-align: center;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    padding: 60px;
}

.form-content .form-items {
    border: 3px solid #fff;
    padding: 40px;
    display: inline-block;
    width: 100%;
    //min-width: 540px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    text-align: left;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.form-content h3 {
    color: #fff;
    text-align: left;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 5px;
}

.form-content h3.form-title {
    margin-bottom: 30px;
}

.form-content p {
    color: #fff;
    text-align: left;
    font-size: 17px;
    font-weight: 300;
    line-height: 20px;
    margin-bottom: 30px;
}


.form-content label, .was-validated .form-check-input:invalid~.form-check-label, .was-validated .form-check-input:valid~.form-check-label{
    color: #fff;
}

.form-content input[type=text], .form-content input[type=password], .form-content input[type=email], .form-content select {
    width: 100%;
    padding: 9px 20px;
    text-align: left;
    border: 0;
    outline: 0;
    border-radius: 6px;
    background-color: #fff;
    font-size: 15px;
    font-weight: 300;
    color: #8D8D8D;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-top: 16px;
}




.form-content textarea {
    position: static !important;
    width: 100%;
    padding: 8px 20px;
    border-radius: 6px;
    text-align: left;
    background-color: #fff;
    border: 0;
    font-size: 15px;
    font-weight: 300;
    color: #8D8D8D;
    outline: none;
    resize: none;
    height: 120px;
    -webkit-transition: none;
    transition: none;
    margin-bottom: 14px;
}

.form-content textarea:hover, .form-content textarea:focus {
    border: 0;
    background-color: #ebeff8;
    color: #8D8D8D;
}

.mv-up{
    margin-top: -9px !important;
    margin-bottom: 8px !important;
}

.invalid-feedback{
    color: #ff606e;
}

.valid-feedback{
   color: #2acc80;
}


.btn-primary{
    background-color: #6C757D;
    outline: none;
    border: 0px;
     box-shadow: none;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active{
    background-color: #495056;
    outline: none !important;
    border: none !important;
     box-shadow: none;
}
*/
/*----------- fin formulaire ------------*/





/*----------- datatable liste reservations ------------*/
/*
table.dataTable tbody td {
	border-bottom: 1px solid #ccc;
} 
table.dataTable tbody tr.odd td {
	background-color: #fafafa;
}
*/
table.dataTable td.details-control {
	padding: 0 10px 0 10px;
  /*display: flex; align-items: center; justify-content: center;*/

}
table.dataTable td.details-control:before {
	/*content: '\F4F9';*/
  content: '+';
	cursor: pointer;
  font-weight: 700;
	font-size: 30px;
	color: #2ca5cd;
}
table.dataTable tr.shown td.details-control:before {
	content: '-';
  cursor: pointer;
  font-weight: 700;
	font-size: 30px;
	color: white;
}
table.dataTable td table.sub-data-table tr td {
	/*padding: 5px;*/
}

table.dataTable td table.sub-data-table tr:nth-child(2) td {
	vertical-align: top;
}


/*----------- fin datatable liste reservations ------------*/
