﻿
/* CSS */
.usw-btn-icon {
  appearance: none;
  border-radius: 6px;
  box-shadow: rgba(27, 31, 35, .1) 0 1px 0;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  font-family: -apple-system,system-ui,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  padding: 6px 16px;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
}

.usw-btn-icon.type1 
{
    font-size:12px;
    font-weight:bold;
    padding-left:50px;
    padding-right:50px;
}

.usw-btn-icon.green 
{
    color: #fff;
    background-color: #719430;
    border: 1px solid #699812;
}

.usw-btn-icon.green:hover 
{
  background-color: #8bba34;
  border-color:#8bba34;
}

.usw-btn-icon.red 
{
    color: #fff;
    background-color: #833935;
    border: 1px solid #7a3531;
}

.usw-btn-icon.red:hover {
  background-color: #b43730;
  border-color:#b43730;
}

.usw-btn-icon:focus:not(:focus-visible):not(.focus-visible) {
  box-shadow: none;
  outline: none;
}

.usw-btn-icon:focus {
  box-shadow: rgba(46, 164, 79, .4) 0 0 0 3px;
  outline: none;
}

.usw-btn-icon:disabled {
  background-color: #94d3a2;
  border-color: rgba(27, 31, 35, .1);
  color: rgba(255, 255, 255, .8);
  cursor: default;
}

.usw-btn-icon:active {
  background-color: #298e46;
  box-shadow: rgba(20, 70, 32, .2) 0 1px 0 inset;
}

.usw-btn-icon .fa {
    height:1em;
    width:1em;
    padding-top:0.2em;
    display:inline-block;
    vertical-align:bottom;
}

.usw-btn-icon .fa-add {
    background: url(../images/buttons/add.png) no-repeat;
}

.usw-btn-icon .fa-cancel {
    background: url(../images/buttons/cancel.png) no-repeat;
}

.usw-btn-icon .fa-save {
    background: url(../images/buttons/save.png) no-repeat;
}