.btns {
  border: 1.5px solid black;
  background-color: white;
  color: black;
  font-size: 16px;
  border-radius: 1rem;
  cursor: pointer;
  line-height: 1.5;
  padding: .375rem .75rem;
}

/* Green */
.success {
  border-color: #4CAF50;
  color: green;
}

.success:hover {
  background-color: #4CAF50;
  color: white;
}
/* Green negativo*/
.success- {
  background-color: #4CAF50;
  border-color: #4CAF50;
  color: white;
}

.success-:hover {
  border-color: #4CAF50;
  background-color: white;
  color: green;
}
/* Blue */
.info {
  border-color: #2196F3;
  color: dodgerblue;
}

.info:hover {
  background: #2196F3;
  color: white;
}
/* Blue negativo*/
.info- {
  border-color: #2196F3;
  background: #2196F3;
  color: white;
}

.info-:hover {
  border-color: #2196F3;
  background: white;
  color: dodgerblue;
}
/* Orange */
.warning {
  border-color: #ff9800;
  color: orange;
}

.warning:hover {
  background: #ff9800;
  color: white;
}

/* Orange negativo*/
.warning- {
  border-color: #ff9800;
  background: #ff9800;
  color: white;
}

.warning-:hover {
  border-color: #ff9800;
  background: white;
  color: orange;
}
/* Red */
.danger {
  border-color: #f44336;
  color: red;
}

.danger:hover {
  background: #f44336;
  color: white;
}

/* Gray */
.default {
  border-color: #e7e7e7;
  color: black;
}

.default:hover {
  background: #e7e7e7;
}

/*black*/
.black {
  border-color: black;
  color: black;
}

.black:hover {
  background: black;
  color: white;
}

