/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #d26605;
  color: #fff;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 5px;
  width: 80%; /* Could be more or less, depending on screen size */
}

.border-content {
  border: 2px solid #fff;
  padding: 10px;
}

/* The Close Button */
.close_modal {
  color: #fff;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close_modal:hover,
.close_modal:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* Alerta de error en formulario */

.ocr-alert-error {
  color: #dc3232;
  font-size: 1em;
  font-weight: normal;
  display: block;
}


/* Formulario */
.ocr-form-control-wrap {
	position: relative;
}

/*remueve flechas css*/

/* Chrome, Safari, Edge, Opera */
input.ocr-num-no-arrows::-webkit-outer-spin-button,
input.ocr-num-no-arrows::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input.ocr-num-no-arrows[type=number] {
  -moz-appearance: textfield;
}