/* BODY */
body{
    padding: 20px;
}

/* #region TEXT */

.textRight {
  text-align: right;
}
.textCenter {
  text-align: center;
}
.inline {
  display: inline-block;
}


/* #endregion */

/* #region LAYOUT */

/* #region COLUMN */
.col1, .col2, .col3, .col4 {
    display: inline-block;
}
.col1, .col1 button {
    width: 100%;
}
.col2, .col2 button {
    width: 50%;
    padding: 10px;
}
.col3{
    width: 33.33%;
    padding: 10px;
}
.col4{
    width: 25%;
    padding: 10px;
}
.pa-10{
    padding: 10px;
}

.box-center {
    box-shadow: 0 2px 8px 0 #d6d6d6;
    border-radius: 15px;
    width: 70%;
    padding: 30px;
    margin : 0 auto;
    font-family: Trebuchet MS;
}

.box-centerlogin {
  box-shadow: 0 2px 8px 0 #d6d6d6;
  border-radius: 15px;
  width: 40%;
  padding: 30px;
  margin : 0 auto;
  font-family: Trebuchet MS;
}
.hide {
    display: none;
}
/* #endregion */

@media screen and (min-width: 100px) and (max-width: 649px) {    
  .col2, .col3 {
      width: 100%;
      margin: 0;
  }
  .col4{
    width: 50%;
    margin: 0;
  }
  .col2.w_left_space{
      width: 100%;
      margin: 0;
  }
  .col2 .left {
      width: 50%;
  }
  .col2 .right{
      width: 50%;
  }
  .col1 input, .col1 button {  
      width: 100%; 
  }
  
  .col2 .left.l2 {
      font-size: 14px;
      width: 25%;
  }
  .col2 .right.r2{
      font-size: 14px;
      width: 75%;
  }
  .box-center {
    box-shadow: 0 2px 8px 0 #d6d6d6;
    border-radius: 15px;
    width: 100%;
    padding: 30px;
    margin : 0 auto;
    font-family: Trebuchet MS;
  }
  .box-centerlogin {
    box-shadow: 0 2px 8px 0 #d6d6d6;
    border-radius: 15px;
    width: 100%;
    padding: 30px;
    margin : 0 auto;
    font-family: Trebuchet MS;
  }
}

/* #endregion */


/* #region TOAST */

#toast {
    visibility: hidden;
    max-width: 600px;
    height: 45px;
    /*margin-left: -125px;*/
    margin: auto;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 5px;
  
    position: fixed;
    z-index: 1;
    left: 0;right:0;
  /* position: absolute; */
  top:0;
  bottom: 0; 
    /* bottom: 0px; */ 
    font-size: 13px;
    white-space: nowrap;
  }
  #toast #img{
  width: 50px;
  height: 50px;
    
    float: left;
    
    padding-top: 16px;
    padding-bottom: 16px;
    
    box-sizing: border-box;
  
    
    background-color: #111;
    color: #fff;
  }
  #toast #desc {
  
    
    color: #fff;
   
    padding: 10px;
    
    overflow: hidden;
  white-space: nowrap;
  }
  
  #toast.show, .show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, expand 0.5s 0.5s,stay 2s 1s, shrink 0.5s 2s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, expand 0.5s 0.5s,stay 2s 1s, shrink 0.5s 3s, fadeout 0.5s 3.5s;
  }
  
  @-webkit-keyframes fadein {
    from {bottom: 0; opacity: 0;} 
    to {bottom: 30px; opacity: 1;}
  }
  
  @keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
  }
  
  @-webkit-keyframes expand {
    from {min-width: 50px} 
    to {min-width: 350px}
  }
  
  @keyframes expand {
    from {min-width: 50px}
    to {min-width: 350px}
  }
  @-webkit-keyframes stay {
    from {min-width: 350px} 
    to {min-width: 350px}
  }
  
  @keyframes stay {
    from {min-width: 350px}
    to {min-width: 350px}
  }
  @-webkit-keyframes shrink {
    from {min-width: 350px;} 
    to {min-width: 50px;}
  }
  
  @keyframes shrink {
    from {min-width: 350px;} 
    to {min-width: 50px;}
  }
  
  @-webkit-keyframes fadeout {
    from {bottom: 30px; opacity: 1;} 
    to {bottom: 0px; opacity: 0;}
  }
  
  @keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0px; opacity: 0;}
  }
  /* #endregion */

