button,
.btn,
input[type=button],
input[type=submit],
input[type=reset] {
    -webkit-appearance: none;
    background-color: #0091ff; /* 8A2BE2 */
    border: none;
    border-radius: .1875em;
    color: white;
    cursor: pointer;
    display: inline-block;
    font-weight: 500;
    /*font-weight: bold;*/
    min-width: 5em;
    outline: none;
    line-height: 1;
    padding: .5em 1em;
    text-align: center;
    white-space: nowrap;
}

a[href].btn:hover {
    text-decoration: none;
}

button[type=reset],
input[type=reset] {
    background-color: grey;
}

/**
    Button Colors
 */
.btn {
    background: #0091ff;
}

.btn.blank {
    background: white;
}

.btn-danger,
.btn.stop {
    background: red;
}
.btn.go {
    background: green;
}
.btn.yield {
    background: orange;
}

/**
    Button sizes
 */
.btn.xlarge {
    font-size: 2em;
}

.btn.large {
    font-size: 1.5em;
}

/**
    Button styles
 */
.btn.icon-only {
    font-family: "Material Icons", sans-serif;
    min-width: auto;
    width: 3em;
}

.btn.faded {
    background-color: rgba(0, 0, 255, .5);
    color: #0091ff;
}
.btn.faded.blank {
    background-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.btn.faded.btn-danger,
.btn.faded.stop {
    background-color: rgba(255, 0, 0, .5);
    color: red;
}
.btn.faded.go {
    background-color: rgba(0, 255, 0, .5);
    color: green;
}
.btn.faded.yield {
    background-color: rgba(255, 165, 0, .5);
    color: orange;
}

.btn.line {
    background: transparent;
    border: 1px solid #0091ff;
    color: #0091ff;
}
.btn.line.blank {
    border-color: white;
    color: white;
}

.btn.line.btn-danger,
.btn.line.stop {
    border-color: red;
    color: red;
}
.btn.line.go {
    border-color: green;
    color: green;
}
.btn.line.yield {
    border-color: orange;
    color: orange;
}

.btn.raised {
    box-shadow: 0 .125em .25em rgba(0, 145, 255, 0.4);
}
.btn.raised.blank {
    box-shadow: 0 .125em .25em rgba(255, 255, 255, .4);
}

.btn.raised.btn-danger,
.btn.raised.stop {
    box-shadow: 0 .125em .25em rgba(255, 0, 0, .4);
}
.btn.raised.go {
    box-shadow: 0 .125em .25em rgba(0, 255, 0, .4);
}
.btn.raised.yield {
    box-shadow: 0 .125em .25em rgba(255, 165, 0, .4);
}

.btn.round {
    border-radius: 1.0625em;
}

/**
 Custom buttons
 */
.btn.full {
    width: 100%;
}

.btn.btn-full {
    background: blueviolet;
    display: block;
    /* font-size: 1.25em; */
    margin: 2em auto 1em auto;
    min-width: 15em;
    padding: 1em;
}

/*
.btn.create:before {
    content: "add";
    display: block;
    float: left;
    font-family: "Material Icons", sans-serif;
    margin-left: -.5rem;
    margin-right: .25rem;
    vertical-align: middle;
}
*/