@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300&display=swap');
*{
    margin: 0;
    padding: 0;
    /* font-family: 'Catamaran', sans-serif; */
    font-family:  sans-serif;
    box-sizing: border-box;
}
.detail_box_div{
    background:#fff;
    border-radius:20px;
    margin:10px 30px;
    padding:10px 5px;
}
.main-table{
    background:#fff;
    margin:15px 30px;
    padding:10px;
    border-radius:20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

body{
    height: 100vh;
    background: #F5F7FF;
}
.dropdown_head{
  background:#fff;
  color:#6C7383;
  font-weight:bold;
  padding: 4px 10px;
  font-size: 12px;
  text-transform: uppercase;
  margin:10px 0px 2px 5px ;
}

.nav1{
    color: #000;
    background: #fff;
    position: sticky;
    width: 100%!important;
    top: 0px;
    display: flex;
    align-items: center;
    justify-content:space-between!important;
    height: 50px;
    padding: 30px 20px;
    font-size: 18px;
    box-shadow: 0px 5px 21px -5px #CDD1E1;
    z-index: 9;
}

.user_data_row {
  background: #fff;
}
.nav1 .logo_div{

    display: flex;
    align-items: center;
}
.nav1 .logo{
  /* border: 1px solid red; */
  width: auto;
  height: 40px;
}
.nav1 i {
    margin-left: 100px;
    cursor: pointer;
}
.pf{
    display: flex;
    align-items: center;
}
.pf img{
  height: 40px;
  width: 40px;
  border-radius: 50%;

}
.menu {
    display: flex;
}
 .side-menu{
    box-shadow: 1px 3px 5px -1px #E8E9EA;
    width: 210px;
    height: calc(100vh - 60px);
    display: block;
    position: fixed;
    top: 60px;
    transition:.3s;
    /*z-index: 999;*/
    background: #fff;
    overflow-y: auto;
    
}
.side-menu::-webkit-scrollbar{
    width: 2px;
}
.side-menu::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

/* Style the scrollbar thumb */
.side-menu::-webkit-scrollbar-thumb {
  background-color: #8693b5;
  border-radius: 5px;
}
.side-menu ul{
  margin-top: 20px;
}
.side-menu ul a{
    text-decoration: none;
    display: flex;
    align-items: center;
}
.side-menu ul a{
    text-decoration: none;
    display: flex;
    align-items: center;
}
.side-menu ul li{
    list-style: none;
    display: block;
    padding: 12px 15px!important;
    font-size:14px;
    color:#6C7383;
    width:90%;
    margin:1px auto;
    border-radius:5px;
    font-family: 'Catamaran', sans-serif;
}
.side-menu ul a:hover{
    /* background:#ebf2fc; */
    cursor: pointer;
    transition:.3s;
}
.side-menu ul a:hover li{
      color:#fff;
      background:#4B49AC;
      transition:.3s;
}
.side-menu ul .active{
  /* background:#ebf2fc; */
}
.side-menu ul a .active{
  color:#fff;
  background:#4B49AC;
}

.side-menu ul a i{
  height: 10px;
  width: 10px;
  margin-right: 10px;
}
.right-menu{
    margin-left: 210px;
    width: calc(100vw - 210px);
    transition:.3s;
    height: 100%;
    overflow:hidden;
    /* background: rgb(246,246,246); */
}
.right-menu-click{
    margin-left: 0px;
    width: calc(100vw);
    transition:.3s;
    z-index: -1;
}

.menu-hide{
    transform: translate(-100%,0px);
    transition:.3s;
}

.admin_title{
    margin-top: 70px;
    padding: 10px;
    display: flex;
    box-shadow: 1px 2px 5px -1px #E8E9EA;
    align-items: center;
    padding-left: 20px;
    font-weight: 700;
    font-size: 18px;
    color: #6C7383;
    text-transform: uppercase;
}

/* ===================================================================== */
/* ============================= */

#model_pf{
  display: none;
  background: rgba(0,0,0,0.7);
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
#model-form_pf{
  background: #fff;
  width: 30%;
  /* display: none; */
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 23;
  padding: 15px;
  border-radius: 4px;
}
#close-btn2{
  background: red;
  color:#fff;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 15px;
  right: 15px;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  cursor: pointer;

}
.login_div label{
display: block;
font-size: 16px;
margin-top: 10px;
font-weight: 500;
color: #333;
}
.login_div input{
  font-size: 15px;
  margin-top: 5px;
  display: block;
  width: 100%;
  padding: 6px 10px;
  border-radius:4px;
  border: 1px solid gray;
}
.login_div input:focus{
box-shadow: 0px 0px 5px 1px rgb(255,120,61);
border:0;
outline: none;
}
.btn_div{
  margin: auto;
  display: flex;
}
.btn_div_1 {
  display: flex;
  justify-content: center;
  margin: auto;
  /* border: 1px solid red; */
}
.btn_div_1 button:nth-child(2){
  padding: 5px 10px;
  border: 1px solid #f05954;
  border-radius: 4px;
  color: #fff;
  margin-top: 20px;
  margin-left: 10px;
  cursor:pointer;
  background: linear-gradient(to left,#f09d95,#f05954);
}
.btn_div_1 button:nth-child(1){
  padding: 5px 10px;
  border: 1px solid #6f81d9;
  border-radius: 4px;
  color: #fff;
  margin-top: 20px;
  margin-right: 10px;
  cursor:pointer;
  background: linear-gradient(to left,#848fd9,#6f81d9);
}
/* ===================================================================== */

.main-content{
    padding-top: 20px;
    transition: .3s;
  }
  .main-margin{
    margin-left: 0px;
    transition:.3s;
  }

  /* -------card------- */
  .info-card{
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
    /*padding: 10px;*/
    overflow: hidden;
    z-index: 1;
  }
  .info-card .card{
    position: relative;
    width: 20%;
    min-width: 160px;
    min-height:50px;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    margin:10px;
    overflow: hidden;
    cursor: pointer;
    font-size:15px;
  }
  .info-card .card-detail{
      width:100%;
  }
  .info-card .card h4{
      text-align:center;
      width:100%;
  }
  .bg_1{background: rgb(79,109,231);
    background: linear-gradient(90deg, rgb(113 125 173) 0%, rgb(13 3 236) 100%);
}
  .bg_2{background: rgb(231,222,79);
    background: linear-gradient(90deg, rgb(231 121 79) 0%, rgba(236,11,3,1) 100%);
}
  .bg_3{    background: rgb(63,94,251);
    background: radial-gradient(circle, rgba(79,109,231,1) 0%, rgb(79,109,231) 100%);}
  .bg_4{background: rgb(2,0,36);
    background: linear-gradient(90deg, rgb(79,109,231) 0%, #4b49ac 100%);
}
  .info-card .card:after,.info-card .card:before{
    position: absolute;
    content: "";
    height: 80px;
    width:80px;
    background-color: rgba(255,255,255,0.2);
    top: -5%;
    right: -15%;
    border-radius: 100%;
    display:none;
  }
  .info-card .card:before{
    height: 100px;
    width:100px;
    top: auto;
    right: -10%;
    bottom: -10%;
  }

  .info-card .card .card-icon{
    width: 60px;
    height: 0px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    color: #fff;
    box-shadow: 0 0 4px #fff;
    visibility: hidden;
  }
  .info-card .card .card-icon span i{
    font-size: 20px;

  }
  .info-card .card .card-detail{
    margin-bottom: 0px;
    color: #f7f7f7;
  }

    @media screen and (max-width:1124px){
       .info-card .card{
          width: 25%;
       }
     }
     @media screen and (max-width:900px){
       .info-card .card{
          width: 40%;
       }

     }
     @media screen and (max-width:744px){
       .info-card .card{
          width: 40%;
       }
     }
     @media screen and (max-width:700px){
       .info-card .card{
          width: 40%;
       }
       .main-table{
           margin:10px;
       }
     }
     @media screen and (max-width:483px){
       #model-form{
         top: 10%;
         width: 90%;
       }
       .info-card .card{
          width: 100%;
       }
     }


/* ===================================================================== */


@media only screen and (max-width:880px){
  .side-menu{
    transform: translate(-100%,0px);
    transition:.3s;
 }

 .menu-hide{
   transform: translate(0%,0px);
     position: fixed;
     top: 60px;
     left: 0;
     /* background: #fff; */
     z-index: 1;
 }
 .right-menu{
     margin-left: 0px;
     width: calc(100vw);
     transition:.3s;
     height: 100%;
     /* background: rgb(246,246,246); */
 }
}
