@charset "UTF-8";
/* 8200FF */
/* 470C85 */
/* 07070A */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-variant-ligatures: none;
}

@font-face {
  font-family: Code-Bold;
  src: url("../fonts/CodeNext-Trial-Bold.ttf");
}
@font-face {
  font-family: Code-Light;
  src: url("../fonts/CodeNext-Trial-Light.ttf");
}
@-webkit-keyframes rainbow-background {
  0% {
    background-color: #ff595e;
  }
  20% {
    background-color: #ffca3a;
  }
  40% {
    background-color: #8ac926;
  }
  60% {
    background-color: #1982c4;
  }
  80% {
    background-color: #6a4c93;
  }
}
@keyframes rainbow-background {
  0% {
    background-color: #ff595e;
  }
  20% {
    background-color: #ffca3a;
  }
  40% {
    background-color: #8ac926;
  }
  60% {
    background-color: #1982c4;
  }
  80% {
    background-color: #6a4c93;
  }
}
@-webkit-keyframes rainbow-text {
  0% {
    color: #ff595e;
  }
  20% {
    color: #ffca3a;
  }
  40% {
    color: #8ac926;
  }
  60% {
    color: #1982c4;
  }
  80% {
    color: #6a4c93;
  }
}
@keyframes rainbow-text {
  0% {
    color: #ff595e;
  }
  20% {
    color: #ffca3a;
  }
  40% {
    color: #8ac926;
  }
  60% {
    color: #1982c4;
  }
  80% {
    color: #6a4c93;
  }
}
@-webkit-keyframes icon-move {
  0% {
    transform: translateX(50%);
  }
  50% {
    transform: translateX(20%);
  }
  100% {
    transform: translateX(50%);
  }
}
@keyframes icon-move {
  0% {
    transform: translateX(50%);
  }
  50% {
    transform: translateX(20%);
  }
  100% {
    transform: translateX(50%);
  }
}
body {
  background-color: #07070A;
  position: relative;
}

#logo {
  border: 2px dashed white;
  color: white;
  padding: 5px 10px;
  display: inline;
  font-family: Code-Bold;
}

footer {
  width: 100%;
  background-color: #07070A;
}
footer p {
  color: white;
  font-family: Code-Light;
  text-align: center;
  padding: 20px;
}
footer p #heart {
  color: #ff595e;
  font-size: 15pt;
}

/* ---------- HOMEPAGE ---------- */
#home-page #home {
  width: 100%;
  height: 400px;
  background-color: #ff595e;
  -webkit-animation-name: rainbow-background;
          animation-name: rainbow-background;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 30s;
          animation-duration: 30s;
  background-image: url("");
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  position: relative;
}
#home-page #home h1 {
  font-family: Code-Light;
  color: white;
  font-size: 22pt;
  text-align: center;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-shadow: 0 0 3px rgb(68, 68, 68);
}
#home-page #home h1 span {
  font-family: Code-Bold;
}
#home-page #about-us, #home-page #how-it-works {
  background-color: #151518;
  padding: 20px;
  margin: 20px 0;
  border-radius: 5px;
}
#home-page #about-us h1, #home-page #how-it-works h1 {
  border-left: 5px solid white;
  padding: 0 15px;
  text-transform: uppercase;
  color: white;
  font-family: Code-Bold;
}
#home-page #about-us p, #home-page #how-it-works p {
  font-family: "Poppins", sans-serif;
  padding: 10px 0;
  color: #eee;
}
#home-page .wrapper {
  width: 85%;
  margin: 0 auto;
}

#home-page header, #login-page header, #register-page header {
  padding: 20px;
}
#home-page nav ul li, #login-page nav ul li, #register-page nav ul li {
  margin: 0 30px;
}
#home-page nav ul li a, #login-page nav ul li a, #register-page nav ul li a {
  padding: 10px 20px;
  margin: 10px;
}
#home-page nav ul li a#enter-btn, #login-page nav ul li a#enter-btn, #register-page nav ul li a#enter-btn {
  background-color: #151518;
}
#home-page nav ul li a:not(#enter-btn):hover, #login-page nav ul li a:not(#enter-btn):hover, #register-page nav ul li a:not(#enter-btn):hover {
  text-shadow: 0 0 10px white;
}
#home-page nav ul li a:not(#enter-btn)::before, #login-page nav ul li a:not(#enter-btn)::before, #register-page nav ul li a:not(#enter-btn)::before {
  margin-right: 10px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: bold;
  content: "<";
  transform: translateX(20px);
}
#home-page nav ul li a:not(#enter-btn)::after, #login-page nav ul li a:not(#enter-btn)::after, #register-page nav ul li a:not(#enter-btn)::after {
  font-weight: bold;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  margin-left: 10px;
  content: "/>";
  transform: translateX(-20px);
}
#home-page nav ul li a:not(#enter-btn)::before, #home-page nav ul li a:not(#enter-btn)::after, #login-page nav ul li a:not(#enter-btn)::before, #login-page nav ul li a:not(#enter-btn)::after, #register-page nav ul li a:not(#enter-btn)::before, #register-page nav ul li a:not(#enter-btn)::after {
  display: inline-block;
  opacity: 0;
  transition: transform 0.3s, opacity 0.2s;
}
#home-page nav ul li a:not(#enter-btn):hover::before, #home-page nav ul li a:not(#enter-btn):hover::after, #home-page nav ul li a:not(#enter-btn):focus::before, #home-page nav ul li a:not(#enter-btn):focus::after, #login-page nav ul li a:not(#enter-btn):hover::before, #login-page nav ul li a:not(#enter-btn):hover::after, #login-page nav ul li a:not(#enter-btn):focus::before, #login-page nav ul li a:not(#enter-btn):focus::after, #register-page nav ul li a:not(#enter-btn):hover::before, #register-page nav ul li a:not(#enter-btn):hover::after, #register-page nav ul li a:not(#enter-btn):focus::before, #register-page nav ul li a:not(#enter-btn):focus::after {
  opacity: 1;
  transform: translateX(0px);
}

#login-page, #register-page {
  position: relative;
  height: 100vh;
}
#login-page header, #register-page header {
  z-index: 1;
  top: 0;
  position: absolute;
}
#login-page main, #register-page main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  background-color: white;
  box-shadow: 0 0 10px #37373c;
  border-radius: 5px;
}
#login-page main .left, #login-page main .right, #register-page main .left, #register-page main .right {
  padding: 30px;
  display: flex;
}
#login-page main .left, #register-page main .left {
  background-color: #07070A;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
#login-page main .left h1, #register-page main .left h1 {
  color: white;
  font-family: Code-Bold;
  text-transform: uppercase;
}
#login-page main .left p, #register-page main .left p {
  color: white;
  font-family: Poppins;
  padding: 30px 0 15px 0;
}
#login-page main .left a, #register-page main .left a {
  display: inline-block;
  padding: 7px 20px;
  border: 1px solid white;
  font-family: Poppins;
  color: white;
  text-decoration: none;
  border-radius: 100px;
  transition-duration: 0.3s;
}
#login-page main .left a:hover, #register-page main .left a:hover {
  transform: scale(1.05);
  transition-duration: 0.3s;
}
#login-page main .right, #register-page main .right {
  padding: 60px 30px;
  margin-left: -5%;
}
#login-page main .right form label, #register-page main .right form label {
  width: 100%;
  display: block;
  font-family: Poppins;
  color: #07070A;
  padding: 10px 0;
}
#login-page main .right form input, #register-page main .right form input {
  width: 100%;
  display: block;
  border-radius: 100px;
}
#login-page main .right form input[type=text], #login-page main .right form input[type=password], #register-page main .right form input[type=text], #register-page main .right form input[type=password] {
  border: 1px solid #ddd;
  padding: 10px;
  font-family: Poppins;
  font-size: 11pt;
}
#login-page main .right form input[type=submit], #register-page main .right form input[type=submit] {
  border: 2px solid #07070A;
  margin-top: 20px;
  padding: 10px;
  font-family: Poppins;
  background-color: white;
  font-size: 12pt;
  cursor: pointer;
  transition-duration: 0.3s;
}
#login-page main .right form input[type=submit]:hover, #register-page main .right form input[type=submit]:hover {
  background-color: #07070A;
  transition-duration: 0.3s;
}
#login-page canvas, #register-page canvas {
  height: 99vh !important;
  background-color: #ff595e;
  -webkit-animation-name: rainbow-background;
          animation-name: rainbow-background;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 30s;
          animation-duration: 30s;
  background-image: url("");
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

#login-page main {
  width: 30%;
}
#login-page main .left {
  -webkit-clip-path: polygon(0% 0%, 0% 100%, 30% 100%, 100% 0%);
          clip-path: polygon(0% 0%, 0% 100%, 30% 100%, 100% 0%);
  width: 50%;
}
#login-page main .right {
  width: 50%;
}

#register-page main {
  width: 50%;
}
#register-page main .left {
  -webkit-clip-path: polygon(0% 0%, 0% 100%, 30% 100%, 100% 0%);
          clip-path: polygon(0% 0%, 0% 100%, 30% 100%, 100% 0%);
  width: 40%;
}
#register-page main .right {
  width: 60%;
}
#register-page main .split {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#register-page main .split div {
  width: 47%;
}

header {
  background-color: #07070A;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
header nav {
  display: inline-block;
}
header nav ul {
  list-style-type: none;
}
header nav ul li {
  display: inline;
}
header nav ul li a {
  color: white;
  text-decoration: none;
  font-family: Code-Bold;
  font-size: 12pt;
  text-transform: uppercase;
}

#login-page footer,
#register-page footer,
.user-page footer {
  z-index: 1;
  bottom: 0;
  position: absolute;
}

.user-page {
  background-color: #151518;
  min-height: 100vh;
}
.user-page header {
  padding: 10px;
  position: relative;
}
.user-page header #search-bar {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  width: 25%;
}
.user-page header #search-bar input {
  width: 100%;
  background-color: #151518;
  border: none;
  padding: 10px;
  color: white;
  border-radius: 50px;
  position: relative;
  font-family: Poppins;
  font-size: 11pt;
}
.user-page header #search-bar a {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 1;
  color: white;
}
.user-page header nav ul li {
  margin: 0 0px;
}
.user-page header nav ul li.long-button a {
  background-color: #151518;
  padding: 10px 15px;
  border-radius: 50px;
  font-size: 12pt;
}
.user-page header nav ul li.long-button a i {
  padding-right: 10px;
}
.user-page header nav ul li a {
  padding: 5px;
  margin: 10px;
  font-size: 14pt;
}
.user-page header nav ul li#explore-btn a:hover, .user-page header nav ul li#add-btn a:hover {
  background-color: #0e0e11;
}
.user-page header nav ul li#explore-btn i {
  color: #8ac926;
}
.user-page header nav ul li#add-btn i {
  color: #1982c4;
}
.user-page header nav ul li#notification-btn.active a {
  color: #ffca3a;
}
.user-page header nav ul li#notification-btn.active a:hover {
  color: #cda535;
}
.user-page header nav ul li#notification-btn.active a > span {
  position: absolute;
  top: -2px;
  right: -5px;
  padding: 1px 6px;
  border-radius: 100%;
  background-color: #151518;
  color: #ffca3a;
  font-size: 8pt;
  font-weight: normal;
  display: block;
}
.user-page header nav ul li#notification-btn a {
  color: white;
  text-decoration: none;
  position: relative;
  display: inline-block;
  border-radius: 2px;
}
.user-page header nav ul li#notification-btn a > span {
  display: none;
}
.user-page header nav ul li#notification-btn div {
  display: inline-block;
}
.user-page header nav ul li#notification-btn > div {
  position: relative;
}
.user-page header nav ul li#notification-btn #notification-dropdown {
  width: 300px;
  background-color: #2d2d2d;
  z-index: 1;
  position: absolute;
  transform: translate(-100%);
  left: 75px;
  border-radius: 8px;
  box-shadow: 0 0 6px rgb(255, 202, 58);
  padding: 10px;
  display: none;
  top: 80px;
}
.user-page header nav ul li#notification-btn #notification-dropdown h1 {
  font-family: code-bold;
  text-transform: uppercase;
  color: white;
  text-align: center;
  font-size: 12pt;
  padding-bottom: 10px;
  color: #eee;
}
.user-page header nav ul li#notification-btn #notification-dropdown .notification {
  color: #07070A;
  font-family: Poppins;
  text-transform: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0;
  width: 100%;
  display: flex;
  padding: 10px 5px;
}
.user-page header nav ul li#notification-btn #notification-dropdown .notification:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.user-page header nav ul li#notification-btn #notification-dropdown .notification div:first-child {
  width: 90%;
}
.user-page header nav ul li#notification-btn #notification-dropdown .notification div:last-child {
  width: 10%;
  text-align: right;
}
.user-page header nav ul li#notification-btn #notification-dropdown .notification h2 {
  font-size: 10pt;
  color: white;
}
.user-page header nav ul li#notification-btn #notification-dropdown .notification p {
  font-size: 8pt;
  color: #ccc;
}
.user-page header nav ul li#notification-btn #notification-dropdown .notification span {
  font-size: 7pt;
  color: white;
}
.user-page header nav ul li#notification-btn #notification-dropdown a:not(.notification) {
  font-family: Poppins;
  text-transform: none;
  text-align: center;
  font-size: 10pt;
  color: #5f5f62;
  padding: 0;
  margin: 10px 0 0 0;
}
.user-page header nav ul li#notification-btn #notification-dropdown a:not(.notification):hover {
  border-bottom: 1px solid #5f5f62;
}
.user-page header nav ul li#user-btn {
  cursor: pointer;
}
.user-page header nav ul li#user-btn.focused > div > a {
  color: #e94a50;
}
.user-page header nav ul li#user-btn a {
  color: white;
  text-decoration: none;
  position: relative;
  display: inline-block;
  border-radius: 2px;
}
.user-page header nav ul li#user-btn a > span {
  display: none;
}
.user-page header nav ul li#user-btn div {
  display: inline-block;
}
.user-page header nav ul li#user-btn > div {
  position: relative;
}
.user-page header nav ul li#user-btn #user-dropdown {
  cursor: default;
  width: 200px;
  background-color: #2d2d2d;
  z-index: 1;
  position: absolute;
  transform: translate(-100%);
  left: 23px;
  border-radius: 8px;
  box-shadow: 0 0 6px #ff595e;
  padding: 10px;
  display: none;
  top: 80px;
}
.user-page header nav ul li#user-btn #user-dropdown ul {
  padding: 10px 0;
}
.user-page header nav ul li#user-btn #user-dropdown ul li {
  display: block;
  padding: 5px 0;
}
.user-page header nav ul li#user-btn #user-dropdown a:not(.user-card) {
  margin: 0;
  font-family: Poppins;
  text-transform: none;
  font-size: 10pt;
  padding: 0;
}
.user-page header nav ul li#user-btn #user-dropdown a:not(.user-card):hover {
  color: #bbbbbb;
}
.user-page header nav ul li#user-btn #user-dropdown #logout-btn {
  display: block;
  color: #ff595e;
  font-weight: bold;
  background-color: #232327;
  text-shadow: 0 0 3px black;
  padding: 5px;
  text-align: center;
  border-radius: 8px;
  border: 1px solid #ff595e;
}
.user-page header nav ul li#user-btn #user-dropdown #logout-btn:hover {
  background-color: #18181c;
}
.user-page header nav ul li#user-btn #user-dropdown #logout-btn i {
  padding-right: 5px;
}
.user-page header nav ul li#user-btn #user-dropdown .user-card {
  background-color: #ff595e;
  width: 100%;
  margin: 0;
  border-radius: 8px;
  padding: 5px;
}
.user-page header nav ul li#user-btn #user-dropdown .user-card:hover {
  background-color: #e94a50;
}
.user-page header nav ul li#user-btn #user-dropdown .user-card i {
  padding: 0 5px;
}
.user-page header nav ul li#user-btn #user-dropdown .user-card h1 {
  font-size: 12pt;
  display: inline-block;
  text-transform: none;
  font-family: Poppins;
}

#explore-page main {
  display: flex;
  justify-content: space-between;
  padding: 50px;
}
#explore-page #trending {
  width: 20%;
  height: 400px;
  background-color: #232327;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 8px #8ac926;
  padding: 10px;
}
#explore-page #trending h1 {
  font-size: 14pt;
  font-family: Code-Bold;
  text-transform: uppercase;
  text-align: center;
  color: #8ac926;
  text-shadow: 0 0 3px rgba(255, 255, 255, 0.3);
}
#explore-page #window {
  width: 75%;
}
#explore-page #window h2 {
  font-family: Poppins;
  color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
  font-size: 12pt;
}
#explore-page #window h2 i {
  padding-right: 10px;
}
#explore-page #window h2#results-heading {
  margin-top: 30px;
}
#explore-page #window #filters p {
  color: white;
  background-color: #8ac926;
}
#explore-page #window #filters p:hover {
  background-color: #6fa31c;
}
#explore-page #window #filters p i:hover {
  background-color: white;
  color: #8ac926;
}
#explore-page #window #results .snippet {
  min-height: 200px;
  background-color: #232327;
  border-radius: 8px;
  margin: 10px 0;
  padding: 10px;
}
#explore-page #window #results .snippet h1 {
  display: inline;
  font-family: Code-Bold;
  text-transform: uppercase;
  font-size: 12pt;
}
#explore-page #window #results .snippet h1:hover a {
  border-bottom: 1px solid #8ac926;
}
#explore-page #window #results .snippet h1:hover i {
  display: inline-block;
  text-decoration: none;
}
#explore-page #window #results .snippet h1 i {
  display: none;
  padding-left: 10px;
  color: #8ac926;
}
#explore-page #window #results .snippet h1 a {
  color: #8ac926;
  text-decoration: none;
}
#explore-page #window #results .snippet h2 {
  font-size: 10pt;
  margin-top: 5px;
}
#explore-page #window #results .snippet h2 i {
  padding-right: 5px;
}
#explore-page #window #results .snippet h2 a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
#explore-page #window #results .snippet h2 a:hover {
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}
#explore-page #window #results .snippet .code-file {
  margin: 20px 0;
}
#explore-page #window #results .snippet .details {
  background-color: #151518;
  color: white;
  padding: 8px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  font-family: Poppins;
  font-size: 10pt;
}
#explore-page #window #results .snippet .details i {
  padding-left: 5px;
}
#explore-page #window #results .snippet .further {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 10px;
}
#explore-page #window #results .snippet .further .tags {
  justify-content: end;
}
#explore-page #window #results .snippet .more {
  font-family: Poppins;
  font-size: 10pt;
  margin-bottom: 10px;
}
#explore-page #window #results .snippet .more i {
  padding-right: 5px;
  color: rgba(255, 255, 255, 0.5);
}
#explore-page #window #results .snippet .more a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}
#explore-page #window #results .snippet .more a:hover {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
#explore-page #window #pagination {
  display: flex;
  justify-content: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
  padding: 10px 0 50px 0;
}
#explore-page #window #pagination a {
  display: inline-block;
  background-color: #232327;
  width: 2%;
  padding: 5px 0;
  text-align: center;
  border-radius: 3px;
  color: white;
  font-family: Poppins;
  text-decoration: none;
  transition-duration: 0.3s;
}
#explore-page #window #pagination a#active {
  background-color: #8ac926;
  color: #07070A;
}
#explore-page #window #pagination a#active:hover {
  background-color: #6fa31c;
  transition-duration: 0.3s;
}
#explore-page #window #pagination a:hover {
  background-color: #8ac926;
  color: #07070A;
  transition-duration: 0.3s;
}
#explore-page footer p #heart {
  color: #8ac926;
}

.code-file {
  border-radius: 9px;
  cursor: pointer;
}
.code-file .details:hover {
  background-color: #6fa31c;
}
.code-file.closed .details {
  border-radius: 8px;
}
.code-file.closed .code {
  display: none;
}
.code-file .code {
  display: flex;
}
.code-file .code .annotations {
  width: 15%;
  background-color: #2d2d2d;
  border-bottom-left-radius: 8px;
}
.code-file .code .sample {
  width: 85%;
}
.code-file .code .sample pre {
  width: 100%;
  margin: 0 !important;
  border-bottom-right-radius: 8px;
}
.code-file .code .sample pre code {
  width: 100%;
}
.code-file .code .sample .line-highlight {
  background: rgba(255, 255, 255, 0.1) !important;
  pointer-events: all !important;
  transition-duration: 0.3s;
}
.code-file .code .sample .line-highlight:hover {
  background: rgba(255, 255, 255, 0.3) !important;
  transition-duration: 0.3s;
}

#add-page form {
  margin: 0px auto;
  padding: 30px;
  border-radius: 8px;
}
#add-page form#add-snippet {
  width: 30%;
}
#add-page form#add-snippet .upload-container {
  position: relative;
  display: flex;
  gap: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  box-shadow: 0 0 5px #bbb;
  color: white;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, border 0.2s ease-in-out;
  padding: 50px;
  margin: 0 auto 20px auto;
  font-family: Poppins;
  font-size: 10pt;
}
#add-page form#add-snippet .upload-container:hover {
  background-color: #232327;
  color: white;
}
#add-page form#add-snippet .upload-container:hover .upload-title {
  color: #1982c4;
}
#add-page form#add-snippet .upload-container:hover input[type=file] {
  background-color: #151518;
  color: #555;
}
#add-page form#add-snippet .upload-container input[type=file] {
  width: 350px;
  max-width: 100%;
  color: #888;
  padding: 5px;
  background-color: #232327;
  border-radius: 8px;
  border: none;
  transition: background 0.2s ease-in-out;
}
#add-page form#add-snippet .upload-container input[type=file]::-webkit-file-upload-button {
  margin-right: 20px;
  border: none;
  background: #1982c4;
  padding: 10px 20px;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}
#add-page form#add-snippet .upload-container input[type=file]::file-selector-button {
  margin-right: 20px;
  border: none;
  background: #1982c4;
  padding: 10px 20px;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}
#add-page form#add-snippet .upload-container input[type=file]::-webkit-file-upload-button:hover {
  background-color: #116ca4;
}
#add-page form#add-snippet .upload-container input[type=file]::file-selector-button:hover {
  background-color: #116ca4;
}
#add-page form#add-snippet .upload-container .upload-title {
  color: white;
  font-size: 14pt;
  font-weight: bold;
  text-align: center;
  transition: color 0.2s ease-in-out;
  font-family: Poppins;
}
#add-page form#add-details {
  width: 40%;
  margin: 0 auto;
}
#add-page form#add-details .container {
  margin: 0 auto 20px auto;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 5px #bbb;
}
#add-page form#add-details .container label {
  font-family: Poppins;
  color: #ddd;
  display: block;
  text-align: center;
  font-size: 13pt;
  padding-bottom: 8px;
}
#add-page form#add-details .container input[type=text] {
  width: 100%;
  background-color: #232327;
  border-radius: 50px;
  border: none;
  color: white;
  padding: 8px;
  font-family: Poppins;
  font-size: 12pt;
  margin-bottom: 30px;
}
#add-page form#add-details .container #filters p {
  color: white;
  background-color: #1982c4;
}
#add-page form#add-details .container #filters p:hover {
  background-color: #1982c4;
}
#add-page form#add-details .container #filters p i:hover {
  background-color: white;
  color: #1982c4;
}
#add-page button[type=submit] {
  width: 50%;
  display: block;
  margin: 0 auto;
  background-color: #1982c4;
  border-radius: 50px;
  color: white;
  font-family: Poppins;
  border: none;
  padding: 5px 20px;
  font-size: 13pt;
  cursor: pointer;
}
#add-page button[type=submit]:hover {
  background-color: #116ca4;
}
#add-page button[type=submit].wiggle i {
  -webkit-animation-name: icon-move;
          animation-name: icon-move;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
#add-page .stepper-bar {
  width: 40%;
  margin: 30px auto 50px auto;
  font-size: 10pt;
}
#add-page .stepper-bar .active .step-counter {
  background-color: #1982c4;
}
#add-page .stepper-bar .active .step-name {
  color: #1982c4;
}

.stepper-bar {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  font-family: Poppins;
  color: white;
}
.stepper-bar .stepper-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.stepper-bar .stepper-item:first-child::before {
  content: none;
}
.stepper-bar .stepper-item:last-child::after {
  content: none;
}
.stepper-bar .stepper-item::before {
  position: absolute;
  content: "";
  border-bottom: 2px dashed #ccc;
  width: 100%;
  top: 20px;
  left: -50%;
  z-index: 2;
}
.stepper-bar .stepper-item::after {
  position: absolute;
  content: "";
  border-bottom: 2px dashed #ccc;
  width: 100%;
  top: 20px;
  left: 50%;
  z-index: 2;
}
.stepper-bar .stepper-item .step-counter {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #151518;
  border: 2px solid white;
  margin-bottom: 6px;
}
.stepper-bar .stepper-item.active {
  font-weight: bold;
}
.stepper-bar .stepper-item.active::after {
  border-bottom: 2px dashed #ccc;
  z-index: 3;
}
.stepper-bar .stepper-item.completed::after {
  position: absolute;
  content: "";
  border-bottom: 2px solid white;
  width: 100%;
  top: 20px;
  left: 50%;
  z-index: 3;
}
.stepper-bar .stepper-item.completed .step-counter {
  background-color: white;
  color: #151518;
}

#filters {
  background-color: #232327;
  display: flex;
  border-radius: 100px;
  padding: 10px;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
#filters a, #filters p {
  padding: 3px 10px;
  border-radius: 100px;
  font-family: Poppins;
}
#filters a {
  background-color: #151518;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
#filters a i {
  padding: 3px;
  margin-right: 5px;
}
#filters p {
  cursor: pointer;
  transition-duration: 0.3s;
}
#filters p i {
  margin-left: 5px;
  padding: 3px;
  transition-duration: 0.2s;
}
#filters p:hover {
  transition-duration: 0.3s;
}
#filters p i:hover {
  border-radius: 100px;
  transition-duration: 0.2s;
}

#snippet-page main {
  display: flex;
  justify-content: space-between;
  padding: 20px;
}
#snippet-page #project, #snippet-page #code-window, #snippet-page #social {
  padding: 20px;
}
#snippet-page #project {
  width: 20%;
  font-family: Poppins;
  font-size: 10pt;
}
#snippet-page #project article {
  box-shadow: 0 0 8px white;
  border-radius: 8px;
  color: white;
  padding: 10px;
}
#snippet-page #project article h1 {
  font-family: Code-Bold;
  text-transform: uppercase;
  font-size: 11pt;
  text-align: center;
  padding-bottom: 5px;
}
#snippet-page #project article ul {
  list-style-position: inside;
  list-style-type: none;
}
#snippet-page #project article ul li i {
  padding-right: 10px;
}
#snippet-page #project article ul li.directory {
  font-weight: bold;
}
#snippet-page #project article ul li.directory i {
  color: #ffca3a;
}
#snippet-page #project article ul ul li::before {
  content: "↵";
  display: inline-block;
  transform: scale(-1.2, 1.2);
  padding: 0 8px;
}
#snippet-page #code-window {
  width: 55%;
}
#snippet-page #code-window article {
  box-shadow: 0 0 3px #444;
  border-radius: 8px;
}
#snippet-page #code-window article .details {
  background-color: #232327;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  padding: 6px;
  font-family: Poppins;
  font-size: 10pt;
  color: white;
}
#snippet-page #code-window article .details .path {
  color: rgba(255, 255, 255, 0.4);
}
#snippet-page #social {
  width: 25%;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
#snippet-page #social article #title {
  color: white;
  font-family: Code-Bold;
  text-transform: uppercase;
  color: #ffca3a;
}
#snippet-page #social article #poster {
  font-weight: normal;
  font-family: Poppins;
  font-size: 11pt;
}
#snippet-page #social article #poster i {
  color: rgba(255, 255, 255, 0.5);
  padding-right: 10px;
}
#snippet-page #social article #poster a {
  color: white;
  text-decoration: none;
}
#snippet-page #social article #info {
  color: white;
  font-family: Poppins;
  padding: 15px 0;
  font-size: 11pt;
}
#snippet-page #social article #info p {
  padding: 3px 0;
}
#snippet-page #social article .interaction {
  padding-bottom: 20px;
}
#snippet-page #social article .tags {
  justify-content: start;
  flex-wrap: wrap;
}
#snippet-page #social article #comments-heading {
  color: rgba(255, 255, 255, 0.8);
  font-family: Code-Bold;
  text-transform: uppercase;
  font-size: 10pt;
  margin-top: 20px;
}
#snippet-page #social article #comments-heading i {
  padding-right: 10px;
}
#snippet-page #social article #comments .comment {
  background-color: #232327;
  padding: 10px;
  border-radius: 8px;
  margin: 10px 0;
  font-family: Poppins;
}
#snippet-page #social article #comments .comment h2 {
  color: white;
  font-size: 11pt;
  padding-bottom: 5px;
}
#snippet-page #social article #comments .comment div p {
  font-size: 10pt;
  color: white;
}
#snippet-page #social article #comments .comment div p:not(:first-child) {
  padding-top: 3px;
}
#snippet-page #social article #comments .comment div p:not(:last-child) {
  padding-bottom: 3px;
}
#snippet-page footer p #heart {
  color: #ffca3a;
}

.tags {
  display: flex;
  gap: 5px;
  align-items: center;
}
.tags .tag {
  padding: 2px 10px;
  background-color: #2d2d2d;
  display: inline;
  font-family: Poppins;
  color: white;
  font-size: 10pt;
  border-radius: 100px;
}

.interaction {
  font-size: 12pt;
  font-family: Poppins;
  display: flex;
  justify-content: start;
}
.interaction a {
  display: inline;
  color: white;
  transition-duration: 0.3s;
}
.interaction a:hover, .interaction a.active {
  transform: scale(1.1);
  transition-duration: 0.3s;
}
.interaction a:hover .fa-circle-up, .interaction a.active .fa-circle-up {
  color: #8ac926;
}
.interaction a:hover .fa-circle-down, .interaction a.active .fa-circle-down {
  color: #ff595e;
}
.interaction i {
  font-size: 18pt;
}
.interaction p {
  display: inline;
  color: white;
}
.interaction p i {
  padding-left: 30px;
}
.interaction p.likes {
  color: #8ac926;
}
.interaction a, .interaction p {
  padding: 0 3px;
}/*# sourceMappingURL=style.css.map */