/* ----------------------- MAIN ------------------------- */
main {
  margin-bottom: 100px;
}

.color-placeholder::placeholder {
  color: #495057;
}

.icono-sumar>i {
  color: white;
  background-color: #f26604;
  font-size: 30px;
  border-radius: 50%;
  border: 1px solid #f26604;
}

.icono-sumar:hover>i {
  color: #f26604;
  background-color: white;
  transition: 0.5s;
  border: 1px solid white;
}

.icono-sumar:not(:hover)>i {
  transition: 0.5s;
}

.eliminar:hover>svg {
  fill: red;
  transform: rotate(360deg);
  transition: 0.7s;
}

.eliminar:not(:hover)>svg {
  transition: 0.4s;
}

.btn-nuevoProveedor {
  background-color: transparent;
  border-radius: 10px;
  border-width: 1px;
  border-color: black;
  width: fit-content;
}

.btn-nuevoProveedor:hover>svg {
  fill: #007bff;
  transition: 0.5s;
}

.btn-nuevoProveedor:not(:hover)>svg {
  transition: 0.5s;
}

.btnClasico {
  padding: 8px;
  color: #f26604;
  background-color: white;
  font-size: 20px;
  border-radius: 10px;
  border: none;
  box-shadow: 1px 1px 2px 0px gray, -2px -2px 2px 0px #fff4eb;
}

.btnClasico:hover {
  background-color: #f26604;
  color: white;
  box-shadow: -1px -1px 2px 0px gray, 1px 1px 2px 0px #fff4eb;
  transition: 0.5s;
}

.btnClasico:not(:hover) {
  transition: 0.5s;
}

.botonVolver {
  margin-right: 12px;
  color: grey;
  font-size: 16px;
}

.botonVolver:hover {
  color: #4f4e4e;
}

.formulario {
  background-color: white;
  padding: 1rem;
  box-shadow: 2px 6px 10px 0 #6c6c6c;
  border-radius: 10px;
  margin: auto;
}

#formulario {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-check-input {
  margin-left: -1.25rem !important;
}

.tooltip-wrapper {
  display: inline-block;
  /* display: block works as well */
}

.tooltip-wrapper .btn[disabled] {
  /* don't let button block mouse events from reaching wrapper */
  pointer-events: none;
}



/*Footer
---------------------------------------------------*/

.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}

.estilo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.logofooter {
  width: 100px;
  height: 100px;
}

.parrafo-footer {
  font-family: nexalight;
  text-align: right;
  margin-bottom: 0;
  color: white;
}

.bi {
  text-decoration: none;
  color: white;
  font-size: 20px;
}

.bi-whatsapp:hover {
  color: #00bb2d;
  transition: 0.5s;
}

.bi-whatsapp:not(:hover) {
  color: #fff;
  transition: 0.5s;
}

.bi-linkedin:hover {
  color: #0e76a8;
  transition: 0.5s;
}

.bi-linkedin:not(:hover) {
  color: #fff;
  transition: 0.5s;
}

.bi-envelope:hover {
  color: #DB4A39;
  transition: 0.5s;
}

.bi-envelope:not(:hover) {
  color: #fff;
  transition: 0.5s;
}