.nbtn {
    width: 100%;
    font-size: 15px;
    padding: 6px 0px;
    border-radius: 6px;
    text-align: center;
    text-transform: capitalize;
    /*color: var(--heading);
    background: var(--border);
    text-shadow: var(-primary-tshadow);*/
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

/* Success */
.nbtn-success {
  background-color: transparent;
  color: #0d6efd;
  border: 1px solid #0d6efd;
}

.nbtn-success:hover {
  background-color: #0d6efd;
  color: #fff;
}

/* Outline */
.nbtn-outline {
  background-color: transparent;
  color: #0d6efd;
  border: 1px solid #0d6efd;
}

.nbtn-outline:hover {
  background-color: #0d6efd;
  color: #fff;
}