/* CSS */
.btn {
    background-color: #6c757d;
    border-radius: 8px;
    border-style: none;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-family: "Haas Grot Text R Web", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    height: 40px;
    line-height: 20px;
    list-style: none;
    margin: 0;
    outline: none;
    padding: 10px 16px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: color 100ms;
    vertical-align: baseline;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}
.btn:hover,
.btn:focus {
  background-color: #6c757d;
}

/* btn-primary */
.btn-primary {
  background-color: #007bff ;
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: #007bff;
}


