/* xxxs */
/* @media (min-width: 320px) {} */

/* xxs */
/* @media (min-width: 380px) {} */

/* xs */
/* @media (min-width: 475px) {} */

/* sm */
/* @media (min-width: 640px) {} */

/* md */
/* @media (min-width: 768px) {} */

/* lg */
/* @media (min-width: 1024px) {} */

/* xl */
/* @media (min-width: 1280px) {} */

/* 2xl */
/* @media (min-width: 1536px) {} */

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

:root {
  --clr-black: #000;
  --clr-white: #ffffff;
  --clr-border-black: #c8c8c8;
  --clr-light-blue-15: #d9dcff;
  --clr-light-black-text: #767676;
  --clr-background-black: #f2f2f2;
  --clr-btn-background-ligth: #a7f9d6;
  --clr-btn-background: #007a73;
  --clr-background-green: #052624;
  --clr-dark-bg-green: #041e1d;
  --clr-spc-green: #00f990;
  --clr-btn-red-light: #e5383b;
  --clr-main-red: #e61b0a;
  --clr-main-blue: #0056d3;

  --ot-black: #0a0a0a;
  --ot-white: #ffffff;
  --ot-gray-50: #fafafa;
  --ot-gray-100: #f4f4f5;
  --ot-gray-200: #e4e4e7;
  --ot-gray-300: #d4d4d8;
  --ot-gray-400: #a1a1aa;
  --ot-gray-500: #71717a;
  --ot-gray-600: #52525b;
  --ot-gray-700: #3f3f46;
  --ot-gray-800: #27272a;

  --ot-radius: 12px;

  /* sizes */
  --size-xxs: 0.5rem;
  --size-xs: 0.75rem;
  --size-sm: 0.875rem;
  --size-base: 1rem;
  --size-lg: 1.125rem;
  --size-xl: 1.25rem;
  --size-2xl: 1.5rem;
  --size-3xl: 2rem;
  --size-4xl: 2.5rem;
  --size-5xl: 2.75rem;
  --size-6xl: 3.1rem;
  --size-7xl: 3.3rem;
  --size-8xl: 4rem;
  --size-9xl: 6rem;
  --size-10xl: 7rem;
  --size-11xl: 8rem;
  --size-12xl: 9rem;
  --size-13xl: 10rem;

  --size-heading: 5rem;
  --size-page-header: 3.5rem;
  --size-sub-heading: 1.75rem;
  --size-lg-text: 1.125rem;
  --size-text: 1rem;
  --size-sm-text: 0.875rem;
}

* {
  margin: 0;
  line-height: calc(1em + 0.5rem);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--clr-white);
  color: var(--clr-black);
  /* margin-bottom: 5000px; */

  /* overflow-x: hidden; */
}

body,
html {
  height: 100%;
  overflow: hidden; /* Prevent the entire page from scrolling */
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  user-select: none;
}

button {
  display: inline-block;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

a {
  color: var(--clr-blue000);
  text-decoration: none;
}

.primary__button {
  background-color: var(--clr-black);
  color: var(--clr-white);
  font-weight: 500;
  font-size: 1.1rem;
  padding: 10px 28px 10px 28px;
  border-radius: 0.8rem;
  transition: all 0.3s;
  display: inline;
}

.primary__button:hover {
  opacity: 0.9;
}

.section__heading {
  font-size: var(--size-6xl);
  margin-bottom: 3rem;
}

.container {
  width: 100%;
  max-width: 1440%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  /* border: 1px solid red; */
}

.section {
  margin-top: 6rem;
}

.button__top__margin {
  margin-top: 40px;
}

.solid__mid__green {
  color: var(--clr-white);
  background-color: var(--clr-btn-background);
  font-size: var(--size-base);
  font-weight: 400;
  padding: 0.6rem 0.9rem 0.5rem 0.9rem;
  border-radius: 0.5rem;

  transition: all 0.3s ease-in-out;
}

.solid__mid__green:hover {
  opacity: 0.9;
}

.outline__mid__green {
  color: var(--clr-btn-background);
  background-color: var(--clr-white);
  font-size: var(--size-base);
  font-weight: 500;
  padding: 0.5rem 0.8rem 0.4rem 0.8rem;
  border: 2px solid var(--clr-btn-background);
  border-radius: 0.5rem;

  transition: all 0.2s ease-in-out;
}

.outline__mid__green:hover {
  color: var(--clr-white);
  background-color: var(--clr-btn-background);
}

.logout__btn {
  color: var(--clr-white);
  background-color: var(--clr-btn-red-light);
  font-size: var(--size-base);
  font-weight: 400;
  padding: 0.6rem 0.9rem 0.5rem 0.9rem;
  border-radius: 0.5rem;

  transition: all 0.3s ease-in-out;
}

.logout__btn:hover {
  opacity: 0.9;
}

.solid__spc__green__btn {
  color: var(--clr-black);
  background-color: var(--clr-spc-green);
  font-size: var(--size-base);
  font-weight: 400;
  padding: 0.4rem 0.8rem 0.4rem 0.8rem;
  border-radius: 0.5rem;

  transition: all 0.3s ease-in-out;
}

.solid__spc__green__btn:hover {
  opacity: 0.9;
}

.sm__text {
  font-size: var(--size-xs);
  font-weight: 500;
}

.sm__btn {
  padding: 0.4rem 0.8rem 0.4rem 0.8rem;
  border-radius: 0.5rem;
}

.full__width__btn {
  width: 100%;
}

.hide__element {
  display: none;
}

.loading__wrapper {
  width: 100%;
  height: 100%;
  height: calc(100% - 62px);
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 9;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

  /* background-color: #c8c8c8; */
  /* background-color: red; */
  background-color: #ffffff;

  padding-bottom: 100px;
}

.full__page__loading__wrapper {
  width: 100%;
  height: 100%;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 9;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

  /* background-color: #c8c8c8; */
  /* background-color: red; */
  background-color: #ffffff;
}

.body__image__loading__wrapper {
  width: 100%;
  height: 100%;
  height: calc(100% - 62px);
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 9;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

  background-color: #ffffff95;

  padding-bottom: 100px;
}

/* xl */
@media (min-width: 1280px) {
  .loading__wrapper {
    width: calc(100% - 246px);
    height: calc(100% - 65px);

    border-top: 1px solid #c8c8c8;
  }

  .body__image__loading__wrapper {
    width: calc(100% - 246px);
    height: calc(100% - 65px);

    border-top: 1px solid #c8c8c8;
  }
}

.loader {
  border: 5px solid #13052f;
  border: 5px solid #a1a1a1;
  border-radius: 50%;
  border-top: 5px solid var(--clr-main-purple);
  border-top: 5px solid #e2e2e2;
  width: 40px;
  height: 40px;
  -webkit-animation: spin 0.8s linear infinite;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.hide__loader {
  display: none;
}

.modal__container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

  background-color: #00000080;
}

.delete__modal__box {
  width: 285px;
  background-color: var(--clr-white);
  color: var(--clr-black);
  font-size: var(--size-lg);
  font-weight: 500;
  border-radius: 0.5rem;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  gap: 1rem;
  padding: 1.5rem 2rem;
}

.delete__modal__btn__container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;

  gap: 0.5rem;
}

.delete__modal__btn {
  color: var(--clr-white);
  background-color: var(--clr-btn-red-light);
  font-size: var(--size-base);
  font-weight: 500;
  text-align: center;
  border-radius: 0.5rem;

  padding: 0.5rem 1.2rem;
}

.close__delete__modal__btn {
  color: var(--clr-black);
  background-color: var(--clr-spc-green);
  font-size: var(--size-base);
  font-weight: 500;
  text-align: center;
  border-radius: 0.5rem;

  padding: 0.5rem 1.2rem;
}

/* xs */
@media (min-width: 475px) {
  .container {
    max-width: 475px;
  }
}

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

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

  .section__heading {
    font-size: var(--size-6xl);
    margin-bottom: 3rem;
  }
}

/* lg */
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .sm__text {
    font-size: var(--size-sm);
    font-weight: 500;
  }
}

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

/* 2xl */
@media (min-width: 1440px) {
  .container {
    max-width: 1400px;
  }
}
