@keyframes appear-slowly {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes levitate {
  0% {
    opacity: 1;
    transform: translateY(10px);
  }
  100% {
    opacity: 0.8;
    transform: translateY(-10px);
  }
}
@keyframes slideinout {
  0% {
    transform: translateX(0px);
    opacity: 0;
  }
  30% {
    transform: translateX(-30px);
    opacity: 1;
  }
  85% {
    transform: translateX(-30px);
    opacity: 1;
  }
  100% {
    transform: translateX(100px);
    opacity: 0;
  }
}
@keyframes buzz {
  0% {
    transform: translateX(-6px);
    opacity: 0.9;
  }
  50% {
    transform: translateX(0px);
    opacity: 1;
  }
  100% {
    transform: translateX(6px);
    opacity: 0.9;
  }
}
@keyframes moveBackground {
  0% {
    opacity: 0.95;
    transform: scale(1);
  }
  100% {
    transform: translateX(6px);
    opacity: 1;
    transform: scale(1.1);
  }
}
@keyframes lds-ring-form {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
html {
  background-color: #01040a;
  font-family: "Roboto", sans-serif;
}

.button-base {
  border: none;
  background-color: transparent;
  font-weight: bold;
  border-radius: 5px;
  margin-right: 20px;
  padding: 10px;
  font-size: 1em;
  cursor: pointer;
  z-index: 10;
  color: #c9d1d9;
  box-shadow: 0px 0px 5px #01040a;
}
.button-base i {
  margin-right: 5px;
}
.button-base--home {
  margin-left: 0;
  border-radius: 7px;
  padding: 5%;
}
.button-base--primary {
  background-color: #fbba20;
  color: white;
  text-shadow: 1px 1px 2px #000, 2px 2px 5px rgba(0,0,0,0.75);
  box-shadow: none;
  padding-left: 20px;
  padding-right: 20px;
}
.button-base--primary i {
  margin: 0px;
  font-size: 1.2em;
}
.button-base:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .button-base {
    font-size: 0.7em;
    margin-left: 10px;
    padding: 5px;
  }
}

.button-nav {
  border: none;
  text-decoration: none;
  background-color: transparent;
  font-weight: bold;
  border-radius: 15px;
  margin-left: 20px;
  padding: 10px;
  font-size: 1em;
  cursor: pointer;
  z-index: 10;
  color: #c9d1d9;
  border: 2px solid #1c2327;
  box-shadow: 0px 0px 5px #01040a;
}
@media screen and (max-width: 768px) {
  .button-nav {
    font-size: 0.7em;
    margin-left: 10px;
    padding: 5px;
  }
}
.button-nav i {
  margin-right: 5px;
  margin-left: 5px;
}
.button-nav--home {
  margin-left: 0;
  border-radius: 7px;
  padding: 5%;
}
.button-nav--colored {
  background-color: #fbba20;
  color: white;
  box-shadow: none;
  padding-left: 20px;
  padding-right: 20px;
}
.button-nav--colored i {
  margin: 0px;
  font-size: 1.2em;
}

.cards-link {
  width: 100%;
  background-color: #161b22;
  right: 5%;
  border-bottom: 2px solid #1c2327;
  border-top: 2px solid #1c2327;
  text-align: center;
}
.cards-link--alternative-color {
  background-color: #0d1117;
}
.cards-link__title {
  color: #c9d1d9;
  padding-top: 50px;
  text-align: center;
  margin-top: 0px;
}
.cards-link__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 50px;
}

.card-link {
  flex-basis: 290px;
  background-color: #0d1117;
  padding: 20px;
  color: #c9d1d9;
  border: 1px solid #1c2327;
  border-radius: 10px;
  box-sizing: border-box;
  margin: 10px;
  text-decoration: none;
  box-shadow: 0px 2px 15px #01040a;
}
@media screen and (max-width: 768px) {
  .card-link {
    flex-basis: 100%;
  }
}
.card-link h3 {
  margin: 0px;
  padding: 0px;
  margin-bottom: 10px;
  text-align: center;
}
.card-link img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.card-form {
  border: 1px solid #1c2327;
  background-color: #0d1117;
  color: #c9d1d9;
  padding: 20px;
  margin: 20px;
  border-radius: 20px;
  max-width: 400px;
  flex-basis: 30%;
  position: relative;
  box-shadow: 0px 0px 5px #01040a;
}
@media screen and (max-width: 1200px) {
  .card-form {
    flex-basis: 80%;
    padding: 20px;
    margin: 5px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .card-form {
    flex-basis: 100%;
  }
}
.card-form h2 {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  margin-top: 0px;
}
.card-form h2 i {
  background-color: #1c2327;
  border: 1px solid #0d1117;
  padding: 7px;
  width: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}
.card-form__button-box {
  display: flex;
  justify-content: space-between;
}
.card-form__infos {
  border: 1px solid #1c2327;
  padding: 10px;
  line-height: 1.3em;
  border-radius: 10px;
  margin: 20px auto;
  margin-top: 0px;
  box-shadow: 0px 0px 5px #01040a;
}
.card-form__infos ul {
  list-style: none;
}
.card-form__infos a {
  text-decoration: none;
  color: #3c73b2;
}
.card-form__input-box {
  display: flex;
  flex-direction: column;
  color: #c9d1d9;
  margin-top: 20px;
  margin-bottom: 30px;
  position: relative;
}
.card-form__input-box__input {
  background-color: #1c2327;
  border: 1px solid #161b22;
  color: #c9d1d9;
  margin-top: 10px;
  padding-left: 10px;
  border-radius: 10px;
  font-size: 0.9em;
  height: 45px;
}
.card-form__account-creation {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.card-form__account-creation input {
  background-color: #1c2327;
  border: none;
  padding: 10px;
}

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #0d1117;
  background-color: #161b22;
  opacity: 0.95;
  z-index: 90;
  width: 100%;
  height: 70px;
  border-bottom: 2px solid #1c2327;
}
@media screen and (max-width: 768px) {
  .main-header {
    height: 50px;
  }
}
@media screen and (min-width: 1400px) {
  .main-header {
    left: 0;
    right: 0%;
    margin: 0 auto;
  }
}
.main-header__logo-box {
  width: 150px;
  margin-left: 1%;
}
.main-header__logo-box:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .main-header__logo-box {
    margin-left: 1%;
    width: 160px;
  }
}
.main-header__button-box {
  margin-right: 20px;
  display: flex;
  align-items: center;
}

.main-footer {
  font-size: 0.58em;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #01040a;
}
.main-footer--hidden {
  display: none;
}
.main-footer img {
  width: 48px;
  margin-bottom: 3px;
}
.main-footer p {
  color: #c9d1d9;
}
.main-footer p span {
  font-size: 0.9em;
}
.main-footer p a {
  color: #3c73b2;
  text-decoration: none;
}

.logo {
  color: #c9d1d9;
  text-decoration: none;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .logo {
    min-width: 50px;
  }
}

.image-background {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  opacity: 0.35;
  object-fit: cover;
}

.api-response__message {
  margin: 0px;
  padding: 0px;
  font-size: 0.7em;
  max-width: 200px;
  padding: 4px;
  border-radius: 5px;
  font-weight: bold;
  margin: 20px auto;
  margin-bottom: 0px;
  text-align: center;
}
.api-response__message--success {
  color: #fbba20;
  border: 1px solid #fbba20;
}
.api-response__message--error {
  color: #751b1b;
  border: 1px solid #751b1b;
}

.loader .lds-ring-form {
  display: inline-block;
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
}
.loader .lds-ring-form div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 32px;
  height: 32px;
  margin: 4px;
  border: 4px solid #c9d1d9;
  border-radius: 50%;
  animation: lds-ring-form 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}
.loader .lds-ring-form div:nth-child(1) {
  animation-delay: -0.45s;
}
.loader .lds-ring-form div:nth-child(2) {
  animation-delay: -0.3s;
}
.loader .lds-ring-form div:nth-child(3) {
  animation-delay: -0.15s;
}

.tag-search-bar {
  display: flex;
  justify-content: center;
}
.tag-search-bar--buzz {
  animation: buzz 100ms alternate-reverse infinite;
}
.tag-search-bar--buzz::after {
  content: "Unauthorized character";
  font-size: 0.8em;
  font-weight: bold;
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  margin-left: 40px;
  color: rgba(200, 61, 61, 0.822);
}
.tag-search-bar--buzz input {
  color: #1c2327;
}
.tag-search-bar__icon {
  display: flex;
  align-items: center;
  color: #3c73b2;
  font-weight: bold;
  background-color: #1c2327;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 10px 0px 0px 10px;
}
@media screen and (max-width: 420px) {
  .tag-search-bar__icon {
    display: none;
  }
}
.tag-search-bar__submit {
  border-radius: 0px 10px 10px 0px;
  font-size: 0.8em;
  font-weight: bold;
  border: 1px #01040a;
  background-color: #fbba20;
  color: #c9d1d9;
  padding-left: 8px;
  padding-right: 8px;
  cursor: pointer;
}
.tag-search-bar__submit i {
  font-size: 0.9em;
  margin-right: 5px;
}
.tag-search-bar__input {
  padding-left: 10px;
  padding: 10px;
  border: None;
  color: #c9d1d9;
  background-color: #1c2327;
  width: 100%;
  outline: #fbba20;
  max-width: 200px;
  transition: all 1s;
  min-width: 120px;
}
.tag-search-bar__input:focus {
  background-color: #20282d;
}
.tag-search-bar__search {
  margin: 10px;
  margin-right: 0px;
  display: flex;
  align-items: center;
  text-align: left;
  overflow: hidden;
}
@media screen and (max-width: 420px) {
  .tag-search-bar__search {
    border-radius: 10px;
  }
}

.tag {
  background-color: #1c2327;
  padding: 6px 10px;
  border-radius: 7px;
  margin-left: 5px;
  margin-right: 2px;
  font-size: 0.85em;
  border: 1px solid #01040a;
  color: #c9d1d9;
  cursor: pointer;
  transition: all 500ms;
  max-height: 30px;
}
.tag:disabled {
  cursor: default;
}
.tag--dropdown {
  margin: 5px;
  display: flex;
  align-items: center;
}
.tag--green {
  background-color: #2f5a8c;
  box-shadow: 0px 0px 2px 2px #3c73b2 inset;
}

.tag-dropdown {
  height: 200px;
  overflow-y: scroll;
  width: 93%;
  margin-top: 20px;
  background-color: #0d1117;
  z-index: 51;
  border: 1px solid #1c2327;
  border-radius: 10px;
  padding: 5px;
  display: flex;
  flex-wrap: wrap;
  animation: 300ms appear-slowly normal;
}

.tag-editor {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}
.tag-editor input {
  background-color: #1c2327;
  border: 1px solid #161b22;
  color: #c9d1d9;
  padding-left: 10px;
  border-radius: 10px 0px 0px 10px;
  font-size: 0.9em;
  height: 30px;
  width: 40%;
}
@media screen and (max-width: 768px) {
  .tag-editor input {
    width: 80%;
    height: 40px;
  }
}
.tag-editor__button {
  color: #c9d1d9;
  border: 0px;
  height: 30px;
  width: 30px;
}
.tag-editor__button--valid {
  background-color: #fbba20;
}
.tag-editor__button--erase {
  border-radius: 0px 10px 10px 0px;
  background-color: #751b1b;
}
@media screen and (max-width: 768px) {
  .tag-editor__button {
    height: 40px;
  }
}

.home-banner {
  overflow: hidden;
  text-align: left;
  opacity: 0.9;
  padding-left: 2%;
  padding-right: 2%;
  border: 1px solid #1c2327;
  position: relative;
  background-color: white;
  padding-bottom: 30px;
  color: #eeeeee;
  text-shadow: 1px 1px 2px #000, 2px 2px 4px #000, 3px 3px 6px rgba(0,0,0,0.6);
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .home-banner {
    margin-top: 50px;
  }
}
@media screen and (max-width: 1200px) {
  .home-banner {
    position: relative;
  }
}
.home-banner__information-box__version {
  display: flex;
  width: 320px;
  align-items: center;
  font-size: 0.7em;
  font-weight: 600;
  border: 1px solid #1c2327;
  background-color: rgba(0, 0, 0, 0.569);
  padding: 7px;
  border-radius: 20px 10px 10px 20px;
}
.home-banner__information-box__version img {
  width: 20px;
  margin-right: 10px;
}
.home-banner__information-box__description {
  display: flex;
  flex-direction: column;
  justify-content: left;
  background-color: rgba(0, 0, 0, 0.739);
  max-width: 600px;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 10px;
  border: 1px solid #1c2327;
}
.home-banner__information-box__description p {
  font-weight: bold;
}
.home-banner__information-box__description a {
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .home-banner__information-box__description {
    font-size: 0.55em;
    max-width: 60%;
  }
}
@media screen and (max-width: 420px) {
  .home-banner__information-box__description {
    margin-top: 20px;
  }
}
.home-banner__information-box h1 {
  width: 100%;
  border-radius: 10px 10px 0px 0px;
  margin-bottom: 30px;
  margin: 0;
  padding-top: 10px;
  padding-bottom: 20px;
  font-size: 3.5em;
}
@media screen and (max-width: 1200px) {
  .home-banner__information-box h1 {
    font-size: 2.5em;
  }
}
@media screen and (max-width: 768px) {
  .home-banner__information-box h1 {
    font-size: 1.5em;
  }
}
.home-banner__information-box h2 {
  margin-top: 0px;
  font-size: 1.2em;
}
@media screen and (max-width: 1200px) {
  .home-banner__information-box h2 {
    font-size: 1.1em;
  }
}
@media screen and (max-width: 768px) {
  .home-banner__information-box h2 {
    font-size: 1em;
  }
}
.home-banner__information-box a {
  color: #3c73b2;
}
.home-banner__information-box p {
  font-size: 18px;
  font-weight: 500;
  max-width: 600px;
  padding-right: 30px;
}
@media screen and (max-width: 768px) {
  .home-banner__information-box p {
    font-size: 14px;
  }
}
.home-banner__information-box__angle {
  position: absolute;
  bottom: 7%;
  left: 50%;
  font-size: 5em;
  animation: levitate 2s alternate-reverse infinite;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .home-banner__information-box__angle {
    font-size: 3.5em;
    left: 45%;
    bottom: 5%;
  }
}
@media screen and (max-width: 420px) {
  .home-banner__information-box__angle {
    font-size: 2.5em;
    right: 2%;
    left: unset;
    bottom: 5%;
  }
}
.home-banner__information-box__check-sentence i {
  margin-right: 10px;
  font-size: 1.5em;
  color: #fbba20;
}
@media screen and (max-width: 1200px) {
  .home-banner__information-box__check-sentence {
    font-size: 0.7em;
  }
}
.home-banner__information-box__buttons-box {
  display: flex;
  justify-content: left;
}
@media screen and (max-width: 1200px) {
  .home-banner__information-box__buttons-box {
    display: relative;
  }
}
.home-banner__image-background {
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0%;
  left: 0%;
  object-fit: cover;
  object-position: left;
  opacity: 0.8;
  z-index: -1;
  animation: moveBackground 14s ease-in-out alternate-reverse infinite;
  transition: all 800ms;
  overflow: hidden;
}

.random-screenshot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto;
  margin-bottom: 20px;
  max-width: 1600px;
  background-color: #0d1117;
}
.random-screenshot__title {
  color: #c9d1d9;
  background-color: #0d1117;
  width: 100%;
  border-radius: 10px 10px 0px 0px;
  margin-bottom: 20px;
  margin-top: 30px;
}
.random-screenshot__title h2 {
  text-align: center;
}
.random-screenshot__image {
  max-width: 95%;
  height: 85vh;
  margin: 0 auto;
  margin-bottom: 80px;
  position: relative;
  border-radius: 20px;
  object-fit: cover;
  top: 0;
  left: 0;
  transform: none;
  box-shadow: 0px 2px 15px #01040a;
}
@media screen and (max-width: 1200px) {
  .random-screenshot__image {
    height: 500px;
  }
}
.random-screenshot__roll-box {
  display: flex;
  padding-left: 20px;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.489);
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 20px;
  position: absolute;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .random-screenshot__roll-box {
    bottom: 0%;
  }
}
.random-screenshot__roll {
  background-color: black;
  color: #b85f33;
  font-weight: bold;
  padding: 8px 4px;
  text-align: center;
  opacity: 0.55;
  border-radius: 10px;
  border: 1px solid #1c2327;
  min-width: 220px;
  font-size: 0.8em;
}
@media screen and (max-width: 768px) {
  .random-screenshot__roll {
    min-width: 180px;
    font-size: 0.7em;
    opacity: 0.75;
  }
}
.random-screenshot__button {
  min-width: 100px;
  font-weight: bold;
  color: white;
  background-color: #fbba20;
  border: 1px solid #1c2327;
  margin: 0 auto;
  font-size: 0.9em;
  margin-left: 10px;
  margin-right: 20px;
  opacity: 0.75;
  border-radius: 15px;
  margin-left: 20px;
  padding: 10px;
  font-size: 1em;
  cursor: pointer;
  z-index: 10;
  border: 2px solid #1c2327;
  box-shadow: 0px 0px 5px #01040a;
}
@media screen and (max-width: 768px) {
  .random-screenshot__button {
    font-size: 0.7em;
    margin-left: 10px;
    padding: 5px;
  }
}
@media screen and (max-width: 768px) {
  .random-screenshot__button {
    min-width: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.home {
  width: 100%;
  background-color: #0d1117;
}

.chip {
  border-radius: 10px;
  color: #c9d1d9;
  border: 1px solid #fbba20;
  background-color: #161b22;
  margin-left: 3px;
  margin-right: 3px;
  text-align: center;
  padding: 5px 8px;
  font-size: 0.8em;
  font-weight: bold;
}
.chip--no-border {
  border: 1px solid #0d1117;
}

.screenshot-article {
  color: #c9d1d9;
  background-color: #161b22;
  padding: 10px;
}
.screenshot-article h2 {
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
}
.screenshot-article__methodology {
  max-width: 1600px;
  margin: 0 auto;
  padding: 20px;
  border: 3px solid #1c2327;
  background-color: #0d1117;
  position: relative;
  border-radius: 20px;
  margin-bottom: 20px;
}
.screenshot-article__methodology:first-child {
  margin-top: 20px;
}
.screenshot-article__methodology:last-child {
  padding-bottom: 80px;
}
.screenshot-article__methodology h3 {
  text-align: left;
  margin-left: 5%;
}
.screenshot-article__methodology__source {
  position: absolute;
  right: 20px;
  bottom: 5px;
  font-size: 0.8em;
  border: 1px solid #1c2327;
  padding: 10px;
  border-radius: 15px;
}
.screenshot-article__methodology__source a {
  color: #c9d1d9;
}
.screenshot-article__methodology__description {
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid #1c2327;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0px 2px 15px #01040a;
}
.screenshot-article__methodology__description span {
  margin-right: 5px;
  font-weight: bold;
}
.screenshot-article__methodology__elements {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .screenshot-article__methodology__elements {
    padding: 0px;
  }
}

.article-card {
  background-color: #0d1117;
  flex-basis: 25%;
  margin: 20px;
  padding: 20px;
  padding-top: 10px;
  border: 2px solid #1c2327;
  border-radius: 10px;
  box-sizing: border-box;
  max-width: 320px;
  min-width: 280px;
  position: relative;
  padding-bottom: 50px;
  text-align: left;
  box-shadow: 0px 2px 15px #01040a;
}
.article-card p:first-child {
  display: flex;
  align-items: center;
}
.article-card p:first-child img {
  margin-right: 10px;
  width: 30px;
  border-radius: 10px;
}
.article-card--large {
  flex-basis: 40%;
  max-width: 480px;
  min-width: 480px;
}
.article-card h4 {
  color: #fbba20;
}
.article-card img {
  max-width: 95%;
}
.article-card__versions {
  position: absolute;
  bottom: 2%;
}
@media screen and (max-width: 1200px) {
  .article-card {
    flex-basis: 45%;
  }
  .article-card--large {
    flex-basis: 45%;
  }
}
@media screen and (max-width: 768px) {
  .article-card {
    flex-basis: 100%;
    max-width: 100%;
    min-width: 100%;
    margin: 10px;
  }
  .article-card--large {
    flex-basis: 100%;
  }
}

.error {
  color: #751b1b;
}

.success {
  color: #42be42;
}

.upload-modal {
  position: fixed;
  z-index: 1;
  left: 0%;
  top: 0%;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: #01040a;
  opacity: 0.9;
  backdrop-filter: blur(10px);
  z-index: 1000;
  /* Sit on top */
  margin-top: 70px;
}
.upload-modal__frame {
  position: fixed;
  /* Stay in place */
  left: 50%;
  top: 50%;
  width: 60%;
  /* Full width */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: #1c2327;
  /* Black w/ opacity */
  opacity: 1;
  color: #c9d1d9;
  transform: translate(-50%, -50%);
  border: 7px solid #751b1b;
  box-shadow: 5px 5px 15px 5px black;
}

.form-upload {
  background-color: #0d1117;
  height: calc(100vh - 200px);
}
@media screen and (max-width: 768px) {
  .form-upload {
    height: unset;
  }
}
@media screen and (max-height: 900px) {
  .form-upload {
    height: unset;
  }
}
.form-upload__submit {
  position: relative;
  margin-top: 10px;
  margin-right: 10px;
  background-color: #fbba20;
  color: white;
  min-width: 250px;
  padding: 10px;
  border-radius: 5px;
  font-size: 1.3em;
  border: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .form-upload__submit {
    font-size: 1em;
    width: 25%;
    height: 50px;
  }
}
.form-upload__previews {
  height: 45%;
  background-color: #1c2327;
  position: relative;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 5px;
  margin-top: 3%;
  overflow-y: scroll;
  border-radius: 30px;
  box-shadow: 0px 0px 5px #01040a;
}
@media screen and (max-height: 900px) {
  .form-upload__previews {
    height: 20vh;
  }
}
@media screen and (max-width: 768px) {
  .form-upload__previews {
    height: 20vh;
  }
}
.form-upload__previews__reset {
  width: 5%;
  height: 30px;
  position: absolute;
  right: 1%;
  top: 1%;
  color: #c9d1d9;
  background-color: transparent;
  border-radius: 15px;
  z-index: 50;
  font-size: 0.9em;
  transform: scale(1);
  transition-property: transform;
  transition-duration: 200ms;
  cursor: pointer;
  border: 0;
}
.form-upload__previews__reset:hover {
  transform: scale(1.01);
  opacity: 0.9;
}
@media screen and (max-width: 1200px) {
  .form-upload__previews__reset {
    right: 3%;
  }
}
@media screen and (max-width: 768px) {
  .form-upload__previews__reset {
    right: 7%;
    top: 0%;
  }
}
.form-upload__previews__title {
  font-size: 0.8em;
  color: #c9d1d9;
}
.form-upload__previews__box {
  margin: 1%;
  padding: 1%;
  display: flex;
  flex-wrap: wrap;
}
.form-upload__previews__box__element {
  flex-basis: 20%;
  overflow-y: hidden;
  position: relative;
}
.form-upload__previews__box__element__response {
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2%;
  width: 50px;
  /* Need a specific value to work */
}
.form-upload__previews__box__element img {
  width: 50%;
  max-height: 100px;
  cursor: pointer;
}
@media screen and (max-width: 1200px) {
  .form-upload__previews__box__element img {
    width: 90%;
  }
}
.form-upload__previews__box__element img:hover {
  transform: scale(1.01);
  opacity: 0.9;
}
.form-upload__form-group {
  padding: 2%;
  width: 80%;
  position: relative;
  font-size: 18px;
  margin: 0 auto;
  transform: scale(1);
  transition-property: transform;
  transition-duration: 300ms;
}
@media screen and (max-width: 768px) {
  .form-upload__form-group {
    font-size: 0.7em;
    margin-bottom: 20px;
  }
}
.form-upload__form-group:hover {
  transform: scale(1.005);
  opacity: 0.8;
}
.form-upload__form-group label {
  border: 3px dashed #c9d1d9;
  background-color: #1c2327;
  width: 100%;
  height: 20vh;
  display: block;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9d1d9;
  border-radius: 30px;
  margin-top: 20px;
  box-shadow: 0px 0px 5px #01040a;
}
@media screen and (max-height: 700px) {
  .form-upload__form-group label {
    height: 100px;
  }
}
.form-upload__form-group label i {
  margin-right: 2%;
}
.form-upload__form-group__form-control {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  cursor: pointer;
}
.form-upload__feedback {
  margin: 0;
  padding: 0;
}
.form-upload__feedback span {
  font-size: 0.8em;
}
.form-upload__feedback span:first-child {
  margin-right: 30px;
}
.form-upload__feedback span i {
  font-size: 1em;
}

.upload {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 1px;
  width: 98%;
  margin: 0 auto;
  margin-top: 90px;
}
@media screen and (max-width: 768px) {
  .upload {
    margin-top: 55px;
  }
}
.upload__frame {
  width: 100%;
  margin: 0 auto;
  border: 1px solid #1c2327;
  border-radius: 10px;
  max-width: 1330px;
  text-align: center;
}
.upload__frame__title {
  display: flex;
  background-color: #0d1117;
  color: #c9d1d9;
  border-radius: 7px 7px 0px 0px;
  border: 1px solid #1c2327;
  margin: 0 auto;
  padding-left: 20px;
}
.upload__frame__title h1 {
  color: #c9d1d9;
  font-size: 1.2em;
  padding-left: 10px;
}
@media screen and (max-width: 1200px) {
  .upload__frame__title h1 {
    font-size: 1em;
  }
}
@media screen and (max-width: 768px) {
  .upload__frame__title {
    padding-left: 5px;
  }
}
.upload__frame__description {
  width: 100%;
  margin: 0 auto;
  background-color: white;
}
.upload__frame__description a {
  color: #c9d1d9;
}
.upload__frame__description a i {
  padding-left: 10px;
  padding-right: 10px;
  background-color: #fbba20;
  border-radius: 100%;
}
.upload__frame__description p {
  padding: 0;
  margin: 0;
  padding: 5px;
  border: 2px solid #161b22;
  background-color: #3c73b2;
  color: #c9d1d9;
}
@media screen and (max-width: 768px) {
  .upload__frame__description p {
    font-size: 0.7em;
  }
}

.login {
  padding-top: 70px;
  color: #c9d1d9;
  height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.login__frame {
  display: flex;
  flex-direction: column;
  padding: 50px;
  background-color: #0d1117;
  border-radius: 10px;
  border: 1px solid #1c2327;
  position: relative;
}
@media screen and (max-width: 768px) {
  .login__frame {
    padding: 20px;
  }
}
.login__frame__password-loader .lds-ring {
  width: 20px;
  position: absolute;
}
.login__frame__error {
  border: 1px solid #751b1b;
  color: #751b1b;
  margin: 0px;
  padding: 0px;
  font-size: 0.7em;
  max-width: 200px;
  padding: 4px;
  border-radius: 5px;
  font-weight: bold;
  margin: 20px auto;
  margin-bottom: 0px;
}
.login__frame__mention {
  border: 1px solid #1c2327;
  padding: 10px;
  line-height: 1.3em;
  max-width: 210px;
  border-radius: 10px;
  margin: 20px auto;
  margin-top: 0px;
  box-shadow: 0px 0px 5px #01040a;
}
.login__frame__mention a {
  color: #3c73b2;
}
.login__frame__forget {
  position: relative;
  margin: 0 auto;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.7em;
}
.login__frame__forget button {
  margin-left: 10px;
  border: 1px solid #3c73b2;
  color: #3c73b2;
  background-color: transparent;
  border-radius: 10px;
  padding: 3px;
  cursor: pointer;
}
.login__frame a {
  font-weight: bold;
  text-decoration: none;
}
.login__frame h1 {
  margin: 0px;
  margin-bottom: 20px;
}
.login__frame h1 i {
  padding-right: 15px;
}

.form-login {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: left;
}
.form-login label {
  text-align: left;
  font-size: 0.7em;
}
.form-login div {
  max-width: 250px;
  margin-bottom: 20px;
}
.form-login div input {
  background-color: #1c2327;
  border: 1px solid #161b22;
  color: #c9d1d9;
  margin-top: 10px;
  padding-left: 10px;
  height: 40px;
  border-radius: 5px;
}
.form-login button {
  margin-top: 10px;
  margin-right: 0px;
  padding: 10px 20px;
  text-align: center;
  background-color: #fbba20;
  color: white;
}

.form-password {
  position: relative;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 20px;
}
.form-password input {
  background-color: #1c2327;
  border: 1px solid #161b22;
  color: #c9d1d9;
  margin-top: 10px;
  padding-left: 10px;
  border-radius: 10px;
  font-size: 0.9em;
  border-radius: 5px;
  width: 150px;
}
.form-password label {
  position: absolute;
  visibility: hidden;
}
.form-password button {
  width: 30px;
  height: 20px;
  background-color: #fbba20;
  color: white;
  border-radius: 5px;
  border: none;
  border-radius: 0px 10px 10px 0px;
  cursor: pointer;
}

.dashboard {
  margin-top: 90px;
}
.dashboard__title button {
  margin-bottom: 10px;
  margin-left: 20px;
  border-radius: 10px;
  padding: 2px 15px;
  border: 1px solid #751b1b;
  color: #751b1b;
  background-color: transparent;
  font-size: 0.5em;
  cursor: pointer;
}
.dashboard__title h1 {
  text-align: center;
  background-color: #161b22;
  border: 1px solid #161b22;
  width: 50%;
  border-radius: 20px;
  margin: 0 auto;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #c9d1d9;
}
@media screen and (max-width: 768px) {
  .dashboard__title h1 {
    width: 95%;
    font-size: 1.5em;
  }
}
.dashboard__title h1 i {
  margin-right: 10px;
  padding: 20px 0px;
}
.dashboard__cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
}

.browser {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 1px;
  width: 98%;
  margin: 0 auto;
  margin-top: 90px;
}
.browser__frame {
  width: 100%;
  overflow-x: hidden;
}

.browser-header {
  display: flex;
  background-color: #0d1117;
  color: #c9d1d9;
  border-radius: 7px 7px 0px 0px;
  border: 1px solid #1c2327;
  margin: 0 auto;
  padding-left: 20px;
}
.browser-header span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 10px;
  background-color: #1c2327;
  padding: 10px;
  padding-left: 10px;
  padding-left: 10px;
  min-height: 20px;
  border-radius: 10px;
  max-height: 30px;
  animation: 300ms appear-slowly normal;
  width: 70%;
  text-align: left;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .browser-header {
    padding-left: 5px;
  }
}
.browser-header__button {
  margin: 0px;
  margin-right: 20px;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  background-color: transparent;
}
.browser-header__button i {
  font-size: 1.5em;
  color: #c9d1d9;
}
@media screen and (max-width: 768px) {
  .browser-header__button {
    margin-right: 5px;
  }
}
.browser-header__button:hover {
  opacity: 0.6;
}

.browser-body {
  position: relative;
  display: flex;
  height: calc(100vh - 170px);
  background-color: #0d1117;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  overflow-y: scroll;
  flex-wrap: wrap;
  border: 1px solid #1c2327;
  border-radius: 0px 0px 10px 10px;
}
.browser-body__no-results {
  font-size: 1.6em;
  color: #c9d1d9;
}
@media screen and (max-width: 768px) {
  .browser-body {
    height: calc(100vh - 132px);
  }
}

.browser-file {
  margin: 2%;
  display: block;
  cursor: pointer;
  flex-basis: 20%;
  transition-property: transform;
  transition-duration: 200ms;
  max-width: 20%;
  color: #c9d1d9;
  animation: 200ms appear-slowly normal;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .browser-file {
    flex-basis: 20%;
  }
}
@media screen and (max-width: 768px) {
  .browser-file {
    flex-basis: 80%;
    max-width: 80%;
  }
}
.browser-file:hover {
  transform: scale(1.03);
  opacity: 0.9;
}
.browser-file img {
  width: 80%;
  max-width: 200px;
}
.browser-file p {
  margin-top: 0;
  overflow: hidden;
}

.light-box {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 70px;
  min-height: 80%;
  height: 100vh;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 30;
  background-color: rgba(0, 0, 0, 0.885);
  align-items: center;
  animation: appear-slowly 200ms linear;
  box-shadow: 0px 0px 6px #01040a;
}
.light-box__images-count {
  position: fixed;
  background-color: #1c2327;
  color: #c9d1d9;
  left: 10px;
  bottom: 9%;
  border-radius: 5px;
  z-index: 10;
  padding: 5px;
  font-weight: bold;
}
.light-box__filename {
  position: absolute;
  right: 10px;
  bottom: 7%;
  height: 20px;
  z-index: 50;
  border: 1px solid #0d1117;
  background-color: #1c2327;
  color: #c9d1d9;
  border-radius: 10px;
  padding: 5px;
}
.light-box__close {
  color: #c9d1d9;
  position: absolute;
  top: 10px;
  right: 20px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  z-index: 50;
  transition: all 300ms;
}
.light-box__close:hover {
  opacity: 0.6;
}
.light-box__arrow {
  position: absolute;
  color: #c9d1d9;
  cursor: pointer;
  border: none;
  background-color: transparent;
  z-index: 50;
}
.light-box__arrow:hover {
  opacity: 0.8;
}
.light-box__arrow--left {
  left: 1%;
}
.light-box__arrow--right {
  right: 1%;
}

.magnifier {
  width: 100%;
  height: 90vh;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1200px) {
  .magnifier {
    align-items: center;
  }
}
.magnifier img {
  object-fit: contain;
  max-width: 100%;
  max-height: 96%;
  transition: transform 0.5s;
  z-index: 0;
}
@media screen and (max-width: 1200px) {
  .magnifier img {
    max-width: 94%;
  }
}

.button-tag {
  background-color: #fbba20;
  font-size: 1em;
  padding: 5px 10px;
  margin-right: 10px;
  border: none;
  color: #eeeeee;
  text-shadow: 1px 1px 2px #000, 2px 2px 5px rgba(0,0,0,0.75);
  font-weight: bold;
  display: flex;
  align-items: center;
  border-radius: 5px;
  transform: rotate(0deg);
  cursor: pointer;
  transition: all 300ms;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 100;
}
.button-tag__icon--reverse {
  transition: all 300ms;
  transform: rotate(180deg);
}
.button-tag i {
  font-size: 1.5em;
  margin-right: 10px;
}

.applied-tags {
  overflow-x: scroll;
  overflow-y: hidden;
  display: flex;
  flex-wrap: nowrap;
  position: absolute;
  top: 15px;
  left: 100px;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
  /* Hide scrollbar for Chrome, Safari and Opera */
}
.applied-tags::-webkit-scrollbar {
  display: none;
}
.applied-tags span {
  white-space: nowrap;
}

.applied-tag {
  background-color: #1c2327;
  padding: 6px 10px;
  border-radius: 7px;
  margin-left: 5px;
  margin-right: 2px;
  font-size: 0.85em;
  border: 1px solid #01040a;
  color: #c9d1d9;
  cursor: pointer;
  transition: all 500ms;
  max-height: 30px;
}

.tag-applicator {
  position: absolute;
  left: 10px;
  top: 50px;
  background-color: #0d1117;
  width: 380px;
  height: 300px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #1c2327;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .tag-applicator {
    max-width: 98%;
  }
}
.tag-applicator__restricted {
  z-index: 100;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background-color: rgba(0, 0, 0, 0.865);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #1c2327;
  border-radius: 10px;
}
.tag-applicator__restricted a {
  color: #3c73b2;
  text-decoration: none;
  border: 1px solid #3c73b2;
  border-radius: 10px;
  padding: 5px;
}
.tag-applicator__restricted p {
  border: 1px solid #1c2327;
  padding: 10px;
  border-radius: 10px;
  background-color: #1c2327;
  color: #c9d1d9;
}

.tag-search {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px;
  position: relative;
}
.tag-search .tag-dropdown {
  position: absolute;
  width: 240px;
  height: 260px;
  bottom: -285px;
}

.tag-selected {
  overflow-x: scroll;
  overflow-y: hidden;
  display: flex;
  flex-wrap: nowrap;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
  /* Hide scrollbar for Chrome, Safari and Opera */
  transition: all 500ms;
}
.tag-selected::-webkit-scrollbar {
  display: none;
}

.tag-selected-element {
  background-color: #1c2327;
  box-sizing: border-box;
  border: 1px solid #01040a;
  white-space: nowrap;
  display: flex;
  align-items: center;
  font-size: 0.9em;
  border-radius: 7px;
  margin: 2px;
  margin-left: 10px;
  padding-left: 10px;
  padding-top: 3px;
  padding-bottom: 3px;
  color: #c9d1d9;
  animation: appear-slowly 300ms normal;
}
.tag-selected-element--green {
  background-color: #2f5a8c;
}
.tag-selected-element__close {
  cursor: pointer;
  margin: 0px;
  padding: 0px;
  background-color: #1c2327;
  border: unset;
}
.tag-selected-element__close i {
  padding: 4px;
  color: #c9d1d9;
  background-color: #751b1b;
  border-radius: 0px 5px 5px 0px;
  margin-left: 10px;
}

/*# sourceMappingURL=style.css.map */
