@import "./css/root.css";
/* @import "./css/utilities/utilities.css"; */
/* component library css */
.social-media {
  display: flex;
}
html {
  background-color: var(--white);
  scroll-behavior: smooth;
}
body {
  margin: 0rem;
}
.container {
  display: grid;
  width: calc(100% - 180px);
  /* width: 100%; */
  grid-template-columns: 1fr 4fr;
  grid-template-areas: "sidebar main ";
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: var(--primary-color);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}
::-webkit-scrollbar-thumb:window-inactive {
  background: var(--secondary-color-hover);
}
.sidebar {
  grid-area: sidebar;
  position: fixed;
  top: 5rem;
  min-width: 10rem;
}
.sidebar-text {
  display: flex;
  flex-direction: column;
  height: 70vh;
  overflow: auto;
  min-width: 10rem;
}
.main {
  width: 100%;
  grid-area: main;
  display: flex;
  flex-flow: column wrap;
  margin: auto;
  flex-shrink: 2;
}
.code {
  width: 100vh;
}
.code-container {
  overflow: auto;
  padding: 0.5rem;
}
.row-responsive {
  flex-flow: row wrap;
  display: flex;
  align-items: center;
}
.container {
  padding-left: 4rem;
}
.docs-responsive {
  padding-left: 3rem;
}
.docs-responsive-2 {
  padding-right: 6rem;
}
.landing-page-section {
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 50%;
  text-align: center;
  margin: auto;
}
.landing-footer {
  position: fixed;
  bottom: 0px;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}

@media screen and (max-width: 1020px) {
  .xxlg {
    font-size: var(--font-size-xlg);
  }
  .landing-page-section {
    width: 70%;
  }
  .docs-responsive {
    padding-left: 1rem;
  }
  .docs-responsive-2 {
    padding-right: 1rem;
  }
  .container {
    display: flex;
    /* width: 100%; */
    padding-left: 0rem;
    grid-template-areas: "main main ";

    /* grid-template-columns: 1fr 4fr;
    grid-template-areas: "sidebar main ";
    gap: 0.5rem; */
  }
  .sidebar {
    display: none;
  }
  .code {
    width: 20rem;
  }
  .row-responsive {
    flex-flow: column wrap;
    align-items: center;
    justify-content: space-between;
  }
  .nav-left {
    padding-left: 0rem;
  }
  .nav-right {
    padding-right: 0rem;
  }
}
