.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin-bottom: 20px;
}

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 44px;
  /*padding: 6px 16px;*/
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.custom-control-label::before,
.custom-file-label,
.custom-select {
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  margin-left: 3px;
  font-weight: 400;
  color: #495057;
  background-color: #fff;
  border-bottom: 1px solid #ced4da;
  padding-top: 5px;
}

.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  padding: 6px 15px 8px;
  border-radius: 4px;
  font-size: 15px;
  line-height: 1.42857143;
  color: white;
  background-color: #01aae6;
  border-left: inherit;
  content: "CARGAR";
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16), 0 2px 10px rgba(0, 0, 0, 0.12);
}

.resumable-hidden {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 1px;
  height: 1px;
}

.custom-file-label {
  overflow: hidden;
}

input[type=number] {
  -moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

h1.error-code {
  font-family: monospace;
  font-weight: 600;
  font-size: 150px;
}

.unselectable {
  cursor: default !important;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.icn-spinner {
  -webkit-animation: spin-animation 2s linear infinite;
          animation: spin-animation 2s linear infinite;
  display: inline-block;
}

@-webkit-keyframes spin-animation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes spin-animation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

