/**
 * NGEL Button styles
 * @author hsjeon (hsjeon@nglp.kr)
 * @since 2019.04.12.
 * COPYRIGHT 2019 NGL CO., INC ALL RIGHTS RESERVED.
 */

.button {
    display: inline-block;
    border: 0.125rem solid #bfbfbf;
    padding: 0.75rem 1rem;
    font-weight: bold;
    font-size: 0.875rem;
    color: #888888;
    background-color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: box-shadow 0.2s;
    -moz-transition: box-shadow 0.2s;
    -ms-transition: box-shadow 0.2s;
    -o-transition: box-shadow 0.2s;
    transition: box-shadow 0.2s;
}

.button:hover,
.button:focus,
.button:active {
    -webkit-box-shadow: inset 0 0 2rem rgba(0, 0, 0, 0.2);
    -moz-box-shadow: inset 0 0 2rem rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 0 2rem rgba(0, 0, 0, 0.2);
}

.button.primary {
    color: #55aacb;
    border-color: #55aacb;
}

.button.danger {
    color: #ea4335;
    border-color: #ea4335;
}