.bu1,
.bu1.disabled,
.bu2 {
    display: inline-block;
    position: relative;
    left: 0;
    top: 0;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    padding: 15px 25px;
    border: 1px solid #FC5609;
    background-color: #FC5609;
    cursor: pointer;
    color: white;
    border-radius: 4px;
    box-shadow: 0 0.9px 1.8px 0 rgba(0, 0, 0, 0.25);
    margin: auto;
}

.bu1.disabled {
    color: white;
}

.bu1.disabled.grey {
    background-color: grey;
    border: 1px solid grey;
}

.modal-dialog .bu1,
.modal-dialog .bu2 {
    padding: 5px 10px;
    font-size: 14px;
}

.bu1.w100,
.bu2.w100{
    width: 100%;
}

.bu1.disabled {
    opacity: .5;
}

.bu1:focus,
.bu1:hover {
    background: linear-gradient(to bottom, #FF994E 0%, #FC5609 100%);
    color: white;
    cursor: pointer;
    text-decoration: none;
    text-shadow: 0 0.9px 1.8px rgba(0, 0, 0, 0.25);
}

.bu1.disabled:focus,
.bu1.disabled:hover {
    background-color: grey;
    cursor: none;
    text-decoration: none;
    text-shadow: none;
}

.bu1.disabled:hover {
    background: inherit;
    background-color: #9EA3B0;
    text-shadow: none;
    cursor: default;
}

.bu1:active{
    background: linear-gradient(to bottom, #E05F00 0%, #FC5609 100%);
    color: white;
    cursor: pointer;
    box-shadow: inset 0 0 1.9px 0 rgba(0,0,0,0.12);
    text-shadow: none;
}

.bu1.loading,
.bu1.loading.disabled:hover,
.bu2.loading{
    background-color: #cccccc;
    border-color: #cccccc;
    background-image: url('/resources/images/loading-inactive.gif');
    background-repeat: no-repeat;
    background-position: 100% 50%;
}

.bu2{
    color: #959595;
    border-color: #959595;
    background-color: transparent;
}

.bu2:focus, .bu2:active, .bu2:hover{
    border-color: #00c2df;
    color: #00c2df;
    text-decoration: none;
}

@media (max-width: 767px){
    .bu1,
    .bu2{
        width: 100%;
    }
}