.button {
    border: 0 none;
    padding: 12px 18px;
    /*margin: 10px auto;*/
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 160px;
    -ms-flex: 0 0 160px;
    flex: 0 0 160px;
    text-align: center;
    text-align: -webkit-center;
    text-align: -moz-center;
    line-height: 1.3;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-transform: none;
    -webkit-transition: all 100ms ease-in-out;
    transition: all 100ms ease-in-out;

    background: #76858C;
    margin: auto;
}

.button:hover {
    opacity: .9;
    -webkit-transition: all 100ms ease;
    transition: all 100ms ease;
}

.button:active {
    opacity: .75;
    -webkit-transform: scale(0.97);
    transform: scale(0.97);
    -webkit-transition: all 100ms ease;
    transition: all 100ms ease;
}

.button:active, .button:focus {
    outline: none;
}

.button.-dark {
    background: #333030;
    color: #FFFFFF;
}

.button.-green {
    background: #3ac569;
    color: #FFFFFF;
}

.button.-blue {
    background: #2b90d9;
    color: #FFFFFF;
}

.button.-bright-blue {
    background: #2AA8FF;
    color: #FFFFFF;
}

.button.-salmon {
    background: #ff7473;
    color: #FFFFFF;
}

.button.-sun {
    background: #feee7d;
    color: #f15c5c;
}

.button.-alge {
    background: #79a8a9;
    color: #f4f7f7;
}

.button.-flower {
    background: #353866;
    color: #FE8CDF;
}

.button.-standard {
    background: #2F3C5A;
    color: #fff;
}

.button.-white {
    background: #fff;
    color: #111;
}

.button.-dark-blue {
    color: #fff;
    background-color: #293557;
}

.button.-ellipse {
    border-radius: 24px;
}

.button.-round {
    border-radius: 5px;
}

.button.-inline {
    display: inline-block;
}

.button.-light-blue-border {
    background: transparent;
    border: 1px solid #3097ff;
    color: #3097ff;
}

.button.-light-blue-border:hover, .button.-border.-active {
    background: #3097ff;
    border-color: #3097ff;
    color: #FFFFFF;
}

.button.-border {
    background: transparent;
    border: 1px solid #2b90d9;
    color: #2b90d9;
}

.button.-border:hover, .button.-border.-active {
    background: #2b90d9;
    border-color: #2b90d9;
    color: #FFFFFF;
}

.button.-salmon-border {
    background: transparent;
    border: 1px solid #ff7473;
    color: #ff7473;
}

.button.-salmon-border:hover{
    background: #ff7473;
    border-color: #ff7473;
    color: #FFFFFF;
}

.button.-green-border {
    background: transparent;
    border: 1px solid #3ac569;
    color: #3ac569;
}

.button.-green-border:hover{
    background: #3ac569;
    border-color: #3ac569;
    color: #FFFFFF;
}

.button.-white-border {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.button.-white-border:hover{
    background: #fff;
    border-color: #fff;
    color: #414141;
    font-weight: 500;
}

.button.-mini {
    padding: 8px 8px !important;
    font-size: 12px;
    font-weight: normal;
}

.button.-super-mini {
    padding: 4px 8px;
    font-size: 12px;
    font-weight: normal;
}

.button.-normal {
    padding: 8px 15px;
    font-size: 12px;
    font-weight: normal;
}

.button.-hg {
    font-size: 14px;
    font-weight: 500;
    height: 40px;
    min-width: 100px;
}

.button.-big {
    width: 160px;
}

.button.-lg {
    width: 220px;
    font-size: 14px;
}

.button.-cross {
    width: 100%;
    font-size: 14px;
}

.button[disabled=disabled], .button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}