@media (max-width: 500px){
  #message {
      position: fixed;
      top: 0;
      right: 0;
      width: 100%;
      margin: 0 auto;
  }
  #inner-message {
      margin: 0 auto;
  }
}
@media (min-width: 600px){
  #message {
      position: fixed;
      top: 0;
      right: 0;
      width: 30%;
      margin: 0 auto;
  }
  #inner-message {
      margin: 0 auto;
  }
}
form img{
width: 300px;
height: 300px;
}
.coment {
  position: relative;
   bottom: 100px;/* Mueve el div hacia arriba */
  left: 200px; /* Mueve el div hacia la derecha */
}
@media screen and (max-width: 768px) {
  .coment {
      width: 100%;
      float: none;
  }
}


#semanaa{
  justify-content: center;
    align-items: center;
  display: flex;
}
#succes{
width: 30%;
}
select, option {
  color: black;
  background-color: white;
}
/*
Full screen Modal 
*/
.fullscreen-modal .modal-dialog {
  margin: 0;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}
@media (min-width: 768px) {
  .fullscreen-modal .modal-dialog {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .fullscreen-modal .modal-dialog {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .fullscreen-modal .modal-dialog {
     width: 1170px;
  }
}

.loader {
	border: 16px solid #b8b8b8;
	border-radius: 50%;
	border-top: 16px solid rgb(0, 119, 255);
	border-bottom: 16px solid rgb(0, 119, 255);
	width: 120px;
	height: 120px;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
	margin:auto;
	left:0;
	right:0;
	top:0;
	bottom:0;
	position:fixed;
	z-index: 10000;
  }
  
  @-webkit-keyframes spin {
	0% { -webkit-transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
  }
  