/* Estilo del contenedor */
.custom-select-container {
   position: relative;
   display: inline-block;
   width: 100%;
 }

 /* Flecha personalizada */
 .custom-select-container::after {
   /* content: '\25BC';
   position: absolute;
   right: 15px;
   top: 50%;
   transform: translateY(-50%);
   pointer-events: none;
   font-size: 8px;
   color: #666; */
   font-family: Font Awesome\ 5 Pro;
     content: "\f0d7";
     display: block;
     margin-top: -5px;
     pointer-events: none;
     position: absolute;
     right: 18px;
     top: 50%;
     font-weight: 600;
     height: 10px;
     line-height: 10px;
     transition: all .15s ease-in-out;
     width: 5px;
 }
 .custom-select-container label{
   display: block;
   padding-bottom: 10px;
   text-align: left;
   font-weight: 500;
   font-size: 13px;
   color: #70778b;
 }

 /* Estilos al enfocar el select */
 .custom-select:focus {
   outline: none;
   border-color:  #e5e7f2;
   box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
   color: #7d93b2
 }

 /* Para versiones no compatibles con "appearance" */
 .custom-select::-ms-expand {
   display: none; /* Oculta la flecha predeterminada en IE */
 }

 .relative{
   position: relative;
 }
 .validation-error-label{
  width: 100%;
  color:chocolate;
  font-size: 12px;
  margin: 10px 0;

 }

#reserv-message{
  padding: 1em;
  width: 100%;
  /* background-color: #fbaeb5; */
  color: #7b3a1c;
  font-size: 1.5em;
  font-weight: bold;
}

.icon-eye{
  font-size: 0.87rem;
    width: 28px;
    position: absolute;
    right: 20px;
    border: solid 1px #cccccc54;
    top: 39%;
    transform: translateY(-50%);
    cursor: pointer;
    padding: 6px 6px 4px 6px;
    text-align: center;
    border-radius: 50%;
}
.icon-eye:hover{
  background-color: #4b3021;
  color:#FFF;
  border:solid 1px #4b3021;
}

.w50{
  width: 50%;
}
.m-auto{
  margin: 0 auto;
}
.mt-10{
  margin-top: 10px;
}
input.error{
  background-color: #f6d3d3!important;
}

.text-small{
  font-size:11px;
}

.ml-1{
  margin-left: 10px;
}

.text-warning{
  color: #b56d15;
}

.text-bold{
  font-weight: bold;
}
.fz-1-5{
  font-size: 1.5em;
}
.text-white{
  color: #FFF!important;
}