/*------------------------------------------------------------------------------ buttons */
.button {
    background: none;
    padding: 10px 15px;
    border-radius: 21px;
    outline: none;
    cursor: pointer;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
    font-size: 13px;
    margin-right: 10px;
    position: relative;
}

a.button {
    display: inline-block;
    line-height: normal;
}
/*butao sem nada*/
.button.button-color {
    border: 2px solid #b9d55a;
    color: #b9d55a;
}

.button.button-color:hover {
    background: #b9d55a;
    color: #fff;
}

.button.button-color-alt {
    border: 2px solid #3bbded;
    background: #3bbded;
    color: #fff;
}

.button.button-color-alt:hover {
    background: #fff;
    color: #3bbded;
}

.button.button-white {
    border: 2px solid #fff;
    color: #fff;
}

.button.button-white:hover {
    background: #fff;
    color: #282f38;
}

.button.button-black {
    border: 2px solid #282f38;
    color: #282f38;
}

.button.button-black:hover {
    background: #282f38;
    color: #fff;
}

.button.button-black-alt {
    border: 2px solid #282f38;
    background: #282f38;
    color: #fff;
}

.button.button-black-alt:hover {
    background: #fff;
    color: #282f38;
}

.button .more {
    position: absolute;
    color: #fff;
    background: #282f38;
    width: 17px;
    height: 17px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    top: -8.5px;
    right: 10px;
}

.button .less {
    position: absolute;
    color: #fff;
    background: #282f38;
    width: 17px;
    height: 17px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    top: -8.5px;
    right: -8px;
}

/*------------------------------------------------------------------------------ responsive */
@media (max-width: 849px) {

    .button {
        margin-top: 15px;
    }
}