html, body{ height: 100%;margin:0; }


/*
* {
  box-sizing: border-box;
}
*/



/* style inputs and link buttons */
.LoginInput
{
  width: 90%;
  padding: 12px;
  border: none;
  border-radius: 4px;
  margin: 5px 0;
  opacity: 0.85;
  display: inline-block;
  font-size: 17px;
  line-height: 20px;
  text-decoration: none;
}

.LoginInput:hover
{
  opacity: 1;
}

input[type="submit"].LoginButton
{
  background-color: #4CAF50;
  color: white;
  cursor: pointer;
  width: 90%;
  height:auto;
  padding: 12px;
  border: none;
  border-radius: 4px;
  margin: 5px 0;
  opacity: 0.85;
  display: inline-block;
  font-size: 17px;
  line-height: 20px;
  text-decoration: none;
}

input[type="submit"].LoginButton:hover
{
  background-color: #45a049;
  opacity:1;
}

.LogoutBotton
{
   font-size:17px;
   background-color:#4CAF50;
   color:white;
   cursor:pointer;
   opacity: 0.85;
   width:90%;
   margin: 5px 0;
   line-height: 20px;
   padding:10px;
   border:none;
   border-radius:4px; 
}

.LogoutBotton:hover
{
  opacity: 1.0;
}


input::-webkit-outer-spin-button,input::-webkit-inner-spin-button
{
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] 
{/* Firefox */
  -moz-appearance: textfield;
}

.search
{
  border:none;
  color:white;
  background:#1C1B22;
  text-transform:uppercase;
  width:300px;
  border-radius:10px;
  outline:none;
  font-size:15px;
  font-family:calibri;
  padding:5px 15px 5px 15px;
}

.AllSubWin
{
 display:none;
 position:absolute;
 top:0;
 left:0;
 justify-content:center;
 align-items:center;
 width:100%;
 height:100%;
 background: rgb(0, 0, 0); /* Fallback color */
 background: rgba(0, 0, 0, 0.5); /* Black background with 0.5 opacity */
}


.AllPopups2222222222222222222222222222222222222
{
 display:none;
 justify-content:center;
 align-items:center;
 position:absolute;
 top:0;
 left:0;
 width:100%;
 height:100%;
}

.PopupWin
{
  display:none;
  position:relative;
  font-family:calibri;
  font-size:13px;
  border:1px solid #1E3D65;
  background-color:#E9E9E9;  
  border-spacing:0;  
}

.PopupWin222222222222222222222222
{
  display:none;
  position:relative;
  font-family:calibri;
  font-size:13px;
  text-align:left;
  border:1px solid #000000;
  background-color:#E9E9E9;  
  border-spacing:0;  
}

.WinTitle
{
  background-color:#404044;
  border:1px solid #404044;
  padding-left:5px;
  font-family:calibri;
  font-weight:bold;
  font-size:14px;
  color:#FFFFFF;
  height:25px;
}

.loading 
{ 
  margin:auto;
  border: 7px solid #404044;
  border-top: 7px solid #FFFFFF;
  border-bottom: 7px solid #FFFFFF;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin
{
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin 
{
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}