.icon {
    max-height: 30px;
    max-width: 30px;
}
.iconButton {
    display: inline-block;
    font-size: 0;
    overflow: hidden;
    height: 30px;
    padding: 0 5px;
    max-height: 100%;
    line-height: 0;
    cursor: pointer;
    box-sizing: border-box;
    &:before {
        display: inline-block;
        content: "";
        height: 100%;
        width: 0;
        vertical-align: middle;
    }
    text-align: center;
    .icon {
        max-height: 100%;
        max-width: 100%;
        opacity: 0.5;
    }
    > i {
        vertical-align: middle;
        display: inline-block;
        height: 16px;
        width: 16px;
    }
    > .text {
        font-size: 12px;
        line-height: 0;
        vertical-align: middle;
        margin-left: 5px;
    }
    &:hover, &.active {
        .icon {
            opacity: 1;
        }
        > .text {
            color: #d6d6d6;
        }
    }
}