@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Homemade+Apple&display=swap");

body {
  background: #ffffff;
  font-family: "Nunito", sans-serif;
  margin: 0;
  padding: 0;
  width: 100vw;
  min-height: 100vh;
  height: auto;
}

.wrapper {
  display: flex;
  flex-direction: row;
}

.d-flex {
  display: flex;
}

.container {
  flex-wrap: wrap;
  flex-direction: column;
}

nav.sidebar {
  width: 220px;
  height: 100vh;
  margin-right: 10px;
  background-color: #000000;
  position: fixed;
  box-shadow: 0px 2px 9px 2px rgba(0, 0, 0, 0.1);
  padding-top: 40px;
  overflow-y: scroll;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
nav.sidebar::-webkit-scrollbar {
  display: none;
}

nav.sidebar .logo {
  width: 150px;
  margin: 10px auto 20px;
}

nav.sidebar .logo img {
  width: 100%;
}

.contentWrapper {
  position: relative;
  left: 220px;
  width: calc(100% - 220px);
  min-height: 100vh;
  height: auto;
  padding: 20px;
}

.message {
  margin-top: 32px;
}

h2.section_heading {
  font-size: 1.2rem;
  margin: 32px 0px -18px 16px;
}

.folders {
  flex-wrap: wrap;
}

.folders a {
  text-decoration: none;
  color: #000;
}

.folder {
  width: 200px;
  height: 230px;
  margin: 32px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fafafa;
  cursor: pointer;
  position: relative;
  box-shadow: 0px 7px 8px -7px rgba(0, 0, 0, 0.2);
  transition: box-shadow 200ms ease-in-out;
}

.folder:hover {
  box-shadow: 0px 7px 8px -7px rgba(0, 0, 0, 0.4);
}

.hidden {
  display: none !important;
}

.folder .icon {
  width: 125px;
  margin: 13px;
  margin-bottom: 22px;
}

.logo_banner {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  background: #ffffff;
}

.logo_banner img {
  width: 45%;
  filter: invert(1);
}

.folder .name {
  position: absolute;
  bottom: 0px;
  font-weight: 400;
  font-size: 0.95rem;
}

.menu {
  padding: 19px 25px;
  color: #ffffff;
}

.menu ul {
  list-style: none;
  padding: 0px;
}

.menu ul li {
  padding: 13px 0px;
  padding-left: 25px;
  margin: 0px -25px;
  font-size: 0.9rem;
  cursor: pointer;
}

.menu ul li:hover,
.menu ul li.active {
  background: #ffffff1f;
  border-left: 3px solid #ffdb4d;
  color: #ffdb4d;
}

.menu ul li:hover a {
  color: #ffdb4d;
}

.menu ul li .icon {
  margin-right: 20px;
}

.menu ul li span {
  color: #ffffff;
}

.menu ul a {
  text-decoration: none;
  color: #ffffff;
}

.menu .title {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

img.invert {
  filter: invert(1);
}

.disguised_button {
  width: max-content;
  position: absolute;
  right: 30px;
  top: 50px;
}

.tox-statusbar__branding {
  display: none;
}

.logo_header {
  display: flex;
  justify-content: flex-end;
}

.logo_header img {
  width: 250px;
}

.btn {
  border: none;
  border-radius: 0px;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  padding: 9px 12px;
}

.btn:focus {
  outline: none;
  box-shadow: none;
}

.btn-primary {
  background-color: #131313;
}
.btn-primary:hover {
  background-color: #131313;
}

.btn-dark {
  border: 1px solid #131313;
  background-color: #ffffff;
  color: #131313;
}

.btn-select {
  border: 1px solid #131313;
  outline: none;
}

.popup-container {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0px;
  left: 0px;
  z-index: 100;
  background: #ffffffcc;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.popup-container .close {
  position: relative;
  top: 41px;
  left: 22%;
  z-index: 1000;
}

.popup-container form {
  width: 50%;
  padding: 50px 100px;
  z-index: 998;
  background-color: #ffffff;
  box-shadow: 0px 0px 44px -7px rgba(0, 0, 0, 0.4);
}

.sign-sign {
  font-family: "Homemade Apple", cursive;
  font-size: 2em;
}

.sign-body {
  font-size: 1.3em;
  padding: 0px 0px 20px;
}

.openOnPC {
  background: #ffffff;
  color: #000000;
  position: fixed;
  pointer-events: none;
  z-index: 5000;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.openOnPC p {
  margin: 0px 15px 7px;
  padding: 0px;
  text-align: center;
}

@media (max-width: 727px) {
  .openOnPC {
    display: flex;
    position: fixed;
  }
  body {
    overflow: hidden;
  }
}

.btn-disabled,
.btn-disabled:hover {
  cursor: not-allowed;
  border: 1px solid red;
  background: transparent;
  color: red;
}
