
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
}

html,body{
    margin:0;
    padding: 0;
    box-sizing: border-box;
    background-color: #F0F5F9;
    overflow-x: hidden;
}

.login_bg{
  background: url('../images/login_bg.png');
  background-position: center;
  background-size: cover;
}
   #Menu-bar{
    display: none;
   }
.side_nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 230px; 
  height: 100%;
  /* width: 220px; */
  
  z-index: 100;
  background-color: #F0F5F9;
  /* background-color: #2f98e7; */
  transition: all 0.5s ease;
}

.side_nav .logo-details {
  height: 60px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.side_nav .nav-links {
  height: 100%;
  padding: 100px 0 0px 0;
  overflow: auto;
}

.side_nav .nav-links::-webkit-scrollbar {
  display: none;
}
.side_nav .nav-links li {
  position: relative;
  list-style: none;
  transition: all 0.4s ease;
  color:#53616C;
}
.side_nav .nav-links li:hover {
    /* background: linear-gradient(180deg, #8EC7F5 0%, rgba(142, 199, 245, 0.00) 169.7%); */
    background-color: #E1E2E1;
}
.side_nav .nav-links li .icon-link {
  display: flex;
  align-items: center;
  justify-content: space-between;

}
/* .side_nav.close .nav-links li .icon-link {
  display: block;
} */
.side_nav .nav-links li i {
  height: 50px;
  min-width: 78px;
  text-align: center;
  line-height: 50px;
  color:#000;
  font-size: 20px;
  color:#53616C;
  cursor: pointer;
  transition: all 0.3s ease;
}
.side_nav .nav-links li.showMenu i.arrow {
  transform: rotate(-180deg);
  color:#53616C;
}
/* .side_nav.close .nav-links i.arrow {
  display: none;
} */
.side_nav .nav-links li a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.side_nav .nav-links li a .link_name {
  font-size: 15px;
  font-weight: 400;
color:#53616C;
  transition: all 0.4s ease;
}

.side_nav .nav-links li .sub-menu {
  /* padding: 6px 6px 14px 80px; */
  padding: 6px 6px 14px 30px; 
  margin-top: -10px;
  background: #E1E2E1;
  display: none;
}
.side_nav .nav-links li.showMenu .sub-menu {
  display: block;
}
.side_nav .nav-links li .sub-menu a {
  color:black;
  font-size: 15px;
  padding: 5px 0;
  white-space: nowrap;
  opacity: 0.6;
  transition: all 0.3s ease;
}
.side_nav .nav-links li .sub-menu a:hover {
  opacity: 1;
}

.side_nav .nav-links li .sub-menu .link_name {
  display: none;
}
/* .side_nav.close .nav-links li .sub-menu .link_name {
  font-size: 18px;
  opacity: 1;
  display: block;
} */
.side_nav .nav-links li .sub-menu.blank {
  opacity: 1;
  pointer-events: auto;
  padding: 3px 20px 6px 16px;
  opacity: 0;
  pointer-events: none;
}
.side_nav .nav-links li:hover .sub-menu.blank {
  top: 50%;
  transform: translateY(-50%);
}
.side_nav .profile-details {
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 7px;
  /* background: linear-gradient(180deg, #116CB5 0%, rgba(17, 108, 181, 0.00) 141.57%); */
  padding: 8px 0;
  transition: all 0.5s ease;
}

.side_nav .profile-details .profile-content {
  display: flex;
  align-items: center;
}
.side_nav .profile-details img {
  height: 60px;
  width: 60px;
  object-fit: cover;
  border-radius: 16px;
  margin: 0 14px 0 12px;
  transition: all 0.5s ease;
}

.side_nav .profile-details .profile_name,
.side_nav .profile-details .job {
  color:#53616C;
  font-size: 18px;
  font-weight: 500;

}

.side_nav .profile-details .job {
  font-size: 12px;
}
.home-section {
  position: relative;
  background-color: #F6FCFD;
  height: 100%;
  left: 260px;
  width: calc(100% - 260px);
  transition: all 0.5s ease;
}
.side_nav.close ~ .home-section {
  left: 78px;
  width: calc(100% - 78px);
}

.dashboard-content{
    background-color: #C7A989;
    height: 100%;
    padding-bottom: 150px!important;
    /* border-radius: 89px 0 0 0 ; */
    border-radius: 95px 0 0 0 ; 
    margin-left: 240px;
}

/* Searcg bar */
.search {
  display: inline-block;
  position: relative;
}

.search input[type="text"] {
  width: 250px;
  padding: 10px;
  border: none;
  border-radius: 50px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.search button[type="submit"] {
  background-color: #53616C;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
  right: 0;
  transition: .9s ease;
}

.search button[type="submit"]:hover {
  /* transform: scale(1.1); */
  color: rgb(255, 255, 255);
  background:none;
  border:1px solid #53616C;
  color:#53616C;
}




/* 
 */
.grey_btn{
    background-color: #53616C;
    color:#fff;
}
.grey_btn:hover{
    background: transparent;
    border:1px solid #53616C;
}
.payment-input{
  background-color: #D9D9D9!important;
}
    .table_head th{
       font-family: Inter;
       font-size: 17px;
        padding: 10px;
       font-weight: 600;
       font-stretch: normal;
       font-style: normal;
       line-height: normal;
       letter-spacing: normal;
       text-align: left;
       top:0;
       position: sticky;
       color: rgba(51, 54, 63, 0.87);
       background-color: white;
    }
    .report-table td{
      padding: 10px;
      font-family: Inter;
      font-size: 15px;
      font-weight: 500;
      font-stretch: normal;
      font-style: normal;
      line-height: normal;
      letter-spacing: normal;
      text-align: left;
      color: #33363f;
    }

     .options-wrapper {
      height: 90%;
      overflow-y: scroll; 
    
    }

    div ::-webkit-scrollbar {
       width: 5px;
       height: 4px;
     }
   

   div ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #D9D9D9;
    border-radius: 10px;
  }
  

  div ::-webkit-scrollbar-thumb {
    background-color: #53616C;
    border-radius: 10px;
    
  } 

.search-btn{
  background-color:#B09578;
  color:white;
}
.search-btn:hover{
   background-color:#836f5a;
  color:white;
}

/*upload image*/


.upload-image {
  position: relative;
  max-width: 205px;
  margin: 16px auto;
}
.upload-image.image-edit {
  position: absolute;
  right: 12px;
  z-index: 100;
  top: 10px;
}
/* .image-edit input {
  display: none!important;
} */
 .image-edit input + label {
  display: inline-block;
  position: absolute;
  z-index: 2;
  margin-top: 72%;
  margin-left: 15%;
  width: 34px;
  height: 34px;
  border-radius: 100%;
  background: #000;
  border: 1px solid transparent;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  font-weight: normal;
  transition: all 0.2s ease-in-out;
}
.image-edit input  label:hover {
  background: #f1f1f1;
  border-color: #d6d6d6;
}
.image-edit input  label:after {
  /*content: "\f040";*/
  font-family: 'FontAwesome';
  color: #757575;
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  text-align: center;
  margin: auto;
}
.image-preview {
  width: 100px;
  height: 100px;
  position: relative;
  /* border-radius: 100%; */
  border: 6px solid #F8F8F8;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}
 .image-preview > div {
  width: 100%;
  height: 100%;
  /* border-radius: 100%; */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
 

 .service-card{
   transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275)
 }


.service-card:hover{
  transform: scale(1.02);
  box-shadow: 0px 0px 20px 1px #53616cc5;
  border: 1px solid rgba(255, 255, 255, 0.454);
}

.amt{
  cursor: pointer;
  
}
.amt:hover{
	animation: wiggle 2s linear infinite;
}

@keyframes wiggle {
  0%, 7% {
    transform: rotateZ(0);
  }
  15% {
    transform: rotateZ(-15deg);
  }
  20% {
    transform: rotateZ(10deg);
  }
  25% {
    transform: rotateZ(-10deg);
  }
  30% {
    transform: rotateZ(6deg);
  }
  35% {
    transform: rotateZ(-4deg);
  }
  40%, 100% {
    transform: rotateZ(0);
  }
}

/* Profile page */
.profile-nav{
  background-color: #53616C!important;
}

.profile-nav .nav-link{
  color:#fff;
}
.profile-nav.nav-link:active{
  color:#000;
}
.profile_details span{
  position: absolute;
  margin-left: -30px;
  margin-top: 50px;
}
.profile_overview h5{
  color: #002447;
font-family: Inter;
font-size: 24px;
font-style: normal;
font-weight: 700;
line-height: normal;
}
.th_color{
  color: 002447;
  opacity: 70%;
  font-weight: 500;
}
.profile_Page{
  width: 82%;
}
.profile_Page ul{
  border-radius: 22px 22px 0px 0px;
  background: #002447;
}
.profile_Page ul li  .nav-link{
  color: #f6fcfd!important;
}
.profile_Page ul li  .nav-link:hover{
  /*border-color:#F6FCFD;*/
  border-radius: 22px 22px 0 0;
 
}
.profile_Page ul li  .nav-link.active{
  color: #002447!important;
  border-radius: 18px 18px 0 0;
  
}
/*upload image*/

.edit-container {
  max-width: 960px;
  margin: 30px auto;
  padding: 20px;
}
h1 {
  font-size: 20px;
  text-align: center;
  margin: 20px 0 20px;
}
h1 small {
  display: block;
  font-size: 15px;
  padding-top: 8px;
  color: gray;
}
.upload-image {
  position: relative;
  max-width: 205px;
  margin: 16px auto;
}
.upload-image.image-edit {
  position: absolute;
  right: 12px;
  z-index: 1;
  top: 10px;
}
.image-edit input {
  display: none!important;
}
 .image-edit input + label {
  display: inline-block;
  position: absolute;
  z-index: 2;
  margin-top: 72%;
  margin-left: 15%;
  width: 34px;
  height: 34px;
  border-radius: 100%;
  background: #000;
  border: 1px solid transparent;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  font-weight: normal;
  transition: all 0.2s ease-in-out;
}
.image-edit input  label:hover {
  background: #f1f1f1;
  border-color: #d6d6d6;
}
.image-edit input  label:after {
  /*content: "\f040";*/
  font-family: 'FontAwesome';
  color: #757575;
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  text-align: center;
  margin: auto;
}
.image-preview {
  width: 192px;
  height: 192px;
  position: relative;
  border-radius: 100%;
  border: 6px solid #F8F8F8;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}
 .image-preview > div {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.green_btn{
  border:none;
  background: linear-gradient(179deg, #72A720 0.63%, rgba(114, 167, 32, 0.00) 313.63%)!important;
}

