/* ========================================================================
    Table Contents
  ========================================================================== 

  -on/Off switch
  -ripple effect 
  -Slider
  -Slideshow
  -Transform Origin
  -Animation
  -Transitionsf
  -Simplebar

*/


[hidden] {
  display: none !important;
}


/* ========================================================================
  On/Off Switch
 ========================================================================== */

.switch-button {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 20px;
  cursor: pointer;
  border-radius: 50px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  margin: 0 7px 0 0;
  top: 4px;
  position: absolute;
  top: 2px;
  left: 0;
}

.switch input {
  display: none;
}

.switch.interactive-effect input:checked+.switch-button:before {
  -webkit-animation: switch-shadow-color 0.4s;
  animation: switch-shadow-color 0.4s;
}

.switch.interactive-effect .switch-button:before {
  -webkit-animation: switch-shadow 0.4s;
  animation: switch-shadow 0.4s;
}

@-webkit-keyframes switch-shadow {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.3);
  }

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

@keyframes switch-shadow {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.3);
  }

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

@-webkit-keyframes switch-shadow-color {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(42, 65, 232, 0.6);
    box-shadow: 0 0 0 0 rgba(42, 65, 232, 0.6);
  }

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

@keyframes switch-shadow-color {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(42, 65, 232, 0.6);
    box-shadow: 0 0 0 0 rgba(42, 65, 232, 0.6);
  }

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

.switch-button:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  bottom: 2px;
  left: 2px;
  -webkit-transition: 0.4s, -webkit-box-shadow 0.3s;
  transition: 0.4s, -webkit-box-shadow 0.3s;
  transition: 0.4s, box-shadow 0.3s;
  transition: 0.4s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
  border-radius: 50px;
}

input:checked+.switch-button:before {
  -webkit-transform: translateX(14px);
  transform: translateX(14px);
}



/* ========================================================================
   Ripple Effect
 ========================================================================== */

.ripple-effect-dark {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.ripple-effect {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.ripple-effect span.ripple-overlay {
  -webkit-animation: ripple 0.9s;
  animation: ripple 0.9s;
  border-radius: 100%;
  background: #fff;
  height: 12px;
  position: absolute;
  width: 12px;
  line-height: 12px;
  opacity: 0.1;
  pointer-events: none;
}

.ripple-effect-dark span.ripple-overlay {
  -webkit-animation: ripple 0.9s;
  animation: ripple 0.9s;
  border-radius: 100%;
  background: #fff;
  height: 12px;
  position: absolute;
  width: 12px;
  line-height: 12px;
  opacity: 0.1;
  pointer-events: none;
  background: #000;
  opacity: 0.07;
}

@-webkit-keyframes ripple {
  0% {
    -webkit-transform: scale(4);
    transform: scale(4);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(40);
    transform: scale(40);
  }
}

@keyframes ripple {
  0% {
    -webkit-transform: scale(4);
    transform: scale(4);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(40);
    transform: scale(40);
  }
}


/* ========================================================================
    Component: modal
========================================================================== */
.uk-modal {
  -webkit-overflow-scrolling: touch;
  transition: opacity 0.15s linear;
}

.uk-modal-dialog {
  transition: 0.3s linear;
  transition-property: opacity, transform;
  box-sizing: border-box;
}

/* ========================================================================
    Component: Slider and Slideshow
 ========================================================================== */
/*  Prevent tab highlighting on iOS. */
.uk-slider,
.uk-slideshow {
  -webkit-tap-highlight-color: transparent;
}

.uk-slider-items,
.uk-slideshow-items {
  touch-action: pan-y;
}

/*  Prevent displaying the callout information on iOS.*/
.uk-slider-items,
.uk-slideshow-items {
  -webkit-touch-callout: none;
}

/* ========================================================================
    Component: Slideshow
========================================================================== */
/* Optimize animation */
.uk-slideshow-items>* {
  will-change: transform, opacity;
}


/* Transform Origin
========================================================================== */
.uk-transform-origin-top-left {
  transform-origin: 0 0;
}

.uk-transform-origin-top-center {
  transform-origin: 50% 0;
}

.uk-transform-origin-top-right {
  transform-origin: 100% 0;
}

.uk-transform-origin-center-left {
  transform-origin: 0 50%;
}

.uk-transform-origin-center-right {
  transform-origin: 100% 50%;
}

.uk-transform-origin-bottom-left {
  transform-origin: 0 100%;
}

.uk-transform-origin-bottom-center {
  transform-origin: 50% 100%;
}

.uk-transform-origin-bottom-right {
  transform-origin: 100% 100%;
}


/* ========================================================================
     Component: lightbox
   ========================================================================== */

.uk-lightbox {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1010;
  background: #000;
  opacity: 0;
  transition: opacity 0.15s linear;
  touch-action: pinch-zoom;
  transform: scale(0.5);
}

.uk-lightbox.uk-open {
  display: block;
  opacity: 1;
  transform: scale(1);
}

.uk-lightbox-page {
  overflow: hidden;
}

.uk-lightbox-items>* {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  justify-content: center;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  will-change: transform, opacity;
}

.uk-lightbox-items>*>* {
  max-width: 100vw;
  max-height: 100vh;
}

.uk-lightbox-items>*> :not(iframe) {
  width: auto;
  height: auto;
}

.uk-lightbox-items>.uk-active {
  display: flex;
}

.uk-lightbox-toolbar {
  padding: 10px 10px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  color: white;
}

.uk-lightbox-toolbar.uk-position-top {
  background-color: transparent !important;
}

.uk-lightbox-button,
.uk-lightbox-toolbar-icon {
  background-color: rgb(231, 225, 225) !important;
  color: rgb(231, 225, 225) !important;
  border-radius: 100%;
  padding: 0.5rem;
  width: 42px;
  height: 42px;
  box-sizing: border-box;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
}

.uk-lightbox-toolbar-icon.uk-close {
  position: absolute;
  right: 10px;
  top: -25px;
}

.uk-transition-active .uk-lightbox-toolbar-icon.uk-close {
  top: 16px;
}

.uk-lightbox-caption {
  text-align: center;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.uk-lightbox-caption:empty {
  display: none;
}

.uk-lightbox-iframe {
  width: 80%;
  height: 80%;
}

.uk-lightbox-button[hidden] {
  display: none !important;
}

.uk-lightbox-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.15s linear;
}

.uk-lightbox-button svg>*,
.uk-lightbox-toolbar-icon.uk-close svg>* {
  stroke: #0e0e0e !important;
}

.uk-lightbox-button.uk-position-center-right {
  right: 16px;
}

.uk-lightbox-button.uk-position-center-left {
  left: 16px;
}

.uk-lightbox-button.uk-position-center-right:hover {
  right: 8px;
}

.uk-lightbox-button.uk-position-center-left:hover {
  left: 8px;
}

/* ========================================================================
     Component: Animation
   ========================================================================== */
[class*="uk-animation-"] {
  animation: 0.5s ease-out both;
}

/*
   * Fade
   */
.uk-animation-fade {
  animation-name: uk-fade;
  animation-duration: 0.8s;
  animation-timing-function: linear;
}

/*
   * Scale
   */
.uk-animation-scale-up {
  animation-name: uk-fade, uk-scale-up;
}

.uk-animation-scale-down {
  animation-name: uk-fade, uk-scale-down;
}

/*
   * Slide
   */
.uk-animation-slide-top {
  animation-name: uk-fade, uk-slide-top;
}

.uk-animation-slide-bottom {
  animation-name: uk-fade, uk-slide-bottom;
}

.uk-animation-slide-left {
  animation-name: uk-fade, uk-slide-left;
}

.uk-animation-slide-right {
  animation-name: uk-fade, uk-slide-right;
}

/*
   * Slide Small
   */
.uk-animation-slide-top-small {
  animation-name: uk-fade, uk-slide-top-small;
}

.uk-animation-slide-bottom-small {
  animation-name: uk-fade, uk-slide-bottom-small;
}

.uk-animation-slide-left-small {
  animation-name: uk-fade, uk-slide-left-small;
}

.uk-animation-slide-right-small {
  animation-name: uk-fade, uk-slide-right-small;
}

/*
   * Slide Medium
   */
.uk-animation-slide-top-medium {
  animation-name: uk-fade, uk-slide-top-medium;
}

.uk-animation-slide-bottom-medium {
  animation-name: uk-fade, uk-slide-bottom-medium;
}

.uk-animation-slide-left-medium {
  animation-name: uk-fade, uk-slide-left-medium;
}

.uk-animation-slide-right-medium {
  animation-name: uk-fade, uk-slide-right-medium;
}

/*
   * Kenburns
   */
.uk-animation-kenburns {
  animation-name: uk-kenburns;
  animation-duration: 15s;
}

/*
   * Shake
   */
.uk-animation-shake {
  animation-name: uk-shake;
}

/*
   * SVG Stroke
   * The `--uk-animation-stroke` custom property contains the longest path length.
   * Set it manually or use `uk-svg="stroke-animation: true"` to set it automatically.
   * All strokes are animated by the same pace and doesn't end simultaneously.
   * To end simultaneously, `pathLength="1"` could be used, but it's not working in Safari yet.
   */
.uk-animation-stroke {
  animation-name: uk-stroke;
  animation-duration: 2s;
  stroke-dasharray: var(--uk-animation-stroke);
}

/* Direction modifier
   ========================================================================== */
.uk-animation-reverse {
  animation-direction: reverse;
  animation-timing-function: ease-in;
}

/* Duration modifier
   ========================================================================== */
.uk-animation-fast {
  animation-duration: 0.1s;
}

/* Toggle animation based on the State of the Parent Element
   ========================================================================== */
.uk-animation-toggle:not(:hover):not(:focus) [class*="uk-animation-"] {
  animation-name: none;
}

/* Keyframes used by animation classes
   ========================================================================== */
/*
   * Fade
   */
@keyframes uk-fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*
   * Scale
   */
@keyframes uk-scale-up {
  0% {
    transform: scale(0.9);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes uk-scale-down {
  0% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

/*
   * Slide
   */
@keyframes uk-slide-top {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes uk-slide-bottom {
  0% {
    transform: translateY(100%);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes uk-slide-left {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes uk-slide-right {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(0);
  }
}

/*
   * Slide Small
   */
@keyframes uk-slide-top-small {
  0% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes uk-slide-bottom-small {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes uk-slide-left-small {
  0% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes uk-slide-right-small {
  0% {
    transform: translateX(10px);
  }

  100% {
    transform: translateX(0);
  }
}

/*
   * Slide Medium
   */
@keyframes uk-slide-top-medium {
  0% {
    transform: translateY(-50px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes uk-slide-bottom-medium {
  0% {
    transform: translateY(50px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes uk-slide-left-medium {
  0% {
    transform: translateX(-50px);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes uk-slide-right-medium {
  0% {
    transform: translateX(50px);
  }

  100% {
    transform: translateX(0);
  }
}

/*
   * Kenburns
   */
@keyframes uk-kenburns {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.2);
  }
}

/*
   * Shake
   */
@keyframes uk-shake {

  0%,
  100% {
    transform: translateX(0);
  }

  10% {
    transform: translateX(-9px);
  }

  20% {
    transform: translateX(8px);
  }

  30% {
    transform: translateX(-7px);
  }

  40% {
    transform: translateX(6px);
  }

  50% {
    transform: translateX(-5px);
  }

  60% {
    transform: translateX(4px);
  }

  70% {
    transform: translateX(-3px);
  }

  80% {
    transform: translateX(2px);
  }

  90% {
    transform: translateX(-1px);
  }
}

/*
   * Stroke
   */
@keyframes uk-stroke {
  0% {
    stroke-dashoffset: var(--uk-animation-stroke);
  }

  100% {
    stroke-dashoffset: 0;
  }
}

/* ========================================================================
     Component: Transition
   ========================================================================== */
/* Transitions
   ========================================================================== */
/*
   * The toggle is triggered on touch devices by two methods:
   * 1. Using `:focus` and tabindex
   * 2. Using `:hover` and a `touchstart` event listener registered on the document
   *    (Doesn't work on Surface touch devices)
   */
:where(.uk-transition-fade),
:where([class*="uk-transition-scale"]),
:where([class*="uk-transition-slide"]) {
  --uk-position-translate-x: 0;
  --uk-position-translate-y: 0;
}

.uk-transition-fade,
[class*="uk-transition-scale"],
[class*="uk-transition-slide"] {
  --uk-translate-x: 0;
  --uk-translate-y: 0;
  --uk-scale-x: 1;
  --uk-scale-y: 1;
  transform: translate(var(--uk-position-translate-x),
      var(--uk-position-translate-y)) translate(var(--uk-translate-x), var(--uk-translate-y)) scale(var(--uk-scale-x), var(--uk-scale-y));
  transition: 0.3s ease-out;
  transition-property: opacity, transform, filter;
  opacity: 0;
}

/*
    * Fade
    */
.uk-transition-toggle:hover .uk-transition-fade,
.uk-transition-toggle:focus .uk-transition-fade,
.uk-transition-toggle .uk-transition-fade:focus-within,
.uk-transition-active.uk-active .uk-transition-fade {
  opacity: 1;
}

/*
    * Scale
    * 1. Make image rendering the same during the transition as before and after. Prefixed because of Safari.
    */
/* 1 */
[class*="uk-transition-scale"] {
  -webkit-backface-visibility: hidden;
}

.uk-transition-scale-up {
  --uk-scale-x: 1;
  --uk-scale-y: 1;
}

.uk-transition-scale-down {
  --uk-scale-x: 1.03;
  --uk-scale-y: 1.03;
}

/* Show */
.uk-transition-toggle:hover .uk-transition-scale-up,
.uk-transition-toggle:focus .uk-transition-scale-up,
.uk-transition-toggle .uk-transition-scale-up:focus-within,
.uk-transition-active.uk-active .uk-transition-scale-up {
  --uk-scale-x: 1.03;
  --uk-scale-y: 1.03;
  opacity: 1;
}

.uk-transition-toggle:hover .uk-transition-scale-down,
.uk-transition-toggle:focus .uk-transition-scale-down,
.uk-transition-toggle .uk-transition-scale-down:focus-within,
.uk-transition-active.uk-active .uk-transition-scale-down {
  --uk-scale-x: 1;
  --uk-scale-y: 1;
  opacity: 1;
}

/*
    * Slide
    */
.uk-transition-slide-top {
  --uk-translate-y: -100%;
}

.uk-transition-slide-bottom {
  --uk-translate-y: 100%;
}

.uk-transition-slide-left {
  --uk-translate-x: -100%;
}

.uk-transition-slide-right {
  --uk-translate-x: 100%;
}

.uk-transition-slide-top-small {
  --uk-translate-y: calc(-1 * 10px);
}

.uk-transition-slide-bottom-small {
  --uk-translate-y: 10px;
}

.uk-transition-slide-left-small {
  --uk-translate-x: calc(-1 * 10px);
}

.uk-transition-slide-right-small {
  --uk-translate-x: 10px;
}

.uk-transition-slide-top-medium {
  --uk-translate-y: calc(-1 * 50px);
}

.uk-transition-slide-bottom-medium {
  --uk-translate-y: 50px;
}

.uk-transition-slide-left-medium {
  --uk-translate-x: calc(-1 * 50px);
}

.uk-transition-slide-right-medium {
  --uk-translate-x: 50px;
}

/* Show */
.uk-transition-toggle:hover [class*="uk-transition-slide"],
.uk-transition-toggle:focus [class*="uk-transition-slide"],
.uk-transition-toggle [class*="uk-transition-slide"]:focus-within,
.uk-transition-active.uk-active [class*="uk-transition-slide"] {
  --uk-translate-x: 0;
  --uk-translate-y: 0;
  opacity: 1;
}

/* Opacity modifier
    ========================================================================== */
.uk-transition-opaque {
  opacity: 1;
}

/* Duration modifiers
    ========================================================================== */
.uk-transition-slow {
  transition-duration: 0.7s;
}


/* Simplebar */

[data-simplebar] {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  height: 100%;
}

.simplebar-wrapper {
  overflow: hidden;
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit;
}

.simplebar-mask {
  direction: inherit;
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto !important;
  height: auto !important;
  z-index: 0;
}

.simplebar-offset {
  direction: inherit !important;
  -webkit-box-sizing: inherit !important;
  box-sizing: inherit !important;
  resize: none !important;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}

.simplebar-content {
  direction: inherit;
  -webkit-box-sizing: border-box !important;
  box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%;
  width: auto;
  visibility: visible;
  overflow: scroll;
  max-width: 100%;
  max-height: 100%;
}

.simplebar-placeholder {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  pointer-events: none;
}

.simplebar-height-auto-observer-wrapper {
  -webkit-box-sizing: inherit !important;
  box-sizing: inherit !important;
  height: 100%;
  width: inherit;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  -webkit-box-flex: inherit;
  -ms-flex-positive: inherit;
  flex-grow: inherit;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
}

.simplebar-height-auto-observer {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 1000%;
  width: 1000%;
  min-height: 1px;
  min-width: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.simplebar-scrollbar {
  position: absolute;
  right: 5px;
  width: 5px;
  min-height: 10px;
}

.simplebar-scrollbar:before {
  position: absolute;
  content: "";
  border-radius: 7px;
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  -webkit-transition: opacity 0.2s, background-color 0.3s;
  transition: opacity 0.2s, background-color 0.3s;
  background-color: #545252;
}

.simplebar-track .simplebar-scrollbar.simplebar-visible:before {
  opacity: 0.5;
  -webkit-transition: opacity 0s linear;
  transition: opacity 0s linear;
}

.simplebar-track.simplebar-vertical {
  top: 0;
  width: 10px;
}

.simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
  top: 2px;
  bottom: 2px;
}

.simplebar-track.simplebar-horizontal {
  left: 0;
  height: 11px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
  height: 100%;
  left: 2px;
  right: 2px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  right: auto;
  left: 0;
  top: 2px;
  height: 7px;
  min-height: 0;
  min-width: 10px;
  width: auto;
}

[data-simplebar-direction="rtl"] .simplebar-track.simplebar-vertical {
  right: auto;
  left: 0;
}

.hs-dummy-scrollbar-size {
  direction: rtl;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  height: 500px;
  width: 500px;
  overflow-y: hidden;
  overflow-x: scroll;
}


.sticky-tab {

  display: none;
  justify-content: space-around;
  align-items: center;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  /* Change as per your design */
  border-top: 1px solid #dcdcdc;
  /* Light border for the sticky tab - optional */
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  /* Shadow for a "lifted" effect - optional */
  padding: 10px 0;
  /* Adjust based on your design */
  z-index: 100;
  /* Ensure it's above other content */
}

/* Individual buttons in the sticky tab */
.tab-button {
  background-color: transparent;
  border: none;
  padding: 0px 20px;
  font-size: 16px;
  /* Adjust based on your design */
  color: #333;
  /* Button text color */
  text-align: center;
  outline: none;
  flex-grow: 1;
  /* Ensures buttons are evenly spaced */
  transition: background-color 0.3s ease;
  /* Smooth transition for hover effect */
}

.tab-button:hover {
  background-color: #f2f2f2;
  /* Slight background on hover for feedback */
}

/* Optional: Highlighting active button */
.tab-button.active {
  color: #007bff;
  /* Active button text color */
  font-weight: bold;
}

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

  /* Sticky Tab container */
  .sticky-tab {
    height: 57px;
    display:flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    /* Change as per your design */
    border-top: 1px solid #dcdcdc;
    /* Light border for the sticky tab - optional */
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    /* Shadow for a "lifted" effect - optional */
    padding: 10px 0;
    /* Adjust based on your design */
    z-index: 100;
    /* Ensure it's above other content */
  }

  /* Individual buttons in the sticky tab */
  .tab-button {
    background-color: transparent;
    border: none;
    padding: 0px 20px;
    font-size: 16px;
    /* Adjust based on your design */
    color: #333;
    /* Button text color */
    text-align: center;
    outline: none;
    flex-grow: 1;
    /* Ensures buttons are evenly spaced */
    transition: background-color 0.3s ease;
    /* Smooth transition for hover effect */
  }

  .tab-button:hover {
    background-color: #f2f2f2;
    /* Slight background on hover for feedback */
  }

  /* Optional: Highlighting active button */
  .tab-button.active {
    color: #007bff;
    /* Active button text color */
    font-weight: bold;
  }
}




/* start host event */

/* Custom styles for the dialog */

.dialog-content {
            padding: 20px;
        }
        .dialog-content input {
            margin-top: 10px;
            padding: 8px;
            width: 100%;
            box-sizing: border-box;
        }
        .dialog-buttons {
            margin-top: 20px;
            text-align: right;
        }
        .dialog-buttons button {
            padding: 8px 12px;
            margin-left: 10px;
        }
#imagePreviewContainer {
  display: none;
  margin-top: 20px;
}

#imagePreview {
  max-width: 100%;
  max-height: 200px;
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.5);
}

dialog {
  border: none;
  border-radius: 8px;
  padding: 0;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.dialog-header,
.dialog-footer {
  padding: 1rem;
  background-color: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
}

.dialog-footer {
  border-top: 1px solid #e0e0e0;
  text-align: right;
}

.dialog-footer button {
  margin-left: 10px;
}

.dialog-body {
  padding: 1rem;
}

.form-section {
  margin-bottom: 1.5rem;
}

/* end host event */




/* start jobs&internships */

/* Existing styles for the job card and buttons */
/* Existing styles for the job card and buttons */

.filter-button {
  font-size: 12px;
  width: 80px;
  /* Set a fixed width */
  height: 30px;
  /* Set a fixed height */
  display: inline-block;
  /* Ensure buttons are inline */
  text-align: center;
  /* Center the text horizontally */
  line-height: 30px;
  /* Center the text vertically */
  border: none;
  /* Remove default border */
  cursor: pointer;
  /* Change cursor to pointer on hover */
  /* border-radius: 5px; */
  transition: background-color 0.3s;
  /* Smooth background-color transition */
}

.filter-button:hover {
  background-color: #e5e111;
  /* Change background color on hover */
}

.job-card {
  border: 1px solid #e2e8f0;
  /* Border color to match light theme */
  transition: transform 0.3s;
}

.job-card:hover {
  transform: translateY(-5px);
  /* Add a slight lift on hover */
}

.job-type {
  font-size: 0.75rem;
  /* Small text size for job type badges */
  font-weight: 500;
  /* Slightly bold to stand out */
}

/* Dark mode adjustments */
.dark .job-card {
  border: 1px solid #4b5563;
  /* Dark mode border color */
}

.job-card {
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.job-type {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 12px;
}

/* Media query for screens less than 430px */
@media (max-width: 430px) {

  .job-card {
    padding: 15px;
    /* Reduce padding inside the card */
  }

  .job-type {
    font-size: 0.65rem;
    /* Slightly smaller text for job type badges */
  }
}

/* Additional media query for screens less than 329px */
@media (max-width: 329px) {


  .job-card {
    padding: 10px;
    /* Reduce padding inside the card even more */
    margin-bottom: 15px;
    /* Reduce bottom margin */
  }

  .job-type {
    font-size: 0.6rem;
    /* Smaller text for job type badges */
  }


}

/* end jobs&internships */



/* start internships 1 */
.dialog-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  /* Align items to the start */
  padding-top: 6%;
  /* Add padding to push the box down */
  z-index: 50;
}



.dialog-content {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  padding: 2rem;
  max-width: 90vw;
  max-height: 90vh;
  overflow-y: auto;
}

.hidden {
  display: none;
}

/* end internships 1 */


/* start messages */
.relative {
  position: relative;
}

.flex-1 {
  flex: 1;
}

.resize-none {
  resize: none;
}

.rounded-full {
  border-radius: 9999px;
}

/* end messages */



/* start job details company page css */
.actions-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.actions-button {
  width: 75%;
  margin: 0.25rem 0;
}


@media (max-width: 768px) {
  .custom-stacked {
    flex-direction: column;
    gap: 1rem;
    /* Adjust the spacing between stacked items as needed */
  }
}

@media (min-width: 769px) {
  .custom-stacked {
    flex-direction: row;
    gap: 1rem;
    /* Adjust the spacing between row items as needed */
  }

  .custom-select {
    width: 12rem;
    /* Adjust width as needed */
  }
}

@media (max-width: 768px) {
  .custom-mobile {
    flex-direction: column;
    align-items: flex-start;
  }

  .custom-mobile-info {
    flex-direction: column;
    align-items: flex-start;
  }

  .custom-mobile-buttons {
    justify-content: flex-end;
    width: 100%;
  }
}


.stats-container {
  grid-template-columns: repeat(6, 1fr);
}

@media (max-width: 768px) {
  .stats-container {
    grid-template-columns: repeat(3, 1fr);
  }
}


.blur {
  filter: blur(5px);
}

#modal {
  max-width: 100%;
  max-height: 100%;
  overflow: auto;
}

#modal .p-4 {
  max-height: calc(100% - 3.5rem);
  /* Adjust based on button height and padding */
}

/* end job details company page css */



/* feed css */

 /* Custom styles for dropdown arrow animation */
 .rotate-180 {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.arrow-down {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid black;
}

.arrow-up {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid black;
}

/* Slider container */
.slider {
  position: relative;
  overflow: hidden;
  height: 100%;
}

/* Slides container */
.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}

/* Each slide image */
.slides img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;

}


/* Navigation buttons */
.prev,
.next {
  position: absolute;
  top: 50%;
  border-radius: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.5);
  color: rgb(72, 72, 72);
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 1;
  font-size: 24px;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.post-content {
  max-height: 3.6em;
  /* Limit to 3 lines of text */
  overflow: hidden;
  position: relative;
  transition: max-height 0.3s ease;
}

.read-more-button {
  display: block;
  /* margin-top: 10px; */
  background: none;
  border: none;
  color: #007bff;
  cursor: pointer;
  font-weight: bold;
}

.post-content.expanded {
  max-height: none;
  /* Remove the height limit */
}

.recruiter-login-text {
  display: none;
}

@media (min-width: 640px) {
  .recruiter-login-text {
      display: inline;
  }
}

.textbox{
  display: none; width: 100%;
  box-sizing: border-box;
  padding: 10px;
  margin: 0.6px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-left : 4px;

}

 /* Existing styles for the job card and buttons */
    /* company job listing   */

 @media (max-width: 768px) {
  .search-filters {
      grid-template-columns: 1fr !important;
  }

  .job-entry-header,
  .job-entry-row {
      display: none !important;
  }

  .job-entry-row-mobile {
      display: flex !important;
      flex-direction: column;
  }
}

@media (min-width: 769px) {
  .job-entry-row-mobile {
      display: none;
  }
}


/* register css page */
.toggle-password {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
}

.social-icons a:not(:last-child) {
  margin-right: 1.5rem;
  /* Adjust spacing between icons */
}

/* Basic styling for form sections */
.form-section {
  display: none;
}

.form-section.active {
  display: block;
}


/* saved post css page */

@media (max-width: 640px) {
  .grid-cols-responsive {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 641px) {
  .grid-cols-responsive {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}


@media (min-width: 768px) {
  .mobile-navbar {
    display: none;
  }
}

@media (max-width: 767px) {
  .desktop-navbar {
    display: none;
  }
}

/* register page username  */
.icon {
    position: absolute;
    right: 10px;
    width: 20px;
    height: 20px;
    background-size: contain;
    top: 38px
}
.hidden {
    display: none;
}
.loading {
    border: 4px solid #f3f3f3;
    border-radius: 50%;
    border-top: 2px solid #3498db;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.border-green {
    border-color: green !important;
}
.border-red {
    border-color: red !important;
}

#othersTextbox{
  display: none; width: 100%;
  box-sizing: border-box;
  padding: 10px;
  margin: 19px 0px 5px 0px;
  border-radius: 5px;                                                                                         
}

#othersEventTextbox{
  display: none; width: 100%;
  box-sizing: border-box;
  padding: 10px;
  margin: 19px 0px 5px 0px;
  border-radius: 5px;                                                                                         
}

/* otp verification */
 
.otp-input {
  width: 45px;
  height: 45px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  text-align: center;
  font-size: 1.25rem;
  margin: 0 4px;
}

.otp-input:focus {
  outline: none;
  border-color: #818cf8;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

@media (max-width: 380px) {
  .otp-input {
      width: 44px;
      height: 44px;
  }
}

#chat-window ul {
  list-style: disc;
  padding-left: 12px;
}

#chat-window ol {
  list-style: decimal;
  padding-left: 12px;
}

/* Enable numbering if class .numbered-list is applied */
.numbered-list {
  list-style-type: decimal;
  margin-left: 1.5em;
  padding-left: 1em;
}

/* Enable bullets if class .bulleted-list is applied */
.bulleted-list {
  list-style-type: disc;
  margin-left: 1.5em;
  padding-left: 1em;
}