
html, body {
  width: 100%;
  height: 100%;
  margin:0;
  padding:0;
}
*{
   margin: 0;
   padding: 0;
}
*:focus{
   outline: none;
}
/*
*:not(input):not(textarea){
   -webkit-touch-callout: none !important;
   -webkit-user-select: none !important;
}*/

::-webkit-scrollbar {
    display: none;
}
*::-webkit-scrollbar {
    display: none;
}

.COPYRIGHT{
   background: #333333;
   text-align: center;
   color: #ffffff;
   font-size: 12px;
}
a,
a:visited,
a:link,
a:active,
a:hover{
   text-decoration: none;
   color: #000000;
}

.hide {
   display: none !important;
}
.clear {
   clear: both;
}

/* loading */
.illsLoading{
   position: fixed;
   left: 0px;
   top: 0px;
   width: 100%;
   height: 100%;
   background: rgba(0,0,0,0.3);
   z-index: 10000;
}
.illsLoading .illsLoadingContents{
   position: absolute;
   left: 0px;
   width: 100%;
   top: calc(50% - 80px);
   color: #333333;
   font-size: 18px;
   text-align: center;
   background: rgba(255,255,255,0.6);
   padding-top: 20px;
   padding-bottom: 20px;
}


.illsAlert {
   position: fixed;
   left: 0px;
   top: 0px;
   width: 100%;
   height: 100%;
   background: rgba(0,0,0,0.3);
   text-align: center;
   z-index: 21000;
}
.illsAlert .dialog{
   position: relative;
   top: 20%;
   display: inline-block;
   width: 512px;
   max-width: calc(100% - 10px);
   background: #ffffff;
   box-shadow: 0 0 0 0 rgba(0, 0, 0, 0), 0px 3px 6px 0px rgba(0, 0, 0, 0.3);
}
.illsAlert .body{
}
.illsAlert .body .inputRow{
   margin-top: 3px;
   border-top: 1px solid #f0f0f0;
}
.illsAlert .body .inputRow span{
   display: block;
   font-size: 13px;
   color: #888888;
}
.illsAlert .body .inputRow input{
   width: 100%;
   font-size: 13px;
   color: #333333;
   border: none;
   height: 30px;
   background: #fafafa;
   text-align: center;
}

.illsAlert .body label{
   display: block;
   padding: 5px;
   padding-top: 15px;
   padding-bottom: 15px;
   font-size: 15px;
   color: #333333;
}
.illsAlert .footer{
   border-top: 1px solid #f0f0f9;
   padding: 5px;
}
.illsAlert .footer button{
   border: none;
   background: none;
   font-size: 15px;
   color: #0080cc;
   height: 30px;
   padding-left: 10px;
   padding-right: 10px;
   padding-top: 2px;
   border: 1px solid rgba(0,0,0,0);
   /*box-shadow: 0 0 0 0 rgba(0, 0, 0, 0), 0px 1px 1px 0px rgba(0, 0, 0, 0.3);*/
}
.illsAlert .footer button:focus,
.illsAlert .footer button:hover{
  font-weight: bold;
  border-bottom: 1px solid #0080cc;
}

.toastParent{
}
.toastParent .right{
   position: fixed;
   right: 10px;
   top: 10px;
   width: 100%;
   max-width: 758px;
   z-index: 990999;
   text-align: right;
}
.toastParent .left{
   position: fixed;
   left: 10px;
   top: 10px;
   width: 100%;
   max-width: 758px;
   z-index: 990999;
   text-align: left;
}
.toastParent .toast{
   position: relative;
   display: block;
   margin-bottom: 5px;
   opacity: 0;
   top: -20px;
}
.toastParent .toast label{
   color: #ffffff;
   font-size: 14px;
   background: rgba(233, 81, 74, 0.8);
   padding: 5px;
   padding-top: 5px;
   padding-left: 10px;
   padding-right: 10px;
}
.toastParent .toast label i{
   margin-right: 3px;
}
