@import url('https://fonts.googleapis.com/css?family=Maven+Pro');
@import url('https://fonts.googleapis.com/css2?family=Maven+Pro:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sigmar&display=swap');


html, body {
  height: 100%;
  padding:0px;
  margin:0px;
}

body {
  font-family:'Maven Pro', serif;
}

/* hide menu on mobile */
@media only screen and (max-width: 700px) {
  #menu {
    display:none;
  }
  
  #menu_mobile {
    display:flex !important;
  }
  
  #content {
      left: 0px !important;
      width: 100% !important;
      height: calc(100% - 100px) !important;
    }
}


/*TAG*/
.tag_container {
    margin: 15px;
    border: 1px solid #AAA;
    padding: 10px;
}

.tag {
    position: relative;
    margin: 0;
    padding: 0;
    display: inline-block;
}

.tag_interactive {
    opacity:0.5;
    cursor:pointer;
}

.tag_selected {
    opacity:1;
}

.tag_body {
	position: relative;
	margin-left: -5px;
	padding: 0 8px 0 10px;
	font-size: 12px;
	box-sizing: border-box;
	line-height: 16px;
	background: #ffc952;
	display: inline-block;
	color: #fff;
	border-radius: 0 4px 4px 0;
	vertical-align: top;
}

.tag_before {
	position: relative;
	display: inline-block;
	width: 0;
	height: 0;
	border-color: transparent #ffc952 transparent transparent;
	border-style: solid;
	border-width: 8px 8px 8px 0;
	vertical-align: top;
 }

.tag_after {
	position: absolute;
	top: 6px;
	left: 8px;
	width: 4px;
	height: 4px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	background: #fff;
	vertical-align: top;
}



/************* LOGIN ****************/
#login_background {
  background-image:url("/pics/login.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  filter: blur(8px);
  -webkit-filter: blur(8px);
  height: 100%;
  width: 100%;
  position:absolute;
  z-index: -1;
}

  #login_content{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
  }

    #login_box{
      background:white;
      width:300px;
      border-radius:6px;
      padding:0px 0px 70px 0px;
      border: #6dbd92 1px solid; 
      box-shadow: 0 8px 6px -2px grey;
    
    }

      #login_logo {
        width: 250px;
      }
  
      #login_username{
        background:#ecf0f1;
        border: #ccc 1px solid;
        border-bottom: #ccc 2px solid;
        padding: 8px;
        width:250px;
        color:#AAAAAA;
        font-size:1em;
        border-radius:4px;
      }

      #login_password{
        border-radius:4px;
        background:#ecf0f1;
        border: #ccc 1px solid;
        padding: 8px;
        width:250px;
        font-size:1em;
        margin-top:10px;
      }

      #login_btn{
        background:#347abf;
        width:89%;
        padding-top:5px;
        padding-bottom:5px;
        color:white;
        border-radius:4px;
        border: #347abf 1px solid;
        margin-top:20px;
        margin-bottom:20px;
        float:left;
        margin-left:16px;
        font-weight:800;
        font-size:0.8em;
        cursor:pointer;
      }


/********** MAIN ITERF ************/

#header {
  position: absolute; 
  left: 0;
  width: 100%;
  top:0;
  height: 50px;
  background-color: #347abf;
}

  #header img {
    height: 50px;
    margin-left: 10px;
  }
  
  #logo_text {
      vertical-align: top;
      margin-left: 20px;
      position: relative;
      font-size: 31px;
      color: #FFF;
      font-family: "Sigmar", serif;
      font-weight: 400;
      font-style: normal;
  }
  
  #header span {
    position: absolute;
    top: 16px;
    right: 10px;
    color:white;
  }

    #header a {
      color:white;
      text-decoration: none;
    }

#menu {
  position: absolute;
  left: 0;
  width: 200px;
  top:50px;
  height: calc(100% - 50px);
  background-color: #EEE;
}
  .menu_option {
    border-bottom: 1px solid #DDD;
    padding: 20px 0px 20px 15px;
    cursor:pointer;
  }
    .menu_option img {
      height: 40px;
      vertical-align: middle;
      margin-right: 15px;
      position: relative;
    }
    .menu_option span {
      position:relative;
      top:1px;
    }
    .menu_option_selected {
      background-color: #FFF;
    }
    
#menu_mobile {
  position: absolute;
  left: 0;
  right:0;
  bottom:0;
  height: 50px;
  background-color: #EEE;
  z-index: 99;
}

    #menu_mobile .menu_option {
        display: inline-block;
        padding: 5px;
        text-align: center;
        flex: 1;
    }
    #menu_mobile img {
        display: block;
        vertical-align: top;
        height: 20px;
        margin: 0px auto;
    }

#content {
  position: absolute;
  left: 200px;
  width: calc(100% - 200px);
  top:50px;
  height: calc(100% - 50px);
  overflow: auto;
}


/*TBALE */
.tableFixHead thead th {
  position: sticky; top: 0; z-index: 1;
}