/*BASE HTML CSS CLEAR*/

.regular,
.outline,
.underline
{
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
}

/* BASE CSS */
.button
{
    white-space: nowrap!important;
    max-width: 100%;
}
.regular,
.outline,
.underline
{
    font-size: 16px;
}

/* STYLES */
.regular {
    background: gray;
    text-decoration: none;
    color:black;
    border:1px solid gray;
}
.outline {
    background: white;
    text-decoration: none;
    border:1px solid gray;
    color:gray;
}
.underline {
    border-radius: 0!important;
    text-decoration: none!important;
    background: none;
    border-bottom: 1px solid;
    padding: 0!important;
    color:black;
    font-weight: bold;
}



/* SIZES */
.md {
    padding: 10px 20px;
    height: 40px;
    border-radius: 20px;
    line-height: 1;
}
.lg {
    padding: 15px 25px;
    height: 48px;
    border-radius: 28px;
    line-height: 1;
}
.xl {
    padding: 15px 25px;
    height: 80px;
    border-radius: 28px;
    line-height: 1;
}

.underline {
    padding: 0!important;
    height: auto!important;
}

/* ICONS */
.button_icon_md{
    padding: 10px;
    width: 40px;
    height: 40px;
}
.button_icon_lg{
    padding: 15px;
    width: 48px;
    height: 48px;
}
.icon {
    margin: 0;
}

.icon_left {
    margin-right: 5px;
}
.icon_right {
    margin-left: 5px;
}
.icon_both {
    margin-left: 5px;
    margin-right: 5px;
}


.button > img,
.button > span {
    vertical-align: middle;
}


