.radio-btn-row {
/*  display: flex;*/
/*  flex-direction: row;*/
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 20px;
  margin: auto; 
  width: 100%; 
}

.radio-btn-wrapper {
  margin: 0px 4px;
}

.radio-btn {
  background-color: #FFFFFF;
  border: 2px solid #4A4A4A;
  color: #4A5362;
  font-size: 14px;
  line-height: 26px;
  outline: none;
  padding: 10px;
  border-radius: 4px;
  margin: 1rem; 
}

.radio-btn-selected {
  background-color: #FFFFFF;
  border: 2px solid #55BC7E;
  color: #55BC7E;
  font-size: 14px;
  line-height: 26px;
  outline: none;
  padding: 10px;
  border-radius: 4px;
  margin: 1rem; 
}

.radio-btn-disabled {
  background-color: #CCC;
  border: 2px solid #55BC7E;
  color: #55BC7E;
  font-size: 14px;
  line-height: 26px;
  outline: none;
  padding: 10px;
  border-radius: 4px;
  margin: 1rem; 
  opacity: 0.6;
  cursor: not-allowed;
}

/* error and success boxes */

.contentOverlay {
	background-color: rgb(0,0,0,0.2);
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 8;
	visibility: hidden; 
}

.explanationsOverlay {
	background-color: #ccc;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 900;
	padding: 1rem;
	visibility: hidden; 
}

.errorModal, .successModal, .drawModal {
   position: sticky;
/*   position: absolute;*/
/*   left: 0;*/
   bottom: 0;
   width: 100%;
   padding: 1rem;
 /*  visibility: hidden; */
	display: none; 
}

.errorModal {
   background-color: var(--redVeryLight);
/*   border-color: red;
   border-inline: 5px solid var(--redDark);*/
   z-index: 12;
}

.errorModal > link {
color: #fff;
}

.drawModal {
   background-color: var(--blueVeryLight);
/*   border-color: red;
   border-inline: 5px solid var(--redDark);*/
   z-index: 12;
}

.successModal {
   background-color: var(--greenVeryLight);
/*   border-color: green;
   border-inline: 5px solid var(--greenDark);*/
   z-index: 10;
}

.endModal {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #ffc;
/*  visibility: hidden; */
	display: none; 
  z-index: 10;
}

.errorModal.active, .successModal.active, .contentOverlay.active, .explanationsOverlay.active, .endModal.active {
	visibility: visible;
	display: block; 
}

/*
#enonce {
	position: absolute;
}
*/
.arrow {
  position: absolute;
  left: 0px;
  top: 0px;
}

/* BOOTSTRAP */

#error .modal-content {
    background-color: rgb(248, 215, 218);
/*	background-color: var(--bs-alert-bg);  Je ne sais pas pourquoi ça ne marche pas */
 }

#success .modal-content {
    background-color: rgb(209, 231, 221);
/*	background-color: var(--bs-alert-bg);  Je ne sais pas pourquoi ça ne marche pas */
 }

#draw .modal-content {
    background-color: rgb(204, 233, 255);
/*	background-color: var(--bs-alert-bg);  Je ne sais pas pourquoi ça ne marche pas */
 }


