@charset "UTF-8";
.form-control::placeholder {
  color: #cfd0d0;
  opacity: 1;
}

.text-cbl-gray {
  color: #aaa;
}

:root {
  --bg: hsl(223, 10%, 90%);
  --fg: hsl(223, 10%, 10%);
  --primary: hsl(223, 90%, 55%);
  --yellow: hsl(38, 90%, 55%);
  --yellow-t: hsla(38, 90%, 55%, 0);
  --bezier: cubic-bezier(0.42,0,0.58,1);
  --trans-dur: 0.3s;
}

.stars-rating-label--visible {
  display: block;
}

.stars-rating-label--hidden {
  display: none;
}

.rating__star1 {
  display: inline-block;
  cursor: pointer;
}

.rating {
  font-size: calc(24px + 6 * (100vw - 320px) / 960);
  margin: auto;
  text-align: center;
}
.rating .prechecked {
  color: orange;
  transition-duration: 0.5s;
}
.rating .checked {
  color: orange;
}

@keyframes starRing {
  from, 20% {
    animation-timing-function: ease-in;
    opacity: 1;
    r: 8px;
    stroke-width: 16px;
    transform: scale(0);
  }
  35% {
    animation-timing-function: ease-out;
    opacity: 0.5;
    r: 8px;
    stroke-width: 16px;
    transform: scale(1);
  }
  50%, to {
    opacity: 0;
    r: 16px;
    stroke-width: 0;
    transform: scale(1);
  }
}
@keyframes starFill {
  from, 40% {
    animation-timing-function: ease-out;
    transform: scale(0);
  }
  60% {
    animation-timing-function: ease-in-out;
    transform: scale(1.2);
  }
  80% {
    transform: scale(0.9);
  }
  to {
    transform: scale(1);
  }
}
@keyframes starStroke {
  from {
    transform: scale(1);
  }
  20%, to {
    transform: scale(0);
  }
}
@keyframes starLine {
  from, 40% {
    animation-timing-function: ease-out;
    stroke-dasharray: 1 23;
    stroke-dashoffset: 1;
  }
  60%, to {
    stroke-dasharray: 12 12;
    stroke-dashoffset: -12;
  }
}
.animate {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s linear, opacity 0.3s linear;
}

.appear {
  animation: 1s fadeIn forwards;
}

.stars-rating-thankyou {
  visibility: hidden;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}
.cbl-display-none {
  display: none;
}

#sectionmain {
  padding-bottom: 40px;
  background-color: #fff;
}

#jitsiConferenceFrame0 {
  height: 100%;
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: hidden;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
}

#section0 {
  padding-top: 80px;
}

#section1, #section2, #footer1 {
  padding-top: 20px;
}

/*
.bg-footer {
  background-color: base.$footer-bg-color !important;
}
*/
/*
.navbar-custom {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: base.$navbar-bg-color;
}*/
.navbar-custom .navbar-brand {
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.1rem;
  font-weight: 700;
}

.navbar-custom .navbar-nav .nav-item .nav-link {
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
}

.btn-secondary {
  background-color: #ffccef;
  border-color: rgba(255, 87, 170, 0.87);
  color: rgba(255, 87, 170, 0.87);
}

.btn-secondary:hover, .btn-secondary:active {
  background-color: #ff69bd;
  border-color: rgba(255, 87, 170, 0.87);
  color: #ffffff;
}

.btn-secondary:not(:disabled):not(.disabled).active, .btn-secondary:not(:disabled):not(.disabled):active, .show > .btn-secondary.dropdown-toggle {
  background-color: #ff69bd;
  border-color: rgba(255, 87, 170, 0.87);
  color: #ffffff;
}

.double-underline {
  text-decoration: underline double;
  -webkit-text-decoration: underline double;
}

/*
input[type="checkbox"]:required {
  display: none;
}

input[type="checkbox"]:required:invalid + label::before {
  content: "\2610";
  padding-right: 0.2em;
  font-size: 1.6em;
  color: #dc3545;
}
input[type="checkbox"]:required:valid + label::before {
  content: "\2611";
  padding-right: 0.2em;
  font-size: 1.6em;
  color: green;
}
*/
/*-------------------------
	Inline help tip
--------------------------*/
/*
.help-tip{
  position: absolute;
  top: 18px;
  right: 18px;
  text-align: center;
  background-color: #BCDBEA;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 14px;
  line-height: 26px;
  cursor: default;
}

.help-tip:before{
  content:'?';
  font-weight: bold;
  color:#fff;
}

.help-tip:hover p{
  display:block;
  transform-origin: 100% 0%;

  -webkit-animation: fadeIn 0.3s ease-in-out;
  animation: fadeIn 0.3s ease-in-out;

}

.help-tip p{
  display: none;
  text-align: left;
  background-color: #1E2021;
  padding: 20px;
  width: 300px;
  position: absolute;
  border-radius: 3px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  right: -4px;
  color: #FFF;
  font-size: 13px;
  line-height: 1.4;
}

.help-tip p:before{
  position: absolute;
  content: '';
  width:0;
  height: 0;
  border:6px solid transparent;
  border-bottom-color:#1E2021;
  right:10px;
  top:-12px;
}

.help-tip p:after{
  width:100%;
  height:40px;
  content:'';
  position: absolute;
  top:-40px;
  left:0;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity:0;
    transform: scale(0.6);
  }

  100% {
    opacity:100%;
    transform: scale(1);
  }
}

@keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:100%; }
}
*/
.help-tip {
  display: inline-block;
  background: #86c7ff;
  border-radius: 50%;
  width: 20px;
  width: 20px;
  height: 20px;
  padding: 2px 1px 0 0;
  margin-left: 10px;
  text-align: center;
  font: 14px Arial, sans-serif;
  font-weight: normal;
  font-weight: bold;
  color: #3454b1;
  cursor: pointer;
}

.label-list-item {
  display: block;
  margin-bottom: 0 !important;
}

/**
 * Utilisé dans la liste des factures
 */
.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-top-width: 1px;
  margin-bottom: 1em;
  border-radius: 0.25rem !important;
}

.list-group-item + .list-group-item {
  border-top-width: 1px !important;
  border-radius: 0.25rem !important;
}

#calendar_sel, #bloc-coord {
  display: none;
}

#calendar_jours {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  position: relative;
}

.jours_disponibles {
  -webkit-flex-grow: 1;
  -webkit-flex-shrink: 0;
  -webkit-flex-basis: 0px;
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 0px;
  margin: 0 7px;
}

.jours_disponibles_title .joursemaine {
  font-weight: bold;
}

.jours_disponibles_creneau_vide:hover {
  background: #fef300;
  border-radius: 5px;
  -text-decoration: underline;
  border: 1px solid #ffd700;
}

.jours_disponibles_creneau_plein {
  padding: 2px;
  border-radius: 4px;
  text-align: center;
  margin: 10px 0;
  height: 40px;
  line-height: 36px;
  cursor: pointer;
  user-select: none;
  -webkit-transition: background-color 150ms, color 150ms;
  transition: background-color 150ms, color 150ms;
  background-color: #c6c2c6;
  font-size: large;
}

.jours_disponibles_creneau_vide {
  margin: 10px 0;
  height: 40px;
  line-height: 36px;
  padding: 2px;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
  user-select: none;
  -webkit-transition: background-color 150ms, color 150ms;
  transition: background-color 150ms, color 150ms;
  background-color: #b2d2fa;
  font-size: large;
  border: 1px solid #9dc1e1;
}

.jours_padding {
  padding: 2px;
  border-radius: 4px;
  text-align: center;
  margin: 10px 0;
  height: 40px;
  line-height: 36px;
  user-select: none;
  background-color: #ffffff;
  font-size: 70px;
  font-width: bold;
  color: #e6e6e6;
}

#rdv-message {
  background-color: rgb(232, 232, 232);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 52px;
  left: 0;
  right: 0;
  bottom: 0;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.calendar_button_next_previous {
  cursor: pointer;
}

#calendar-modifie-rdv {
  text-decoration: underline;
  color: darkblue;
  cursor: pointer;
}

@media only screen and (max-width: 600px) {
  #cbl-nav-subtitle {
    display: none;
  }
}
/* HIDE RADIO */
[type=radio] {
  position: absolute;
  opacity: 0;
}

/* IMAGE STYLES */
#captcha [type=radio] + img {
  cursor: pointer;
  border: 2px solid #fff;
}

/* CHECKED STYLES */
#captcha [type=radio]:checked + img {
  border: 2px solid #0069d9;
}

#calendar_jours {
  background-color: #fff;
}

#remplissage img {
  max-width: 400px;
  width: 100%;
}
#remplissage {
  width: 100%;
  text-align: center;
  margin-top: 100px;
  margin-bottom: 100px;
}

.cbl-timer {
  background-color: #071726;
  color: white;
  font-size: 2em;
  padding: 0.2em;
  margin: 0.2em;
  border-radius: 4px;
  display: inline-block;
  width: 120px;
  text-align: center;
  background: rgb(11, 2, 11);
  background: linear-gradient(180deg, rgb(11, 2, 11) 0%, rgb(55, 55, 55) 50%, rgb(7, 0, 8) 100%);
}

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