@charset "utf-8";

.normal_button {
    position: relative;
    height: 20px;
    width: auto;
    user-select: none;
    border-radius: 3px;
    background: none;
    appearance: none;
    border: none;
    padding: 0 12px;
    font-size: 11px;
    vertical-align: middle;
    font-weight: normal;
    text-shadow: 0 1px 1px rgba(0,0,0,0.1);
    box-sizing: border-box;
    cursor: pointer;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.1),
                0 2px 3px 0px rgba(0,0,0,0.1),
                0 1px 0 rgba(255,255,255,0.4) inset;
    background-color: #f8f8f8;
    align-items: center;
    cursor: pointer;
    text-align: center;
    border-radius: 2px;
    font-size: 12px;
    color: #666;

    line-height: normal !important;
}

.normal_button[color="blue"], .normal_button.blue { background-color: #274FAA; color: rgba(255,255,255,0.9);}
.normal_button[color="red"], .normal_button.red { background-color: #E5584C; color: rgba(255,255,255,0.9); }
.normal_button[color="gray"], .normal_button.gray { background-color: #AAAAAA; color: rgba(255,255,255,0.9); }
.normal_button.light_blue { background-color: #3bb0c9; color: rgba(255,255,255,0.9); }
.normal_button.sapphire { background-color: #0099b5; color: rgba(255,255,255,0.9); }
.normal_button.brown { background-color: #994c00; color: rgba(255,255,255,0.9); }
.normal_button.yellow-ocher { background-color: #b7b73c; color: rgba(255,255,255,0.9); }
.normal_button.bright-green { background-color: #00cc00; color: rgba(255,255,255,0.9); }
.normal_button.purple { background-color: #6f00ff; color: rgba(255,255,255,0.9); }

.normal_button.thick { height: 28px; }

.normal_button:before {
    width: 100%;
    height: 100%;
    border-radius: 3px;
    top: 0px;
    left: 0px;
    content: "";
    position: absolute;
    display: block;
}

.normal_button:hover:before {
    background-image: linear-gradient(to bottom, rgba(255,255,255,0.3) 0%,rgba(255,255,255,0.2) 100%);
}
.normal_button:disabled {
    cursor: not-allowed;
}

.normal_button:disabled:before {
    background-image: none;
}

label.normal_button {
    display: inline-block;
}
label.normal_button > span {
    display: inline-block;
    line-height: normal;
}
label.normal_button input[type=file] {
    display: none;
}

.button-icon {
    width: 24px;
    text-align: center;
}
.button-icon:before {
    font-family: "paicon";
    font-size: 24px;
    cursor: pointer;
}
.button-icon.add:before { content: "\e87c"; }
.button-icon.remove:before { content: "\e887"; }

.division_buttom_light_blue {
    height: 20px !important;
    min-width: 50px !important;
}

.division_buttom_blue {
    height: 20px !important;
    min-width: 98px !important;
}
