:root {
  --primary-color: #da9917;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
 
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  line-height: 1.7;
  position: relative;
}

.container {
  width: 120rem;
  margin: 0 auto;
}
a {
  text-decoration: none;
}
/* Login form */
.section__login {
  background-image: linear-gradient(
      to right bottom,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5)
    ),
    url(../img/bg.jpg);
  background-size: cover;
  background-repeat: repeat;
  width: 100vw;
  height: 100vh;
  animation: marquee 45s infinite linear;
}

.section__login .container {
  width: 100%;
  height: 100%;
}

.welcome {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 5rem;
}

.login {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login .logo {
  width: 10rem;
}

.login .logo img {
  width: 100%;
}

.login .form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 5px;
  background-image: linear-gradient(
    to right bottom,
    rgba(255, 255, 255, 0.3),
    rgba(255, 255, 255, 0.2)
  );
  border: 1px solid #fff;
  width: 400px;
  backdrop-filter: blur(5px);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
}

.login .form .form__group {
  width: 100%;
}

.login .form .form__group:not(:last-child) {
  margin-bottom: 0;
}

.login .form .form__input {
  display: block;
  width: 100%;
  padding: 10px 16px;
  font-size: 16px;
  font-family: inherit;
  color: inherit;
  border: none;
  border-radius: 5px;
  border: 3px solid transparent;
}

.login .form .form__input:focus {
  outline: none;
  border-bottom: 3px solid #ffcf25;
}

.login .form .form__input:invalid {
  border-bottom: 3px solid #e74c3c;
}

.login .form .form__input::-webkit-input-placeholder {
  color: #999;
}

.login .form .form__label {
  display: block;
  margin-left: 15px;
  margin-top: -1px;
  margin-bottom: 13px;
  color: #333;
  font-weight: 500;
  transition: all 0.5s ease;
  pointer-events: none;
}

.login .form .form__input:placeholder-shown + .form__label {
  opacity: 0;
  visibility: none;
  transform: translateY(-40px);
}

.login .form .btn {
  margin: 0 0 1.5rem;
  padding: 1.5rem;
}

.form__link {
  color: #000 !important;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
}

.form__link:hover {
  color: #333;
}

@keyframes marquee {
  0% {
    background-position: 0;
  }
  100% {
    background-position: -1920px;
  }
}

.form {
  text-align: left;
  width: 100%;
  margin-top: 2.5rem;
}

.form__group {
  width: 90%;
  margin: 0 auto;
}

.form__group:not(:last-child) {
  margin-bottom: 2.5rem;
}

.form__label {
  display: block;
  /* margin-bottom: 1rem; */
  font-size: 1.4rem;
}

.form__input {
  width: 100%;
  display: block;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  border: none;
  border: 1px solid transparent;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.form__input:focus {
  outline: none;
  border: 1px solid #333;
}

.form__group .btn {
  width: 100%;
}

.btn {
  display: inline-block;
  background: #da9917;
  color: #000;
  padding: 2rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  /* margin-top: 2.5rem; */
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: 560;
}
.btnred {
  display: inline-block;
  background: #fd0707;
  color: #ffffff;
  padding: 2rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  /* margin-top: 2.5rem; */
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: 560;
}
.btn-sub {
  display: inline-block;
  background: #da9917;
  color: #000;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  margin-top: 4.5rem;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: 560;
}
.leftmargin{
  margin: 27px;
}
.btn-smal {
  border-radius: 2.5rem;
  padding: 0.5rem 1.5rem;
}
.btn-margin{
  display: block;
  padding: 1rem 3rem;
  font-weight: 600;
  background: hsl(44, 94%, 49%);
  color: #fff;
  border: none;
  border-radius: 1rem;
}
.form__group a {
  text-decoration: none;
  color: #333;
}

.whole {
  display: flex;
  position: relative;
}

.side-bar {
  /* width: 28rem; */
  background: #000;
  position: fixed;
  top: 0;
  left: -30rem;
  height: 100vh;
  transition: all 0.3s ease-in;
  overflow-y: auto;
}

.side-bar::-webkit-scrollbar {
  width: 5px;
}

.side-bar::-webkit-scrollbar-thumb {
  background: #da9917;
}

.main-content {
  margin-left: 0;
  width: 100%;
  height: 100%;
  background: #f2f2f2;
  transition: all 0.3s ease-in;
}

.side-bar.show {
  left: 0;
}

.main-content.show {
  margin-left: 28rem;
}


/* Nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 2.5rem;
  /* box-shadow: 0 2px 0.4rem rgba(0, 0, 0, 0.2); */
  background: #fff;
}

.toggle__btn {
  cursor: pointer;
}

.toggle__btn:focus {
  outline: none;
}

.bar {
  position: relative;
  transition: all 0.5s ease-in;
 }
  .bar, .bar::before, .bar::after {
    width: 3rem;
    height: 3px;
    display: inline-block;
    background-color: #da9917;
   }
  .bar::before, .bar::after {
    content: '';
    position: absolute;
    left: 0;
    transition: all 0.3s ease; }
  .bar::before {
    top: -1rem; }
  .bar::after {
    top: 1rem; }

    .toggle:hover .bar::before {
      top: -1.3rem; }
    
    .toggle:hover .bar::after {
      top: 1.3rem; }

      .main-content.show .bar {
       background-color: transparent;
      }

      .main-content.show .bar::before {
        top: 0;
        transform: rotate(45deg);
     
      }
      .main-content.show .bar::after {
        top: 0;
        transform: rotate(-45deg);
        
      }

.input__search {
  display: inline-block;
  border: 1px solid #888;
  border-radius: 1rem;
  width: 70rem;
  padding: 1.5rem;
}

.input__search:focus {
  outline: none;
  border: 2px solid var(--primary-color);
}

.nav__left i {
  position: absolute;
  font-size: 1.8rem;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.nav__right {
  display: flex;
  align-items: center;
}

.user {
  display: flex;
  align-items: center;
}

.user__name {
  color: var(--primary-color);
}

.user__img {
  /* background: rgba(218, 153, 23, 0.5); */
  width: 5rem;
  height: 5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin-left: 2rem;
  /* font-size: 1.9rem; */
  /* color: #fff; */
}

.noti__icon {
  margin-right: 3.5rem;
}

.noti__icon i {
  font-size: 1.8rem;
  background-image: linear-gradient(45deg, #da9917, #ffcf25, #da9917, #ecbf26);
  -webkit-background-clip: text;
  color: transparent;
}

.nav-brand {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem 0;
}

.nav-brand h1 {
  font-size: 3rem;
  color: var(--primary-color);
  margin-left: 2.5rem;
}

.nav-brand__img {
  width: 7rem;
}

.nav-brand__img img {
  width: 100%;
}

.dropdown-menu {
  list-style: none;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 0 2rem;
  margin-top: 1rem;
}

.dropdown-list:not(:last-child) {
  margin-bottom: 2rem;
}

.dropdown-link {
  color: var(--primary-color);
  text-decoration: none;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  border-radius: 5px;
  
}

.dropdown-link:hover, .dropdown-link.active {
  background: #fff;
  color: #000;
}

.dropdown-link i {
  margin-right: 1.5rem;
  font-size: 2.5rem;
}

.side-bar__list.active .dropdown-menu{
 max-height: 30rem;
}

.side-bar__item {
  list-style: none;
  padding: 1rem;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.side-bar__list {
  width: 100%;
}

.side-bar__list:not(:last-child) {
  margin-bottom: 2rem;
}

.side-bar__link {
  color: var(--primary-color);
  font-size: 1.6rem;
  text-decoration: none;
  width: 100%;
  display: flex;
  align-items: center;
  /* padding: 1rem 1.5rem; */
  border-radius: 5px;
}

.side-bar__link:hover, .side-bar__link.active {
  background: #da9917;
  color: #000;
  width: 100%;
}

.side-bar__link i {
  margin-right: 1.5rem;
  font-size: 2.5rem;
}

.toggle__btn {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--primary-color);
}

/* Content */
.content {
  display: flex;
}

.content.block {
  display: block;
}

/* Profile */
.profile {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  width: 35rem;
  margin: 3rem;
  border-radius: 1rem;
  padding: 2rem;
  height: max-content;
}

.profile__img {
  width: 9rem;
  height: 11rem;
  margin: 0 auto;
  background: #ddd;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 3rem;
}

.profile__img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.profile__name {
  text-align: center;
  margin-top: 0.5rem;
}

.office__details {
  list-style: none;
  padding: 1rem;
  border-radius: 1rem;
  margin-top: 1.5rem;
}

.office__details li {
  font-size: 1.3rem;
  font-weight: 600;
  color: rgba(68, 68, 68, 0.7);
}

.office__details li:not(:last-child),
.personal__detail li:not(:last-child) {
  padding-bottom: 1.3rem;
}

.personal__detail {
  list-style: none;
  margin-top: 1.5rem;
}

.personal__detail:not(:last-child) {
  margin-bottom: 3rem;
  margin-top: 2rem;
}

.personal__detail li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.3rem;
  color: #333;
  font-weight: 500;
}

.personal__detail li i {
  font-size: 1.8rem;
}

.personal__detail li .bxs-droplet {
  color: #ff0000;
}

/* Tab */
.section__tab {
  padding: 2rem;
  width: calc(100% - 37rem);
}

.tab {
  width: 100%;
}

.tab__head-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 50rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  background: #fff;
}

.tab__head {
  cursor: pointer;
  padding: 1.5rem 2rem;
  width: 100%;
  text-align: center;
}

.tab__head:not(:last-child) {
  border-right: 1px solid rgba(112, 112, 112, 0.5);
}

.tab__head:first-child {
  border-top-left-radius: 50rem;
  border-bottom-left-radius: 50rem;
}

.tab__head:last-child {
  border-top-right-radius: 50rem;
  border-bottom-right-radius: 50rem;
}

.tab__head.active {
  background-image: linear-gradient(45deg, #da9917, #ffcf25, #ffff90, #ecbf26);
}

.tab__body-container {
  width: 100%;
  background: #fff;
}

.tab__body {
  display: none;
  animation: fade 0.5s ease-in;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.tab__body.active {
  display: block;
}

.months {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem;
}

.month {
  width: 100%;
  display: none;
  text-align: center;
  animation: fade 0.5s ease-in;
}

.month.active {
  display: block;
}

.arrow {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 2rem;
}

.prev__arrow,
.next__arrow {
  cursor: pointer;
}

.dates {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border: 2px solid #333;
}

.date {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  text-align: center;
}

.date.active {
  background-image: linear-gradient(45deg, #da9917, #ffcf25, #ffff90, #ecbf26);
}

.plan__input {
  padding: 2rem;
}

.plan__input form label {
  display: block;
  margin-bottom: 1.5rem;
}

.plan__input form textarea {
  width: 100%;
  border: 2px solid #eee;
  border-radius: 0.5rem;
  padding: 1.5rem;
}

.plan__input form textarea:focus {
  outline: none;
  border: 2px solid #da9917;
}

.plan__input .btn {
  padding: 1rem 3.5rem;
  font-weight: 600;
  color: #333;
}

.plan {
  padding: 2rem 2rem 0;
}

/* Animation */
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 100%;
  }
}

/* Break Slot */
.slots {
  display: flex;
  flex-direction: column;
}

.time__slot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tab__body--content {
  padding: 2rem;
}

.slots hr {
  margin-top: 1.5rem;
}

.time__right {
  display: flex;
  align-items: center;
  width: 25%;
}

.time__right button:not(:last-child) {
  margin-right: 1rem;
}

.time__right button {
  flex-grow: 1;
  padding: 1rem 1.5rem;
}

/* Profile creation */
.pro-form {
  margin: 1.5rem;
  margin-top: 7rem;
  width: 100%;
  position: relative;
}

.pro-form form {
  background: white;
  width: 100%;
  padding: 3rem;
  padding-top: 7rem;
  border-radius: 1rem;
}
/* ----------expensive small form ----------- */
.smallpro-form {
  margin: 1.5rem;
  margin-top: 1rem;
  width: 100%;
  position: relative;
}

.smallpro-form form {
  background: white;
  width: 100%;
  padding: 1rem;
  padding-top: 1rem;
  border-radius: 1rem;
}
.smallpro-form .form__group .form__input {
  box-shadow: none;
  border: none;
  border: 2px solid #ddd;
  border-radius: 0.5rem;
  padding: 1rem 1.5rem;
}

.title__box {
  position: absolute;
  width: 90%;
  height: 10rem;
  background-image: linear-gradient(45deg, #da9917, #ffcf25, #ffff90, #ecbf26);
  z-index: 1;
  top: -5rem;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 1rem;
  padding: 2rem;
}

.title__box h3 {
  font-weight: 400;
  font-size: 2.2rem;
}

.col-1-of-3,
.col-1-of-2,
.col-1-of-1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}
.noMarg{
  margin-bottom: 0.5rem;
}
.gap10{
  gap: 10px;
}

.pro-form .form__group {
  position: relative;
}

.col-1-of-3 .form__group {
  margin-bottom: 0;
  width: 32%;
  margin: 0;
}

.col-1-of-2 .form__group {
  margin-bottom: 0;
  width: 49%;
}

.col-1-of-1 .form__group {
  margin-bottom: 0;
  width: 99%;
}

.pro-form .form__group .form__label {
  color: #555;
}

.pro-form .form__group .form__input {
  box-shadow: none;
  border: none;
  border: 2px solid #ddd;
  border-radius: 0.5rem;
  padding: 1rem 1.5rem;
}

.bulk {
  background: white;
  width: 100%;
  padding: 3rem;
  margin-top: 3rem;
  border-radius: 1rem;
  position: relative;
}

.upload-file {
  position: relative;
  cursor: pointer;
  background: hsl(44, 94%, 49%);
  overflow: hidden;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  margin-top: 2rem;
  border-radius: 1rem;
  margin-left: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.upload-file input[type='file'] {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 25rem;
  opacity: 0;
}

.pro-form .form__group .form__input:focus {
  border-bottom: 2px solid #da9917;
}

hr {
  border-top: 2px soild #fefefe;
  margin: 1rem 0;
}

.pro-form .btn {
  display: block;
  padding: 1rem 3rem;
  font-weight: 600;
  background: hsl(44, 94%, 49%);
  color: #fff;
  margin-left: auto;
}

/* Table */
.table--container {
  margin: 3rem;
  width: 100%;
}

.table {
  width: 100%;
  background: #fff;
  padding: 2.5rem;
  border-radius: 1rem;
}
.dasboard{
  /* width: 90%;
  margin: auto; */
}

.table thead th,
.table tbody td {
  text-align: left;
}
.table thead,
.table tbody {
  width: 100%;
}

.table thead th {
  /* color: #da9917; */
  color: #f0a104;
}

.table tbody tr td {
  font-size: 1.4rem;
  font-weight: 400;
  padding: 1rem 0;
  transition: all 0.3s;
}

.table tbody tr td:not(:last-child) {
  border-bottom: 2px solid #eee;
}

.table .btn {
  padding: 1rem 2.5rem;
}
.inlinecont{
  display: contents;
  width: 20%;
  padding: 1rem 1.5rem;
}
 
.Attd--filer{
  display: flex;
  justify-content: space-between;
}

.date--select {
  width: 100%;
  margin-bottom: 1rem;
  background: #fff;
  padding: 0.5rem;
  border-radius: 1rem;
}

.col-1-of-4 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.col-1-of-4 .form__group {
  margin: 0;
  width: 24%;
}

.date--select .form__group:not(:last-child) {
  margin-right: 2rem;
}

/* Modal */

.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.overlay.hidden {
  display: none;
}

.modal {
  position: fixed;
  width: 40rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border: 2px Solid #da9917;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 1rem;
  z-index: 3;
}

.modal h3 {
  color: #444;
}

.modal__time {
  font-size: 5rem;
  color: #888;
}

.modal__date {
  font-size: 2.5rem;
}

.modal .btn {
  background: #fff;
  padding: 1rem 2.5rem;
  font-size: 2.5rem;
  margin: auto;
}

.modal.hidden {
  display: none;
}

/* DashBorad */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
  width: 100%;
  padding: 2.5rem;
  padding-top: 4.5rem;
  grid-row-gap: 5rem;
  grid-column-gap: 2.5rem;
}

.card {
  position: relative;
  text-align: right;
  background: #fff;
  padding: 3rem 1rem 2rem;
  border-radius: 0.8rem;
  height: 10rem;
}

 .cards a{
  color: #000;
  text-decoration: none;
}

.icon__card {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 0.3rem;
  background: linear-gradient(60deg, #ffa726, #fb8c00);
  left: 3rem;
  top: -2rem;
  color: #fff;
  font-size: 2.5rem;
}

.content-1 {
  background: #eee;
  width: 100%;
}

.modal__report {
  width: 60rem;
}

.modal ul {
  list-style: none;
}

.modal ul li {
  display: flex;
  justify-content: space-between;
}

.modal ul li p {
  width: 50%;
}

.charts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(50rem, 1fr));
  grid-gap: 3rem;
  padding: 2.5rem;
  
}

.chart {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
}

/* Clients */
.clients {
  width: 100%;
  background-color: #fff;
  margin: 2.5rem 2rem;
  border-radius: 0.8rem;
  padding: 2rem;
}

.top__section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.top__left {
  display: flex;
  align-items: center;
}

.top__left h4 {
  margin-right: 3.5rem;
}

.search,
.filter {
  margin-right: 2rem;
}

.search {
  position: relative;
}

.search__client,
.filter select {
  width: 100%;
  padding: 1rem 2.8rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  transition: all 0.3s;
}

.search__client:focus,
.filter select:focus {
  outline: none;
  border: 1px solid #da9917;
}

.search label {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.action .call,
.action .view {
  display: inline-block;
  text-decoration: none;
  background: #ddd;
  color: #000;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 1.4rem;
  cursor: pointer;
}

.action .call {
  margin-right: 1rem;
}

.btn__new {
  display: inline-block;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  background: #ddd;
  color: #000;
  text-decoration: none;
}

.btn__new:focus {
  outline: none;
}

.btn__new i {
  margin-right: 1rem;
}

.client--detail {
  width: calc(100% - 37rem);
  background-color: #fff;
  margin: 3rem;
  margin-left: 0;
  border-radius: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.client--detail .form {
  padding: 0 2rem;
}

.client--detail .btn {
  padding: 1rem 3rem;
  box-shadow: 0 3px 0.6rem rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
}

.client--detail .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 3px 0.9rem rgba(0, 0, 0, 0.3);
}

.client--detail .btn:active {
  transform: scale(1);
  box-shadow: 0 2px 0.4rem rgba(0, 0, 0, 0.3);
}

.client--detail .form__input:focus {
  outline: none;
  border: 2px solid #da9917;
}

.dialogue__box {
  margin: 2rem;
  border: 2px solid #ecbf26;
  border-radius: 1rem;
  height: 34rem;
  position: relative;
  overflow: hidden;
  overflow-y: scroll;
  padding: 2rem;
}

.box {
  width: 50rem;
  padding: 1rem;
  background: #ecd662;
  border-radius: 0.8rem;
  /* position: absolute;
  bottom: 1.5rem;
  right: 1.5rem; */
  margin-bottom: 1.5rem;
}

.box p {
  font-size: 1.4rem;
}

.box .dialogue__date {
  font-size: 1.1rem;
  margin-top: 0.8rem;
  font-weight: 600;
  color: #2c2e43;
}

.status {
  font-weight: 700;
  font-size: 1.4rem;
}

.calendar {
  background: #fff;
  width: 100%;
  padding: 3rem;
}

.calendar__top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #d3d3d3;
  padding: 0 1rem 2rem;
}

.next__bx .btn {
  padding: 1rem 2rem;
  box-shadow: 0px 0px 0px 0px;
}

.search input {
  width: 100%;
  padding: 0.5rem 1.5rem;
}

.calendar__bottom {
  width: 100%;
}

.calendar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fafafa;
  padding: 1rem;
}

.calendar__head span a {
  color: #333;
  text-decoration: none;
}

.calendar__sprint {
  background-color: #fafafa;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  font-size: 1.4rem;
  border-top: 1px solid #d3d3d3;
}

.sprint {
  position: relative;
}

.sprint::before {
  content: '';
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background-color: #ecbf26;
  border-radius: 50%;
  margin-right: 1rem;
}

.misc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
}

.search__input {
  width: 25rem;
  position: relative;
}

.search__input input {
  background: #ddd;
  border: none;
  border-radius: 0;
  padding: 1.5rem;
  border: 2px solid transparent;
}

.search__input i {
  position: absolute;
  font-size: 1.8rem;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.filter__icon {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
}

.filter input {
  padding: 0.5rem 1rem;
}

.filter button {
  display: inline-block;
  margin-left: 0.5rem;
  border: none;
  padding: 1rem 1rem;
  cursor: pointer;
}
.leadRemark .form__group:not(:last-child) {
  margin-bottom: 0;
}
.leadRemark{
  width: 100%;
  margin-bottom: 1rem;
  background: #fff;
  padding: 0.5rem;
  border-radius: 1rem;
  display: flex;
}
.table--containersmall {
  margin: 1rem;
  width: 100%;
}

.form__input_small {
  width: 20%;
  display: block;
  padding: 1rem 1.5rem;
  border-radius: 2rem;
  border: none;
  border: 1px solid transparent;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.btn-sub-attn {
  display: inline-block;
  background: #da9917;
  color: #000;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  margin-top: -0.5rem;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: 560;
}
.remarktextarea{
  border-radius: 10px;
  padding: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.tableRemark{
  border: none;
}
/* editable */
.side-bar {
  width: 17rem;
}
.main-content.show {
  margin-left: 17rem;
  width: 88%;
}
.padd {
  padding: 8px 0px !important;
}
div.ex1 {
  background-color: #ece3cf;
  height: 50vh;
  width: 68%;
  overflow-y: scroll;
}
.textright{
  text-align: right;
}
.table--container {
  margin: 0rem;
  width: 100%;
}
.clintprofile{
  margin: 0.9rem 0.5rem;
}

.lableright{
  margin-left: 10px;
  font-weight: bold;
}
.xlbtton{
  background-color: #da9917;
}
.view_Edit{
  color: #da9917;
  border: none;
}
.action, .call{
  color: #da9917;
}
.orderformbtn{
  padding: 1rem 6.5rem;
}
.pointer {
  cursor: pointer;
}
.textEnd{
  text-align: end;
}
.mrgleft{
  margin-left: 22%;
}

/* --------------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
  width: 93%;
  padding: 2.5rem;
  margin: auto;
  padding-top: 2.5rem;
  grid-row-gap: -1rem;
  grid-column-gap: 3.5rem;
}
.table {
  width: 100%;
  background: #fff;
  /* padding: 0 0 0 6.5rem; */
  border-radius: 1rem;
}
/* dataTables Search input box */
 
.dataTables_filter {
  position: relative;
}

.dataTables_filter input {
  width: 200px;
  height: 32px;
  background: #fcfcfc;
  border: 1px solid #aaa;
  border-radius: 5px;
  box-shadow: 0 0 3px #ccc, 0 10px 15px #ebebeb inset;
  text-indent: 10px;
}

.dataTables_filter .fa-search {
  position: absolute;
  top: 10px;
  left: auto;
  right: 10px;
}
/* Assuming you're using Font Awesome for the search icon */
.dataTables_filter input[type="search"] {
  padding-left: 30px; /* Adjust this value to set the space for the icon */
  background-image: url("../../upload/pngtree-vector-search-icon-png-image_966647.jpg"); 
  background-size: 16px; 
  background-repeat: no-repeat;
  background-position: 5px center; 
  text-align: center;
}
thead input {
  background: #fcfcfc;  
  border: 1px solid #da9917;
}
.form__inputsmall {
  width: 70%;
  display: block;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  border: none;
  border: 1px solid transparent;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.padd10{
  padding: 10px;
}
/* image zooming popup */
.popup-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
}

.popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.popup-image {
  max-width: 70%;
  max-height: auto;
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 20px;
  color: white;
  cursor: pointer;
}

.flex{
  display: flex;
}
.currency-input {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ccc;
  width: 100%;
  border-radius: 4px;
}

.currency-select {
  padding: 11px 0px;
}

.value-input {
  border: none;
  /* background: transparent; */
  /* font-size: 16px; */
  flex: 1;
  /* margin-left: 5px; */
  outline: none;
}
.remark{
  /* display: flex; */
  width: 100%;
  justify-content: space-around;
  margin-bottom: 10px;
}
.margAuto{
  margin: auto;
}
.rewidth{
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 15px;
}
.form__input_remark {
  display: block;
  padding: 1rem 1.5rem;
  /* border-radius: 2rem; */
  border: none;
  border: 1px solid transparent;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); */
}
.callnotes{
 width: 100%;
}
.dispHide{
  display: none;
}
.harizondel{
  margin: 1rem 0;
}
.btn-invoice{
  display: inline-block;
  background: #da9917;
  color: #000;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: 560;
}
.red{
  color: red;
}
.black{
  color: rgb(12, 12, 12);
}
.green{
  color: green;
}
.width100{
  width: 100%;
}
.primary {
  color: var(--primary-color);
}
.cell {cursor: cell;}
.alin-cntre{
  text-align: center;
}
.alin-left{
  text-align: left
}

/* from to datpicker */
.date-picker{
  margin-left:2px;
}