@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  outline: none;
  list-style: none;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance:none;
}

body{
  background: #fdfdfd;
}

h2{
  font-size: 30px;
}

img{
  height: 110px;
  width: 110px;
  margin-left: 20px;
  margin-top: 20px;
}

/* Nav bar */

nav{
  height: 130px;
  width: 100%;
  /*background: lightgrey;*/
}

nav ul{
  float: right;
  margin-right: 95px;
}

nav li{
  display: inline-block;
  margin: 0 30px;
  margin-top: 50px;
  /*line-height: 10px;*/
}

nav a{
  color: grey !important;
  font-size: 18px;
  border: 1px solid transparent;
  padding: 7px 10px;
  border-radius: 3px;
  text-decoration: none !important;
}

a.active,a:hover{
  border: 1px solid grey;
  color: grey !important;
  transition: 0.5s;
}

nav #menu{
  color: grey;
  font-size: 30px;
  line-height: 80px;
  float: right;
  margin-right: 40px;
  cursor: pointer;
  display: none;
}

#logolink {
  border: none;
}

/* Loading Screen */

.loader {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader.hidden {
  animation: fadeOut 1s;
  animation-fill-mode: forwards;
}

@keyframes fadeOut {
  100% {
      opacity: 0;
      visibility: hidden;
  }
}

/*Auto comp*/

::selection{
  color: #fff;
  background: #664AFF;
}

.wrapper{
  margin-left: 20%;
  margin-right: 20%;
  margin-bottom: 10px;
}

.wrapper .title {
  text-align: center;
  margin-bottom: 30px;
}

.wrapper .search-input{
  background: #fff;
  width: 100%;
  border-radius: 5px;
  position: relative;
  box-shadow: 0px 1px 5px 3px rgba(0,0,0,0.12);
  display: flex;
}

.wrapper .search-input input{
  height: 55px;
  width: 83.5%; /*changed*/
  outline: none;
  border: none;
  border-radius: 5px;
  padding: 0 60px 0 20px;
  font-size: 18px;
  box-shadow: 0px 1px 5px rgba(0,0,0,0.1);
  -webkit-appearance: none;
}

/* Auto comp */

.search-input.active input{
  border-radius: 5px 5px 0 0;
}

.search-input .autocom-box{
  background: #fff;
  position: absolute;
  width: 69.5%;
  left: 30.75%;
  top: 60px;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  max-height: 140px;
  overflow-y: auto;
  border-radius: 5px;
  box-shadow: 0px 1px 5px rgba(0,0,0,0.1);
  font-size: 14px;
  z-index: 98;
}

.search-input.active .autocom-box{
  padding: 10px 8px;
  opacity: 1;
  pointer-events: auto;
}

.autocom-box li{
  list-style: none;
  padding: 8px 12px;
  display: none;
  width: 100%;
  cursor: default;
  border-radius: 3px;
}

.search-input.active .autocom-box li{
  display: block;
}
.autocom-box li:hover{
  background: #efefef;
}

.search-input .icon{
  position: absolute;
  right: 0px;
  top: 0px;
  height: 55px;
  width: 55px;
  text-align: center;
  line-height: 55px;
  font-size: 20px;
  color: #644bff;
  cursor: pointer;
}

/* Multi select*/

.wrapper .search-input .multi_select_box{
  width: 30%;
}

.wrapper .search-input .multi_select_box select{
  background-color: white;
  width: 100%;
  border: none;
  box-shadow: 0px 1px 5px rgba(0,0,0,0.1);
}

.wrapper .search-input .multi_select_box button{
  font-size: 18px;
  line-height: 43px;
  text-align: center;
  background-color: #fff;
  height: 55px;
  border: none;
  border-radius: 5px;
  box-shadow: 0px 1px 5px rgba(0,0,0,0.1);
}

/* Icons */

.infoIcon{
  height: 40px;
  width: 55px;
  text-align: center;
  line-height: 55px;
  cursor: pointer;
}

.infoIcon a{
  border: none;
  color: #644bff;
}

/* Report */

.report_container{
  width: 900px;
  /*height: 850px;*/
  margin: 50px auto;
  /*background-color: #fff;
  border-radius: 5px;
  box-shadow: 0px 1px 5px rgba(0,0,0,0.1);
  box-shadow: 0px 1px 5px 3px rgba(0,0,0,0.12);*/
}

canvas{
  margin: 100px auto;
  margin-bottom: 20px;
  margin-top: 0px;
  text-align: center;
  /*background-color: #fff;
  box-shadow: 0px 1px 5px rgba(0,0,0,0.1);*/
}

.chart_icon1{
  position: absolute;
  z-index: 98;
  padding-top: 14px;
  padding-left: 42px;
}

.chart_icon1 a{
  border: none;
  color: #644bff;
}

.chart_icon2{
  position: absolute;
  z-index: 98;
  padding-top: 14px;
  padding-left: 42px;
}

.chart_icon2 a{
  border: none;
  color: #644bff;
}

.note{
  font-size: 14px;
}

/* Table */

.table-container{
  margin-right: 10%;
  margin-left: 10%;
}

.table > thead > tr > th
{
  font-size:11px !important; 
}

.table > tbody > tr > td
{
  padding: 5px;
  font-size: 11px !important;
}

table{
  margin: 0 auto;
  width: 100%;
  clear: both;
  border-collapse: collapse;
  /*table-layout: fixed;*/
  word-wrap:break-word;
}

.bold {
  font-weight:bold;
}

.table_title{
  max-width: 300px;
  margin: 0px auto;
  text-align: center;
}

.table_title .icons{
  position: absolute;
  z-index: 98;
  padding-top: 3px;
  padding-left: 40px;
}

.table_title .icons a{
  border: none;
  color: #644bff;
}


/* Footer */

.site-footer
{
  position: absolute;
  width: 100%;
  bottom: 0;
  background-color:#f5f5f5;
  padding:20px 0 20px;
  font-size:13px;
  line-height: 23px;
  color:#3f3f3f;
}
.site-footer hr
{
  border-top-color:#bbb;
  opacity:0.5
}
.site-footer hr.small
{
  margin:20px 0
}
.site-footer h6
{
  color:#3f3f3f;
  font-size:16px;
  text-transform:uppercase;
  margin-top:5px;
  letter-spacing:2px
}
.site-footer a
{
  border: none;
  color:#3366cc;
}
.site-footer a:hover
{
  color:#3366cc;
  text-decoration:none;
}
.footer-links
{
  padding-left:0;
  list-style:none
}
.footer-links li
{
  display:block;
}
.footer-links a
{
  color:#3366cc;
}
.footer-links a:active,.footer-links a:focus,.footer-links a:hover
{
  color:#3366cc;
  text-decoration:none;
}
.footer-links.inline li
{
  display:inline-block;
}

.copyright-text
{
  margin:0;
}

a:link
{
  color:#3366cc;
}

.left{
  display: inline-block;
  float: left;
  width: 50%;
}

.right{
  display: inline-block;
  float: right;
  width: 30%;
}

@media (max-width: 1048px){
  #dwn-btn{
    font-size: 14px;
  }
  #dwn-btn2{
    font-size: 14px;
  }
  #pic-btn{
    font-size: 14px;
  }
  #pic-btn2{
    font-size: 14px;
  }
  .note{
    font-size: 12px;
  }
  .wrapper{
    margin-left: 10%;
    margin-right: 10%;
    margin-bottom: 10px;
  }
  .wrapper .title {
    text-align: center;
    margin-bottom: 0px;
  }
  .wrapper .search-input input{
    height: 40px;
    width: 83.5%; /*changed*/
    outline: none;
    border: none;
    border-radius: 5px;
    padding: 0 60px 0 20px;
    font-size: 12px;
    box-shadow: 0px 1px 5px rgba(0,0,0,0.1);
    -webkit-appearance: none;
  }
  .search-input .autocom-box{
    background: #fff;
    position: absolute;
    width: 78.5%;
    margin-left: 10%;
    left: 75px;
    top: 42px;
    padding: 0;
    opacity: 0;
    pointer-events: none;
    max-height: 114px;
    overflow-y: auto;
    border-radius: 5px;
    box-shadow: 0px 1px 5px rgba(0,0,0,0.1);
    font-size: 10px;
    z-index: 98;
  }
  .wrapper .search-input .multi_select_box button{
    font-size: 12px;
    line-height: 30px;
    text-align: center;
    background-color: #fff;
    height: 40px;
    border: none;
    border-radius: 5px;
    box-shadow: 0px 1px 5px rgba(0,0,0,0.1);
  }
  .search-input .icon{
    position: absolute;
    right: 0px;
    top: 0px;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    font-size: 14px;
    color: #644bff;
    cursor: pointer;
  }
  .wrapper .search-input .multi_select_box{
    width: 110px;
  }
  .bootstrap-select {
    width: 120px !important;
  }
  .selectpicker{
    width: 10%;
  }
  .report_container{
    width: 90%;
    /*height: 850px;*/
    margin: 10px auto;
    /*background-color: #fff;
    border-radius: 5px;
    box-shadow: 0px 1px 5px rgba(0,0,0,0.1);
    box-shadow: 0px 1px 5px 3px rgba(0,0,0,0.12);*/
  }
  canvas{
    width: 100%;
    margin: 0 auto;
    margin-bottom: 20px;
    margin-top: 0px;
    text-align: center;
    /*background-color: #fff;
    box-shadow: 0px 1px 5px rgba(0,0,0,0.1);*/
  }
  .infoIcon{
    height: 20px;
    width: 20px;
    text-align: center;
    line-height: 40px;
    font-size: 14px;
    cursor: pointer;
  }
  nav{
    height: 80px;
  }
  nav li{
    margin: 0 30px;
    margin-top: 30px;
    /*line-height: 10px;*/
  }
  img{
    height: 70px;
    width: 70px;
    margin-left: 10px;
    margin-top: 10px;
  }
  nav ul{
    margin-right: 20px;
  }
  nav a{
    font-size: 15px;
  }
  .site-footer
  {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    bottom: 0;
    background-color:#f5f5f5;
    padding:20px 0 20px;
    font-size:9px;
    line-height: 17px;
    color:#3f3f3f;
  }
  h2{
    font-size: 22px;
  }
  li{
    font-size: 10px;
  }
}

@media (max-width: 800px){
  #dwn-btn{
    font-size: 10px;
  }
  #dwn-btn2{
    font-size: 10px;
  }
  #pic-btn{
    font-size: 10px;
  }
  #pic-btn2{
    font-size: 10px;
  }
  .note{
    font-size: 10px;
  }
  .wrapper{
    margin-left: 10%;
    margin-right: 10%;
    margin-bottom: 10px;
  }
  .wrapper .title {
    text-align: center;
    margin-bottom: 0px;
  }
  .wrapper .search-input input{
    height: 40px;
    width: 83.5%; /*changed*/
    outline: none;
    border: none;
    border-radius: 5px;
    padding: 0 60px 0 20px;
    font-size: 12px;
    box-shadow: 0px 1px 5px rgba(0,0,0,0.1);
    -webkit-appearance: none;
  }
  .search-input .autocom-box{
    background: #fff;
    position: absolute;
    width: 76.5%;
    margin-left: 10%;
    left: 80px;
    top: 42px;
    padding: 0;
    opacity: 0;
    pointer-events: none;
    max-height: 114px;
    overflow-y: auto;
    border-radius: 5px;
    box-shadow: 0px 1px 5px rgba(0,0,0,0.1);
    font-size: 10px;
    z-index: 98;
  }
  .wrapper .search-input .multi_select_box button{
    font-size: 12px;
    line-height: 30px;
    text-align: center;
    background-color: #fff;
    height: 40px;
    border: none;
    border-radius: 5px;
    box-shadow: 0px 1px 5px rgba(0,0,0,0.1);
  }
  .search-input .icon{
    position: absolute;
    right: 5px;
    top: 0px;
    height: 20px;
    width: 20px;
    text-align: center;
    line-height: 40px;
    font-size: 14px;
    color: #644bff;
    cursor: pointer;
  }
  .wrapper .search-input .multi_select_box{
    width: 110px;
  }
  .bootstrap-select {
    width: 120px !important;
  }
  .selectpicker{
    width: 10%;
  }
  .infoIcon{
    height: 20px;
    width: 20px;
    text-align: center;
    line-height: 40px;
    font-size: 14px;
    cursor: pointer;
  }
  nav #menu{
    display: block;
  }
  nav ul{
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #fdfdfd;
    top: 80px;
    left: -100%;
    text-align: center;
    z-index: 100;
  }
  nav li{
    display: block;
    margin: 0px 0;
    line-height: 90px;
  }
  nav a{
    font-size: 18px;
  }
  a.active,a:hover{
    border: none;
    color: #664AFF !important;
  }
  nav ul.show{
    left: 0;
  }
  .site-footer
  {
    position: relative;
    width: 100%;
    bottom: 0;
    background-color:#f5f5f5;
    padding:20px 0 20px;
    font-size:9px;
    line-height: 17px;
    color:#3f3f3f;
  }
  h2{
    font-size: 20px;
  }
  h4{
    font-size: 18px;
  }
  .report_container{
    width: 90%;
    /*height: 850px;*/
    margin: 10px auto;
    /*background-color: #fff;
    border-radius: 5px;
    box-shadow: 0px 1px 5px rgba(0,0,0,0.1);
    box-shadow: 0px 1px 5px 3px rgba(0,0,0,0.12);*/
  }
  canvas{
    width: 100%;
    margin: 0 auto;
    margin-bottom: 20px;
    margin-top: 0px;
    text-align: center;
    /*background-color: #fff;
    box-shadow: 0px 1px 5px rgba(0,0,0,0.1);*/
  }
  li{
    font-size: 10px;
  }
  
  .table-container{
    margin: 0 auto;
  }
  
  .table > thead > tr > th
  {
    font-size: 8px !important; 
  }
  
  .table > tbody > tr > td
  {
    font-size: 8px !important;
  }
  .dataTables_filter>label>input
  {
    line-height:normal !important;
  }
  .dataTables_length > label
  {
    font-weight:normal !important;
    font-size:12px !important; 
  }
  .dataTables_filter > label
  {
    font-weight:normal !important;
    font-size:12px !important; 
  }
  .dataTables_paginate > span > a
  {
    margin-bottom: 0px !important;
    padding: 2px 10px !important;
  }
  .dataTables_paginate > a
  {
    margin-bottom: 0px !important;
    padding: 2px 10px !important;
  }
  .table_title .icons{
    padding-top: 0px;
    padding-left: 40px;
  }
}

#warning-message{
  padding-top: 50%;
  text-align: center;
}

#warning-message i{
  font-size: 40px;
}

@media only screen and (orientation:portrait){
    #wrapper { display:none; }
    footer { display:none; }
    #warning-message {display:block; }
}
@media only screen and (orientation:landscape){
    #warning-message { display:none; }
}

.footer_container{
  padding-left: 10%;
  padding-right: 10%;
}