@font-face {
  font-family: Adriana_Bold;
  src: url(../fonts/Adrianna/Adrianna-Bold.ttf);
}

body{
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
}

header{
  z-index: 21;
  position: fixed;
  /* background: #22242A; */
  background: #022253;
  padding: 20px;
  width: calc(100% - 0%);
  top: 0;
  height: 30px;
}

.left_area h3{
  color: #fff;
  margin: 0;
  text-transform: uppercase;
  font-size: 25px;
  /* font-weight: 900; */
  font-family: "Adriana_Bold", "Roboto", sans-serif;
}

.left_area span{
  color: #19B3D3;
  font-family: "Adriana_Bold", "Roboto", sans-serif;
}

.sair_btn{
  padding: 5px;
  /* background: #19B3D3; */
  background: #f6e44b;
  text-decoration: none;
  float: right;
  margin-top: -30px;
  margin-right: 40px;
  padding-right: 30px;
  padding-left: 30px;
  border-radius: 2px;
  font-size: 15px;
  font-weight: 600;
  color: #022253;
  transition: 0.5s;
  transition-property: background;
}

.sair_btn:hover{
  background: #2A80B9;
  color:#fff;
}

.sidebar{
  z-index: 1;
  top: 0;
  /* background: #2f323a; */
  /*background: #f5f5f5;*/
  background: #E9ECEF;
  margin-top: 70px;
  padding-top: 30px;
  position: fixed;
  left: 0;
  width: 250px;
  height: calc(100% - 9%);
  transition: 0.5s;
  transition-property: left;
  overflow-y: auto;
}

.profile_info{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sidebar .profile_info .profile_image{
  width: 100px;
  height: 100px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.sidebar .profile_info h4{
  /* color: #ccc; */
  color: #022253;
  margin-top: 0;
  margin-bottom: 20px;
}

.sidebar a{
  color: #000;
  display: block;
  width: 100%;
  line-height: 60px;
  text-decoration: none;
  padding-left: 40px;
  box-sizing: border-box;
  transition: 0.5s;
  transition-property: background;
}

.sidebar a:hover{
  /*  Claro */
  /*background: #2A80B9;*/
  /*  Escuro */
  background: #022253;

  color: #fff;
}

.sidebar i{
  padding-right: 10px;
}

label #sidebar_btn{
  z-index: 1;
  color: #fff;
  position: fixed;
  cursor: pointer;
  left: 300px;
  font-size: 20px;
  margin: 5px 0;
  transition: 0.5s;
  transition-property: color;
}

label #sidebar_btn:hover{
  color: #2A80B9;
}

#check:checked ~ .sidebar{
  left: -185px;
}

#check:checked ~ .sidebar a span{
  display: none;
}

#check:checked ~ .sidebar a{
  font-size: 20px;
  margin-left: 165px;
  width: 100%;
}

.card-title-blue{
    /* claro */
    /*background: #2A80B9 !important;*/
    /* escuro */
    background: #022253 !important;
    color: #fff;
}

.content{
  width: (100% - 250px);
  margin-top: 60px;
    margin-left: 250px;
  padding: 20px;
  /* background: url(background.png) no-repeat; */
  background-position: center;
  background-size: cover;
  height: 100vh;
  transition: 0.5s;
}

#check:checked ~ .content{
  margin-left: 60px;
}

#check:checked ~ .sidebar .profile_info{
  display: none;
}

#check{
  display: none;
}

.mobile_nav{
  display: none;
}

.content .card p{
  background: #fff;
  padding: 15px;
  margin-bottom: 10px;
  font-size: 14px;
  opacity: 0.8;
}

/* Responsive CSS */

@media screen and (max-width: 780px){
    .container > .col{
        padding-right: 0;
        padding-left: 0;
    }


  .sidebar{
    display: none;
  }

  #sidebar_btn{
    display: none;
  }

  .content{
    margin-left: 0;
    margin-top: 0;
    padding: 10px 20px;
    transition: 0s;
  }

  #check:checked ~ .content{
    margin-left: 0;
  }

  .mobile_nav{
    display: block;
    width: calc(100% - 0%);
  }

  .nav_bar{
    background: #222;
    width: (100% - 0px);
    margin-top: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
  }

  .nav_bar .mobile_profile_image{
    width: 50px;
    height: 50px;
    border-radius: 50%;
  }

  .nav_bar .nav_btn{
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    transition: 0.5s;
    transition-property: color;
  }

  .nav_bar .nav_btn:hover{
    color: #19B3D3;
  }

  .mobile_nav_items{
    background: #2F323A;
    display: none;
  }

  .mobile_nav_items a{
    color: #fff;
    display: block;
    text-align: center;
    letter-spacing: 1px;
    line-height: 60px;
    text-decoration: none;
    box-sizing: border-box;
    transition: 0.5s;
    transition-property: background;
  }

  .mobile_nav_items a:hover{
    background: #19B3D3;
  }

  .mobile_nav_items i{
    padding-right: 10px;
  }

  .active{
    display: block;
  }
}

header > div > a{
    color: #022253;
    text-decoration-color: #022253;
}

header > div > a:active{
    color: #022253;
    text-decoration-color: #022253;
}

header > div > a:visited{
    color: #022253;
    text-decoration-color: #022253;
}

header > div > a:hover{
    color: #022253;
    text-decoration-color: #022253;
}

header > div > a:focus{
    color: #022253;
    text-decoration-color: #022253;
}

@media (min-width: 1200px){
    .bootstrap-iso .container, .bootstrap-iso .container-sm, .bootstrap-iso .container-md, .bootstrap-iso .container-lg, .bootstrap-iso .container-xl {
        max-width: 1400px;
    }
}
