.btn-success {
  background: rgba(31, 215, 127, 0.12);
  border-radius: 6px;
  font-size: 10px;
  line-height: 14px;
  color: #1FD77F;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  padding: 8px 12px;
}

.btn-cancel {
  background: rgba(215, 31, 31, 0.12);
  border-radius: 6px;
  color: #D71F1F;
  font-size: 10px;
  line-height: 14px;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  padding: 8px 12px;
}
.btn-cancel:hover {
  background: rgba(215, 31, 31, 0.22);
}
.btn-pending{
  color: #F4B208;
  background: rgba(244, 178, 8, 0.18);
  border-radius: 6px;
  font-size: 10px;
  line-height: 14px;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  padding: 8px 12px;
}
.btn-pending:hover{
  background: rgba(244, 178, 8, 0.28);
}
.btn-light-gray {
  background: rgba(0, 0, 0, 0.01);
  border: 0.787415px solid #CDD1E0;
  border-radius: 10px;
  font-size: 12px;
  line-height: 16px;
  color: #1D1E25;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-light-gray:hover {
  background: rgba(0, 0, 0, 0.05);
}
.dashboard-wrapper {
  height: 100vh;
  font-family: 'Poppins';
}

.dashboard-wrapper .sidebar {
  width: 250px;
  position: fixed;
  border-right: 1px solid #F4F4F4;
  height: 100vh;
  display: flex;
  top: 0;
  left: 0;
  flex-direction: column;
  justify-content: space-between;
}

.dashboard-wrapper .sidebar .logo {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #F4F4F4;
}

.dashboard-wrapper .sidebar .navigation {
  padding: 40px 25px;
  height: calc(100% - 250px);
  overflow-x: hidden;
  overflow-y: auto;
}

.dashboard-wrapper .sidebar .navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dashboard-wrapper .sidebar .navigation ul li a {
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 12px 15px;
  font-size: 14px;
  line-height: 20px;
  color: #657081;
  font-weight: 500;
  height: 50px;
}

.dashboard-wrapper .sidebar .navigation ul li a:hover,
.sidebar .navigation ul li a.active {
  background: #F6F8FA;
  color: #242A30;
}

.dashboard-wrapper .sidebar .navigation ul li a:hover .icon,
.sidebar .navigation ul li a.active .icon {
  color: #D568F5;
}

.dashboard-wrapper .sidebar .navigation ul li a:hover svg path,
.sidebar .navigation ul li a.active svg path {
  stroke: #d568f5;
}

.dashboard-wrapper .sidebar .navigation ul li a:hover .booking svg path,
.sidebar .navigation ul li a.active .booking svg path {
  fill: #d568f5;
}

.dashboard-wrapper .sidebar .navigation ul li a .icon {
  font-size: 20px;
  margin-right: 10px;
}

.dashboard-wrapper .sidebar .logout {
  padding: 50px 40px;
}
.logout a {
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  color: #657081;
  text-decoration: none;
  display: flex;
  cursor: pointer;
}

.dashboard-wrapper .sidebar .logout .icon {
  margin-right: 10px;
  color: #FF4B2D;
}

.dashboard-content {
  padding-left: 250px;
  /* height: 100vh; */
}

.dashboard-content .content-header {
  height: 100px;
  border-bottom: 1px solid #F4F4F4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 50px;
}

.dashboard-content .content-body {
  height: calc(100vh - 160px);
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.flex-1 {
  flex: 1;
}

.dashboard-content .page-title h2,
.table-heading h2 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  margin: 0;
  color: #000;
}



.dashboard-content .content-header .actions {
  display: flex;
  align-items: center;
}

.dashboard-content .content-header .actions .user-info {
  margin-left: 25px;
}


.content-header .user-info .user-image {
  width: 40px;
  height: 40px;
  background: #ccc;
  border-radius: 50%;
}

.content-header .user-info .user-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.dashboard-content .content-box {
  border-bottom: 1px solid #F4F4F4;
  padding: 30px 50px;
}

.dashboard-content .content-box.table-box {
  border-bottom: none;
  border-right: 1px solid #F4F4F4;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.dashboard-content .date-slider {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.approval-notification {
  margin-bottom: 40px;
  border: 2px solid #FDE3AD;
  background: #FEFAF0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 30px;
}

.approval-notification .content h4 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: #242A31;
  margin-bottom: 5px;
}

.approval-notification .content p {
  margin: 0;
  color: #888FA6;
  font-size: 14px;
  line-height: 20px;
}

.approval-notification .image {
  width: 55px;
  height: 55px;
}

.approval-notification .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.approval-notification .content {
  flex: 1;
  margin: 0 15px;
}

.approval-notification button {
  height: 50px;
}

.date-slider .item p {
  font-size: 18px;
  line-height: 30px;
  color: #808D9E;
  margin: 0;
}

.date-slider .item h3 {
  color: #242A31;
  font-size: 36px;
  line-height: 55px;
  font-weight: 500;
  margin: 0 auto;
  width: 55px;
  height: 55px;
}

.date-slider .item.active h3 {
  background: #D568F5;
  color: #fff;
  border-radius: 50%;
}

.date-slider .item {
  text-align: center;
}

.date-slider.slick-slider .slick-arrow {
  background: #F6F8FA;
  box-shadow: none;
  opacity: 1;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  z-index: 9;
  font-size: 16px;
  color: #000;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard-content .table-heading {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.dashboard-content .table-heading .form-control {
  width: 120px;
  color: #1D1E25;
  font-size: 12px;
  line-height: 17px;
  font-weight: 500;
  appearance: auto;
  padding: 5px 12px;
  height: 40px;
  box-shadow: none;
  outline: none;
  border: 1px solid #CDD1E0;
}
.dashboard-content .table-heading .actions {
  display: flex;
  align-items: center;
}

.dashboard-content .table-heading .actions .form-control {
  background: rgba(0, 0, 0, 0.01);
  border: 0.722222px solid #CDD1E0;
  border-radius: 10px;
}
.dashboard-content .table-heading .actions input.form-control {
  margin-right: 15px;
  width: 300px;
  max-width: 100%;
}
.dashboard-content .table-heading.padding {
  padding: 30px 50px;
  border-bottom: 1px solid #F4F4F4;
  margin: 0;
}

.dashboard-content .content-box.table-box .table-responsive.padding {
  padding: 30px 50px;
}
.dashboard-content .table {
  font-size: 12px;
  line-height: 17px;
  font-weight: 600;
  font-family: 'Manrope';
}

.dashboard-content .table tr th {
  color: #808D9E;
  padding: 15px 10px;
  border: none;
}

.dashboard-content .table tr td {
  color: #242A31;
  padding: 15px 10px;
  border: none;
  vertical-align: middle;
}
.dashboard-content .table tr td p{
  margin: 0;
}
.dashboard-content .table tr:nth-child(even) td {
  background: #F6F8FA;
}

.dashboard-content .table tr td a {
  color: #007BFF;
  text-decoration: none;
}

.dashboard-content .copyrights {
  height: 60px;
  border-top: 1px solid #F4F4F4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard-content .copyrights p {
  font-size: 14px;
  line-height: 20px;
  margin: 0;
  color: #888FA6;
  text-align: center;
}

.no-data {
  text-align: center;
  font-family: 'Manrope';
}

.no-data p {
  margin: 0;
  margin-top: 15px;
  font-size: 15px;
  line-height: 20px;
  font-weight: 600;
}

.dashboard-content .content-box.table-box .no-data {
  margin-top: 50px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}



.dashboard-content .table tr td .actions {
  display: flex;
  align-items: center;
}

.dashboard-content .table tr td .actions a {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-right: 8px;
}

.dashboard-content .table tr td .actions a:last-child {
  margin-right: 0;
}

.dashboard-content .table tr td .actions a.delete {
  color: #E43D3D;
  background: rgba(228, 61, 61, 0.15);
  border-radius: 6px;
}

.dashboard-content .table tr td .actions a.edit {
  color: #F4B208;
  background: rgba(244, 178, 8, 0.18);
  border-radius: 6px;
}

.dashboard-content .table tr td .actions a.view {
  color: #007BFF;
  background: rgba(0, 123, 255, 0.13);
  border-radius: 6px;
}


.dashboard-content .content-box.table-box .table-responsive {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.table-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.table-filter p {
  font-size: 12px;
  line-height: 18px;
  color: #1D1E25;
  font-weight: 500;
  margin: 0;
}


.table-filter .action {
  display: flex;
}

.table-filter .action .btn {
  margin-right: 8px;
}

.table-filter .action .btn-light-gray:first-child .fa {
  font-size: 10px;
  margin-right: 10px;
}

.table-filter .action .btn-light-gray:last-child .fa {
  font-size: 10px;
  margin-left: 10px;
}


.dashboard-content .table-heading .wallet {
  display: flex;
  align-items: center;
}

.wallet .icon {
  background: #F6F8FA;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.wallet .balance h1 {
  font-size: 40px;
  line-height: 50px;
  font-weight: 600;
  color: #000;
  margin: 0;
  font-family: 'Poppins';
}

.wallet .balance span {
  color: #808D9E;
  font-size: 12px;
  font-weight: 600;
}
.dashboard-content .table-heading .actions .add-topup {
  height: 50px;
}
.table-title.content-box.pb-0 {
  border: none;
}

.table-title.content-box.pb-0 h2 {
  font-size: 21px;
  line-height: 32px;
  font-weight: 600;
  margin: 0;
}
.page-title {
  display: flex;
  align-items: center;
}
.page-title h3 {
  font-size: 21px;
  line-height: 32px;
  font-weight: 600;
  color: #000;
  margin: 0;
}

.page-title .fa {
  background: #F6F8FA;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  border-radius: 5px;
}

.profile-wrapper {
  margin-top: 60px;
}

.profile-wrapper .profile-image {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin-bottom: 30px;
  border: 1px solid #F59315;
  position: relative;
}

.profile-wrapper .profile-image .edit-icon {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 10px;
  bottom: 0;
  background: #F59315;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}


.profile-wrapper .form-wrapper .form-group {
  margin-bottom: 20px;
}

.profile-wrapper .form-wrapper .form-group label {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 24px;
  color: #242A31;
}

.profile-wrapper .form-wrapper .form-group .form-control {
  background: #FFFFFF;
  border: 1px solid #CDD1E0;
  height: 50px;
  border-radius: 0;
  box-shadow: none;
  outline: none;
  padding: 5px 15px;
  color: #000;
}

.profile-wrapper .action {
  margin-top: 60px;
}
.profile-wrapper .action .button {
  width: 100%;
  height: 60px;
}