/*!************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[11].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[11].oneOf[12].use[3]!./node_modules/react-toastify/dist/ReactToastify.css ***!
  \************************************************************************************************************************************************************************************************************************************************************************************************/
:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: hsl(6, 78%, 57%);
  --toastify-color-transparent: rgba(255, 255, 255, 0.7);

  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);

  --toastify-container-width: fit-content;
  --toastify-toast-width: 320px;
  --toastify-toast-offset: 16px;
  --toastify-toast-top: max(var(--toastify-toast-offset), env(safe-area-inset-top));
  --toastify-toast-right: max(var(--toastify-toast-offset), env(safe-area-inset-right));
  --toastify-toast-left: max(var(--toastify-toast-offset), env(safe-area-inset-left));
  --toastify-toast-bottom: max(var(--toastify-toast-offset), env(safe-area-inset-bottom));
  --toastify-toast-background: #fff;
  --toastify-toast-padding: 14px;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-toast-bd-radius: 6px;
  --toastify-toast-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;

  /* Used only for colored theme */
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;

  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
  /* used to control the opacity of the progress trail */
  --toastify-color-progress-bgo: 0.2;
}

.Toastify__toast-container {
  z-index: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index));
  position: fixed;
  width: var(--toastify-container-width);
  box-sizing: border-box;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.Toastify__toast-container--top-left {
  top: var(--toastify-toast-top);
  left: var(--toastify-toast-left);
}
.Toastify__toast-container--top-center {
  top: var(--toastify-toast-top);
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
}
.Toastify__toast-container--top-right {
  top: var(--toastify-toast-top);
  right: var(--toastify-toast-right);
  align-items: end;
}
.Toastify__toast-container--bottom-left {
  bottom: var(--toastify-toast-bottom);
  left: var(--toastify-toast-left);
}
.Toastify__toast-container--bottom-center {
  bottom: var(--toastify-toast-bottom);
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
}
.Toastify__toast-container--bottom-right {
  bottom: var(--toastify-toast-bottom);
  right: var(--toastify-toast-right);
  align-items: end;
}

.Toastify__toast {
  --y: 0;
  position: relative;
  touch-action: none;
  width: var(--toastify-toast-width);
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: var(--toastify-toast-padding);
  border-radius: var(--toastify-toast-bd-radius);
  box-shadow: var(--toastify-toast-shadow);
  max-height: var(--toastify-toast-max-height);
  font-family: var(--toastify-font-family);
  /* webkit only issue #791 */
  z-index: 0;
  /* inner swag */
  display: flex;
  flex: 1 auto;
  align-items: center;
  word-break: break-word;
}

@media only screen and (max-width: 480px) {
  .Toastify__toast-container {
    width: 100vw;
    left: env(safe-area-inset-left);
    margin: 0;
  }
  .Toastify__toast-container--top-left,
  .Toastify__toast-container--top-center,
  .Toastify__toast-container--top-right {
    top: env(safe-area-inset-top);
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left,
  .Toastify__toast-container--bottom-center,
  .Toastify__toast-container--bottom-right {
    bottom: env(safe-area-inset-bottom);
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: env(safe-area-inset-right);
    left: initial;
  }
  .Toastify__toast {
    --toastify-toast-width: 100%;
    margin-bottom: 0;
    border-radius: 0;
  }
}

.Toastify__toast-container[data-stacked='true'] {
  width: var(--toastify-toast-width);
}

.Toastify__toast--stacked {
  position: absolute;
  width: 100%;
  transform: translate3d(0, var(--y), 0) scale(var(--s));
  transition: transform 0.3s;
}

.Toastify__toast--stacked[data-collapsed] .Toastify__toast-body,
.Toastify__toast--stacked[data-collapsed] .Toastify__close-button {
  transition: opacity 0.1s;
}

.Toastify__toast--stacked[data-collapsed='false'] {
  overflow: visible;
}

.Toastify__toast--stacked[data-collapsed='true']:not(:last-child) > * {
  opacity: 0;
}

.Toastify__toast--stacked:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: calc(var(--g) * 1px);
  bottom: 100%;
}

.Toastify__toast--stacked[data-pos='top'] {
  top: 0;
}

.Toastify__toast--stacked[data-pos='bot'] {
  bottom: 0;
}

.Toastify__toast--stacked[data-pos='bot'].Toastify__toast--stacked:before {
  transform-origin: top;
}

.Toastify__toast--stacked[data-pos='top'].Toastify__toast--stacked:before {
  transform-origin: bottom;
}

.Toastify__toast--stacked:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  transform: scaleY(3);
  z-index: -1;
}

.Toastify__toast--rtl {
  direction: rtl;
}

.Toastify__toast--close-on-click {
  cursor: pointer;
}

.Toastify__toast-icon {
  margin-inline-end: 10px;
  width: 22px;
  flex-shrink: 0;
  display: flex;
}

.Toastify--animate {
  animation-fill-mode: both;
  animation-duration: 0.5s;
}

.Toastify--animate-icon {
  animation-fill-mode: both;
  animation-duration: 0.3s;
}

.Toastify__toast-theme--dark {
  background: var(--toastify-color-dark);
  color: var(--toastify-text-color-dark);
}

.Toastify__toast-theme--light {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}

.Toastify__toast-theme--colored.Toastify__toast--default {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}

.Toastify__toast-theme--colored.Toastify__toast--info {
  color: var(--toastify-text-color-info);
  background: var(--toastify-color-info);
}

.Toastify__toast-theme--colored.Toastify__toast--success {
  color: var(--toastify-text-color-success);
  background: var(--toastify-color-success);
}

.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: var(--toastify-text-color-warning);
  background: var(--toastify-color-warning);
}

.Toastify__toast-theme--colored.Toastify__toast--error {
  color: var(--toastify-text-color-error);
  background: var(--toastify-color-error);
}

.Toastify__progress-bar-theme--light {
  background: var(--toastify-color-progress-light);
}

.Toastify__progress-bar-theme--dark {
  background: var(--toastify-color-progress-dark);
}

.Toastify__progress-bar--info {
  background: var(--toastify-color-progress-info);
}

.Toastify__progress-bar--success {
  background: var(--toastify-color-progress-success);
}

.Toastify__progress-bar--warning {
  background: var(--toastify-color-progress-warning);
}

.Toastify__progress-bar--error {
  background: var(--toastify-color-progress-error);
}

.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--success,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
  background: var(--toastify-color-transparent);
}

.Toastify__close-button {
  color: #fff;
  position: absolute;
  top: 6px;
  right: 6px;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  z-index: 1;
}

.Toastify__toast--rtl .Toastify__close-button {
  left: 6px;
  right: unset;
}

.Toastify__close-button--light {
  color: #000;
  opacity: 0.3;
}

.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}

.Toastify__close-button:hover,
.Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}

.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.7;
  transform-origin: left;
}

.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}

.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}

.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  transform-origin: right;
  border-bottom-left-radius: initial;
}

.Toastify__progress-bar--wrp {
  position: absolute;
  overflow: hidden;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  border-bottom-left-radius: var(--toastify-toast-bd-radius);
  border-bottom-right-radius: var(--toastify-toast-bd-radius);
}

.Toastify__progress-bar--wrp[data-hidden='true'] {
  opacity: 0;
}

.Toastify__progress-bar--bg {
  opacity: var(--toastify-color-progress-bgo);
  width: 100%;
  height: 100%;
}

.Toastify__spinner {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 2px solid;
  border-radius: 100%;
  border-color: var(--toastify-spinner-color-empty-area);
  border-right-color: var(--toastify-spinner-color);
  animation: Toastify__spin 0.65s linear infinite;
}

@keyframes Toastify__bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, var(--y), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, var(--y), 0);
  }
}

@keyframes Toastify__bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, var(--y), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, var(--y), 0);
  }
}

@keyframes Toastify__bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, calc(var(--y) - 10px), 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, calc(var(--y) + 20px), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes Toastify__bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, calc(var(--y) - 10px), 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, calc(var(--y) + 20px), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.Toastify__bounce-enter--top-left,
.Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}

.Toastify__bounce-enter--top-right,
.Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}

.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}

.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left,
.Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}

.Toastify__bounce-exit--top-right,
.Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}

.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}

.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: translate3d(0, var(--y), 0) scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}

@keyframes Toastify__flipOut {
  from {
    transform: translate3d(0, var(--y), 0) perspective(400px);
  }
  30% {
    transform: translate3d(0, var(--y), 0) perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: translate3d(0, var(--y), 0) perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, var(--y), 0);
  }
}

@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, var(--y), 0);
  }
}

@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}

@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}

.Toastify__slide-enter--top-left,
.Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}

.Toastify__slide-enter--top-right,
.Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}

.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}

.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left,
.Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

.Toastify__slide-exit--top-right,
.Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

@keyframes Toastify__spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/*!********************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[11].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[11].oneOf[12].use[3]!./src/styles/globals.css ***!
  \********************************************************************************************************************************************************************************************************************************************************************/
*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}/*
! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com
*//*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
.container {
  width: 100%;
}
@media (min-width: 640px) {

  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {

  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {

  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {

  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {

  .container {
    max-width: 1536px;
  }
}
.visible {
  visibility: visible;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.sticky {
  position: sticky;
}
.inline-block {
  display: inline-block;
}
.flex {
  display: flex;
}
.table {
  display: table;
}
.hidden {
  display: none;
}
.h-4 {
  height: 1rem;
}
.min-h-screen {
  min-height: 100vh;
}
.w-4 {
  width: 1rem;
}
.w-full {
  width: 100%;
}
.min-w-full {
  min-width: 100%;
}
.max-w-md {
  max-width: 28rem;
}
.border-collapse {
  border-collapse: collapse;
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.cursor-pointer {
  cursor: pointer;
}
.resize {
  resize: both;
}
.flex-col {
  flex-direction: column;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.space-x-1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.25rem * var(--tw-space-x-reverse));
  margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-3 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}
.space-y-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}
.divide-y > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
}
.divide-gray-200 > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-divide-opacity, 1));
}
.overflow-auto {
  overflow: auto;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.rounded-2xl {
  border-radius: 1rem;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-xl {
  border-radius: 0.75rem;
}
.border {
  border-width: 1px;
}
.border-r {
  border-right-width: 1px;
}
.\!border-none {
  border-style: none !important;
}
.border-gray-200 {
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
.border-gray-600 {
  --tw-border-opacity: 1;
  border-color: rgb(75 85 99 / var(--tw-border-opacity, 1));
}
.bg-\[\#374151\] {
  --tw-bg-opacity: 1;
  background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
}
.bg-blue-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}
.bg-red-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}
.from-blue-50 {
  --tw-gradient-from: #eff6ff var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(239 246 255 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-gray-100 {
  --tw-gradient-to: #f3f4f6 var(--tw-gradient-to-position);
}
.p-10 {
  padding: 2.5rem;
}
.p-4 {
  padding: 1rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.\!font-medium {
  font-weight: 500 !important;
}
.font-bold {
  font-weight: 700;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.uppercase {
  text-transform: uppercase;
}
.leading-relaxed {
  line-height: 1.625;
}
.tracking-wider {
  letter-spacing: 0.05em;
}
.\!text-\[--primary_green\] {
  color: var(--primary_green) !important;
}
.text-gray-500 {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
.text-gray-600 {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
.text-gray-800 {
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}
.text-gray-900 {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
.text-red-500 {
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-xl {
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-200 {
  transition-duration: 200ms;
}

@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

*,
body,
ul,
li {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Instrument Sans", sans-serif;
  line-height: 1;
  /* height: 100%; */
  /* user-select: none; */
}

.highcharts-credits {
  display: none;
}

.highcharts-container {
  overflow: visible !important;
}

.highcharts-xaxis-labels {
  overflow: visible !important;
  clip: auto !important;
  /* Prevents Highcharts from cutting off labels */
}

.highcharts-axis-labels span {
  overflow: visible !important;
  position: relative;
  z-index: 9999 !important;
  /* Ensures labels stay above the chart */
}

p {
  margin: 0;
  padding: 0;
}

:root {
  /* Font Sizes */
  --fs-hero: 48px;
  --fs-main-title: 32px;
  --fs-section-heading: 24px;
  --fs-sub-heading: 20px;
  --fs-body-large: 18px;
  --fs-body-medium: 16px;
  --fs-body-small: 14px;
  /* --fs-body-caption: 18px; */
  --fs-button-small: 16px;
  --fs-button-medium: 16px;
  --fs-button-large: 16px;
  --fs-table-header: 16px;
  --fs-table-body: 14px;

  /* Primary Colors */
  --color-primary-blue: #5092ff;
  --color-primary-dark-blue: #151f56;
  --color-primary-black: #3f3f40;

  /* Surface Colors */
  --color-light-surface: #d9d9d9;
  --color-dark-surface: #151f56;
  --color-white-surface: #ffffff;
  --color-negative-surface: #fef7f7;
  --color-extra-light-surface: #f2f2f2;

  /* Border Colors */
  --color-light-border: #d0d0d1;
  --color-dark-border: #3f3f40;
  --color-accent-border: #1f52f1;

  /* Font Colors */
  --color-font-black: #3f3f40;
  --color-font-secondary: #71717a;
  --color-font-tertiary: #84848c;
  --color-font-accent: #1933b4;
  --color-font-primary-1: #000000;

  /* Signs Colors */
  --color-sign-negative: #a0293e;
  --color-sign-positive: #5092ff;
  --color-sign-warning: #ea8403;
  --color-sign-success: #0f7d34;

  /* Line Graph Colors */
  --color-line-impression: #31356e;
  --color-line-roas: #2d8bba;
  --color-line-ad-revenue: #2f5f98;
  --color-line-acos: #000000;

  /* Sidebar CSS Variables (from prysm-frontend) */
  --white: #ffffff;
  --grey: #f1f5f9;
  --light-grey: #c7c9cd;
  --surface_grey: #f8fafc;
  --border-color: #eaecf0;
  --background_color: #f5f2ea;
  --primary_green: #004225;
  --gray-500: #71717a;
  --gray_200: #e2e8f0;
  --input-focus: #8d8e91;
  --error: #e13d09;
  --hover-green: #002e1a;
  --button-disable: #3d556a;
  --grey-scale-500: #64748b;
  --grey-scale-400: #94a3b8;
  --ternary-color: #f5f2ea;
  --green-accent: #6fcf97;
  --button-border: #c7c9cd;
  --surface-secondary-gray: #f5f7f9;
  --font-black-color: #333333;
  --font_colours_white: #ffffff;
  --font_colours_muted: #6b7280;
  --border_colours_light_border: #e5e7eb;
  --radius: 0.5rem;
}

.noSpinner::-webkit-outer-spin-button,
.noSpinner::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
  display: none;
}

.noSpinner {
  -moz-appearance: textfield;
}

/* Custom scrollbar for sidebar */
.custom-scrollbar::-webkit-scrollbar {
  width: 4px;
  height: 5px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background-color: var(--border-color);
  border-radius: 3px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background-color: var(--primary_green);
}

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

.hover\:-translate-y-0\.5:hover {
  --tw-translate-y: -0.125rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:scale-\[1\.02\]:hover {
  --tw-scale-x: 1.02;
  --tw-scale-y: 1.02;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:bg-\[\#4b5563\]:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(75 85 99 / var(--tw-bg-opacity, 1));
}

.hover\:bg-blue-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(29 78 216 / var(--tw-bg-opacity, 1));
}

.hover\:bg-gray-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}

.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:ring-2:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus\:ring-blue-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity, 1));
}

.focus\:ring-offset-2:focus {
  --tw-ring-offset-width: 2px;
}

.group:hover .group-hover\:bg-gray-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}

@media (min-width: 640px) {

  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/*!********************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[11].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[11].oneOf[7].use[3]!./src/Typography/Typography.module.css ***!
  \********************************************************************************************************************************************************************************************************************************************************************************/
.Typography_h1_bold__a0fTY {
  font-family: "Inter";
  font-weight: 700;
  font-style: Bold;
  font-size: 40px;
  color: var(--font-black-color);
} 

.Typography_h2_bold___KZLt {
  font-family: "Inter";
  font-weight: 700;
  font-style: Bold;
  font-size: 32px;
  color: var(--font-black-color);
}

.Typography_h3_bold__DGJJ_ {
  font-family: "Inter";
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  color: var(--font-black-color);
}

.Typography_h4_bold__fLoM5 {
  font-family: "Inter";
  font-weight: 700;
  font-style: Bold;
  font-size: 22px;
  color: var(--font-black-color);
}

.Typography_h5_bold__4ylmT {
  font-family: "Inter";
  font-weight: 700;
  font-style: Bold;
  font-size: 18px;
  color: var(--font-black-color);
}

.Typography_h6_bold__Il7cJ {
  font-family: "Inter";
  font-weight: 700;
  font-style: Bold;
  font-size: 16px;
  color: var(--font-black-color);
}

.Typography_body_xlarge_regular__9FECn {
  font-family: "Inter";
  font-weight: 400;
  font-size: 20px;
  color: var(--font-black-color);
}

.Typography_body_large_bold__7d0GL {
  font-family: "Inter";
  font-weight: 700;
  font-size: 16px;
  font-style: Bold;
  color: var(--font-black-color);
}

.Typography_body_large_semibold__Dj_Xb {
  font-family: "Inter";
  font-weight: 600;
  font-size: 16px;
  color: var(--font-black-color);
}

.Typography_body_large_medium__Q7Xtj {
  font-family: "Inter";
  font-weight: 500;
  font-size: 16px;
  color: var(--font-black-color);
}

.Typography_body_large_regular__X0AN_ {
  font-family: "Inter";
  font-weight: 400;
  font-size: 16px;
  color: var(--font-black-color);
}

.Typography_body_medium_bold__COAqx {
  font-family: "Inter";
  font-weight: 700;
  font-size: 14px;
  color: var(--font-black-color);
}

.Typography_body_medium_semibold__EcuZn {
  font-family: "Inter";
  font-weight: 600;
  font-size: 14px;
  color: var(--font-black-color);
}

.Typography_body_medium_medium__CWX3c {
  font-family: "Inter";
  font-weight: 500;
  font-size: 14px;
  color: var(--font-black-color);
}

.Typography_body_medium_regular__Jzg1T {
  font-family: "Inter";
  font-weight: 400;
  font-size: 14px;
  color: var(--font-black-color);
}

.Typography_body_small_bold__eIfww {
  font-family: "Inter";
  font-weight: 700;
  font-size: 12px;
  color: var(--font-black-color);
}

.Typography_body_small_semibold__VBNb8 {
  font-family: "Inter";
  font-weight: 600;
  font-size: 12px;
  color: var(--font-black-color);
}

.Typography_body_small_medium__tqqSX {
  font-family: "Inter";
  font-weight: 500;
  font-size: 12px;
  color: var(--font-black-color);
}

.Typography_body_small_regular__R_Skf {
  font-family: "Inter";
  font-weight: 400;
  font-size: 12px;
  color: var(--font-black-color);
}

/*!************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[11].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[11].oneOf[7].use[3]!./src/Component/Sidebar/sidebar.module.css ***!
  \************************************************************************************************************************************************************************************************************************************************************************************/
.sidebar_main_div_sidebar_navbar__9ILBd {
  display: flex;
  max-height: 100vh;
  overflow: hidden;
  max-width: 100%;
}

/* Overlay for mobile */
.sidebar_mobile_overlay__NTGhy {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: black;
  opacity: 0.3;
  z-index: 10;
}

/* Sidebar Container */
.sidebar_sidebar_container__k67_U {
  height: 100vh;
  background-color: var(--primary_green);
  transition: all 0.5s ease-in-out;
}

/* Mobile Sidebar States */
.sidebar_sidebar_mobile__4MThZ {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 250px;
  min-width: 250px;
}

.sidebar_sidebar_mobile_open__E6gsz {
  transform: translateX(0);
}

.sidebar_sidebar_mobile_closed__359Sv {
  transform: translateX(-100%);
}

/* Desktop Sidebar States */
.sidebar_sidebar_desktop__vRQvl {
  position: relative;
}

.sidebar_sidebar_collapsed__XGu_N {
  width: 72px;
  min-width: 72px;
}

.sidebar_sidebar_expanded__ZcoFP {
  width: 250px;
  min-width: 250px;
}

/* Logo Header */
.sidebar_logo_header__vFtgv {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--grey);
  padding: 12px;
  cursor: pointer;
  position: relative;
}

.sidebar_mazad_logo__JSXkj {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.sidebar_mazad_logo__JSXkj img {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

/* Toggle Button Container */
.sidebar_toggle_button_container__2BUw8 {
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  z-index: 100;
  cursor: pointer;
}

.sidebar_toggle_button_container_ltr__gXHi_ {
  right: 0;
  transform: translateY(50%) translateX(50%);
}

/* Toggle Button Line */
.sidebar_toggle_line__sapJ3 {
  height: 100vh;
  display: block;
  position: absolute;
  top: -24px;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  border-right: 1px solid var(--grey);
}

.sidebar_toggle_line_ltr__o_2dC {
  right: 10px;
}

.sidebar_toggle_line__sapJ3:hover {
  width: 2px;
  background-color: #17ae7d;
}

/* Toggle Button Circle */
.sidebar_toggle_button_circle__NxacV {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  z-index: 20;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  background-color: #f3f4f6;
}

.sidebar_toggle_button_circle__NxacV:hover {
  background-color: #17ae7d;
}

.sidebar_toggle_button_circle__NxacV:hover svg {
  color: white;
}

.sidebar_toggle_icon___j_fg {
  transition: color 0.3s ease;
}

.sidebar_sidbar_select_content__gr0rC {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px 15px;
  overflow-y: auto;
  max-height: calc(100vh - 69px);
  height: calc(100vh - 69px);
}

.sidebar_main_div_logo_Sidbar_value_select__Rwb1X {
  display: flex;
  gap: 8px;
  font-weight: 600;
  color: var(--primary_green);
  padding: 10px 12px;
  background: var(--white);
  border-radius: 8px;
  align-items: center;
  cursor: pointer;
  margin-bottom: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(23, 174, 125, 0.3);
}

.sidebar_main_div_logo_Sidbar_value_select__Rwb1X:hover {
  box-shadow: 0 4px 12px rgba(23, 174, 125, 0.4);
}

.sidebar_main_div_logo_Sidbar_value_select__Rwb1X svg g path {
  fill: white;
  transition: all 0.3s ease;
}

.sidebar_main_div_logo_Sidbar_value_select__Rwb1X svg {
  color: white !important;
}

.sidebar_main_div_logo_Sidbar_value_select__Rwb1X .sidebar_sidebar_text_tab__mKzXw {
  color: var(--primary_green) !important;
  font-weight: 600 !important;
}

.sidebar_main_div_logo_Sidbar_value__6I9Zj {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Noto Sans";
  font-weight: 600;
  color: var(--font_colours_muted);
  padding: 12px 16px;
  border-radius: var(--radius);
  cursor: pointer;
  margin-bottom: 8px;
  transition: all 0.7s ease;
  position: relative;
}

.sidebar_main_div_logo_Sidbar_value__6I9Zj:hover {
  background-color: var(--background_color);
  color: var(--primary_green);
  transition: all 0.7s ease;
}

/* Menu Item Label */
.sidebar_menu_item_label__ryC3K {
  line-height: 20px;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
}

.sidebar_menu_item_label_visible__Dy5bM {
  opacity: 1;
  transform: translateX(0);
  width: 100%;
}

.sidebar_menu_item_label_hidden__qoZ_5 {
  opacity: 0;
  transform: translateX(-8px);
  width: 0;
  overflow: hidden;
}

.sidebar_menu_item_label_ltr__Us0JI {
  margin-left: 8px;
}

.sidebar_menu_item_icon_wrapper__DdBZq {
  padding: 1px 0;
}

.sidebar_main_div_childeren__1s16m {
  width: 100%;
  max-height: 100vh;
  position: relative;
}

.sidebar_children_div__sUJCC {
  max-height: calc(100vh - 69px);
  padding: 25px 32px 25px 32px;
  height: calc(100vh - 69px);
  overflow-y: auto;
  background-color: var(--surface_grey) !important;
  transition: margin-left 0.3s ease-in-out;
  margin-top: 87px;
}

.sidebar_main_div_navbar_content__EsJcI {
  max-height: 87px;
  min-height: 87px;
  padding: 17px 32px;
  background-color: var(--white);
  border-bottom: 1px solid var(--grey);
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  z-index: 50;
}

/* Navbar Sections */
.sidebar_navbar_left_section__0gMcW {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sidebar_navbar_right_section__7_LCA {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Navbar Brand Section */
.sidebar_navbar_brand_section__f2Y_U {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar_navbar_brand_title__i3V6N {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary_green);
}

.sidebar_navbar_brand_subtitle__Q9FYt {
  color: #3d556a !important;
}

/* Mobile Toggle Icon */
.sidebar_mobile_toggle_button___HUxa {
  cursor: pointer;
}

/* Notification Button */
.sidebar_notification_button__R3M7z {
  cursor: pointer;
  padding: 12px;
  border-radius: 50%;
  transition: all 0.5s ease;
  position: relative;
}

.sidebar_notification_button__R3M7z:hover {
  background-color: #f3f4f6;
}

.sidebar_notification_button_active__tr9xE {
  background-color: #f3f4f6;
  border-radius: 50%;
}

/* Profile Dropdown Button */
.sidebar_profile_button__Yz_yN {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 192px;
  padding: 8px 10px;
  position: relative;
  border-radius: 9999px;
  transition: background-color 0.2s ease;
}

.sidebar_profile_button__Yz_yN:hover {
  background-color: #f3f4f6;
}

.sidebar_profile_button_active__KHtly {
  background-color: #f3f4f6;
}

.sidebar_profile_avatar__LOQZT {
  height: 36px;
  width: 36px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar_profile_dropdown_icon__4oWrz {
  font-size: 16px;
  line-height: 21.79px;
  font-weight: 500;
  color: black;
  cursor: pointer;
}

/* Dropdown Menu */
.sidebar_dropdown_menu__oZiRD {
  position: absolute;
  top: 100%;
  margin-top: 8px;
  transition: all 0.5s ease;
  min-width: 250px;
  z-index: 50;
  background-color: white;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.sidebar_dropdown_menu_right__9e_bD {
  right: 0;
}

.sidebar_dropdown_menu_open__kuEvr {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.sidebar_dropdown_menu_closed__luZSP {
  transform: translateY(-80px);
  opacity: 0;
  pointer-events: none;
}

.sidebar_dropdown_user_avatar__9UTjN {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.sidebar_dropdown_user_name__Riimy {
  font-size: 16px;
  font-weight: 600;
}

.sidebar_dropdown_user_role__ysABl {
  font-size: 14px;
  color: #6b7280;
}

.sidebar_dropdown_options_container__lO9bj {
  display: grid;
  max-height: calc(100vh - 250px);
  overflow-y: auto;
  padding: 8px;
}

.sidebar_dropdown_option__Fq_Sx {
  display: flex;
  gap: 8px;
  padding: 8px;
  align-items: center;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.sidebar_dropdown_option__Fq_Sx:hover {
  background-color: #f3f4f6;
}

.sidebar_dropdown_option__Fq_Sx:hover .sidebar_option_icon__m7k2N {
  fill: #17ae7d;
}

.sidebar_dropdown_option__Fq_Sx:hover .sidebar_option_icon__m7k2N svg * {
  fill: #17ae7d;
}

.sidebar_dropdown_option_text__RHWky {
  font-size: 14px;
  font-weight: 500;
  color: #4b5563;
  cursor: pointer;
}

.sidebar_dropdown_option__Fq_Sx:hover .sidebar_dropdown_option_text__RHWky {
  color: #17ae7d;
}

.sidebar_user_section__4UEtl {
  padding: 8px 16px;
  display: flex;
  align-items: center;
}

.sidebar_user_info__fd818 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sidebar_user_details__JPEXC {
  display: flex;
  flex-direction: column;
  text-align: start;
}

.sidebar_divider__KLIz6 {
  width: 100%;
  height: 1px;
  background: #e5e5e5;
}

.sidebar_option_icon__m7k2N {
  width: 40px;
  height: 40px;
  background: #f3f4f6;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sidebar_logout_section__F2Zrq {
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  transition: background-color 0.2s ease;
}

.sidebar_logout_section__F2Zrq:hover {
  background-color: rgb(247, 235, 235);
  border-radius: 0 0 9px 9px;
  cursor: pointer;
}

.sidebar_logout_wrapper__mX_w6 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar_logout_icon__ujU6p {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sidebar_notification_container__85iPJ {
  position: relative;
  display: inline-block;
}

.sidebar_notification_indicator__Un1Of {
  position: absolute;
  top: -4px;
  right: -4px;
  height: 24px;
  width: 24px;
  background-color: #ef4444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  animation: sidebar_pulse__VK7Qn 2s infinite;
}

.sidebar_notification_count__LkcEw {
  color: white;
  font-size: 10px;
  font-weight: bold;
}

.sidebar_logout_text__Mj6zg {
  font-size: 14px;
  font-weight: 500;
  color: #ef4444;
}

@keyframes sidebar_pulse__VK7Qn {
  0% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

/* Expand Icon */
.sidebar_expand_icon__o1mLw {
  margin-left: auto;
  display: flex;
  align-items: center;
  color: #6b7280;
}

/* Submenu Container */
.sidebar_submenu_container__0c58h {
  padding-top: 8px;
  padding-bottom: 8px;
  margin-left: 10px;
  margin-right: 8px;
  margin-bottom: 8px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.03);
}

/* Animation only when user clicks to toggle */
.sidebar_submenu_container_animated__Z3Dwz {
  animation: sidebar_slideDown__QqU2S 0.3s ease-out;
}

@keyframes sidebar_slideDown__QqU2S {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 500px;
  }
}

/* Submenu Item */
.sidebar_submenu_item__xS8uR {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  margin: 4px 0;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s ease;
  color: #6b7280;
}

.sidebar_submenu_item__xS8uR:hover {
  background-color: #e5e7eb;
  color: #1f2937;
}

.sidebar_submenu_item_active__uraSm {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  margin: 4px 0;
  cursor: pointer;
  border-radius: 6px;
  background: var(--ternary-color);
  color: #065f46;
  font-weight: 600;
  transition: all 0.2s ease;
  box-shadow: 0 1px 4px rgba(23, 174, 125, 0.2);
}

.sidebar_submenu_item_active__uraSm:hover {
  background: var(--ternary-color);
}

.sidebar_submenu_item__xS8uR:hover .sidebar_submenu_indicator__0BHSr,
.sidebar_submenu_item_active__uraSm .sidebar_submenu_indicator__0BHSr {
  background-color: var(--primary_green);
}

/* Submenu Indicator */
.sidebar_submenu_indicator__0BHSr {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--white);
  margin-right: 10px;
}

/* Submenu Label */
.sidebar_submenu_label__UH5lT {
  font-size: 13px;
  font-weight: 400;
  white-space: nowrap;
  color: var(--white);
}
.sidebar_submenu_item__xS8uR:hover .sidebar_submenu_label__UH5lT,
.sidebar_submenu_item_active__uraSm .sidebar_submenu_label__UH5lT {
  font-size: 13px;
  font-weight: 400;
  white-space: nowrap;
  color: var(--primary_green);
}

.sidebar_sidebar_text_tab__mKzXw {
  color: var(--white) !important;
  transition: all 0.3s ease;
}
.sidebar_main_div_logo_Sidbar_value__6I9Zj:hover .sidebar_sidebar_text_tab__mKzXw {
  color: var(--primary_green) !important;
  font-weight: 600;
}

/* Submenu Flyout for collapsed sidebar */
.sidebar_submenu_flyout__mOMZc {
  background-color: var(--primary_green);
  border-radius: 8px;
  min-width: 180px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  animation: sidebar_flyoutSlideIn__UbraP 0.2s ease-out;
}

@keyframes sidebar_flyoutSlideIn__UbraP {
  from {
    opacity: 0;
    transform: translateX(-8px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.sidebar_submenu_flyout_header__3vTIA {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.sidebar_submenu_flyout_items__hbiRI {
  padding: 8px;
}

.sidebar_submenu_flyout_item__UbSNX {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s ease;
  color: rgba(255, 255, 255, 0.8);
}

.sidebar_submenu_flyout_item__UbSNX:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.sidebar_submenu_flyout_item_active__uZNhS {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  cursor: pointer;
  border-radius: 6px;
  background: var(--white);
  color: var(--primary_green);
  font-weight: 600;
  transition: all 0.2s ease;
}

.sidebar_submenu_flyout_item_active__uZNhS:hover {
  background: var(--white);
}

.sidebar_submenu_flyout_indicator__VIg2Q {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: currentColor;
  margin-right: 10px;
  opacity: 0.6;
}

.sidebar_submenu_flyout_item_active__uZNhS .sidebar_submenu_flyout_indicator__VIg2Q {
  opacity: 1;
  background-color: var(--primary_green);
}

.sidebar_submenu_flyout_label__9dQJW {
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .sidebar_navbar_brand_section__f2Y_U {
    display: flex !important;
  }

  .sidebar_navbar_brand_title__i3V6N {
    font-size: 18px;
  }

  .sidebar_navbar_brand_subtitle__Q9FYt {
    font-size: 11px;
  }

  .sidebar_main_div_navbar_content__EsJcI {
    padding: 12px 16px;
  }
}

@media (min-width: 640px) {
  .sidebar_navbar_left_section__0gMcW {
    gap: 16px;
  }
}

@media (max-width: 1200px) {
  .sidebar_navbar_brand_subtitle__Q9FYt {
    display: none;
  }
}

@media (max-width: 1024px) {
  .sidebar_navbar_brand_title__i3V6N {
    font-size: 20px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .sidebar_main_div_navbar_content__EsJcI {
    padding: 15px 20px;
  }

  .sidebar_navbar_right_section__7_LCA {
    gap: 8px;
  }
}

@media (max-width: 576px) {
  .sidebar_main_div_navbar_content__EsJcI {
    padding: 16px 10px;
  }
}

