.button {
    background: #efeff9;
    border: 1px solid #e0e0f0;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: inline-block;
    font-size: 11.5pt;
    line-height: 16pt;
    min-width: 160px;
    padding: 10px 20px;
    -webkit-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    transition: all 0.1s ease;
    text-align: center;
    text-decoration: none;
    font-weight: 100;
}

.button:hover {
    background: #ffdf0f;
    -webkit-box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.15);
    border-color: #ffdf0f;
    color: #000;
}

.button:active {
    background: #e0e0f0;
    border-color: #e0e0f0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.button_accent {
    background: #ffdf0f;
    border-color: #f0d000;
    color: #000;
}

.button_accent:hover {
    background: #ffdf0f;
}

.button:active {
    background: #e0e0f0;
    border-color: #e0e0f0;
}
.button-links {
    font: 500 14px/20px var(--fontRegular);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.07);
    color: var(--defaultBlue);
    min-width: 36px;
    transition: all .2s,box-shadow .2s;
    text-decoration: none;
}
.button-light {
    color: var(--defaultBlue);
    padding: 7px 9px;
    margin: 4px;
    background: #fff;
    font-weight: 600;
    cursor: pointer;
    border: solid silver 1px;
    transition: all .2s;
    text-transform: uppercase;
    display: inline-block;
    text-align: center;
}
.button-light:hover, .button-light.tabActivv {
    background: var(--defaultBlue);
    color: #fff;
    box-shadow: 0 0 15px rgba(0,0,0,.07);
    border-color: var(--defaultBlue);
}
.button-soft-blue {
    background: var(--defaultBlue);
    color: #fff;
    text-transform: none;
    font-weight: 400;
    font-size: 16px;
    padding-left: 13px;
    padding-right: 13px;
}

.button_auto-width {
    flex-basis: auto !important;
}

.button_250 {
    min-width: 250px;
}