:root {
  --main-gradient: linear-gradient(90deg, #258ECF, #3B8F50);
  --secound-gradient: linear-gradient(90deg, #3B8F50, #258ECF);
  --radius: .25rem;
  --main-color: #24276B;
  --light-blue: #5B70DD;
  --grey: #585252;
  --light-grey: #D9D9D9;
  --black: #000000;
  --light-black: #333333;
  --border-color: rgba(0, 0, 0, .125);
  --placeholder-color: #95959D;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.text-white{
  color: var(--white);
}
.text-anywhere{
  word-wrap: anywhere;
}
.height-36{
  height: 36px;
}
.w-40 {
  width: 40% !important;
}
.fs-14{
  font-size: 14px;
}
.w-60 {
  width: 60% !important;
}

@keyframes jelly {
  0% {
    transform: translateY(0) scale(0.7);
    opacity: 0;
  }

  70% {
    transform: translateY(5px) scale(1.05);
    opacity: 1;
  }

  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

#fyd-toast-container {
  z-index: 9999;
}

#fyd-toast-container .fyd-toast {
  box-shadow: 0 4px 15.36px 0.64px rgba(0, 0, 0, 0.1),
    0 2px 2px 0 rgba(0, 0, 0, 0.12);
  -webkit-animation: jelly 0.5s ease-in-out;
  animation: jelly 0.5s ease-in-out;
  transform-origin: center top;
}

.custom-toast {
  background: #ffffff;
  box-shadow: 0 5px 5px var(--main-gradient);
  border: 1px solid rgba(240, 193, 125, 0.4);
  border-left: 5px solid red;
  padding: 15px;
}

.btn-close {
  color: red;
}

.toasty-danger.custom-toast {
  border-left-color: red !important;
}

.toasty-danger .custom-toast-header {
  color: red !important;
  border-color: red !important;
}

.toasty-success.custom-toast {
  border-left-color: #01da67 !important;
}

.toasty-success .custom-toast-header {
  color: green !important;
  border-color: #01da67 !important;
}

/* fyd-toast-container  */
.delete-popup {
  border: 2px solid red;
  padding: 10px;
  position: absolute;
  top: 0;
  right: 30px;
  background-color: #fff;
}

.add-list-popup {
  width: 100%;
  height: 100vh;
  position: fixed;
  background-color: #2222226e;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
}

.add-list-popup-box {
  width: auto;
  float: left;
  background-color: #fff;
  padding: 20px;
}

.todo-box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.todo-body {
  width: 100%;
  float: left;
  background-color: var(--white);
  overflow: auto;
  height: 100%;
  padding: 10px;
}

.todo-mainbox {
  text-align: left;
  justify-content: flex-start;
}

iconify-icon {
  cursor: pointer;
}

.todo-list-add {
  width: 100%;
  float: left;
  border: 1px solid var(--border-color);
  height: 100%;
  overflow: auto;
}

.search-bar,
.add-box,
.gradient-border {
  display: flex;
  /* gap: 10px; */
  align-items: center;
  flex-direction: column;
  border: 2px solid transparent;
  border-radius: 4px;
  background: linear-gradient(to right, white, white), var(--main-gradient);
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  position: relative;
}

.table-gradient-border {
  border: 1px solid transparent;
  background: linear-gradient(to right, white, white), var(--main-gradient);
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
}

.search-bar input {
  border: none;
  outline: none;
  padding-right: 50px;
}

.input {
  min-height: 100%;
}

.search-bar .search-icon iconify-icon {
  position: absolute;
  top: 0;
  right: 7px;
  min-height: 100%;
  display: flex;
  align-items: center;
  z-index: 9;
}

.add-box {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-direction: row;
  min-height: 100%;
  padding: 13px 10px;
  cursor: pointer;
  height: 36px;
}

.add-box iconify-icon,
.add-box span {
  font-size: 14px;
}

.added-list {
  padding: 15px;
}

.input-icon {
  position: absolute;
  top: 50%;
  left: 10px;
  font-size: 18px;
  color: grey;
  transform: translate(0%, -10px);
}

.payment-box,
.payment-center,
.payment-container {
  width: 100%;
  float: left;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.payment-center {
  height: 100%;
  justify-content: space-between;
  padding: 30px 0;
}

.payment-container {
  height: 100%;
  justify-content: start;
  margin-top: 40px;
}

.modal-title,
.sidebar-list li span {
  background: var(--main-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modal-footer.button {
  flex-wrap: nowrap;
  border-top: none;
}

.icon-color iconify-icon,
.icon-color g,
.icon-color span,
.text-gredient {
  background: var(--main-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #258ECF !important;
}
.text-primary{
  color: #258ECF !important;
}
.tab-sticky{
  position: sticky;
  top: 0;
  z-index: 1;
  background: #fff;
}

.todo-main-box.gradient-border {
  padding: 15px 0;
  height: 75vh;
  overflow: auto;
}

.todo-main-box.gradient-border>div {
  width: 100%;
}

.todo-body .container {
  height: 100%;
}

.list-add-box .search-bar {
  width: 100%;
}

.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.list-add-box .add-box {
  width: auto;
  white-space: nowrap;
}

.p-GridCell--4 {
  width: 50% !important;
}

/* profile page css -------------- */
.profile {
  width: 100%;
  float: left;
}

.profile-image {
  height: auto;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  box-shadow: 0px 4px 8px gray;
  overflow: hidden;
  width: 100%;
}

.profile-input input {
  border-radius: 4px;
}

.profile-image img,
.event-image img {
  object-fit: cover;
  height: 100%;
  max-height: 100px
}

.profile-btn {
  display: flex;
  gap: 0.75rem;
  justify-content: end;
  width: 100%;
}

.profile-btn.button .cancel-btn,
.profile-btn.button .submit-btn {
  float: right;
  width: 120px;
}
.profile-btn.button .cancel-btn button,
.profile-btn.button .submit-btn button{
  height: 36px;
}
.border-line{
  position: relative;
}
.border-line .line-color {
  width: 50px;
  height: 3px;
  background-color: #258ECF;
  position: absolute;
  bottom: -2px;
}

.profile-content {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0 0 .25rem .25rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, .125);
  overflow: hidden;
}

.payment-center .button .submit-btn {
  width: 200px;
}

.sidebar-body-bottom.sidebar-body-head {
  overflow: inherit;
}

.dashboard-body {
  overflow: auto;
}

.verification-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100vw;
}

.card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.verification-icon {
  font-size: 64px;
  margin-bottom: 20px;
}

.success-text {
  color: #28a745;
}

.error-text {
  color: #dc3545;
}


.payment-center .button .submit-btn {
  width: 200px;
}

.sidebar-body-head {
  overflow: auto;
}

.dashboard-body {
  overflow: auto;
}

.fc-event {
  cursor: pointer;
}

.event-image {
  max-width: 100px;
  min-width: 100px;
  /* height: 100%; */
  border-radius: 10px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-image img {
  max-height: 100px;
  height: auto;
  width: auto;
  object-fit: cover;
}


.event .event-content {
  border: 1px solid var(--border-color);
  min-height: 100%;
}

.event-text .icon iconify-icon {
  font-size: 1rem !important;
}

.border-radius {
  border-radius: 4px !important;
}

.event-name h5 {
  color: #000000;
  font-size: 24px;
  font-weight: 600;
}

.event-add-name p {
  color: var(--light-black) !important;
  font-size: 14px;
}

.event-time p {
  color: var(--light-black);
  font-size: 18px;
  font-weight: 500;
}

.calculate-height {
  height: calc(100vh - 65px);
  overflow: auto;
}

.calculate-width {
  width: calc(100vw - 250px) !important;
}

.only-icon-show+.calculate-width {
  width: calc(100vw - 70px) !important;
}

.icon {
  width: 25px;
  height: 25px;
  display: flex;
  min-height: 25px;
  align-items: center;
}

.header {
  background: var(--secound-gradient);
}

.header-content .logos img {
  width: auto !important;
}

.back-button a,
.forward-button a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-content {
  padding: 15px 0;
  height: 65px;
}

.header {
  height: 65px;
}

.sign-up-content {
  height: 100vh;
}

.payment-box.calculate-height {
  overflow: inherit;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
}

#app {
  width: 100%;
  float: left;
  height: 100vh;
  background: var(--white);
  overflow: auto;
}

.test-color {
  color: var(--main-color);
}

ul,
li {
  position: relative;
  margin: 0;
}

li {
  margin-bottom: 10px;
}

img {
  width: 100%;
  float: left;
}

.submit-btn button,
.cancel-btn button {
  width: auto;
  border-radius: var(--radius);
  transition: .4s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  outline: none;
  border: 1px solid transparent;
}


p {
  font-size: 14px;
  color: var(--black);
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

h2 {
  font-size: 26px;
  color: var(--main-color);
  font-weight: 600;
  margin-bottom: 10px;
}

h4 {
  color: var(--light-black);
  font-weight: 400;
  font-size: 18px;
}

.check-box-input {
  display: flex;
  gap: 10px;
  align-items: center;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 10px 5px;
}

input:focus {
  outline: none;
}

input[type="checkbox"] {
  width: 20px !important;
  height: 20px;
}

::placeholder {
  color: var(--placeholder-color);
}


.hand {
  cursor: pointer;
}

/* login page */

.login-page {
  height: 100vh;
  background-position: bottom;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.login-left-box {
  height: 100vh;
  float: left;
  background: url("../images/login-bg.png");
  background-size: cover;
}

.main-logo {
  width: 230px;
  float: left;
  padding-left: 40px;
  padding-top: 40px;
}

.login-right-content {
  padding: 0 !important;
}

.login-heading h2 {
  font-size: 36px;
}

.login-content {
  height: 100vh;
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 6rem;
  gap: 20px;
  position: relative;
  z-index: 3;
  background-color: #ffffff;
}


.login-content .input-box {
  display: flex;
  flex-direction: column;
  gap: 15PX;
  align-items: flex-start;
  width: 100%;
}

.login-content .input-box .input {
  width: 100%;
  float: left;
  position: relative;
}

.login-content .input-box a,
.sign-in a {
  text-decoration: none;
}

.login-content .input-box a:hover,
.sign-in a:hover {
  text-decoration: underline;
}

.submit-btn button {
  color: var(--white);
  width: 100%;
  float: left;
  font-weight: 600;
  transition: .4s;
  background: var(--main-gradient);
}

.submit-btn button:hover {
  background: var(--white);
  color: #24276B;
  border: 1px solid var(--border-color);
}

.cancel-btn button {
  color: var(--black);
  font-weight: 600;
}
.btn-tab{
  color: var(--light-blue);
  width: 100%;
  float: left;
  font-weight: 600;
  transition: .4s;
  background: var(--white);
  border: 1px solid var(--light-blue);
  border-radius: 50px;
  width: 200px;
  height: 40px;
}
.btn-tab.active{
  color: var(--white);
  transition: .4s;
  background: var(--main-gradient);
}
/* .btn-tab{
  color: var(--white);
  width: 100%;
  float: left;
  font-weight: 600;
  transition: .4s;
  background: var(--main-gradient);
} */

.login-content span {
  color: #24276B;
  cursor: pointer;
}

.login-content .sign-in p {
  font-size: 18px;
  text-align: center;
  width: 100%;
  display: inline-block;
}

.input svg {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translate(-50%, -10px);
  color: var(--placeholder-color);
  font-size: 20px;
}

.login-content .input-box input {
  padding-left: 40px;
}

.login-image {
  height: 100%;
  display: none;
  border-radius: 0 0 20px 20px;
}

.login-image img {
  border-radius: 0 0 20px 20px;
}

.login-logo {
  display: none !important;
}


/* select plan */
.select-box {
  box-shadow: 0 10px 10px var(--placeholder-color);
  border-radius: var(--radius);
  padding: 20px 30px;
}

.select-box .image {
  height: 160px;
  overflow: hidden;
  width: 100%;
  float: left;
  border-radius: 0 0 20px 20px;
}

.cancel-btn button {
  color: var(--light-blue);
  width: 100%;
  float: left;
  font-weight: 600;
  transition: .4s;
  background: var(--white);
  border: 1px solid var(--light-blue);
}

.cancel-btn button:hover {
  background: var(--main-gradient);
  color: var(--white) !important;
  border: 1px solid transparent;
}


.select-box h3 {
  margin: 10px 0;
  width: 100%;
  font-size: 22px;
  float: left;
  color: var(--main-color);
}

.select-box li span {
  vertical-align: top;
  width: 12px;
  min-width: 12px;
  height: 12px;
  border-radius: 15px;
  background-color: var(--light-grey);
  float: left;
}

.select-box li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  align-items: baseline;
  width: 100%;
}

.select-box-bottom p span {
  font-weight: 500;
}

.select-box-bottom p {
  font-size: 18px;
}

.select-box-head h2 {
  margin: 10px 0;
  font-weight: 500;
}

.select-plan-box {
  width: 100%;
  float: left;
  margin: 20px 0;
}

.back-btn {
  width: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.back-btn iconify-icon {
  color: var(--white);
  font-weight: 700;
  font-size: 22px;
}

.select-plan-header {
  width: 100%;
  float: left;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 5;
  min-height: 50px;
  max-height: 50px;
  background: var(--main-gradient);
  padding: 15px 0;
}











.select-cart .icon {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
}

.select-cart .cart {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 1;
  padding: 18px 22px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  box-shadow: 0 16px 16px 0 #ddd;
  background-color: var(--white);
}

.data-not-found {
  width: 100%;
  min-height: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  /* border: 1px solid #ddd; */
}

.select-cart .arrow {
  text-align: right;
  cursor: pointer;
}

.cart-box .select-box-head h2 {
  color: var(--light-black);
}

.cart-box .select-plan-box {
  margin: 0;
  margin-bottom: 20px;
}

.almost .cart iconify-icon,
.event-text .icon iconify-icon {
  color: #5A9DE3;
  font-size: 24px;
}

.almost .cart-name h6 {
  margin-bottom: 3px;
  font-size: 18px;
}

.almost .cart-name p {
  font-size: 14px;
}

.fs-15 {
  font-size: 15px;
}

.main {
  z-index: 2;
}

.nda-head,
.nda-sign-header {
  width: 100%;
  float: left;
  min-height: 100px;
  max-height: 100px;
  text-align: center;
  height: 100px;
}

.main-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.nda-head .back-btn {
  width: auto;
  float: left;
}

.nda-head .heading {
  width: 100%;
  float: left;
  text-align: center;
}

.nda-head .heading h4 {
  color: var(--white);
  font-weight: 500;
}

.nda-sign-header {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.nda-content-box,
.nda-main-box {
  width: 100%;
  float: left;
  max-height: calc(100vh - 100px);
  height: auto;
  border-radius: 20px 20px 0 0;
  background-color: var(--white);
}

.nda-content-box {
  overflow: auto;
}

.nda-main-box {
  padding: 20px 0;
}

.nda-main-box .list ol li {
  list-style: decimal;
}

.select-plan {
  width: 100%;
  float: left;
  background-color: var(--white);
}

.complete-cart-main-box {
  padding: 0 15px;
}

.sign-complete {
  height: calc(100vh - 50px);
}

.sign-complete .main-flex {
  height: calc(100% - 50px);
}

.upload-file {
  width: 100%;
  text-align: center;
  margin: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.upload-file .file {
  max-width: 120px;
}

.upload-document-main {
  height: calc(100vh - 100px);
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.upload-file h4,
.upload-file p {
  color: var(--white);
}

.upload-document button {
  display: flex;
  align-items: center;
  gap: 8px;
}

.upload-document .button {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: end;
  flex-direction: row-reverse;
  align-items: stretch;
}

.image-type {
  color: var(--border-color);
  font-size: 12px;
  width: 100%;
  display: inline-block;
  text-align: left;
}

.document-gallery {
  font-size: 14px;
  color: var(--light-black);
}

.upload-document .button iconify-icon {
  font-size: 15px;
  font-weight: bold;
}

.upload-document .button .submit-btn,
.upload-document .button .cancel-btn {
  width: 100%;
  height: auto;
}

.upload-document .button .submit-btn button,
.upload-document .button .cancel-btn button {
  width: 100%;
  height: 100%;
}

.ein {
  height: calc(100vh - 50px);
  width: 100%;
  float: left;
  background: var(--white);
  z-index: 3;
}

.main-clac-height {
  height: calc(100vh - 50px);
}

.ein .main-flex {
  padding: 40px 15px;
}

.ein .main-flex .ein-input h2 {
  margin-bottom: 0;
}

.ein::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/Group\ 99.png");
  z-index: -1;
}

.ein-input {
  margin-bottom: 30px;
}

.select-premium-plan-box {
  width: 100%;
  float: left;
}

.select-premium-plan-box .row {
  background-color: #fff;
  --bs-gutter-x: 0 !important;
}

.select-premium-plan-box .cancel-btn,
.select-premium-plan-box .submit-btn {
  padding: 0 !important;
  border-radius: var(--radius);
  box-shadow: none !important;
  width: 200px;
}

.choose-plan-btn {
  width: 100%;
  float: left;
  padding: 10px;
  /* box-shadow: 0 5px 5px #ddd; */
  position: sticky;
  top: 0px;
  left: 0;
  z-index: 9;
  background-color: var(--white);
}

.choose-plan-btn .cancel-btn,
.choose-plan-btn .submit-btn {
  width: 100%;
  float: left;
  width: 100%;
  float: left;
  padding: 10px;
  box-shadow: 0 5px 5px #ddd;
  position: sticky;
  top: 0px;
  left: 0;
  z-index: 9;
  background-color: var(--white);
}

.dashboard {
  width: 100%;
  float: left;
}

.dashboard-header,
.dashboard-head {
  width: 100%;
  float: left;
  min-height: 65px;
  max-height: 65px;
  height: 65px;
  background: var(--main-gradient);
}

.dashboard-head>.dashboard-header-content {
  display: flex;
  height: 100%;
  text-align: center;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  color: var(--white);
}

.dashboard-head>.dashboard-header-content .dashboard-heading {
  text-align: center;
  width: 100%;
  float: left;
}

.dashboard-head>.dashboard-header-content h4,
.dashboard-head>.dashboard-header-content iconify-icon {
  color: #fff !important;
}

.dashboard-body {
  height: calc(100vh - 80px);
  background-color: #fff;
  width: 100%;
  float: left;
}

.dashboard-box,
.todo-mainbox {
  width: 100%;
  float: left;
  min-height: 100%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  border: 2px solid transparent;
  border-radius: 4px;
  background: linear-gradient(to right, white, white), var(--main-gradient);
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
}


.dashboard-body-content {
  width: 100%;
  display: inline-block;
  /* padding: 20px 0; */
  height: 100%;
  overflow: auto;
}

.dashboard-body-content .container {
  height: 100%;
}

.dashboard-box .box-text p {
  color: var(--black);
  margin-top: 10px;
  font-weight: 600;
}

.sidebar {
  width: 100%;
  float: left;
  min-width: 265px;
  background-color: #fff;
  border-right: 1px solid var(--border-color);
  box-shadow: 10px 0 5px -2px #888;
}

.sidebar-head {
  width: 100%;
  float: left;
  height: 100px;
  background: url("../images/side-header.jpg");
  background-position: center, center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: end;
}

.sidebar-head::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  float: left;
  height: 100%;
  content: "";
  background: #0000009c;
}

.sidbar-head-content {
  width: 100%;
  padding: 15px;
  float: left;
  position: relative;
  z-index: 2;
}

.user-name h5,
.user-name p,
.close-btn iconify-icon {
  color: #fff !important;
  font-weight: 600;
}

.profile-logo {
  width: 40px;
  height: 40px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
}

.close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-close {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidebar-block.sidebar-bg {
  opacity: 1;
  left: 0;
  transition: all 0.5s;
}

.sidebar-body-head li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  width: 100%;
  border-radius: 2px;
}

.sidebar-body-head li a {
  padding: 10px;
  width: 100%;
  position: relative;
}

.sidebar-body-head li a::after {
  position: absolute;
  top: 18px;
  right: 10px;
  width: 10px;
  height: 10px;
  background: var(--main-gradient);
  border-radius: 10px;
  content: "";
  visibility: hidden;
}

.sidebar-body-head li a:hover::after {
  visibility: visible;
}

.sidebar-body-head li a:hover {
  box-shadow: 0 4px 4px #eee;
}

.sidebar-body-head li a.active::after {
  visibility: visible;
}

.sidebar-body-head li a.active {
  box-shadow: 0 4px 4px #eee;
}

.only-icon-show ul li a::after {
  display: none;
}

.sidebar-body-head li span:first-child {
  display: flex;
  align-items: center;
}

.sidebar-body-head ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  /* gap: 17px; */
}

.sidebar-body-head li iconify-icon {
  font-size: 20px;
  color: var(--black);
}

.sidebar-body-head li span {
  font-weight: 500;
}

.sidebar-body {
  width: 100%;
  float: left;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: calc(100vh - 65px);
}

.sidebar-body-head {
  width: 100%;
  float: left;
  padding: 15px;
}

.sidebar-body-bottom {
  border-top: 1px solid var(--border-color);
}

.sidebar-body-head li iconify-icon {
  font-size: 22px
}

.sidebar-list> ul li {
  cursor: pointer;
  list-style: none;
}

.sidebar-list .side-link {
  color: inherit;
  text-decoration: none;
  display: flex;
}

.sidebar-list .side-link>span:first-child {
  margin-right: 10px;
}

.todo-box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.added-list {
  padding: 15px;
}

/* fyd-toast-container  */
@-webkit-keyframes jelly {
  0% {
    transform: translateY(0) scale(0.7);
    opacity: 0;
  }

  70% {
    transform: translateY(5px) scale(1.05);
    opacity: 1;
  }

  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes jelly {
  0% {
    transform: translateY(0) scale(0.7);
    opacity: 0;
  }

  70% {
    transform: translateY(5px) scale(1.05);
    opacity: 1;
  }

  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

#fyd-toast-container {
  z-index: 9999;
}

#fyd-toast-container .fyd-toast {
  box-shadow: 0 4px 15.36px 0.64px rgba(0, 0, 0, 0.1),
    0 2px 2px 0 rgba(0, 0, 0, 0.12);
  -webkit-animation: jelly 0.5s ease-in-out;
  animation: jelly 0.5s ease-in-out;
  transform-origin: center top;
}

.custom-toast {
  background: #ffffff;
  box-shadow: 0 5px 5px var(--main-gradient);
  border: 1px solid rgba(240, 193, 125, 0.4);
  border-left: 5px solid red;
  padding: 15px;
}

.btn-close {
  color: red;
}

.toasty-danger.custom-toast {
  border-left-color: red !important;
}

.toasty-danger .custom-toast-header {
  color: red !important;
  border-color: red !important;
}

.toasty-success.custom-toast {
  border-left-color: #01da67 !important;
}

.toasty-success .custom-toast-header {
  color: green !important;
  border-color: #01da67 !important;
}

/* fyd-toast-container  */
.delete-popup {
  border: 2px solid red;
  padding: 10px;
  position: absolute;
  top: 0;
  right: 30px;
  background-color: #fff;
}

.add-list-popup {
  width: 100%;
  height: 100vh;
  position: fixed;
  background-color: #2222226e;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
}

.add-list-popup-box {
  width: auto;
  float: left;
  background-color: #fff;
  padding: 20px;
}

.dashboard {
  height: calc(100vh - 100px);
}


.todo-box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.b-bottom {
  border-bottom: 1px solid var(--border-color);
}

.list-add-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.shadow {
  box-shadow: 0 4px 8px rgba(0, 0, 0, .15) !important;
}

.search-bar input {
  border: none;
  outline: none;
  padding-right: 50px;
}

.added-list {
  padding: 15px;
}

.input-icon {
  position: absolute;
  top: 50%;
  left: 10px;
  font-size: 18px;
  color: grey;
  transform: translate(0%, -10px);
}

.dashboard-box,
.todo-mainbox .payment-box {
  height: 100% !important;
}

.payment-center {
  height: 100%;
  justify-content: space-between;
  padding: 30px 0;
}

.payment-container {
  height: 100%;
  justify-content: start;
  margin-top: 40px;
}

.modal-footer.button {
  flex-wrap: nowrap;
  border-top: none;
}

.todo-main-box.gradient-border {
  padding: 15px 0;
  height: 75vh;
  overflow: auto;
}


.loader {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.p-GridCell--4 {
  width: 50% !important;
}


/* profile page css -------------- */

.profile {
  width: 100%;
  float: left;
}

.profile-input input {
  border-radius: 4px;
}

.payment-center .button .submit-btn {
  width: 200px;
}

.sidebar-body-head {
  overflow: auto;
}

.dashboard-body {
  overflow: auto;
}

.verification-icon {
  font-size: 64px;
  margin-bottom: 20px;
}

.success-text {
  color: #28a745;
}

.error-text {
  color: #dc3545;
}


.payment-center .button .submit-btn {
  width: 200px;
}

.sidebar-bg {
  transition: none;
}

.dashboard-body {
  overflow: auto;
}

.event-content {
  border-bottom: 1px solid var(--border-color);
  /* padding: 10px 0; */
}

.event-address .icon,
.event-date .icon {
  width: auto;
  height: auto;
}

.header {
  background: var(--secound-gradient);
}

/* .header-content {
  padding: 15px 0;
  height: 100px;
} */

/* .header {
  height: 100px;
} */

.sign-up-content {
  height: 100vh;
}

.payment-box.calculate-height {
  overflow: inherit;
}

.select-plan-box {
  height: 100%;
  min-height: fit-content;
  margin: 0;
  padding: 20px 0;
}

.plan-list {
  display: flex;
  justify-content: space-between;
  height: calc(100% - 220px);
  width: 100%;
  float: left;
  flex-direction: column;
}

.Background-button .submit-btn {
  width: 200px;
  float: right;
}

.badge {
  line-height: inherit !important;
}

span.badge.bg-success {
  height: max-content;
  /* padding: 0 2px !important; */
}

.select-box-head+form {
  padding: 20px 0;
  width: 100%;
  float: left;
}

.cart-box .select-plan-box {
  padding-top: 0 !important;
}

.dass-content {
  padding: 20px;
}

.key-icon {
  font-size: 22px;
}


.small-logo {
  position: absolute;
  bottom: 0;
  text-align: center;
  left: 45%;
  transform: translate(0, 40%);
  z-index: 4;
  width: 70px;
  display: none;
}



.view-password {
  float: left;
  position: absolute;
  top: 13px;
  right: 10px;
}

.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.small-sidebar {
  max-width: 265px;
}


.select-premium-plan-box.calculate-height .row .select-box {
  box-shadow: none;
  border-radius: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}

.select-premium-plan-box.calculate-height .border-right-none .plan-box-border {
  border-right: none;
}

.select-premium-plan-box.calculate-height .border-right-none .plan-box-border,
.border-left-none .select-plan-box {
  padding: 20px 30px;
}

.select-tab {
  /* border: 1px solid var(--border-color); */
  border-bottom: none;
  background-color: #ffffff;
  margin-bottom: 20px;
}

.plan-list {
  height: 100%;
  justify-content: start;
}

.select-premium-plan-box .row {
  --bs-gutter-x: 0 !important;
}

.select-tab button {
  border-radius: 50px;
}

.select-box-head h2 {
  margin: 0 !important;
  font-weight: 500;
  text-align: center;
}

.select-box h3 {
  font-size: 18px;
}

.plan-heading {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.plan-box-border {
  border: 1px solid var(--border-color);
}

.right-plan-box-border {
  border-left: 1px solid var(--border-color);
}

.premium-box-main {
  padding: 40px 0;
  width: 100%;
  float: left;
}
.premium-box{
  border-left: 1px solid var(--border-color);
}
.premium-box .premium-header{
  flex: 1;
}

.select-box .image {
  display: none;
}

.plan-list,
.plan-button {
  padding: 20px;
}

@media screen and (max-width:576px) {
  .plan-heading {
    margin-top: 0;
  }

  .responsive_none {
    display: none;
  }

  /* .btn_height {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  } */

  .directory-details .card .directory-image {
    height: 300px !important;
  }
  .flex-wrap-xs{
    flex-wrap: wrap;
  }
  .w-100-xs{
    width: 100%;
  }
}

/* grid css */

#app {
  display: grid;
  grid-template-areas: 'header header header header header header' 'side-bar body body body body body' 'login login login login login login' 'full-width full-width full-width full-width full-width full-width';
}

.full-width {
  grid-area: full-width;
}

.sidebar-block {
  grid-area: side-bar;
  width: 100%;
  float: left;
}

.login-page {
  grid-area: login;
  width: 100vw;
}

.select-plan {
  width: 100vw;
}

.dashboard {
  grid-area: body;
  background: #fff;
  width: calc(100vw - 250px);
}

.only-icon-show+div {
  width: calc(100vw - 70px);
}

.dashboard-header {
  grid-area: header;
}

.sidebar-bg {
  position: relative !important;
  overflow-x: auto;
  width: 250px;
  border-left: 1px solid var(--border-color);
  box-shadow: 4px 0 20px -4px grey;
}

.sidebar {
  min-width: auto;
  min-height: 100%;
}

.sidebar-block.only-icon-show .sidebar-body-head li span:last-child {
  display: none;
  max-width: 70px;
  transition: all 0.5s;
}

.sidebar-block.only-icon-show {
  max-width: 70px;
}

.sidebar-block .sidebar-head {
  display: none;
}

.only-icon-show .sidebar-list .side-link>span:first-child {
  margin-right: 0;
}

.logos {
  width: 250px;
}

.header-logo {
  max-width: 150px;
}

.event {
  width: calc(100vw - 250px) !important;
}

.only-icon-show+.event {
  width: calc(100vw - 70px) !important;
}

.directory .event-add-name p {
  font-weight: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
}
.word-wrap-anywhere{
  word-wrap: anywhere;
}
.calculate-height.event.directory.bg-white {
  padding: 20px 0;
}

.directory .event-content {
  padding: 10px;
  border: 1px solid var(--light-grey);
  border-radius: 4px;
  box-shadow: 0 0 5px #eee;
}

.directory .schedule-button {
  border: 1px solid var(--border-color);
  padding: 0px 10px;
  border-radius: 4px;
  float: right;
  margin-top: 10px;
  width: auto;
}

.directory .event-name h5 {
  font-size: 16px;
}

.profile {
  width: calc(100vw - 250px);
}

.event-text {
  width: 100%;
  display: flex;
  /* justify-content: space-between; */
  flex-direction: column;
}

.event-text button {
  font-size: 12px;
}

.directory-details .card {
  border-radius: 0;
  flex-direction: row;
  box-shadow: none;
  border: none;
}

.directory-details .card .directory-image {
  width: 50%;
  float: left;
  overflow: hidden;
}

.directory-details .card .directory-image img {
  width: 100%;
  height: 100%;
}

.directory-details .card .event-name {
  text-transform: capitalize;
  font-weight: bold;
}

.directory-details .card .directory-event-name {
  display: flex;
  align-items: self-start;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}

.directory-details .card .directory-event-name h5 {
  font-size: 18px;
  text-wrap: nowrap;
}

.directory-details .event-name {
  border-bottom: 1px solid var(--border-color);
}

.directory-details .directory-back-btn .button {
  position: absolute;
  top: 0;
  left: 12px;
  z-index: 1;
  border-radius: 0;
}

.directory-details .button button {
  border-radius: 4px;
}

.event-box button {
  width: auto;
}


.main-content,
.directory {
  width: 100%;
  float: left;
  min-width: calc(100vw - 250px);
}

.meeting .nav.nav-tabs li {
  margin: 0 50px;
}


.meeting-tab-content {
  height: calc(100vh - 150px);
  width: 100%;
  padding: 10px 0;
}

.tab-content {
  border: 1px solid var(--border-color);
  height: 100%;
  padding: 15px;
  overflow-y: auto;
}

.offset-md-3 {
  margin-left: 0 !important;
}



.nav-tabs .nav-item.show .nav-link::after,
.nav-tabs .nav-link.active::after {
  background: #258ECF;
  z-index: 99;
}

.nav-tabs .nav-item.show .nav-link::before,
.nav-tabs .nav-link.active::before {
  background: #3a8f55;
  z-index: 99;
}



.event-details {
  height: calc(100vh - 130px);
}

.event-details .row {
  --bs-gutter-x: 0 !important;
}

.modal.event-popup.fade .image {
  max-height: 250px;
  overflow: hidden;
  background: #f3f2f2;
  min-height: 150px;
}
.modal.event-popup.fade .image img{
  max-width: 100%;
   object-fit: contain;
}

.event-popup .date-icon iconify-icon {
  color: var(--main-color);
}

.event-popup .modal-dialog {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  margin: auto;
}

.event-popup .modal-header button {
  border-radius: 4px;
}

.handbook-content {
  min-height: 100%;
}

.handbook {
  padding: 15px 0;
}

.handbook {
  min-width: calc(100vw - 250px);
}

.only-icon-show.sidebar-block.small-sidebar.sidebar-bg+.handbook {
  width: calc(100vw - 70px) !important;
}

.profile-input label,
.profile-name label {
  font-weight: 600;
}

.pd-15 {
  padding: 15px 0;
}

.alert {
  padding: 10px;
  margin-bottom: 0;
}

.referra-body {
  width: 100%;
  float: left;
  height: calc(100vh - 200px);
  /* padding: 15px; */
  border: 1px solid #ddd;
}

.referrals.data-not-found {
  height: calc(100vh - 275px);
}

.referral-body-head {
  border-bottom: 1px solid #ddd;
}

.raffer-body-body {
  padding: 15px;
}

.raffer-body-body .event-text {
  justify-content: flex-start;
  gap: 3px;
}

.alert.alert-success {
  text-wrap: nowrap;
}

/* .raffer-code{
  overflow: auto;
} */
.raffer-code {
  padding: 10px 0;
  overflow-y: auto;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: end;
}

.raffer-code-box .input-group {
  flex-wrap: nowrap;
}

.raffer-code-box .form-control {
  min-width: 150px;
}

.raffer-code-box .submit-btn button {
  border-radius: 0 3px 3px 0;
}

.hand-book-path {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: anywhere;

}

.event-popup .modal-dialog-scrollable .modal-body{
  overflow: auto;
  max-height: 400px;
}

.participate-image {
  width: 40px;
  display: block;
  border-radius: 50%;
  overflow: hidden;
  height: 40px;
}

.event-content .event-time p {
  font-size: 14px;
}
.upload-image-card{
  color: var(--light-blue);
  width: 100%;
  background: var(--white);
  border: 1px solid var(--light-blue);
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}
.page-not-found {
  min-width: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
}

.page-not-found img {
  width: 50%;
}

.view-container {
  width: 100%;
  padding: 20px 15px;
}

.view-container .view {
  display: flex;
  -moz-column-gap: 20px;
  column-gap: 20px;
}

.view-container .view .view-section {
  font-size: 16px;
  width: 50%;
}

.view-container .view .view-section .secton-title {
  font-size: 18px;
  color: #8e8e8e;
  padding: 15px 0;
  border-bottom: 1px solid hsla(0, 0%, 63.5%, 0.2);
}

.view-container .view .view-section .section-content {
  display: block;
  padding: 20px 0;
  padding-left: 20px;
}

.view-container .view .view-section .section-content .row {
  display: block;
  padding: 3px 0;
}

.view-container .view .view-section .section-content .row .title {
  width: 200px;
  color: #868e96;
  letter-spacing: -0.26px;
  display: inline-block;
}

.view-container .view .view-section .section-content .row .value {
  color: #3a3a3a;
  letter-spacing: -0.26px;
  display: inline-block;
}

.todo-mainbox {
  width: 100%;
  float: left;
  padding: 0 !important;
  border-radius: 4px;
  text-align: left;
  justify-content: flex-start;
  border: 1px solid var(--border-color);
}

.modal-content {
  max-height: 90% !important;
}
.modal-content textarea{
  max-height: 200px;
}

.admin-dashboard .card {
  border-radius: 4px;
}

.table>:not(:last-child)>:last-child>* {
  border-bottom: 1px solid #dee2e6;
}

.table.border.table-hover.bg-white.table-scroll .hand {
  color: var(--light-black);
}

.admin-table-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.table-head {
  position: sticky;
  top: 0;
  left: 0;
}

.directory-main-box {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 100%;
}

.meeting-main-box {
  min-height: 100%;
}

.meeting-main-box iconify-icon {
  font-size: 18px;
  color: #258ECF;
}

.tab-pane.fade.active.show {
  height: 100%;
}

.view-profile-input,
.profile-input {
  width: 50%;
  float: left;
  padding: 10px;
  min-height: 100%;
  /* border-bottom: 1px solid var(--border-color); */
}

.view-profile-input {
  width: 100% !important;
}

.profile-left {
  min-width: 300px;
  width: 300px;
  /* border-right: 1px solid var(--border-color); */
  display: flex;
  align-items: center;
  padding: 1rem;
  flex-direction: column;
  gap: .8rem;
}

.profile-right,
.profile-right {
  float: left;
  height: 100%;
}

.view-profile-input label,
.profile-input-box label {
  color: var(--placeholder-color);
}

.view-profile-input p {
  font-weight: 500;
}

.profile-input-box .profile-input {
  border-bottom: none;
}

.profile-image-uplode {
  position: absolute;
  top: 0;
  opacity: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background-color: var(--white);
}

.profile-image-uplode input {
  border: none;
  cursor: pointer;
  border-top: 1px solid var(--border-color);
  height: 148px;
}

.page-header {
  padding: 10px;
  padding-top: 14px !important;
  padding-bottom: 14px !important;
  border: 1px solid var(--border-color);
  border-bottom: none;
  border-radius: .25rem .25rem 0 0;
  width: 100%;
  float: left;
  background: #eeeeee4d;
  box-shadow: 0 2px 7px #ddd;
}

.profile-input textarea {
  width: 100%;
  border: 1px solid var(--border-color);
}

.profile-input textarea:focus,
.profile-input input:focus {
  outline: none;
  box-shadow: 0 4px 6px var(--light-grey);
}

/* .page-header h2{
  color: var(--grey);
} */

.view-profile-input,
.profile-input {
  border-color: #eeeeee7a;
}




textarea::-webkit-scrollbar {
  width: 4px;
}

textarea::-webkit-scrollbar-track {
  background: var(--white);
}

textarea::-webkit-scrollbar-thumb {
  background: var(--border-color);
}

textarea::-webkit-scrollbar-thumb:hover {
  background: var(--placeholder-color);
  cursor: pointer;
}

/* .event-detail-view-popup .date{
  width: 100%;
} */
.dash-body {
  background-color: rgb(41 143 187 / 3%);
  padding: 20px;
}

.dash-main-body {
  width: 100%;
  float: left;
  /* border: 1px solid var(--border-color); */
  padding: 10px 0;
}

.dash-main-body .card {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
  border: none;
}

.dash-body-content .page-header {
  background: #eee;
  border: none;
  padding: 1rem;
}

.dash-profile-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  min-width: 70px;
  border: 1px solid var(--border-color);
}

.card-fix-image {
  display: flex;
  justify-content: end;
}

.card-fix-image .image {
  max-width: 150px;
}

/* .client-profile{
  background: url("../../assets/images/dash-card-profile-bg.webp");
 } */

.box-icon {
  max-width: 100px;
  display: block;
}

.dash-card .card-body {
  padding: 1.7rem;
}

.box-icon .icon-color iconify-icon {
  font-size: 50px;
}

.dash-profile-bio {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.event-count {
  border-radius: 4px;
  background-color: var(--light-grey);
  height: 40px;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dash-button button {
  background: rgb(41 143 187 / 3%);
  border: 1px solid var(--light-grey);
  outline: none;
  /* margin-top: 10px; */
  border-radius: 2px;
  padding: 5px 10px;
  font-size: 12px;
}

.fc-toolbar-title,
.fc-col-header-cell-cushion,
.fc-daygrid-day-top .fc-daygrid-day-number {
  color: black !important;
}

a {
  text-decoration: none;
}

.total-count h5 {
  color: #3498db;
  margin-top: 5px;
}

.table-detail table tr td,
.table-detail table tr th {
  padding: 10px;
  white-space: nowrap;
}

.table {
  border: 1px solid #ddd;
  border-top: none;
  overflow: auto;
}

.table-detail {
  width: 100%;
  float: left;
  overflow: auto;
  /* border: 1px solid #ddd; */
  border-top: none;
  border-radius: 0 0 4px 4px;
}

.table .heading h3 {
  color: var(--main-color);
}

.table .heading {
  border-bottom: 1px solid var(--border-color);
  /* background: #ddd; */
}

/* .table-detail thead tr{
  background-color: #ddd;
} */
.table-detail thead tr th {
  background: #01da6618;
  color: #3498db;
}

.table .page-header {
  border: none;
  border-top: 1px solid #ddd;
}

.table-detail tbody tr {
  box-shadow: 0 4px 2px -2px rgb(238 238 238 / 50%) !important;
}

.table-detail thead tr {
  box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 30%) !important;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 9;
  background-color: #e7fcf0;
}

.export-button {
  border: 1px solid var(--border-color);
  padding: 5px 10px;
  border-radius: 4px;
}

.table-header tbody {
  position: sticky;
  top: 0;
  left: 0;
}

.table-head th {
  color: var(--main-color) !important;
  white-space: nowrap;
}

.table-detail {
  height: calc(100% - 56px);
}

.table-box {
  overflow: hidden;
}

select.hand {
  border: 1px solid var(--border-color);
  border-radius: 4px;
  color: var(--grey);
}

select.hand:focus {
  outline: 2px solid #258ECF;
}

.header-logo img {
  width: 100px;
}

.drawer {
  position: fixed;
  top: 65px;
  right: -100%;
  width: 350px;
  height: calc(100% -65px);
  background-color: rgb(247, 251, 252);
  border-left: 1px solid #dee2e6;
  z-index: 1030;
  overflow-x: hidden;
  transition: all 0.5s;
  box-shadow: -20px 0px 20px -20px rgba(0, 0, 0, 0.45);
}

.drawer.open {
  right: 0;
}

.message-icon iconify-icon {
  font-size: 1.5rem;
}

.drawer-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
  padding: 1rem;
  background-color: #eee;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* .drawer-head h5{
  color: var(--light-blue);
} */
.message-close-btn {
  width: 2rem;
  height: 2rem;
  border: none;
  outline: none;
  background-color: transparent;
}

.drawer-body {
  width: 100%;
  float: left;
  padding: 1rem;
  height: calc(100vh - 130px);
  overflow: auto;
}

.drawer-body .card {
  border-radius: .25rem;
}

.drawer-heading h6 {
  color: var(--main-color);
}

.drawer-body .drawer-body-box {
  margin-bottom: 1rem;
}

.drawer-body .drawer-body-box:last-child {
  margin-bottom: 0;
}

.drawer-contents {
  width: 100%;
  float: left;
  height: 99%;
}

.no-message {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.no-message iconify-icon.no-message-bell {
  font-size: 6rem;
  color: var(--light-blue);
}

.body-bg-color {
  background: rgb(239, 247, 249);
}

.c-name .profile-name {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.event-main-body,
.all-event-body {
  background-color: var(--white);
  box-shadow: 0 8px 6px -6px var(--border-color);
}

.event .data-not-found {
  padding-top: 40px;
  padding-bottom: 40PX;
}

.list-add-box.justify-content-between.align-items-end.p-2 {
  overflow: auto;
}

.profile-icon-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--white);
  background: #fff;
}
.profile-icon-img img{
  object-fit: cover;
}
.search-results-dropdown{
  position: absolute;
  width: 100%;
  box-shadow: rgb(213, 213, 213) 0px 5px 5px 1px;
  background-color: #fff;
}
.search-results-dropdown .list-group {
  border-radius: 0px;
  max-height: 250px;
  overflow: auto;
}
.search-results-dropdown .list-group-item{
  padding: .4rem 1rem;
  border: none;
  font-size: 14px;
  text-transform: capitalize;
  margin-bottom: 0px;
}
.search-results-dropdown .list-group-item:hover {
  color: var(--white);
  background: var(--main-gradient);
}
.profile-list {
  position: absolute;
  top: 80px;
  right: 10px;
  background: var(--white);
  padding: 0.8rem 0;
  white-space: nowrap;
  box-shadow: 0 0 10px grey;
  border-radius: 4px;
  z-index: 9999;
  width: 220px;
  list-style: none;
}
.profile-list ul{
  padding: 0;
}
.profile-list ul li{
  list-style: none;
}

.profile-list::after {
  content: "";
  width: 20px;
  height: 20px;
  background-color: var(--white);
  position: absolute;
  top: -10px;
  z-index: -1;
  right: 5px;
  transform: rotate(45deg);
}

.profile-list li a {
  font-weight: 600;
  padding: 0.3rem 1.5rem;
  width: 100%;
  color: #258ECF;
  float: left;
  margin: 0.2rem 0;
  transition: .2s;
  text-align: left;
}

.profile-button li a:hover {
  padding-left: 2.5rem;
  background-color: #eee;
  color: var(--main-color);
}

.logout-hover a {
  transition: 0.2s;
}

.logout-hover a:hover {
  padding-left: 2.5rem;
  background-color: #eee;
  color: var(--main-color);
}

/* .profile-icon:hover .profile-list {
  display: block;
} */


.profile-list li {
  margin: 0;
  text-align: left;
}

.toggle-profile img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0.5px solid var(--border-color);
}

.full-calender .fc .fc-toolbar.fc-header-toolbar {
  margin-bottom: 1rem;
}

/* .full-calender .fc-theme-standard td {
  background: var(--white);
}

.fc-theme-standard th {
  background: var(--white);
} */

.fc-toolbar-chunk h2 {
  font-size: 1.3rem !important;
}

.todo-task {
  border-radius: 4px;
  overflow: hidden;
}

.toggle-btn.cursor-pointer iconify-icon {
  font-size: 24px;
}
.cursor-pointer{
  cursor: pointer;
}

.b-top {
  border-top: 1px solid var(--border-color);
}

/* 
.isClosed.dashboard-header + .drawer + .sidebar-block.small-sidebar.sidebar-bg{
  width: 100px;
  overflow: hidden;
  z-index: 2;
} */
/* .isClosed.dashboard-header + .drawer + .sidebar-block.small-sidebar.sidebar-bg + div{
  min-width: calc(100vw - 100px);
} */
/* .isClosed.dashboard-header + .drawer + .sidebar-block.small-sidebar.sidebar-bg .sidebar-body-head li span:last-child{
  display: none;
} */

.meeting-body {
  height: 90%;
}

.task .page-header {
  border-bottom: 1px solid #dee2e6 !important;
}

.task .page-header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 9;
}

.task .card {
  background: #fff !important;
}

.modal-body h6 {
  color: grey;
}

.refer-table td,
.refer-table th {
  text-wrap: nowrap;
}

.text-dotted,
.text-dotted_header {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.text-dotted_header {
  -webkit-line-clamp: 1;
}

.event-icon li {
  position: relative;
  margin-bottom: 0;
}

.event-icon li span {
  position: absolute;
  top: 20px;
  right: 50%;
  transform: translate(50%, 0%);
  padding: 5px;
  background-color: #eee;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  display: none;
  min-width: 70px;
  text-align: center;
}

.event-icon li:hover span {
  display: block;
}

/* .event-icon  iconify-icon ,.event-icon a{
  color: #3498db !important;
} */
.event-icon li:first-child a {
  color: #258ECF;
}

.header-sticky {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 9;
}

.my-meeting-body .event-image {
  max-width: 100px;
}

.form-control:focus {
  outline: none;
  box-shadow: 0 4px 4px #eee;
}

.flex-1 {
  flex: 1;
}

.border-radius {
  border-radius: 4px;
}

.event-body .card {
  border-radius: 0;
  box-shadow: none;
}

.event-body .event-content {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.body-data-scroll .event-tab {
  margin-left: -1.5rem;
  margin-right: -1.5rem;
  position: sticky;
  background: #fff;
  z-index: 1;
  top: 0;
  left: 0;
}

.on-hover span {
  padding: 5px 10px;
  border-radius: 2px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: absolute;
  right: 0;
  top: 20px;
  display: none;
  background: #fff;
}

.on-hover:hover span {
  display: block;
}

.body-data-scroll {
  width: 100%;
  float: left;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-x: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.body-data-scroll::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.body-data-scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
.body-data-scroll::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
.body-data-scroll::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.directory-body {
  padding: 1.5rem;
  padding-bottom: 0;
}

.plan-change-body {
  padding: 0 12px;
}

.plan-change-section {
  display: flex;
  align-items: center;
  justify-content: center;
}

.plan-change-header .select-tab button {
  border-radius: 0;
}

.table>:not(caption)>*>* {
  box-shadow: none !important;
}

.border-left-0 {
  border-left: none;
}

.border-right-0 {
  border-right: 0;
}

.border-bottom-1 {
  border-bottom: 1px solid var(--border-color);
}






/* 
.nav-tabs .nav-link {
  border-top: 1px solid var(--light-grey) !important;
  position: relative;
  font-weight: 500;
  text-wrap: nowrap;
  border-bottom: 1px solid var(--light-grey);
}

.nav.nav-tabs {
  flex-wrap: nowrap;
  flex-direction: row;
  overflow-x: auto;
  height: 42px;
}

.nav-tabs .nav-link::after,
.nav-tabs .nav-link::before,
.nav-tabs .nav-link {
  background: #fff;
}

.nav-tabs .nav-link::after,
.nav-tabs .nav-link::before {
  width: 50px;
  height: 41px;
  position: absolute;
  content: "";
  top: -1px;
  left: -37px;
  transform: skew(-30deg, 0deg);
  border-top: 1px solid var(--light-grey);
  border-left: 1px solid var(--light-grey);
  z-index: 9;
}

.nav-tabs .nav-link::before {
  left: auto;
  right: -37px;
  border-left: none;
  border-right: 1px solid var(--light-grey);
  transform: skew(30deg, 0deg);
}

.nav-tabs .nav-link {
  border-radius: 0;
  border: none;
} 
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  background: var(--main-gradient);
  color: var(--white);
}

.nav-tabs .nav-item.show .nav-link:hover,
.nav-tabs .nav-link:hover {
  background: var(--main-gradient);
  color: var(--white);
}

.nav-tabs .nav-link:hover::after {
  background: #258ECF;
}

.nav-tabs .nav-link:hover::before {
  background: #3a8f55;
}


*/

/* .nav-tabs .nav-link{
  border: 1px solid var(--border-color);
} */
.nav-item {
  margin: 0 5px;
}



.nav-tabs .nav-link {
  border: none;
}

.subscription-btn button {
  border: none;
  background: none;
  color: #222;
  margin-right: 10px;
  padding: 10px 20px;
  background-color: #fff;
}

.subscription-btn .submit-btn button,
.subscription-btn .cancel-btn button {
  background-color: #fff;
  color: #258ECF;
  border-bottom: 3px solid transparent;
}

.subscription-btn .submit-btn:hover button,
.subscription-btn .cancel-btn:hover button {
  border: none;
  background: none;
  color: var(--main-color) !important;
  font-weight: 600;
  transition: none !important;
  border-bottom: 3px solid var(--main-color);
}

.subscription-btn .submit-btn button {
  border-bottom: 3px solid var(--main-color);
  color: var(--main-color) !important;
}

.subscription-btn .submit-btn,
.subscription-btn .cancel-btn {
  margin: 0 5px;
}


.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  border-bottom: 3px solid var(--main-color);
  font-weight: 600;
  color: var(--main-color) !important;
}

.nav-link span {
  width: 10px;
  height: 10px;
  background: #258ECF;
  border-radius: 50%;
  float: left;
  margin-right: 10px;
  margin-top: 5px;
}

.nav-tabs .nav-link.active span {
  animation: shadow-blink 1s infinite;
  background: red;
}

@keyframes shadow-blink {
  0% {
    box-shadow: 0 0 0 0px rgba(236, 43, 43, 1);
  }

  100% {
    box-shadow: 0 0 0 10px rgba(226, 67, 67, 0);
  }
}

.nav-tabs .nav-item:nth-child(2) .nav-link span {
  background: #28a745;
}

.nav-tabs .nav-item:nth-child(2) .nav-link {
  color: #28a745;
}

.nav-tabs .nav-item:nth-child(1) .nav-link span {
  background: #222;
}

.nav-tabs .nav-item:nth-child(1) .nav-link {
  color: #222;
}

.nav-tabs .nav-link.active span {
  background: red !important;
}

.upgrade-list li {
  font-weight: 500;
  margin-left: 25px;
}

.upgrade-list li span {
  width: 10px;
  margin-left: -20px;
  height: 10px;
  background: #258ECF;
  display: inline-block;
  border-radius: 50%;
  margin-right: 10px;
}

.change-plan-border {
  border-top: 5px solid var(--main-color);
}

.change-password-button {
  width: 50%;
}

/* .edit-profile-image{
  width: 100%;
} */
.edit-profile-image img {
  max-height: 200px;
}
.updated-image-view{
  height: 150px;
}
.updated-image-view img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.delete-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index:11;
}

.view-profile-input {
  min-height: auto;
}

.profile-image img {
  object-fit: contain;
}

.delete-btn iconify-icon {
  color: red;
  font-size: 1rem;
  padding: 3px;
  border: 1px solid red;
  background: var(--white);
  border-radius: 50%;
}

.Schedule-btn .cancel-btn,
.Schedule-btn .submit-btn {
  width: 100%;
}

.data-scroll {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow-y: auto;
}

.header-sticky {
  position: sticky;
  top: 0;
  left: 0;
}

.view-details {
  position: relative;
}

.view-details span {
  position: absolute;
  top: 1rem;
  white-space: nowrap;
  left: 50%;
  transform: translate(-50%, 0);
  display: none;
  z-index: 9;
  color: #24276B;
  background: #fff;
}

.view-details:hover span {
  display: block;
}

.meeting-accept-button .btn-primary {
  background: linear-gradient(90deg, #258ECF, #3B8F50) !important;
}

.dash-box-decoration {
  overflow: hidden;
}

.dash-box-decoration:after {
  position: absolute;
  right: -70px;
  bottom: -28px;
  width: 90%;
  height: 100px;
  /* border-radius: 50%; */
  /* border: 1px solid #eeeeee45; */
  background: url(../images/New\ Project.png);
  content: "";
  background-repeat: no-repeat;
  z-index: 1;
  opacity: 0.4;
}

.main-color {
  color: var(--main-color);
}

.dash-profile-detail p {
  font-weight: 500;
}

.eye-icon {
  z-index: 99;
}

.dash-calender .fc-toolbar-chunk h2 {
  color: var(--main-color) !important;
}

.dash-client-name .card {
  background: rgb(0 0 139 / 4%);
}

.dash-body .card {
  box-shadow: none;
  border: 1px solid #dee2e673;
}

.right-part {
  width: 40%;
  float: right;
}

.left-part {
  width: 60%;
  float: left;
}

.dash-profile-image .image {
  background: #eeeeee85;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dash-profile-image .image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.total-count {
  text-align: right;
}

.dashboard-calender {
  max-height: 410px;
  overflow-y: auto;
}

.meeting-tab-list ul {
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  box-shadow: 0 2px 6px #ddd;
}

.meeting-tab-list ul a {
  white-space: nowrap;
}

li.nav-item {
  margin-top: 5px;
}

.profile-dummy {
  width: 100%;
  background: url("../images/profile-bg.jpg");
  background-position: center, center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 150px;
}

.profile-name-box {
  width: 100%;
  float: left;
}

.profile-logos {
  width: 180px;
  display: inline-block;
}

.profile-image-main-box {
  max-width: 150px;
  min-width: 150px;
  max-height: 150px;
  border-radius: 8px;
  overflow: hidden;
  min-height: 150px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-image-main-box iconify-icon {
  font-size: 50px;
}
.profile-image-main-box .image{
  height: 150px;
}
.profile-image-main-box .image img{
  object-fit: cover;
  height: 100%;
}
.profile-overlay{
  background: var(--main-gradient);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.5;
}

.profile-edit-main .profile-image-main-box:hover .profile-edit-button {
  visibility: visible;
}

.profile-edit-main .profile-image-main-box {
  width: 150px;
  position: relative;
}

.profile-edit-main .profile-edit-button {
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  float: left;
  background: #dddddd91;
  z-index: 1;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
}
.profile-details ul, ol{
  padding-left: 12px;
}
.profile-details ul li, ol li{
  color: #6c757d !important;
}
.profile-details .name p {
  color: var(--placeholder-color);
}
.profile-details .name p span{
  color: var(--black);
}
.rotate{
  animation: aniicon 2s linear infinite;
}

@keyframes aniicon {
  0%{
     transform: rotate(0deg);
    }
 100%{
     transform: rotate(360deg);
    }
  }

.edit-button {
  width: auto;
  float: left;
}

.edit-button button {
  max-width: 200px;
}

.profile-top-main-box {
  position: absolute;
  top: 40px;
  left: auto;
  right: auto;
  width: 100%;
}

.w-98 {
  width: 98%;
}

.w-15 {
  width: 15%;
}

.profile-dummy .card {
  background: rgb(255 255 255 / 25%);
}

/* .profile-details .name p {
  word-break: break-all;
} */
.login-button .submit-btn button:hover {
  background: linear-gradient(270deg, #258ECF, #3B8F50);
  ;
  color: var(--white);
  /* box-shadow: 0 0 4px var(--border-color); */
}

.back-button button {
  color: var(--white);
  float: left;
  max-width: 200px;
  width: 100px;
  font-weight: 600;
  transition: .4s;
  padding: 0px;
  height: 36px;
  border-radius: var(--radius);
  background: var(--main-gradient);
  border: 1px solid var(--main-gradient);
}

.upload-image-btn {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .6);
  display: none;
  color: #fff;
}

.profile-image-main-box:hover .upload-image-btn {
  display: flex;
}

.fc-direction-ltr .fc-toolbar>*> :not(:first-child) {
  text-transform: capitalize;
}

.calender-box.full-calender .fc .fc-button-primary {
  background-color: var(--main-gradient);
  border-color: var(--main-gradient);
  background: var(--main-gradient);
}

.calender-box.full-calender h2#fc-dom-1 {
  color: var(--main-color) !important;
}

.fc .fc-daygrid-body-balanced .fc-daygrid-day-events {
  top: 17px;
}

/* .attend_event_popup .modal-footer button{
  pointer-events: none;
} */

button[disabled] {
  cursor: not-allowed;
  opacity: 0.65;
}

button[disabled]:hover {
  background: var(--main-gradient);
  color: var(--white);
}

  .task-body .row>div {
    height: inherit;
  }

[role="alert"] {
  font-weight: 400;
}

.text-danger b {
  font-weight: 400;
}

.profile_btn_delete iconify-icon {
  font-size: 14px;
}

.dashboard.admin-dashboard.calculate-height .dashboard-body {
  overflow: hidden !important;
}

.white_span_nowrap {
  white-space: nowrap;
}

/* .admin-dashboard{
  min-width: max-content;
}*/
.admin-dashboard .dashboard-body {
  overflow-y: hidden;
}

.admin-dashboard.dashboard {
  height: 100%;
}

/* .logos-width > div {
  width: 250px;
} */
.custom-control.custom-checkbox {
  width: 20px;
  height: 20px;
}

.admin_referals_table table tr td,
.admin_referals_table table tr th {
  font-size: 14px;
  white-space: nowrap;
}

.user_information_data {
  overflow-y: auto;
}


.admin-table-head h2,
.page-header h2 {
  font-size: 1.2rem;
}

.search-bar input {
  padding: 0;
  padding-right: 30px;
  font-size: 12px;
  width: 100%;
  float: left;
  padding: 7px;
}

.search-bar input::placeholder {
  font-size: 12px;
}

.referrals-tabs .nav.nav-tabs {
  box-shadow: none;
}

.client-referal-tab+.table thead,
.admin_referals_table thead,
.client-referal-tab table thead {
  box-shadow: 0 4px 7px #ddd
}

.modal-content label,
.modal-content input,
.modal-content input::placeholder {
  font-size: 14px;
  padding: 0px;
}

.modal-content input {
  padding: 4px;
}

.modal-content button {
  height: 35px;
  font-size: 14px;
  padding: 0;
}
.delete_popup .modal-content .modal-body ,.delete_popup .modal-content .modal-footer{
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 2rem;
}
.delete_popup .modal-content .modal-footer{
  padding-top: 0;
  padding-bottom: 2rem;
  width: 100%;
}
.delete_popup .modal-content .modal-footer .submit-btn, .delete_popup .modal-content .modal-footer .cancel-btn{
  width: 25% !important;
}
.delete_popup .modal-content{
  max-width: 420px;
}

.w-35 {
  width: 35%;
}

.modal-header button {
  padding: 5px;
  border: none;
}

.modal-header h5,
.modal-body h5,
.participents-box h5,
.participents-box+.date h6.fs-5 {
  font-size: 1rem !important;
}

.modal-header {
  padding-top: 5px;
  padding-bottom: 5px;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1;
  background: var(--white);
  box-shadow: 0 4px 7px #ddd;
}

/* .modal-footer button {
  width: 35%;
  float: right;
  min-width: max-content;
} */


.modal-footer {
  width: 50%;
  float: right;
}
.event_info_footer {
  width: 100%;
}
.event_info_footer .submit-btn{
  width: 50%;
  float: right;
}

.admin-dashboard canvas{
  border: 1px solid var(--border-color);
  display: inline-block !important;
  margin-top: 5px;
  border-radius: var(--radius);
}
.task_about{
  max-height: 300px;
  overflow: auto;
}
table:has(.no-data-div){
  height: 100%;
}
.task-body .row:has(.data-not-found),.event-body .row:has(.data-not-found)  {
  height: 94% !important;
}
#app:has(.privacy-template){
  grid-template-areas:none; 
}
.policy-body{
  max-width: 768px;
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
}
.policy-body p{
  text-align: center;
}
.policy-body h2{
  padding: 20px 0;
}
.dropdown-menu.show li span,.dropdown-menu.show li iconify-icon{
  font-size: 14px;
}
.event-image-uploade iconify-icon {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-blue);
}
/* .event-image-uploade iconify-icon:has(+.image-modal img){
  visibility: visible;
} */
/* .img-fluid */

.img-fluid{
  display: none !important; 
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, .125);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}
.img-fluid .image-fluid-box{
  width: 100%;
  max-width: 576px;
  max-height: 576px;
  overflow: hidden;
  background: var(--white);
}
.img-fluid .image-fluid-box img{
  width: -webkit-fill-available;
}
.img-fluid .image-fluid-box .image-fluid-box-head{
  border-bottom: 1px solid var(--placeholder-color);
}
.image-fluid-box-head iconify-icon{
  position: inherit;
  height: auto;
  visibility: visible;
  font-size: 20px;
  font-weight: 900;
  color: var(--black);
}
label sup{
  color: red;
}
.sidebar-block.only-icon-show .sidebar-body-bottom.sidebar-body-head{
  display: none;
}
/* 
.img-fluid .image-fluid-box{
  max-width: 576px;
  width: 100%;
  background: var(--white);
}
.image-fluid-box-head{
  border-bottom: 1px solid var(--placeholder-color);
}
.img-fluid .image-fluid-box{
  display: none;
}
.img-fluid .image-fluid-box:has(img){
  display: none;
} */

.fc .fc-daygrid-more-link {
  text-overflow: ellipsis ;
  display: block;
  -webkit-line-clamp: 1t;
  -webkit-box-orient: vertical;
  background: #616dff;
  color: #fff;
}
.fc .fc-daygrid-day-number{
  font-size: 14px;
}
.fc .fc-daygrid-day-bottom{
  margin-top: 3px !important;
}
.fc .fc-daygrid-more-link:hover {
  background-color:rgb(39, 142, 193);
}

@media screen and (max-width: 1080px) {
  .dash-main-body>.d-flex {
    flex-wrap: wrap;
    gap: 0 !important;
  }

  .right-part,
  .left-part {
    width: 100%;
  }
}

@media screen and (max-width: 991px) {
  .profile-dummy {
    width: 100%;
    min-height: unset;
  }
  .profile-top-main-box{
    position: relative !important;
    top: unset;
    
  }
  .login-content {
    padding: 4rem;
  }

  .dash-card {
    padding-bottom: 0 !important;
  }


  .view-profile-input,
  .profile-input {
    width: 100% !important;
  }

  .profile-content .col-lg-6.col-md-12:first-child {
    padding-right: 15px !important;
  }

  .profile-content .col-lg-6.col-md-12:last-child {
    padding-left: 15px !important;
  }

  .profile-content {
    flex-wrap: wrap;
  }

  .profile-left {
    width: 100%;
  }

  .profile-left .profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
  }

  .dash-main-body .dash-client-name {
    margin-top: 20px;
  }
  .premium-box{
    border-left: none;
    border-bottom: 1px solid var(--border-color);
  }
}

@media screen and (max-width: 768px) {
  .select-premium-plan-box.calculate-height .border-right-none .plan-box-border {
    border-right: 1px solid var(--border-color);
    margin-bottom: 20px;
  }

  .calculate-width {
    min-width: 100vw;
  }

  .handbook {
    width: 100vw !important;
  }

  .calculate-height.directory.bg-white {
    width: 100vw;
  }

  .select-premium-plan-box.calculate-height .border-right-none .plan-box-border,
  .border-left-none .select-plan-box {
    padding: 0 !important;
  }

  .select-box .image {
    display: block;
  }

  .plan-list,
  .plan-button {
    padding-top: 0;
  }

  .col-lg-6.col-md-6.col-sm-12.p-0.border-right-none {
    margin-bottom: 20px;
  }

  .upload-document .button {
    flex-direction: column;
  }

  .directory-details .directory-back-btn .button span:last-child {
    display: none;
  }

  .directory-back-btn {
    margin-top: 0 !important;
  }

  .directory-details .card .directory-image {
    width: auto;
    height: 400px;
    display: flex;
    align-items: center;
  }

  .directory-details .card {
    padding: 0 !important;
  }

  .directory-back-btn .submit-btn button {
    background: transparent;
    color: #222;
  }

  .directory-back-btn .submit-btn button button {
    color: #222;
  }

  .login-page .container {
    height: 100vh;
  }

  .upload-document .container {
    height: auto;
  }

  .container {
    max-width: 768px !important;
  }

  .login-page {
    background-image: none;
    background-color: var(--white);
  }

  .login-content {
    box-shadow: none;
    height: 100%;
  }

  .login-image {
    display: block;
  }

  .check-box-input {
    align-items: flex-start;
  }

  .login-logo {
    display: block !important;
    max-width: 50px;
    bottom: 0;
    right: auto;
    left: 50%;
    z-index: 4;
    transform: translate(-50%, 50%);
  }

  .login-left-box {
    height: 40vh;
    border-radius: 0 0 3rem 3rem;
  }

  .main-logo {
    display: none;
  }

  .small-logo {
    display: block;
  }

  .directory-details .card {
    flex-direction: column;
  }

  .toggle-btn.cursor-pointer {
    display: block !important;
    margin-left: 30px;
  }


  .sidebar-block .sidebar-head {
    display: block !important;
  }

  .only-icon-show.sidebar-block.small-sidebar.sidebar-bg {
    top: 0;
    left: 0;
    height: 100vh;
    width: 250px;
    max-width: 250px;
    z-index: 99;
  }

  .dashboard-header+.sidebar-block.small-sidebar.sidebar-bg+.dashboard,
  .dashboard-header+.dashboard,
  .dashboard-header+.sidebar-block.small-sidebar.sidebar-bg+.profile,
  .dashboard-header+.profile {
    width: 100vw;
  }

  .sidebar-block.small-sidebar.sidebar-bg,
  .isClosed.dashboard-header+.sidebar-block.small-sidebar.sidebar-bg {
    position: fixed !important;
    left: -100%;
    transition: .3s;
    z-index: 2;
  }

  .dashboard-header+.sidebar-block.small-sidebar.sidebar-bg {
    left: 0;
  }

  .sidebar-block.only-icon-show .sidebar-body-head li span:last-child {
    display: block;
    max-width: 100%;
    margin-left: 10px;
  }

  .dashboard-header+.dashboard {
    width: 100vw;
  }

  .event {
    width: 100vw !important;
  }

  .profile-content {
    flex-wrap: wrap;
  }

  .profile-left {
    min-width: auto;
    width: 100%;
  }

  .profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
  }

  .isClosed.dashboard-header+.drawer+.sidebar-block.small-sidebar.sidebar-bg .sidebar-body-head li span:last-child {
    display: block !important;
  }

  .isClosed.dashboard-header+.drawer+.sidebar-block.small-sidebar.sidebar-bg+div {
    min-width: 100vw !important;
  }

  .logos {
    width: 150px;
  }

  .logos .header-logo {
    width: 120px;
  }

  .change-password-button {
    width: 100%;
  }

  .Schedule-btn .cancel-btn,
  .Schedule-btn .submit-btn {
    width: 100%;
  }

  .sidebar-body {
    height: calc(100vh - 100px);
  }
  .data-not-found img{
    min-width: 40%;
  }

}

@media screen and (max-width: 576px) {
  .profile-content {
    flex-wrap: wrap !important;
  }

  .dash-card .col-lg-6.col-md-6.col-sm-6.col-xs-12:last-child {
    margin-top: 1.5rem;
  }

  .profile-left {
    width: 100% !important;
  }

  .c-name {
    display: none;
  }

  .fc .fc-button .fc-icon {
    font-size: 1rem;
  }

  .fc .fc-button {
    padding: 0.4rem !important;
    font-size: 12px;
  }

  .fc-toolbar-chunk h2 {
    font-size: 1rem !important;
  }

  .fc .fc-daygrid-more-link {
    margin-top: -15px;
  }

  .add-box span:last-child {
    display: none;
  }

  .search-bar input {
    max-width: 150px;
  }

}

@media screen and (max-width:425px) {

  .header,
  .header-content {
    height: 50px;
  }

  .login-content {
    padding: 2rem 1rem;
  }

  .payment-center .button .submit-btn {
    width: 100%;
  }

  .select-box .image {
    height: 100px;
  }

  .logos {
    min-width: 100px;
    max-width: 100px;
  }


  .profile-content {
    flex-wrap: wrap;
  }

  .profile-btn.button {
    float: right;
    width: 100%;
  }

  .edit-profile-image .profile-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
  }

  .edit-profile .profile-content {
    justify-content: center;
    z-index: 2;
  }

  .payment-center .button .submit-btn {
    width: 100%;
  }

  .chart-year-select-option>div {
    min-width: 100%;
  }

  .event-image {
    padding: 2px;
    max-width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 5px;
    width: 50px;
    min-height: 50px;
  }

  .event-image img {
    max-height: 50px;
  }

  .nav-item:last-child {
    margin-right: 30px;
    width: 100%;
    float: left;
  }

 .my-referalls-phone-tab .nav-link span{
  margin-right: 5px;
  margin-top: 7px;
 }
 .my-referalls-phone-tab .nav-link{
  padding: .5rem .5rem;
 }
 .my-referalls-phone-tab .nav-item:last-child {
  margin-right: 15px;
}

  .search-bar input {
    max-width: 150px;
  }
  .modal-footer{
    width: 100%;
  }
}
.card-sticky{
  position: sticky;
  top: 26px;
}

#moduleVideo-bck {
  width: 80%;          /* Full width */
  height: auto;         /* Maintain aspect ratio */
  max-width: 80%;      /* Prevent overflow */
  display: block;

  object-fit: cover;     /* Ensures poster fills the entire video box */
  aspect-ratio: 16 / 9;  /* Optional: maintain desired aspect ratio */
  background-color: black; /* Fallback background */
}