@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap");

:root {
  --color-main: #92DCE5;
  --color-main-light: #72B3FD;
  --color-dark: #003D3A;
  --color-dark-medium: #00524E;
  --color-dark-light: #53A2BE;
  --color-light: #e5e5e5;
  --color-gray: #8b8b8b;
  --color-light-gray: #b2bdbd;
  --color-bg: #002927;
  --color-success: 	#58CD36;
  --color-error: #fc4b0b;
}

/*========== base styles ==========*/

* {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
    "Helvetica Neue", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-rendering: optimizeLegibility;
  /* color: inherit; */
  font-size: inherit;
}

html {
  font-size: 56.25%;
}

@media only screen and (min-width: 1200px) {
  html {
    font-size: 62.5%;
  }
}

@media only screen and (min-width: 2100px) {
  html {
    font-size: 75%;
  }
}

body {
  line-height: 1.6;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--color-light-gray);
  background-color: var(--color-bg);
  min-height: 100vh;
}

img {
  width: 100%;
}

a {
  /* display: inline-block; */
  color: var(--color-main);
  text-decoration: none;
}

/*========== components ==========*/
.container {
  max-width: 120rem;
  width: 90%;
  margin: auto;
}

.btn {
  background-color: transparent;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: all ease-in-out 0.3s;
  padding: 1rem 2rem;
  border-radius: 5px;
  box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.15);
  font-weight: 500;
}

.btn--link {
  border-radius: 0;
  padding: 0;
  color: var(--color-main);
  box-shadow: none;
}

.btn--link:hover {
  text-decoration: underline;
}

.btn--main {
  background-color: var(--color-main);
  color: var(--color-dark);
}

.btn:hover {
  opacity: 0.9;
}

.btn--dark {
  background-color: var(--color-dark-light);
  color: var(--color-light);
}

.btn > svg {
  fill: currentColor;
  width: 1.6rem;
  height: 1.6rem;
}

.btn--pill {
  border-radius: 10rem;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 6px 2.5rem;
  color: var(--color-main);
  background: transparent;
  border: 2px solid var(--color-main);
}

.action-button {
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

.avatar {
  position: relative;
  display: inline-block;
  border-radius: 50%;
  border: 2px solid var(--color-main);
}

.avatar img {
  display: block;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}


.avatar.avatar--small img {
  width: 2.8rem;
  height: 2.8rem;
}
/* 
.avatar.avatar--small:after {
  width: 0.7rem;
  height: 0.7rem;
  bottom: 0px;
  right: -6px;
} */

.avatar.avatar--medium img {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
}

.avatar.avatar--large img {
  display: block;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
}


.dropdown-menu {
  z-index: 111;
  position: absolute;
  top: 5rem;
  right: 0.5rem;
  background: var(--color-dark-light);
  border-radius: 5px;
  box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  display: none;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-menu a {
  padding: 1.2rem 4rem;
  display: block;
  color: var(--color-light) !important;
  font-weight: 500;
  font-size: 1.4rem;
}

.dropdown-menu a:hover {
  background-color: var(--color-dark-medium);
}

.dropdown-menu > a:not(:last-child) {
  border-bottom: 1px solid var(--color-dark-medium);
}

.dropdown-menu a svg {
  fill: var(--color-light);
}

.mobile-menu {
  margin-bottom: 3rem;
}

.mobile-menuItems {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media screen and (min-width: 500px) {
  .mobile-menu {
    display: none;
  }
}

/*==============================
=>  Header Section
================================*/

.header {
  padding: 1.5rem;
  background-color: var(--color-dark);
}

.header > .container {
  display: flex;
  gap: 9.5rem;
}

.header__logo,
.header__user {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.header__logo > img {
  height: 4rem;
  width: 8rem;
}

.header__logo > h1 {
  font-weight: 700;
  font-size: 2rem;
  color: var(--color-light);
}

@media not all and (min-resolution:.001dpcm) { 
  @supports (-webkit-appearance: none) {
    /* Safari Only CSS here */
    .header__logo {
      margin-right: 120px;
    }

    .header__logo > h1{
      margin-left: 1rem;
    }

    .header__search input {
      margin-left: 1rem;
    }

    .btn > svg.left{
      margin-left: 1rem;
    }

    .btn > svg{
      margin-right: 1rem;
    }

    }
}

.header__search > label {
  background-color: var(--color-dark-medium);
  padding: 1.3rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 4px;
}

.header__search svg {
  fill: var(--color-gray);
  width: 2rem;
  height: 2rem;
  margin-left: 1rem;
}

.header__search input {
  width: 30rem;
  background: transparent;
  border: none;
  outline: none;
  color: var(--color-light);
}

@media screen and (max-width: 800px) {
  .header__search input {
    width: 20rem;
  }

  .header > .container {
    gap: 3rem;
  }
}

@media screen and (max-width: 700px) {
  .header__logo h1 {
    display: none;
  }
}

@media screen and (max-width: 500px) {
  .header__search {
    display: none;
  }
}

.header__menu {
  margin-left: auto;
  position: relative;
}

.header__menu a {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  font-weight: 500;
  text-decoration: none;
  color: var(--color-light);
}

.header__menu img {
  height: 3.6rem;
}

.header__menu p {
  line-height: 1.2;
}

.header__menu span {
  color: var(--color-main);
  font-weight: 500;
  font-size: 1.4rem;
  display: block;
}

.header__menu svg {
  width: 1.6rem;
  height: 1.6rem;
  fill: var(--color-dark-light);
}

.dropdown-button {
  background: transparent;
  border: 0;
  outline: 0;
  cursor: pointer;
}

.dropdown-button:hover svg {
  fill: var(--color-main);
}

/*==============================
=>  Layout
================================*/

.layout {
  margin-top: 2.4rem;
}

.layout > .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.layout--3 > .container > div:first-child {
  flex-basis: 22%;
}

.layout--3 > .container > div:nth-child(2) {
  flex-basis: 50%;
}

.layout--3 > .container > div:last-child {
  flex-basis: 22%;
}

.layout--2 > .container > div:first-child {
  flex-basis: 72%;
}

.layout--2 > .container > div:last-child {
  flex-basis: 25%;
}

.layout--4 > .container > div:first-child {
  flex-basis: 18%;
  max-width: 22.5rem;
}

.layout--4 > .container > div:last-child {
  flex-basis: 78%;
}

/*========== Layout Box ==========*/

.layout__box {
  width: 90%;
  max-width: 48rem;
  margin: auto;
  background-color: var(--color-dark);
  border-radius: 1rem;
  box-shadow: 1px 1px 6px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.layout__boxHeader {
  display: flex;
  padding: 1.5rem;
  background-color: var(--color-dark-light);
}

.layout__boxTitle {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.layout__boxTitle h3 {
  text-transform: uppercase;
  font-weight: 500;
  color: var(--color-light);
}

.layout__boxTitle svg {
  width: 1.6rem;
  height: 1.6rem;
  fill: var(--color-main);
}

.layout__body {
  margin: 3rem;
}

@media screen and (max-width: 900px) {
  .activities,
  .levels,
  .topics,
  .left {
    display: none;
  }

  .layout--3 > .container > div:nth-child(2) {
    flex-basis: 100%;
  }
}

/*==============================
=>  Topics
================================*/

#topics{
  padding-bottom: 3rem;
}

.form__group {
  margin-bottom: 2rem;
  width: 100%;
}

.form__split {
  display: flex;
  gap: 1.5rem;
}

.form__group label {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.form__group input,
.form__group textarea,
.form__group select {
  background: transparent;
  border: 1px solid var(--color-dark-light);
  padding: 1rem;
  border-radius: 3px;
  width: 100%;
  color: var(--color-light);
  font-weight: 500;
  outline: none;
}

.form__group input:focus,
.form__group textarea:focus {
  border-color: var(--color-main);
}

.form__group textarea {
  background: transparent;
  height: 10rem;
  resize: none;
}

.form__group select {
  color: var(--color-gray);
  font-weight: 400;
}

.form__group select option {
  background-color: var(--color-dark-light);
  color: var(--color-light);
  padding: 0 10rem;
}

.form__action {
  display: flex;
  justify-content: flex-end;
  gap: 3rem;
}

.form__hide {
  position: absolute;
  left: -9999px;
}

.form__avatar label {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--color-main);
  cursor: pointer;
}

.form__avatar label:hover {
  text-decoration: underline;
}

/*==============================
=>  Topics
================================*/

.topics__header {
  margin-bottom: 2rem;
}

.topics__header h2 {
  text-transform: uppercase;
  font-weight: 500;
  color: var(--color-dark-light);
}

.topics__list {
  list-style: none;
}

.topics__list li a {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
  font-weight: 500;
  color: var(--color-light-gray);
  transition: all 0.3s ease-in-out;
}

.topics__list li a.active,
.topics__list li a:hover {
  color: var(--color-main);
}

.topics__list li a span {
  padding: 0.5rem 1rem;
  background-color: var(--color-dark);
  border-radius: 3px;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 1px;
  max-height: 3rem;
}

.topics-page a:hover {
  text-decoration: underline;
}

.topics-page .topics__list li:not(:last-child) a {
  margin: 2rem 0;
  padding-bottom: 1rem;
  text-decoration: none;
  border-bottom: 1px solid var(--color-dark-medium);
}

.topics-page .header__search {
  display: block;
}

@media screen and (max-width: 500px) {
  .mobile-menu .header__search {
    display: block;
    margin-bottom: 2.4rem;
  }
}
/*==============================
=>  Module List
================================*/


.module,
.participants {
  margin-top: 4rem;
  background: var(--color-dark);
  border-radius: 0.7rem;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: -radial-gradient(white, black);
}

@media screen and (max-width: 900px) {
  .participants {
    display: none;
  }

  .layout--2 > .container > div:first-child {
    flex-basis: 100%;
  }
}

.module__top,
.participants__top {
  background: var(--color-dark-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: relative;
}


.module__topLeft h3,
.participants__top {
  text-transform: uppercase;
  font-weight: 500;
  color: var(--color-light);
}

.participants__top span {
  color: var(--color-main);
  font-size: 1.3rem;
  text-transform: none;
}

.participants__top {
  justify-content: flex-start;
  gap: 0.5rem;
}

.participants__list {
  padding: 2rem;
  display:flex;
  flex-direction: column;
  padding-bottom: 1rem;
}

.participant {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.participant p {
  color: var(--color-light-gray);
  line-height: 1.2;
}

.participant span {
  display: block;
  font-weight: 500;
  color: var(--color-main);
  font-weight: 1.4rem;
}

.moduleList__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.filter_tags *:not(:first-child){
  margin-left: 0.5rem;
}

.filter_tags{
  margin-bottom: 1rem;
}

.query{
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  align-items: center;
}

.query :nth-child(2){
  margin-right: 2rem;
  height: min-content;
}

.filter_tag{
  display: inline-block;
  background-color:var(--color-dark-medium);
  padding: 0rem 1rem;
  border-radius: 10px;
}

.moduleList__header h2 {
  text-transform: uppercase;
  font-weight: 500;
  color: var(--color-light);
  letter-spacing: 1px;
}

.moduleList__header p {
  font-weight: 500;
  color: var(--color-dark-light);
}

/*========== Module List Room ==========*/

.moduleListModule {
  margin-bottom: 2.4rem;
  background-color: var(--color-dark);
  border-radius: 1rem;
  padding: 2rem;
}

.moduleListModule__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.moduleListModule__actions {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
}

.moduleListModule__actions span {
  font-size: 1.4rem;
  font-weight: 500;
}

.moduleListModule__actions svg {
  fill: var(--color-main);

  width: 1.6rem;
  height: 1.6rem;
}

.moduleListModule__content {
  margin-bottom: 1rem;
}

.moduleListModule__content a {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--color-light);
  transition: all 0.3s ease-in-out;
}

.moduleListModule__content a:hover {
  color: var(--color-dark-light);
}

.moduleListModule__meta {
  border-top: 1px solid var(--color-dark-medium);
  padding-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.moduleListModule__joined {
  color: var(--color-light-gray);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.4rem;
  font-weight: 500;
}

.moduleListModule__joined svg {
  fill: var(--color-main);
  width: 1.6rem;
  height: 1.6rem;
}

.moduleListModule__topic {
  padding: 5px 1.5rem;
  background-color: var(--color-dark-medium);
  border-radius: 5rem;
  font-weight: 500;
  font-size: 1.3rem;
}

/*==============================
=>  Activities
================================*/

.activities {
  background: var(--color-dark);
  border-radius: 5px;
  overflow: hidden;
}

.ucdcalc{
  margin-bottom: 3rem;
  padding: 0rem;
}

.ucdcalc > div{
  padding: 0.5rem;
  margin: 1rem;
}

.activities__header h2 {
  background-color: var(--color-dark-light);
  text-transform: uppercase;
  font-weight: 500;
  padding: 1rem 1.5rem;
  color: var(--color-light);
  letter-spacing: 1px;
  font-size: 1.4rem;
}

.activities__box {
  margin: 1.5rem;
  padding: 1.5rem;
  border: 2px solid var(--color-dark-medium);
  border-radius: 5px;
}

.activities__boxHeader{
  justify-content: left;
}

.activities__boxHeader p {
  font-size: 1.4rem;
  line-height: 1.3;
  padding-left: 1rem;
}


.activities__boxHeader p span {
  color: var(--color-gray);
  font-size: 1.2rem;
  display: inline-block;
}

.activities__boxContent {
  margin-left: 0.5rem;
  font-size: 1.4rem;
  padding-top: 1rem;
  cursor: pointer;
}

.activities__boxContent a:hover {
  text-decoration: underline;
}

.activities__boxModuleContent {
  background: var(--color-bg);
  padding: 1rem;
  border-radius: 5px;
  margin-top: 1rem;
  margin-left: -0.5rem;
}

.moduleListModule__actions svg {
  fill: var(--color-light-gray);
}

/*==============================
=>  Create Room
================================*/

.add-module.layout .layout__box {
  max-width: 68rem;
}

/*==============================
=>  Update Account
================================*/

.update-account.layout .layout__box {
  max-width: 68rem;
}

/*==============================
=>  Delete Item
================================*/

.delete-item.layout .layout__box {
  max-width: 68rem;
}

/*==============================
=>  Auth
================================*/

.auth__tagline {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--color-main);
  font-weight: 500;
  font-size: 1.8rem;
}
.auth .layout__boxHeader {
  text-align: center;
  justify-content: center;
}

.auth__action {
  margin-top: 3rem;
  text-align: center;
}

/*==============================
=>  Settings
================================*/

.settings__avatar {
  margin-bottom: 3rem;
  text-align: center;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.settings__avatar .avatar {
  margin: 1rem;
}

/*==============================
=>  Profile
================================*/
.profile {
  margin-bottom: 3rem;
}

.profile__avatar {
  text-align: center;
}

.profile__info {
  text-align: center;
}

.profile__info h3 {
  font-size: 2rem;
  color: var(--color-light);
  font-weight: 400;
}

.profile__info p {
  color: var(--color-main);
  font-weight: 500;
  margin-bottom: 1rem;
}

.profile__about {
  margin-top: 2rem;
}

.profile__about h3 {
  text-transform: uppercase;
  color: var(--color-dark-light);
  margin-bottom: 0.5rem;
}

.profile-page .moduleList__header {
  margin-bottom: 1rem;
}

.profile-page .moduleList__header h2 {
  color: var(--color-dark-light);
}

.profile-page{
  margin-top: 2%;
}

/*==============================
=>  Room
================================*/

.module {
  margin-top: 4rem;
  background: var(--color-dark);
  border-radius: 0.7rem;
  overflow: hidden;
  position: relative;
}

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

  .layout--2 > .container > div:first-child {
    flex-basis: 100%;
  }
}

.module__top{
  background: var(--color-dark-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: relative;
}

#show_description{
  display:none;
}

@media screen and (max-width: 500px) {
  .module__details{
    height:150px;
    overflow: hidden;
  }
  #show_description{
    display:block;
  }
}

.module__top svg,
.thread__top svg {
  width: 1.6rem;
  height: 1.6rem;
  fill: var(--color-light);
  cursor: pointer;
}

.module__topLeft {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
}

.module__topLeft h3{
  text-transform: uppercase;
  font-weight: 500;
  color: var(--color-light);
}

.module__topLeft svg {
  width: 1.6rem;
  height: 1.6rem;
  fill: var(--color-light);
}

.module__topRight {
  display: flex;
  column-gap: 1em;
}

.module__topRight svg {
  fill: var(--color-main-light);
}

.module__header {
  overflow-y: auto;
  background: var(--color-dark);
  z-index: 999;
  top: 4.4rem;
  padding-top: 2rem;
  padding-bottom: 1rem;
}

@media screen and (max-width: 500px) {
  .module__header {
    top: 4.3rem;
  }
  .footer{
    font-size: 80%;
    padding-left: 10%;
    padding-right: 10%;
  }
}

.module__box {
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 2rem;
}


.module__info {
  display: block;
}

.module__info h3 {
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--color-main);
}

.module__topics {
  padding: 0.5rem 1.5rem;
  background: var(--color-dark-medium);
  color: var(--color-light);
  display: inline-block;
  font-size: 1.4rem;
  border-radius: 1.5rem;
  margin: 1rem 0;
}

.module__conversation {
  margin-top: 1rem;
  margin-bottom: 4rem;
  height: 64%;
  border-radius: 0.7rem;
  overflow: hidden;
}

.threads h3 {
  text-transform: uppercase;
  font-weight: 500;
  color: var(--color-gray);
}

.threads {
  background: var(--color-bg);
  border-radius: 0.7rem;
  overflow-y: auto;
  padding: 0 2rem 0 2rem;
}

.thread {
  border-left: 2px solid var(--color-dark);
  padding-left: 1rem;
  margin: 2rem 0;
  padding: 2rem;
}

@media screen and (max-width: 500px) {
  .thread {
    border-left: none;
    padding-left: 0;
    margin: 0;
  }

  .comment_box{
    max-height: 50px;
    overflow: scroll;
  }

  .threads{
    overflow-y:initial;
  }
}


.thread__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.thread__top svg {
  fill: var(--color-dark-light);
}

.thread__author {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.4rem;
}

.thread__authorInfo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.thread__details {
  font-size: 1.4rem;
  margin-top: 0.5rem;
}

@media screen and (max-width:500px){
  .thread__details{
    font-size: 1.2rem;
  }
}

.module__comment {
  padding: 2rem;
  position: absolute;
  z-index: 111;
  bottom: 0;
  left: 0;
  right: 0;
  background: transparent;
}

.module__comment > form > input{
  resize: none;
  background-color: var(--color-dark-light);
  color: var(--color-light);
  border: none;
  outline: none;
  border-radius: 0.7rem;
  height: 4.5rem;
  width: 100%;
  padding: 1.2rem;
  font-size: 1.4rem;
  font-weight: 500;
  position: relative;
  cursor: pointer;
  margin-top: 1rem;
}

.module__comment > a > form > input{
  resize: none;
  background-color: var(--color-dark-light);
  color: var(--color-light);
  border: none;
  outline: none;
  border-radius: 0.7rem;
  /* height: 4.5rem; */
  width: 100%;
  margin-top: 1rem;
  padding: 1.2rem;
  font-size: 1.4rem;
  font-weight: 500;
  position: relative;
  cursor: pointer;
}

.module__comment > a{
  display: block;
}


.module__comment > form > input::placeholder {
  color: var(--color-light-gray);
}

.module_info{
  padding: 1rem;
  margin-bottom: 1rem;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 35px;
  height: 20px;
  margin-bottom: 0;
}


/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(15px);
  -ms-transform: translateX(15px);
  transform: translateX(15px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 20px;
}

.slider.round:before {
  border-radius: 50%;
}


.rounds-container {
  display: flex;
}

.rounds-child {
  flex: 1;
  vertical-align: middle;
}  


.login_box{
  position: relative;
  margin-bottom:4rem;
}

.notify{  
  position:absolute;
  top:0px;
  width:100%;
  height:0;  
  box-sizing:border-box;
  color:white;  
  text-align:center;
  background:rgba(0,0,0,.6);
  overflow:hidden;
  box-sizing:border-box;
  transition:height .2s;
}

#notifyType{
  display:block;
  margin-top:15px; 
}

.notif_active{  
  height:50px;
}

body::after {
  content: '';
  display: block;
}

.footer{
  bottom: 0;
  height: 120px;
  position:sticky;
  width: 100%;
  padding-top: 5rem;
  padding-bottom: 5rem;
  text-align: center;
}

html, body {
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
}
.footer {
  flex-shrink: 0;
}

.review_symbol svg{
  color: var(--color-light);
}

.reviews{
  padding-top: 3rem;
  padding-left: 1rem;
}

.module_meta{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.module_reviews{
  margin-left: 1rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 10%;
}

.inline {
  display: inline;
}

.link-button {
  background: none;
  border: none;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  font-size: 1em;
}
.link-button:focus {
  outline: none;
}

.profile_messages_header h1{
  text-align: center;
  padding-bottom: 2rem;
  font-size: large;
  color: var(--color-main)
}

.upvote_True{
  color: var(--color-success)
}

.downvote_False{
  color: var(--color-error)
}


.pagination{
  align-items: center;
  text-align: center;
}

.main-wrapper{
  min-height: 100%;
  padding: 0 0 100px;
  position: relative;
}

.docs{
  padding: 5rem 20rem;
}

span.type {
  border-radius: 5px;
  padding: 0.25rem 0.5rem;
  color: var(--color-dark-medium);
  background-color: var(--color-light-gray);
}

.docs > h1{
  text-align: center;
  font-size: large;
}

.docs > h2{
  margin-left: 1rem;
  padding: 2rem;
}

.docs > p{
  padding-bottom: 0.8rem;
}

span.url{
  border-radius: 5px;
  padding: 0.25rem 0.5rem;
  color: var(--color-dark-medium);
  background-color: var(--color-dark-light);
}

span.url{
  border-radius: 5px;
  padding: 0.25rem 0.5rem;
  color: var(--color-dark-medium);
  background-color: var(--color-dark-light);
}

span.url::selection{
	background-color: var(--color-main);
}

span.slug{
  color: black;
}

span.slug::selection{
	background-color: var(--color-main);
}

span.url::selection{
	background-color: var(--color-main);
}

.codeblock{
  font-size: smaller;
  background-color: #001f1d;
  margin: 2rem 0;
  padding: 1rem;
  border-radius: 10px;
}

.purple{
  color:#df73ff;
}

.dkgrey{
  color: #666666;
}

.white{
  color: white;
}

.yellow{
  color:#FEFEBE;
}

.orange{
  color:#F4BB44;
}

.green{
  color: #5d7843;
}

.light{
  color: #53A2BE;
}

.dkblue{
  color: white;
}


.code_container{
  display: flex;
  justify-content: space-between;
}
.code_container > p{
  width:48%;
}

span.request_type{
  border-radius: 5px;
  padding: 0.25rem 0.5rem;
  color: var(--color-dark-light);
  background-color: var(--color-dark);
}

.subfooter{
 display: flex;
 justify-content:space-between;
 padding: 0% 10%;
 align-items: center;
 color: #666666;
}

.subfooter > p{
  flex: 1 0 0;
  text-align: center;
}

.subfooter > a{
  color: #E3BAC6;
}

.subfooter > p:nth-child(2) {
  text-align: center;
  margin: auto;
}

@media screen and (max-width: 500px) {
  .docs{
    padding: 2rem 5rem;
  }

  span.type{
    padding: 0.1rem 0.4rem;
  }

  span.request_type{
    display: inline-block;
    margin-top: 15px;
  }

  .code_container{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .subfooter{
    flex-direction: column;
    font-size: small;
   }

  .code_container > p{
    width: 100%;
  }

  .thread__date{
    font-size: 10px;
  }

}

#notice{
  margin: 0%;
  padding: 0.5rem;
}


a#linkedin::before {  
  transform: scaleX(0);
  transform-origin: bottom right;
}

a#linkedin:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}

a#linkedin::before {
  content: " ";
  display: block;
  position: absolute;
  inset: 0 0 0 0;
  background: var(--color-dark-medium);
  border-radius: 10px;
  z-index: -1;
  transition: transform .5s ease;
}

a#linkedin {
  position: relative;
  padding: 0.1% 0.5%;
}

.plus {
	cursor: pointer;
	position: relative;
  width:10px;
}

.bar-1,
.bar-2 {
	background-color: var(--color-dark);
	bottom: 0;
	display: block;
	height: 2px;
	left: 0;
	margin: auto;
	position: absolute;
	right: 0;
	top: 0;
	transition: all 0.7s ease-in-out;
	width: 13px;
}
.bar-2.active{
	transform: rotate(450deg);
}
.bar-2 {
	transform: rotate(90deg);
}

.privacy{
  margin: 5%;
}

.privacy > h1{
  font-size: 200%;
  color: var(--color-main);
}

.privacy > h2{
  font-size: 150%;
  color: var(--color-main);
}

.collapsible_content > h4 {
  color: var(--color-main);
  font-size: 130%;
}

.privacy > p{
  padding-bottom: 1.5rem;
}

.privacy > ul{
  margin-left: 4%;
}


/* Style the button that is used to open and close the collapsible content */
.collapsible {
  cursor: pointer;
  padding: 13px;
  margin-bottom: 1%;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  background-color: var(--color-dark-medium);
  border-radius: 10px;
  color: var(--color-main);
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active.collapsible:hover {
  background-color: var(--color-dark);
}

.collapsible_content {
  display:none;
  padding: 0 18px;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.collapsible_content > p{
  margin-bottom: 1%;
}

.collapsible_content > ul{
  margin-left: 4%;
}

.collapsible_content > ol{
  margin-left: 4%;
}

.inshort {
  font-style: italic;
  color: var(--color-gray);
}

li > ul{
  margin-left: 4%;
}

.update{
  margin-left: 1%;
}

.update > input{
  border:none;
  background-color: inherit;
  color: var(--color-main);
  cursor: pointer;
}

@media screen and (max-width:900px) {
  .threads.scroll{
    max-height: 450px;
    overflow: scroll;
  }
}

@media screen and (max-width:500px) {
  .threads.scroll{
    max-height: 450px;
    overflow: scroll;
  }
}

.module.mobile{
  display:none;
}

.participants__top.reviews{
  display:none;
}

.participants__top.review{
  display: none;
}

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

  .participants__top.review{
    display:flex;
    justify-content: space-between;
  }

  .module.mobile > .participants__list{
    background-color: var(--color-bg);
  }

  .module.mobile > .participants__list > .threads.module_info{
    background-color: var(--color-dark);
  }

  span.mobile_box_header{
    font-size: inherit;
    padding: 0% 5%;
  }

  span.mobile_box_header.selected{
    font-size: inherit;
    color: white;
  }

  .module, .participants {
    margin-top: 1rem;
  }
}