button,
.btn {
    display: inline-block;
    background: 0 0;
    border: none;
    cursor: pointer;
    text-decoration: none;
    outline: none;
}

button:not(.trigger),
.btn {
    border-radius: 2px;
    position: relative;
    height: 36px;
    margin: 0;
    min-width: 64px;
    padding-left : 16px;
    padding-right : 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0;
    overflow: hidden;
    transition: background-color .2s cubic-bezier(.4,0,.2,1), color .2s cubic-bezier(.4,0,.2,1);
    text-align: center;
    line-height: 36px;
    vertical-align: middle;
}

button.btn--icons,
.btn--icons {
    border-radius: 50%;
    font-size: 24px;
    height: 32px;
    margin: auto 0;
    min-width: 32px;
    width: 32px;
    padding: 0;
    overflow: hidden;
    color: inherit;
    line-height: normal;
    position: relative;
}

button.btn--icons:hover,
.btn--icons:hover {
    color: inherit;
}

button i,
.btn i{
    pointer-events: none;
}

button .fa::before,
.btn .fa::before {
    vertical-align: middle;
}

button.btn--icons .fa::before,
.btn--icons .fa::before {
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-12px,-12px);
    transform: translate(-12px,-12px);
    line-height: 24px;
    width: 24px;
}

button.btn--rounded,
.btn--rounded {
    min-width: 36px;
    border-radius: 50%;
}
