@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  color: var(--clr-dark);
  font-family: "Jost", sans-serif!important;
  line-height: 1.5;
}

:root {
  --clr-dark: #222;
  --clr-white: #fff;
  --clr-primary: #7837da;
  --clr-primary-gredient: linear-gradient(
    145deg,
    rgb(29, 205, 254) 0%,
    rgba(120, 55, 218, 1) 100%
  );
  --clr-pink: #cb67ff;
  --clr-secondary: #1dcdfe;
  --clr-danger: #dc3545;
  --bglight: #f2f2f2;
  --textlight: #f2f2f2;
  --clr-input-border: #ddd;
  --divider-gredient: linear-gradient(
    145deg,
    rgb(120, 55, 218) 0%,
    transparent 100%
  );
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

strong {
  color: var(--clr-primary);
}

strong.secondary {
  color: var(--clr-secondary);
}

.badge {
  padding: 2px 10px;
  font-size: 10px;
  line-height: normal;
  font-weight: 600;
  background: var(--clr-primary-gredient);
}

a {
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  color: var(--clr-primary);
}

a:hover {
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.breadcrumb {
  margin: 0;
}

/* scrollbar*/

::-webkit-scrollbar {
  -webkit-appearance: none;
  border-radius: 8px;
}

::-webkit-scrollbar:vertical {
  width: 5px;
}

::-webkit-scrollbar:horizontal {
  height: 5px;
}

::-webkit-scrollbar-track {
  border-radius: 8px;
}

::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.3);
}

/* scrollbar*/

/* header css  */

header {
  background: linear-gradient(
    18deg,
    rgb(29, 205, 254) 0%,
    rgb(120, 55, 218) 100%
  );
  width: calc(100% - 250px);
  position: fixed;
  left: 250px;
  top: 0;
  transition: all 0.3s ease;
  z-index: 99;
}

.header-content {
  border-radius: 3.125rem 0 0 0;
  background: var(--bglight);
  padding: 30px 35px 14px;
}

.header-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 66px;
  padding: 15px 20px;
  background: var(--clr-white);
  border-radius: 15px;
  box-shadow: 0px 12px 23px 0px rgb(139 199 64 / 4%);
}

.brandLogo img {
  width: 150px;
}

.menu-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logout-btn {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logout-btn h6 {
  margin: 0;
  font-size: 14px;
}

.menu-items {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.menu-items li {
  display: flex;
  align-items: center;
}

.menu-items .profile-menu {
  border: 0;
  padding: 0;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-items .profile-menu .profileIcon {
  position: relative;
}

.menu-items .profile-menu h6 {
  font-size: 14px;
  margin: 0;
}

.menu-items .profile-menu i {
  font-size: 22px;
}

.menu-items .profile-menu img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100%;
}

.menu-items .profile-menu .active-status {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: #00e676;
  display: block;
  position: absolute;
  right: -4px;
  bottom: -4px;
  border: 2px solid var(--clr-white);
}

.menu-items li .dropdown-menu .profileTitle {
  padding: 15px;
  position: relative;
  background: var(--clr-primary-gredient);
}

.menu-items li .dropdown-menu .profileTitle .userCard {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 1;
}

.profileTitle .userLogo {
  width: 100px;
  min-width: 100px;
  padding: 10px;
  background: var(--clr-white);
  border-radius: 5px;
  box-shadow: 0 3px 15px -3px rgb(0 0 0 / 15%);
}

.profileTitle .userLogo img {
  width: 100%;
}

.menu-items li .dropdown-menu .profileTitle .userCard h5 {
  font-size: 16px;
  color: var(--clr-white);
  margin: 0;
}

.menu-items li .dropdown-menu {
  animation-name: downAnimation;
}

@keyframes downAnimation {
  from {
    opacity: 0;
    transform: translate3d(0, -10px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 50px, 0);
  }
}

/* header css end */

/* main body  */

.mainBody {
  width: calc(100% - 250px);
  margin-left: auto;
  margin-top: 110px;
  min-height: calc(100vh - 165px);
  transition: all 0.3s ease;
  background: var(--bglight);
  padding: 20px 35px 30px;
}

/* main body end */

/* sidebar  */

.sidebar {
  width: 250px;
  position: fixed;
  top: 0;
  left: 0;
  backface-visibility: hidden;
  min-height: 100vh;
  transition: all 0.3s ease;
  overflow: hidden;
  background: var(--clr-primary-gredient);
  z-index: 999;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 35px 15px 20px;
  min-height: 110px;
  transition: all 0.3s ease-in-out;
}

.sidebar-brandLogo a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.sidebar-brandLogo a img {
  transition: all 0.3s ease-in-out;
  filter: drop-shadow(0px 1px 1px #0000006e);
}

.sidebar-brandLogo a img:first-child {
  width: 35px;
}

.sidebar-brandLogo a img:last-child {
  width: 140px;
}

.sidebar-menus {
  height: calc(100vh - 110px);
  width: 100%;
  overflow: auto;
  overflow-x: hidden;
  padding: 15px 0;
}

.sidebar-menus::-webkit-scrollbar {
  -webkit-appearance: none;
}

.sidebar-menus::-webkit-scrollbar:vertical {
  width: 5px;
}

.sidebar-menus::-webkit-scrollbar:horizontal {
  height: 5px;
}

.sidebar-menus::-webkit-scrollbar-thumb {
  border-radius: 8px;
  border: 0;
  background-color: rgb(187 165 239);
}

.sidebar-menus li {
  background: transparent;
  border: 0;
}
/* .sidebar-menus li .current-page {
  background: #fffdfd;
  color: var(--clr-dark);
  opacity: 1!important;
} */
.sidebar-menus li .current-page i {
  color: var(--clr-dark);
}
.sidebar-menus li a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 13px 15px;
  color: var(--clr-white);
  white-space: nowrap;
  position: relative;
  min-height: 50px;
  font-size: 16px;
  font-weight: 400;
}

.sidebar-menus li a.collapse-menu:after {
  content: "expand_more";
  position: absolute;
  right: 10px;
  top: 50%;
  font-family: "Material Icons";
  font-size: 20px;
  transform: translateY(-50%);
  transition: all 0.1s ease-in-out;
}

.sidebar-menus li a.collapse-menu[aria-expanded="true"]:after {
  transform: translateY(-50%) rotate(180deg);
}

.sidebar-menus li a i {
  font-size: 20px;
  transition: all 0.3s ease-in-out;
  color: var(--textlight);
}

.sidebar-menus li a span {
  transition: all 0.3s ease-in-out;
  display: flex;
  gap: 5px;
  align-items: center;
  font-family: "Jost", sans-serif!important;
}

.badges_count {
  background: var(--clr-primary);
  font-size: 10px;
  width: 20px;
  display: flex;
  height: 20px;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  font-weight: normal;
}

.sidebar-menus li.active a .badges_count {
  background: var(--clr-primary-gredient);
  color: var(--clr-white);
}

.sidebar-menus li a:hover i,
.sidebar-menus li a:hover span,
.sidebar-menus li a.collapse-menu:hover:after,
.sidebar-collapsed .sidebar-menus li a.collapse-menu:hover:after,
.sidebar-menus li a.submenu:hover,
.sidebar-menus li a.current-page {
  opacity: 0.5;
}

.sidebar-menus li.active a:hover i,
.sidebar-menus li.active a:hover span {
  opacity: 1;
}

.sidebar-menus li.active a {
  background: var(--textlight);
  color: var(--clr-dark);
}

.sidebar-menus li.active a i {
  color: var(--clr-dark);
}

.sidebar-menus li a.submenu {
  background: transparent;
  color: var(--clr-white);
  padding: 10px 15px 10px 50px;
  min-height: auto;
}

.sidebar-menus li a.submenu i {
  color: var(--clr-white);
  font-size: 18px;
}

/* sidebar end */

/* footer  */

footer {
  padding: 16px 35px;
  background: var(--clr-white);
  margin-top: auto;
  box-shadow: 0px -12px 23px 0px rgb(139 199 64 / 4%);
  min-height: 55px;
}

footer p {
  margin: 0;
  font-size: 15px;
  line-height: normal;
  text-align: right;
}

/* footer end */

/* toggle switch  */

.toggleSwitch {
  width: 27px;
  height: 27px;
  position: relative;
  border: none;
  background: transparent;
  padding: 0;
}

.toggleSwitch span {
  display: block;
  background: var(--clr-primary);
  width: 100%;
  height: 3px;
  border-radius: 5px;
  margin: 5px 0;
  transition: all 0.3s ease-in-out;
}

.toggleSwitch span:first-child {
  width: 20px;
}

.toggleSwitch span:last-child {
  width: 22px;
}

.toggleMenu {
  width: 30px;
  height: 30px;
  position: relative;
  border: none;
  background: transparent;
  padding: 0;
}

.line-toggle {
  display: block;
  background: var(--clr-white);
  width: 100%;
  height: 3px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  margin: 5px 0;
}

/* toggle switch end */

/* layout  */

.sidebar-collapsed header {
  width: calc(100% - 50px);
  left: 50px;
}

.sidebar-collapsed .mainBody {
  width: calc(100% - 50px);
}

.sidebar-collapsed .sidebar {
  width: 50px;
}

.sidebar-collapsed .toggleSwitch span:first-child {
  transform: translate3d(18px, 9px, 0) rotate(45deg);
  transform-origin: right top;
  width: 10px;
  box-shadow: none;
}

.sidebar-collapsed .toggleSwitch span:nth-child(2) {
  height: 2px;
}

.sidebar-collapsed .toggleSwitch span:last-child {
  transform: translate3d(18px, -9px, 0) rotate(-45deg);
  transform-origin: right bottom;
  width: 10px;
  box-shadow: none;
}

.sidebar-collapsed .sidebar-brandLogo a img:last-child {
  display: none;
}

.sidebar-collapsed .sidebar .toggleSwitch {
  display: none;
}

.sidebar-collapsed .sidebar-menus li a span {
  display: none;
}

.sidebar-collapsed .sidebar-header {
  padding: 35px 10px 20px;
}

.sidebar-collapsed .sidebar-brandLogo a img:first-child {
  width: 25px;
}

.sidebar-collapsed .sidebar-menus li a.collapse-menu::after {
  opacity: 0;
}
@media (max-width: 991px) {
  .btn-generate {
    margin-bottom: 30px;
  }
}
@media (min-width: 1181px) {
  .sidebar-collapsed .sidebar:hover {
    width: 250px;
    border-radius: 0 30px 30px 0;
  }

  .sidebar-collapsed .sidebar:hover .sidebar-brandLogo a img:last-child {
    display: block;
  }

  .sidebar-collapsed .sidebar:hover .toggleSwitch {
    display: block;
  }

  .sidebar-collapsed .sidebar:hover .sidebar-brandLogo a img:first-child {
    width: 35px;
  }

  .sidebar-collapsed .sidebar:hover .sidebar-header {
    padding: 35px 15px 20px;
  }

  .sidebar-collapsed .sidebar:hover .sidebar-menus li a.collapse-menu::after {
    opacity: 1;
  }

  .sidebar-collapsed .sidebar:hover .sidebar-menus li a span {
    display: flex;
  }

  .toggleSwitch:hover span {
    width: 100%;
  }
}

/* layout end */

/* dropdown */

.dropdown-menu {
  box-shadow: 0px 0px 10px -3px rgb(0 0 0 / 50%);
  border-radius: 4px;
  padding: 0;
  animation-name: dropdownAnimation;
  animation-duration: 0.3s;
  animation-fill-mode: both;
  border: 0;
  overflow: hidden;
}

@keyframes dropdownAnimation {
  from {
    opacity: 0;
    transform: translate3d(0, -10px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 38px, 0);
  }
}

.btn-sm ~ .dropdown-menu {
  animation-name: dropdownAnimationsm;
}

@keyframes dropdownAnimationsm {
  from {
    opacity: 0;
    transform: translate3d(0, -10px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 32px, 0);
  }
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: var(--clr-primary);
}

.dropdown-menu a {
  padding: 15px;
  font-size: 14px;
  border-bottom: 1px solid #ddd;
  display: flex;
  align-items: center;
  gap: 12px;
}

.dropdown-menu a .icon-btn {
  width: 32px;
  min-width: 32px;
  height: 32px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgb(0 0 0 / 20%);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-primary);
}

.dropdown-menu a .icon-btn i {
  font-size: 18px;
  color: var(--clr-white);
}

.dropdown-menu li:last-child a {
  border-bottom: 0;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus {
  background: var(--bglight);
  color: var(--clr-dark);
}

.dropdown-menu a .details h5 {
  font-size: 1rem;
  margin: 0;
}

.dropdown-menu a .details p {
  margin: 0;
}

.dropdown-menu a .details .right-arrow {
  margin-left: auto;
}

.dropdown-toggle::after {
  position: relative;
  top: 2px;
}

/* dropdown */

/* Input Style */

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  margin: 0 0 5px 0;
  font-size: 15px;
}

.form-control {
  min-height: 44px;
  padding-left: 0;
  padding-right: 0;
  border: 0;
  border-bottom: 1px solid var(--clr-input-border);
  background: transparent;
  color: var(--clr-dark);
  transition: all 0.3s ease-in-out;
  border-radius: 0;
  font-size: 15px;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--clr-primary);
  background: transparent;
}

.form-control::placeholder {
  font-weight: normal;
}

.form-control:disabled {
  padding: 5px 10px;
}

.form-select:focus {
  border-color: var(--clr-primary);
}

/* Input Style */

/* card  */

.modal-content {
  padding-bottom: 15px;
}

.card,
.modal-content {
  border: 0;
  border-radius: 15px;
  box-shadow: 0px 12px 23px 0px rgb(139 199 64 / 4%);
}

.card-header,
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--clr-input-border);
  background: var(--clr-white);
  padding: 20px 25px;
  border-radius: 15px 15px 0 0 !important;
}

.modal-header,
.card-header h6 {
  margin: 0;
}

.card-body,
.modal-body {
  padding: 25px;
}

.card-header span {
  font-size: 13px;
  font-weight: normal;
  font-family: "Jost", sans-serif;
}

.card-border {
  box-shadow: none;
  border: 1px solid var(--clr-input-border);
}

.progress-bar {
  background: var(--clr-primary-gredient);
}

.progress-bar {
  border-radius: 50px;
}

.progress {
  border-radius: 50px;
}

/* card end */

/* button  */

.btn-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.btn-primary {
  color: var(--clr-white);
  background: var(--clr-primary);
  border-color: var(--clr-primary);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  color: var(--clr-white);
  background: #5018a5;
  border-color: #5018a5;
  box-shadow: none !important;
}

.ThemeBtn {
  padding: 8px 18px;
  border: 1px solid transparent;
  border-radius: 30px;
  background: var(--clr-primary);
  color: var(--clr-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  line-height: normal;
  min-width: 100px;
  min-height: 40px;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  position: relative;
  transition: all 0.5s ease-in-out;
  box-shadow: 0 2px 10px -3px rgb(0 0 0 / 40%);
  overflow: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.ThemeBtn i {
  font-size: 22px;
}

.ThemeBtn:after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
  background: var(--clr-primary);
}

.ThemeBtn:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
  border-radius: 3px;
  background: var(--clr-primary);
}

.ThemeBtn:hover {
  color: var(--clr-primary);
  border: 1px solid var(--clr-primary);
  background: transparent;
}

.ThemeBtn:hover:after {
  width: 0;
  opacity: 1;
  visibility: visible;
}

.ThemeBtn:hover:after,
.ThemeBtn:hover:before {
  width: 0;
  opacity: 1;
  visibility: visible;
}

.btnSecondary {
  background: var(--clr-secondary);
}

.btnSecondary:after,
.btnSecondary:before {
  background: var(--clr-secondary);
}

.btnSecondary:hover {
  color: var(--clr-secondary);
  border: 1px solid var(--clr-secondary);
}

.btnDanger {
  background: var(--clr-danger);
}

.btnDanger:after,
.btnDanger:before {
  background: var(--clr-danger);
}

.btnDanger:hover {
  color: var(--clr-danger);
  border: 1px solid var(--clr-danger);
}

.ThemeBtn-outline {
  padding: 8px 20px;
  background: transparent;
  border: 1px solid var(--clr-primary);
  border-radius: 30px;
  color: var(--clr-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  line-height: normal;
  min-width: 100px;
  min-height: 40px;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  position: relative;
  transition: all 0.5s ease-in-out;
  box-shadow: 0 2px 7px -3px rgb(0 0 0 / 30%);
  backface-visibility: hidden;
}

.ThemeBtn-outline i {
  font-size: 22px;
}

.btn-sm {
  padding: 0.25rem 15px;
  font-size: 0.875rem;
  min-width: fit-content;
  min-height: 32px;
}

/* button end */

/* Page title  */

.pageTitle {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 30px;
}

.pageTitle h2 {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 18px;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin: 0;
  color: var(--clr-primary);
}

.iconBox {
  color: var(--clr-white);
  background: var(--clr-primary);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  box-shadow: 0 2px 5px rgb(0 0 0 / 30%);
  border: 0;
  transition: all 0.3s ease-in-out;
}

.iconBox i {
  font-size: 16px;
  color: var(--clr-white);
}

a.iconBox:hover,
button.iconBox:hover {
  background: #5018a5;
}

.pageTitle h2 i {
  font-size: 16px;
  color: var(--clr-white);
  background: var(--clr-primary-gredient);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  box-shadow: 0 2px 5px rgb(0 0 0 / 30%);
}

.pageTitle h2 strong {
  color: var(--clr-primary);
}

.subTitle {
  font-size: 15px;
  margin: 0 0 20px;
  position: relative;
  padding-bottom: 10px;
}

.subTitle:after {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  background: var(--divider-gredient);
  bottom: 0;
  left: 0;
}

/* Page title end */

/* date input  */

.dateInput {
  position: relative;
}

.dateInput:after {
  content: "\ebcc";
  font-family: "Material Icons";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--clr-dark);
}

/* date input end  */

/* swiper  */

.swiper-arrows div {
  width: 40px;
  height: 30px;
  border-radius: 3px;
  background: var(--clr-dark);
  box-shadow: 0 2px 5px rgb(0 0 0 / 30%);
  transition: all 0.3s ease-in-out;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}

.swiper-arrows div:after {
  font-size: 12px;
  color: var(--clr-white);
}

.swiper-arrows div.swiper-button-prev {
  left: -20px;
  justify-content: flex-end;
  padding-right: 8px;
}

.swiper-arrows div.swiper-button-next {
  right: -20px;
  justify-content: flex-start;
  padding-left: 8px;
}

.swiper-arrows div.swiper-button-disabled {
  opacity: 0;
}

/* swiper end */

/* fill Radio */

.fillRadio {
  display: flex;
  align-items: center;
  gap: 15px;
}

.radioBox input {
  display: none;
}

.radioBox label {
  padding: 5px 20px;
  border: 1px solid var(--clr-input-border);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  border-radius: 30px;
  font-size: 14px;
}

.radioBox input[type="radio"]:checked + label {
  background: var(--clr-primary);
  color: var(--clr-white);
  border-color: var(--clr-primary);
  box-shadow: 0 2px 5px rgb(0 0 0 / 30%);
}

/* fill Radio end */

/* checkbox  */

.custom-checkbox {
  position: relative;
  width: fit-content;
}

.custom-checkbox input {
  display: none;
}
.sub-submenu2 {
  padding: 10px 15px 10px 80px!important;
  background: transparent!important;
  color: #fff!important;
}
.sub-submenu2 .material-icons {
  color: #fff!important;
}
.custom-checkbox label {
  width: fit-content;
  min-width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  gap: 10px;
  line-height: normal;
  position: relative;
}

.custom-checkbox label:before {
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid var(--clr-input-border);
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

.custom-checkbox label:after {
  content: "check";
  position: absolute;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  font-family: "Material Icons";
  transition: all 0.3s ease-in-out;
  font-weight: normal;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.custom-checkbox input[type="checkbox"]:checked + label:after {
  opacity: 1;
  color: var(--clr-white);
}

.custom-checkbox input[type="checkbox"]:checked + label:before {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.8);
}
button.close,
button.close {
  background: #71797c;
  border: none;
  color: #ffff;
  font-size: 19px;
  padding: 0px 9px;
  border-radius: 2px;
}
div#previewEmailMessage {
  background: #fff;
  padding: 20px;
}
div#nav-home {
  max-height: 308px;
  overflow: auto;
}
#emailReceipt th.sorting_disabled:first-child {
  width: 20% !important;
}
#emailReceipt .dataTables_scrollHeadInner{
  width: 100% !important;
}
#emailReceipt div.dataTables_scrollHead table.dataTable{
  width: 100% !important;
}
.rejected{
  background-color: #f8d7da;
  padding: 6px 12px;
  border-radius: 6px;
  color: #721c24;
  display: inline-block;
  min-width: 94px;
  text-align: center;
  cursor: pointer;
}
.approved{
  background-color: #d4edda;
  padding: 6px 12px;
  border-radius: 6px;
  color: #155724;
  display: inline-block;
  min-width: 94px;
  text-align: center;
}
@media (min-width: 576px) {
  .modal-dialog {
      max-width: 700px;
      margin: 1.75rem auto;
  }
}
/* checkbox end */

/* data table  */

.dataTables_wrapper .row:first-child {
  margin: 0 0 15px !important;
}

.dataTables_wrapper .dataTables_length label {
  display: flex;
  align-items: center;
}

.dataTables_wrapper .dataTables_length label select {
  border-radius: 0;
  width: fit-content;
  outline: none;
  margin: 0 10px 0 5px;
  background-color: transparent;
  padding-top: 5px;
  padding-bottom: 5px;
}

.dataTables_wrapper .dataTables_length label select:focus {
  box-shadow: none;
}

.dataTables_filter label {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
}

.dataTables_filter label input {
  min-height: auto;
  padding: 5px 10px;
  font-size: 14px;
  border: 1px solid var(--clr-input-border);
}

.dataTables_wrapper table {
  margin-top: 0 !important;
  margin-bottom: 15px !important;
}

.dataTables_wrapper table thead th.sorting_asc::before,
.dataTables_wrapper table thead th.sorting_desc::after {
  opacity: 1 !important;
}

.dataTables_wrapper table thead th.sorting_asc::after,
.dataTables_wrapper table thead th.sorting_desc::before {
  opacity: 0.3 !important;
}

.dataTables_wrapper table tbody tr.odd {
  background: var(--clr-white);
}

.dataTables_wrapper table tbody tr.even {
  background: var(--bglight);
}

.dataTables_wrapper .page-link {
  color: var(--clr-primary);
  outline: none;
}

.dataTables_wrapper .page-link:focus {
  box-shadow: none;
}

.dataTables_wrapper .page-item.active .page-link {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
}

.table > :not(:first-child) {
  border-top: 1px solid currentColor;
}

.table thead th {
  padding-top: 15px;
  padding-bottom: 15px;
  background: var(--bglight);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  font-family: "Jost", sans-serif!important;
}

.table tbody td {
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 14px;
  vertical-align: middle;
  white-space: nowrap;
  font-family: "Jost", sans-serif!important;
}
.action-btn {
  position: relative;
  display: flex;
  gap: 10px;
}
.btn-pass1 {
  justify-content: space-between;
  top: 12px;
}

.action-btn .danger {
  background-color: var(--bs-danger);
}

.action-btn .danger:hover {
  background-color: #b41626;
}

.action-btn .result {
  background-color: var(--clr-secondary);
}

.action-btn .result:hover {
  background-color: #0d96bd;
}

.action-btn .dropdown-toggle {
  background: var(--clr-primary-gredient);
  border: 0;
}

.dataTables_wrapper .row:last-child {
  margin: 0 0 10px !important;
}

/* data table end */

/* social grid  */

.socialInfobox-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--clr-input-border);
  margin-bottom: 15px;
}

.socialInfobox-grid:last-child {
  border: 0;
}

.socialBrand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.socialBrand img {
  width: 32px;
}

.socialBrand h6 {
  font-size: 14px;
  margin: 0;
}

.social-counter {
  margin: 0;
  font-size: 16px;
  color: #7837da;
  font-weight: bold;
}

/* social grid  */

.hide {
  display: none;
}

/* input groups */

.findInput {
  position: relative;
}

.findInput .ThemeBtn {
  position: absolute;
  right: 0;
  min-width: fit-content;
  padding: 0;
  width: 34px;
  min-height: 34px;
  top: 50%;
  transform: translateY(-50%);
}

.findInput .ThemeBtn i {
  font-size: 18px;
}

.findInput input.form-control {
  padding-right: 40px;
}

.multiInput-group {
  display: flex;
  align-items: center;
  gap: 24px;
}

.multiInput-group .ThemeBtn {
  min-width: fit-content;
}

.fileInput {
  min-height: auto;
  padding: 6px 10px;
  line-height: normal;
  border: 0;
  border-bottom: 1px solid;
  border-color: var(--clr-input-border);
}

.btn-close:focus {
  box-shadow: none;
}

/* input groups */

/* file drag drop  */

.file-preview {
  border: 0;
  padding: 0;
}

.file-preview .file-drop-zone {
  margin: 0;
  padding: 15px;
  border-radius: 5px;
  min-height: 200px;
}

.file-preview .file-drop-zone-title {
  padding: 65px 10px;
}

.file-preview .file-preview-frame {
  margin: 5px;
}

.file-preview .fileinput-remove {
  background-size: 8px;
  background-color: var(--clr-secondary);
  border-radius: 100%;
  opacity: 1;
  box-shadow: 0 2px 10px -5px rgb(0 0 0 / 50%);
  top: -10px;
  right: -10px;
}

.file-caption .form-control {
  border: 1px solid var(--clr-input-border);
  min-height: 40px;
  padding: 5px 12px;
  border-radius: 5px 0 0 5px;
}

.file-caption .fileinput-remove-button {
  min-height: 40px;
  border: 0;
  background: var(--clr-secondary);
  color: var(--clr-white);
}

.file-caption .btn-file {
  min-height: 40px;
  border-radius: 0;
  background: var(--clr-primary);
  border: 0;
  cursor: pointer;
  border-radius: 0 5px 5px 0;
}

/* file drag drop  */

/* vertical tab  */

.verticalTab-layout {
  display: flex;
}

.verticalTab-layout .nav-tabs {
  flex-direction: column;
  border: 0;
}

.newPass1 {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: hsl(206deg 25.99% 87.23%) !important;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  min-height: 44px;
  background: transparent;
  color: var(--clr-dark);
  transition: all 0.3s ease-in-out;
  font-size: 15px;
}

.verticalTab-layout .nav-tabs .nav-link {
  display: flex;
  gap: 30px;
  border: 0;
  border-radius: 0;
  width: 100%;
  padding: 0;
  position: relative;
}

.verticalTab-layout .nav-tabs .nav-link:after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 2px;
  background: var(--clr-primary);
  position: relative;
}

.verticalTab-layout .nav-tabs .nav-link:before {
  content: "";
  position: absolute;
  right: 1px;
  top: 10px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-right: 8px solid var(--clr-primary);
  border-bottom: 8px solid transparent;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}

.verticalTab-layout .nav-tabs .nav-link span {
  background: var(--bglight);
  width: 100%;
  text-align: left;
  padding: 8px 15px;
  margin-bottom: 15px;
  color: var(--clr-dark);
  white-space: nowrap;
  border-radius: 5px;
}

.verticalTab-layout .nav-tabs .nav-link:last-child span {
  margin-bottom: 0;
}

.verticalTab-layout .nav-tabs .nav-link.active span {
  background: var(--clr-primary-gredient);
  color: var(--clr-white);
}

.verticalTab-layout .nav-tabs .nav-link.active:before {
  opacity: 1;
}

.verticalTab-layout .tab-content {
  padding: 0 30px;
  width: 100%;
}

.verticalTab-layout .tab-content .tab-pane {
  height: 100%;
}

.verticalTab-layout .tab-content .tab-pane .card {
  border-radius: 10px;
  height: 100%;
}

.verticalTab-layout .tab-content .tab-pane .card-header {
  border-radius: 10px 10px 0 0 !important;
  padding: 12px 20px;
}

.verticalTab-layout .tab-content .tab-pane .card-header h6 {
  line-height: normal;
}

.verticalTab-layout .tab-content .tab-pane .card-body {
  padding: 20px;
}

@media (max-width: 767.98px) {
  .verticalTab-layout {
    flex-direction: column;
    width: 100%;
  }

  .verticalTab-layout .nav-tabs {
    flex-direction: row;
    overflow-y: hidden;
    flex-wrap: nowrap;
    gap: 15px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 0 20px;
  }

  .verticalTab-layout .nav-tabs .nav-link {
    width: fit-content;
  }

  .verticalTab-layout .nav-tabs .nav-link:after,
  .verticalTab-layout .nav-tabs .nav-link:before {
    display: none;
  }

  .verticalTab-layout .nav-tabs .nav-link span {
    margin: 0 0 10px;
  }

  .verticalTab-layout .tab-content {
    padding: 0;
  }
}

.dashboard-menu {
  display: flex;
}
.serach-icon .form-control {
  min-height: 0;
  padding: 0;
  border-bottom: 1px solid #6c757d;
}
.serach-icon {
  margin-left: 15px;
}

/* Define the input container */
.serach-icon {
  position: relative;
  display: inline-block;
}

.serach-icon input {
  padding-left: 36px;
  font-size: 16px;
  width: 10em;
}

.custom-placeholder {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
  pointer-events: none;
}

.material-icon {
  font-family: "Material Icons";
  font-size: 18px;
}

.icon-txt {
  position: relative;
  top: -3px;
}
.main-input1 {
  border: 1px solid #ccd;
  min-height: 0px !important;
  border-radius: 5px;
}
.logo-insert p {
  font-size: 12px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 15px;
  font-weight: 500;
  color: black;
}
.btn-generate .btn-1 {
  border-radius: 50px;
  color: #7837da;
  font-size: 20px;
  outline: navajowhite;
  border: navajowhite;
  background: #fff;
  width: 130px;
  height: 45px;
  text-align: center;
  border: 1px solid;
}
.project-text {
  font-size: 18px;
  font-weight: 700;
}
.detail-text {
  font-size: 20px;
  font-weight: 500;
}
.btn-generate .btn-1:hover {
  background: #7837da;
  color: #fff;
}
.box .bi-cursor {
  margin-right: 2px;
}
.box .bi-printer {
  margin-right: 6px;
}
.logo-insert .form-control {
  border: none;
}
.btn-generate .btn-2 {
  border-radius: 50px;
  color: #7837da;
  font-size: 20px;
  outline: navajowhite;
  border: navajowhite;
  background: #fff;
  width: 130px;
  height: 45px;
  text-align: center;
  border: 1px solid;
  margin-left: 10px;
}
.btn-generate .btn-2:hover {
  background: #7837da;
  color: #fff;
}
.btn-4 {
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  outline: navajowhite;
  border: navajowhite;
  margin: 10px 5px;
  background: #5d4696;
  width: 99px;
  height: 40px;
}
.gr-black {
  margin-top: 8px;
}
.btn-generate2 {
  padding: 13px;
  text-align: center;
  height: 465px;
}
.preview-img {
  height: 276px !important;
}

.btn-5 {
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  outline: navajowhite;
  border: navajowhite;
  margin: 10px 0px;
  background: #5d4696;
  width: 210px;
  height: 40px;
  text-align: center;
}
.btn-6 {
  border-radius: 10px;
  color: #5d4696;
  font-size: 16px;
  outline: navajowhite;
  border: navajowhite;
  margin: 10px 0px;
  box-shadow: rgba(136, 165, 191, 0.48) 6px 2px 15px 3px,
    rgba(255, 255, 255, 0.8) -6px -9px 16px 0px;
  width: 210px;
  height: 40px;
}
.files input {
  outline: 2px dashed #3c1b6d;
  outline-offset: -10px;
  -webkit-transition: outline-offset 0.15s ease-in-out,
    background-color 0.15s linear;
  transition: outline-offset 0.15s ease-in-out, background-color 0.15s linear;
  padding: 70px 0px 85px 35%;
  text-align: center !important;
  margin: 0;
  width: 100% !important;
  border-radius: 20px;
  opacity: 0;
}
.logo-fileup {
  outline: 2px dashed #3c1b6d;
  outline-offset: -10px;
  transition: outline-offset 0.15s ease-in-out, background-color 0.15s linear;
  text-align: center !important;
  margin: 0;
  width: 100% !important;
  border-radius: 20px;
}
.logo-insert {
  padding-bottom: 50px;
}
.files input:focus {
  outline: 2px dashed #92b0b3;
  outline-offset: -10px;
  -webkit-transition: outline-offset 0.15s ease-in-out,
    background-color 0.15s linear;
  transition: outline-offset 0.15s ease-in-out, background-color 0.15s linear;
  border: 1px solid #92b0b3;
}
.files {
  position: relative;
}
.files:after {
  pointer-events: none;
  position: absolute;
  top: 60px;
  left: 0;
  width: 50px;
  right: 0;
  height: 56px;
  content: "";
  display: block;
  margin: 0 auto;
  background: url(../../img/upload.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top;
}

.box .bi-download {
  margin-right: 8px;
  font-size: 17px;
}
.color input {
  background-color: #f1f1f1;
}
.files:before {
  position: absolute;
  bottom: 25px;
  left: 0;
  pointer-events: none;
  width: 100%;
  right: 0;
  height: 57px;
  content: "Drag & Drop your file here ";
  display: block;
  margin: 0 auto;
  color: #222;
  font-weight: 600;
  text-transform: capitalize;
  text-align: center;
}
.logo-fileup:before {
  position: absolute;
  bottom: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  right: 0;
  height: 57px;
  content: "JPEG, PNG  files accepted.";
  display: block;
  margin: 0 auto;
  color: #222;
  font-weight: 400;
  text-transform: capitalize;
  text-align: center;
  font-size: 14px;
}
.box img {
  width: 220px;
  margin: 0 auto;
  display: flex;
  padding: 15px 0px;
}
.box {
  background: #f1f0f6;
  border-radius: 20px;
  border: 2px solid #ddd9ef;
}
/* vertical tab end */

.logo-prev1 {
  position: relative;
  top: -154px;
  left: -3px;
}
#prev-logo {
  width: 50px !important;
}

button.btn-refresh {
  border: none;
  background: none;
  position: relative;
  top: 3px;
  color: #7f7f7f;
}

.btn-refresh:hover {
  color: #000;
}
#emailContainer {
  position: relative;
}
#emailContainer .add-email {
  position: absolute;
  top: 7px;
  right: -46px;
}
#emailContainer input {
  width: 90%;
}

.alert-emails{
  display: flex;
}

.alert-emails .alert-email{
  margin: 7px 0 0 10px;
}
.nav-tabs .nav-link.active{background: var(--clr-primary); color: #fff;}
.nav-tabs .nav-link{color:#000}
.logo-modal {
  max-width: 500px;
}

/* loader css */
.lds-roller {
  display: inline-block;
  position: absolute;
  width: 50px;
  height: 50px;
  top: 40%;
  left: 50%;
  transform: translate(-50%);
  z-index: 9;
}
.lds-roller,
.lds-roller div,
.lds-roller div:after {
  box-sizing: border-box;
}
/* .lds-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
} */
 .blur:after{
  background: rgba(0, 0, 0, 0.5);
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}
.blur.lds-roller div:after {
  background: currentColor;
}
.blur .lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7.2px;
  height: 7.2px;
  border-radius: 50%;
  background: #fff;
  margin: -3.6px 0 0 -3.6px;
}
.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}
.lds-roller div:nth-child(1):after {
  top: 62.62742px;
  left: 62.62742px;
}
.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}
.lds-roller div:nth-child(2):after {
  top: 67.71281px;
  left: 56px;
}
.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}
.lds-roller div:nth-child(3):after {
  top: 70.90963px;
  left: 48.28221px;
}
.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}
.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}
.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}
.lds-roller div:nth-child(5):after {
  top: 70.90963px;
  left: 31.71779px;
}
.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}
.lds-roller div:nth-child(6):after {
  top: 67.71281px;
  left: 24px;
}
.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}
.lds-roller div:nth-child(7):after {
  top: 62.62742px;
  left: 17.37258px;
}
.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}
.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12.28719px;
}
@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.help-icon {
  font-size: 16px;
}


