/******************************************** CALENDRIER *******************************************/
@media screen and (max-width: 992px) {
  .summary {
    box-shadow: 0px 0px 5px gray, 0px 0px 5px gray !important;
  }
}
.modal_calendar, .hours, .summary {
  background: whitesmoke;
  position: fixed;
  left: 0px;
  top: 85px;
  right: 0px;
  margin: auto;
  z-index: 1;
  width: 95%;
  max-width: 700px;
  border-radius: 3px;
  color: white;
  box-shadow: 3px 3px 3px gray;
}

.modal_calendar .prev_month {
  position: absolute;
  left: 50px;
  top: 17px;
  width: 20px;
  height: 20px;
  border-left: none;
  border-top: none;
  border-right: 3px #fff solid;
  border-bottom: 3px #fff solid;
  transform: rotate(130deg);
  cursor: pointer;
}
.modal_calendar .next_month {
  position: absolute;
  right: 50px;
  top: 17px;
  width: 20px;
  height: 20px;
  border-left: none;
  border-top: none;
  border-right: 3px #fff solid;
  border-bottom: 3px #fff solid;
  transform: rotate(-40deg);
  cursor: pointer;
}
.modal_calendar .month {
  width: 99%;
  margin: auto;
  font-weight: bold;
  text-align: center;
  background: #558c55;
  padding: 10px;
  margin-top: 3px;
}
.modal_calendar .days {
  padding: 15px 10px;
}
.modal_calendar .days table {
  width: 100%;
  text-align: center;
}
.modal_calendar .days table th {
  color: #558c55;
}
.modal_calendar .days table td.active {
  cursor: pointer;
}
.modal_calendar .days .day {
  display: inline-block;
  width: 100%;
  text-align: center;
  background: #558c55;
  border: 6px solid whitesmoke;
}

.hours {
  text-align: center;
  border-top: 1px solid #558c55;
  padding: 5px;
  overflow: auto;
  height: auto;
  max-height: 45%;
}
.hours .hour {
  display: inline-block;
  background: #558c55;
  padding: 5px 15px;
  border-radius: 5px;
  cursor: pointer;
  margin: 5px;
}
.hours .disabled {
  background: lightgray !important;
  cursor: initial;
}
.hours .selected {
  background: #484848 !important;
}

.summary {
  text-align: center;
  color: #484848;
  padding: 5px;
}
.summary .prev_summ {
  position: absolute;
  left: 20px;
  top: 17px;
  width: 20px;
  height: 20px;
  border-left: none;
  border-top: none;
  border-right: 3px #558c55 solid;
  border-bottom: 3px #558c55 solid;
  transform: rotate(130deg);
  cursor: pointer;
}
.summary select, .summary input {
  border-radius: 5px;
  border: 1px solid transparent;
}
.summary select {
  padding: 3px 5px;
}
.summary .summ h5 {
  padding: 20px 0px;
}
.summary .form {
  border-bottom: 1px solid #817669;
  border-top: 1px solid #817669;
  padding-bottom: 20px;
}
.summary .form .field_form {
  width: 50%;
  margin: auto;
}
.summary .payment {
  width: 50%;
  margin: auto;
  margin-top: 25px;
  overflow: auto;
  height: auto;
  max-height: 30vh;
}

.disable .day {
  background: lightgray !important;
  cursor: initial;
}

.selected .day {
  background: #484848 !important;
}

/********* Modal pour afficher les messages *********/
.modal_message {
  position: fixed;
  left: 0px;
  top: 20%;
  right: 0px;
  background: whitesmoke;
  box-shadow: 0px 0px 10px grey;
  width: 50%;
  margin: auto;
  border-radius: 5px;
  z-index: 1;
  padding: 10px;
  text-align: center;
}
.modal_message .close_modal_message {
  padding: 3px 20px;
  border-radius: 5px;
  border: 1px solid gray;
  background: #558c55;
  color: white;
}

/********* Loader *********/
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.loader {
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
  width: 50px;
  height: 50px;
  border-top: 4px solid darkred;
  border-right: 4px solid darkred;
  border-radius: 50%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

/*# sourceMappingURL=style_calendar.css.map */
