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

/* font-family: "Montserrat", sans-serif; */

/***** General CSS *****/

body {
  word-break: break-word;
  font: 15px / 25px "BlenderPro-Medium";
  color: #393939;
  overflow-x: hidden;
  background: #f0f0f0;
}

a {
  text-decoration: none;
  color: #28b16d;
  white-space: initial;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #393939;
}

a:hover {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

img {
  max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */

input[type="number"] {
  -moz-appearance: textfield;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

p {
  font-weight: 400;
  font-size: 14px;
  color: #000000;
  font-family: "Montserrat";
  line-height: 25px;
  margin: 0;
}

/***** Font Files *****/

@font-face {
  font-family: "BlenderPro-Medium";
  src: url(../fonts/BlenderPro-Medium.ttf);
}

@font-face {
  font-family: "Mildstones";
  src: url(../fonts/Mildstones-DEMO.otf);
}

/***** Custom Classes *****/

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.pt_8 {
  padding-top: 80px;
}

.pb_8 {
  padding-bottom: 80px;
}

.py_8 {
  padding: 80px 0px;
}

.flexRow {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.flexCol {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  align-items: center;
}

h1 {
  font-family: "Cutmark";
  font-size: 55px;
  line-height: 1.2;
  color: #fff;
  font-weight: 500;
  margin: 0 0 17px;
}

h2 {
  font-family: "BlenderPro-Medium";
  font-size: 39px;
  line-height: 1;
  color: #000;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
}

h3 {
  font-family: "BlenderPro-Medium";
  font-size: 21px;
  line-height: 1.2;
  color: #111010;
  font-weight: 300;
  margin: 0;
  text-transform: uppercase;
}

h4 {
  font-family: "BlenderPro-Medium";
  font-size: 24px;
  line-height: 1.2;
  color: #111010;
  font-weight: 300;
  margin: 0;
}

h5 {
  font-family: "BlenderPro-Medium";
  font-size: 20px;
  line-height: 1.2;
  color: #272725;
  font-weight: 500;
  margin: 0;
}

h6 {
  font-family: "BlenderPro-Medium";
  font-size: 18px;
  line-height: 1.2;
  color: #393939;
  font-weight: 500;
  margin: 0;
}

select {
  background: #fff url("../images/arrow.png") no-repeat right;
  padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
  color: #575757;
}

::-moz-placeholder {
  color: #575757;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #575757;
}

:-moz-placeholder {
  color: #575757;
  opacity: 1;
}

/*-------------------------------- Sidebar SEction Start --------------------------------*/

.dashboard_page-box {
  position: relative;
  z-index: 9;
}

section.side_bar {
  position: fixed;
  z-index: 1;
  height: 99vh;
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 0vh;
  margin: 0px 0px 0px 0px;
  border-radius: 25px;
  width: 15%;
}

.side-bar-list {
  background: #ffffff;
  box-shadow: 0 0 10px 0 #0000000f;
  border-radius: 20px;
  border: 1.8px solid #e4e4e4;
  padding: 15px 0 0;
}

.side-bar-logo {
  text-align: center;
  padding: 30px 40px 15px;
  position: relative;
  background: #ffffff;
  box-shadow: 0 0 10px 0 #0000000f;
  border-radius: 20px;
  border: 1.8px solid #e4e4e4;
  margin-top: 30px;
}

.dashboard_page-box .container-fluid {
  padding: 25px 30px;
}

.side-bar-txt-logo h6 {
  color: #282828;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  line-height: 15px;
  background: #fff;
  padding: 15px 0px 0px;
  border-radius: 5px;
  margin: 0 auto;
  text-align: center;
}

.side-bar-txt-logo strong {
  color: #fdcd23;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
}

.side-bar-txt-logo p {
  text-transform: uppercase;
  color: #fff;
  font-size: 11px;
  font-family: "BlenderPro-Medium";
  line-height: 1;
  margin-bottom: unset;
}

.sidebar-logo-img img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
}
.sidebar-logo-img {
  /* margin-bottom: 22px; */
}

.dashboard_page-box .col-xl-2.col-lg-3.col-md-4 {
  padding: 0;
}

.dashboard_page-box .col-xl-10.col-lg-9.col-md-8 {
  padding: 0;
}

.side-bar-profile {
  text-align: center;
  padding: 20px 0;
}

.side-bar-profile h6 {
  font-size: 10px;
  color: #ffffff;
  text-transform: capitalize;
}

.side-bar-profile img {
  width: 100px;
  height: 100px;
  border: 3px solid #fff;
  border-radius: 4px;
  margin-bottom: 10px;
  object-fit: cover;
}

.side-bar-profile h5 {
  font-size: 13px;
  color: #ffffff;
  text-transform: uppercase;
}

ul.slidebar_menu a {
  font-size: 13px;
  text-transform: uppercase;
  color: #777777;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  /* padding: 25px 0 25px 20px; */
  width: 100%;
  font-weight: 600;
  transition: 0.3s ease-in-out;
  font-family: "BlenderPro-Medium";
  position: relative;
  z-index: 1;
  border-radius: 0px;
  height: 38px;
  border-bottom: 1.8px solid #e4e4e4;
  padding-left: 10px;
}

ul.slidebar_menu li:last-child a {
  border: 0;
}

ul.slidebar_menu a::before {
  /* position: absolute; */
  /* content: ''; */
  width: 0;
  height: 114px;
  right: 0px;
  top: 0px;
  bottom: 0;
  margin: auto;
  background-image: url(../images/bg-shap.png);
  background-repeat: no-repeat;
  background-position: left;
  background-size: cover;
  z-index: -1;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  transition: 0.2s all;
}

ul.slidebar_menu a::after {
  position: absolute;
  content: "";
  width: 0;
  height: 14vh;
  right: 0px;
  top: 0;
  bottom: 0;
  margin: auto;
  background-image: url(../images/bg-shap1.png);
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
  z-index: -1;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  transition: 0.2s all;
}

ul.slidebar_menu a:hover::before,
ul.slidebar_menu a.active::before {
  width: 100%;
}

img.lougout-img {
  width: 20px;
  filter: invert(1);
}
.sub-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  list-style: none;
  padding-left: 40px;
}

.sub-menu li a {
  height: 35px;
  border: none !important;
}

.sub-menu.active {
  max-height: 200px; /* enough height for items */
}
ul.slidebar_menu a img {
  transition: 0.5s all;
  width: 24px;
  height: 35px;
  padding: 5px;
  border-radius: 0px;
  object-fit: contain;
  /* padding: 22px 11px; */
  filter: brightness(0) saturate(100%) invert(69%) sepia(3%) saturate(28%)
    hue-rotate(331deg) brightness(99%) contrast(92%);
}

ul.slidebar_menu a:hover img,
ul.slidebar_menu a.active img {
  width: 28px;
  filter: brightness(0) saturate(100%) invert(87%) sepia(14%) saturate(6834%)
    hue-rotate(342deg) brightness(106%) contrast(110%);
}

.side-bar-logout-box a {
  background: #03101e;
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 13px;
  text-transform: uppercase;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-bottom: 1px solid #fff;
  width: 100%;
  height: 80px;
  letter-spacing: 1px;
}

.side-bar-logout-box a i {
  font-size: 18px;
  font-weight: 600;
}

.dashbord-right-box {
  border-radius: 15px;
  background: #ffffff;
  padding: 20px 20px;
  margin-top: 20px;
  height: 100%;
}

.subchild {
  display: none;
  margin-left: 20px;
  position: relative;
}

.slidebar_menu li:hover > .subchild {
  display: block;
  position: absolute;
  right: -170px;
  z-index: 999;
  background: #174d56;
  width: 170px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
  top: 60px;
}

.logout-button a.suport-btn {
  font-size: 14px;
  text-transform: uppercase;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 30px 30px;
  width: 100%;
  font-weight: 500;
  transition: 0.3s ease-in-out;
  font-family: "BlenderPro-Medium";
  position: relative;
  z-index: 1;
  border-radius: 60px;
}

a.suport-btn img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(99%) saturate(0%)
    hue-rotate(360deg) brightness(106%) contrast(101%);
  width: 20px;
}

.slidebar_menu li a.active + .subchild {
  display: block;
  position: absolute;
  right: -170px;
  z-index: 999;
  background: #174d56;
  width: 170px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  overflow: hidden;
  top: 60px;
}

.slidebar_menu li a.active + .subchild a {
  justify-content: center;
}

.header-search a {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #7c7c7c;
}

img.search-voice {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5%;
  margin: auto;
}

ul.header-profile-list i {
  font-size: 18px;
  color: #878686;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.slidebar_menu {
  margin-left: 0px;
  overflow-y: scroll;
  height: 350px;
}
ul.slidebar_menu a:hover span,
ul.slidebar_menu a.active span {
}
ul.slidebar_menu a span {
  display: block;
  font-size: 12px;
  color: #7c7c7c;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

li.list-item a {
  border-bottom: 0;
}

.slidebar_menu i.fa-solid.fa-angle-down.rotate {
  transform: rotate(180deg);
}

.slidebar_menu i {
  transition: 0.3s all;
}

ul.slidebar_menu a:hover,
ul.slidebar_menu a.active {
  color: #000;
}
.header-search input::placeholder {
  font-size: 14px;
}

/*------------------------------------------- Sidebar SEction End -----------------------------------------------------*/

/*-----------------------------------------  Header Nav Bar Start -----------------------------------------------------*/

.search-nav {
  position: relative;
  z-index: 1;
  padding: 15px 15px 6px 0px;
  margin-bottom: 0;
}

.header-search {
  position: relative;
  width: 100%;
  /* margin-right: -40px; */
}

.header-search button {
  width: 60px;
  background: #ebebeb00;
  border: 0;
  font-size: 15px;
  position: absolute;
  top: 0;
  height: 55px;
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
  color: #00000061;
  left: 5px;
}

.header-search input {
  width: 100%;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  outline: none;
  border: unset;
  border-radius: 50px;
  height: 55px;
  padding-left: 55px;
  font-family: "BlenderPro-Medium";
  font-size: 13px;
  border: 1px solid #d8d8d8;
  color: #a3a3a3;
  background: #f0f0f0;
}

.header-search button i {
  color: #787878;
}
.header-search input::placeholder {
  text-transform: uppercase;
  font-size: 13px;
  color: #a3a3a3;
}

ul.header-profile-list {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 15px;
  margin-bottom: 0;
  margin-right: 0;
  z-index: 9;
  position: relative;
  width: 100%;
  margin-left: 0;
}

a.mailbox i {
  font-size: 20px;
  color: #7f7f7f;
  position: relative;
  z-index: 1;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10%;
  width: 40px;
}

a.notift-icon span,
a.mailbox span {
  width: 8px;
  height: 8px;
  background: #fdc913;
  padding: 1px;
  position: absolute;
  top: 11px;
  right: 10px;
  border-radius: 10px;
  z-index: 1;
  border: 2px solid #fff;
}
.mail-box {
  position: relative;
}

.head-log-ser {
  /* display: flex; */
  /* align-items: center; */
  justify-content: space-between;
  gap: 16px;
  margin-left: 16px;
}

.user-profile-img {
  position: relative;
}

.logo-main-dashbd img {
  width: 74px;
  height: 45px;
  object-fit: contain;
}
ul.header-profile-list i.fas.fa-bookmark {
  color: #d80842;
}

.logout-button {
  /* margin-top: 200px; */
  margin-bottom: 10px;
  text-align: center;
  position: absolute;
  bottom: 10px;
  left: 0px;
  width: 100%;
}

.logout-button a.logout-btn {
  background: #fdc913;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  height: 63px;
  border-radius: unset;
  font-size: 15px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
  padding: 0 35px 0 35px;
  border: 1px solid #fff;
  font-family: "BlenderPro-Medium";
  transition: 0.5s ease all;
  width: 100%;
  border-radius: 7px;
}

.logout-button a.logout-btn:hover {
  background: #9900ff;
  border-color: #fff;
  color: #ffff;
}

.logout-button a.logout-btn:hover img {
  filter: brightness(0) saturate(100%) invert(23%) sepia(83%) saturate(2598%)
    hue-rotate(164deg) brightness(93%) contrast(106%);
}

.user-profile-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  cursor: pointer;
  /* border-left: 1px solid #e7e7e7; */
  padding-left: 4px;
  align-items: center;
}

/* Profile Box */

.user-profile-dropdown {
  position: absolute;
  right: 0;
  width: 200px;
  background: #fdc913;
  padding: 0px 0;
  border-radius: 5px;
  overflow: hidden;
  display: grid;
}

.user-profile-dropdown a {
  padding: 10px;
  border-bottom: 1px solid #fff;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  transition: 0.2s all;
  text-align: center;
}

.user-profile-dropdown a:last-child {
  border: 0;
}

.user-profile-dropdown a:hover {
  background: #9900ff;
}

.user-profile-info h4 > span {
  display: block;
  font-size: 10px;
  color: #a3a3a3;
  font-weight: 600;
  line-height: 1.2;
  font-family: "BlenderPro-Medium";
}

.user-profile-info h4 > i {
  position: absolute;
  right: -20px;
  top: 0;
}

.user-profile-img {
  position: relative;
  border: 3px solid #fdc913;
  border-right-color: transparent;
  border-bottom-color: transparent;
  width: fit-content;
  border-radius: 50px;
  padding: 5px;
}

.user-profile-img:after {
  /* content: ''; */
  position: absolute;
  top: -9px;
  left: -6.5px;
  background: #f2f2f2;
  width: 57px;
  height: 53px;
  border-radius: 6px;
  z-index: -1;
}

.user-profile-img img {
  width: 45px;
  height: 45px;
  padding: 0px;
  margin-left: 0px;
  margin-top: 0px;
  border-radius: 50%;
  object-fit: cover;
}

.user-profile-info h4 {
  font-size: 14px;
  color: #000;
  font-weight: 600;
  position: relative;
  margin-bottom: 0;
  line-height: 1.3;
  text-transform: uppercase;
}

.search-nav .row {
  align-items: center;
}

.notification-box {
  position: relative;
}

.side-bar-logo img,
.side-bar-logo a {
  object-fit: cover;
}

/* Mail Box */

ul.mail-messages {
  position: absolute;
  right: 0;
  width: 230px;
  background: #fdc913;
  padding: 0px 0;
  border-radius: 5px;
  overflow: hidden;
}

ul.mail-messages li a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  position: relative;
}

ul.mail-messages li .mail-img img {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  object-fit: cover;
}

ul.mail-messages li:hover {
  background: #9900ff;
}

ul.mail-messages li .mail-info h6 {
  font-size: 12px;
  color: #fff;
  text-transform: capitalize;
}

ul.mail-messages li .mail-info span {
  font-size: 8px;
  color: #fff;
  position: absolute;
  right: 0;
  bottom: -13px;
}

ul.mail-messages li {
  padding: 10px 10px;
  border-bottom: 1px solid #fff;
  transition: 0.2s all;
}

ul.mail-messages li:last-child {
  border: 0;
}

/* Mail Box */

/* Notification Box */

ul.notification-messages-list {
  position: absolute;
  right: 0;
  width: 230px;
  background: #fdc913;
  padding: 0px 0;
  border-radius: 5px;
  overflow: hidden;
  z-index: 999999999999999999999999999999;
}

ul.notification-messages-list li a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  position: relative;
}

ul.notification-messages-list li .notification-img img {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  object-fit: cover;
}

ul.notification-messages-list li:hover {
  background: #9900ff;
}

ul.notification-messages-list li .notification-info h6 {
  font-size: 12px;
  color: #fff;
  text-transform: capitalize;
}

ul.notification-messages-list li .notification-info span {
  font-size: 8px;
  color: #fff;
  position: absolute;
  right: 0;
  bottom: -13px;
}

ul.notification-messages-list li {
  padding: 10px 10px;
  border-bottom: 1px solid #fff;
  transition: 0.2s all;
}

button.detelt-mail:hover {
  background: #d80842;
  color: #fff;
}

ul.notification-messages-list li:last-child {
  border: 0;
}

.notification-dropdown-btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.notification-dropdown-btns a {
  font-size: 10px;
  color: #fff;
  text-transform: uppercase;
  background: #9900ff;
  padding: 5px 8px;
  border-radius: 5px;
  width: 48%;
  justify-content: center !important;
  border: 1px solid #ffffff;
}

ul.notification-messages-list li .notification-dropdown-btns a:hover {
  background: #fdc913;
}

/* Notification Box */

/* Page Css */

.dashboar_page-content {
  border-radius: 20px;
  margin: 0px 0;
}

/* Page Css */

/* Candidate Button */

.candidate-btn-div {
  position: absolute;
  top: 8%;
  right: 1%;
  z-index: 9;
}

.cndv {
  position: relative;
  z-index: 9;
}

.cndv .candidate-button {
  background-color: #f2f2f2;
  color: #000;
  border: none;
  padding: 5px 15px;
  border-radius: 60px;
  cursor: pointer;
  font-size: 14px;
  width: 90px;
  text-transform: uppercase;
  font-family: "BlenderPro-Medium";
  height: 50px;
  position: relative;
  z-index: 1;
}

.candidate-button i {
  margin-left: 8px;
}

.candidate-list {
  display: none;
  position: absolute;
  top: 110%;
  right: 0;
  background: #2a2a28;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 10;
  width: 130px;
}

.candidate-list li {
  border-bottom: 1px solid #eee;
}

.candidate-list li:last-child {
  border-bottom: none;
}

.candidate-list li a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #ffffff;
  position: relative;
  background: #52508c;
  right: 0;
  top: 0;
}

.candidate-list li a:hover {
  background-color: #2a2a28;
}

.candidate-list.show {
  display: block;
}

/* Candidate Button */

/* Acitvities */

.activities-list li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  border-radius: 10px;
  background-color: rgb(255, 255, 255);
  height: 88px;
  padding: 0 10px;
  width: 195px;
}

.activities-list ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.activities-list ul li i {
  border-width: 1px;
  border-color: rgb(30 110 109);
  border-style: solid;
  border-radius: 50%;
  background-color: #00000017;
  width: 55px;
  height: 55px;
  display: grid;
  place-content: center;
  color: #1e6e6d;
}

.activities-list li h5 {
  color: #1b1b1b;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
}

.activities-list li h5 span {
  display: block;
  color: #666;
}

/* Acitvities */

.theme-head {
  font-size: 20px;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-weight: 500;
}

.btn-1 {
  display: inline-block;
  font-size: 14px;
  color: #000;
  background: #f2f2f2;
  padding: 12px 22px;
  border-radius: 50px;
  text-transform: uppercase;
  font-family: "BlenderPro-Medium";
  margin: 5px 0 0;
}

/* Welcome */

.welcome-box {
  background-image: url(../images/banner-index.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  margin-bottom: 20px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  height: 145px;
  padding-left: 40px;
}
.welcome-text h6:before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  background: #9b9b96;
  width: 100%;
  height: 1px;
  border-radius: 10px;
}

.welcome-text h6:after {
  content: "";
  position: absolute;
  bottom: -15px;
  right: -1px;
  background: #fff;
  width: 5%;
  height: 2px;
  border-radius: 15px;
}

.welcome-text h2 {
  font-size: 28px;
  color: #fff;
  line-height: 1.2;
  position: relative;
  font-weight: 200;
  margin-bottom: 3px;
  font-family: "Mildstones";
  letter-spacing: 0.3px;
}

.welcome-text h6 {
  font-size: 14px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  max-width: fit-content;
}

.my-appoint-head a:hover {
  color: #d80842 !important;
  background: #fff;
  border: 1px solid #d80842;
}

.welcome-text p {
  margin: 0;
  font-size: 12px;
  color: #cc80ff;
  line-height: 18px;
  font-weight: 600;
  margin-bottom: 0;
  width: 72%;
}

/* Welcome */

/* Recomend Job */

.recomend-job-main {
  border-radius: 20px;
  background-color: rgb(255, 255, 255);
  margin-top: 0px;
  padding: 36px 25px 16px;
}

.job-info {
  border: 2px solid #f2f2f2;
  border-radius: 10px;
  padding: 15px;
  margin: 12px 0;
  box-shadow: 0px 17px 49px 0px rgba(133, 133, 133, 0.16);
}

ul.job-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

ul.job-list li {
  position: relative;
  z-index: 1;
}

ul.job-list li:first-child {
  width: 40%;
}

ul.job-list li:nth-child(2) {
  width: 45%;
}

ul.job-list li:last-child {
  width: 10%;
}

ul.job-list li img {
  width: 100%;
  height: 109px;
  border-radius: 10px;
}

ul.job-list h3 {
  font-size: 20px;
  color: #272725;
  text-transform: capitalize;
}

ul.job-list p {
  font-size: 13px;
  color: #9e9e9e;
  line-height: 20px;
  font-weight: 600;
}

ul.job-list h6.tag {
  width: fit-content;
  font-size: 10px;
  color: #000;
  background: #dbeafe;
  padding: 6px 10px;
  border-radius: 30px;
  position: absolute;
  top: 10px;
  left: 10px;
  font-weight: 600;
}

.save-btn {
  width: 50px;
  height: 50px;
  border: 0;
  background: #f2f2f2;
  border-radius: 60px;
  border: 1px solid #c2bebe;
  color: #3c3b6e;
  position: relative;
  top: -21px;
}

.jobs-detl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 15px 0 0;
  flex-wrap: wrap;
}

.jobs-detl p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: #f2f2f2;
  border: 1px solid #80807f;
  font-size: 14px;
  font-family: "BlenderPro-Medium";
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 60px;
  cursor: pointer;
  text-transform: uppercase;
  color: #50504e;
}

.jobs-detl p i {
  color: #3c3b6e;
  font-size: 18px;
}

/* Recomend Job */

/* Schedule */

.schedule {
  border-radius: 20px;
  background-color: rgb(37 129 125);
  margin-top: 0px;
  padding: 33px 21px 1px;
}

ul.schedule-list li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.date span {
  font-size: 10px;
  text-transform: uppercase;
  color: #9e9e9e;
  font-family: "BlenderPro-Medium";
  line-height: 12px;
}

.date h6 {
  font-size: 18px;
  color: #000;
  font-family: "BlenderPro-Medium";
  line-height: 20px;
}

.date {
  text-align: center;
  width: 30px;
}

.descrb {
  width: 82%;
  border-width: 1px;
  border-color: rgb(231, 231, 231);
  border-style: solid;
  border-radius: 10px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 17px 49px 0px rgba(133, 133, 133, 0.16);
  padding: 23px 18px;
  position: relative;
  z-index: 1;
  padding-right: 10px;
}

.descrb h6 {
  font-size: 14px;
  color: #272725;
  text-transform: capitalize;
  font-weight: 700;
}

.descrb p {
  font-size: 11px;
  color: #9e9e9e;
  font-weight: 600;
}

.descrb::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 40px;
  background: #ac1836;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.descrb.evn::before {
  background: #3c3b6e;
}

/* Schedule */

/* Profile Box */

.profile-card {
  background: #fcfcfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.profile-card .profile-header {
  position: relative;
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #00000024;
}

.profile-card .profile-btns label {
  width: 40px;
  height: 50px !important;
}

.profile-card .header-bg {
  width: 100%;
  height: 130px;
  object-fit: cover;
  background: linear-gradient(135deg, #6b3ce9, #8c7cf5);
  background-image: url(../images/profile-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.profile-card .profile-img-container {
  position: relative;
  width: fit-content;
  margin: -50px 0 0 20px;
}

.profile-card .profile-img-container img {
  width: 100px;
  height: 100px;
  border-radius: 100px;
  border: 8px solid #fff;
  object-fit: cover;
}

.profile-card #imageUpload {
  display: none;
}

.profile-card .profile-name {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 600;
  color: #272725;
}

.profile-card .profile-role {
  color: #9e9e9e;
  font-size: 12px;
  font-family: "BlenderPro-Medium";
  text-align: left;
}

.profile-card .profile-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-top: 15px;
  position: absolute;
  bottom: 8%;
  right: 10px;
}

.profile-card .profile-btns a,
.profile-card .profile-btns label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #f5f5f5;
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 13px;
  color: #161616;
  text-decoration: none;
  border: 1px solid #eee;
  cursor: pointer;
  transition: 0.3s;
  text-transform: uppercase;
  font-family: "BlenderPro-Medium";
  font-weight: 600;
}

.profile-card .profile-btns a:hover,
.profile-card .profile-btns label:hover {
  background: #e9e9e9;
}

.profile-card .experience,
.profile-card .education {
  padding: 24px 20px;
  /* border-top: 1px solid #eee; */
}

.profile-card .section-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #272725;
}

.profile-card .info-card {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 12px;
  box-shadow: 0 0px 0px 1px rgb(0 0 0 / 21%);
  transition: 0.3s;
}

.profile-card .info-card:hover {
  transform: translateY(-3px);
}

.profile-card .info-icon {
  width: 55px;
  height: 55px;
  border-radius: 50px;
  display: grid;
  place-content: center;
  margin-right: 20px;
  padding: 10px;
}

.profile-card .info-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.profile-card .info-content p {
  font-size: 12px;
  color: #777;
  line-height: 20px;
}

.profile-card .info-content span {
  font-size: 11px;
  color: #999;
}

.profile-card .blue .info-icon {
  background: #3b82f6;
}

.profile-card .orange .info-icon {
  background: #ff6600;
}

.profile-card .red .info-icon {
  background: #f7e8ea;
  border: 1px solid #b22234;
  color: #b22234;
}

@media (max-width: 400px) {
  .profile-card {
    width: 95%;
  }
}

/* Profile Box */

i.fa-solid.fa-bookmark {
  color: #2b6f6c;
}
.personal-info-box ul li {
  font-family: "BlenderPro-Medium";
  color: #9e9e9e;
  font-size: 13px;
  margin-bottom: 4px;
}

.personal-info-box ul li b {
  font-size: 15px;
  text-transform: uppercase;
  color: #000;
}

.personal-info-box ul {
  column-count: 2;
  border: 1px solid #00000054;
  padding: 15px 22px;
  border-radius: 10px;
  box-shadow: 0px 17px 49px 0px rgba(133, 133, 133, 0.16);
}

.personal-info-box {
  margin-bottom: 18px;
}
.hm-contact-box .descrb p a {
  font-size: 14px;
  font-family: "BlenderPro-Medium";
  font-weight: 500;
  color: #9e9e9e;
}

.hm-contact-box ul.schedule-list li i {
  color: #25817e;
}

.hm-contact-box .descrb {
  width: 74%;
  padding: 11px 18px;
}

.hm-contact-box .descrb::before {
  height: 28px;
  background: #25817e;
}

.experience p {
  font-weight: 500;
  color: #9e9e9e;
}
.hm-contact-box {
  border: 1px solid #00000054;
  padding: 15px 22px;
  border-radius: 10px;
  box-shadow: 0px 17px 49px 0px rgba(133, 133, 133, 0.16);
}

.education ul.schedule-list li {
  margin: 9px 0;
}
.profile-btns label {
  width: 50px !important;
}
.candidate-btn-div {
  display: none;
}
ul.header-profile-list li:hover a i {
  background: #e4e4e4;
}
.home-calendr {
  width: 100%;
  border-radius: 19px;
  margin-top: 20px;
}
.home-calendr button#prevMonth {
  color: #00000070;
  border-color: #eeeeee;
}

.home-calendr button#nextMonth {
  border-color: #eeeeee;
  color: #00000070;
}

.home-calendr .day {
  color: #fff !important;
}

.home-calendr .date-item {
  color: #fff !important;
}

.home-calendr .date-item:hover,
.home-calendr .date-item.selected {
  background: #be0438 !important;
}

.home-calendr h2 {
  color: #000 !important;
  margin: 10px 0 15px !important;
}
.filtr-div {
  padding: 12px 20px;
  border: 1px solid #ddd;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  background-color: #fff;
  cursor: pointer;
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.my-appoint-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  border-bottom: 1px solid #e9e9e9;
  padding-bottom: 20px;
  margin-top: 10px;
}

.my-appoint-main .upcoming-bx {
  margin: 0;
  background: #f2f2f2;
  padding: 20px 18px 30px;
  border-radius: 20px;
  margin-left: 20px;
}

.my-appoint-head h2 {
  font-size: 29px;
  margin: 0;
}

.filter-container {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}

.filter-icon {
  color: #000;
  font-size: 16px;
}

.filter-text {
  font-weight: 600;
  color: #333;
  font-size: 12px;
  text-transform: uppercase;
  font-family: "BlenderPro-Medium";
}

.year-dropdown {
  position: relative;
  display: inline-block;
}

.year-display {
  padding: 12px 33px 12px 24px;
  border: 1px solid #ddd;
  border-radius: 30px;
  background-color: #fff;
  cursor: pointer;
  position: relative;
  min-width: 80px;
  text-align: center;
  font-weight: 600;
  color: #333;
  font-size: 12px;
  text-transform: uppercase;
  font-family: "BlenderPro-Medium";
}

.year-display::after {
  content: "\f078";
  font-size: 10px;
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: #777;
  font-family: "Font Awesome 6 Pro";
}

.year-options {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 5px;
  z-index: 9;
}

.year-options.show {
  display: block;
}

.year-option {
  padding: 10px 15px;
  text-decoration: none;
  display: block;
  color: #333;
  font-size: 14px;
  text-align: center;
}

.year-option:hover {
  background-color: #f5f5f5;
}

ul.my-appointment-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #e9e9e9;
  border-left: 10px solid #e9e9e9;
  border-radius: 5px;
  padding-left: 15px;
  margin: 25px 0 0;
}

ul.my-appointment-list li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 45px;
  position: relative;
  z-index: 1;
}

.my-app-image img {
  width: 140px;
  height: 80px;
  object-fit: cover;
  border-radius: 22px;
}

.my-app-det h5 {
  font-size: 13.5px;
  color: #1b1b1b;
  text-transform: uppercase;
  font-family: "BlenderPro-Medium";
  margin: 0;
  font-weight: 600;
}

.my-app-det p {
  font-size: 12px;
  color: #959595;
  font-family: "BlenderPro-Medium";
  text-transform: uppercase;
  margin: 0;
}

.my-app-schd p {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  font-size: 13px;
  color: #959595;
  font-family: "BlenderPro-Medium";
  text-transform: uppercase;
  margin: 0;
}

.my-app-schd i {
  color: #000;
}

.my-app-btn a {
  height: 40px;
  display: inline-flex;
  align-items: center;
  width: 50px;
  display: grid;
  place-content: center;
}

img.right-arrow {
  /* opacity: .5; */
  filter: brightness(0) saturate(100%) invert(89%) sepia(9%) saturate(2%)
    hue-rotate(16deg) brightness(91%) contrast(87%);
}

ul.my-appointment-list:hover img.right-arrow {
  opacity: 1;
  filter: invert(1);
}

.my-app-btn {
  height: 110px;
  background: #ebebeb;
  display: grid;
  place-content: center;
  border-radius: 25px;
  width: 80px;
}

ul.my-appointment-list li::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 70px;
  right: -50px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #e9e9e9;
}

ul.my-appointment-list li:last-child::before {
  width: 0;
}

ul.my-appointment-list:hover .my-app-btn {
  background: #d80842;
}

ul.my-appointment-list:hover .my-app-schd i {
  color: #d80842;
}

ul.my-appointment-list:hover {
  border-left-color: #d80842;
}

.booking-calender .month-header {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  align-items: center;
  border-bottom: unset;
  padding-bottom: 5px;
  justify-content: space-between;
}

.calendar-container button#prevMonth:hover {
  background: #fdc913;
  color: #fff;
  transition: 0.5s;
}

.calendar-container button#nextMonth:hover {
  background: #fdc913;
  color: #fff;
  transition: 0.5s;
}

.booking-calender .calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0px;
  text-align: center;
}

.booking-calender .date-item {
  padding: 0px 0px !important;
  border-radius: 26px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: 0.3s !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  width: 33px !important;
  color: #000 !important;
  height: fit-content !important;
  font-family: "BlenderPro-Medium" !important;
  height: 33px !important;
  background: #f5f5f5;
  margin-bottom: 8px;
}

.booking-calender .date-item .day {
  font-size: 10px;
  color: #000000a6 !important;
  font-weight: 500;
  margin: 1.5px 0;
  text-transform: uppercase;
  font-family: "BlenderPro-Medium";
  /* display: none; */
}

.booking-calender .date-item:hover,
.booking-calender .date-item.selected {
  background-color: #fdc913 !important;
  color: white !important;
}

.booking-calender .month-header button {
  width: 30px;
  height: 30px;
  border: 1px solid #eeeeee;
  border-radius: 50px;
  color: #443e3ecc;
  background: #eeeeee;
  transition: 0.5s;
}

.booking-calender .month-header button:hover {
  border-color: #d80842;
  color: #d80842;
}

.booking-calender .calendar-container h2 {
  font-size: 20px;
  font-family: "Mildstones";
  padding: 0;
  font-weight: 500;
}

.booking-calender h2 {
  font-size: 30px;
  text-align: left;
  padding: 0 0 0px 22px;
  /* border-bottom: 1px solid #ccc; */
  color: #000;
}

.booking-calender .date-item:hover,
.booking-calender .date-item.selected {
  color: #fff !important;
}

.booking-checkbox {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  width: 300px;
}

.booking-checkbox input {
  width: 20px !important;
  height: 20px !important;
  margin: 0 !important;
}

.date-item:hover .day {
  color: #fff;
}
.notification-box h5 {
  font-family: "BlenderPro-Medium";
  font-weight: 500;
  font-size: 18px;
}
.notification-box a span {
  right: 8px;
  top: 10px;
}
.notifi-main ul li i {
  padding: 19px 23px;
  color: #ea3890;
  background: #fcebf4;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: unset;
  width: 50px;
  height: 50px;
  border: 1px solid #e22f90;
  font-size: 20px;
}

.notification-box h5 span {
  display: block;
  font-size: 15px;
  color: #00000087;
}

.notifi-main h2 {
  font-weight: 300;
  font-size: 17px;
  padding-left: 0px;
  margin: 4px 0 18px !important;
  font-family: "BlenderPro-Medium";
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.notifi-main {
  margin-top: 27px;
  padding: 25px 15px 31px;
  border-radius: 10px;
  background: #fdfdfd;
  height: 100%;
}

.notifi-main ul li {
  display: flex;
  gap: 10px;
  border: 1px solid #0000003b;
  padding: 10px 10px;
  border-radius: 7px;
  align-items: center;
  margin-bottom: 18px;
  background: #fff;
}
.date-item.selected .day {
  color: #fff !important;
}

.welcome-text a {
  border: 1px solid #1e6e6c;
  padding: 16px 22px;
  border-radius: 25px;
  background: #1e6e6c;
  color: #fff;
  font-family: "BlenderPro-Medium";
  font-size: 13px;
  text-transform: uppercase;
}
ul.active-chats-list li img {
  border-radius: 20px;
}

ul.active-chats-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: "BlenderPro-Medium";
  font-size: 15px;
  color: #fff;
  border-top: 1px solid #ffffff7d;
  padding: 15px 0px;
}

.schedule h2.theme-head {
  color: #fff;
  font-size: 18px;
  padding-bottom: 7px;
}
.recomend-job-main .client-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  /* border-radius: 10px; */
  padding: 21px 0px;
  margin-bottom: 20px;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); */
  border-top: 1px solid #00000036;
}

.recomend-job-main .client-info {
  display: flex;
  align-items: center;
  gap: 11px;
}

.recomend-job-main .client-info img {
  width: 123px;
  height: 78px;
  border-radius: 4px;
  object-fit: cover;
}

.recomend-job-main .client-text h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  font-family: "BlenderPro-Medium";
  color: #000;
}

.recomend-job-main .client-text p {
  margin: 3px 0 0 0;
  font-size: 12px;
  color: #555;
  font-family: "Montserrat";
  font-weight: 500;
}

.recomend-job-main .status {
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
}

.recomend-job-main .active {
  color: #28a745;
  font-family: "BlenderPro-Medium";
  font-weight: 500;
  font-size: 16px;
}

.recomend-job-main .pending {
  color: #ffb400;
}

.recomend-job-main .inactive {
  color: #dc3545;
}

.recomend-job-main .view-btn {
  background: #005c5c;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 12px 35px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease;
  font-family: "BlenderPro-Medium";
  font-size: 13px;
}

.recomend-job-main .view-btn:hover {
  background: #007575;
}
span.status.active.yellow {
  color: #dca129;
}

span.status.active.red {
  color: red;
}
.date-item:hover .day {
  color: #fff !important;
}
.avatar span {
  font-family: "Montserrat";
  font-size: 10px;
  border: 1px solid #25817e;
  width: 21px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 2px;
  border-radius: 20px;
  background: #25817e;
  color: #fff;
  top: 4px;
}
span.non-active-dot.active.non-ac {
  background-color: #a8b7b7;
}

/* Chat Page  Start*/
.chat-input-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px 12px;
  max-width: 81%;
  background: #fff;
  margin: 0 auto 30px 30px;
  position: relative;
  z-index: 1;
}

.chat-icons button {
  border: 0;
  background: transparent;
  border-right: 1px solid #dddddd;
  padding: 0 10px 0 0;
}

.chat-icons button:last-child {
  border: 0;
}

.chat-input-wrapper .emoji-icon {
  font-size: 18px;
  margin-right: 10px;
  color: #aaa;
}

.chat-input-wrapper .chat-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 13px;
  color: #333;
  font-family: "Montserrat";
}

.chat-input-wrapper .chat-icons {
  display: flex;
  gap: 15px;
  margin-left: 10px;
}

.chat-input-wrapper .chat-icons .icon {
  color: #aaa;
  font-size: 16px;
  cursor: pointer;
}

.chat-input-wrapper .mic-btn {
  border: none;
  cursor: pointer;
  border-width: 1px;
  border-color: rgb(216, 216, 216);
  border-style: solid;
  border-radius: 5px;
  background-color: rgb(227 254 255);
  width: 52px;
  height: 48px;
  position: absolute;
  right: -15%;
  bottom: 0;
  top: 0;
  margin: auto;
}

.chat-input-wrapper .mic-btn .fa-microphone {
  color: #6d6d6d;
  font-size: 18px;
}

.sideNav2 {
  height: 100%;
  box-shadow: var(--box-shadow);
  backdrop-filter: blur(55px);
  border-radius: 10px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  overflow: auto;
  /* border: 1px solid #ffffff21; */
  padding: 0;
  /* height: 640px; */
  /* overflow-y: scroll; */
}

.chat-top-input {
  padding: 16px 20px 15px;
  margin-bottom: 0px;
  border-bottom: 1px solid #ddebf4;
}

.client-input {
  position: relative;
}

form.chat-top-input-form input {
  width: 100%;
  height: 50px;
  font-size: 12px;
  font-family: montserrat;
  padding: 15px 10px;
  border: 1px solid #e1e0e0;
  margin: auto;
  border-radius: 90px;
  text-transform: uppercase;
}

.client-input input {
  background: #ffffff;
  border-radius: 5px;
  color: #101010;
  text-transform: inherit;
  border: 0;
}

.client-input button {
  color: #fff;
  background: #038388;
  font-size: 14px;
  border: 0;
  position: absolute;
  margin: auto;
  right: 4px;
  padding: 4px 20px;
  border-radius: 50px;
  bottom: 8px;
  margin-right: 8px;
}

.group {
  display: grid;
  grid-template-columns: 54px calc(100% - 55px);
  grid-template-rows: repeat(2, 30px);
  width: calc(100% - 0px);
  /* margin: 10px; */
  padding: 10px 30px;
  list-style-type: none;
  /* border-radius: 5px; */
  user-select: none;
  cursor: pointer;
  position: relative;
  transition: 0.3s ease-in-out;
}

.avatar {
  grid-row: 1 / span 2;
  /* background-color: white; */
  border-radius: 50%;
  height: 100%;
  width: 100%;
  display: flex;
  /* padding: 10px; */
  position: relative;
}

.GroupName {
  font-weight: 600;
  padding: 0px 10px;
  font-family: "Montserrat";
  font-size: 14px;
  color: #000;
  line-height: 40px;
  margin: 0;
}

.GroupDescrp {
  width: 100%;
  padding: 0px 10px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  margin: 0;
  color: #000;
  line-height: 17px;
}

span.time {
  font-size: 11px;
  color: #000000;
  position: absolute;
  right: 14px;
  bottom: 0;
  top: 50%;
}

span.non-active-dot {
  border: 1px solid #fff;
  width: 10px;
  height: 10px;
  background: #d4e1ea;
  padding: 1px;
  position: absolute;
  top: 25px;
  right: 17px;
  border-radius: 10px;
  z-index: 1;
}

.avatar img {
  height: 45px;
  width: 45px;
  margin: auto;
  border-radius: 50%;
}

span.n-message {
  position: absolute;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #038388;
  color: #fff;
  z-index: 99;
  right: 0;
  top: 0;
}

li.group.actve-chat {
  background: #038388;
}

span.non-active-dot.active {
  background-color: #038388;
}

.MessageContainer {
  flex: 1;
}

.chat-box {
  background: #fff;
  display: flex;
  flex-direction: column;
}

.chat-header.dot-relative {
  position: relative;
  width: 96%;
}

.chat-header {
  padding: 27.5px 20px;
  border-bottom: 1px solid #ddebf4;
  display: flex;
  justify-content: space-between;
}

.chat-header.dot-relative span.dot {
  width: 7px;
  height: 7px;
  right: unset;
  left: 15%;
  top: 47%;
  transform: translateY(-55%);
  position: absolute;
  color: #000;
  background: #038388;
  border-radius: 60px;
}

.chat-header span {
  font-size: 18px;
  font-weight: 500;
  font-family: "BlenderPro-Medium";
  text-transform: uppercase;
}

.chat-messages {
  flex: 1;
  padding: 35px;
  overflow-y: auto;
}

.message {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  gap: 24px;
}

.message.sent {
  justify-content: flex-end;
}

.message img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-position: top;
  object-fit: cover;
}

.message.received .text {
  background: transparent;
  color: #000000d1;
  font-weight: 500;
}

.message .text {
  padding: 10px 15px;
  border-radius: 5px;
  max-width: 60%;
  position: relative;
  font-size: 12px;
  font-family: "Montserrat";
  line-height: 17px;
}

.message.sent .text {
  background: #038388;
  color: white;
}

#MessageForm {
  /* padding: 10px; */
  /* display: flex; */
  width: 100%;
  position: relative;
}

.chat-page-box {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  padding: 20px 10px;
}

form.chat-top-input-form {
  position: relative;
}

form.chat-top-input-form a {
  width: 35px;
  border-right: 1px solid #000;
  color: #000;
}

section.Chat {
  position: relative;
  /* z-index: 1; */
}

section.Chat::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #ddebf4;
}

.chat-page-box .col-lg-4 {
  padding: 0;
}

.chat-page-box .col-lg-8 {
  padding: 0;
}

.icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.chat-header .icons i {
  border-left: 1px solid #c9d6df;
  padding: 0 10px 0 20px;
  margin-left: 0;
  color: #6d6d6d;
  font-size: 20px;
}

.chat-header .icons i:first-child {
  border: 0;
}

.chat-typ {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}

.chat-typ button {
  background: #e90004;
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  font-family: "BlenderPro-Medium";
  border: 0;
  border-radius: 5px;
  padding: 10px 30px;
  position: relative;
  z-index: 1;
}

.chat-typ button.admin-btn {
  background: #e9e9e9;
  color: #000;
}

.pat-btn::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background: #e90004;
  left: 0;
  right: 0;
  bottom: -6px;
  margin: auto;
  transform: rotate(45deg);
  z-index: -2;
}

li.group.actve-chat * {
  color: #fff;
}

li.group.actve-chat span.non-active-dot.active {
  background: #fff;
}
.chat-page-box .manager-heading {
  border-bottom: 1px solid #deebf4;
  margin: 0px 29px;
  padding: 0px;
  width: 95%;
}
p.GroupDescrp {
  font-size: 11px;
}
/* Chat Page */

/* Profile Page Start */

.setting-main-all {
  padding: 40px 30px;
  background: #ffffff;
  border-radius: 15px;
  margin-top: 20px;
}
.course-title h2 {
  font-size: 25px;
  letter-spacing: 1px;
  margin-bottom: 25px;
  font-family: "Mildstones";
  color: #272725;
  border-bottom: 1px solid #dedede;
  padding-bottom: 25px;
}

.prf-heading h2 {
  font-size: 28.31px;
  font-family: "BlenderPro-Medium";
  text-transform: uppercase;
  margin-bottom: 7px;
}

.setting-main-all ul#myTab {
  border: 1px solid;
  margin: 20px 0;
  padding: 0;
  border-radius: 5px;
  border: 0;
  gap: 10px;
}

.setting-main-all .nav-link {
  text-transform: uppercase;
  border: unset !important;
  border-radius: unset;
  background: #eeeeee;
  border-radius: 5px;
  color: #000;
  font-size: 12px;
}

.setting-main-all form label {
  font-size: 14px;
  color: #171717;
  text-transform: uppercase;
  margin-bottom: 2px;
  font-family: "BlenderPro-Medium";
  font-weight: 600;
}

.setting-main-all form input,
.setting-main-all form select {
  width: 100%;
  border-width: 1px;
  border-style: solid;
  border-radius: 5px;
  background: unset;
  height: 50px;
  font-size: 12px;
  padding: 0 20px;
  margin-bottom: 20px;
  color: #000 !important;
  border: 2px solid #e7e7e7;
  appearance: auto;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
}

.prf-input input[type="password"]::placeholder {
  font-size: 12px;
  line-height: 1;
  padding: 0;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: #000 !important;
}

.setting-main-all form input::placeholder {
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #000 !important;
}

.setting-main-all .nav-link.active {
  color: #fff;
  position: relative;
  background: #917569;
  border-radius: 4px;
}

.setting-main-all form textarea {
  width: 100%;
  border-width: 1px;
  border-color: rgb(0 0 0 / 24%);
  border-style: solid;
  border-radius: 5px;
  background: unset;
  padding: 10px 20px;
  margin-bottom: 30px;
  color: #000000;
  height: 100px;
  resize: none;
}

.input-box {
  position: relative;
}

.input-box input {
  width: 100%;
  padding-right: 40px;
}

.toggle-eye {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 18px;
}

.prf-input.chg input {
  margin-bottom: 0;
}

.setting-main-all form button {
  font-size: 12px;
  color: #000;
  background: #fdc913;
  text-transform: uppercase;
  font-weight: 500;
  padding: 15px 40px;
  border-radius: 4px;
  border: 0;
  letter-spacing: 1px;
  font-family: "BlenderPro-Medium";
  font-weight: 600;
}

.pofile-chg-box h5 {
  font-size: 25px;
  color: rgb(20 20 20);
  text-transform: uppercase;
}

.pofile-chg-box ul li img {
  width: 121px;
  height: 121px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 0 3px 1px #fff;
}

.pofile-chg-box ul {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 38px;
  margin-top: 30px;
}

.pofile-chg-box button {
  height: 45px;
  text-transform: uppercase;
  padding: 0 30px;
  font-size: 14px;
  color: #434343;
  font-family: "BlenderPro-Medium";
  border: 1px solid #e5e5e5;
  background: #ffffff;
  margin-left: 20px;
  border-radius: 50px;
  font-weight: 600;
}

.pofile-chg-box {
  padding: 0 8px 0px 30px;
  border-left: 1px solid #e7e7e7;
}

.profile-form {
  margin-top: 40px;
}

.pofile-chg-box-image img {
  width: 95px;
  height: 95px;
  border-radius: 5px;
  object-fit: cover;
}

.prf-top-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  /* border-bottom: 1px solid #d7d7d7; */
  padding-bottom: 4px;
}

.follower-box {
  border: 1px solid;
  border-radius: 20px;
  padding: 30px 20px;
  background: #1d1d1d;
  margin-bottom: 20px;
}

ul.followers {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}

.follower-box h4 {
  font-size: 32px;
  font-family: "BlenderPro";
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  margin-bottom: 0;
}

ul.followers p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.502);
  text-transform: uppercase;
}

.followers-btn {
  display: flex;
  justify-content: center;
}

.Setting-main-box {
  border-radius: 15px;
  height: 100%;
}

.setting-main-all form input::placeholder {
  color: #8b8b8b;
}

.prf-input h2 {
  font-size: 20px;
  color: #1b1b1b;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: "BlenderPro-Medium";
  line-height: 26px;
}

.profile-pic img {
  width: 77px;
  height: 77px;
  border-radius: 50%;
  margin-top: 12px;
}

.profile-pic p {
  font-size: 10px;
  text-transform: uppercase;
  text-align: center;
  font-family: "BlenderPro-Medium";
  color: #fff;
  margin-bottom: 0px;
}
/* Profile Page End */

/*Client page Start*/

.prf-slide {
  position: relative;
  z-index: 1;
  border: 1px solid #0000002e;
  padding: 22px 0px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.prf-slide img.prf-bg {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 10px;
}

.prf-imag {
  overflow: hidden;
  position: relative;
  text-align: center;
  margin-bottom: 10px;
}

.profl-text {
  text-align: center;
}

.profl-text h3 {
  font-size: 16px;
  color: #000000;
  margin: 0;
  font-family: "BlenderPro-Medium";
}

.profl-text h5 {
  font-size: 13px;
  color: #000;
  font-family: "BlenderPro-Medium";
  text-transform: uppercase;
}

.profl-butns {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 6px 0px 0px;
}

.profl-butns a {
  font-size: 14px !important;
  padding: 13px 28px;
  border-radius: 50px;
  text-transform: uppercase;
  font-family: "BlenderPro-Medium" !important;
}

.profl-butns a.btn-1 {
  background: #04898f;
  color: #fff;
}

.profl-butns a.btn-2 {
  background: #e3fdfe;
  color: #000;
}
.profl-text a {
  font-size: 14px;
  display: block;
  font-family: "Montserrat";
  font-weight: 500;
  color: #00000082;
}

.prf-imag img.prf-1 {
  border-radius: 40px;
  width: 80px;
  height: 80px;
}

/*Client page End*/

/*Client Detail Page Start*/
.img-client-detail img {
  width: 100%;
  border-radius: 10px;
}

.text-client-detail h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.text-client-detail p {
  font-size: 13px;
  margin-bottom: 10px;
  font-weight: 500;
  color: #0000007d;
}

.text-client-detail {
  margin-top: 8px;
}

.chat-page-box .manager-heading h2 {
  font-size: 31px;
  padding-bottom: 10px;
  font-weight: 300;
}
.general-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  /*border-top: 1px solid #ccc;*/
  padding: 25px 0px 10px;
  font-family: "Poppins", sans-serif;
  position: relative;
}

.general-info::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  height: 1px;
  background: #ccc;
  z-index: 0;
  width: 86%;
}

.general-info .info-item {
  text-align: left;
  flex: 1;
  padding: 0 0px;
  position: relative;
  z-index: 1;
}

.general-info .dot {
  width: 8px;
  height: 8px;
  background-color: #0e736c;
  border-radius: 50%;
  /* margin: 0 auto 8px; */
  position: relative;
  top: -20px;
}

.general-info .info-item h4 {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
  font-family: "BlenderPro-Medium";
  font-weight: 400;
}

.general-info .info-item p {
  font-size: 15px;
  color: #333333a3;
  margin: 0;
  font-family: "BlenderPro-Medium";
}

.general-info .status {
  /* text-align: center; */
}

.general-info .active {
  background-color: #d8f5e0;
  color: #2a9d53;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 15px;
  font-size: 12px;
}
.heading-general h3 {
  font-size: 20px;
  padding-bottom: 12px;
}
.general-info-main {
  margin-top: 26px;
}

/*client Detail Page End*/

.upload-btn-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.chat-input-wrapper .btn {
  border: 2px solid gray;
  color: gray;
  background-color: white;
  /* padding: 8px 20px; */
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  border: unset;
  cursor: pointer;
}

.upload-btn-wrapper input[type="file"] {
  font-size: 100px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.logo-main-dashbd {
  text-align: center;
}

span.up-icon {
  display: block;
  width: fit-content;
  padding: 8px 15px;
  font-size: 15px;
  font-family: "BlenderPro-Medium";
  border: 1px solid #ea3890;
  background: #fdebf4;
  border-radius: 7px;
}

.col-md-4.col-lg-4.col-12.fot-ban-rt {
  padding: 0px;
  padding-right: 14px;
}
.upcoming-shift-table {
  border-collapse: separate;
  border-spacing: 0 15px; /* row gap = 15px */
  width: 100%;
  font-family: "BlenderPro-Medium";
  /* background-color: #fafafa; */
  color: #000;
  /* padding: 0px 15px; */
}

.upcoming-shift-table th,
.upcoming-shift-table td {
  padding: 20px 16px;
  text-align: left;
  border: none;
  white-space: nowrap;
}

/* Header styles */
.upcoming-shift-table th {
  background-color: #f4f4f4;
  font-weight: 600;
}

.ban-rt-list ul li p {
  color: #999595;
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  border-top: 1px solid #999595;
  margin-bottom: unset;
  padding-top: 8px;
}
.for-img-flex {
  display: flex;
  align-items: center;
  gap: 10px;
}

span.para-text {
  display: block !important;
  font-weight: unset;
  font-size: 10px;
}
.ban-btm-icons ul li i {
  border: 1.8px solid #fdc913;
  width: 50px;
  height: 50px;
  background: #fff8e0;
  object-fit: contain;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fdc913;
}

.ban-btm-icons ul li {
  font-family: "BlenderPro-Medium";
  font-size: 16px;
  font-weight: 600;
  color: #202020;
  line-height: 18px;
}

.ban-btm-icons ul li span.paratext {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  color: #767676;
}
.ban-btm-icons ul {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ban-btm-icons p {
  text-transform: uppercase;
  color: #a09c9c;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  border-top: 1px solid #656565a1;
  margin-top: 10px;
  padding: 8px 0px;
  margin-bottom: 0px;
  font-family: "BlenderPro-Medium";
}

.ban-btm-icons {
  background: #ffffff;
  border-radius: 20px;
  padding: 15px 15px 5px;
}
.ban-btm-boxes .row {
  margin: 0px 0px;
}

.ban-btm-boxes .col-md-3.col-lg-3.col-12 {
  padding: 0px 6px;
}

/* MAIN CARD */

/* IMAGE */

/* MIDDLE */
.upcoming-shifts-main-box .card-middle {
  display: flex;
  flex-direction: column;
  gap: 23px;
  margin-left: 34px;
  margin-right: 30px; /* LEFT GAP OF DIVIDER */
  width: 180px;
}

/* RIGHT */

/* TEXT */

.upcoming-shifts-main-box .action-btn {
  margin-left: auto;
  width: 80px;
  height: 145px;
  background: #9900ff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  font-size: 22px;
  cursor: pointer;
  transition: 0.3s;
}

.upcoming-shifts-main-box .action-btn:hover {
  opacity: 0.9;
}
.upcoming-shifts-main-box h2 {
  font-family: "BlenderPro-Medium";
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.upcoming-shifts-main-box {
  background: #fff;
  padding: 20px 10px 2px;
  border-radius: 10px;
  margin: 0px 0px;
  margin-top: 15px;
}
.calendar-container {
  background: #fff;
  padding: 11px 12px;
  border-radius: 15px;
}
.user-profile-info {
  /* margin-right: -21px; */
}

.today-schedule {
  width: 100%;
  background: #fff;
  padding: 20px 23px 6px;
  border-radius: 10px;
  margin-top: 10px;
}

.today-schedule__title {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 20px;
  font-family: "BlenderPro-Medium";
  color: #000;
}

.today-schedule__timeline {
  position: relative;
  padding-left: 60px;
}

.upcoming-shifts-main-box .card-left img {
  width: 216px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
}
.upcoming-shifts-main-box {
  background: #fff;
  padding: 20px 10px 2px;
  border-radius: 10px;
  margin: 0px 0px;
  margin-top: 15px;
}
.upcoming-shifts-main-box .appointment-card {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 10px 10px;
  max-width: 100%;
  border: 1px solid #f3f3f3;
  box-shadow: 0px 17px 49px 0px rgba(133, 133, 133, 0.16);
  margin-bottom: 15px;
}
.upcoming-shifts-main-box .card-middle {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-left: 34px;
  margin-right: 30px;
  width: 180px;
}
.upcoming-shifts-main-box .info-block .label {
  font-size: 12px;
  color: #999;
  letter-spacing: 1px;
  font-family: "BlenderPro-Medium";
}
.upcoming-shifts-main-box .info-block h3 {
  margin: 3px 0 0;
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.upcoming-shifts-main-box .info-block .label {
  font-size: 12px;
  color: #999;
  letter-spacing: 1px;
  font-family: "BlenderPro-Medium";
}
.upcoming-shifts-main-box .info-block p {
  margin: 3px 0 0;
  font-weight: 500;
  color: #afafaf;
  font-size: 12px;
  line-height: 20px;
  font-family: "Montserrat";
}
.upcoming-shifts-main-box .card-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-left: 30px;
}
.upcoming-shifts-main-box .info-block .label {
  font-size: 12px;
  color: #999;
  letter-spacing: 1px;
  font-family: "BlenderPro-Medium";
}
.upcoming-shifts-main-box .info-block h3 {
  margin: 3px 0 0;
  font-size: 16px;
  font-weight: 600;
  color: #202020;
}
.upcoming-shifts-main-box .info-block .label {
  font-size: 12px;
  color: #6c6c6c;
  font-family: "BlenderPro-Medium";
  text-transform: uppercase;
  font-weight: 600;
}
.upcoming-shifts-main-box .status {
  background: #fff3cb;
  color: #fdcc1f;
  font-size: 10px;
  border-radius: 20px;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  width: fit-content;
  padding: 0 15px;
}

/* DIVIDER */
.upcoming-shifts-main-box .divider {
  width: 1px;
  height: 130px;
  background: #e5e5e5;
  margin: 0px 40px;
}

/* STATUS */

/* BUTTON */

.upcoming-shifts-main-box .action-btn:hover {
  opacity: 0.9;
}
.upcoming-shifts-main-box h2 {
  font-size: 25px;
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-family: "Mildstones";
  color: #272725;
}
.upcoming-shifts-main-box {
  background: #fff;
  padding: 25px 25px 25px;
  border-radius: 10px;
  margin: 0px 0px;
  margin-top: 20px;
  height: 500px;
}
.calendar-container {
  background: #ffffff;
  padding: 20px 15px;
  border-radius: 20px;
  width: 100%;
  box-shadow: 0 0 10px 0 #0000000f;
}

.today-schedule {
  width: 100%;
  background: #fff;
  padding: 25px 20px 25px;
  border-radius: 15px;
  margin-top: 25px;
  box-shadow: 0 0 10px 0 #0000000f;
  height: 425px;
}
.today-schedule ul {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 5px;
  padding: 15px 15px;
  margin-top: 15px;
}
.today-schedule ul li h2 {
  font-size: 14px;
  margin: 0 !important;
  padding: 0;
  margin-bottom: 3px !important;
}
.today-schedule ul li p {
  color: #8f8f8f;
  font-weight: 600;
  line-height: 16px;
  font-size: 10px;
}
.today-schedule ul li span {
  border: 2px solid #fdc913;
  background: #fff8e0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 50px;
  border-radius: 5px;
  color: #fdc913;
}
.today-schedule p {
  color: #b4b4b4;
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
}

.today-schedule__title {
  margin-bottom: 5px;
  color: #272725;
  font-size: 25px;
  font-family: "Mildstones";
  font-weight: 500;
  text-transform: uppercase;
}

.today-schedule__timeline {
  position: relative;
  padding-left: 60px;
}

/* Vertical line */
.today-schedule__timeline::before {
  content: "";
  position: absolute;
  left: 58px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #cfcfcf;
}

.today-schedule__event {
  position: relative;
  margin-bottom: 38px;
}

/* Time */
.today-schedule__time {
  position: absolute;
  left: -60px;
  top: 0;
  font-size: 12px;
  color: #000;
  font-family: "BlenderPro-Medium";
  font-weight: 600;
}

/* Inner circle */
.today-schedule__circle {
  position: absolute;
  left: -5px;
  top: 3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cfcfcf;
  z-index: 2;
}

/* Outer ring */
.today-schedule__circle::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #cfcfcf;
  background: transparent;
}

/* Active */
.today-schedule__circle--active {
  background: #ff4da6;
}

.today-schedule__circle--active::before {
  border-color: #ff4da6;
}

/* Completed */
.today-schedule__circle--completed {
  background: #4caf50;
}

.today-schedule__circle--completed::before {
  border-color: #4caf50;
}

/* Content */
.today-schedule__content {
  font-size: 12px;
  color: #333;
  padding-left: 34px;
  font-family: "BlenderPro-Medium";
}

.today-schedule__content strong {
  display: block;
  margin-bottom: 3px;
  color: #000;
}

.today-schedule__sub {
  font-size: 11px;
  color: #666;
  margin-top: -7px;
}

.today-schedule__status {
  font-size: 10px;
  color: #4caf50;
  margin-top: 4px;
}

/*Profile Page Start*/

h2.avail-sub-head {
  font-size: 22px;
  font-weight: unset;
  color: #000;
  margin-bottom: 9px;
}
.availibilty-page-sec .setting-main-all form input,
.setting-main-all form select {
  height: 52px;
}
.avail-blackout-main a {
  font-family: "BlenderPro-Medium";
  font-size: 15px;
  text-transform: uppercase;
  background: #eeeeee;
  padding: 16px 17px;
  color: #000;
  border-radius: 5px;
}

.avail-blackout-main a i {
  font-size: 12px;
}
.btn-blackout {
  padding: 21px 0px;
}

.day-container {
  display: flex;
  gap: 18px;
  /* padding: 20px; */
  margin-bottom: 15px;
  margin-top: 17px;
}

.day {
  display: flex;
  align-items: center;
  gap: 5px;
}

.day input.avail-check {
  width: 37px;
  height: 20px !important;
  cursor: pointer;
  accent-color: #ea3890;
}

.day label {
  font-weight: 600;
  cursor: pointer;
}

/* Container */

/* Header */
.month-header {
  display: flex;

  align-items: center;
}

.month-header h2 {
  font-size: 20px;
  font-weight: 700;
}

.month-header button {
  background: #ffc107;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 15px;
}

/* Week Days */
.week-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin: 15px 0 20px;
  font-weight: bold;
  color: #000;
}

/* Grid */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

/* Date circle */
.date-item {
  width: 40px;
  height: 40px;
  background: #dcdcdc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  cursor: pointer;
  font-weight: bold;
  color: #333;
  transition: 0.2s;
}

/* Hover */
.date-item:hover {
  background: #ccc;
}

/* Selected */
.date-item.selected {
  background: #ffc107;
  color: #fff;
}

/* Status */
.schedule-table .status {
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.schedule-table .status.confirmed {
  background-color: #e6f7ee;
  color: #1a7f4b;
}

.schedule-table .status.pending {
  background-color: #fff4e5;
  color: #b26a00;
}

.schedule-table .status.cancelled {
  background-color: #fdecea;
  color: #b42318;
}

/* Button */
.schedule-table .view-btn {
  padding: 6px 12px;
  border: none;
  background: linear-gradient(135deg, #ff2d8d, #d81b60);
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
}

.schedule-table .view-btn:hover {
  background-color: #357abd;
}

.license-form {
  max-width: 98%;
  font-family: Arial, sans-serif;
  background: #fff;
  margin: 10px 10px;
  border-radius: 10px;
  padding: 20px 21px;
}

.license-form .form-group {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
}

.license-form label {
  margin-bottom: 6px;
  font-weight: 500;
  color: #000;
  font-family: "Montserrat";
  font-size: 14px;
}

.license-form input[type="file"],
.license-form input[type="date"] {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

/* Flex container for file + date */
.flex-inputs {
  display: flex;
  gap: 10px;
}

.flex-inputs input {
  flex: 1; /* Equal width for file & date */
}

/* Button */
.license-form button {
  padding: 9px 26px;
  background-color: #e22f90;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 15px;
}

.license-form button:hover {
  background-color: #000;
}
.contract-main-text {
  box-shadow: 3px 6px 11px 10px #0000002e;
  border-radius: 10px;
  padding: 30px 30px;
  text-align: center;
  max-width: 540px;
  margin: 0 auto;
}
.contract-main-text p {
  margin-bottom: 20px;
}
#sig-canvas {
  border: 2px dotted #cccccc;
  border-radius: 15px;
  cursor: crosshair;
  width: 100%;
}
.signature-field label {
  text-align: left;
  display: flex;
  font-family: "Montserrat";
  color: #000;
  font-weight: 500;
  text-transform: capitalize;
}
.clear-sign-btn button#sig-clearBtn {
  text-decoration: underline;
  font-weight: 500;
  float: inline-end;
}
.contract-form-btn .btn-1 {
  font-size: 15px;
  color: #ffffff;
  background: #ea3890;
  text-transform: uppercase;
  font-weight: 500;
  padding: 11px 40px;
  border-radius: 4px;
  border: 0;
  letter-spacing: 1px;
  font-family: "BlenderPro-Medium";
}

.contract-form-btn {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  width: 100%;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  background-color: #e22f90;
  border-color: unset;
  color: #fff;
}
.nav-tabs .nav-link {
  text-transform: uppercase;
  border-radius: 30px;
  color: #000;
  background: #f2f2f2;
}

.nav-tabs {
  border-bottom: unset;
}

.weekly-form {
  font-family: Arial, sans-serif;
  padding: 20px;
  background-color: #f4f6f8;
}
.weekly-form h1 {
  text-align: center;
  color: #000;
  font-family: "BlenderPro-Medium";
  text-transform: uppercase;
  font-weight: 600;
  font-size: 46px;
}
.weekly-form .timesheet-form {
  max-width: 900px;
  margin: auto;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Info section: labels and inputs in one line */
.weekly-form .info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 10px; /* horizontal and vertical spacing */
  margin-bottom: 25px;
}
.weekly-form .info label {
  display: flex;
  align-items: center;
  gap: 10px; /* space between label text and input */
  font-weight: 500;
  color: #555;
  width: calc(50% - 10px); /* two per row */
}
.weekly-form .info input {
  flex: 1; /* input fills remaining space */
  padding: 6px 8px;
  border: none;
  border-bottom: 2px solid #ccc;
  outline: none;
  font-size: 14px;
  background: transparent;
}
.weekly-form .info input:focus {
  border-bottom-color: #007bff;
}

/* Table styling */
.weekly-form table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  table-layout: fixed;
  border: 2px solid #000; /* outer table border */
}
.weekly-form th,
.weekly-form td {
  padding: 10px;
  text-align: center;
  border: 1px solid #000; /* each cell border */
}
.weekly-form th {
  background-color: #f0f0f0;
  font-weight: 600;
  color: #333;
}
.weekly-form input[type="text"],
.weekly-form input[type="time"],
.weekly-form input[type="number"],
.weekly-form input[type="date"] {
  width: 95%;
  padding: 5px;
  border: none;
  outline: none;
  text-align: left;
  font-size: 14px;
  background: transparent;
  border-bottom: 1px solid #000;
}
.weekly-form input[readonly] {
  font-weight: bold;
  color: #e22f90;
}
.weekly-form tfoot td {
  font-weight: bold;
  border-top: 3px solid #000;
  color: #000;
}
.weekly-form button {
  font-size: 15px;
  color: #ffffff;
  background: #ea3890;
  text-transform: uppercase;
  font-weight: 500;
  padding: 11px 40px;
  border-radius: 4px;
  border: 0;
  letter-spacing: 1px;
  font-family: "BlenderPro-Medium";
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
.weekly-form button:hover {
  background-color: #000;
}
.weekly-form table#timesheet input {
  border-bottom: unset;
}

/* attendance :start */

.attendance-card {
  border-radius: 12px;
  border: none;
  border-radius: 20px;
  background-color: #fff;
  margin-top: 20px;
  display: block !important;
  padding: 30px 25px;
}

/* Inputs */
.custom-input {
  background-color: #f3f3f3;
  border: none;
  border-radius: 8px;
  height: 62px;
  border-width: 1px;
  border-color: rgb(231, 231, 231);
  border-style: solid;
  border-radius: 10px;
  background-color: rgb(245, 245, 245);
  font-size: 14px;
  text-transform: uppercase;
}

/* Student Row */
.student-row {
}

/* Avatar */
.avatar-box {
  width: 69px;
  height: 69px;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: rgb(32, 32, 32);
  background: #fafafa;
  border-width: 1px;
  border-color: rgb(231, 231, 231);
  border-style: solid;
  border-radius: 10px;
  background-color: rgb(255, 255, 255);
  font-size: 18px;
  letter-spacing: 5px;
}

/* Buttons */
.btn-present {
  background-color: #34d399;
  color: #fff;
  border-radius: 6px;
  font-size: 13px;
  width: 84px;
  height: 44px;
  color: #000;
}

.btn-present:hover {
  background-color: #34d399;
}

.btn-absent {
  background-color: #d83532;
  color: #fff;
  border-radius: 6px;
  font-size: 13px;
  width: 84px;
  height: 44px;
}

.btn-absent:hover {
  background-color: #d64546;
}

.btn-save {
  padding: 10px 20px;
  font-weight: 500;
  border-width: 1px;
  border-color: rgb(231, 231, 231);
  border-style: solid;
  border-radius: 10px;
  background-color: rgb(253, 201, 19);
  width: 147px;
  height: 62px;
}

.btn-save:hover {
  background-color: #e6a200;
}
.attendance-main h5 {
  font-size: 25px;
  color: #272725;
  border-bottom: 1px solid #00000026;
  padding-bottom: 10px;
  font-family: "Mildstones";
}

label.form-label.small {
  color: rgba(15, 14, 14, 0.659);
  font-size: 12px;
  text-transform: uppercase;
}

.custom-input ::placeholder {
  font-size: 14px;
  text-transform: uppercase;
}

.card.attendance-card.p-4 h6 {
  font-size: 25px;
  color: #272725;
  font-family: "Mildstones";
}

button.btn.btn-light.border {
  border-width: 1px;
  border-color: rgb(231, 231, 231);
  border-style: solid;
  border-radius: 10px;
  background-color: rgb(245, 245, 245);
  width: 123px;
  height: 62px;
}
.attendance-box {
  border-width: 1px;
  border-color: rgb(243, 243, 243);
  border-style: solid;
  border-radius: 10px;
  background-color: rgb(255, 255, 255);
  box-shadow: -13.989px 11.328px 59px 0px rgba(0, 0, 0, 0.04);
  padding: 20px 20px;
}
.student-listing h5 {
  font-size: 18px;
  color: #272725;
}

.student-listing span {
  color: rgba(32, 32, 32, 0.659);
  font-size: 12px;
}
/* attendance :end */

/* my-classes :start */
.card-custom {
  border-radius: 15px;
  background: #fff;
  padding: 40px 25px;
  margin-top: 20px;
}

.card-custom.chg {
  padding: 30px 0px;
  box-shadow: 0 0 10px 0 #0000000f;
  border-radius: 20px;
}

.card-custom.chg h5 {
  margin-left: 20px;
}

.card-custom .title {
  margin-bottom: 20px;
  font-family: "Mildstones";
  font-size: 25px;
  text-transform: uppercase;
}

.card-custom table {
}

.card-custom thead th {
  font-size: 14px;
  text-transform: uppercase;
  color: rgba(32, 32, 32, 0.659);
  font-weight: 600;
  border-bottom: 1px solid #00000014 !important;
}

.card-custom tbody tr {
  background: #fafafa;
  transition: all 0.25s ease;
  border-radius: 10px;
  border-bottom: 1px solid #dedede;
}

td.Confirmed-btn button {
  background: #fff3cb;
  color: #fdcc1f;
  text-transform: uppercase;
  border: none;
  padding: 10px 18px;
  border-radius: 5px;
}

.card-custom tbody tr:hover {
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.card-custom tbody td {
  vertical-align: middle;
  /* border: none; */
  padding: 20px 15px;
  font-size: 12px;
  text-transform: uppercase;
  color: #6c6c6c;
  font-weight: 600;
}

.card-custom .class-cell {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  text-transform: uppercase;
  color: rgba(32, 32, 32, 0.659);
}

.card-custom .icon {
  font-size: 18px;
}

.card-custom .btn-register {
  background-color: #f1f0f2;
  border: none;
  font-size: 12px;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 500;
  border-radius: 5px;
  color: #c0bec6;
  text-transform: uppercase;
}

.btn-check:focus + .btn,
.btn:focus {
  box-shadow: unset;
}
/* my-classes :end */

/* my-schedule  :start */
.wrapper {
  background: #fff;
  border-radius: 16px;
  padding: 25px 30px 35px;
  margin-top: 20px;
}

.wrapper .title {
  font-family: "Mildstones";
  font-size: 25px;
}

.wrapper .top-line {
  height: 1px;
  background: #e5e5e5;
  margin: 15px 0 25px;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card-schedule {
  padding: 16px;
  min-height: 140px;
  border-width: 1px;
  border-color: rgb(243, 243, 243);
  border-style: solid;
  border-radius: 10px;
  background-color: rgb(255, 255, 255);
  box-shadow: -13.989px 11.328px 59px 0px rgba(0, 0, 0, 0.04);
}

.day {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: rgb(28, 28, 28);
  justify-content: center;
}

.inner-line {
  height: 1px;
  background: #e6e6e6;
  margin: 12px 0;
}

.time {
  font-size: 12px;
  color: rgba(32, 32, 32, 0.659);
}

.class-name {
  font-size: 18px;
  font-weight: 500;
  color: #202020;
  margin-bottom: 20px;
}

.location {
  font-size: 12px;
  color: rgba(32, 32, 32, 0.659);
}

.empty {
  text-align: center;
  font-size: 12px;
  color: rgba(32, 32, 32, 0.659);
  margin-top: 30px;
}

.today {
  /* background: linear-gradient(180deg, #a100ff, #6a00ff); */
  color: #fff;
  border: none;
  background-color: rgb(153, 0, 255);
  box-shadow: -13.989px 11.328px 59px 0px rgba(0, 0, 0, 0.04);
}

.today .inner-line {
  background: rgba(255, 255, 255, 0.4);
}

.today .day,
.today .time,
.today .location {
  color: rgba(255, 255, 255, 0.85);
}
.purple-bottom .class-name {
  margin: 0;
}
.mon {
  grid-column: 1;
}
.tue {
  grid-column: 2;
  background: rgb(245, 245, 245);
}
.wed {
  grid-column: 3;
  grid-row: span 2;
  height: 80%;
}
.thu {
  grid-column: 4;
}

.fri {
  grid-column: 1;
}
.sat {
  grid-column: 2;
}

/* OPTIONAL HOVER */
.card-schedule:hover {
  transform: translateY(-3px);
  transition: 0.3s;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}
.card-schedule.today.wed .class-name {
  color: #fff;
}
.purple-bottom {
  margin-top: 50px;
}
/* my-schedule  :end */

.student-info img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
}
.student-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.badge-attendance {
  background-color: #d2f5e9;
  color: #49d598;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 12px;
}
.btn-note {
  background-color: #f1f0f2;
  color: #aaa;
  border-radius: 6px;
  font-size: 12px;
  padding: 6px 14px;
  border: none;
  text-transform: uppercase;
}
.card-custom h5 {
  font-family: "Mildstones";
  font-size: 25px;
}
.table {
  table-layout: fixed;
  width: 100%;
}
.student-info span {
  color: rgba(32, 32, 32, 0.659);
  font-weight: 500;
}

/* notifications :start */
.notifications-wrapper {
  border-radius: 14px;
  background: #fff;
  padding: 40px 20px;
  margin-top: 20px;
  height: 100%;
}

.notification-card {
  background: #ffffff;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  border-width: 1px;
  border-color: rgb(231, 231, 231);
  border-style: solid;
  border-radius: 10px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 17px 49px 0px rgba(133, 133, 133, 0.16);
}

.notifications-wrapper .icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f5b400;
  font-size: 20px;
  border-width: 1px;
  border-color: rgb(253, 201, 19);
  border-style: solid;
  border-radius: 10px;
  background-color: rgb(255, 249, 230);
  width: 55px;
  height: 55px;
}

.notification-title {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 0;
  color: #030303;
  text-transform: uppercase;
  line-height: 20px;
}

.notifications-wrapper .notification-desc {
  font-size: 12px;
  color: #030303;
  font-weight: 600;
  font-family: "Montserrat";
}

.notifications-wrapper .time-text {
  font-size: 16px;
  color: #0b0b0b;
  font-weight: 600;
}

.notifications-wrapper .delete-btn {
  border: 1px solid #e5e5e5;
  padding: 6px 10px;
  background: transparent;
  border-width: 1px;
  border-color: rgb(231, 231, 231);
  border-style: solid;
  border-radius: 10px;
  background-color: rgb(255, 255, 255);
  width: 55px;
  height: 55px;
  color: #7f7f7f;
}

.notifications-wrapper .delete-btn:hover {
  background: #f8f9fa;
}
.notifications-wrapper .section-title {
  margin-bottom: 20px;
  font-family: "Mildstones";
  font-size: 25px;
  text-transform: uppercase;
}

.notifications-wrapper .divider {
  height: 1px;
  background: #ddd;
  margin-bottom: 20px;
}

/* notifications :end */

/* Book A Class Start */
.home-education-lessons-main-box {
  border-radius: 15px;
  background: #ffffff;
  padding: 35px 30px;
  margin-top: 20px;
  height: 100%;
  box-shadow: 0 0 10px 0 #0000000f;
}
.home-education-lessons-form-boxs {
  border: 1px solid #f3f3f3;
  box-shadow: 0 0 10px 0 #0000000f;
  margin-top: 35px;
  padding: 40px 30px;
  border-radius: 15px;
}
.home-education-lessons-form-boxs h2 {
  font-family: "Mildstones";
  font-size: 25px;
  color: #272725;
  font-weight: 400;
  margin-bottom: 25px;
}
.home-education-lessons-form-boxs label {
  color: #6b6b6b;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 14px;
}
.home-education-lessons-form-boxs input {
  width: 100%;
  height: 55px;
  padding: 0 20px;
  border: 1px solid #e7e7e7;
  background: #f5f5f5;
  border-radius: 8px;
  text-transform: uppercase;
  font-weight: 600;
  color: #202020;
  margin-bottom: 20px;
  font-size: 14px;
}
.home-education-lessons-form-boxs select {
  width: 100%;
  height: 55px;
  padding: 0 20px;
  border: 1px solid #e7e7e7;
  background: #f5f5f5;
  border-radius: 8px;
  text-transform: uppercase;
  font-weight: 600;
  color: #202020;
  font-size: 14px;
}

.home-education-lessons-form-select {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.home-education-lessons-form-boxs textarea {
  width: 100%;
  height: 155px;
  padding: 20px 20px;
  border: 1px solid #e7e7e7;
  background: #f5f5f5;
  border-radius: 8px;
  text-transform: uppercase;
  font-weight: 600;
  color: #202020;
  font-size: 14px;
  margin-bottom: 20px;
  resize: none;
}
.home-education-lessons-form-boxs button {
  background: #fdc913;
  padding: 18px 30px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  border: none;
  border-radius: 8px;
}

.home-edu-lessons-form-select-icon {
  position: absolute;
  right: 15px;
  pointer-events: none;
}

.home-education-lessons-form-boxs input::placeholder {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  color: #202020;
}
.manage-children-main-heading h2 {
  margin-bottom: 15px;
  font-family: "Mildstones";
  font-size: 25px;
  color: #272725;
  font-weight: 400;
  border-bottom: 1px solid #dddddd;
  padding-bottom: 25px;
}

/* Book A Class Ends */

/* Manage Children Ends */
.manage-children-main-box {
  border-radius: 15px;
  background: #ffffff;
  padding: 45px 30px;
  margin-top: 20px;
  height: 100%;
}

.home-education-lessons-heading h2 {
  font-size: 25px;
}
.manage-children-main-heading h2 {
  margin-bottom: 15px;
  font-family: "Mildstones";
  font-size: 25px;
  color: #272725;
  font-weight: 400;
  border-bottom: 1px solid #dddddd;
  padding-bottom: 25px;
}
.manage-children-box {
  border: 1px solid #f3f3f3;
  background: #ffffff;
  padding: 30px 30px;
  box-shadow: 0 0 10px 0 #0000000f;
  border-radius: 10px;
  margin-top: 20px;
}

ul.manage-children-johnson {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
ul.manage-children-johnson li span {
  text-transform: uppercase;
  color: #6c6c6c;
  font-size: 14px;
  font-weight: 600;
}
ul.manage-children-johnson li a {
  background: #f5f5f5;
  padding: 15px 30px;
  border-radius: 10px;
  border: 1px solid #e7e7e7;
  text-transform: uppercase;
  color: #696969;
  font-size: 14px;
  font-weight: 500;
}
.manage-children-Guitar-Liam-row {
  background: #f5f5f5;
  padding: 15px 15px;
  border-radius: 10px;
  border: 1px solid #e7e7e7;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.manage-children-Guitar-Liam-box-btn a {
  background: #e1bff7;
  padding: 10px 15px;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  color: #9e0dfe;
}
.manage-children-Guitar-Liam-school-boxs h2 {
  font-size: 18px;
  color: #202020;
}
.manage-children-Guitar-Liam-school-boxs {
  margin-top: 25px;
}
.manage-children-Guitar-Liam-school-boxs span {
  color: #6c6c6c;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  margin-bottom: 5px;
  display: block;
}
.manage-children-Guitar-current-classes-boxs span {
  color: #6c6c6c;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  display: block;
}
.manage-children-Guitar-current-classes-boxs ul {
  display: flex;
  align-items: center;
  gap: 20px;
}
.manage-children-Guitar-current-classes-boxs ul li a {
  color: #9e0dff;
  background: #e9c7ff;
  padding: 8px 18px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  border-radius: 50px;
}
.manage-children-Guitar-current-classes-boxs .manage-children-btn {
  background: #fff3cb !important;
  color: #fdcc1f !important;
}
.manage-children-Guitar-current-classes-boxs {
  margin-top: 20px;
}
.manage-children-Guitar-Liam-box-btn a img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.manage-children-Guitar-Liam-box ul li h2 {
  font-size: 18px;
  color: #202020;
}
.manage-children-Guitar-Liam-box ul li p {
  color: #828282;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
}
.manage-children-Guitar-Liam-box ul li img {
  width: 71px;
  height: 63px;
  object-fit: cover;
  border-radius: 5px;
}
.manage-children-Guitar-Liam-box ul {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Manage Children Ends */

/* Book a Private Lesson Start */

.card-option {
  background: #fff;
  border-radius: 8px;
  padding: 30px 25px;
  text-align: center;
  cursor: pointer;
  transition: 0.2s;
  box-shadow: 0 0 10px 0 #0000000f;
  border: 2px solid #f3f3f3;
}

.card-option img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.lesson-loction {
  color: #606060;
  margin-bottom: 8px;
}

.card-option .fw-bold.mt-2 {
  font-size: 18px;
  color: #100f0f;
}
.card-option.active {
  background: #f3e1ff;
  border-color: #9900ff;
}
.card-option:hover {
  transform: scale(1.03);
}
.section-title {
  margin-bottom: 10px;
  font-family: "Mildstones";
  font-size: 20px;
  color: #272725;
  font-weight: 400;
  padding-bottom: 8px;
}
.input-custom {
  background: #f5f5f5;
  border-radius: 8px;
  border: none;
  padding: 15px 20px;
  color: #202020;
  font-weight: 500;
  text-transform: uppercase;
  border: 2px solid #e7e7e7;
  font-size: 15px;
  font-weight: 600;
  color: #202020;
}
.input-custom::placeholder {
  font-size: 15px;
  font-weight: 600;
  color: #202020;
}
.book-private-lesson-left-box {
  box-shadow: 0 0 10px 0 #0000000f;
  padding: 30px 25px;
  margin-top: 30px;
  border: 2px solid #f3f3f3;
  border-radius: 15px;
}
.pricing-card {
  /* background: linear-gradient(345deg, #a100ff, #6a00ff); */
  color: white;
  border-radius: 8px;
  padding: 28px;
  background: #9900ff;
}
.pricing-card h6 {
  margin-bottom: 10px;
  font-family: "Mildstones";
  font-size: 18px;
  color: #fff;
  font-weight: 100 !important;
  padding-bottom: 8px;
  margin-bottom: 12px !important;
}
.pricing-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.left {
  display: flex;
  align-items: center;
  gap: 15px;
}
.icon-box {
  width: 70px;
  height: 60px;
  background: #f5f5f5;
  color: black;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.pricing-item .title {
  letter-spacing: 1px;
  color: #ffffff;
  font-weight: 500;
  line-height: 20px;
}
.pricing-item .subtitle {
  font-size: 12px;
  color: #dca8ff;
  font-weight: 600;
  line-height: 18px;
}
.pricing-item .price {
  font-weight: 600;
  font-size: 18px;
  color: #ffffff;
}
.price small {
  font-size: 12px;
  color: #dca8ff;
  font-weight: 600;
}
.pricing-card .divider {
  border-top: 1px dashed #d18cff;
  margin: 20px 0;
}
.pricing-card .btn-custom {
  background: #ffc107;
  border-radius: 8px;
  font-weight: bold;
  width: 100%;
  font-size: 12px;
  border: 1px solid #e7e7e7;
  height: 55px;
}
.form-select:focus {
  border-color: inherit;
  outline: 0;
  box-shadow: inherit;
  border: 2px solid #e7e7e7;
}
.lesson-loction-select {
  position: relative;
  display: flex;
  align-items: center;
}
.lesson-loction-select-icon {
  position: absolute;
  right: 10px;
  pointer-events: none;
}

/* Book a Private Lesson Ends */

/* School Clubs & Lessons Start */

.main-wrapper .box {
  background: #fff;
  box-shadow: 0 0 10px 0 #0000000f;
  border: 2px solid #f3f3f3;
  border-radius: 15px;
  margin-top: 30px;
  padding: 30px 25px !important;
}

.main-wrapper .title {
  margin-bottom: 15px;
  font-family: "Mildstones";
  font-size: 20px;
  color: #272725;
  font-weight: 400;
}

.main-wrapper .card-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  cursor: pointer;
  transition: 0.3s;
  background: none;
  box-shadow: 0 0 0 0;
  border: none !important;
  border-radius: 0;
  border-bottom: 1px solid #dedede !important;
  padding: 15px 0;
}
.music-theory-club h6 {
  color: #202020;
  font-weight: 600;
  line-height: 20px;
}
.music-theory-club small {
  color: #7f7f7f;
  font-weight: 500;
}

.main-wrapper .card-option.active {
  border: 2px solid #6f42c1;
  background: #f3e8ff;
}

.main-wrapper .btn.book {
  background: #fdc913;
  font-size: 12px;
  color: #feedc5;
  padding: 10px 22px;
  border: 1px solid #e7e7e7;
  border-radius: 8px;
}

.main-wrapper .btn.full {
  background: #f5f5f5;
  font-size: 12px;
  padding: 10px 22px;
  border: 1px solid #e7e7e7;
  color: #696969;
}

.music-theory-club {
  text-align: left;
}

.main-wrapper .spots {
  font-size: 10px;
  padding: 3px 12px;
  border-radius: 10px;
}
.main-wrapper .green {
  background: #d1eadb;
  color: #39a465;
  font-family: "BlenderPro-Medium";
}

.main-wrapper .red {
  background: #ffd6d6;
  color: red;
}

.main-wrapper .summary {
  border-radius: 10px;
  color: #fff;
  background: #9900ff;
  margin-top: 30px;
}
.school-clubs-icon-box {
  border: 1px solid #e7e7e7;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 8px;
}

.main-wrapper .proceed {
  background: #fdc913;
  margin-top: 20px;
  height: 55px;
  font-size: 12px;
  font-weight: 600;
  color: #000;
  border: 1px solid #e7e7e7;
}
.summary hr {
  margin: 1rem 0;
  color: inherit;
  background-color: inherit;
  border: 0;
  opacity: 0.25;
  border: 1px dashed #d18cff;
  opacity: 1;
}
.summary h6 {
  margin-bottom: 15px;
  font-family: "Mildstones";
  font-size: 18px;
  color: #fff;
  font-weight: 200 !important;
  letter-spacing: 0.5px;
}
.summary label {
  color: #dca8ff;
  margin-bottom: 5px;
}
.summary select {
  background: #f5f5f5;
  height: 50px;
  font-size: 14px;
  text-transform: uppercase;
  color: #202020;
  font-weight: 600;
}
#selectedClass {
  color: #f5f5f5;
  text-transform: uppercase;
  font-family: "BlenderPro-Medium";
}
.summary p {
  color: rgb(245, 245, 245);
  text-transform: uppercase;
  font-family: BlenderPro-Medium;
}
.summary-select-box {
  position: relative;
  display: flex;
  align-items: center;
}
.summary-select-box-icon {
  position: absolute;
  right: 10px;
  pointer-events: none;
}
.summary-select-box-icon i {
  color: #000;
}
/* School Clubs & Lessons Ends */

/* Payments Start */

.subscription-billing-box {
  background-image: url(../images/subscription-billing-back.jpg);
  width: 100%;
  height: 100%;
  background-size: cover;
  padding: 55px 30px;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.Choose-plan-main-box {
  margin-top: 40px;
  border-radius: 10px;
}
.Choose-plan-main-bronze ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 15px;
  transition: 0.5s;
}

.Choose-plan-main-silver ul {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
}

.choose-plan-main-row:hover {
  background: #fdc913;
  transition: 0.5s;
}

.choose-plan-main-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 12px;
  transition: 0.5s;
  background: #ffffff;
  border-radius: 8px;
  margin-top: 15px;
  border: 2px solid #e7e7e7;
}

.choose-plan-main-row:hover * {
  color: #fff !important;
}

.main-gold-box {
  padding: 20px 15px;
  border-radius: 8px;
  border: 2px solid #e7e7e7;
}

.main-gold-box p {
  margin-bottom: 15px;
}

.main-gold-box-listing ul li a {
  color: #6f6f6f;
  font-size: 12px;
  font-weight: 600;
}

.main-gold-box-listing ul li a {
  color: #6a6a6a;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Rajdhani", serif;
  text-transform: math-auto;
}

.main-gold-box-listing ul {
  margin-bottom: 0;
}

.payment-history-box {
  margin-top: 40px;
  border-radius: 10px;
}

.payment-history-box h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #141414;
}

.Choose-plan-main-box > h2 {
  color: #141414;
}

.main-gold-box p {
  font-size: 14px;
  color: #8f97a2;
  font-family: "Rajdhani", serif;
  text-transform: uppercase;
  font-weight: 600;
}

.main-gold-box-listing {
  background: #f2f2f2;
  padding: 18px 18px;
  border-radius: 10px;
}
.main-gold-box-listing ul li a img {
  width: 12px;
  height: 12px;
  object-fit: contain;
}
.main-gold-box-listing h2 {
  color: #000 !important;
  font-size: 20px !important;
  margin-bottom: 10px !important;
}

.main-gold-box-listing h2 span {
  font-size: 12px;
}

.Choose-plan-main-silver ul li p {
  color: #919191;
  margin-bottom: 0;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 11px;
  line-height: 20px;
  font-family: "BlenderPro-Medium";
}

.Choose-plan-main-number h2 {
  margin-bottom: 0 !important;
  font-size: 18px !important;
  color: #242424 !important;
}

.Choose-plan-main-silver ul li span {
  background: #fffcf2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  border: 1px solid #feedb1;
}

.Choose-plan-main-number h2 sub {
  color: #000;
  font-size: 12px;
}

.Choose-plan-main-silver ul li h2 {
  font-size: 13px;
  margin-bottom: 0;
  text-transform: uppercase;
  color: #333333;
}

.Choose-plan-main-box h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  text-transform: uppercase;
  color: #102038;
}

.saved-payment-methods-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 15px;
  transition: 0.5s;
}

.saved-payment-methods-visa ul li img {
  border-radius: 10px;
  width: 50px;
  height: 50px;
  object-fit: scale-down;
  background: #e016164f;
  border: 1px solid #e016164f;
}

.saved-payment-methods-visa-btn {
  opacity: 0;
}

.saved-payment-methods-row:hover .saved-payment-methods-visa-btn {
  opacity: 1;
}

.saved-payment-methods-row:hover {
  background: #ffffff;
  transition: 0.5s;
  border-radius: 10px;
}

.subscription-billing-current-plan {
  background: #fff;
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 10px 20px;
  border-radius: 10px;
}

.subscription-billing-box h2 {
  font-size: 25px;
}

.subscription-billing-box p {
  color: #ffffff;
  font-size: 12px;
  margin-bottom: 15px;
  font-weight: 500;
}

.subscription-billing-box h2 {
  color: #fff;
  border-bottom: 1px solid #ffffff47;
  padding-bottom: 10px;
  width: fit-content;
  padding-right: 150px;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-family: "Mildstones";
  font-weight: 500;
}

.subscription-billing-box a {
  font-weight: 700;
  background: #fdc913;
  border: 1px solid #e7e7e7;
  border-radius: 5px;
  color: #000;
  font-size: 12px;
  font-family: "BlenderPro-Medium";
  padding: 12px 30px;
}

.subscription-billing-current-plan p {
  font-size: 12px;
  margin-bottom: 0;
  color: #8d8d8d;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "BlenderPro-Medium";
}

.subscription-billing-current-plan h3 span {
  color: #9900ff;
}

.saved-payment-methods {
  background: #e9e9e9;
  padding: 30px 25px;
  border-radius: 20px;
}

.saved-payment-methods-visa ul {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
}

.saved-payment-methods-visa-btn a {
  font-size: 10px;
  background: #e016164f;
  font-family: "Rajdhani", serif;
  padding: 7px 10px;
  border-radius: 5px;
  color: #d42424;
  text-transform: uppercase;
  font-weight: 600;
}

.saved-payment-methods-visa ul li h2 {
  color: #313131;
  font-size: 13px;
  margin-bottom: 0;
  line-height: 20px;
}

.saved-payment-methods-visa ul li p {
  color: #9f9f9f;
  margin-bottom: 0;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
  line-height: 20px;
}

.saved-payment-methods h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.subscription-billing-current-plan h3 {
  margin-bottom: -3px;
  color: #000;
  font-size: 15px;
  line-height: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

.payment-history-box th,
td {
  padding: 20px 0;
  text-align: center;
  color: #313131;
  font-family: "Rajdhani", serif;
  font-weight: 700;
  line-height: 17px;
  font-size: 12px;
  text-transform: uppercase;
}

.payment-history-box tr {
  transition: 0.5s;
}

.payment-history-box tr:hover {
  background: #fff;
  border-radius: 10px !important;
  transition: 0.5s;
}

.payment-history-box a {
  background: #fdc913;
  padding: 8px 10px;
  font-size: 9px;
  text-transform: uppercase;
  color: #000;
  border-radius: 7px;
  font-weight: 700;
  font-family: "BlenderPro-Medium";
}

.payment-history-box th {
  background-color: #f2f2f2;
  font-size: 12px;
  color: #313131;
  font-weight: 700;
}

.payment-history-box table {
  caption-side: bottom;
  border-collapse: collapse;
  width: 100%;
}

.slidebar_menu {
  overflow-y: auto;
}

.slidebar_menu::-webkit-scrollbar {
  width: 5px;
}

.slidebar_menu::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.slidebar_menu::-webkit-scrollbar-thumb {
  background-color: #fdc913;
  border-radius: 10px;
}

.slidebar_menu::-webkit-scrollbar-button:single-button {
  display: none;
  height: 0;
  width: 0;
}

.slidebar_menu {
  scrollbar-width: thin;
  scrollbar-color: #fdc913 #f1f1f1;
}

.prf-input.chg {
  margin-bottom: 20px;
}
.prf-input.chg i {
  color: #000;
  font-size: 15px;
}
.payment-history-box tbody tr:hover {
  background-color: #f5f5f5;
  cursor: pointer;
}
.payment-history-box tbody tr {
  transition: all 0.3s ease;
}

.payment-history-box tbody tr {
  transition: 0.3s;
}

.payment-history-box tbody tr:hover {
  background-color: #ffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #e7e7e7;
}
/* Payments Ends */
