@font-face {
  font-family: Nunito;
  src: url(/fonts/Nunito-VariableFont_wght.ttf);
  font-weight:600;
}
*{
  font-family: Nunito;
}
.form-control{
  margin-left: 1px;
  width: 95%;
  margin: 2px auto;
  }
  
#tabcheckbox{
  min-width:40px;max-width: 40px;width: 40px;
}  

.spansform{
  font-size: 15px;
}  

  .button {
    font-size: 1em;
    padding: 10px;
    text-decoration: none;
    cursor: pointer;
    background-color: #222E3C;
    /* border-radius: 10px; */
    /* transition: all 0.3s ease-out; */
  }

  .button-light {
    font-size: 1em;
    padding: 10px;
    text-decoration: none;
    cursor: pointer;
    color: #222E3C;
    background-color: white;
    border-radius: 10px;
    /* transition: all 0.3s ease-out; */
  }

  .overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    /* transition: opacity 500ms; */
    visibility: hidden;
    opacity: 0;
    overflow: scroll;
  }

  .overlay:target {
    visibility: visible;
    opacity: 1;
  }
  .popup {
    margin: 20px auto;
    padding: 20px;
    padding-top: 30px;
    background: #fff;
    border-radius: 5px;
    width: 40%;
    position: relative;
    /* transition: all 0.5s ease-in-out; */
  }
  .popup h3 {
    margin-top: 0;
    color: #333;
    margin-bottom: 20px;
    font-family: Tahoma, Arial, sans-serif;
  }
  .popup .close {
    position: absolute;
    top: 10px;
    right: 30px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
  }
  .popup .content {
    /* max-height: 30%; */
    width: auto;
    overflow: auto;
  }
  @media screen and (max-width: 700px){
    .popup{
      width: 90%;
    }
  }



  #pagination {
    margin: 0;
    padding: 0;
    text-align: center
  }
  #pagination li {
    display: inline
  }
  #pagination li a {
    display: inline-block;
    text-decoration: none;
    padding: 5px 10px;
    color: #000
  }
  
  /* Active and Hoverable Pagination */
  #pagination li a {
    border-radius: 5px;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s
      
  }
  #pagination li a.active {
    background-color: #222E3C;
    color: #fff
  }
  #pagination li a:hover:not(.active) {
    background-color: #ddd;
  } 
  
  /* border-pagination */
  .b-pagination-outer {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
    display: flex
  }
  #border-pagination {
    margin: 0 auto;
    padding: 0;
    text-align: center
  }
  #border-pagination li {
    display: inline;
  
  }
  #border-pagination li a {
    display: block;
    text-decoration: none;
    color: #000;
    padding: 5px 10px;
    border: 1px solid #ddd;
    float: left;
  
  }
  #border-pagination li a {
    -webkit-transition: background-color 0.4s;
    transition: background-color 0.4s
  }
  #border-pagination li a.active {
    background-color: #222E3C;
    color: #fff;
  }
  #border-pagination li a:hover:not(.active) {
    background: #ddd;
  }


.dropdown-item:hover{
  background-color: lightgray;
}