@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

body {
  width: 100%;
  overflow-x: hidden;
  color: #707070;
  font-family: 'Poppins', sans-serif;
}

a {
  text-decoration: none;
  color: #707070;
  font-size: 16px;
}

ul , li {
  list-style-type: none;
}

.page_wrape
{
  width: 100%;
  overflow-x: hidden !important;
}


.side-bar {
  width: 250px;
  height: 100vh;
  background-color:#2d3436 ;
  box-shadow: 0 0 8ox rgba(230,230,230);
  overflow: hidden;
  overflow-y: auto;
  position: fixed;
  padding: 15px;
}
.side-bar .logo
{
  text-align: center;
  margin-bottom: 50px;
}
.side-bar .logo img{
  width: 150px;
}
.side-bar .avtar
  {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
  }
  .side-bar .avtar img
  {
    width: 50px;
    height: 50px;
    object-position: center;
    object-fit: cover;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
  }

.side-bar .avtar .name-pos h5
{
  color:#bec2c4
}
.side-bar .avtar .name-pos h3
{
  color:#ffffff
}

.side-bar .side-bar-nav ul li a
{
  display: flex;
  align-items: center;
  padding: 15px 10px;
  margin: 10px 0 ;
  width: 100%;
  transition: .4s;
}
.side-bar .side-bar-nav ul li a:hover
{
  background-color: #F6BF4F;
  color: #fff;
}

.side-bar .side-bar-nav ul li a .nav-link
{
  margin-left:15px;
}

header
{
  margin-left: 250px;
  padding: 15px;
  box-shadow: 0 0 8px rgba(230,230,230);
  min-height: 80px;

}
.profil .avtar-img
 {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.profile .avtar-img img
{
  width: 35px;
  height: 35px;
  object-position: center;
  object-fit: cover;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px;
}

header .head_inner
{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .head_inner .right-part form
{
  width: 300px;
  height: 45px;
  position: relative;
}

header .head_inner .right-part form input
{
  width: 100%;
  height: 100%;
  border: none;
  box-shadow: 0 0 8px rgb(223,223,223);
  padding: 10px 15px;
}

header .head_inner .right-part form input:focus
{
  box-shadow: 0 0 8px #ccc;
}

header .head_inner .right-part form button
{
  position: absolute;
  top: 0;
  right: 0;
  width: 15%;
  height: 100%;
  padding-top: 5px;
  text-align: center;
  font-size: 20px;
  color: #fff;
  background-color: #F6BF4F;
  border: none;
  cursor: pointer;
}

header .head_inner .left-part ul
{
  display: flex;
  align-items: center;
}
header .head_inner .left-part ul li
{
  margin-left: 30px;
}
header .head_inner .left-part ul li .profile
{
  display: flex;
  align-items: center;
}
header .head_inner .left-part ul li .profile .avtar-img
{
  margin-right: 15px;
}

header .head_inner .left-part ul li span
{
  cursor: pointer;
}

header .head_inner .left-part ul li span i
{
  font-size: 22px;
}
header .head_inner .left-part ul li span:hover
{
  color: #F6BF4F;
}
header .head_inner .left-part ul li.have_dots span
{
  position: relative;
}
header .head_inner .left-part ul li.have_dots span:before
{
  content: "";
  position: absolute;
  top: -7px;
  right: -7px;
  width: 8px;
  height: 8px;
  background-color: #F6BF4F;
  border-radius: 50px;
}
.main-content
{
  margin: 15px;
  margin-left: 275px;
  padding: 15px;
  box-shadow: 0 0 8px rgb(230,230,230);
}

.main-content .info-card
{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px 0;
}

.main-content .info-card .card
{
  width: 31%;
  min-height: 220px;
  padding: 20px;
  background: linear-gradient(to left, #363636,#777679);
  border-radius: 10px;
  color: white;
  position: relative;
}

.main-content .info-card .card:nth-child(2)
{
  background: linear-gradient(to left, #2d60ec,#777679);
}

.main-content .info-card .card:nth-child(3)
{
  background: linear-gradient(to left, #fcbb67,#777679);
}


.main-content .info-card .card::before,
.main-content .info-card .card::after
{
  content: "";
  position: absolute;
  top: -5%;
  right: -15%;
  width: 150px;
  height: 150px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 100%;
}
.main-content .info-card .card::after
{
  top: auto;
  bottom: -5%;
  right: -5%;
}




.main-content .info-card .card .card-icon
{
  margin-bottom: 15px;
  width:70px ;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 8px #fff;
}

.main-content .info-card .card .card-icon span i
{
  font-size: 26px;
}
.main-content .info-card .card .card-detail
{
  margin-bottom: 10px;
  margin-top: 25px;
}

.main-content .main-table .form-title
{
  margin: 15px 0;
}

.main-content .user_table
{
  display: grid;
}

.main-content .user_table table thead tr td
{
  padding: 20px 0;
  font-weight: bold;
  color: #000;
}

.main-content .user_table table tbody tr td
{
  padding: 15px 0;
}

.main-content .user_table tbody tr .form-edit {

  display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    height: calc(1.2em + 1.1rem + 2px);
    width: calc(1.2em + 1.1rem + 2px);
    color: #f6bf4f;
    border-radius: 10%;
    background-color:#2d3436 ;
}

.main-content .user_table tbody tr .form-edit:hover
{
  background-color:#f6bf4f ;
  color: #2d3436;
}

.side-bar.hide
{
  width: 100px;
  overflow: hidden;
}
.side-bar.hide .logo img
{
  width: 80px;
  display: block;

}


.side-bar.hide .side-bar-nav .nav-link,
.side-bar.hide  .name-pos
{
 display: none;
}

.side-bar.hide .side-bar-nav span:not(.nav-link)
{
  font-size:26px ;
  padding-left: 8px;
}
.slide-left
{
  margin-left: 100px;
}

header, .main-content
{
  transition: .2s;
}


@media screen and (max-width:992px)
{
  .side-bar
  {
    left: -250px;
    z-index: 1000;
    transition: .5s;
  }
  .side-bar.hide {
    width: 250px;
    left: 0;
  }
  header, .main-content {
    margin: 0;
  }
  .slide-left {
    margin-left: 0;
  }
.side-bar.hide .side-bar-nav .nav-link,
.side-bar.hide  .name-pos
{
 display: none;
}
}

@media screen and (max-width:767px) {

  .main-content .info-card .card
  {
    width: 48%;
    margin-bottom:15px ;
  }
  header .head_inner .right-part form {
    width: 200px;
    height: 40px;
  }
  .main-content .user_table
  {
    overflow-x: auto;
  }

  .main-content .user_table table
  {
    width: 700px;
  }

}

@media screen and (max-width:576px) {

  header .head_inner
  {
    flex-direction: column-reverse;
  }

  header .head_inner .right-part form
  {
    width: 100%;
    height: 40px;
  }

  header .head_inner .left-part,
  header .head_inner .right-part
  {
    width: 369px;
    margin-top: 10px;
  }

  header .head_inner .left-part ul
  {
    justify-content: space-between;
  }

  header .head_inner .left-part ul li:first-child
  {
    margin-left: 0;
  }
  .main-content .info-card .card
  {
    width: 100%;
  }

}

@media  screen and (max-width:425px) {
  header .head_inner .left-part ul li
  {
    margin-left: 15px;
  }
  header .head_inner .avtar-name h3
  {
    font-size: 16px;
  }
}

@media  screen and (max-width:360px) {
  header .head_inner .left-part, header .head_inner .right-part {
    width: 260px;
    margin-top: 10px;
}
}

