* {
  font-size: 12px;
}

html,
body {
  padding: 0;
  margin: 0;
}

main {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: rgb(255, 251, 255);
}

/*
@mixin reset_main {
  // border: 3px solid black;
  display: grid;
  grid-template-columns: 19vw auto;
  min-height: 100vh;
  width: 100%;
}

@mixin user_profile {
  margin-top: 1vw;
  height: 100%;
  min-height: 10vh;
  background-color: $white1;
  //  border: 2px solid red;

  border-radius: 5px;
  display: flex;
  flex-direction: row;
  align-items: center;
  .item {
    // border: 2px solid black;
    display: flex;
    height: fit-content;
    &:nth-of-type(1) {
      .column {
        display: flex;
        flex-direction: column;
        margin-left: 1vw;
        &:nth-of-type(1) {
          button {
            padding: 0.5vw;
            box-sizing: border-box;
            border: 0;
            outline: unset;
            background-color: $darkgreen;
            border-radius: 5px;
            cursor: pointer;
            span {
              font-size: 2vw;
              color: $white1;
            }
            &:hover {
              background-color: lighten($darkgreen, 10);
            }
          }
        }
        &:nth-of-type(2) {
          h1,
          h2 {
            font-family: $font1;
            margin: 0;
          }
          h1 {
            font-size: 1vw;
            color: $darkgreen;
          }
          h2 {
            font-size: 0.8vw;
            color: $blue1;
          }
        }
      }
    }
  }
}

@mixin logout_pop {
  #logout_popup {
    position: fixed;
    top: 0;

    left: 0;
    width: 100%;
    height: 100vh;

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

    display: none;
    opacity: 0;
    z-index: 10;
    .overlay {
      background-color: rgba(black, 0.7);
      position: fixed;
      width: 100%;
      height: 100vh;
      top: 0;
      left: 0;
    }
    .card {
      width: 30vw;
      height: fit-content;
      border-radius: 5px;
      background-color: $white1;
      margin-top: 2vh;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      padding: 1vw;
      box-sizing: border-box;
      z-index: 10;

      #logout_pop_closeBtn {
        color: $red;
        font-size: 1.5vw;
        cursor: pointer;
        border: 0;
        outline: unset;
        background-color: transparent;
        &:hover {
          color: lighten($red, 15);
        }
      }
      .content {
        display: flex;
        flex-direction: column;
        width: 100%;

        font-family: $font1;

        .row {
          display: flex;
          justify-content: space-around;
          // border: 2px solid red;
          padding: 0.5vw 1vw;
          box-sizing: border-box;

          h1 {
            width: 100%;
            text-align: center;
            font-family: $font2;
            border: 2px solid blue;
            border: 0;
            font-size: 1vw;
            color: $red;
          }
          a {
            text-decoration: none;
          }

          a,
          button {
            display: flex;
            justify-content: center;
            width: 40%;
            margin-left: 1vw;
            font-size: 1vw;
            font-weight: 500;
            color: $white2;
            text-transform: uppercase;
            padding: 0.5vw 1vw;
            font-size: 0.8vw;
            border: 0;
            outline: unset;
            cursor: pointer;
            border-radius: 5px;
          }
          button {
            background-color: $teal;
            &:hover {
              background-color: lighten($teal, 15);
            }
          }
          a {
            background-color: $red;
            &:hover {
              background-color: lighten($red, 15);
            }
          }
        }
      }
    }
    //background-color: rebeccapurple;
  }
}
*/
main {
  width: 100%;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 5vh 1fr;
  grid-template-areas: "top_banner" "page_content";
}

section {
  display: flex;
  width: 100%;
}

.top {
  grid-area: top_banner;
  align-items: center;
  background-color: rgb(23, 15, 17);
  color: rgb(255, 251, 255);
  overflow: hidden;
  display: none;
  height: 0;
}
.top h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1em;
  white-space: nowrap;
  opacity: 0;
  z-index: 2;
}
.top button {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 5vh;
  font-size: 1vw;
  border: 0;
  outline: unset;
  cursor: pointer;
  z-index: 3;
}
.top #show_noti {
  right: 0;
  background-color: rgb(33, 41, 92);
  color: rgb(255, 251, 255);
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.8em;
  font-weight: 900;
}
.top #show_noti:hover {
  background-color: #2e3a82;
}
.top #hide_noti {
  width: 2vw;
  left: 0;
  font-family: "Lilita One", sans-serif;
  background-color: #b41f2b;
  color: rgb(255, 251, 255);
  opacity: 0;
}
.top #hide_noti:hover {
  background-color: rgb(219, 43, 57);
}

.page_content {
  grid-area: page_content;
  background-color: rgb(255, 251, 255);
  display: grid;
  grid-template-columns: 50vw auto;
  grid-template-areas: "heading heading" "left_panel right_panel";
  -moz-column-gap: 2vw;
       column-gap: 2vw;
  padding: 3vw;
  box-sizing: border-box;
}
.page_content > h1 {
  grid-area: heading;
  font-size: 3em;
  font-family: "Lilita One", sans-serif;
  color: rgb(0, 108, 103);
  margin-left: 1vw;
}
.page_content img {
  grid-area: right_panel;
  width: 100%;
}
.page_content .item_list {
  grid-area: left_panel;
  display: flex;
  flex-direction: column;
}
.page_content .item_list .item {
  display: flex;
  flex-direction: column;
  margin-left: 1vw;
  margin-bottom: 1vh;
}
.page_content .item_list .item .row {
  padding: 1vw;
  box-sizing: border-box;
}
.page_content .item_list .item .row:nth-of-type(1) {
  background-color: rgb(12, 62, 60);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  font-family: "Lilita One", sans-serif;
  -moz-column-gap: 1vw;
       column-gap: 1vw;
}
.page_content .item_list .item .row:nth-of-type(1) .column {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page_content .item_list .item .row:nth-of-type(1) .column h1 {
  color: rgb(255, 251, 255);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page_content .item_list .item .row:nth-of-type(1) .column h1 span:nth-of-type(1) {
  font-family: "Lilita One", sans-serif;
  font-size: 1.5em;
  background-color: rgb(23, 15, 17);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1vw;
  box-sizing: border-box;
}
.page_content .item_list .item .row:nth-of-type(1) .column h1 span:nth-of-type(2) {
  margin-left: 1vw;
  font-size: 1.2em;
  font-weight: 300;
}
.page_content .item_list .item .row:nth-of-type(1) .column button {
  height: -moz-fit-content;
  height: fit-content;
  background-color: rgb(23, 15, 17);
  border: 0;
  outline: unset;
  padding: 0.5vw;
  box-sizing: border-box;
  cursor: pointer;
}
.page_content .item_list .item .row:nth-of-type(1) .column button span {
  font-size: 1.5em;
  color: rgb(255, 251, 255);
}
.page_content .item_list .item .row:nth-of-type(2) {
  display: flex;
  align-items: center;
  font-family: "Roboto", sans-serif;
  font-size: 1.2em;
  background-color: rgb(0, 108, 103);
  color: rgb(255, 251, 255);
  display: none;
}/*# sourceMappingURL=faq.css.map */