@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");

@font-face {
  font-family: myFont1;
  src: url("../font/font1/myFont1.ttf");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primaryColor: #005157;
  --secondaryColor: #88CCA2;
  --secondaryTextColor: #6b7280;
  --thirdColor: #f9fafb;
  --fourthColor: #ef4444;
  --fifthColor: #f59e0b;
  --white: #ffffff;
  --black: #111827;
  --cardShadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --cardShadowHover: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --borderRadius: 12px;
}

body {
  font-family: "Montserrat", sans-serif;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.048);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #cacaca;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primaryColor);
}

.container {
  width: 95%;
  margin: 0 auto;
}

a,
button,
div,
span,
i,
b,
h1,
h2,
h3,
h4,
h5,
h6,
p,
input,
ul,
li,
select,
label,
textarea {
  -webkit-tap-highlight-color: transparent;
  font-family: "Montserrat", sans-serif;
}

input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

input {
  -webkit-tap-highlight-color: transparent;
}

::-webkit-datetime-edit-year-field:not([aria-valuenow]),
::-webkit-datetime-edit-month-field:not([aria-valuenow]),
::-webkit-datetime-edit-day-field:not([aria-valuenow]) {
  color: transparent;
}

video::-internal-media-controls-overlay-cast-button {
  display: none;
}

textarea {
  resize: none;
  font-family: "Montserrat", sans-serif;
}

::-moz-selection {
  color: var(--primaryColor);
  background: transparent;
}

::selection {
  color: var(--primaryColor);
  background: transparent;
}

main {
  overflow: hidden;
}

.print {
  display: none;
}

@media print {
  main {
    display: none;
  }

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

  .print h1 {
    font-size: 2em;
    font-weight: 600;
    text-align: center;
    margin-top: 25px;
    color: red;
  }

  .print p {
    font-size: 20px;
    line-height: 1.7;
    margin-top: 10px;
    text-align: center;
    color: var(--secondaryTextColor);
  }
}

.shimmer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 105;
  background: rgba(0, 0, 0, 0.486);
  display: none;
}

.pageLoader {
  position: fixed;
  z-index: 300;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background: rgba(128, 128, 128, 0.784);
}

.pageLoader .loader__spinner {
  position: absolute;
  transform: translate(-50%, 50%);
  top: 50%;
  left: 50%;
  border: 5px solid rgb(255, 255, 255);
  border-left: 5px solid var(--primaryColor);
  transform: translateZ(0);
  animation: spinner 1.1s infinite cubic-bezier(0.785, 2, 0.785, 0.785);
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

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

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

.deletePopup {
  position: fixed;
  z-index: 120;
  width: 400px;
  padding: 40px;
  background: white;
  border-radius: 10px;
  transform: translateX(-50%);
  left: 50%;
  top: -110%;
  opacity: 0;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease all;
}

@media (max-width: 480px) {
  .deletePopup {
    width: 90%;
    padding: 20px;
  }
}

.deletePopup .deletePopupIcon {
  width: 100px;
}

.deletePopup .deletePopupIcon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.deletePopup p {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
  color: black;
}

.deletePopup span {
  font-size: 14px;
  color: var(--secondaryTextColor);
  margin-top: 10px;
  text-align: center;
}

.deletePopup .deletePopupBtnArea {
  width: 100%;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.deletePopup .deletePopupBtnArea .closeDeletePopup {
  flex: 0 0 48%;
  padding: 12px;
  text-align: center;
  border-radius: 10px;
  background: #F8F5F1;
  color: black;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: 0.2s;
}

.deletePopup .deletePopupBtnArea .closeDeletePopup:hover {
  transition: 0.2s;
  background: #F4EEE8;
}

.deletePopup .deletePopupBtnArea .confirmDeletePopup {
  flex: 0 0 48%;
  padding: 12px;
  text-align: center;
  border-radius: 10px;
  background: var(--primaryColor);
  color: white;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: 0.2s;
}

.deletePopup .deletePopupBtnArea .confirmDeletePopup:hover {
  transition: 0.2s;
  background: var(--secondaryColor);
}

.deletePopupActive {
  top: 20px;
  opacity: 1;
  visibility: visible;
  transition: 0.3s ease all;
}

#dashboard {
  width: 100%;
}

.nav {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  height: 60px;
  background: white;
  z-index: 100;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.046);
}

.nav .navLogo {
  float: left;
  height: 60px;
  width: 180px;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav .navLogo img {
  width: 80%;
  height: 80%;
  -o-object-fit: contain;
  object-fit: contain;
}

.nav .navLogo h1 {
  font-size: 22px;
  font-weight: 500;
  color: black;
}

.formSection {
  width: 100%;
  background: var(--thirdColor);
  position: relative;
  z-index: 0;
  height: calc(100vh - 60px);
  margin-top: 60px;
}

@media (max-width: 480px) {
  .formSection {
    margin-top: 60px;
    padding: 50px 0px;
    min-height: calc(100vh - 60px);
  }
}

.formSection .formSectionMain {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: calc(100vh - 80px);
}

@media (max-width: 480px) {
  .formSection .formSectionMain {
    justify-content: flex-start;
    align-items: flex-start;
    min-height: inherit;
  }
}

.formSection .formSectionMain .form {
  width: 500px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 20px;
}

@media (max-width: 480px) {
  .formSection .formSectionMain .form {
    width: 100%;
    padding: 20px;
  }
}

.formSection .formSectionMain .form h1 {
  font-size: 25px;
  font-weight: 600;
}

.formSection .formSectionMain .form form {
  width: 100%;
  margin-top: 20px;
}

.formSection .formSectionMain .form form .formGroup {
  width: 100%;
  display: flex;
  margin-top: 20px;
  flex-direction: column;
}

.formSection .formSectionMain .form form .formGroup label {
  font-size: 14px;
  font-weight: 500;
  color: var(--secondaryTextColor);
}

.formSection .formSectionMain .form form .formGroup input {
  width: 100%;
  height: 45px;
  margin-top: 5px;
  border: 1px solid #eee;
  outline: none;
  padding: 0px 15px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 10px;
  background: var(--thirdColor);
  caret-color: var(--primaryColor);
}

.formSection .formSectionMain .form form .formGroup input:focus {
  border: 1px solid #ccc;
}

.formSection .formSectionMain .form form .formGroup .passwordinput {
  letter-spacing: 15px;
  padding-right: 40px;
}

.formSection .formSectionMain .form form .formGroup .formPassword {
  position: relative;
}

.formSection .formSectionMain .form form .formGroup .formPassword .togglePassword {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  color: var(--primaryColor);
  font-size: 20px;
}

.formSection .formSectionMain .form form .forgtPsd {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.formSection .formSectionMain .form form .forgtPsd a {
  font-size: 14px;
  color: black;
  text-decoration: none;
  font-weight: 500;
  text-align: right;
}

.formSection .formSectionMain .form form .forgtPsd a:hover {
  text-decoration: underline;
}

.formSection .formSectionMain .form form button {
  width: 100%;
  margin-top: 30px;
  padding: 14px;
  background: var(--primaryColor);
  color: white;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 15px;
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0px 5px 20px -2px rgba(0, 76, 255, 0.235);
  transition: 0.3s;
}

.formSection .formSectionMain .form form button:hover {
  box-shadow: none;
  transition: 0.3s;
  background: var(--secondaryColor);
}

.sidemenu {
  position: fixed;
  z-index: 10;
  width: 270px;
  background: var(--primaryColor);
  height: 100vh;
  top: 0;
  left: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.2s;
}

@media (max-width: 480px) {
  .sidemenu {
    left: -100%;
    z-index: 100;
  }
}

.sidemenu .closeSidemenu {
  display: none;
}

@media (max-width: 480px) {
  .sidemenu .closeSidemenu {
    display: flex;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
  }

  .sidemenu .closeSidemenu span {
    font-size: 22px;
    color: white;
  }
}

.sidemenu .sidemenuHead {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  top: 20px;
  position: absolute;
  left: 0;
  background: transparent;
}

.sidemenu .sidemenuHead .sidemenuLogo {
  width: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  border-radius: 10px;
  transition: 0.2s;
}

.sidemenu .sidemenuHead .sidemenuLogo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  transition: 0.2s;
}

.sidemenu .sidemenuHead .sidemenuLogo .halfSidImg {
  display: none;
}

.sidemenu .navProfile {
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.1);
  display: none;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px;
}

@media (max-width: 480px) {
  .sidemenu .navProfile {
    display: flex;
    margin: 0 auto;
    margin-top: 90px;
    width: 90%;
    padding: 10px 15px;
  }
}

.sidemenu .navProfile .navProfileThumbnail {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
}

.sidemenu .navProfile .navProfileThumbnail img {
  width: 70%;
  height: 70%;
  -o-object-fit: cover;
  object-fit: cover;
}

.sidemenu .navProfile .navProfileContent {
  max-width: 200px;
  margin-left: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 0.2s;
}

@media (max-width: 480px) {
  .sidemenu .navProfile .navProfileContent {
    max-width: inherit;
    width: calc(100% - 45px);
  }
}

.sidemenu .navProfile .navProfileContent h4 {
  font-size: 14px;
  font-weight: 600;
  color: white;
  max-height: 45px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}

.sidemenu .navProfile .navProfileContent p {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.sidemenu .sidemenuBody {
  width: 100%;
  background: transparent;
  margin-top: 70px;
  height: calc(100vh - 120px);
  overflow-y: auto;
  transition: 0.2s;
}

@media (max-width: 480px) {
  .sidemenu .sidemenuBody {
    height: calc(100vh - 195px);
    margin-top: 0px;
  }
}

.sidemenu .sidemenuBody ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.sidemenu .sidemenuBody ul li {
  list-style: none;
}

.sidemenu .sidemenuBody ul li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  margin-top: 10px;
  border-radius: 10px;
  font-weight: 500;
  transition: 0.2s;
}

.sidemenu .sidemenuBody ul li a:hover {
  transition: 0.2s;
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.sidemenu .sidemenuBody ul li a .sidemenuIcon {
  margin-right: 15px;
  transition: 0.2s;
  margin-top: 3px;
}

.sidemenu .sidemenuBody ul li a .sidemenuIcon span {
  font-size: 14px;
  transition: 0.2s;
}

.sidemenu .sidemenuBody ul li a p {
  font-size: 13px;
  transition: 0.2s;
}

.sidemenu .sidemenuBody ul li .sidemenuLinkActive {
  background: var(--secondaryColor);
  color: var(--primaryColor);
  font-weight: 600;
}

.sidemenu .sidemenuBody ul li .sidemenuLinkActive:hover {
  transition: 0.2s;
  background: var(--secondaryColor);
  color: var(--primaryColor);
}

.sidemenu .sidemenuBody ul li .sidemenuLinkActive span {
  color: var(--primaryColor);
}

.sidemenu .sidemenuFooter {
  position: absolute;
  width: 100%;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  bottom: 0;
  left: 0;
  background: transparent;
}

.sidemenu .sidemenuFooter span {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 5px;
  transition: 0.2s;
}

.sidemenu .sidemetoggleBtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -21px;
  width: 20px;
  overflow: hidden;
  height: 100px;
  background: var(--primaryColor);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  transition: 0.2s;
  box-shadow: 5px 0 10px rgba(0, 0, 0, 0.1);
  z-index: -1;
}

.sidemenu .sidemetoggleBtn span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 28px;
  transition: 0.2s;
}

.sidemenu .sidemetoggleBtn .rotate {
  transform: rotate(180deg);
  transition: 0.2s;
}

.sidemenuActive {
  width: 100px !important;
  transition: 0.2s;
}

.sidemenuActive .sidemenuHead .sidemenuLogo {
  width: 60px !important;
  height: 60px !important;
  transition: 0.2s;
}

.sidemenuActive .sidemenuHead .sidemenuLogo img {
  width: 120% !important;
  height: 120% !important;
  transition: 0.2s;
}

.sidemenuActive .sidemenuHead .sidemenuLogo .fullSidImg {
  display: none !important;
}

.sidemenuActive .sidemenuHead .sidemenuLogo .halfSidImg {
  display: block !important;
}

.sidemenuActive .sidemenuBody {
  height: calc(100vh - 130px) !important;
  transition: 0.2s;
}

.sidemenuActive .sidemenuBody ul li a .sidemenuIcon {
  margin-right: 0 !important;
  transition: 0.2s;
}

.sidemenuActive .sidemenuBody ul li a .sidemenuIcon span {
  font-size: 20px !important;
  transition: 0.2s;
}

.sidemenuActive .sidemenuBody ul li a p {
  display: none !important;
  transition: 0.2s;
}

.sidemenuActive .sidemenuFooter span {
  display: none !important;
  transition: 0.2s;
}

.toasterPopup {
  position: fixed;
  z-index: 100;
  padding: 15px 20px;
  background: white;
  border-radius: 10px;
  bottom: -110%;
  opacity: 0;
  visibility: hidden;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid var(--primaryColor);
  transition: 0.3s ease all;
}

@media (max-width: 480px) {
  .toasterPopup {
    max-width: 90%;
  }
}

.toasterPopup p {
  font-size: 14px;
  font-weight: 500;
  white-space: pre;
}

.toasterPopupActivity {
  bottom: 20px;
  opacity: 1;
  visibility: visible;
  transition: 0.3s ease all;
}

.canvas {
  width: calc(100% - 270px);
  min-height: 100vh;
  background: var(--thirdColor);
  float: right;
  transition: 0.2s;
  display: flex;
  flex-direction: column;
}

@media (max-width: 480px) {
  .canvas {
    width: 100%;
  }
}

.canvas .canvasHead {
  width: 100%;
  height: 60px;
  padding: 0px 2.5%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background: white;
  align-items: center;
  border-bottom: 1px solid #ededed;
}

@media (max-width: 480px) {
  .canvas .canvasHead {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    flex-wrap: nowrap;
  }
}

.canvas .canvasHead .canvasTitle {
  display: flex;
  align-items: center;
}

@media (max-width: 480px) {
  .canvas .canvasHead .canvasTitle {
    width: 100%;
  }
}

.canvas .canvasHead .canvasTitle span {
  font-size: 20px;
  margin-right: 10px;
  color: var(--primaryColor);
}

.canvas .canvasHead .canvasTitle h1 {
  font-size: 20px;
  font-weight: 600;
  color: black;
}

@media (max-width: 480px) {
  .canvas .canvasHead .canvasTitle h1 {
    max-height: 25px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    width: calc(100% - 40px);
  }
}

.canvas .canvasHead .navProfile {
  padding: 5px 10px;
  background: var(--thirdColor);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px;
}

@media (max-width: 480px) {
  .canvas .canvasHead .navProfile {
    display: none;
  }
}

.canvas .canvasHead .navProfile .navProfileThumbnail {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  overflow: hidden;
  background: #C8F2EF;
  display: flex;
  justify-content: center;
  align-items: center;
}

.canvas .canvasHead .navProfile .navProfileThumbnail img {
  width: 70%;
  height: 70%;
  -o-object-fit: cover;
  object-fit: cover;
}

.canvas .canvasHead .navProfile .navProfileContent {
  max-width: 200px;
  margin-left: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 0.2s;
}

.canvas .canvasHead .navProfile .navProfileContent h4 {
  font-size: 14px;
  font-weight: 600;
  max-height: 45px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}

.canvas .canvasHead .navProfile .navProfileContent p {
  font-size: 12px;
  font-weight: 500;
  color: var(--secondaryTextColor);
}

.canvas .canvasHead .navSearch {
  display: flex;
  align-items: center;
  margin-right: auto;
  margin-left: 40px;
}

@media (max-width: 480px) {
  .canvas .canvasHead .navSearch {
    position: fixed;
    top: 60px;
    margin-left: 0;
    padding: 5px 2.5%;
    background: white;
    width: 100%;
    left: 0;
  }
}

.canvas .canvasHead .navSearch input {
  width: 350px;
  height: 40px;
  background: var(--thirdColor);
  border: 1px solid var(--thirdColor);
  outline: none;
  padding: 0px 15px;
  font-size: 14px;
  color: black;
  font-weight: 500;
  border-radius: 10px;
}

.canvas .canvasHead .navSearch input::-moz-placeholder {
  color: #ccc;
}

.canvas .canvasHead .navSearch input::placeholder {
  color: #ccc;
}

.canvas .canvasHead .navSearch input:focus {
  border: 1px solid #eee;
}

.canvas .canvasHead .navSearch button {
  width: 40px;
  height: 40px;
  background: var(--primaryColor);
  color: white;
  border: none;
  outline: none;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  transition: 0.2s;
  margin-left: 10px;
}

.canvas .canvasHead .navSearch button:hover {
  transition: 0.2s;
  background: var(--secondaryColor);
}

.canvas .canvasHead .navBar {
  display: none;
}

@media (max-width: 480px) {
  .canvas .canvasHead .navBar {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.canvas .canvasHead .navBar .navBarBox {
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.canvas .canvasHead .navBar .navBarBox span {
  width: 100%;
  height: 2px;
  margin-top: 4px;
  background: black;
  border-radius: 2px;
}

.canvas .canvasHead .navBar .navBarBox span:nth-child(1) {
  margin-top: 0;
}

.canvas .canvasBody {
  width: 100%;
  height: calc(100vh - 60px);
  overflow-y: auto;
  padding: 0px 2.5% 20px 2.5%;
  display: flex;
  flex-direction: column;
  position: relative;
}

@media (max-width: 480px) {
  .canvas .canvasBody {
    margin-top: 60px;
    height: auto;
    padding-bottom: 60px;
  }
}

.canvas .canvasBody .dashBoardCanvas {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}

.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasMenu {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  width: 100%;
  padding: 20px 0;
}

@media (max-width: 640px) {
  .canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasMenu {
    grid-template-columns: 1fr;
  }
}

.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasMenu .dashBoardCanvasMenuBox {
  background: var(--white);
  border-radius: 24px;
  padding: 40px 24px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasMenu .dashBoardCanvasMenuBox::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 179, 2, 0.05), transparent 70%);
  pointer-events: none;
}

.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasMenu .dashBoardCanvasMenuBox:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px -12px rgba(0, 81, 87, 0.15);
  border-color: var(--secondaryColor);
}

.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasMenu .dashBoardCanvasMenuBox:hover .dashBoardCanvasMenuBoxIcon {
  background: var(--primaryColor);
  color: var(--white);
  transform: scale(1.15) translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 81, 87, 0.2);
}

.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasMenu .dashBoardCanvasMenuBox:hover .dashBoardCanvasMenuBoxIcon span {
  transform: rotate(10deg);
}

.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasMenu .dashBoardCanvasMenuBox:hover p {
  color: var(--primaryColor);
  transform: translateY(-2px);
}

.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasMenu .dashBoardCanvasMenuBox .dashBoardCanvasMenuBoxIcon {
  background: #f8fafc;
  color: var(--primaryColor);
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasMenu .dashBoardCanvasMenuBox .dashBoardCanvasMenuBoxIcon span {
  font-size: 34px;
  transition: all 0.5s ease;
}

.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasMenu .dashBoardCanvasMenuBox p {
  font-weight: 700;
  font-size: 17px;
  color: var(--black);
  text-align: center;
  margin: 0;
  transition: all 0.4s ease;
  letter-spacing: -0.2px;
}

.canvas .canvasBody .dashBoardCanvas .dashBoardCanvasColumn1 .dashBoardCanvasMenu .dashBoardCanvasMenuBox .statsLabel {
  font-size: 13px;
  color: var(--secondaryTextColor);
  font-weight: 500;
}

.canvas .dashBoardCanvasColumn2 {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}

.canvasBodyHead {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.canvasBodyHead .canvasBreadcrumbs {
  width: 50%;
  padding: 10px 0;
  display: flex;
  overflow-y: auto;
}

@media (max-width: 480px) {
  .canvasBodyHead .canvasBreadcrumbs {
    width: 100%;
  }
}

.canvasBodyHead .canvasBreadcrumbs a {
  text-decoration: none;
  font-size: 12px;
  color: var(--primaryColor);
  font-weight: 500;
  white-space: pre;
}

.canvasBodyHead .canvasBreadcrumbs a:hover {
  color: black;
}

.canvasBodyHead .canvasBreadcrumbs span {
  margin: 0px 5px;
  font-size: 12px;
  color: var(--secondaryTextColor);
}

.canvasBodyHead .canvasBodyHeadColumn2 {
  width: 48%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@media (max-width: 480px) {
  .canvasBodyHead .canvasBodyHeadColumn2 {
    position: inherit;
    width: auto;
  }
}

.canvasBodyHead .canvasBodyHeadColumn2 .addBtn {
  padding: 10px 18px;
  background: var(--primaryColor);
  color: white;
  font-size: 12px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  text-decoration: none;
  transition: 0.2s;
  cursor: pointer;
}

@media (max-width: 480px) {
  .canvasBodyHead .canvasBodyHeadColumn2 .addBtn {
    position: fixed;
    bottom: 10px;
    left: 2.5%;
    width: 95%;
    z-index: 10;
    padding: 14px 18px;
  }
}

.canvasBodyHead .canvasBodyHeadColumn2 .addBtn:hover {
  background: var(--secondaryColor);
  transition: 0.2s;
}

.canvasBodyHead .canvasBodyHeadColumn2 .addBtn span {
  margin-right: 10px;
  font-size: 18px;
}

.canvasBodyHead .canvasBodyHeadColumn2 .printBtn {
  padding: 10px 18px;
  background: #4E9F3D;
  color: white;
  font-size: 12px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: 0.2s;
}

@media (max-width: 480px) {
  .canvasBodyHead .canvasBodyHeadColumn2 .printBtn {
    position: fixed;
    bottom: 10px;
    left: 2.5%;
    width: 95%;
    z-index: 10;
    padding: 14px 18px;
  }
}

.canvasBodyHead .canvasBodyHeadColumn2 .printBtn:hover {
  background: var(--secondaryColor);
  transition: 0.2s;
}

.canvasBodyHead .canvasBodyHeadColumn2 .printBtn span {
  margin-right: 10px;
  font-size: 18px;
}

.canvasSubTitle {
  width: 100%;
  display: flex;
  align-items: center;
  margin-top: 50px;
}

.canvasSubTitle:nth-child(1) {
  margin-top: 20px;
}

.canvasSubTitle span {
  font-size: 16px;
  margin-right: 10px;
}

.canvasSubTitle h1 {
  font-size: 18px;
  font-weight: 500;
}

.canvasSubTitle a {
  text-decoration: none;
  margin-left: 10px;
  font-size: 12px;
  color: var(--primaryColor);
  font-weight: 500;
  background: white;
  border-radius: 10px;
  padding: 7px 15px;
  transition: 0.2s;
}

.canvasSubTitle a:hover {
  transition: 0.2s;
  background: var(--primaryColor);
  color: white;
}

.tableWraper {
  width: 100%;
  margin-top: 20px;
  background: white;
  border-radius: 12px;
  padding: 0px;
  position: relative;
  overflow-x: auto;
  max-height: 100%;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
}

.tableWraper::after {
  position: absolute;
  content: "";
  top: 0;
}

.tableWraper table {
  width: 100%;
  position: relative;
  border-collapse: collapse;
}

.tableWraper table thead {
  width: 100%;
  background: var(--thirdColor);
}

.tableWraper table thead tr {
  width: 100%;
  display: table-row;
  outline: 0;
}

.tableWraper table thead tr th {
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  top: 0;
  padding: 15px 12px;
  position: sticky;
  z-index: 20;
  background: white !important;
  border-bottom: 2px solid #f1f1f1;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.tableWraper table thead tr th label {
  display: flex;
  cursor: pointer;
  white-space: pre;
}

.tableWraper table thead tr th label input {
  display: none;
}

.tableWraper table thead tr .resizing {
  cursor: col-resize;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.tableWraper table tbody tr {
  transition: all 0.2s ease;
}

.tableWraper table tbody tr:hover {
  background-color: #f8fafc;
}

.tableWraper table tbody tr td {
  height: 50px;
  padding: 0 12px;
  font-size: 14px;
  border: 0;
  border-bottom: 1px solid #f1f1f1;
  color: #334155;
  vertical-align: middle;
}

.tableWraper table tbody tr td .client-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background: #f1f5f9;
}

.tableWraper table tbody tr td .client-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tableWraper table tbody tr td p {
  white-space: pre;
}

.tableWraper table tbody tr td a {
  text-decoration: none;
  color: var(--primaryColor);
  font-weight: 500;
}

.tableWraper table tbody tr td .blocked {
  background: red;
  color: white;
  font-size: 10px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 5px;
  margin-top: 5px;
  width: 70px;
  text-align: center;
  display: none;
}

.tableWraper table tbody tr td .tableAction {
  display: flex;
  align-items: center;
}

.tableWraper table tbody tr td .tableAction .tableEditBtn {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #00BD56;
  cursor: pointer;
  text-decoration: none;
  transition: 0.2s;
  margin-right: 10px;
}

.tableWraper table tbody tr td .tableAction .tableEditBtn:hover {
  transition: 0.2s;
  opacity: 0.7;
}

.tableWraper table tbody tr td .tableAction .tableEditBtn span {
  font-size: 16px;
  color: white;
}

.tableWraper table tbody tr td .tableAction .tableDeleteBtn {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #EB1D36;
  cursor: pointer;
  text-decoration: none;
  transition: 0.2s;
  margin-right: 10px;
}

.tableWraper table tbody tr td .tableAction .tableDeleteBtn:hover {
  transition: 0.2s;
  opacity: 0.7;
}

.tableWraper table tbody tr td .tableAction .tableDeleteBtn span {
  font-size: 16px;
  color: white;
}

.tableWraper table tbody tr td .tableAction .tableViewBtn {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primaryColor);
  cursor: pointer;
  text-decoration: none;
  transition: 0.2s;
  margin-right: 10px;
}

.tableWraper table tbody tr td .tableAction .tableViewBtn:hover {
  transition: 0.2s;
  opacity: 0.7;
}

.tableWraper table tbody tr td .tableAction .tableViewBtn span {
  font-size: 16px;
  color: white;
}

.tableWraper table tbody tr td .tableAction .tableBlockBtn {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e25e00;
  cursor: pointer;
  text-decoration: none;
  transition: 0.2s;
  margin-right: 10px;
}

.tableWraper table tbody tr td .tableAction .tableBlockBtn:hover {
  transition: 0.2s;
  opacity: 0.7;
}

.tableWraper table tbody tr td .tableAction .tableBlockBtn span {
  font-size: 16px;
  color: white;
}

.tableWraper .sckelly {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: absolute;
  width: 100%;
  left: 0px;
  top: 55px;
  z-index: 12;
  padding: 0px 20px;
  background: white;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.tableWraper .skellytext {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 13;
  padding-top: 30px;
}

.tableWraper .skellytext h2 {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

.tableWraper .skellytext h2 span {
  position: relative;
}

.tableWraper .skellytext h2 span:nth-child(1) {
  animation: bounsing1 0.5s infinite;
}

.tableWraper .skellytext h2 span:nth-child(2) {
  animation: bounsing2 0.7s infinite;
}

.tableWraper .skellytext h2 span:nth-child(3) {
  animation: bounsing3 0.9s infinite;
}

@keyframes bounsing1 {
  0% {
    top: 0px;
  }

  50% {
    top: -3px;
  }

  100% {
    top: 0px;
  }
}

@keyframes bounsing2 {
  0% {
    top: 0px;
  }

  50% {
    top: -3px;
  }

  100% {
    top: 0px;
  }
}

@keyframes bounsing3 {
  0% {
    top: 0px;
  }

  50% {
    top: -3px;
  }

  100% {
    top: 0px;
  }
}

.tableWraper .elseDesign {
  width: 100%;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  display: none;
}

@media (max-width: 480px) {
  .tableWraper .elseDesign {
    height: 400px;
  }
}

.tableWraper .elseDesign .elseDesignthumbnail {
  width: 200px;
}

.tableWraper .elseDesign .elseDesignthumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.tableWraper .elseDesign p {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  margin-top: 10px;
}

.pagination {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

@media (max-width: 480px) {
  .pagination {
    flex-direction: column;
  }
}

.formWraper {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.formWraper h2 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 30px;
}

.formWraper .formWraperBox {
  margin-top: 20px;
  background: white;
  border-radius: 10px;
  padding: 0px 20px 20px 20px;
}

.formWraper .formWraperBox form {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.formWraper .formWraperBox form .formGroup {
  flex: 0 0 30%;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

@media (max-width: 480px) {
  .formWraper .formWraperBox form .formGroup {
    flex: 100%;
  }
}

.formWraper .formWraperBox form .formGroup label {
  font-size: 14px;
  font-weight: 500;
  color: var(--secondaryTextColor);
}

.formWraper .formWraperBox form .formGroup input {
  width: 100%;
  height: 45px;
  border-radius: 10px;
  border: 1px solid #eee;
  outline: none;
  padding: 0px 20px;
  background: var(--thirdColor);
  margin-top: 5px;
  font-size: 16px;
  font-weight: 500;
}

.formWraper .formWraperBox form .formGroup input:focus {
  border: 1px solid #ccc;
}

.formWraper .formWraperBox form .formGroup select {
  width: 100%;
  height: 45px;
  border-radius: 10px;
  border: 1px solid #eee;
  outline: none;
  padding: 0px 20px;
  background: var(--thirdColor);
  margin-top: 5px;
  font-size: 16px;
  font-weight: 500;
}

.formWraper .formWraperBox form .formGroup select:focus {
  border: 1px solid #ccc;
}

.formWraper .formWraperBox form .formGroup .dropDownSection {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 45px;
}

.formWraper .formWraperBox form .formGroup .dropDownSection .dropDownInput {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
}

.formWraper .formWraperBox form .formGroup .dropDownSection .dropDownInput input {
  cursor: pointer;
}

.formWraper .formWraperBox form .formGroup .dropDownSection .dropDownPopup {
  position: absolute;
  width: 100%;
  background: white;
  border-radius: 10px;
  top: 50px;
  left: 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.059);
  padding: 10px;
  z-index: 1;
  display: none;
}

.formWraper .formWraperBox form .formGroup .dropDownSection .dropDownPopup .dropDownSearch {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.formWraper .formWraperBox form .formGroup .dropDownSection .dropDownPopup .dropDownSearch input {
  margin-top: 0;
  width: 100%;
  height: 40px;
}

.formWraper .formWraperBox form .formGroup .dropDownSection .dropDownPopup .dropDownSearch input::-moz-placeholder {
  color: #ccc;
}

.formWraper .formWraperBox form .formGroup .dropDownSection .dropDownPopup .dropDownSearch input::placeholder {
  color: #ccc;
}

.formWraper .formWraperBox form .formGroup .dropDownSection .dropDownPopup .dropDownSearch button {
  width: 40px;
  height: 40px;
  background: var(--primaryColor);
  color: white;
  border: none;
  outline: none;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  transition: 0.2s;
}

.formWraper .formWraperBox form .formGroup .dropDownSection .dropDownPopup .dropDownSearch button:hover {
  transition: 0.2s;
  background: var(--secondaryColor);
}

.formWraper .formWraperBox form .formGroup .dropDownSection .dropDownPopup .dropDownPopuplist {
  width: 100%;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
}

.formWraper .formWraperBox form .formGroup .dropDownSection .dropDownPopup .dropDownPopuplist ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  max-height: 300px;
  overflow-y: auto;
}

.formWraper .formWraperBox form .formGroup .dropDownSection .dropDownPopup .dropDownPopuplist ul li {
  list-style: none;
  margin-top: 5px;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 10px;
  cursor: pointer;
  transition: 0.2s;
  border-radius: 10px;
}

.formWraper .formWraperBox form .formGroup .dropDownSection .dropDownPopup .dropDownPopuplist ul li:hover {
  background: var(--thirdColor);
  transition: 0.2s;
}

.formWraper .formWraperBox form .formGroup .dropDownSection .dropDownPopup .dropDownPopuplist ul .dropDownPopuplistMenuActive {
  background: var(--secondaryColor);
  color: white;
}

.formWraper .formWraperBox form .formGroup .dropDownSection .dropDownPopup .dropDownPopuplist ul .dropDownPopuplistMenuActive:hover {
  background: var(--secondaryColor);
  transition: 0.2s;
}

.formWraper .formWraperBox form .formGroup .dropDownSection .dropDownPopup .dropDownPopuplist .elseDesign {
  width: 100%;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.formWraper .formWraperBox form .formGroup .dropDownSection .dropDownPopup .dropDownPopuplist .elseDesign .elseDesignthumbnail {
  width: 150px;
}

.formWraper .formWraperBox form .formGroup .dropDownSection .dropDownPopup .dropDownPopuplist .elseDesign .elseDesignthumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.formWraper .formWraperBox form .formGroup .dropDownSection .dropDownPopup .dropDownPopuplist .elseDesign p {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  margin-top: 10px;
}

.formWraper .formWraperBox form .formGroup .dropDownSection .dropDownPopupDown {
  top: 50px;
  display: block;
}

.formWraper .formWraperBox form .formGroup .dropDownSection .dropDownPopupUp {
  top: inherit;
  bottom: -50px;
  display: block;
}

.formWraper .formWraperBox form .formGroup .formPassword {
  position: relative;
}

.formWraper .formWraperBox form .formGroup .formPassword .togglePassword {
  position: absolute;
  right: 5%;
  top: 15px;
  font-size: 22px;
}

.formWraper .formWraperBox form .formGroupTextarea {
  flex: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.formWraper .formWraperBox form .formGroupTextarea label {
  font-size: 14px;
  font-weight: 500;
  color: var(--secondaryTextColor);
}

.formWraper .formWraperBox form .formGroupTextarea textarea {
  width: 100%;
  height: 100px;
  border-radius: 10px;
  border: 1px solid #eee;
  outline: none;
  padding: 10px 20px;
  background: var(--thirdColor);
  margin-top: 5px;
  font-size: 16px;
  font-weight: 500;
}

.formWraper .formWraperBox form .formGroupTextarea textarea:focus {
  border: 1px solid #ccc;
}

.formWraper .formWraperBox form .formBtnArea {
  width: 100%;
  margin-top: 32px;
  border-top: 1px solid #f3f4f6;
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.formWraper .formWraperBox form .formBtnArea button {
  height: 48px;
  padding: 0 32px;
  background: var(--primaryColor);
  border: none;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 81, 87, 0.2);
}

.formWraper .formWraperBox form .formBtnArea button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 15px -3px rgba(0, 81, 87, 0.3);
  background: #004247;
}

.formWraper .formWraperBox form .formBtnArea button span {
  font-size: 20px;
}

.formWraper .formWraperBox form .formTagArea {
  flex: 100%;
  display: flex;
  flex-wrap: wrap;
}

.formWraper .formWraperBox form .formTagArea .formTagBox {
  padding: 8px 15px;
  border-radius: 10px;
  margin-top: 10px;
  background: var(--secondaryColor);
  display: flex;
  align-items: center;
  margin-right: 10px;
}

.formWraper .formWraperBox form .formTagArea .formTagBox p {
  font-size: 14px;
  color: white;
  font-weight: 500;
}

.formWraper .formWraperBox form .formTagArea .formTagBox .closeFormTagBox {
  margin-left: 20px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.505);
  width: 25px;
  height: 25px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.2s;
}

.formWraper .formWraperBox form .formTagArea .formTagBox .closeFormTagBox:hover {
  background: white;
  transition: 0.2s;
}

.formWraper .formWraperBox form .formTagArea .formTagBox .closeFormTagBox span {
  font-size: 16px;
  color: #FF1E00;
}

.formWraper .formWraperBox form .dummyDiv {
  flex: 0 0 30%;
  height: 0;
}

.formWraper .formWraperBox form .formFileUpload {
  width: 100%;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.formWraper .formWraperBox form .formFileUpload .uploadFileBtnBox {
  width: 100%;
  max-width: 300px;
}

.formWraper .formWraperBox form .formFileUpload .uploadFileBtnBox .uploadFileBtn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: var(--white);
  border: 2px dashed #e5e7eb;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  gap: 8px;
}

.formWraper .formWraperBox form .formFileUpload .uploadFileBtnBox .uploadFileBtn p {
  font-size: 14px;
  font-weight: 600;
  color: var(--primaryColor);
}

.formWraper .formWraperBox form .formFileUpload .uploadFileBtnBox .uploadFileBtn:hover {
  border-color: var(--primaryColor);
  background: #fdfdfd;
}

.formWraper .formWraperBox form .formFileUpload .uploadFileBtnBox .uploadFileBtn .uploadInputFile {
  display: none;
}

.formWraper .formWraperBox form .formFileUpload .uploadImgWrap {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.formWraper .formWraperBox form .formFileUpload .uploadImgWrap .imgBgBox {
  position: relative;
  aspect-ratio: 4/3;
  background: #f3f4f6;
  border-radius: 12px;
  overflow: visible;
  border: 1px solid #e5e7eb;
}

.formWraper .formWraperBox form .formFileUpload .uploadImgWrap .imgBgBox .imgBg {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 12px;
}

.formWraper .formWraperBox form .formFileUpload .uploadImgWrap .imgBgBox .uploadImgClose {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  background: #ef4444;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  font-size: 14px;
}

.formWraper .formWraperBox form .formFileUpload .uploadImgWrap .imgBgBox .uploadImgClose:after {
  content: "✖";
}

@media (max-width: 480px) {
  .mobDesign {
    margin-top: 110px;
  }
}

#videoUploadContainer {
  width: 100%;
  margin-top: 24px;
}

#videoUploadContainer .videoBlock {
  width: 100%;
  background: #fdfdfd;
  border: 2px dashed #e5e7eb;
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  text-align: center;
}

#videoUploadContainer .videoBlock:hover {
  border-color: var(--primaryColor);
  background: #f9fafb;
}

#videoUploadContainer .videoBlock .formFileUpload {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

#videoUploadContainer .videoBlock .formFileUpload label {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
}

#videoUploadContainer .videoBlock .formFileUpload label span {
  font-size: 13px;
  color: var(--secondaryTextColor);
  font-weight: 500;
  display: block;
  margin-top: 4px;
}

#videoUploadContainer .videoBlock .formFileUpload .file-upload {
  position: relative;
  width: 100%;
  max-width: 400px;
}

#videoUploadContainer .videoBlock .formFileUpload .file-upload .fileuploader-btn {
  width: 100%;
  height: 56px;
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--primaryColor);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

#videoUploadContainer .videoBlock .formFileUpload .file-upload .fileuploader-btn:hover {
  background: var(--primaryColor);
  color: var(--white);
  border-color: var(--primaryColor);
}

#videoUploadContainer .videoBlock .formFileUpload .file-upload .fileuploader-btn::before {
  content: "\e2c6";
  font-family: "Material Symbols Rounded";
  margin-right: 12px;
  font-size: 22px;
}

#videoUploadContainer .videoBlock .formFileUpload .file-upload input.fileuploader {
  display: none;
}

#videoUploadContainer .videoBlock .formFileUpload .videoList {
  width: 100%;
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

#videoUploadContainer .videoBlock .formFileUpload .videoList .videoListBox {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: var(--white);
  padding: 12px;
  border-radius: 16px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
}

#videoUploadContainer .videoBlock .formFileUpload .videoList .videoListBox video {
  width: 100%;
  height: auto;
  border-radius: 8px;
  background: var(--black);
}

#videoUploadContainer .videoBlock .formFileUpload .videoList .videoListBox .videoListBoxClose {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 32px;
  height: 32px;
  background: #ef4444;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.4);
  transition: transform 0.2s;
  z-index: 10;
}

#videoUploadContainer .videoBlock .formFileUpload .videoList .videoListBox .videoListBoxClose:hover {
  transform: scale(1.1);
}

#videoUploadContainer .videoBlock .formFileUpload #video_err {
  font-size: 13px;
  font-weight: 600;
  margin-top: 8px;
}

.canvasActive {
  width: calc(100% - 100px) !important;
  transition: 0.2s;
}

@media print {
  main {
    display: none;
  }
}

.action-menu {
  position: relative;
  display: inline-block;
}

.action-menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.action-menu-btn:hover {
  background-color: #f0f0f0;
}

.action-dropdown {
  display: none;
  position: fixed;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  z-index: 9999;
  width: 165px;
  height: 90px;
  padding: 8px 0;
  border: 1px solid #f0f0f0;
  text-align: left;
}

.action-dropdown.active {
  display: block;
}

.action-dropdown .dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
  box-sizing: border-box;
  font-weight: 500;
}

.action-dropdown .dropdown-item:hover {
  background-color: #f7f9fc;
  color: var(--primaryColor);
}

.action-dropdown .dropdown-item:hover .material-symbols-rounded {
  color: var(--primaryColor);
}

.action-dropdown .material-symbols-rounded {
  font-size: 20px;
  color: #666;
}

.action-menu-active-custom {
  position: fixed !important;
  right: auto !important;
  width: 165px !important;
  height: auto !important;
  display: block !important;
  z-index: 9999 !important;
}

.service-banner-img {
  height: 100px;
  width: 100px;
  -o-object-fit: contain;
  object-fit: contain;
}

* {
  -moz-user-select: auto !important;
  user-select: auto !important;
  -webkit-user-select: auto !important;
}

::-moz-selection {
  background-color: blue !important;
  color: white !important;
}

::selection {
  background-color: blue !important;
  color: white !important;
}

/* --- Blog View Page Styles --- */
:root {
  --blog-bg: #f8fafc;
  --card-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --accent-gradient: linear-gradient(135deg, var(--secondaryColor) 0%, #a8e5c1 100%);
  --primary-gradient: linear-gradient(135deg, var(--primaryColor) 0%, #007a83 100%);
}

.canvasBodyBlog {
  background-color: var(--blog-bg) !important;
}

.blog-view-wrapper {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding: 20px 2.5%;
  animation: fadeInBlog 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInBlog {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.blog-header-section {
  background: white;
  padding: 50px 40px;
  border-radius: 30px;
  margin-bottom: 30px;
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.blog-header-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: var(--accent-gradient);
  opacity: 0.05;
  border-radius: 50%;
  transform: translate(100px, -100px);
}

.blog-category-label {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  background: rgba(0, 81, 87, 0.05);
  color: var(--primaryColor);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.blog-main-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 25px;
  max-width: 900px;
  letter-spacing: -0.5px;
}

.blog-meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding-top: 25px;
  border-top: 1px solid #f1f5f9;
}

.blog-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #64748b;
  font-size: 15px;
  font-weight: 500;
}

.blog-meta-item i {
  font-size: 20px;
  color: var(--primaryColor);
  opacity: 0.8;
}

.blog-body-container {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 30px;
  align-items: start;
}

.blog-content-card {
  background: white;
  padding: 40px;
  border-radius: 30px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.blog-media-container {
  margin-bottom: 40px;
  border-radius: 24px;
  overflow: hidden;
  background: #f1f5f9;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.blog-main-img-wrap {
  width: 100%;
  max-height: 550px;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.blog-main-img-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-media-caption {
  padding: 15px 20px;
  background: white;
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #64748b;
  font-style: italic;
}

.section-header-blog {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f1f5f9;
}

.section-header-blog span {
  width: 40px;
  height: 40px;
  background: var(--primary-gradient);
  color: white;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}

.section-header-blog h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--black);
}

.section-header-blog h2 small {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-intro-box {
  background: #f8fafc;
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 40px;
  position: relative;
  border-left: 6px solid var(--primaryColor);
}

.blog-intro-box::after {
  content: "“";
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 80px;
  font-family: serif;
  color: var(--primaryColor);
  opacity: 0.05;
  line-height: 1;
}

.blog-intro-box p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--primaryColor);
  font-weight: 500;
  margin: 0;
}

.blog-article-body {
  font-size: 14px;
  line-height: 1.9;
  color: #334155;
}

.blog-article-body p {
  margin-bottom: 25px;
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: sticky;
  top: 80px;
}

.sidebar-widget {
  background: white;
  padding: 30px;
  border-radius: 24px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.widget-title-blog {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--primaryColor);
}

.widget-title-blog i {
  font-size: 22px;
}

.meta-list-blog {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.meta-card-blog {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.meta-card-blog label {
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.meta-card-blog .value {
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  word-break: break-all;
  background: #f8fafc;
  padding: 10px 15px;
  border-radius: 10px;
  border: 1px solid #f1f5f9;
}

.og-card-blog {
  background: #f8fafc;
  border-radius: 16px;
  padding: 15px;
  border: 1px dashed #cbd5e1;
  margin-top: 10px;
}

@media (max-width: 1024px) {
  .blog-body-container {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .blog-header-section {
    padding: 35px 25px;
  }

  .blog-content-card {
    padding: 30px 20px;
  }

  .blog-main-title {
    font-size: 26px;
  }

  .blog-meta-strip {
    gap: 15px;
  }

  .blog-sidebar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .blog-header-section {
    padding: 25px 20px;
    border-radius: 20px;
  }

  .blog-content-card {
    border-radius: 20px;
  }

  .blog-meta-item {
    font-size: 13px;
  }
}

/*# sourceMappingURL=style.css.map */

/* ======================== PREMIUM CUSTOM DROPDOWN ======================== */

.selectWrapper {
  position: relative;
  width: 100%;
}

.customSelect {
  position: relative;
  width: 100%;
  margin-top: 8px;
}

.selectTrigger {
  width: 100%;
  height: 48px;
  padding: 0 45px 0 20px;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
  outline: none;
}

input.selectTrigger {
  cursor: text;
}

.selectTrigger:hover,
.selectTrigger:focus {
  border-color: var(--primaryColor);
  box-shadow: 0 4px 12px rgba(0, 81, 87, 0.08);
}

.selectTrigger:focus+.selectIcon {
  transform: translateY(-50%) rotate(180deg);
}

.selectTrigger.isOpen {
  border-color: var(--primaryColor);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: none;
}

.selectTrigger span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.selectTrigger .placeholder {
  color: #9ca3af;
}

.selectIcon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 20px;
  color: var(--primaryColor);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
}

.selectTrigger.isOpen+.selectIcon {
  transform: translateY(-50%) rotate(180deg);
}

.customOptions {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: white;
  border: 2px solid var(--primaryColor);
  border-top: none;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  max-height: 250px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

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

.customOption {
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--secondaryTextColor);
  cursor: pointer;
  transition: all 0.2s ease;
}

.customOption:hover {
  background-color: #005157;
  color: white;
  padding-left: 25px;
}

.customOption.selected {
  background-color: #f3f4f6;
  color: var(--primaryColor);
  font-weight: 700;
}

.customOption.placeholderOption {
  display: none;
}

/* Error Message Styling */
.errorMessage {
  display: block;
  font-size: 12px;
  color: var(--fourthColor);
  margin-top: 5px;
  font-weight: 500;
}

/* Enhanced Label with Icon */
.formGroup label {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .styledSelect {
    font-size: 13px;
    height: 42px;
  }

  .selectIcon {
    right: 10px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .styledSelect {
    height: 40px;
    padding: 0px 15px 0px 15px;
    padding-right: 38px;
    font-size: 13px;
  }

  .selectIcon {
    right: 8px;
    font-size: 16px;
  }

  .selectWrapper {
    margin-bottom: 5px;
  }
}

/* Disabled State */
.styledSelect:disabled {
  background: #f3f4f6;
  color: #9ca3af;
  cursor: not-allowed;
  border-color: #e5e7eb;
}

.styledSelect:disabled:hover {
  border-color: #e5e7eb;
  box-shadow: none;
}

/* Logout Popup */
.logoutPopup,
.editPopup {
  position: fixed;
  z-index: 121;
  /* Slightly higher than deletePopup just in case */
  width: 400px;
  padding: 40px;
  background: white;
  border-radius: 10px;
  transform: translateX(-50%);
  left: 50%;
  top: -110%;
  opacity: 0;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease all;
}

@media (max-width: 480px) {

  .logoutPopup,
  .editPopup {
    width: 90%;
    padding: 20px;
  }
}

.logoutPopup .logoutPopupIcon,
.editPopup .editPopupIcon {
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logoutPopup .logoutPopupIcon img,
.editPopup .editPopupIcon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.logoutPopup .logoutPopupIcon span,
.editPopup .editPopupIcon span {
  font-size: 60px;
  color: var(--fourthColor);
}

.logoutPopup p,
.editPopup p {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
  color: black;
}

.logoutPopup span,
.editPopup span {
  font-size: 14px;
  color: var(--secondaryTextColor);
  margin-top: 10px;
  text-align: center;
}

.logoutPopup .logoutPopupBtnArea,
.editPopup .editPopupBtnArea {
  width: 100%;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logoutPopup .logoutPopupBtnArea .closeLogoutPopup,
.editPopup .editPopupBtnArea .closeEditPopup {
  flex: 0 0 48%;
  padding: 12px;
  text-align: center;
  border-radius: 10px;
  background: #F8F5F1;
  color: black;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: 0.2s;
}

.logoutPopup .logoutPopupBtnArea .closeLogoutPopup:hover,
.editPopup .editPopupBtnArea .closeEditPopup:hover {
  transition: 0.2s;
  background: #F4EEE8;
}

.logoutPopup .logoutPopupBtnArea .confirmLogoutPopup,
.editPopup .editPopupBtnArea .confirmEditPopup {
  flex: 0 0 48%;
  padding: 12px;
  text-align: center;
  border-radius: 10px;
  background: var(--primaryColor);
  color: white;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: 0.2s;
}

.logoutPopup .logoutPopupBtnArea .confirmLogoutPopup:hover,
.editPopup .editPopupBtnArea .confirmEditPopup:hover {
  transition: 0.2s;
  background: var(--secondaryColor);
}

.logoutPopupActive,
.editPopupActive {
  top: 20px;
  opacity: 1;
  visibility: visible;
}