.btn {
    position: relative;
    display: inline-block;
    border: 1px solid #ddd;
    height: 30px;
    padding: 8px 10px 10px;
    font-size: 12px;
    max-height: 30px;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    line-height: 1;
    border-radius: 0;
    color: #5f5f5f;
    background-color: #fff;
    font-family: "PT Sans", sans-serif;
    outline: 2px solid transparent;
    outline-offset: -2px;
}
.btn:focus {
    outline-color: #ffdb4d;
}

.btn-icon-left {
    padding-left: 22px;
}
.btn-icon-right {
    padding-right: 22px;
}

/*  -----------------------  */
/*  DOT ICONS  */
.btn--icon-dot::before {
    content: "";
    position: absolute;
    top: 14px;
    width: 6px;
    height: 6px;
    margin-top: -3px;
    background-color: #000;
    border-radius: 50%;
}

.btn-icon-left.btn--icon-dot::before {
    left: 11px;
    margin-left: -3px;
}
.btn-icon-right.btn--icon-dot::before {
    right: 11px;
    margin-right: -3px;
}
.btn--icon-dot-red::before {
    background-color: red;
}
.btn--icon-dot-orange::before {
    background-color: orange;
}
.btn--icon-dot-green::before {
    background-color: green;
}




/*  -----------------------  */
/*  GRAPHIC ICONS  */
.btn-icon {
    pointer-events: none;
    position: absolute;
    top: 14px;
    width: 16px;
    height: 16px;
    margin-top: -8px;
}
.btn-icon-left .btn-icon {
    left: 11px;
    margin-left: -8px;
}
.btn-icon-right .btn-icon {
    right: 11px;
    margin-right: -8px;
}
