﻿/* ==============================================================
   Calendrier
   ============================================================== */
/* Calandrier */
.calandrier, .calandrier-details {
    padding: 20px;
    background-color: var(--color-bg);
    margin-top: 2%;
    color: white;
}
.calandrier{
	width:80%;
	border-top-left-radius:10px;
	border-bottom-left-radius:10px;
	border-right: 1px solid white;
}
.calandrier-details{
	width:40%;
	border-top-right-radius:10px;
	border-bottom-right-radius:10px;
}
@media screen and (max-width: 600px){
  .calandrier{
    width: 100%;
    border-top-left-radius:unset;
	  border-bottom-left-radius:unset;
	  border-right:unset;
    border-radius: var(--radius-card)
  }
  .calandrier-details{
    width:100%;
    border-top-right-radius:unset;
    border-bottom-right-radius:unset;
    border-radius: var(--radius-card);
  }
}
.calandrier-details h1{
	text-align: center;
}
.ensemble-calandrier{
	display:flex;
	margin-left: 3%;
	margin-right: 3%;
}
@media screen and (max-width: 600px){
  .ensemble-calandrier{
    display: block;
    padding: 20px;
    margin-bottom: 50px;
    margin-left: 10px;
    margin-right: 10px;
  }
}
.semaine{
  display: flex;
}
.lundi , .mardi , .mercredi , .jeudi , .vendredi, .samedi , .dimanche{
  border-color:var(--color-primary);
  border: solid 1px;
  width: 100%;
}
.moisactuel{
  margin-bottom: 20px;
}
h1.moisactuel{
  text-align: center;
}
.jour{
  text-align: center;
  padding: 10px;
  border-bottom: solid 1px;
  background-color: #003b56;
  font-size: 12px;
}
@media screen and (max-width: 600px){
  .jour{
    padding: 5px;
  }
}
.heure{
  text-align: center;
  border-bottom: solid 1px white;
  font-size: 12px;
  padding: 1vh;
  color:rgba(19,19,19);
  min-height: 20px;
}
.heure_repas{
  text-align: center;
  border-bottom: solid 1px white;
  font-size: 12px;
  padding: 1vh;
  color:rgba(96,96,96);
  background-color: rgba(96,96,96);
  min-height: 20px;
}
.evenementdujour {
  padding: 20px 0;
  background-color: #003b56;
  border-radius: var(--radius-card);
  margin-top: 10px;
  margin-bottom: 10px;
}
.avenir{
  margin-top: 10px;
}
.infosevenementdujour{
  margin-left: 10px;
}.rdv, .rdvactuel, .rdvpasse, .rdvavenir{
  margin-top: 5px;
}
p.titrerdv {
  font-size: 20px;
}
.rdvactuel{
  background-color: #003b56;
  border-radius: var(--radius-card);
}
.rdvinfos{
  margin-left: 30px;
}
.entete-calandrier {
  display: flex;
  align-items: baseline;
  justify-content: center;
}
.dot-calandrier{
  height: 20px;
  width: 20px;
  background-color: var(--color-bg);
  border-radius: 50%;
  display: inline-block;
  margin-left: 20px;
  margin-right: 20px;
  border: 1px solid white;
  color: white;
}
.dot-calandrier:hover{
  background-color: #003b56;
}
.formulaire-event{
  width: 80%;
  background-color: var(--color-bg);
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
	margin-bottom: 50px;
	padding: 10px;
  border-radius: var(--radius-panel);
	color: white;
}
.champs-event, .time-event, .type-event, .select-prevision{
  padding: 10px 20px;
  border: 1px solid rgb(0, 127, 255);
  background-color: transparent;
  color: gray;
  outline: none;
}
.form-titre-event {
  text-decoration: underline;
  margin-top: 5px;
  margin-bottom: 5px;
}