button,
a.button {
    display: inline-block;
    cursor: pointer;
    border: 0;
    margin: 0;
    transition: background-color 0.2s linear;
    border-radius: 3px;
    min-width: 140px;
    max-width: 100%;
    text-align: center;
    background-color: #4fcdf7;
    color: #fff;
    text-decoration: none;
    background-image: url("/img/arrow.png");
    background-repeat: no-repeat;
    background-position: right center;

    height: 40px;
    min-height: 40px;
    line-height: 40px;
    font-size: 16px;
    font-weight: 400;
    padding: 0 33px 0 17px;
}

button.btn-small,
a.button.btn-small {
    min-width: 80px;
    height: 30px;
    min-height: 30px;
    line-height: 30px;
    font-size: 14px;
    font-weight: 400;
    padding: 0 23px 0 10px;
    background-image: url("/img/arrow-s.png");
}

button:hover,
button:focus,
a.button:hover,
a.button:focus {
    background-color: #0aa7db;
    color: #fff;
}

button:active,
a.button:active {
    background-color: #065d7a;
    color: #fff;
}

button[disabled],
a[disabled].button {
    color: #aaa !important;
    background-color: #e5e5e5 !important;
    cursor: default;
}

.bg-blue button,
.bg-blue a.button {
    background-color: #fff;
    color: #121523 !important;
    background-image: url("/img/arrow-db.png");
}

.bg-blue button:hover,
.bg-blue button:focus,
.bg-blue a.button:hover,
.bg-blue a.button:focus {
    background-color: #eee;
    color: #121523 !important;
}

.bg-blue button:active,
.bg-blue a.button:active {
    background-color: #ddd;
    color: #121523 !important;
}

.bg-blue button.btn-small,
.bg-blue a.button.btn-small {
    background-image: url("/img/arrow-db-s.png");
}

/* --- */
button.btn-left-arr,
a.button.btn-left-arr {
    background-image: url("/img/arrow-l.png");
    padding: 0 17px 0 33px;
    background-position: left center;
}

button.btn-small.btn-left-arr,
a.button.btn-small.btn-left-arr {
    padding: 0 10px 0 23px;
    background-image: url("/img/arrow-s-l.png");
}