:root {
  --white-color: #ffffff;
  --bs-primary: #f97316;
  --bs-primary-rgb: 249, 115, 22;
  --bs-primary-dark: #f46f10;
  --blue: #3276FF;
  --blue-rgb: 50, 118, 255;
  --blue-dark: #2868e6;
  --bs-success: #00C016;
  --bs-success-dark: #01ad15;
  --bs-success-rgb: 0, 192, 22;
  --bs-secondary: #D9D9D9;
  --bs-secondary-dark: #cacaca;
  --bs-secondary-rgb: 0, 192, 22;
  --para-color: #92929D;
  --light-gray: #969696;
  --head-color: #11142D;
  --text-color: #171717;
  --text-color-rgb: 23, 23, 23;
  --muted-color: #92929D;
  --bs-border-color: #EEE;
  --gray-100: #ededed;
  --dark-15: rgba(0, 0, 0, 0.15);
  --gray-15: #f5f5f5;
  --gray-25: #D9D9D9;
  --gray-50: #92929D;
  --gray-dark: #5F5F5F;
  --top-nav-height: 80px;
  --navbar-height: 50px;
  --footer-height: 317.2px;
  --top-height: var(--top-nav-height)+var(--navbar-height)+34px;
  --adjust-height: var(--top-nav-height) - var(--navbar-height) - 34px;
}
@media only screen and (max-width: 991px) {
  :root {
    --top-nav-height: 70px;
    --footer-height: 394.45px;
  }
}
@media only screen and (max-width: 767px) {
  :root {
    --top-nav-height: 60px;
  }
}
@media only screen and (max-width: 575px) {
  :root {
    --footer-height: 484.64px;
    --navbar-height: 45px;
  }
}
@media only screen and (max-width: 479px) {
  :root {
    --footer-height: 505.64px;
  }
}

@font-face {
  font-family: mainFontSans;
  src: url("../fonts/PlusJakartaSans-Regular.ttf");
}
@font-face {
  font-family: mainFontSansSemiBold;
  src: url("../fonts/PlusJakartaSans-SemiBold.ttf");
}
@font-face {
  font-family: mainFontSansBold;
  src: url("../fonts/PlusJakartaSans-Bold.ttf");
}
body {
  font-family: mainFontSans;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.2px;
  background-color: var(--white-color);
  box-sizing: border-box;
}
body.locked {
  overflow: hidden;
}

/* Style the entire scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f4f4f4;
  border-radius: 10px;
}

/* Scrollbar thumb */
::-webkit-scrollbar-thumb {
  background-color: var(--bs-primary);
  border-radius: 10px;
}

/* Hover effect on thumb */
::-webkit-scrollbar-thumb:hover {
  background-color: var(--bs-primary);
}

::-webkit-scrollbar-thumb:active {
  background-color: var(--bs-primary);
}

.content_wrap {
  min-height: calc(100vh - var(--adjust-height) - var(--footer-height));
  padding-bottom: 40px;
}
.content_wrap section {
  overflow: hidden;
}

ul,
li {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

a {
  transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -webkit-transition: all 0.1s ease-in-out;
  text-decoration: none;
  text-underline-offset: 5px;
  display: inline-block;
  color: var(--text-color);
}
a:not(.card) {
  box-shadow: none !important;
}
a.text-link {
  color: var(--bs-primary) !important;
}
a.underline {
  text-decoration: underline;
}
a.hover:hover {
  color: var(--bs-primary) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: mainFontSansSemiBold;
  font-weight: 700;
  line-height: 1.4;
}

strong,
b {
  font-weight: 800;
  font-family: mainFontSansSemiBold;
}

.ff_semi {
  font-family: mainFontSansSemiBold;
}

.fw-semibold {
  font-family: mainFontSansSemiBold;
  font-weight: 600 !important;
}

.fw-bold {
  font-family: mainFontSansBold;
}

.clickable {
  cursor: pointer;
}

p {
  margin: 0;
  padding: 0;
  color: var(--para-color);
}

.text-justify p {
  text-align: justify;
}

.lh-1 {
  line-height: 1;
}

.aspect_square {
  aspect-ratio: 1/1;
}

.lh-sm {
  line-height: 1.25;
}

.br-30 {
  border-radius: 30px !important;
}

.br_r_pill {
  border-radius: 0 30px 30px 0 !important;
}

input,
.form-control,
button,
.form-select,
.btn {
  box-shadow: none !important;
  outline: none !important;
}

.btn {
  letter-spacing: 0.4px;
}

.form-control:focus {
  border-color: var(--bs-primary) !important;
}

.navbar_wrap .thm-btn.btn_incentive {
  line-height: 1.8;
}
.navbar_wrap .thm-btn.btn_incentive::after {
  display: none;
}
.navbar_wrap .thm-btn.btn_incentive:hover i {
  animation: unset !important;
}

.navbar_wrap .thm-btn,
.navbar_wrap .search_btn a {
  white-space: nowrap;
  font-size: 13px !important;
}
@media only screen and (max-width: 575px) {
  .navbar_wrap .thm-btn,
  .navbar_wrap .search_btn a {
    font-size: 11px !important;
  }
}
.navbar_wrap .thm-btn.small,
.navbar_wrap .search_btn a.small {
  font-size: 10px !important;
}

@media only screen and (max-width: 575px) {
  .navbar_wrap .search_btn a svg {
    width: 20px;
  }
}

.button-wiggle {
  animation: wiggle 4s 2s infinite;
}

@keyframes wiggle {
  5%, 50% {
    transform: scale(1);
  }
  10% {
    transform: scale(0.85);
  }
  15% {
    transform: scale(1.05);
  }
  20% {
    transform: scale(1.05) rotate(-5deg);
  }
  25% {
    transform: scale(1.05) rotate(5deg);
  }
  30% {
    transform: scale(1.05) rotate(-3deg);
  }
  35% {
    transform: scale(1.05) rotate(2deg);
  }
  40% {
    transform: scale(1.05) rotate(0);
  }
}
.text_gradient {
  font-weight: 600;
  color: transparent;
  background-image: linear-gradient(to right, #553c9a, #ee4b2b, #00c2cb, #ff7f50, #553c9a);
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 200%;
  background-position: -200%;
  animation: animated-gradient 2s infinite alternate-reverse;
}

@keyframes animated-gradient {
  to {
    background-position: 200%;
  }
}
.card {
  border-radius: 12px;
}

.button-pulse {
  animation: pulse 2s infinite 3s cubic-bezier(0.25, 0, 0, 1);
  box-shadow: 0 0 0 0 white;
}

@keyframes pulse {
  to {
    box-shadow: 0 0 0 18px rgba(255, 255, 255, 0);
  }
}
.ls_reset {
  letter-spacing: unset !important;
}

.max-w-100 {
  max-width: 100px;
}

.max-w-200 {
  max-width: 200px;
}

.min-w-300 {
  min-width: 300px;
}

.btn-icon {
  min-width: 40px;
  min-height: 40px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn-icon .btn-sm {
  min-width: 30px;
  min-height: 30px;
  width: 30px;
  height: 30px;
}
.btn-icon.nav_btns {
  background: white;
}
.btn-icon.nav_btns:hover {
  color: #ffffff;
  background: transparent;
  border-color: white;
}
.btn-icon.type_1 {
  border-radius: 50%;
  background: #EBF3FF;
}
.btn-icon.type_1 img {
  width: 16px;
}
.btn-icon.type_1.img_md img {
  width: 20px;
}
.btn-icon.circle_sm {
  min-width: 25px !important;
  min-height: 25px !important;
  width: 25px !important;
  height: 25px !important;
  font-size: 13px;
}

.form-select {
  max-width: -moz-fit-content;
  max-width: fit-content;
  border-color: var(--bs-border-color) !important;
}
.form-select.filter_btn {
  padding-left: 15px;
  border-radius: 8px;
  font-size: 13px;
}

img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.text-xxs {
  font-size: 10px;
}

.text-xs {
  font-size: 11px;
}

.text_sm {
  font-size: 12px !important;
}

.text-small {
  font-size: 14px;
}

.text-md {
  font-size: 18px;
}

.bg-light {
  background: var(--gray-15);
}

.text-primary {
  color: var(--bs-primary) !important;
}

.text-indigo {
  color: var(--bs-indigo) !important;
}

.text-muted {
  color: var(--muted-color) !important;
}

.text-default {
  color: var(--text-color);
}

.text-white {
  color: var(--white-color);
}

.display-inline {
  display: inline-block;
  width: 100%;
  vertical-align: top;
}

.container {
  max-width: 98%;
}
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1300px;
  }
}
@media (min-width: 1665px) {
  .container {
    max-width: 1365px;
  }
}
.container.container_sm {
  max-width: 992px;
}

.btn-primary,
.btn-warning {
  color: #ffffff !important;
  background-color: var(--bs-primary) !important;
  border-color: var(--bs-primary) !important;
}
.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:hover, .btn-primary.active, .btn-primary:active, .btn-primary:focus,
.btn-warning:not(:disabled):not(.disabled).active,
.btn-warning:not(:disabled):not(.disabled):active,
.btn-warning:hover,
.btn-warning.active,
.btn-warning:active,
.btn-warning:focus {
  color: var(--bs-primary) !important;
  background-color: var(--white-color) !important;
  border-color: var(--bs-primary-dark) !important;
}

.btn-outline-primary {
  color: var(--bs-primary) !important;
  background-color: transparent !important;
  border-color: var(--bs-primary) !important;
}
.btn-outline-primary:not(:disabled):not(.disabled).active, .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:hover, .btn-outline-primary.active, .btn-outline-primary:active, .btn-outline-primary:focus {
  color: #ffffff !important;
  background-color: var(--bs-primary-dark) !important;
  border-color: var(--bs-primary-dark) !important;
}

.btn-trans {
  color: var(--white-color) !important;
  border-color: var(--white-color) !important;
  background-color: transparent !important;
  transition: background-color 1s ease-in-out;
}
.btn-trans:not(:disabled):not(.disabled).active, .btn-trans:not(:disabled):not(.disabled):active, .btn-trans:hover, .btn-trans.active, .btn-trans:active, .btn-trans:focus {
  color: var(--bs-primary) !important;
  background-color: var(--white-color) !important;
}

.btn-blue {
  color: #ffffff !important;
  background-color: var(--blue) !important;
  border-color: var(--blue) !important;
}
.btn-blue:not(:disabled):not(.disabled).active, .btn-blue:not(:disabled):not(.disabled):active, .btn-blue:hover, .btn-blue.active, .btn-blue:active, .btn-blue:focus {
  background-color: var(--blue-dark) !important;
  border-color: var(--blue-dark) !important;
}

.btn-outline-blue {
  color: var(--blue) !important;
  background-color: transparent !important;
  border-color: var(--blue) !important;
}
.btn-outline-blue:not(:disabled):not(.disabled).active, .btn-outline-blue:not(:disabled):not(.disabled):active, .btn-outline-blue:hover, .btn-outline-blue.active, .btn-outline-blue:active, .btn-outline-blue:focus {
  color: #ffffff !important;
  background-color: var(--blue-dark) !important;
  border-color: var(--blue-dark) !important;
}

.btn-success {
  --bs-btn-bg: var(--bs-success);
  --bs-btn-border-color: var(--bs-success);
  --bs-btn-hover-bg: var(--bs-success-dark);
  --bs-btn-hover-border-color: var(--bs-success-dark);
  --bs-btn-active-bg: var(--bs-success-dark);
  --bs-btn-active-border-color: var(--bs-success-dark);
  --bs-btn-disabled-bg: var(--bs-success);
  --bs-btn-disabled-border-color: var(--bs-success);
}

.btn-secondary {
  --bs-btn-disabled-color: var(--gray-50);
  --bs-btn-color: var(--gray-50);
  --bs-btn-bg: var(--bs-secondary);
  --bs-btn-border-color: var(--bs-secondary);
  --bs-btn-hover-bg: var(--bs-secondary-dark);
  --bs-btn-hover-border-color: var(--bs-secondary-dark);
  --bs-btn-active-bg: var(--bs-secondary-dark);
  --bs-btn-active-border-color: var(--bs-secondary-dark);
  --bs-btn-disabled-bg: var(--bs-secondary);
  --bs-btn-disabled-border-color: var(--bs-secondary);
}
.btn-secondary:hover {
  --bs-btn-hover-bg: var(--bs-secondary-dark);
}

.btn-outline-secondary {
  --bs-btn-border-color: var(--bs-secondary);
  --bs-btn-hover-border-color: var(--bs-secondary-dark);
  --bs-btn-active-border-color: var(--bs-secondary-dark);
  --bs-btn-disabled-border-color: var(--bs-secondary);
}
.btn-outline-secondary:hover {
  --bs-btn-hover-color: var(--gray-50);
  --bs-btn-hover-bg: var(--bs-secondary);
  --bs-btn-hover-border-color: var(--bs-secondary-dark);
}

.logo_wrap {
  max-width: 210px;
  display: flex;
}
.logo_wrap img {
  height: auto;
  max-height: 100%;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.control_section {
  background: var(--gray-15);
  padding: 5px 0;
  min-height: 34px;
}

header,
.append_nav,
.navbar_wrap {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: position 1s ease-in-out;
}

.dropdown-menu {
  border-radius: 8px !important;
}
.dropdown-menu .dropdown-item:active, .dropdown-menu .dropdown-item.active {
  background: var(--bs-primary);
}

.top_nav {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
  height: var(--top-nav-height);
  border-bottom: 1px solid var(--neutral-300, #D4D4D4);
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.top_nav .container > div {
  padding: 8px 0;
}
.top_nav .logo_wrap {
  height: calc(var(--top-nav-height) - 25px);
  max-height: calc(var(--top-nav-height) - 25px);
}
@media only screen and (min-width: 576px) {
  .top_nav .logo_wrap {
    height: calc(var(--top-nav-height) - 20px);
    max-height: calc(var(--top-nav-height) - 20px);
  }
}
.top_nav .logo_icons img {
  max-height: calc(var(--top-nav-height) - 30px);
}
@media only screen and (min-width: 480px) {
  .top_nav .logo_icons img {
    max-height: calc(var(--top-nav-height) - 20px);
  }
}
.top_nav span,
.top_nav a {
  color: #171717;
  font-size: 14px;
  font-weight: 600;
}
.top_nav span.small,
.top_nav a.small {
  font-size: 80%;
}

.append_nav {
  top: var(--top-nav-height);
}

.navbar_wrap {
  top: var(--top-nav-height);
  background: var(--bs-primary);
}
.navbar_wrap .secondary_nav {
  min-height: var(--navbar-height);
}
.navbar_wrap .secondary_nav a {
  transition: all 0.1s ease-in-out !important;
}
.navbar_wrap .secondary_nav .dropdown-toggle {
  display: flex;
  align-items: center;
}
.navbar_wrap .secondary_nav .dropdown-toggle::after {
  content: "\f107";
  display: inline-block;
  font-family: FontAwesome !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  top: 0;
  left: 2px;
  border: 0;
  transition: top 0.1s ease-in;
  font-size: 20px;
}
.navbar_wrap .secondary_nav .navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 25px;
  height: var(--navbar-height);
  outline: none;
}
.navbar_wrap .secondary_nav .navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 100%;
  height: 2px;
  position: relative;
}
.navbar_wrap .secondary_nav .navbar-toggler .navbar-toggler-icon:before, .navbar_wrap .secondary_nav .navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 100%;
  height: 2px;
  content: "";
  top: -8px;
}
.navbar_wrap .secondary_nav .navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}
.navbar_wrap .secondary_nav .navbar-toggler.show .navbar-toggler-icon {
  background: transparent;
}
.navbar_wrap .secondary_nav .navbar-toggler.show .navbar-toggler-icon:before, .navbar_wrap .secondary_nav .navbar-toggler.show .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  top: 0;
  transform: rotate(45deg);
}
.navbar_wrap .secondary_nav .navbar-toggler.show .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.multi_level_drop {
  width: 100%;
  background: var(--bs-primary);
  min-height: var(--navbar-height);
}
@media only screen and (max-width: 991px) {
  .multi_level_drop {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .multi_level_drop.show {
    display: block;
    min-height: calc(100vh - var(--adjust-height));
  }
}
.multi_level_drop .parent {
  display: inline-block;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (max-width: 991px) {
  .multi_level_drop .parent {
    width: 100%;
  }
}
.multi_level_drop .parent a {
  color: var(--white-color);
  text-align: right;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.14px;
  transition: all 0.1s ease-in-out !important;
  padding: 8px 6px !important;
  white-space: nowrap;
}
@media only screen and (min-width: 992px) {
  .multi_level_drop .parent a {
    padding: 8px 5px !important;
    font-size: 13px;
  }
}
@media only screen and (min-width: 1200px) {
  .multi_level_drop .parent a {
    padding: 8px 12px !important;
    font-size: 14px;
  }
}
@media only screen and (min-width: 1400px) {
  .multi_level_drop .parent a {
    font-size: 15px;
  }
}
.multi_level_drop .parent a .expand::after {
  content: "\f107";
  display: inline-block;
  font-family: FontAwesome !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  top: 0;
  left: 2px;
  border: 0;
  transition: top 0.1s ease-in;
  font-size: 20px;
  margin-left: 2px;
}
.multi_level_drop .multilevel-dropdown-menu {
  position: relative;
  z-index: 999;
}
.multi_level_drop .multilevel-dropdown-menu > li.parent {
  padding: 6px 0 !important;
}
.multi_level_drop .multilevel-dropdown-menu > li.parent > a {
  border-radius: 10px;
}
.multi_level_drop .multilevel-dropdown-menu > li.parent:hover > a {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.15) !important;
}
.multi_level_drop .multilevel-dropdown-menu > li.parent:hover > a .expand::after {
  top: 3px;
}
@media only screen and (max-width: 991px) {
  .multi_level_drop .multilevel-dropdown-menu > li.parent .child {
    padding-left: 30px;
  }
  .multi_level_drop .multilevel-dropdown-menu > li.parent .child .parent .child {
    padding-left: 60px;
  }
}
@media only screen and (min-width: 992px) {
  .multi_level_drop .multilevel-dropdown-menu > li.parent .child {
    max-width: 250px;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 200px;
  }
}
.multi_level_drop .multilevel-dropdown-menu > li.parent .child .parent .expand::after {
  transform: rotate(-90deg);
}
.multi_level_drop .multilevel-dropdown-menu > li.parent .child li {
  width: 100%;
}
.multi_level_drop .child {
  display: none;
}
@media only screen and (min-width: 992px) {
  .multi_level_drop .child {
    border-radius: 8px;
    border: 1px solid #e7e7e7;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background: var(--white-color);
  }
}
.multi_level_drop .child li {
  line-height: 1.5;
}
@media only screen and (min-width: 992px) {
  .multi_level_drop .child li {
    background-color: #ffffff;
  }
}
.multi_level_drop .child li:first-child {
  border-radius: 8px 8px 0 0;
}
.multi_level_drop .child li:last-child {
  border-radius: 0 0 8px 8px;
}
.multi_level_drop .child li a {
  color: var(--head-color);
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.multi_level_drop .child li a > span:first-child {
  max-width: calc(100% - 10px);
  white-space: normal;
  padding-right: 8px;
}
@media only screen and (min-width: 992px) {
  .multi_level_drop .child li:hover {
    background: rgba(var(--bs-primary-rgb), 0.15) !important;
  }
}
.multi_level_drop .child li:hover > a {
  color: var(--white-color);
}
@media only screen and (min-width: 992px) {
  .multi_level_drop .child li:hover > a {
    color: var(--bs-primary);
  }
}
.multi_level_drop ul {
  list-style: none;
  margin: 0;
  padding: 0px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 992px) {
  .multi_level_drop ul {
    flex-direction: row;
  }
}
.multi_level_drop ul ul ul {
  left: 100%;
  top: 0;
  margin-left: 1px;
}
.multi_level_drop .parent:hover > ul {
  display: block;
  position: absolute;
  top: 100%;
}
.multi_level_drop .parent:hover > ul.child ul {
  top: 0;
}
@media only screen and (max-width: 991px) {
  .multi_level_drop .parent:hover > ul {
    position: relative;
    width: 100%;
  }
  .multi_level_drop .parent:hover > ul.child .parent:hover > ul.child {
    transform: translateX(-100%);
    padding-left: 20px;
  }
}

.icon_box {
  width: 30px;
  min-width: 30px;
  max-width: 30px;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.icon_box.bg-primary i {
  color: #ffffff;
}
.icon_box.size_sm {
  width: 40px;
  min-width: 40px;
  max-width: 40px;
}
.icon_box.size_sm svg {
  width: 25px;
}
.icon_box.size_md {
  width: 50px;
  min-width: 50px;
  max-width: 50px;
}
.icon_box.size_md svg {
  width: 28px;
}

.footer_wrap {
  background: var(--gray-15);
}
.footer_wrap span,
.footer_wrap a {
  font-size: 14px;
  font-weight: 900;
  color: #2E2E38;
}
.footer_wrap span.small,
.footer_wrap a.small {
  font-size: 12px;
}
.footer_wrap span.underline,
.footer_wrap a.underline {
  transition: all 0.2s ease-in-out;
  letter-spacing: 0.5px;
}
.footer_wrap a:hover {
  color: var(--bs-primary);
}
.footer_wrap .link_group a {
  margin-bottom: 6px;
}
.footer_wrap h6 {
  margin-bottom: 1rem;
}

.poster_heading {
  text-align: center;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-block: 5px;
  padding: 0.3rem;
}
.poster_heading h1 {
  color: #171717;
  font-family: mainFontSans;
  font-weight: 800;
  margin: 0;
  font-size: 1.5rem;
  text-decoration: underline;
  /* Adds underline to the heading */
}
.poster_heading p {
  color: #171717;
  font-family: mainFontSans;
  font-weight: 550;
  max-width: 85%;
  font-size: 1.3rem;
  display: flex;
  text-align: center;
  margin: 0.7rem;
}

.banner-section {
  position: relative;
  overflow: hidden;
}
.banner-section .banner-outer {
  position: relative;
}
.banner-section .banner-outer .banner {
  display: inline-block;
  width: 100%;
  vertical-align: top;
}
.banner-section .banner-outer .banner img {
  display: block;
  width: 100%;
}
.banner-section .banner-outer .banner .banner-content {
  position: absolute;
  left: 0;
  bottom: 100px;
  width: 100%;
  z-index: 1;
}
@media only screen and (max-width: 991px) {
  .banner-section .banner-outer .banner .banner-content .container {
    height: 40vh;
    display: flex;
  }
}
.banner-section .banner-outer .banner .banner-content .cnt {
  display: inline-block;
  width: 100%;
  max-width: 570px;
  vertical-align: top;
}
@media only screen and (max-width: 991px) {
  .banner-section .banner-outer .banner .banner-content .cnt {
    padding-left: 0;
    max-width: unset;
    display: flex;
    align-items: end;
  }
}
.banner-section .banner-outer .owl-dots {
  position: absolute;
  left: 0;
  bottom: 20px;
  text-align: center;
  width: 100%;
  display: none;
}
@media only screen and (min-width: 576px) {
  .banner-section .banner-outer .owl-dots {
    z-index: 4;
  }
}
@media (max-width: 991px) {
  .banner-section .banner-outer .owl-dots {
    display: none;
  }
}
.banner-section .banner-outer .owl-dots .owl-dot {
  width: 12px;
  height: 12px;
  background-color: #d9d9d9;
  border-radius: 50%;
  margin: 0 5px;
}
.banner-section .banner-outer .owl-dots .owl-dot.active {
  background-color: var(--bs-primary);
}
.banner-section .owl-dots,
.banner-section .owl-stage-outer {
  z-index: 2;
}
.banner-section .banner-right {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: end;
  justify-content: end;
  z-index: 6;
}
@media only screen and (min-width: 768px) {
  .banner-section .banner-right {
    max-width: 75%;
  }
}
@media only screen and (min-width: 992px) {
  .banner-section .banner-right {
    max-width: 40vw;
    max-width: 400px;
  }
}
.banner-section .banner-right:before {
  position: absolute;
  right: -100px;
  top: 0;
  width: 96%;
  height: 100%;
  background-color: rgba(var(--bs-primary-rgb), 0.4);
  content: "";
  transform: skew(-14deg);
  z-index: 5;
  display: none;
}
@media (max-width: 991px) {
  .banner-section .banner-right:before {
    display: none;
  }
}
.banner-section .banner-right .image-block {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: end;
  margin-left: auto;
  right: -30px;
  z-index: 6;
  max-width: 500px;
}
.banner-section .banner-right .image-block img {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 992px) {
  .banner-section .banner-right .image-block img {
    max-width: 350px;
    max-height: unset;
  }
}
.banner-section .banner-right .image-block .img-cnt {
  display: inline-block;
  width: 100%;
  vertical-align: top;
  background-color: var(--bs-primary);
  text-align: center;
  padding: 10px 10px;
  transform: skew(-20deg);
}
@media (max-width: 575px) {
  .banner-section .banner-right .image-block .img-cnt {
    width: calc(100% + 5vw);
  }
}
@media (min-width: 992px) {
  .banner-section .banner-right .image-block .img-cnt {
    width: calc(100% + 20px);
  }
}
.banner-section .banner-right .image-block .img-cnt h2,
.banner-section .banner-right .image-block .img-cnt p {
  transform: skew(20deg);
  color: var(--white-color);
}
.banner-section .banner-right .image-block .img-cnt h2 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.hero_section.banner-section .banner-outer .banner .banner-content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 20px 0 40px;
  background-blend-mode: multiply;
  background: linear-gradient(194.44deg, rgba(0, 0, 0, 0) 32.35%, rgba(0, 0, 0, 0.5) 104.72%);
  background: rgba(0, 0, 0, 0.33);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 26.31%, rgba(0, 0, 0, 0.6) 96.63%);
}
.hero_section.banner-section .banner-outer .banner .banner-content .cnt h2 {
  color: var(--white-color);
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-family: mainFontSansBold;
  font-size: calc(1.8rem + 1vw);
  font-style: normal;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.hero_section.banner-section .banner-outer .banner .banner-content .cnt p {
  color: var(--white-color);
  font-family: mainFontSans;
  font-size: calc(1rem + 0.2vw);
  font-weight: 500;
  letter-spacing: 0.1px;
  line-height: 1.5;
  margin: 0;
}
.hero_section.banner-section .banner-outer .banner .banner-content .cnt p.small {
  font-size: calc(0.65rem + 0.3vw);
}
.hero_section.banner-section:not(.home_banner) .banner-outer {
  z-index: unset;
}
.hero_section.banner-section:not(.home_banner) .banner-outer .banner img {
  -o-object-position: 70% 50%;
     object-position: 70% 50%;
  min-height: 350px;
  aspect-ratio: 3.5/1;
}
@media only screen and (max-width: 575px) {
  .hero_section.banner-section:not(.home_banner) .banner-outer .banner img {
    min-height: 50vh;
    height: unset;
  }
}
.hero_section.banner-section.home_banner {
  height: calc(100vh - var(--adjust-height));
}
.hero_section.banner-section.home_banner.banner-section .banner-outer {
  z-index: 2;
  height: calc(100vh - var(--adjust-height));
}
.hero_section.banner-section.home_banner.banner-section .banner-outer .banner img {
  height: calc(100vh - var(--adjust-height));
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.5);
  transition: transform 2s ease-in-out;
  visibility: hidden;
}
.hero_section.banner-section.home_banner.banner-section .banner-outer .banner .banner-content {
  visibility: hidden;
  overflow: hidden;
  padding: 20px 0 120px;
}
@media only screen and (max-width: 991px) {
  .hero_section.banner-section.home_banner.banner-section .banner-outer .banner .banner-content {
    justify-content: start;
    background: rgba(0, 0, 0, 0.45);
  }
}
.hero_section.banner-section.home_banner.banner-section .banner-outer .banner .banner-content .cnt {
  padding-left: 0;
}
@media only screen and (max-width: 991px) {
  .hero_section.banner-section.home_banner.banner-section .banner-outer .banner .banner-content .cnt {
    align-items: center;
  }
}
@media only screen and (max-width: 575px) {
  .hero_section.banner-section.home_banner.banner-section .banner-outer {
    z-index: 2;
  }
}
.hero_section.banner-section.home_banner.banner-section .owl-item.active .banner img {
  transform: scale(1);
  visibility: visible;
}
.hero_section.banner-section.home_banner.banner-section .owl-item.active .banner .banner-content {
  visibility: visible;
}

.owl-carousel .owl-nav {
  position: absolute;
  left: 0;
  bottom: 40px;
  height: 40px;
  z-index: 3;
  padding: 0 15px;
  display: none;
  width: -moz-fit-content;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media only screen and (min-width: 992px) {
  .owl-carousel .owl-nav {
    display: flex;
  }
}

.owl-carousel .owl-nav button,
.slide_btns button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--white-color) !important;
  width: 50px;
  height: 50px;
  border-radius: 50% !important;
  color: var(--text-color) !important;
  font-size: 20px;
  text-align: center;
  cursor: pointer !important;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}
.owl-carousel .owl-nav button::before,
.slide_btns button::before {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0;
  width: 100%;
  border-radius: 50%;
  content: "";
  background: var(--bs-primary);
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
  z-index: -1;
}
.owl-carousel .owl-nav button::after,
.slide_btns button::after {
  content: "\e902";
}
.owl-carousel .owl-nav button span,
.slide_btns button span {
  display: none;
}
.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.slide_prev,
.slide_btns button.owl-prev,
.slide_btns button.slide_prev {
  transform: rotate(180deg);
}
.owl-carousel .owl-nav button:hover,
.slide_btns button:hover {
  color: var(--white-color) !important;
}
.owl-carousel .owl-nav button:hover::before,
.slide_btns button:hover::before {
  height: 100%;
}

.slide_btns.has_border button {
  border: 1px solid var(--text-color) !important;
}
.slide_btns.has_border button:hover {
  border-color: var(--bs-primary) !important;
}

.h_para .lead_text {
  color: var(--bs-primary);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 5.04px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
@media only screen and (min-width: 992px) {
  .h_para .lead_text {
    font-size: 16px;
  }
}
.h_para h2 {
  color: var(--head-color);
  font-size: calc(1.5rem + 1vw);
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 992px) {
  .h_para h2 {
    font-size: 2rem;
  }
}
.h_para p {
  color: var(--para-color);
  letter-spacing: 0.2px;
  text-align: justify;
}
.h_para a.btn {
  padding: 7px 20px;
}

.card_effect_1 {
  background: linear-gradient(0deg, rgba(130, 53, 0, 0.08) 0%, rgba(130, 53, 0, 0.08) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0) 36.05%, #000 100%), url(<path-to-image>) lightgray 50%/cover no-repeat;
  z-index: 1;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 1/1.25;
  max-width: 400px;
}
.card_effect_1 > .img-fluid {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card_effect_1 > .img-fluid img {
  transform: scale(1);
  transition: transform 0.5s ease;
}
.card_effect_1 .card_text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1;
  padding: 20px;
  transition: all 0.4s ease-in-out;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 36.31%, rgba(0, 0, 0, 0.8) 96.63%);
}
.card_effect_1 .card_text > div {
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.card_effect_1 .card_text .icon_sm {
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  background: var(--white-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  position: relative;
  z-index: 2;
}
.card_effect_1 .card_text h5 {
  color: var(--white-color);
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.072px;
}
@media only screen and (min-width: 1400px) {
  .card_effect_1 .card_text h5 {
    font-size: calc(1rem + 0.4vw);
  }
}
.card_effect_1 .card_text .para_p {
  opacity: 0;
  transform: translateY(150px);
  transition: all 0.6s ease-in-out;
  position: absolute;
}
.card_effect_1 .card_text .para_p p {
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #e6e6e6;
  font-size: 14px;
  letter-spacing: 0.08px;
}
@media only screen and (min-width: 1400px) {
  .card_effect_1 .card_text .para_p p {
    font-size: calc(0.75rem + 0.2vw);
  }
}
.card_effect_1:hover .card_text {
  background: var(--bs-primary);
  box-shadow: 0px 28px 52px 0px rgba(0, 61, 113, 0.2);
}
.card_effect_1:hover .card_text .icon_sm {
  opacity: 1;
}
.card_effect_1:hover .card_text .para_p {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: relative;
}
.card_effect_1:hover img {
  transform: scale(1.1);
  transition: transform 0.5s ease;
}

.table {
  margin-bottom: 0;
}
.table.rounded-4 {
  overflow: hidden;
}
.table.rounded-4 tbody tr:last-child td:first-child {
  border-radius: 8px 8px 0 0;
}
.table.rounded-4 tbody tr:last-child td:last-child {
  border-radius: 0 0 8px 8px;
}
.table tr th,
.table tr td {
  font-size: 14px;
  vertical-align: middle;
  padding: 8px 8px;
  white-space: nowrap;
}
.table thead td,
.table thead th {
  font-family: Poppins;
  text-transform: uppercase;
  font-weight: normal;
}
.table thead td:last-child,
.table thead th:last-child {
  text-align: end;
}
.table tbody td {
  color: #030203;
}
.table tbody td:last-child {
  text-align: end;
}
.table tbody td:last-child input,
.table tbody td:last-child select,
.table tbody td:last-child .select2-selection__rendered {
  text-align: left !important;
}
.table.no_bg thead,
.table.no_bg th {
  background-color: #ffffff !important;
  color: #92929D !important;
  font-weight: 300;
  font-size: 13px;
}
.table.border-0 {
  --bs-border-width: 0;
}
.table.border-0 tr,
.table.border-0 thead,
.table.border-0 th {
  border: none !important;
}
.table.table_sm tr th,
.table.table_sm tr td {
  padding: 5px 3px 0px;
  font-size: 12px;
  line-height: 1.2;
}
.table.table_sm tr th:not(:first-child),
.table.table_sm tr td:not(:first-child) {
  text-align: center;
}
.table.table_sm tr th {
  padding: 5px 3px;
}
.table.type_2 tr th,
.table.type_2 tr td {
  color: #667085;
  font-size: 13px;
  text-transform: unset;
}

.table_scroll {
  max-height: 300px;
  overflow-y: auto;
  overflow-x: auto;
  margin-right: -8px;
  padding-right: 8px;
  margin-bottom: -8px;
  padding-bottom: 8px;
}
.table_scroll.is_sticky thead {
  position: sticky;
  top: 0;
  z-index: 2;
  box-shadow: 0px 1px 0px #e8e8e8;
}

.table_border.rounded-4 {
  border-radius: 10px !important;
}
.table_border thead tr th:not(:last-child),
.table_border thead tr td:not(:last-child),
.table_border tbody tr th:not(:last-child),
.table_border tbody tr td:not(:last-child) {
  border-right: 1px solid var(--bs-border-color);
}
.table_border tbody tr:last-child td {
  border-bottom: none;
}

.table_box {
  padding: 16px 20px;
}
.table_box.rounded-4 {
  border-radius: 10px !important;
}
.table_box .table tr th,
.table_box .table tr td {
  padding: 8px 5px;
}
.table_box .table tr th:first-child,
.table_box .table tr td:first-child {
  padding: 8px 8px 8px 0;
}
.table_box .table tr th:last-child,
.table_box .table tr td:last-child {
  padding: 8px 0 8px 8px;
}
.table_box .table thead td,
.table_box .table thead th {
  color: #898889;
}
.table_box .table thead td:last-child,
.table_box .table thead th:last-child {
  text-align: end;
}
.table_box .table tbody td {
  color: #030203;
  border: none;
}
.table_box .table tbody td:last-child {
  text-align: end;
}
.table_box .table.profitability_table tr td:first-child {
  white-space: wrap;
  min-width: 220px;
}
.table_box .table.profitability_table tr td:not(:first-child) {
  min-width: 120px;
}

ul.disc_list {
  list-style: disc;
  padding-left: 15px;
}
ul.disc_list li {
  color: var(--para-color);
  list-style: disc;
}

.text-gray {
  color: var(--gray-dark);
}

.text-gray-light {
  color: var(--gray-25);
}

.form_layout {
  /*  For Chrome, Safari, Edge, and Opera */
  /*  For Firefox */
  /* Chrome, Safari, Edge, Opera */
  /* Firefox */
}
.form_layout input:-webkit-autofill {
  box-shadow: 0 0 0 1000px white inset !important;
  -webkit-text-fill-color: #000 !important;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}
.form_layout input:-moz-autofill {
  box-shadow: 0 0 0 30px var(--bg-main) inset !important;
  -moz-text-fill-color: unset !important;
}
.form_layout input::-webkit-outer-spin-button,
.form_layout input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form_layout input[type=number] {
  -webkit-appearance: textfield;
          appearance: textfield;
  -moz-appearance: textfield;
}
.form_layout .form_title {
  color: var(--head-color);
  font-size: 24px;
  font-family: mainFontSansSemiBold;
  margin-bottom: 1rem;
}
.form_layout .form-label {
  font-size: 12px;
  color: var(--text-color);
  font-weight: 500;
  margin-bottom: 0.25rem;
}
@media only screen and (min-width: 992px) {
  .form_layout .form-label {
    font-size: 13px;
  }
}
.form_layout input,
.form_layout .form-control,
.form_layout button,
.form_layout .form-select,
.form_layout .btn {
  box-shadow: none !important;
  outline: none !important;
}
.form_layout .form-control {
  border-radius: 5px;
  color: var(--text-color);
  padding: 10px 12px;
  font-size: 14px;
  border-color: var(--bs-border-color);
}
.form_layout .form-control::-moz-placeholder {
  color: var(--light-gray);
  opacity: 1;
  /* Firefox */
}
.form_layout .form-control::placeholder {
  color: var(--light-gray);
  opacity: 1;
  /* Firefox */
}
.form_layout .form-control::-ms-input-placeholder {
  /* Edge 12-18 */
  color: var(--light-gray);
}
.form_layout .input_height {
  min-height: 43px;
}
.form_layout .form-floating .form-control::-moz-placeholder {
  color: var(--light-gray);
  opacity: 0;
  /* Firefox */
}
.form_layout .form-floating .form-control::placeholder {
  color: var(--light-gray);
  opacity: 0;
  /* Firefox */
}
.form_layout .form-floating .form-control::-ms-input-placeholder {
  /* Edge 12-18 */
  display: none;
  opacity: 0;
}
.form_layout .form-floating > label {
  display: flex;
  align-items: center;
  color: var(--light-gray);
  font-size: 14px;
}
.form_layout .choices {
  min-width: 100px;
  position: relative;
}
.form_layout .choices[data-type*=select-one]::after {
  content: "\f107";
  border: none;
  font-family: FontAwesome !important;
  position: absolute;
  top: calc(50% - 10px);
  right: 10px;
  margin-top: 0 !important;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  transition: transform 0.1s ease;
  color: #333333;
}
.form_layout .choices[data-type*=select-one].is-open::after {
  transform: rotateZ(180deg);
}
.form_layout .choices .choices__list--dropdown .choices__item,
.form_layout .choices .choices__list[aria-expanded] .choices__item {
  word-break: break-word;
}
.form_layout .choices .choices__inner {
  min-height: 44px;
  padding: 6px 14px;
  font-size: 1rem;
  border-radius: 4px;
  border-color: var(--bs-border-color);
  background-color: transparent;
}
.form_layout .choices .choices__inner .choices__input {
  padding: 2px 0 0px 2px;
}
.form_layout .choices .choices__item {
  padding-right: 0 !important;
}
.form_layout .choices .choices__item::after {
  display: none;
}
.form_layout .choices .choices__button {
  font-size: 14px;
  border-left-color: var(--white-color);
  filter: invert(1) grayscale(100%) brightness(200%);
  margin-right: 30px !important;
  opacity: 0.5 !important;
}
.form_layout .choices .choices__button:hover {
  opacity: 1 !important;
}
.form_layout .choices .choices__list.choices__list--dropdown {
  border-color: var(--bs-border-color) !important;
  box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em !important;
  background-color: var(--white-color);
}
.form_layout .choices .choices__list.choices__list--dropdown .choices__input {
  background: transparent;
  color: var(--text-color);
  border-color: var(--bs-border-color);
}
.form_layout .choices .choices__list .choices__item:hover, .form_layout .choices .choices__list .choices__item.is-highlighted {
  background-color: var(--gray-100) !important;
}
.form_layout .choices .choices__list.choices__list--multiple .choices__item {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
  padding-right: 5px !important;
  white-space: nowrap;
}
.form_layout .choices .choices__list.choices__list--multiple .choices__item .choices__button {
  border-left-color: var(--bs-border-color);
}
.form_layout .choices .choices__list.choices__list--single {
  padding: 4px 36px 4px 4px;
  font-size: 14px;
}
.form_layout .choices .choices__list.choices__list--single .choices__item.choices__item--selectable {
  background: transparent !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.form_layout .form-check-input {
  border-radius: 2px;
}
.form_layout .form-check-input:focus {
  border-color: var(--bs-primary) !important;
}
.form_layout .form-check-input:checked {
  background-color: var(--bs-primary) !important;
  border-color: var(--bs-primary) !important;
}
.form_layout .form-check-input.size_lg {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}
.form_layout .form-radio {
  border-radius: 100%;
}
.form_layout.type_2 .form-label {
  color: #989898;
}

.custom_label_radio label {
  border-radius: 8px;
  border: 1px solid var(--bs-border-color);
  background: #FFF;
  padding: 10px;
  display: inline-block;
  cursor: pointer;
  transition: border-color 0.3s ease;
  position: relative;
}
.custom_label_radio input {
  opacity: 0;
  position: absolute;
  z-index: -1;
}
.custom_label_radio input:checked + label {
  border-color: var(--bs-primary);
  border-radius: 8px;
}
.custom_label_radio input:checked + label.dynamic_border {
  border-color: var(--color, var(--bs-primary));
}
.custom_label_radio input:checked + label.dynamic_border p,
.custom_label_radio input:checked + label.dynamic_border i {
  color: var(--color, var(--bs-primary)) !important;
}
.custom_label_radio.time_radio label {
  padding: 10px 6px;
}
.custom_label_radio.time_radio input:checked + label {
  border-color: var(--bs-border-color);
  background: var(--gray-15);
}
.custom_label_radio.rating_filter label {
  border: 2px solid var(--blue);
  color: var(--blue) !important;
  background: var(--white-color);
  transition: all ease-in-out;
}
.custom_label_radio.rating_filter input:checked + label {
  border-color: var(--blue);
  background: var(--blue) !important;
  color: var(--white-color) !important;
}
.custom_label_radio.floor_plan label {
  border-radius: 16px !important;
  border-color: #efefef;
  padding: calc(6px + 1vw) !important;
}
@media only screen and (min-width: 992px) {
  .custom_label_radio.floor_plan label {
    padding: 14px !important;
  }
}
.custom_label_radio.floor_plan label .floor_name {
  width: 100%;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px !important;
  background: rgba(var(--bs-primary-rgb), 0.1);
}
.custom_label_radio.floor_plan label .floor_name h1 {
  color: rgba(var(--bs-primary-rgb), 0.5);
}
@media only screen and (max-width: 991px) {
  .custom_label_radio.floor_plan label .floor_name {
    height: 100px;
  }
}
@media only screen and (max-width: 991px) {
  .custom_label_radio.floor_plan label h5 {
    font-size: 14px !important;
  }
  .custom_label_radio.floor_plan label h6 {
    font-size: 11px !important;
  }
  .custom_label_radio.floor_plan label h6 svg {
    width: 18px;
    height: 18px;
  }
}
.custom_label_radio.floor_plan input:checked + label .floor_name {
  background: rgba(var(--bs-primary-rgb), 0.3);
}
.custom_label_radio.floor_plan input:checked + label .floor_name h1 {
  color: rgba(var(--bs-primary-rgb), 1);
}
.custom_label_radio.floor_plan input:disabled + label svg * {
  fill: var(--gray-25);
}
.custom_label_radio.floor_plan input:disabled + label .floor_name {
  background: var(--gray-15);
}
.custom_label_radio.floor_plan input:disabled + label .floor_name h1 {
  color: var(--gray-25);
}
.custom_label_radio.floor_plan input:disabled + label .fw-semibold {
  color: var(--gray-50);
}
.custom_label_radio.floor_plan input:disabled + label .symbol {
  color: var(--gray-25) !important;
}

@media only screen and (max-width: 991px) {
  .row.custom_row_5 {
    margin-left: -5px;
    margin-right: -5px;
  }
  .row.custom_row_5 > div {
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media only screen and (max-width: 991px) {
  .row.custom_row_8 {
    margin-left: -8px;
    margin-right: -8px;
  }
  .row.custom_row_8 > div {
    padding-left: 8px;
    padding-right: 8px;
  }
}

.schemes_list_li ul,
.schemes_list_li li {
  list-style: inherit;
}
.schemes_list_li > ol > li {
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--text-color);
}
.schemes_list_li > ol > li > ul li {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 4px;
}
.schemes_list_li > ol li ul {
  padding-left: 30px;
  margin: 10px 0;
}
.schemes_list_li > ol li ul ul {
  padding-left: 50px;
}

.quick_link_card a {
  border-radius: 16px;
  border: 1px solid var(--dark-15);
  background: var(--white-color);
  padding: 8px 20px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.quick_link_card a .quick_card {
  display: flex;
  align-items: center;
  gap: 20px;
}
.quick_link_card a .quick_card .img_wrap {
  width: 100px;
  height: 100px;
  min-width: 100px;
}
.quick_link_card a .quick_card .img_wrap img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.quick_link_card a .quick_card h3 {
  font-size: 16px;
  font-weight: 600;
  font-family: mainFontSans;
  margin-bottom: 20px;
  max-width: 250px;
}
.quick_link_card a .quick_card .text-link {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--bs-primary);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}
.quick_link_card a:hover {
  box-shadow: 0px 14px 20px -8px rgba(0, 0, 0, 0.1), 4px 4px 4px 0px rgba(0, 0, 0, 0.05);
}
.quick_link_card a:hover .text-link {
  font-weight: 400;
  font-family: mainFontSansSemiBold;
}

.contact_icon span {
  font-size: 11px;
}
.contact_icon a {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: end;
}
.contact_icon a i {
  margin-right: 4px;
  font-size: 18px;
}

.auth_page .card {
  max-width: 420px;
  border-radius: 12px;
}

.bg-primary {
  background: var(--bs-primary);
}

.bg-light-primary {
  background-color: rgba(var(--bs-primary-rgb), 0.15) !important;
}

.marquee-container {
  position: relative;
  height: 40px;
  font-size: 18px;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  width: 100%;
  font-weight: bold;
  background: #ffffff;
  color: var(--head-color);
  display: flex;
  align-items: center;
}
.marquee-container .marquee {
  top: 0;
  display: inline-block;
  padding-left: 100%;
  animation: marquee 20s linear infinite;
}
.marquee-container .marquee span {
  margin-right: 15px;
  display: inline-block;
  letter-spacing: 0.5px;
}
.marquee-container .marquee span.blinker {
  color: var(--bs-primary);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.accordion_style .accordion {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.accordion_style .accordion .accordion-item {
  border-radius: 8px !important;
  overflow: hidden;
  border: 1px solid transparent;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.accordion_style .accordion .accordion-item .accordion-button {
  background: transparent !important;
  font-size: 22px;
  color: var(--text-color);
  font-family: mainFontSansSemiBold;
  transition: all 0.3s ease-in-out;
  padding: 20px 20px 30px 25px;
}
.accordion_style .accordion .accordion-item .accordion-button::after {
  display: none;
}
.accordion_style .accordion .accordion-item .accordion-button::before {
  content: "";
  height: 4px;
  width: 35px;
  background: var(--bs-primary);
  position: absolute;
  top: calc(100% - 20px);
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.accordion_style .accordion .accordion-item .accordion-button:not(.collapsed) {
  padding-left: 20px;
}
.accordion_style .accordion .accordion-item .accordion-button:not(.collapsed)::before {
  width: 200px;
}
.accordion_style .accordion .accordion-item .accordion-body {
  padding: 0 20px 20px;
}
.accordion_style .accordion .accordion-item .accordion-body ul {
  padding-left: 20px;
}
.accordion_style .accordion .accordion-item .accordion-body ul li {
  list-style: none;
}
.accordion_style .accordion .accordion-item .accordion-body ul li:not(:last-child) {
  margin-bottom: 12px;
}
.accordion_style .accordion .accordion-item .accordion-body ul li a {
  position: relative;
  padding-left: 15px;
}
.accordion_style .accordion .accordion-item .accordion-body ul li a::before {
  content: "\f0da";
  font-family: FontAwesome !important;
  color: var(--bs-primary);
  font-size: 20px;
  margin-right: 8px;
  line-height: 1;
  position: absolute;
  top: 1px;
  left: 0;
}
.accordion_style .accordion .accordion-item.active {
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: none;
}
.accordion_style.type_1 .accordion .accordion-button {
  display: flex;
  justify-content: space-between;
}
.accordion_style.type_1 .accordion .accordion-button::after {
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin-top: 2px;
}

.rounded_img {
  width: 95vw;
  height: 95vw;
  max-height: 95vw;
  max-width: 95vw;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 576px) {
  .rounded_img {
    width: 400px;
    height: 400px;
  }
}
@media only screen and (min-width: 768px) {
  .rounded_img {
    width: 220px;
    height: 220px;
  }
}
@media only screen and (min-width: 768px) {
  .rounded_img {
    width: 300px;
    height: 300px;
  }
}
@media only screen and (min-width: 992px) {
  .rounded_img {
    width: 400px;
    height: 400px;
  }
}

.dot_indi {
  height: 14px;
  width: 14px;
  min-height: 14px;
  min-width: 14px;
  border-radius: 50%;
  margin-right: 6px !important;
  display: inline-block;
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.dot_indi:after {
  content: "";
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  border-radius: 50%;
  position: absolute;
}
.dot_indi.bg-primary:after {
  background-color: rgba(var(--bs-primary-rgb), 0.3);
}

.dot_line_steps {
  display: flex;
  flex-wrap: wrap;
  --bs-gutter-y: 2rem;
  --bs-gutter-x: 0;
  --v-gap: 20px;
  margin: 0 15px;
}
@media only screen and (max-width: 575px) {
  .dot_line_steps {
    --bs-gutter-y: 0;
  }
}
.dot_line_steps .step_card {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: var(--v-gap) 20px;
  position: relative;
  padding: 0 10px 0;
}
@media only screen and (max-width: 575px) {
  .dot_line_steps .step_card {
    flex-direction: row;
    text-align: start;
    padding: 1rem 0;
    justify-content: center;
    align-items: center;
  }
}
.dot_line_steps .step_card::before {
  content: "";
  height: 8px;
  width: 100%;
  border-radius: 50px;
  background: var(--gray-15);
  top: calc(20px + var(--v-gap) + 7px - 4px);
  position: absolute;
  transform: scaleX(1.1);
}
@media only screen and (max-width: 575px) {
  .dot_line_steps .step_card::before {
    height: 100%;
    width: 8px;
    top: 0;
    left: calc(20px + var(--v-gap) + 7px);
    transform: scaleY(1.1);
  }
}
.dot_line_steps .step_card h5 {
  color: var(--bs-primary);
  margin-bottom: 0;
  line-height: 1;
}
.dot_line_steps .step_card .dot_indi {
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 575px) {
  .dot_line_steps .step_card .dot_indi {
    left: unset;
    transform: none;
  }
}
.dot_line_steps .step_card p {
  max-width: 260px;
  letter-spacing: 0.08px;
  margin: 0 auto;
}
.dot_line_steps .step_card p a {
  color: var(--para-color);
  text-decoration-line: underline;
  text-underline-offset: auto;
}
.dot_line_steps .step_card p a:hover {
  color: var(--bs-primary);
}

.slick-slider .slick-prev,
.slick-slider .slick-next {
  display: none !important;
}

.home_slick_wrap {
  overflow: hidden;
}
@media only screen and (min-width: 1200px) {
  .home_slick_wrap .home_slick {
    transform: translateX(calc((100vw - 1200px) / 2));
  }
  .home_slick_wrap .home_slick.container {
    max-width: 100%;
  }
}
@media only screen and (min-width: 1400px) {
  .home_slick_wrap .home_slick {
    transform: translateX(calc((100vw - 1250px) / 2 - 2vw));
  }
}
.home_slick_wrap .home_slick .slick-list {
  padding-left: 40px;
}
@media only screen and (min-width: 768px) {
  .home_slick_wrap .home_slick .slick-list {
    padding-left: calc(10px + 15.5vw);
  }
}
@media only screen and (min-width: 992px) {
  .home_slick_wrap .home_slick .slick-list {
    padding-left: 70px;
  }
}
@media only screen and (min-width: 1200px) {
  .home_slick_wrap .home_slick .slick-list {
    padding-left: calc(10px + 5.5vw);
  }
}
@media only screen and (min-width: 1400px) {
  .home_slick_wrap .home_slick .slick-list {
    padding-left: calc(10px + 11.5vw);
  }
}
.home_slick_wrap .card_effect_1 {
  margin: 0 10px;
}

.slick_blog_card .slick-track .slick-slide .event-one__single,
.slick_blog_card .slick-track .slick-slide .blog-one__single {
  margin-bottom: 0;
  height: 100%;
  box-shadow: none !important;
}

.slick-track {
  display: flex;
  padding: 10px 0;
}
.slick-track .slick-slide {
  flex-grow: 1;
  height: unset;
}

.quick_links .quick_items a {
  width: 100%;
}
.quick_links .quick_items img {
  max-width: 120px;
  margin: auto;
  opacity: 0.6;
  filter: grayscale(1);
  transition: all 0.3s ease-in-out;
}
.quick_links .quick_items:hover img {
  opacity: 1;
  filter: unset;
}

.video_card .card_top {
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
  border-radius: 16px;
  width: 100%;
  /* Image inside the card */
  /* Heading text over the image */
  /* Overlay for play button on hover */
}
.video_card .card_top img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}
.video_card .card_top .card-heading {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  z-index: 1;
  font-family: mainFontSansSemiBold;
  margin: 0;
  max-width: calc(100% - 40px);
}
.video_card .card_top .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  /* Play button */
}
.video_card .card_top .overlay .play-button i {
  font-size: 55px;
  color: #ffffff;
}
.video_card .card_top .overlay .search_btn {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--bs-primary);
}
.video_card .card_top .overlay .search_btn:hover {
  background-color: #000;
}
.video_card .card_top .overlay .search_btn i {
  font-size: 16px;
  color: #ffffff;
}
.video_card .card_bottom {
  flex-wrap: wrap;
  gap: 1px 12px;
}
.video_card:hover img {
  transform: scale(1.1);
}
.video_card:hover .overlay {
  opacity: 1;
}
.video_card.type_2 .overlay {
  opacity: 1;
}
.video_card.type_2 h5 {
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}
.video_card.type_2 h5::before {
  display: block;
  content: "";
  width: 2px;
  height: 15px;
  background: var(--bs-primary);
}
.video_card.type_3 .text_wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: white;
  z-index: 1;
  width: 100%;
  background: rgba(0, 0, 0, 0.75);
  height: -moz-fit-content;
  height: fit-content;
  padding: 20px 15px;
}

.right_top_ep {
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 40px;
}
.right_top_ep img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.msme_types .row > .col-6 {
  display: flex;
}
@media only screen and (min-width: 992px) {
  .msme_types .row > .col-6 {
    max-width: 180px;
  }
  .msme_types .row > .col-6:last-child {
    flex-grow: 1;
    max-width: unset;
  }
}
@media only screen and (min-width: 1200px) {
  .msme_types .row > .col-6 {
    max-width: 190px;
  }
}
.msme_types .row .col {
  display: flex;
}
.msme_types .row .col > a {
  flex-grow: 1;
  display: flex;
}
.msme_types .card {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  background-color: #ffffff;
  border-radius: 15px;
  padding: 10px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: none !important;
  position: relative;
  border: 2px solid rgba(0, 0, 0, 0.15);
  flex: 1;
  gap: 10px;
  overflow: hidden;
}
.msme_types .card .icon {
  width: auto;
  max-height: 35px;
  display: flex;
}
.msme_types .card .icon img {
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
}
.msme_types .card .icon_c {
  max-width: 90%;
  margin: auto;
}
.msme_types .card.type_1.highlightd {
  --bg-color: var(--bs-primary);
  border-color: var(--bg-color);
  background-color: var(--bg-color);
}
.msme_types .card.type_1.highlightd .right_top_ep {
  right: -2px;
  top: -2px;
}
.msme_types .card.type_2 .icon {
  max-height: 25px;
}
.msme_types .card.type_2 .icon img {
  filter: brightness(100);
}
.msme_types .card.type_2 .icon_c {
  max-width: 50%;
}
.msme_types .card.type_2 svg path {
  fill: var(--bg-color);
}

.stat_card .type_1,
.stat_card .type_2,
.stat_card .type_3 {
  padding: 6px 4px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.stat_card .type_1 h5,
.stat_card .type_2 h5,
.stat_card .type_3 h5 {
  font-size: 16px;
  margin-bottom: 0;
}
.stat_card .type_1 {
  background: var(--gray-15);
  border-radius: 8px 8px 0px 0px;
  font-family: mainFontSansSemiBold;
}
.stat_card .type_2 {
  border-radius: 0px 0px 8px 8px;
  background: #6C6C6C;
  color: var(--white-color);
}
.stat_card .type_3 {
  font-weight: 600;
  color: var(--bs-primary);
}

/* The typing effect */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
/* The typewriter cursor effect */
@keyframes blink-caret {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: orange;
  }
}
.people_section .p_card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.people_section .p_card .img_wrap {
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1;
  max-width: 150px;
  margin: auto;
  border: 2px solid rgba(var(--bs-primary-rgb), 0.4);
  transition: all 0.4s ease-in-out;
  padding: 6px;
}
.people_section .p_card .img_wrap img {
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
}
.people_section .p_card:hover .img_wrap {
  border-color: var(--bs-primary);
}
.people_section .p_card:hover .img_wrap img {
  transform: scale(1.05);
}
.people_section h5 {
  font-family: mainFontSansSemiBold;
  font-size: 1.1rem;
  margin-bottom: 2px;
}
.people_section p {
  font-size: 14px;
}

.champians_wrap {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .champians_wrap {
    flex-direction: column;
    align-items: center;
  }
}
.champians_wrap > div {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  --gear-width: 80px;
  --item-font: 12px;
}
.champians_wrap > div h5 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000;
  text-align: center;
  pointer-events: none;
}
.champians_wrap > div.item1 img {
  width: var(--gear-width);
}
.champians_wrap > div.item1 h5 {
  font-size: var(--item-font);
}
.champians_wrap > div.item2 img {
  width: calc(var(--gear-width) + 30px);
}
.champians_wrap > div.item2 h5 {
  font-size: calc(var(--item-font) + 4px);
}
.champians_wrap > div.item3 img {
  width: calc(var(--gear-width) + 80px);
}
.champians_wrap > div.item3 h5 {
  font-size: calc(var(--item-font) + 6px);
}
.champians_wrap > img {
  width: 100px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.champians_wrap > img.trophy {
  width: unset;
  height: 320px;
}
.champians_wrap .arrow-right {
  display: block;
}
.champians_wrap .arrow-down {
  display: none;
  transform: rotate(90deg);
}
@media only screen and (max-width: 767px) {
  .champians_wrap .arrow-right {
    display: none;
  }
  .champians_wrap .arrow-down {
    display: block;
  }
}

.animated_btn {
  display: none !important;
}
.animated_btn a {
  position: relative;
  padding: 30px 60px;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.4);
  color: #999;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 4px;
  font: 700 30px consolas;
  overflow: hidden;
}
.animated_btn a span:nth-child(1) {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #171618, #3bff3b);
  animation: animate1 2s linear infinite;
}
@keyframes animate1 {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.animated_btn a span:nth-child(2) {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 3px;
  background: linear-gradient(to bottom, #171618, #3bff3b);
  animation: animate2 2s linear infinite;
  animation-delay: 1s;
}
@keyframes animate2 {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}
.animated_btn a span:nth-child(3) {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to left, #171618, #3bff3b);
  animation: animate3 2s linear infinite;
}
@keyframes animate3 {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.animated_btn a span:nth-child(4) {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 3px;
  background: linear-gradient(to top, #171618, #3bff3b);
  animation: animate4 2s linear infinite;
  animation-delay: 1s;
}
@keyframes animate4 {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(-100%);
  }
}

.so_card {
  padding: 30px 16px;
  border-radius: 1rem;
  border: 0.89px solid rgba(0, 0, 0, 0.15);
  background: #FFF;
  box-shadow: 1px 1px 4px 0px rgba(249, 115, 22, 0.15), 0px 0px 20px 0px rgba(249, 115, 22, 0.15);
  gap: 30px;
  height: 100%;
  text-align: center;
}
.so_card .img_wrap {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 108px;
  background: #F6F6F6;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.so_card .img_wrap img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.so_card .img_wrap,
.so_card h6 {
  transition: all 0.3s ease-in-out;
}
.so_card:hover {
  border-color: var(--bs-primary);
}
.so_card:hover .img_wrap {
  background: var(--bs-primary);
}
.so_card:hover .img_wrap img {
  filter: brightness(0) invert(1);
}
.so_card:hover h6 {
  color: var(--bs-primary);
}
.so_card.type_2 .img_wrap {
  padding: 0;
  border-radius: 0;
  background: #ffffff !important;
}
.so_card.type_2 .img_wrap img {
  filter: unset;
}
.so_card.type_3 {
  width: 100%;
  min-width: 130px;
}

.thm-btn.bg-white:hover {
  background: #ffffff !important;
}

.incub_card {
  padding: 40px 10px 20px;
  text-align: center;
  border-radius: 16px !important;
  transition: all 0.3s ease-in;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.incub_card * {
  transition: all 0.3s ease-in;
}
.incub_card > svg {
  max-height: 70px;
}
.incub_card > svg path {
  fill: var(--bs-primary);
}
.incub_card .right_top_ep {
  width: 50px;
  height: 50px;
  right: -2px;
  top: -2px;
}
.incub_card .right_top_ep svg {
  width: 100%;
  height: 100%;
}
.incub_card:hover {
  background: var(--bs-primary);
  border-color: var(--bs-primary);
}
.incub_card:hover svg path {
  fill: var(--white-color);
}
.incub_card:hover .right_top_ep svg path {
  fill: #FF8531;
}
.incub_card:hover h6 {
  color: #ffffff !important;
}

.highcharts-container {
  z-index: 10 !important;
}

.btn-white {
  background: white;
}

.icon_card {
  border-radius: 1rem;
  background: var(--bs-primary, #F97316);
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  position: relative;
  padding: 1rem 0.5rem;
  text-align: center;
  height: 120px;
  min-height: 120px;
  align-items: center;
}
.icon_card.h_110 {
  height: 110px;
  min-height: 110px;
}
.icon_card.h-auto {
  min-height: unset !important;
}
.icon_card h4,
.icon_card p {
  color: #ffffff;
  margin: 0;
  z-index: 2;
}
.icon_card h4 {
  font-size: 1.5rem;
}
.icon_card p {
  font-size: 13px;
  color: #FFD4AC;
}
@media (min-width: 1200px) {
  .icon_card p {
    font-size: 14px;
  }
}
.icon_card p.text-sm {
  font-size: 11px;
}
.icon_card p.text-md {
  font-size: 12px;
}
.icon_card img {
  width: 60px;
}
.icon_card img.img_40 {
  width: 40px;
}
.icon_card:not(.image_normal) img {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.icon_card.type_3 {
  align-items: start;
  min-height: 100px;
  border-radius: 8px;
  gap: 2px;
}
.icon_card.type_3 img {
  top: unset;
  right: 20px;
}
.icon_card.type_3 p {
  font-size: 15px;
  font-weight: 500;
}
.icon_card.type_2 {
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: #ffffff;
  min-height: 100px;
}
.icon_card.type_2 h4 {
  color: var(--bs-primary);
  font-size: 1.2rem;
}
.icon_card.type_2 p {
  color: #92929D;
  font-size: 14px;
}
.icon_card.type_4 {
  height: 100%;
  text-align: left;
  justify-content: space-between;
  padding: 1rem;
}
.icon_card.type_4 ul {
  padding-left: 15px;
}
.icon_card.type_4 ul,
.icon_card.type_4 li {
  list-style: unset;
  color: var(--para-color);
}
.icon_card.type_5 {
  border: 1px solid var(--bs-primary);
}

.fixed_table_height .table_scroll {
  max-height: 110px;
}
.fixed_table_height .table_scroll.h_110 {
  max-height: 100px;
}
.fixed_table_height .double_height .table_scroll {
  max-height: 220px;
}
.fixed_table_height .double_height .table_scroll.h_110 {
  max-height: 200px;
}

.table_card {
  border: 1px solid var(--bs-border-color);
  padding: 0.5rem;
  border-radius: 1rem;
  overflow: hidden;
  height: 100%;
  background: #ffffff;
}

.circular-progress {
  --size: 100px;
  --radius: calc(var(--size) * 0.45);
  --circumference: calc(2 * 3.14159 * var(--radius));
  --stroke: 8px;
  --fontSize: 14px;
  position: relative;
  width: var(--size);
  height: var(--size);
}
.circular-progress .circle-bg {
  stroke: #EBE9E7;
  stroke-width: var(--stroke);
  fill: none;
}
.circular-progress .circle-progress {
  stroke: var(--chartColor, var(--bs-primary));
  stroke-width: var(--stroke);
  stroke-linecap: round;
  fill: none;
  stroke-dasharray: var(--circumference);
  stroke-dashoffset: calc(var(--circumference) - var(--progress) / 100 * var(--circumference));
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}
.circular-progress .progress-text {
  --valueColor: #171717;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: var(--fontSize, 12px);
  font-weight: 500;
  color: var(--valueColor);
}

.nav-tabs {
  width: -moz-fit-content;
  width: fit-content;
  background: #F8F7FC;
  padding: 6px;
  border-radius: 8px;
}
.nav-tabs:not(.border) {
  border: none !important;
}
.nav-tabs .nav-item {
  margin-bottom: 0 !important;
  min-width: 60px;
  text-align: center;
}
.nav-tabs .nav-item .nav-link {
  margin-right: 0;
  padding: 5px 8px;
  border: none;
  font-size: 13px;
  border-radius: 4px;
  color: var(--text-color);
}
.nav-tabs .nav-item .nav-link.active {
  background: var(--bs-primary) !important;
  border-color: var(--bs-primary) !important;
  color: #fff !important;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  font-weight: normal;
}
.nav-tabs:not(:last-child) .nav-link {
  margin-right: 5px !important;
}
.nav-tabs.style_2 {
  padding: 0 6px;
  background: #ffffff;
  box-shadow: 0px 6.471px 24.267px 0px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
}
.nav-tabs.style_2 .nav-item .nav-link {
  border-bottom: 4px solid transparent;
  color: #808082;
  border-radius: 0;
  font-size: 14px;
  padding: 0.75rem 0.5rem;
}
@media only screen and (min-width: 576px) {
  .nav-tabs.style_2 .nav-item .nav-link {
    padding: 0.75rem 1.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .nav-tabs.style_2 .nav-item .nav-link {
    padding: 0.75rem 2rem;
  }
}
@media only screen and (min-width: 992px) {
  .nav-tabs.style_2 .nav-item .nav-link {
    padding: 0.75rem 2.5rem;
  }
}
.nav-tabs.style_2 .nav-item .nav-link.active {
  background: transparent !important;
  border-color: var(--bs-primary) !important;
  color: var(--text-color) !important;
}
.nav-tabs.style_2.icon_tab .nav-item {
  min-width: unset !important;
}
.nav-tabs.style_2.icon_tab .nav-item .nav-link {
  margin: 0 !important;
}
.nav-tabs.style_2.icon_tab .nav-item .nav-link.active {
  background: transparent !important;
  color: var(--bs-primary) !important;
}
.nav-tabs.style_3 {
  background: transparent;
}
.nav-tabs.style_3 .nav-item .nav-link {
  border: 1px solid var(--bs-border-color);
  color: var(--para-color);
}
.nav-tabs.style_3 .nav-item .nav-link.active {
  color: var(--white-color) !important;
}
.nav-tabs.style_4 {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  position: relative;
}
.nav-tabs.style_4::after {
  content: "";
  width: 100%;
  position: absolute;
  height: 3px;
  background: var(--bs-border-color);
  bottom: 0;
  left: 0;
  z-index: -1;
}

.border-right {
  border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.min-w-600 {
  min-width: 600px;
}

.min-w-900 {
  min-width: 900px;
}

.chart_scroll {
  overflow-x: auto;
}

.dropdown.custom_drop {
  width: -moz-fit-content;
  width: fit-content;
}
.dropdown.custom_drop .btn {
  position: relative;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  display: flex;
  gap: 6px;
}
.dropdown.custom_drop .btn i {
  font-size: 18px;
  line-height: 1;
}
.dropdown.custom_drop .btn ~ .dropdown-menu {
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  min-width: 100%;
}
.dropdown.custom_drop .btn ~ .dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 6px 8px;
  white-space: normal;
}
.dropdown.custom_drop .btn ~ .dropdown-menu .dropdown-item:active, .dropdown.custom_drop .btn ~ .dropdown-menu .dropdown-item.active {
  background-color: var(--bs-primary);
}
.dropdown.custom_drop .btn.btn-sm {
  padding: 8px 25px 8px 10px;
}
.dropdown.custom_drop .btn.btn-sm ~ .dropdown-menu .dropdown-item {
  font-size: 12px;
}
.dropdown.custom_drop .btn.just_icon {
  background: transparent;
  border: none;
  padding: 0;
}
.dropdown.custom_drop .btn.just_icon::after {
  display: none;
}
.dropdown.custom_drop .btn.just_icon ~ .dropdown-menu {
  min-width: 10rem;
}

.select2-selection__arrow,
.dropdown-toggle {
  display: flex;
  align-items: center;
  padding-right: 25px;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  display: block;
}
.select2-selection__arrow::after,
.dropdown-toggle::after {
  content: "\f107";
  font-family: FontAwesome !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 0;
  right: 10px;
  border: 0;
  transition: top 0.1s ease-in;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 18px;
}
.select2-selection__arrow.btn-sm::after,
.dropdown-toggle.btn-sm::after {
  font-size: 16px;
}

.select2-container {
  display: block;
  width: 100% !important;
}

.select2-results__option {
  font-size: 13px;
}

.select2-container--default .select2-search--dropdown .select2-search__field,
.select2-dropdown {
  border-radius: 4px;
  border-color: var(--bs-border-color);
}

.select2-container--default .select2-selection--single {
  background: transparent;
  border-color: var(--bs-border-color) !important;
  height: 42px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 40px;
  font-size: 13px;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: var(--gray-15);
  color: var(--text-color);
}
.select2-container--default .select2-results__option--highlighted[aria-selected=true] {
  background: var(--bs-primary) !important;
  color: white !important;
}
.select2-container--default .select2-results__option[aria-selected=true] {
  background: var(--bs-primary) !important;
  color: white !important;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  font-size: 14px;
}

.select2-selection__arrow {
  height: 42px !important;
}
.select2-selection__arrow b {
  display: none;
}

.modal-open .select2-container {
  z-index: 1056;
}

.display-3 {
  font-size: calc(1.8rem + 1vw) !important;
}

@media only screen and (min-width: 991px) {
  .display-3 {
    font-size: 2.2rem !important;
  }
}
.display-5 {
  font-size: calc(1.4rem + 1vw) !important;
}

@media only screen and (min-width: 991px) {
  .display-5 {
    font-size: 2rem !important;
  }
}
.display-6 {
  font-size: calc(1.2rem + 1vw) !important;
}

@media only screen and (min-width: 991px) {
  .display-6 {
    font-size: 1.6rem !important;
  }
}
.info-form {
  background-color: #fff;
  border-radius: 16px;
  max-width: 650px;
  margin: auto;
  padding: 2rem 0 1.5rem;
  --sds-size-depth-0: 2px;
  box-shadow: var(--sds-size-depth-0) 16px 16px -4px rgba(12, 12, 13, 0.08), var(--sds-size-depth-0) 4px 4px 4px rgba(12, 12, 13, 0.05);
}
.info-form.type_1 {
  width: 100%;
  max-width: 800px !important;
}
.info-form .content {
  display: flex;
  justify-content: center;
  background-color: transparent;
  min-height: 350px;
}
.info-form .content .body {
  width: 100%;
  height: 100%;
  position: relative;
}
.info-form .steps ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.info-form .steps ul li {
  width: unset;
}
.info-form .steps ul li a {
  padding: 0 !important;
  margin: 0 !important;
  width: 8px;
  height: 8px;
  border-radius: 100%;
}
.info-form .steps ul li a:hover {
  width: 12px;
  height: 12px;
}
.info-form .steps ul li a span {
  display: none;
}
.info-form .steps ul li.current a {
  width: 12px;
  height: 12px;
  background: var(--bs-primary) !important;
}
.info-form .steps ul .done a {
  background: var(--bs-primary);
}
.info-form .steps ul .done a:hover {
  background-color: var(--bs-primary);
}
.info-form.hide_steps {
  padding: 0 0;
}
.info-form.hide_steps .steps {
  display: none;
}
.info-form.no_shadow {
  box-shadow: none;
}
.info-form .actions {
  margin-top: 1rem;
}
.info-form .actions ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.info-form .actions ul li {
  margin: 0;
}
.info-form .actions ul li a {
  background-color: var(--bs-primary);
  border: 1px solid var(--bs-primary);
  padding: 6px 20px !important;
  border-radius: 4px !important;
  min-width: 100px;
  text-align: center;
}
.info-form .actions ul li a:hover {
  background-color: var(--bs-primary);
}
.info-form .actions ul li:first-child a {
  background: transparent;
  color: var(--bs-primary);
}
.info-form .actions ul li:first-child.disabled {
  display: none;
}
.info-form.drp_from {
  max-width: 992px;
}

.incentive .hero_content {
  max-width: 500px;
}
.incentive .hero_img_box {
  transform: rotateZ(45deg);
  transform: rotateZ(45deg);
  max-width: calc(100% - 6rem);
  overflow: hidden;
}
.incentive .hero_img_box .image1 {
  width: calc(50% - 1rem);
  max-width: 150px;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
}
.incentive .hero_img_box .image1 img {
  border-radius: 12px;
  transform: scale(1.5) rotateZ(-45deg);
}

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

.text-blue {
  color: var(--blue) !important;
}

.title_badge {
  background-color: var(--blue) !important;
  text-align: center;
  padding: 4px 12px 3px 12px;
}
.title_badge h6 {
  font-size: 14px;
  font-weight: normal;
  color: var(--white-color);
  line-height: 1.5;
}
.title_badge.bottom_p {
  margin-top: 1rem;
  border-radius: 8px 8px 0 0;
}
.title_badge.top_p {
  margin-bottom: 1rem;
  border-radius: 0 0 8px 8px;
}
.title_badge.center_p {
  border-radius: 8px;
}
.title_badge.badge_type_1 {
  color: var(--white-color);
}
.title_badge.badge_type_1:after {
  filter: brightness(0) invert(1);
}

.shadow_box_card {
  padding: 1rem 1rem 0.75rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 16px;
  font-size: 14px;
}
@media only screen and (min-width: 992px) {
  .shadow_box_card {
    padding: 1.5rem 1.5rem 1rem;
    --footer-height: 394.45px;
  }
}
.shadow_box_card ul {
  padding-left: 15px;
}
.shadow_box_card ul,
.shadow_box_card li {
  list-style: unset;
  color: var(--para-color);
  font-size: 14px;
}
.shadow_box_card h5 {
  font-size: 1.2rem;
}

.inauguration_wrap {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background: #ffffff;
  overflow: hidden;
  display: none !important;
  justify-content: center;
  align-items: center;
}
.inauguration_wrap .leftcurtain,
.inauguration_wrap .rightcurtain {
  width: 50%;
  height: 100vh;
  top: 0;
  position: absolute;
  z-index: 2;
  transition: width 2s ease-in-out;
}
.inauguration_wrap .leftcurtain {
  left: 0;
}
.inauguration_wrap .rightcurtain {
  right: 0;
  z-index: 3;
}
.inauguration_wrap .textcurtain {
  display: none;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.inauguration_wrap .rightcurtain img,
.inauguration_wrap .leftcurtain img {
  width: 100%;
  height: 100%;
}
.inauguration_wrap .rope {
  position: absolute;
  top: 20px;
  left: 85%;
  z-index: 4;
  cursor: pointer;
}
.inauguration_wrap .hide {
  display: none;
}

.acc_btn_sm {
  --bs-accordion-active-bg: var(--blue);
  --bs-accordion-active-color: #ffffff;
  --bs-accordion-btn-color: #ffffff;
  background: var(--blue);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
}
.acc_btn_sm::after {
  --bs-accordion-btn-icon-width: .85rem;
  filter: brightness(0) invert(1);
  margin-top: 2px;
}

.pagination {
  --bs-pagination-active-bg: var(--bs-primary);
  --bs-pagination-active-border-color: var(--bs-primary);
  --bs-link-hover-color: var(--bs-primary);
  --bs-link-color: var(--bs-primary);
}
.pagination .page-link {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}

.dt-container .dt-scroll-body {
  padding-bottom: 10px;
}

@media only screen and (max-width: 1199px) {
  #WheelChart svg > g:last-child {
    display: none;
  }
}

.map_scroll_up {
  max-width: 100%;
  overflow-x: auto;
}
.map_scroll_up .district {
  stroke: #fff;
  stroke-width: 1;
  cursor: pointer;
}
.map_scroll_up .district:hover {
  fill: orange;
}
.map_scroll_up .tooltipMap {
  position: absolute;
  background: white;
  padding: 5px 10px;
  border-radius: 5px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  display: none;
}

#WheelChart .chartholder > g > g.slice.active-sector:nth-child(1) path {
  filter: drop-shadow(30px 0px 9px rgba(0, 0, 0, 0.1)) !important;
}
#WheelChart .chartholder > g > g.slice.active-sector:nth-child(3) path {
  filter: drop-shadow(22px 0px 9px rgba(0, 0, 0, 0.1)) !important;
}
#WheelChart .chartholder > g > g.slice.active-sector:nth-child(4) path {
  filter: drop-shadow(-30px 0px 9px rgba(0, 0, 0, 0.1)) !important;
}
#WheelChart .chartholder > g > g.slice.active-sector:nth-child(5) path {
  filter: drop-shadow(-13px 0px 9px rgba(0, 0, 0, 0.1)) !important;
}
#WheelChart .chartholder > g > g.slice.active-sector:nth-child(6) path {
  filter: drop-shadow(-22px 0px 9px rgba(0, 0, 0, 0.1)) !important;
}

.box_shadow {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

#reports_slick > div {
  padding: 1rem 0;
}
#reports_slick > div .slick-slide > .card {
  border-radius: 16px !important;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.1);
  min-height: 350px;
}
#reports_slick > div .slick-slide > .card .row {
  flex: 1;
}
#reports_slick .icon_card {
  padding: 0.5rem 0.5rem;
  border-radius: 12px;
}
@media only screen and (min-width: 1400px) {
  #reports_slick .icon_card {
    padding: 0.5rem 1rem;
  }
}
#reports_slick .icon_card p {
  font-size: 13px !important;
}
#reports_slick .icon_card svg {
  max-width: 50px;
  max-height: 50px;
}
#reports_slick .icon_card.flex-row {
  justify-content: space-between;
}
#reports_slick .icon_card.flex-row > div:last-child {
  flex: 1;
}
#reports_slick .icon_card:not(.flex-row) .svg_img {
  max-width: 50%;
  margin-bottom: 10px;
}
#reports_slick .icon_card:not(.flex-row) .svg_img svg {
  max-width: 100%;
}
#reports_slick .icon_card_auto .icon_card {
  min-height: unset;
}

/* Floating Button New */
.floating_btn_new {
  position: fixed;
  right: 0;
  top: 50vh;
  height: 400px;
  width: 290px;
  background-color: var(--bs-primary);
  color: white;
  display: flex;
  align-items: center;
  padding: 10px 15px 10px 10px;
  border-radius: 8px 0 0 8px;
  white-space: nowrap;
  z-index: 999;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  gap: 10px;
  transform: translateX(-278px);
  transition: transform 0.3s ease-in-out;
}
.floating_btn_new.left {
  left: 0;
  right: unset;
  flex-direction: row-reverse;
  border-radius: 0 8px 8px 0;
}
.floating_btn_new.group_links {
  height: -moz-fit-content;
  height: fit-content;
  top: calc(var(--top-nav-height) + var(--navbar-height) + 34px + 10vh);
  gap: 10px;
}
.floating_btn_new.group_links .toggle_btn {
  width: 25px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 4px 4px 0;
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bs-primary);
}
.floating_btn_new.group_links .toggle_btn i {
  transition: transform 0.2s ease-in-out;
}
.floating_btn_new.group_links.show {
  transform: translateX(0);
}
.floating_btn_new.group_links.show .toggle_btn i {
  transform: rotate(180deg);
}
.floating_btn_new.group_links .nav_btns {
  width: 260px;
  padding: 6px 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--white-color);
  border-radius: 8px;
  background: transparent;
  transition: all 0.2s ease-in-out;
  color: var(--white-color);
  font-size: 13px;
}
.floating_btn_new.group_links .nav_btns svg {
  width: 100%;
  min-width: 18px;
  max-width: 18px;
  max-height: 18px;
}
.floating_btn_new.group_links .nav_btns:hover {
  background: var(--white-color);
  border-color: var(--bs-primary);
}
.floating_btn_new.group_links .nav_btns:hover svg path {
  transition: all 0.2s ease-in-out;
}
.floating_btn_new.group_links .nav_btns:hover svg:not(.hover_fill) path {
  stroke: var(--bs-primary);
}
.floating_btn_new.group_links .nav_btns:hover svg.hover_fill path {
  fill: var(--bs-primary);
}
.floating_btn_new.group_links .nav_btns:hover p {
  color: var(--bs-primary) !important;
}

.champion_float {
  position: fixed;
  right: 0;
  background-color: var(--bs-primary);
  color: white;
  padding: 0 10px 60px;
  border-radius: 16px 0 0 16px;
  width: 70px;
  overflow: hidden;
  white-space: nowrap;
  z-index: 9999;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  gap: 10px;
  top: 50%;
  transform: translateY(-50%);
  height: 260px;
  flex-direction: column-reverse;
  display: flex;
  align-items: center;
  justify-content: center;
}
.champion_float span {
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  border-radius: 50%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 15px;
}
.champion_float span i {
  font-size: 20px;
  color: var(--bs-primary);
}
.champion_float h6 {
  transform: rotate(90deg);
}

.full_modal {
  --bs-modal-width: 100%;
}
.full_modal .modal-dialog {
  margin: 0;
  border-radius: 0;
  padding: 0;
}
.full_modal .modal-dialog .modal-content {
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 0;
}
.full_modal .modal-dialog .modal-content .modal-body {
  padding: 20px;
  display: flex;
  justify-content: center;
}
.full_modal .modal-dialog .modal-content .modal-body .ratio {
  width: 100%;
  height: calc(100vh - 50px);
}
.full_modal .full_scroll {
  height: calc(100vh - 40px);
  overflow-y: auto;
}
.full_modal .btn-close {
  position: absolute;
  right: 10px;
  top: 10px;
  border-radius: 50%;
  z-index: 10;
  width: 30px;
  height: 30px;
  background-color: #ffffff;
  background-size: 15px;
}

.popup_close {
  width: 15px;
  height: 15px;
  padding: 0;
  margin-bottom: 5px;
}

.btn-close.btn-sm {
  background-size: 12px;
}

.breadcrumb.custom {
  display: flex;
  gap: 8px;
}
.breadcrumb.custom span {
  font-size: 14px;
}
.breadcrumb.custom .breadcrumb-separator {
  opacity: 0.4;
}
.breadcrumb.custom .active {
  color: var(--bs-primary);
}

.translate_middle_bottom {
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
}

.translate_middle_top {
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
}

.custom-tooltip {
  --bs-tooltip-bg: rgba(0, 0, 0, .8);
  --bs-tooltip-color: var(--bs-white);
}

.banner_iemsme .info_box {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  top: 100%;
  transform: translate(-50%, -50px);
  justify-content: space-around;
  border-radius: 16px;
  background: var(--white-color);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  left: 50%;
  margin-bottom: 20px;
}
.banner_iemsme .info_box > div > div {
  width: 90px;
  padding: 10px 0 4px;
  text-align: center;
}
.banner_iemsme .info_box > div > div .text-dark {
  color: #585860;
}
.banner_iemsme .info_box > div > div p {
  font-size: 14px;
}

.v_hr {
  border: 0.5px solid var(--gray-25);
}

.custom_calendar .date-picker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.custom_calendar .arrow {
  cursor: pointer;
  font-size: 24px;
  color: gray;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.custom_calendar .dates {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}
.custom_calendar .dates::-webkit-scrollbar {
  display: none;
}
.custom_calendar .date-box label {
  padding: 10px 10px;
  border-radius: 10px;
  text-align: center;
  min-width: 90px;
  cursor: pointer;
  background: var(--white-color);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.custom_calendar .date-box label:hover {
  background: var(--gray-15);
}
.custom_calendar .date-box label:hover h4 {
  color: var(--muted-color) !important;
}
.custom_calendar .date-box input {
  opacity: 0;
  position: absolute;
  z-index: -1;
}
.custom_calendar .date-box input[type=radio]:checked + label {
  background: var(--gray-15);
}
.custom_calendar .date-box input[type=radio]:checked + label h4 {
  color: var(--muted-color) !important;
}

.ullist ul li {
  font-size: 14px;
  margin: 0px;
  padding: 0px 0px 5px 30px;
  position: relative;
}
.ullist ul li:before {
  content: "";
  background: #ff5430 url("https://msme1connect.up.gov.in/webassets/img/svg-icon/arrow-right-white.svg") no-repeat 4px;
  background-size: 12px;
  position: absolute;
  left: 0;
  top: 1px;
  color: #fff;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  padding: 10px;
}

.upnva_logo {
  height: 90px;
  display: flex;
  margin-bottom: 10px;
}
.upnva_logo img {
  width: -moz-fit-content;
  width: fit-content;
  -o-object-fit: contain;
  object-fit: contain !important;
  transform: unset !important;
  height: unset !important;
}

.cross_btn {
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
}
.cross_btn:hover {
  background-color: var(--bs-danger);
  color: var(--white-color);
}

.updates_modal {
  --bs-modal-width: 720px;
  padding: 10px;
}
.updates_modal .content {
  position: relative;
  padding: 0;
  background-image: url("/images/home/banner_04.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media only screen and (min-width: 576px) {
  .updates_modal .content {
    background-position: 35%;
  }
}
@media only screen and (min-width: 992px) {
  .updates_modal .content {
    background-position: 15%;
  }
}
.updates_modal .content::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: 1;
}
@media only screen and (min-width: 576px) {
  .updates_modal .content::before {
    background-color: rgba(0, 0, 0, 0.25);
  }
}
.updates_modal .content > div,
.updates_modal .content a {
  position: relative;
  z-index: 2;
}
.updates_modal .content .upnva_logo {
  height: 70px;
}
.updates_modal .content ul li {
  font-size: 14px;
}
.updates_modal .content .cross_btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 9;
}
.updates_modal .content .carousel-control-prev,
.updates_modal .content .carousel-control-next {
  z-index: 9;
  width: 50px;
}

.my_mobile_menu.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  transform: translateX(100%);
  transform-origin: right center;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  visibility: hidden;
}
.my_mobile_menu.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}
.my_mobile_menu.mobile-nav__wrapper .mobile-nav__content {
  width: 300px;
  background: #ffffff;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 10;
  position: absolute;
  right: 0;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
}
.my_mobile_menu.mobile-nav__wrapper .mobile-nav__content .logo-box {
  margin: 20px 0;
  display: flex;
}
.my_mobile_menu.mobile-nav__wrapper .mobile-nav__content .main-menu__list,
.my_mobile_menu.mobile-nav__wrapper .mobile-nav__content .main-menu__list > li > ul,
.my_mobile_menu.mobile-nav__wrapper .mobile-nav__content .main-menu__list > li > ul > li > ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.my_mobile_menu.mobile-nav__wrapper .mobile-nav__content .main-menu__list > li {
  /* no menu after 2rd level dropdown */
}
.my_mobile_menu.mobile-nav__wrapper .mobile-nav__content .main-menu__list > li > ul,
.my_mobile_menu.mobile-nav__wrapper .mobile-nav__content .main-menu__list > li > ul > li > ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: 0.5em;
}
.my_mobile_menu.mobile-nav__wrapper .mobile-nav__content .main-menu__list > li:not(:last-child),
.my_mobile_menu.mobile-nav__wrapper .mobile-nav__content .main-menu__list > li > ul > li:not(:last-child),
.my_mobile_menu.mobile-nav__wrapper .mobile-nav__content .main-menu__list > li > ul > li > ul > li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.my_mobile_menu.mobile-nav__wrapper .mobile-nav__content .main-menu__list > li > a > .main-menu-border {
  display: none !important;
}
.my_mobile_menu.mobile-nav__wrapper .mobile-nav__content .main-menu__list > li > a,
.my_mobile_menu.mobile-nav__wrapper .mobile-nav__content .main-menu__list > li > ul > li > a,
.my_mobile_menu.mobile-nav__wrapper .mobile-nav__content .main-menu__list > li > ul > li > ul > li > a {
  display: flex;
  justify-content: space-between;
  line-height: 1.4;
  color: var(--text-color);
  font-size: 14px;
  font-family: var(--anity-font, "Rubik", sans-serif);
  font-weight: 500;
  min-height: 46px;
  align-items: center;
  transition: 500ms;
  padding: 10px 0;
}
.my_mobile_menu.mobile-nav__wrapper .mobile-nav__content .main-menu__list > li > a:hover,
.my_mobile_menu.mobile-nav__wrapper .mobile-nav__content .main-menu__list > li > ul > li > a:hover,
.my_mobile_menu.mobile-nav__wrapper .mobile-nav__content .main-menu__list > li > ul > li > ul > li > a:hover {
  color: var(--bs-primary);
}
.my_mobile_menu.mobile-nav__wrapper .mobile-nav__content .main-menu__list > li > a > button,
.my_mobile_menu.mobile-nav__wrapper .mobile-nav__content .main-menu__list > li > ul > li > a > button,
.my_mobile_menu.mobile-nav__wrapper .mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button {
  width: 30px;
  height: 30px;
  background-color: var(--anity-base);
  border: none;
  outline: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-90deg);
  transition: transform 500ms ease;
  padding: 0;
}
.my_mobile_menu.mobile-nav__wrapper .mobile-nav__content .main-menu__list > li > a > button.expanded,
.my_mobile_menu.mobile-nav__wrapper .mobile-nav__content .main-menu__list > li > ul > li > a > button.expanded,
.my_mobile_menu.mobile-nav__wrapper .mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button.expanded {
  transform: rotate(0deg);
  background-color: var(--bs-primary);
  color: var(--white-color);
}
.my_mobile_menu.mobile-nav__wrapper .mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button,
.my_mobile_menu.mobile-nav__wrapper .mobile-nav__content .main-menu__list > li > ul > li > ul > li > ul {
  display: none !important;
}
.my_mobile_menu.mobile-nav__wrapper .mobile-nav__content .main-menu__list li a.expanded {
  color: var(--anity-base);
}
.my_mobile_menu.mobile-nav__wrapper .mobile-nav__content .main-menu__list li.cart-btn span {
  position: relative;
  top: auto;
  right: auto;
  transform: translate(0, 0);
}
.my_mobile_menu.mobile-nav__wrapper .mobile-nav__content .main-menu__list li.cart-btn i {
  font-size: 16px;
}
.my_mobile_menu.mobile-nav__wrapper .mobile-nav__content .home-showcase {
  margin-top: 0;
  margin-bottom: 0;
}
.my_mobile_menu.mobile-nav__wrapper.expanded {
  opacity: 1;
  transform: translateX(0%);
  visibility: visible;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
}
.my_mobile_menu.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
}
.my_mobile_menu .mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.5;
  cursor: pointer;
}
.my_mobile_menu .mobile-nav__close {
  position: absolute;
  top: 6px;
  right: 10px;
  font-size: 1.5rem;
  color: #000000;
  cursor: pointer;
  opacity: 0.6;
}
.my_mobile_menu .mobile-nav__close:hover {
  opacity: 1;
}
.my_mobile_menu .mobile-nav__content .main-menu__list > li > a.expanded .mobile-nav__content .main-menu__list > li > ul > li > a.expanded .mobile-nav__content .main-menu__list > li > ul > li > ul > li > a.expanded {
  color: var(--anity-base);
}
.my_mobile_menu .mobile-nav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.my_mobile_menu .mobile-nav__top .main-menu__login a {
  color: var(--anity-text-dark);
}
.my_mobile_menu .mobile-nav__container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.my_mobile_menu .mobile-nav__social {
  display: flex;
  align-items: center;
}
.my_mobile_menu .mobile-nav__social a {
  font-size: 20px;
  color: var(--bs-primary);
  transition: 500ms;
}
.my_mobile_menu .mobile-nav__social a + a {
  margin-left: 30px;
}
.my_mobile_menu .mobile-nav__social a:hover {
  color: var(--anity-base);
}
.my_mobile_menu .mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}
.my_mobile_menu .mobile-nav__contact li {
  color: var(--anity-text-dark);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
}
.my_mobile_menu .mobile-nav__contact li + li {
  margin-top: 15px;
}
.my_mobile_menu .mobile-nav__contact li a {
  color: var(--text-color);
  transition: 500ms;
}
.my_mobile_menu .mobile-nav__contact li a:hover {
  color: var(--anity-base);
}
.my_mobile_menu .mobile-nav__contact li > i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--anity-base);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 11px;
  margin-right: 10px;
  color: #fff;
}
.my_mobile_menu .mobile-nav__container .main-logo,
.my_mobile_menu .mobile-nav__container .topbar__buttons,
.my_mobile_menu .mobile-nav__container .main-menu__language,
.my_mobile_menu .mobile-nav__container .main-menu__login {
  display: none;
}

.msg-wrap {
  background: transparent;
  border: none;
  min-height: 500px;
}
.msg-wrap .btn-trans {
  background-color: transparent;
}
.msg-wrap .list-group-item {
  background: transparent;
  padding: 0.75rem;
  border: none;
  border-bottom: 1px solid var(--bs-border-color);
  margin: 0;
}
@media screen and (max-width: 575px) {
  .msg-wrap .list-group-item {
    padding: 8px;
  }
}
.msg-wrap .list-group-item .chat-left-details {
  display: flex;
  flex-direction: column;
  max-width: calc(100% - 50px);
}
.msg-wrap .list-group-item .chat-left-details h6,
.msg-wrap .list-group-item .chat-left-details p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 575px) {
  .msg-wrap .list-group-item .chat-left-details {
    display: none;
  }
}
.msg-wrap .list-group-item.active {
  background-color: #F1F1F1;
  color: var(--text-color);
}
.msg-wrap img.rounded-circle {
  width: 40px;
  height: 40px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid var(--muted-color);
}
.msg-wrap .chat_head {
  border-radius: 10px 10px 0 0;
}
.msg-wrap .chat_head h5,
.msg-wrap .chat_head p {
  color: rgba(21, 21, 21, 0.8);
}
.msg-wrap .chat-right {
  border-radius: 10px;
}
.msg-wrap .chat-right .day-divider {
  display: flex;
  align-items: center;
}
.msg-wrap .chat-right .day-divider .border-bottom {
  height: 1px;
  width: 50%;
}
.msg-wrap .chat-right .chat-footer {
  background: #F1F4F7;
  position: relative;
  display: flex;
  gap: 10px;
}
.msg-wrap .chat-right .chat-footer .btn-trans .small-icon {
  height: auto;
  width: 15px;
}
.msg-wrap .chat-right .chat-footer .input_wrap {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
}
.msg-wrap .chat-right .chat-footer .input_wrap .chat_actions {
  position: absolute;
  right: 0;
  width: 40px;
}
.msg-wrap .chat-right .chat-footer .input_wrap .chat_actions svg {
  width: 22px;
}
.msg-wrap .chat-right .chat-footer textarea.form-control {
  font-size: 13px;
  padding: 10px 40px 10px 10px;
  border: 1px solid #d1d1d1;
  border-radius: 10px;
}
.msg-wrap .chat-right .chat-footer textarea.form-control::-webkit-scrollbar {
  display: none;
}
.msg-wrap .recent-chats {
  height: 100%;
  border: 1px solid var(--bs-border-color);
  border-radius: 12px;
  padding: 15px;
}
@media screen and (max-width: 767px) {
  .msg-wrap .recent-chats {
    padding: 0;
  }
}
.msg-wrap .recent-chats-inner {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 470px;
  min-height: 470px;
  border-radius: 12px;
}
@media screen and (max-width: 767px) {
  .msg-wrap .recent-chats-inner {
    max-height: 500px;
    min-height: 500px;
  }
}
.msg-wrap .chat-body {
  padding-bottom: 25px;
}
.msg-wrap .chat-messages {
  display: flex;
  flex-direction: column;
  min-height: 375px;
  max-height: 375px;
  overflow-y: auto;
}
.msg-wrap .chat-messages.dating_chat {
  height: calc(100vh - 342px);
  min-height: unset;
  max-height: calc(100vh - 342px);
}
.msg-wrap .chat-messages .chat-msg-left,
.msg-wrap .chat-messages .chat-msg-right {
  display: flex;
  position: relative;
  flex-direction: column;
  margin-bottom: 25px !important;
}
.msg-wrap .chat-messages .chat-msg-left p,
.msg-wrap .chat-messages .chat-msg-right p {
  word-break: break-word;
  font-size: 14px;
  color: #6B779A;
}
.msg-wrap .chat-messages .chat-msg-left .msg-warp,
.msg-wrap .chat-messages .chat-msg-right .msg-warp {
  z-index: 1;
  background: #E7EDF4 !important;
  border-radius: 15px 15px 15px 0;
  max-width: 95%;
  margin-right: auto;
  padding: 0.5rem 1.25rem 0.75rem;
}
.msg-wrap .chat-messages .msg_time {
  color: #545C72;
  font-size: 12px;
  position: absolute;
  bottom: -20px;
  display: inline-flex;
}
.msg-wrap .chat-messages .msg_time img {
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.msg-wrap .chat-messages .chat-msg-right {
  justify-content: end;
}
.msg-wrap .chat-messages .chat-msg-right .msg-warp {
  border-radius: 15px 15px 0 15px;
  background: #3E64FF !important;
  margin-left: auto;
  margin-right: 0;
}
.msg-wrap .chat-messages .chat-msg-right .msg-warp p {
  color: rgba(255, 255, 255, 0.8);
}
.msg-wrap .chat-messages .chat-msg-right .msg_time {
  right: 0;
}
.msg-wrap.dating_msg-wrap {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #fff;
  border-radius: 12px;
  transform: translateX(0);
  transition: transform 0.5s ease;
}
.msg-wrap.dating_msg-wrap.msg-wrap-hidden {
  transform: translateX(120%);
}
.msg-wrap .attach_options {
  position: absolute;
  bottom: 23px;
  right: -10px;
  height: 0;
  overflow: hidden;
  transition: 0.3s all ease-in-out;
  z-index: 10;
}
.msg-wrap .attach_options input {
  display: none;
}
.msg-wrap .attach_options .attact_inner {
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.2);
  padding: 8px 6px;
}
.msg-wrap .attach_options .attach_icon {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #9406dd;
  margin-bottom: 5px;
  border-radius: 50%;
  cursor: pointer;
}
.msg-wrap .attach_options .attach_icon.video {
  background: #057ee5;
}
.msg-wrap .attach_options .attach_icon.files {
  background: #2d32b3;
}
.msg-wrap .attach_options .attach_icon svg {
  fill: #ffffff;
}
.msg-wrap .chat_actions:hover .attach_options {
  height: 135px;
}
.msg-wrap .chat_actions {
  width: 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.msg-wrap .file-preview-popup {
  position: absolute;
  bottom: 70px;
  /* Adjust as per your footer height */
  right: 20px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  width: 250px;
  z-index: 100;
}
.msg-wrap .image-warp {
  width: 90%;
  max-width: 320px;
  background: #ffffff;
  border: 1px solid var(--bs-border-color);
  border-radius: 8px;
  padding: 10px;
}
.msg-wrap .image-warp.icon {
  max-width: 60px;
}
.msg-wrap .image-warp img,
.msg-wrap .image-warp video {
  max-width: 100%;
}
.msg-wrap .chat-msg-right .image-warp {
  margin-left: auto;
}
.msg-wrap .chat-msg-left .image-warp {
  margin-right: auto;
}
.msg-wrap .typing_effect {
  position: absolute;
  left: 0;
  top: -30px;
  font-size: 12px;
  color: var(--muted-color);
}

.avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border: 1px solid var(--bs-border-color);
  background: var(--bs-border-color);
  border-radius: 50%;
  overflow: hidden;
}
.avatar img {
  border: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.avatar.size_lg {
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
}

#calendar_book {
  font-family: "Inter", sans-serif;
  max-width: 900px;
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--bs-border-color);
  border-radius: 8px;
}
#calendar_book .fc-header-toolbar {
  height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
#calendar_book .fc-header-toolbar .fc-toolbar-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0;
}
#calendar_book .fc-header-toolbar .fc-button {
  background: transparent;
  border: none;
  color: #333;
  font-size: 1rem;
}
#calendar_book .fc-header-toolbar .fc-button:hover {
  background: rgba(0, 0, 0, 0.05);
}
#calendar_book .fc-header-toolbar .fc-icon {
  font-size: 1.2rem;
}
#calendar_book .fc-header-toolbar .fc-toolbar-chunk:first-child {
  display: none;
}
#calendar_book .fc-header-toolbar .fc-toolbar-chunk:nth-child(2) .fc-toolbar-title {
  font-size: 1.25rem;
}
#calendar_book .fc-col-header-cell-cushion {
  font-weight: 300;
  color: #92929D;
  text-transform: uppercase;
  font-size: 12px;
}
#calendar_book .fc-daygrid-day {
  padding: 0.1rem 0.5rem;
  transition: background 0.3s;
  border-radius: 0 !important;
}
#calendar_book .fc-daygrid-day:hover {
  background-color: rgba(0, 0, 0, 0.03);
  cursor: pointer;
}
#calendar_book .fc-daygrid-day .fc-daygrid-day-number {
  font-size: 14px;
  font-weight: 300;
  color: #171717;
}
#calendar_book .fc-daygrid-day .fc-daygrid-day-top {
  justify-content: start;
  opacity: 1;
}
#calendar_book .fc-daygrid-day.fc-day-sun {
  background: var(--gray-15);
}
#calendar_book .fc-day-today {
  background-color: rgba(0, 123, 255, 0.05) !important;
  border-radius: 10px;
}
#calendar_book .fc-day-other .fc-daygrid-day-number {
  color: #ccc !important;
}
#calendar_book .fc-scrollgrid,
#calendar_book .fc-theme-standard td,
#calendar_book .fc-theme-standard th {
  border: none !important;
}
#calendar_book .fc-col-header-cell {
  border-right: none !important;
  border-left: none !important;
  border-left-width: 0;
}
#calendar_book .fc-scrollgrid-section > td:first-child {
  border-left-width: 1px;
}
#calendar_book .fc-scrollgrid-section > th:first-child {
  border-right-width: 0px;
}

.calendar_wrapper {
  position: relative;
}
.calendar_wrapper .month_calendar {
  min-width: 100px;
  position: absolute;
  top: 17.5px;
  right: 16px;
  z-index: 99;
}
.calendar_wrapper .month_calendar .dropdown-menu {
  max-height: 200px;
  overflow-y: auto;
}

.expert_details .card_top {
  border-radius: 8px;
  overflow: hidden;
}
.expert_details .dot_line {
  max-width: 20px;
}
.expert_details .dot_line .card_rounded_circle {
  width: 12px;
  height: 16px;
  min-height: 16px;
  border-radius: 30px;
  border: 3px solid var(--bs-primary);
}
.expert_details .dot_line .v_line {
  width: 1.5px;
  height: 100%;
  background: var(--gray-25);
}
.expert_details .border_blue {
  border: 2px solid var(--blue);
}

.datepicker table {
  border-collapse: unset;
}
.datepicker table tr:first-child td {
  padding: 4px 0;
}
.datepicker table tr td span, .datepicker table tr td.day {
  height: unset;
  line-height: 1.3;
  border-radius: 4px;
  font-size: 13px;
  padding: 6px 4px;
  margin: 2px 2px;
  cursor: pointer;
}
.datepicker table tr td span.active, .datepicker table tr td span:focus, .datepicker table tr td.day.active, .datepicker table tr td.day:focus {
  color: var(--white-color);
  background-image: none !important;
  background-color: var(--bs-primary) !important;
}
.datepicker table tr td span:hover:not(.active), .datepicker table tr td.day:hover:not(.active) {
  background-image: none !important;
  background-color: var(--gray-25) !important;
}
.datepicker table tr th {
  font-size: 13px !important;
  font-weight: 600;
}
.datepicker .datepicker-days table tr td.day {
  width: 30px;
}
.datepicker .datepicker-years table tr td span,
.datepicker .datepicker-months table tr td span {
  width: 42px;
}

.custom-file-upload {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 !important;
  height: 42.1px;
}
.custom-file-upload .btn-upload {
  display: flex;
  padding: 5px 10px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  height: 40.1px;
  align-items: center;
  background: var(--gray-100);
  white-space: nowrap;
}
.custom-file-upload .file-name {
  font-size: 0.9rem;
  color: var(--text-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.custom-file-upload.only_btn {
  border: none;
  width: -moz-fit-content;
  width: fit-content;
}
.custom-file-upload.only_btn .file-name {
  display: none;
}

.flutter_factory .info_bg {
  position: relative;
}
.flutter_factory .info_bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/images/ff-back.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.1;
}

.view_btn {
  padding: 4px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.view_btn:hover {
  background-color: var(--bs-primary);
  color: var(--white-color);
}

.badge:hover {
  background-color: rgb(214, 5, 5) !important;
  color: #fff !important;
  cursor: pointer;
}
.badge.type_3 {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50%;
  position: absolute;
  top: -4px;
  left: 92px;
  padding: 2px;
  background-color: #fff;
  border: 1px solid rgb(214, 5, 5);
  color: rgb(214, 5, 5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.amenities_card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 10px;
  gap: 1rem;
  text-align: center;
  height: 100%;
  border-width: 2px;
}
.amenities_card .img_wrap {
  width: 50px;
  height: 50px;
  margin: 0 auto;
}
.amenities_card .img_wrap img {
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.amenities_card h6 {
  font-family: mainFontSans;
  font-size: 14px;
}

@media (min-width: 992px) {
  .row-cols-lg-8 > * {
    flex: 0 0 auto;
    width: 12.5%;
  }
}
.otp-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.otp-input {
  width: 60px;
  height: 60px;
  font-size: 24px;
  text-align: center;
  border-radius: 12px;
  border: 2px solid #e0e0e0;
  outline: none;
  transition: border 0.2s ease;
}
.otp-input:focus {
  border-color: #ff6600;
}

.btn-submit {
  background-color: #ff6600;
  color: white;
  padding: 10px 40px;
  border: none;
  border-radius: 6px;
}

.apexcharts-menu-item {
  white-space: nowrap;
}

.sessions_table.table tr td:first-child {
  width: 350px;
  text-align: left;
}
.sessions_table.table tbody td:last-child {
  text-align: unset;
}
.sessions_table.table thead td:last-child,
.sessions_table.table thead th:last-child {
  text-align: unset;
}

.dropdown_menu {
  width: 250px;
}

.nav_dropdown {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
}
.nav_dropdown .parent {
  padding: 0 !important;
}
.nav_dropdown .parent > a {
  padding: 0 !important;
  background: none !important;
}
.nav_dropdown .parent > a img {
  min-width: 40px;
  min-height: 40px;
  width: 40px;
  height: 40px;
}
.nav_dropdown .parent .child {
  right: 0;
}

.user_dropdown .dropdown-menu {
  width: 250px;
  border: none;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.user_dropdown .profile-avatar {
  width: 50px;
  height: 50px;
}
.user_dropdown .topbar-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
}
.user_dropdown .menu_item:hover i,
.user_dropdown .menu_item:hover a {
  color: var(--bs-primary) !important;
}
.user_dropdown .menu_item.type_1:hover {
  background-color: var();
}
.user_dropdown .dropdown-toggle {
  padding-right: 0px !important;
}
.user_dropdown .dropdown-toggle::after {
  display: none !important;
}

.notify_dropdown .dropdown-menu {
  position: absolute;
  border: none;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  width: 300px;
  top: 120%;
  right: -11px;
  z-index: 9999;
}
.notify_dropdown .dropdown-menu::after {
  content: "";
  width: 60px;
  height: 40px;
  background: transparent;
  position: absolute;
  top: -40px;
  right: 0;
}
.notify_dropdown .dropdown-menu::before {
  content: "";
  position: absolute;
  top: -9px;
  right: 10px;
  transform: translateX(0%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
}
.notify_dropdown .dropdown-menu > a {
  z-index: 9999;
}
.notify_dropdown .dropdown-menu .dropdown-scroll {
  max-height: calc(100vh - 250px);
  overflow-y: auto;
}
.notify_dropdown ul li {
  line-height: 1.5;
}
@media only screen and (min-width: 992px) {
  .notify_dropdown ul li {
    background-color: #ffffff;
  }
}
.notify_dropdown ul li:first-child {
  border-radius: 8px 8px 0 0;
}
.notify_dropdown ul li:last-child {
  border-radius: 0 0 8px 8px;
}
.notify_dropdown ul li:hover {
  background: var(--gray-15);
}
.notify_dropdown ul li:hover > a {
  color: var(--text-color);
}
.notify_dropdown .badge_notify {
  top: 4px;
  right: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--blue);
}

.profile_edit .selected_values {
  display: none;
}
.profile_edit .edit-btn {
  display: none;
}
.profile_edit.not_editable .save-btn {
  display: none;
}
.profile_edit.not_editable .edit-btn {
  display: block;
}
.profile_edit.not_editable .form-control,
.profile_edit.not_editable select {
  border: transparent;
  padding: 0;
  height: unset !important;
  line-height: 1;
  min-height: inherit;
  cursor: text;
  pointer-events: none;
}
.profile_edit.not_editable button[data-repeater-create] {
  display: none !important;
}
.profile_edit.not_editable .repeated_item .btn-danger {
  display: none !important;
}
.profile_edit.not_editable .expt_rept,
.profile_edit.not_editable .select2-container {
  display: none !important;
}
.profile_edit.not_editable .selected_values {
  display: flex !important;
}
.profile_edit.card {
  border-radius: 8px;
  border: none !important;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.sessions_table.table tr td {
  padding: 6px 8px;
}

.profile-wrapper .profile-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.profile-wrapper .overlay-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  cursor: pointer;
}
.profile-wrapper .overlay-icon i {
  font-size: 20px;
}
.profile-wrapper:hover .overlay-icon {
  opacity: 1;
}
.profile-wrapper .remove-icon {
  position: absolute;
  top: 5px;
  right: 5px;
  background: #dc3545;
  border-radius: 50%;
  padding: 2px;
  cursor: pointer;
}

.star-rating i {
  cursor: pointer;
}
.star-rating i:focus {
  outline: none;
  box-shadow: none;
}

.popup_blocker {
  background: rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: none;
}

.user_dropdown .dropdown-menu {
  top: 120%;
  right: -8px;
}
.user_dropdown .dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 10px;
  transform: translateX(0%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
}
.user_dropdown .dropdown-menu::after {
  content: "";
  width: 60px;
  height: 40px;
  background: transparent;
  position: absolute;
  top: -40px;
  right: 0;
}
.user_dropdown > a.show ~ .popup_blocker {
  display: block;
}

.notify_dropdown > a.show ~ .popup_blocker {
  display: block;
}

.appendProducts img {
  aspect-ratio: 4/3;
}
.appendProducts .remove-product {
  background: white;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 4px;
  top: 4px;
  font-size: 14px;
}
.appendProducts.hide_delete .remove-product {
  display: none;
}/*# sourceMappingURL=style.css.map */