/* Login Page css start */
body {
  width: 100%;
  padding: 0;
  margin: 0;
}
.Login_Page {
  height: 100vh;
  overflow: hidden;
  background-color: rgb(229, 229, 229);
}

/* .Login_Page .background {
  width: 430px;
  height: 480px;
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
} */
/* .Login_Page .background .shape {
  height: 200px;
  width: 200px;
  position: absolute;
  border-radius: 50%;
} */

.login {
  background-color: #f36525;
}

.login:hover {
  background-color: #e27e50;
}
.Login_Page .shape:first-child {
  background: linear-gradient(#1845ad, #23a2f6);
  left: -80px;
  top: -80px;
}
.Login_Page .shape:last-child {
  background: linear-gradient(to right, #ff512f, #f09819);
  right: -30px;
  bottom: -80px;
}
.Login_Page form {
  height: 450px;
  width: 400px;
  background-color: #25253f;
  /* background-color: white; */
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 40px rgba(8, 7, 16, 0.6);
  padding: 50px 35px;
}
.Login_Page form * {
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  letter-spacing: 0.5px;
  outline: none;
  border: none;
}
.Login_Page form h3 {
  font-size: 32px;
  font-weight: 500;
  line-height: 42px;
  text-align: center;
}

.Login_Page label {
  display: block;
  margin-top: 30px;
  font-size: 16px;
  font-weight: 500;
}
.Login_Page input {
  display: block;
  height: 50px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.07);
  border-radius: 3px;
  padding: 0 10px;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 300;
  /* border: 0.1px solid grey; */
}
/* .Login_Page::placeholder {
  color: #e5e5e5;
} */
.Login_Page button {
  margin-top: 50px;
  width: 100%;
  color: white;
  /* background-color: #ffffff; */

  padding: 15px 0;
  font-size: 18px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
}
.Login_Page .social {
  margin-top: 30px;
  display: flex;
}
.Login_Page .social div {
  background: red;
  width: 150px;
  border-radius: 3px;
  padding: 5px 10px 10px 5px;
  background-color: rgba(255, 255, 255, 0.27);
  color: #eaf0fb;
  text-align: center;
}
.Login_Page .social div:hover {
  background-color: rgba(255, 255, 255, 0.47);
}
.Login_Page .social .fb {
  margin-left: 25px;
}
.Login_Page .social i {
  margin-right: 4px;
}

@media screen and (min-width: 100px) and (max-width: 480px) {
  .Login_Page form {
    height: 80vh;
    width: 95% !important;
    margin: auto;
  }
}
/* Login Page css end */

/* Googlefont Poppins CDN Link */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
.sidebar {
  position: fixed !important;
  height: 100% !important;
  width: 240px !important;
  background: #25253f !important;
  transition: all 0.5s ease;
}
.sidebar.active {
  width: 60px !important;
}
.sidebar .logo-details {
  height: 80px !important;
  display: flex;
  align-items: center !important;
  margin-left: 20px;
}
.sidebar .logo-details i {
  font-size: 28px !important;
  font-weight: 500 !important;
  color: #fff !important;
  min-width: 60px !important;
  text-align: center !important;
}
.sidebar .logo-details img {
  /* width: 70% !important; */
}
.sidebar .logo-details .logo_name {
  color: #fff !important;
  font-size: 24px !important;
  font-weight: 500 !important;
  text-align: center !important;
  margin-left: 10px;
}
.sidebar .nav-links {
  margin-top: 10px;
}
.sidebar .nav-links li {
  position: relative;
  list-style: none;
  height: 50px;
}
.sidebar .nav-links li a {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.4s ease;
  background-color: #2d2d4d;
}
.sidebar .nav-links li a.active {
  background: #f36525;
}
.sidebar .nav-links li a:hover {
  background: #f36525;
}
.sidebar .nav-links li i {
  min-width: 60px;
  text-align: center;
  font-size: 18px;
  color: #fff;
}
.sidebar .nav-links li a .links_name {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
}
.sidebar .nav-links .log_out {
  position: absolute;
  bottom: 0;
  width: 100%;
}
.home-section {
  position: relative;
  background: #f5f5f5;
  min-height: 100vh;
  width: calc(100% - 240px);
  left: 240px;
  transition: all 0.5s ease;
}
.sidebar.active ~ .home-section {
  width: calc(100% - 60px);
  left: 60px;
}
.home-section nav {
  display: flex;
  justify-content: space-between;
  height: 80px;
  background: #fff;
  display: flex;
  align-items: center;
  position: fixed;
  width: calc(100% - 240px);
  left: 240px;
  z-index: 100;
  padding: 0 20px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}
.sidebar.active ~ .home-section nav {
  left: 60px;
  width: calc(100% - 60px);
}
.home-section nav .sidebar-button {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 500;
}
nav .sidebar-button i {
  font-size: 35px;
  margin-right: 10px;
}
.home-section nav .search-box {
  position: relative;
  height: 50px;
  max-width: 300px;
  width: 100%;
  margin: 0 20px;
}
nav .search-box input {
  height: 100%;
  width: 100%;
  outline: none;
  background: #f5f6fa;
  border: 2px solid #efeef1;
  border-radius: 6px;
  font-size: 18px;
  padding: 0 15px;
}
nav .search-box .bx-search {
  position: absolute;
  height: 40px;
  width: 40px;
  background: #2697ff;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 4px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  font-size: 22px;
  transition: all 0.4 ease;
}
.home-section nav .profile-details {
  display: flex;
  align-items: center;
  /* background: #f5f6fa; */
  /* border: 2px solid #efeef1; */
  border-radius: 6px;
  height: 50px;
  /* min-width: 190px; */
  padding: 0 15px 0 2px;
  cursor: pointer;
}
/* nav .profile-details img { */
/* height: 40px; */
/* width: 40px; */
/* border-radius: 50%; */
/* object-fit: cover; */
/* } */
nav .profile-details .admin_name {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  margin: 0 10px;
  white-space: nowrap;
}
nav .profile-details i {
  font-size: 25px;
  color: #333;
}
.home-section .home-content {
  position: relative;
  padding-top: 68px;
}
.home-content .overview-boxes {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 10px 20px;
  margin-bottom: 26px;
}
.overview-boxes .box {
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
  width: calc(100% / 5 - 15px);
  background: #fff;
  padding: 25px 14px;
  border-radius: 12px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.overview-boxes .box-topic {
  font-size: 13px;
  font-weight: 500;
}
.home-content .box .number {
  display: inline-block;
  font-size: 18px;
  margin-top: -6px;
  font-weight: 700;
  padding: 5px 0;
}
.home-content .box .indicator {
  display: flex;
  align-items: center;
}
.home-content .box .indicator i {
  height: 15px;
  width: 15px;
  background: #8fdacb;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  margin-right: 5px;
}
.box .indicator i.down {
  background: #e87d88;
}
.home-content .box .indicator .text {
  font-size: 12px;
}
.home-content .box .cart {
  display: inline-block;
  font-size: 20px;
  height: 30px;
  width: 30px;
  background: #cce5ff;
  line-height: 30px;
  text-align: center;
  color: #66b0ff;
  border-radius: 12px;
  margin: -15px 0 0 6px;
}
.home-content .box .cart.two {
  color: #2bd47d;
  background: #c0f2d8;
}
.home-content .box .cart.three {
  color: #ffc233;
  background: #ffe8b3;
}
.home-content .box .cart.four {
  color: #e05260;
  background: #f7d4d7;
}
.home-content .total-order {
  font-size: 20px;
  font-weight: 500;
}
.home-content .sales-boxes {
  /* display: flex; */
  /* justify-content: space-between; */
  padding: 0 20px;
}

.home-content .sales-boxes > p {
  font-weight: 700;
  font-size: 18px;
}

/* left box */
.home-content .sales-boxes .recent-sales {
  width: 100%;
  background: #fff;
  padding: 20px 30px;
  margin: 0 20px;
  border-radius: 12px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.home-content .sales-boxes .sales-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sales-boxes .box .title {
  font-size: 24px;
  font-weight: 700;
  /* margin-bottom: 10px; */
}
.sales-boxes .sales-details li.topic {
  font-size: 20px;
  font-weight: 500;
}
.sales-boxes .sales-details li {
  list-style: none;
  margin: 10px 0;
}
.sales-boxes .sales-details li a {
  font-size: 15px;
  color: #333;
  font-size: 400;
  text-decoration: none;
}
.sales-boxes .box .button {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.sales-boxes .box .button a {
  color: #fff;
  background: #0a2558;
  padding: 4px 12px;
  font-size: 15px;
  font-weight: 400;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.sales-boxes .box .button a:hover {
  background: #0d3073;
}

/* Right box */
.home-content .sales-boxes .top-sales {
  width: 35%;
  background: #fff;
  padding: 20px 30px;
  margin: 0 20px 0 0;
  border-radius: 12px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.sales-boxes .top-sales li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0;
}
.sales-boxes .top-sales li a img {
  height: 40px;
  width: 40px;
  object-fit: cover;
  border-radius: 12px;
  margin-right: 10px;
  background: #333;
}
.sales-boxes .top-sales li a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.sales-boxes .top-sales li .product,
.price {
  font-size: 17px;
  font-weight: 400;
  color: #333;
}
/* Responsive Media Query */
@media (max-width: 1240px) {
  .sidebar {
    width: 60px;
  }
  .sidebar.active {
    width: 220px;
  }
  .home-section {
    width: calc(100% - 60px);
    left: 60px;
  }
  .sidebar.active ~ .home-section {
    left: 220px;
    width: calc(100% - 220px);
    overflow: hidden;
  }
  .home-section nav {
    width: calc(100% - 60px);
    left: 60px;
  }
  .sidebar.active ~ .home-section nav {
    width: calc(100% - 220px);
    left: 220px;
  }
}
@media (max-width: 1150px) {
  .home-content .sales-boxes {
    flex-direction: column;
  }
  .home-content .sales-boxes .box {
    width: 100%;
    overflow-x: scroll;
    margin-bottom: 30px;
  }
  .home-content .sales-boxes .top-sales {
    margin: 0;
  }
}
@media (max-width: 1000px) {
  .overview-boxes .box {
    width: calc(100% / 2 - 15px);
    margin-bottom: 15px;
  }
}
@media (max-width: 780px) {
  nav .sidebar-button .dashboard,
  nav .profile-details .admin_name,
  nav .profile-details i {
    display: none;
  }
  .home-section nav .profile-details {
    height: 50px;
    min-width: 40px;
  }
  .home-content .sales-boxes .sales-details {
    width: 560px;
  }
}
@media (max-width: 550px) {
  .overview-boxes .box {
    width: 100%;
    margin-bottom: 15px;
  }
  .sidebar.active ~ .home-section nav .profile-details {
    display: none;
  }
}

.heading_name {
  /* margin-left: 30px; */
  padding: "20px 0 5px 0";
  font-weight: 700;
}

.heading_name2 {
  /* margin-left: 30px; */
  padding: 0 20px;
  font-weight: 700;
}
.middle_image {
  padding: 30px;
  margin: auto;
  display: flex;
  justify-content: center;
}
.middle_image > img {
  width: 100%;
  margin: auto;
}

/* Upload csv page */

.Upload_Csv {
  width: 80%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding: 20px;
  background-color: #bec7cd;

  border-radius: 5px;
  margin-top: 30px;
}

@media screen and (max-width: 480px) {
  .Upload_Csv {
    flex-direction: column;
    gap: 20px;
  }
}
.Upload_Csv input {
  width: 100%;
  border: 0, 1px solid grey;
  border-radius: 3px;
}

.cst_btn {
  padding: 6px 20px;
  border-radius: 5px;
  color: white;
  background-color: #f36525;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  cursor: pointer;
}
.cst_btn:hover {
  background-color: #25253f;
}
.req {
  color: red;
}


/* Table css */


.coctacts-table {
    /* background: #F7F7F7 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 10px;
  opacity: 1;
   padding-bottom: 10px;*/
    /* min-height: 30vh; */
    max-height: 50vh;
  }
  
  .t-head-fixed {
    position: sticky;
    top: 0;
  }
  
  .t-head-th-bg th {
    background-color: #24253e;
  }
  
  .coctacts-table .table-responsive {
    max-height: 310px;
    overflow-y: scroll;
  }
  
  .coctacts-table table {
    white-space: nowrap;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    max-height: 65vh;
  }
  
  .coctacts-table table thead {
    background-color: #24253e;
    color: #fff;
    text-transform: uppercase;
  }
  
  .coctacts-table .table th,
  table.table td {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .coctacts-table table.table td {
    padding-top: 10px;
    padding-right: 5px;
    padding-bottom: 10px;
    color: #4a4a4a;
    font-size: 13px;
    line-height: 14px;
  }
  
  .coctacts-table table tbody {
    background: #f7f7f7 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 10px;
    opacity: 1;
  }
  
  .coctacts-table table tbody td {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
  }
  
  /*.work-flows  table.table th {
      padding-top: 12px;
      padding-bottom: 12px;
      color:#fff;
      font-size: 13px;
       line-height: 14px;
  }*/
  /*.coctacts-table table tbody td:hover {
          display: contents;
  }
  */
  
  .se-orange {
    background-color: #f26524;
    color: #24253e !important;
  }
  .se-yellow {
    background-color: #f6cc20;
    color: #24253e !important;
  }
  .deal-td {
    padding-top: 7px !important;
  }
  .deal-td b {
    font-size: 11px;
    font-weight: 500;
  }
  /*.deal-count-bg{
          display: flex;
          justify-content: center;
          align-items: center;
       }*/
  
  .deal-td i {
    font-size: 13px;
    padding-right: 7px;
  }
  
  .coctacts-table {
    width: 100%;
  }
  .coctacts-table table tbody .Query-show:hover {
    white-space: normal;
    width: 350px;
    display: block;
  }
  
  .filter-in-mob-view {
    display: none;
  }
  
  ::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    border-radius: 10px;
    scroll-behavior: smooth;
  }
  
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
    margin-top: 5px;
    scroll-behavior: smooth;
  }
  
  ::-webkit-scrollbar-thumb {
    background: #b0b5b9;
    border-radius: 10px;
    scroll-behavior: smooth;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: #f26524;
    border-radius: 10px;
    scroll-behavior: smooth;
  }
  
  .custom-scroll-right {
    overflow: hidden !important;
  }
  
  .custom-scroll-right-bottum {
    overflow: hidden !important;
    border-bottom: 3px solid #f26524;
  }
  
  .custom-scroll-right:hover {
    overflow-y: scroll !important;
  }
  
  .custom-scroll-right-bottum:hover {
    overflow: scroll !important;
    border-bottom: none;
  }
  @media screen and (min-width: 100px) and (max-width: 480px) {
    .custom-scroll-right-bottum {
      overflow: scroll !important;
      border-bottom: 3px solid #f26524;
    }
  }
  
  .page-counter {
    /*padding-right:15px;*/
    color: #707070;
  }
  
  .page-counter span {
    float: none !important;
  }
  .page-counter i {
    font-size: 16px;
    line-height: 16px;
    padding: 0px 2px;
  }
  
.coctacts-table table {
    border-radius: 5px 5px 0px 0px;
  }
  
  .custom-scroll-right-bottum {
    box-shadow: 4px 2px 7px #bbb9b9;
  }
  
  .add-filter {
    box-shadow: 4px 2px 7px #bbb9b9;
  }
  
  /*-------------------Data table---bootstrap----------------*/
  .coctacts-table {
    width: 100%;
    /*height: 78vh;*/
    /*  overflow-x: scroll;
      overflow-y: scroll;*/
  }
  
  .coctacts-table th {
    white-space: nowrap;
    font-size: 14px;
    line-height: 16px;
    font-weight: 300 !important;
    text-transform: capitalize;
  }
  
  .coctacts-table td {
    /*font-size: .9rem;*/
    font-weight: 300;
    font-size: 14px;
    line-height: 16px;
  }
  .Student_Table,
  .Student_Table input,
  .Student_Table select {
    font-size: 13px;
  }
  
  /* New Student Deatils of Application css start */
  .ApplicationTbl {
    display: flex;
    width: 100%;
    gap: 3%;
    padding: 10px;
    height: 100%;
    overflow: hidden;
  }
  
  .ApplicationTbl > div:nth-child(1) {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 39%;
    height: 100%;
    overflow-y: scroll;
  }
  
  .ApplicationTbl > div:nth-child(2) {
    display: inline-block;
    width: 59%;
    height: 100%;
    overflow-y: scroll;
  }
  
  .ApplicationLeftCard {
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 7px;
    position: relative;
    cursor: pointer;
  }
  .ApplicationLeftCard.active {
    background-color: #f6e2d6;
  }
  
  .ApplicationLeftCard p {
    font-size: 13px;
    padding: 2px 0;
    margin: 0;
  }
  
  .ApplicationLeftCard > div {
    padding: 10px 15px;
  }
  
  .ApplicationLeftCard > div > div:nth-child(1) {
    display: flex;
    justify-content: space-between;
  }
  
  .ApplicationRightCard {
    width: 100%;
    overflow-y: scroll;
    padding: 10px;
  }
  
.coctacts-table table.table td {
    color: #24253e;
  }
  
  .table-page-details .page-counter label {
    font-size: 14px;
  }
  
  .table-page-details .page-counter label select {
    border-radius: 5px;
    border: 1px solid #eeeeee;
    font-size: 14px;
    color: #4a4a4a;
  }
  