@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap");

.modal-info {
  display: none;
  position: fixed;
  justify-content: center; /* Centra horizontalmente */
  align-items: center;    /* Centra verticalmente */    
  border-radius: 4px;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}
.modal-content-info {
  background-color: #fefefe;
  position: absolute;
  border-radius:15px;
  padding: 10px 50px 30px;
  border: 1px solid #888;
  margin-top: 90px;
  width: 35%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
   
}
.close_window_info {
  color: #aaaaaa;
  float: right;
  margin-right: 20px;
  font-size: 28px;
  line-height: 3.0rem;
  font-weight: bold;
  &:hover {
	  color: black;
	  text-decoration: none;
	  cursor: pointer;
	}
	&:focus {
	  color: black;
	  text-decoration: none;
	  cursor: pointer;
  }
}

#titleInfo {
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
  margin-top: 2%;
  align-items: center;
  text-align: center;
}

#formInfo {
    display: flex;
    flex-direction: column;
}

#formInfo label {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

#formInfo select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  font-size: 1rem;
  font-family: "Lexend" !important;
  font-weight: 400;
  padding: 2px 5px;
  margin-left: 15px;
  color: rgb(55, 55, 55);
  width: 100%;
  height: 30px;
  border: 0em;
  background-color: #FFFFFF;
}

option{
  background-color: #FFFFFF;
}

#formInfo input {
   width: 100%;
   font-size: 1rem;
    background: transparent;
    border: 0;
    outline: none;
    padding: 18px 15px;
    color: rgb(55, 55, 55);
}

#formInfo input::placeholder{
  color: #5d5f5fa7;
}


#formInfo button {
    background-color: #c25621;
    color: white;
    padding: 10px 15px 10px;
    margin-top: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    align-content: center;
    text-align: center;
    letter-spacing: 0.2em;
}

#formInfo button:hover {
    background-color: rgba(204, 185, 131, 1);
}

#formInfo span{
  font-size: 0.8rem;
}

.input-info{
    background-color: #FFFFFF;
    font-size: 1rem;
    margin: 15px 0;
    border-radius: 3px;
    display: flex;
    align-items: center;
    transition: max-height 05s;
    overflow: hidden;
  }

.btnregistro-info{
    font-size:1rem;
    background-color:#c25621;
    color:#FFFFFF;
    height: 40px;
    width: 130px;
    line-height: 0px;
    align-content: center;
    text-align: center;
    border-radius: 8px;
    border: 0;
    outline: 0;
    box-shadow:
    inset 2px 2px 2px rgb(255 255 255 / 60%),
    inset -1px -1px 1px rgb(0 0 0 / 60%);
    cursor: pointer;
    transition: background-color 2s 500ms;

  }

.btnregistro-info:hover {
  background-color: rgba(204, 185, 131, 1);
  color: rgb(52, 50, 50);
}

.btnregistro-info:active {
  transform: scale(0.9); /* Reduce ligeramente el tamaño del botón cuando se hace clic */
}


::-webkit-scrollbar {
  width: 10px;
  height: 8px;
}

::-webkit-scrollbar-track { background: var(--white); }

::-webkit-scrollbar-thumb {
  background: var(--cadet);
  border-left: 2px solid var(--white);
}



 

@media screen and (max-width:600px) {

.modal-info {
  width: 100%;
  height: 100%;
  margin-top: 5px;
}

.modal-content-info {
  background-color: #fefefe;
  position: absolute;
  border-radius:15px;
  padding: 10px 15px 30px;
  border: 1px solid #888;
  margin-top: 15px;
  width:90%;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
   
}


}

@media (min-width: 600px) {
.modal-content-info {
  background-color: #fefefe;
  position: absolute;
  border-radius:15px;
  padding: 10px 45px 30px;
  border: 1px solid #888;
  margin-top: 25px;
  width: 30%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

}
 
}

@media (min-width: 768px) {

  
  }

@media (min-width: 992px) {


}

@media (min-width: 1200px) {

}