option[disabled]{
    background-color: red !important;
}

select{
    borde-bottom: 0px;
}

.modal-dialog {
    min-height: calc(100vh - 60px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: auto;
}
@media(max-width: 768px) {
  .modal-dialog {
    min-height: calc(100vh - 20px);
  }
}


.text-dark{
    color: black;
}

.centered {
  margin-left: auto;
  margin-right: auto;
  float: none;
  text-align: center;
}

.flyer-body{
   background-color: rgb(28, 28, 28);
   padding: 0px;
   margin: 0px;
}
.flyer-body container{
   background-color: rgb(28, 28, 28);
   padding: 0px;
   margin: 0px;
}


.flyer div a{
  padding: 10px;
  color: white;
}

.flyer-social-1{
	top:60%;
  position: absolute;
  display:block;
  padding:5px;
}

.flyer-social-2{
	top:75%;
  position: absolute;
  display:block;
  padding:5px;
}
.code{
  position:absolute;
  z-index:1;
  top:45%;
  left:25%;
  right:25%;
  font-size: 20px;
  border: solid 5px;
  color: white;
}

@media (min-width:761px) {
  .flyer {
     position: relative;
     z-index : 1;
     width: 600px;
  }
  .flyer .fa{
    font-size: 4em !important;
  }
}


@media (max-width:414px) {
  .flyer {
     position: relative;
     z-index : 1;
     width: 200px;
  }

  .flyer .fa{
    font-size: 2em !important;
  }

  .img-fluid{
    width: 75px;
    height: 75px;
   }
}

.zoom-in {
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -webkit-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  -ms-transition: all 250ms ease;
  transition: all 250ms ease;
}

.zoom-in:hover {
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
}

.select_container{
    margin-bottom: 10px;
}

/* RADIO BUTTONS*/
.inscription-list{
    padding-left: 0px !important;
}

.inscription-list li{
  margin-top: 0px !important;
  height: 100px !important;
  color: #AAAAAA;
  display: block;
  position: relative;
  width: 100%;
	border-bottom: 1px solid #333;
}

.inscription-list li input[type=radio]{
  position: absolute;
  visibility: hidden;
}

.inscription-list li label{
  display: block;
  position: relative;
  font-weight: 300;
  padding: 25px 25px 25px 60px;
  margin: 7px auto;
  width: 100% !important;
  text-align: left;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all 0.25s linear;
}

.inscription-list li:hover label{
	color: #FFFFFF;
}

.inscription-list li .check{
  display: block;
  position: absolute;
  border: 5px solid #AAAAAA;
  border-radius: 100%;
  height: 20px;
  width: 20px;
  top: 30px;
  left: 20px;
	z-index: 5;
	transition: border .25s linear;
	-webkit-transition: border .25s linear;
}

.inscription-list li:hover .check {
  border: 5px solid #FFFFFF;
}

.inscription-list li .check::before {
  display: block;
  position: absolute;
	content: '';
  border-radius: 100%;
  height: 14px;
  width: 14px;
  top: 3px;
  left: 3px;
  margin: auto;
	transition: background 0.25s linear;
	-webkit-transition: background 0.25s linear;
}

input[type=radio]:checked ~ .check {
  border: 5px solid #009ee3;
}

input[type=radio]:checked ~ .check::before{
  background: #009ee3;
}

.inscription-list, .inscription-list li, .inscription-list li label{
    margin-left: inherit !important;
}