html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  padding: 0;
  margin: 0;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
body {
  color: rgba(239, 235, 224, 0.7);
  background-color: #000000;
  font-size: 16px;
  padding: 0;
  margin: 0;
  font-family: "Roboto Condensed", sans-serif;
}
.banner_section {
  background-image: url(../../assets/img/mortalonline2-kallard.jpg),
    url(../../assets/img/bg-body.jpg) !important;
  background-repeat: no-repeat, repeat;
  background-position: center top;
  background-size: cover;
}
@media screen and (min-width: 769px) {
  .banner_section {
    background-image: url(../../assets/img/bg-header1.jpg),
      url(../../assets/img/bg-body.jpg) !important;
  }
}
body.is-success {
  background-image: url(../../assets/img/bg-header-mobile-success.jpg),
    url(../../assets/img/bg-body.jpg) !important;
}
@media screen and (min-width: 769px) {
  body.is-success {
    background-image: url(../../assets/img/bg-header-success.jpg),
      url(../../assets/img/bg-body.jpg) !important;
  }
}
body.is-steps {
  background-image: url(../../assets/img/bg-body.jpg) !important;
}
h1,
h2,
h3,
h4,
h5 {
  color: #efebe0;
  padding: 0;
  margin: 0;
}
p,
span {
  color: rgba(239, 235, 224, 0.7);
}
a {
  text-decoration: none;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -50px, 0);
    transform: translate3d(0, -50px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounce {
  0% {
    transform: scale(1, 1) translateY(0);
    color: #efebe0;
  }
  10% {
    transform: scale(1.1, 0.9) translateY(0);
  }
  30% {
    transform: scale(0.9, 1.1) translateY(-6px);
    color: #ffff;
  }
  50% {
    transform: scale(1, 1) translateY(0);
  }
  100% {
    transform: scale(1, 1) translateY(0);
    color: #efebe0;
  }
}

.animate__bounce {
  animation-name: bounce;
  animation-duration: 2s;
  animation-fill-mode: both;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
}
.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  animation-fill-mode: forwards;
}
.container {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 1140px;
  width: 100%;
}
.container::before {
  background-image: url(https://files.facepunch.com/garry/1b1011b1/test.png?1=);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 500;
  pointer-events: none;
  opacity: 0.3;
}
.drops-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  /* margin-bottom: 3rem; */
  padding: 8rem 0;
  overflow: hidden;
  box-shadow: inset 0 0 0 2000px rgb(0 0 0 / 39%);
}

@media screen and (min-width: 769px) {
  .drops-hero {
    margin: 0rem 0 0rem 0;
    min-height: 0;
  }
}

@media screen and (max-width: 768px) {
  .drops-hero {
    padding: 3rem 0 !important;
  }
}

.drops-hero__logo {
  display: flex;
  flex: 1;
  justify-content: center;
}
@media screen and (min-width: 769px) {
  .drops-hero__logo {
    align-items: center;
    margin-bottom: 2rem;
  }
}
.drops-hero__logo .rust-logo {
  animation-duration: 0.75s;
  align-items: flex-start;
  align-self: center;
  max-width: 160px;
  opacity: 0;
  width: 160px;
  height: auto;
}
.drops-hero .twitch-badge {
  align-self: center;
  align-items: center;
  display: flex;
  height: auto;
  justify-content: center;
  max-width: 100%;
  opacity: 0;
  animation-duration: 1s;
  animation-delay: 0.2s;
}

.drops-hero .twitch-badge img {
  max-width: 35%;
}

.drops-hero__twitch-badge {
  align-self: center;
  display: block;
  height: auto;
  max-width: 100%;
  transform: scale(115%);
}
@media screen and (min-width: 769px) {
  .drops-hero__twitch-badge {
    max-width: 90%;
    transform: scale(100%);
  }
}
.drops-hero__description {
  font-size: 1rem;
  line-height: 2rem;
  text-align: center;
  align-self: center;
  padding: 0 2.5rem;
  animation-duration: 1s;
  animation-delay: 0.4s;
  opacity: 0;
}
@media screen and (min-width: 769px) {
  .drops-hero__description {
    font-size: 1.5rem;
    line-height: 2rem;
    padding: 0;
    margin-bottom: 2rem;
  }
}
.drops-hero__arrow {
  align-self: center;
  align-items: center;
  border: 2px solid #ffff;
  border-radius: 32px;
  color: #ffff;
  display: flex;
  font-size: 2rem;
  justify-content: center;
  margin-top: 2rem;
  padding: 0 1.5rem;
  height: 60px;
  animation-duration: 1s;
  animation-delay: 0.6s;
  opacity: 0;
  transition: all 0.2s ease;
}
.drops-hero__arrow span {
  font-size: 1rem;
  margin-right: 0.25rem;
  text-transform: uppercase;
  font-weight: bold;
  transition: all 0.2s ease;
}
.drops-hero__arrow:hover {
  border: 2px solid black;
}
.drops-hero__arrow:hover i {
  color: black !important;
}
.drops-hero__arrow:hover span {
  color: black;
}
.drops-hero.is-completed {
  margin: 4rem 0;
}
@media screen and (min-width: 769px) {
  .drops-hero.is-completed {
    margin: 6rem 0 8rem 0;
  }
}
@media screen and (min-width: 769px) {
  .drops-hero.is-completed .drops-hero__twitch-badge {
    max-width: 40%;
  }
}
.drops-hero .button.twitch {
  align-self: center;
  animation-duration: 1s;
  animation-delay: 0.5s;
  opacity: 0;
}
.drops-hero .drops-gs__user {
  align-self: center;
  animation-delay: 0.5s;
  animation-duration: 1s;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  margin-top: 5rem;
  opacity: 0;
  padding: 2rem;
}
.drops-hero .drops-gs__user .ua {
  margin-right: 3rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 1024px) {
  .drops-hero .drops-gs__user .ua {
    margin-bottom: 0;
  }
}
.drops-hero .drops-gs__user .ua .ua-name {
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.drops-hero .drops-gs__user form {
  display: flex;
  flex-direction: column;
}
.drops-hero .drops-gs__user form .button {
  width: 100%;
  margin-bottom: 1rem;
}
@media screen and (min-width: 769px) {
  .drops-hero .drops-gs__user form {
    flex-direction: row;
  }
  .drops-hero .drops-gs__user form .button {
    width: auto;
    margin-bottom: 0;
  }
  .drops-hero .drops-gs__user form .button:not(:first-of-type) {
    margin-left: 1rem;
  }
}
.time-date {
  padding: 1rem;
  text-align: center;
  background-color: rgba(145, 70, 255, 0.2);
  border: 2px solid rgba(145, 70, 255, 0.3);
  margin-bottom: 3rem;
  animation-duration: 1s;
  animation-delay: 0.4s;
  opacity: 0;
}
.time-date span,
.time-date i {
  color: #cfc2f5;
  font-size: 1.1rem;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}
.time-date span strong,
.time-date i strong {
  color: #fff;
  border-bottom: 2px solid #fff;
}
.time-date i {
  margin-right: 0.5rem;
}
.rust-drops {
  background-color: rgba(145, 70, 255, 0.1);
  border: 2px solid rgba(145, 70, 255, 0.3);
  padding: 3rem 1.5rem;
  margin-bottom: 3rem;
  animation-duration: 1s;
  animation-delay: 0.6s;
  opacity: 0;
}
.rust-drops.streamer {
  background-color: #0d0814;
}
.rust-drops__header {
  align-items: center;
  border-bottom: 2px solid rgba(145, 70, 255, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 0 2rem 0;
  margin-bottom: 3rem;
}
.rust-drops__header .title {
  color: #9146ff;
  font-weight: bold;
  font-size: 2rem;
  padding-bottom: 1rem;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .rust-drops__header .title {
    font-size: 3rem;
    text-align: left;
  }
}
.rust-drops__header .subtitle {
  color: #cfc2f5;
}
.rust-drops__footer {
  text-align: center;
  margin-top: 2rem;
}
.rust-drops__footer span {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  color: rgba(207, 194, 245, 0.6);
  padding: 0.75rem;
}
.rust-drops__body {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 769px) {
  .rust-drops__body {
    flex-direction: row;
    justify-content: center;
  }
}
.drops-gs {
  background: linear-gradient(
    rgba(116, 116, 115, 0.05),
    rgba(116, 116, 115, 0)
  );
  padding: 3rem 1.5rem;
  margin-bottom: 4rem;
}
@media screen and (min-width: 769px) {
  .drops-gs {
    padding: 3rem;
  }
}
.drops-gs__header {
  align-items: center;
  border-bottom: 2px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 0 2rem 0;
  margin-bottom: 3rem;
}
@media screen and (min-width: 769px) {
  .drops-gs__header {
    padding: 2rem 0 4rem 0;
    margin-bottom: 4rem;
  }
}
.drops-gs__header .header-icon {
  align-items: center;
  background-color: #5d7239;
  border-radius: 50%;
  color: #efebe0;
  font-size: 2.5rem;
  display: flex;
  height: 64px;
  justify-content: center;
  width: 64px;
  margin-bottom: 1.5rem;
}
.drops-gs__header .header-text {
  font-weight: bold;
  font-size: 2rem;
  padding-bottom: 1rem;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .drops-gs__header .header-text {
    font-size: 3rem;
    text-align: left;
  }
}
.drops-gs__header .header-description {
  font-size: 1rem;
  text-align: center;
  align-self: center;
  padding: 0 1.5rem;
  margin-bottom: 2rem;
}
.drops-gs__header .button {
  align-self: center;
}
.drops-gs__section {
  border-bottom: 2px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column-reverse;
  opacity: 0.5;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  width: 100%;
}
.drops-gs__section.is-hidden {
  display: none;
}
@media screen and (min-width: 769px) {
  .drops-gs__section {
    flex-direction: row;
  }
}
.drops-gs__section:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
.drops-gs__section.is-active {
  opacity: 1;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 2px solid rgba(93, 114, 57, 0.5);
}
.drops-gs__section.is-active .section-container__number {
  background-color: #5d7239;
  color: #efebe0;
}
.drops-gs__section.is-active .section-asset {
  border-color: rgba(93, 114, 57, 0.35);
}
.drops-gs__section.is-complete {
  opacity: 1;
}
.drops-gs__section.is-complete .section-container__number {
  background-color: #5d7239;
  color: #efebe0;
}
.drops-gs__section.is-complete .section-container__number .number-text {
  display: none;
}
.drops-gs__section.is-complete .section-container__number .number-icon {
  display: block;
}
.drops-gs__section.is-complete .section-container__text .section-text__user {
  display: flex;
}
.drops-gs__section.is-complete .section-asset {
  border-color: rgba(93, 114, 57, 0.35);
}
.drops-gs__section .section-container {
  display: flex;
  flex-direction: column;
  flex: 1;
}
@media screen and (min-width: 769px) {
  .drops-gs__section .section-container {
    flex-direction: row;
  }
}
.drops-gs__section .section-container__number {
  align-items: center;
  color: rgba(239, 235, 224, 0.5);
  background-color: rgba(116, 116, 115, 0.3);
  border-radius: 50%;
  display: flex;
  font-weight: bold;
  height: 40px;
  justify-content: center;
  margin: 0 0 1rem 0;
  width: 40px;
}
.drops-gs__section .section-container__number .number-icon {
  display: block;
}
.drops-gs__section .section-container__number .number-icon {
  display: none;
  font-size: 1.75rem;
}
@media screen and (min-width: 769px) {
  .drops-gs__section .section-container__number {
    align-self: center;
    margin: 0 4rem 0 0;
  }
}
.drops-gs__section .section-container__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  padding-right: 2rem;
}
.drops-gs__section .section-container__text .section-text__title {
  font-size: 2rem;
  padding: 0;
  margin-bottom: 1rem;
}
.drops-gs__section .section-container__text .section-text__title:last-of-type {
  margin-bottom: 0;
}
.drops-gs__section .section-container__text .button {
  margin-top: 1rem;
}
.drops-gs__section .section-container__text .user .section-text__description {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  padding: 0;
}
.drops-gs__section .section-container__text .user-logout {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
}
@media screen and (min-width: 769px) {
  .drops-gs__section .section-container__text .user-logout {
    flex-direction: row;
    align-items: center;
  }
}
.drops-gs__section .section-container__text .user-logout .button {
  margin-top: 1rem;
}
@media screen and (min-width: 769px) {
  .drops-gs__section .section-container__text .user-logout .button {
    margin-left: 2rem;
    margin-top: 0;
  }
}
.drops-gs__section .section-container__text .section-text__user {
  align-items: center;
  display: none;
  flex-direction: row;
}
.drops-gs__section .section-container__text .section-text__user .user__avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  margin-right: 1rem;
}
.drops-gs__section .section-container__text .section-text__user .user__name {
  color: #efebe0;
  font-size: 1.25rem;
  font-weight: bold;
  word-break: break-all;
}
.drops-gs__section .section-container .error-message {
  align-self: flex-start;
  align-items: center;
  background-color: rgba(205, 65, 43, 0.4);
  border-radius: 6px;
  display: flex;
  flex-direction: row;
  padding: 1rem;
  margin-top: 1rem;
}
.drops-gs__section .section-container .error-message i {
  font-size: 1.5rem;
  margin-right: 0.75rem;
}
.drops-gs__section .section-container .error-message span {
  color: #efebe0;
  font-weight: bold;
}
.drops-gs__section .section-asset {
  align-items: center;
  align-self: center;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  height: 180px;
  width: 180px;
  overflow: hidden;
}
.drops-gs__section .section-asset img {
  height: 180px;
  width: 180px;
}
@media screen and (min-width: 769px) {
  .drops-gs__section .section-asset {
    margin-bottom: 0;
    align-self: flex-start;
    height: 256px;
    width: 256px;
  }
  .drops-gs__section .section-asset img {
    height: 256px;
    width: 256px;
  }
}
.drops-gs__user {
  align-items: center;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 2rem;
  justify-content: center;
}
@media screen and (min-width: 769px) {
  .drops-gs__user {
    flex-direction: row;
    max-width: 80%;
  }
}
.drops-gs__user .ua {
  display: flex;
  align-items: center;
  flex: 1;
  margin-bottom: 2rem;
}
@media screen and (min-width: 769px) {
  .drops-gs__user .ua {
    margin-bottom: 0;
  }
}
.drops-gs__user .ua-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  margin-right: 1rem;
}
.drops-gs__user .ua-name {
  color: #efebe0;
  font-size: 1.25rem;
  font-weight: bold;
}
.drops-gs__user .user-buttons {
  display: flex;
  flex-direction: row;
}
.drops-gs__user .user-buttons .button {
  align-self: center;
}
.drops-gs__user .user-buttons .button:last-of-type {
  margin-left: 1rem;
}
@media screen and (min-width: 769px) {
  .drops-gs__user .user-buttons .button {
    align-self: flex-start;
  }
}
.drops-gs__warning {
  margin-top: 2rem;
  color: #cd412b;
  font-weight: bold;
  text-align: center;
}
.button {
  align-self: flex-start;
  border: 0;
  border-radius: 6px;
  color: #efebe0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 1rem;
  font-weight: bold;
  padding: 1rem 1.5rem;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
  max-height: 55px;
  text-align: center;
}
.button i {
  margin-right: 0.5rem;
  font-size: 1.5rem;
}
.button.disabled {
  color: #7b7b7b;
  background-color: transparent;
  border: 2px solid rgba(205, 65, 43, 0.4);
  cursor: default;
  pointer-events: none;
}
.button.logout {
  color: rgba(239, 235, 224, 0.7);
  background-color: #2a2f2f;
  border: 2px solid rgba(66, 74, 74, 0.4);
}
.button.logout:hover:not(.disabled) {
  color: rgba(239, 235, 224, 0.7);
  background-color: #363c3c;
}
.button.secondary {
  color: #7b7b7b;
  background-color: transparent;
  border: 2px solid rgba(123, 123, 123, 0.4);
}
.button.secondary:hover:not(.disabled) {
  background-color: rgba(123, 123, 123, 0.4);
  border-color: transparent;
  color: rgba(239, 235, 224, 0.7);
}
.button.secondary span {
  color: #7b7b7b;
}
.button.twitch,
.button.steam {
  background-color: #000000;
  border: 1px solid #ffff;
}
.button.twitch:hover:not(.disabled),
.button.steam:hover:not(.disabled) {
  background-color: #242424;
}

.footer {
  background-color: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 4rem 0;
}
.footer-container {
  align-self: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 2rem;
}
@media screen and (min-width: 769px) {
  .footer-container {
    flex-direction: row;
  }
}
.footer-container a {
  margin-bottom: 1.5rem;
  opacity: 0.7;
  transform: translateY(0);
  transition: all 0.2s ease;
}
@media screen and (min-width: 769px) {
  .footer-container a {
    margin-bottom: 0;
  }
  .footer-container a:last-child {
    margin-left: 3rem;
  }
}
.footer-container a img {
  max-width: 200px;
}
.footer-container a:hover {
  opacity: 1;
  transform: translateY(-5px);
}
.footer-copyright {
  color: rgba(239, 235, 224, 0.3);
}
.section {
  display: flex;
  flex-direction: column;
}
.section .section-body {
  padding: 1rem 2rem;
}
@media screen and (min-width: 769px) {
  .section .section-body {
    padding: 3rem;
  }
}
.section .faq-question {
  border-bottom: 2px solid rgba(116, 116, 115, 0.3);
  padding: 2rem 0;
  margin-bottom: 2rem;
}
.section .faq-question:last-of-type {
  border-bottom: 0;
  margin-bottom: 0;
}
.section .faq-question a {
  color: #aa4734;
  transition: all 0.2s ease;
}
.section .faq-question a:hover {
  color: #be4f3a;
  text-decoration: underline;
}
.flex-break {
  flex-basis: 100%;
  height: 0;
}
.error-container {
  min-height: 80vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.error-container .error-title {
  font-size: 5rem;
  margin-bottom: 1rem;
}
.error-container .error-subtitle {
  color: rgba(239, 235, 224, 0.7);
  font-size: 1.25rem;
  font-weight: normal;
  margin-bottom: 2rem;
}
.error-container .error-button {
  background-color: #aa4734;
  box-shadow: 0 5px 20px rgba(170, 71, 52, 0);
  color: #efebe0;
  text-transform: uppercase;
  font-weight: bold;
  padding: 1rem;
  transition: all 0.2s ease;
}
.error-container .error-button:hover {
  color: #fff;
  background-color: #963f2e;
  padding: 1rem 1.5rem;
  box-shadow: 0 5px 20px rgba(170, 71, 52, 0.5);
}
.section.is-large {
  padding: 3rem 0;
}
@media screen and (min-width: 1024px) {
  .section.is-large {
    padding: 6rem 0;
  }
}
.section .section-header {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin-bottom: 1rem;
}
@media screen and (min-width: 769px) {
  .section .section-header {
    margin-bottom: 3rem;
  }
}
.section .section-header h1 {
  color: #fff;
  font-size: 3.5rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.section .section-header p {
  color: #fff;
  margin: 0;
  padding: 0;
}
.section.event-date {
  border: 0;
  padding: 0;
  position: absolute;
  width: 100%;
  z-index: 2;
  transform: translateY(-50%);
}
.section.event-date .event-wrapper {
  background-color: #36275d;
  border: 2px solid #36275d;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.5);
  padding: 1rem;
  text-align: center;
}
.section.event-date .event-wrapper span {
  color: #cfc2f5;
  font-size: 1.25rem;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.6);
}
.section.event-date .event-wrapper span strong {
  color: #fff;
}
.section.is-getstarted {
  background-color: #010101;
  border-bottom: 2px solid #ffff;
  display: grid;
  min-height: 60vh;
}
@media screen and (min-width: 1024px) {
  .section.is-getstarted {
    grid-template-columns: 1fr 1.7fr;
  }
}
.section.is-getstarted .get-started-title {
  margin-bottom: 3rem;
}
.section.is-getstarted .get-started-title h1 {
  color: #fff;
  font-size: 3rem;
  padding: 0;
  margin: 0 0 0.5rem 0;
  text-transform: uppercase;
}
.section.is-getstarted .get-started-title p {
  color: #ffff;
  margin: 0;
  padding: 0;
}
.section.is-getstarted .get-started-image {
  background-image: url(../../assets/img/get-started-image.jpg);
  background-size: cover;
  background-position: center center;
  mix-blend-mode: lighten;
  /* opacity: .4; */
  height: 300px;
}
@media screen and (min-width: 1024px) {
  .section.is-getstarted .get-started-image {
    height: auto;
  }
}
.section.is-getstarted .get-started-steps {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 769px) {
  .section.is-getstarted .get-started-steps {
    padding: 5rem 4rem;
  }
}
.section.is-getstarted .get-started-steps .steps .step {
  display: flex;
  background-color: #000000;
  border: 2px solid #ffff;
  flex-direction: row;
  opacity: 0.5;
  pointer-events: none;
  margin-bottom: 1rem;
  padding-left: 3rem;
  position: relative;
}
.section.is-getstarted .get-started-steps .steps .step:last-of-type {
  margin-bottom: 0;
}
.section.is-getstarted .get-started-steps .steps .step .step-number {
  align-items: center;
  border: 2px solid #ffff;
  background-color: #000000;
  color: #ffff;
  border-radius: 50%;
  display: flex;
  font-size: 1.5rem;
  font-weight: bold;
  justify-content: center;
  margin-right: 1rem;
  height: 50px;
  width: 50px;
  position: absolute;
  left: 0;
  top: 5px;
  transform: translateX(-50%);
}
.section.is-getstarted .get-started-steps .steps .step .step-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-right: 0.5rem;
}
.section.is-getstarted .get-started-steps .steps .step .step-body .step-title {
  display: flex;
  flex: 1;
  text-transform: uppercase;
  padding: 1rem 0;
}
.section.is-getstarted
  .get-started-steps
  .steps
  .step
  .step-body
  .step-title
  i {
  margin-right: 1rem;
  opacity: 0.7;
}
.section.is-getstarted
  .get-started-steps
  .steps
  .step
  .step-body
  .step-subtitle {
  display: none;
  color: rgba(207, 194, 245, 0.7);
  padding: 0;
  margin: 0;
}
.section.is-getstarted .get-started-steps .steps .step .step-body .step-footer {
  display: none;
  margin-top: 1rem;
  flex-direction: column;
  justify-content: center;
}
.section.is-getstarted
  .get-started-steps
  .steps
  .step
  .step-body
  .step-footer
  form {
  align-items: center;
  flex-direction: column;
  display: flex;
  flex: 1;
}
@media screen and (min-width: 769px) {
  .section.is-getstarted
    .get-started-steps
    .steps
    .step
    .step-body
    .step-footer
    form {
    flex-direction: row;
  }
}
.section.is-getstarted
  .get-started-steps
  .steps
  .step
  .step-body
  .step-footer
  form
  button {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .section.is-getstarted
    .get-started-steps
    .steps
    .step
    .step-body
    .step-footer
    form
    button {
    width: auto;
  }
}
.section.is-getstarted
  .get-started-steps
  .steps
  .step
  .step-body
  .step-footer
  .button-row {
  display: flex;
  flex-direction: column;
  flex: 1;
}
@media screen and (min-width: 769px) {
  .section.is-getstarted
    .get-started-steps
    .steps
    .step
    .step-body
    .step-footer
    .button-row {
    flex-direction: row;
  }
}
.section.is-getstarted
  .get-started-steps
  .steps
  .step
  .step-body
  .step-footer
  .button-row
  .button {
  width: 100%;
}
.section.is-getstarted
  .get-started-steps
  .steps
  .step
  .step-body
  .step-footer
  .button-row
  .button:first-of-type {
  margin: 0 0 1rem 0;
}
@media screen and (min-width: 769px) {
  .section.is-getstarted
    .get-started-steps
    .steps
    .step
    .step-body
    .step-footer
    .button-row
    .button {
    width: auto;
  }
  .section.is-getstarted
    .get-started-steps
    .steps
    .step
    .step-body
    .step-footer
    .button-row
    .button:first-of-type {
    margin: 0 1rem 0 0;
  }
}
.section.is-getstarted
  .get-started-steps
  .steps
  .step
  .step-body
  .step-footer
  .button-row
  .button.logout {
  background-color: transparent;
}
.section.is-getstarted
  .get-started-steps
  .steps
  .step
  .step-body
  .step-footer
  .button-row
  .button.logout:hover {
  border: 2px solid #36275d;
}
.section.is-getstarted
  .get-started-steps
  .steps
  .step
  .step-body
  .step-footer
  .or-divider {
  color: rgba(207, 194, 245, 0.5);
  font-weight: bold;
  padding: 1rem;
  text-transform: uppercase;
}
@media screen and (min-width: 769px) {
  .section.is-getstarted
    .get-started-steps
    .steps
    .step
    .step-body
    .step-footer
    .or-divider {
    padding: 0 1.5rem;
  }
}
.section.is-getstarted
  .get-started-steps
  .steps
  .step
  .step-body
  .step-footer
  .account {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.section.is-getstarted
  .get-started-steps
  .steps
  .step
  .step-body
  .step-footer
  .account
  .avatar {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  height: 40px;
  width: 40px;
  margin-right: 1rem;
}
.section.is-getstarted
  .get-started-steps
  .steps
  .step
  .step-body
  .step-footer
  .account
  .username {
  color: #fff;
  font-weight: bold;
  display: block;
  text-transform: uppercase;
  max-width: 150px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.section.is-getstarted
  .get-started-steps
  .steps
  .step
  .step-body
  .step-footer
  .account
  .logout {
  background: rgba(54, 39, 93, 0);
  border: 2px solid #36275d;
  border-radius: 50%;
  color: rgba(207, 194, 245, 0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  width: 44px;
  height: 44px;
  margin-left: 3rem;
  transition: all 0.2s ease;
}
.section.is-getstarted
  .get-started-steps
  .steps
  .step
  .step-body
  .step-footer
  .account
  .logout:hover {
  background: #36275d;
  color: #fff;
}
.section.is-getstarted .get-started-steps .steps .step.is-active {
  opacity: 1;
  pointer-events: all;
}
.section.is-getstarted .get-started-steps .steps .step.is-active .step-number {
  background-color: #000000;
  color: #efebe0;
  border: 1px solid #ffff;
  top: 8px;
}
.section.is-getstarted .get-started-steps .steps .step.is-active .step-body {
  padding: 1rem 1rem 1rem 0;
}
@media screen and (min-width: 769px) {
  .section.is-getstarted .get-started-steps .steps .step.is-active .step-body {
    padding: 0 0 1rem 0;
  }
}
.section.is-getstarted
  .get-started-steps
  .steps
  .step.is-active
  .step-subtitle {
  display: flex;
}
.section.is-getstarted .get-started-steps .steps .step.is-active .step-footer {
  display: flex;
}
.section.is-getstarted .get-started-steps .steps .step.is-complete {
  opacity: 1;
  pointer-events: all;
}
.section.is-getstarted .get-started-steps .steps .step.is-complete .step-body {
  flex-direction: column;
}
@media screen and (min-width: 769px) {
  .section.is-getstarted
    .get-started-steps
    .steps
    .step.is-complete
    .step-body {
    flex-direction: row;
  }
}
.section.is-getstarted
  .get-started-steps
  .steps
  .step.is-complete
  .step-number {
  background-color: #62438e;
  color: #efebe0;
  border: none;
  top: 8px;
}
.section.is-getstarted
  .get-started-steps
  .steps
  .step.is-complete
  .step-footer {
  background-color: rgba(54, 39, 93, 0.2);
  display: flex;
  margin-top: 0;
  min-width: 200px;
  padding: 1rem;
}
@media screen and (min-width: 769px) {
  .section.is-getstarted
    .get-started-steps
    .steps
    .step.is-complete
    .step-footer {
    padding: 0 1rem;
  }
}
.section.general-drops {
  background-color: rgba(19, 12, 28, 0.7);
  border-top: 2px solid #36275d;
  border-bottom: 2px solid #36275d;
  padding: 6rem 0;
}
.section.streamer-drops {
  background-color: #000000;
  border-top: 2px solid #ffff;
  border-bottom: 2px solid #ffff;
  padding: 6rem 0;
}
.drops-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.drops-group.is-4 .drop {
  flex: 0 0 calc(25% - 32px);
}
.drops-group.is-4
  .drop
  .drop-footer
  .streamer-details
  .streamer-item
  .streamer-name {
  font-size: 1rem;
}
.drops-group .drop {
  background-color: #000000;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  margin: 16px;
  transition: all 0.2s ease;
  position: relative;
  width: 100%;
}
.drops-group .drop.two-column .drop-footer .drop-cont {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.drops-group .drop.two-column .drop-footer .drop-cont:last-of-type {
  margin-top: 1rem;
}
@media screen and (min-width: 769px) {
  .drops-group .drop.two-column {
    flex: 0 0 calc(66.66% - 32px);
  }
  .drops-group .drop.two-column .drop-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }
  .drops-group .drop.two-column .drop-footer .drop-cont:last-of-type {
    margin-top: 0;
  }
  .drops-group .drop.two-column .drop-image {
    display: flex;
    flex-direction: row;
    max-height: 352px;
  }
  .drops-group .drop.two-column .drop-image video {
    max-height: 352px;
  }
}
@media screen and (min-width: 769px) {
  .drops-group .drop {
    flex: 0 0 calc(33.33% - 32px);
  }
}
.drops-group .drop.is-live {
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}
.drops-group .drop.is-live .drop-header,
.drops-group .drop.is-live .drop-footer {
  background-color: #372055;
}
.drops-group .drop.generic .drop-header {
  display: flex;
  justify-content: center;
  min-height: 72px;
}
.drops-group
  .drop.generic
  .drop-header
  .streamer-details
  .streamer-item
  .streamer-name {
  text-align: center;
}
.drops-group .drop:hover {
  box-shadow: 0 5px 50px rgba(0, 0, 0, 0.8);
  transform: scale(105%);
  z-index: 2;
}

.drops-group .drop .drop-header {
  border: 2px solid #ffff;
  padding: 1rem;
  transition: all 0.2s ease;
}
.drops-group .drop .drop-header .streamer-details {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.drops-group .drop .drop-header .streamer-details .avatar {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  margin-right: 16px;
  height: 40px;
  width: 40px;
}
.drops-group .drop .drop-header .streamer-details .avatar > img {
  border-radius: 4px;
  height: 40px;
  width: 40px;
  border: 1px solid #ffff;
}
.drops-group .drop .drop-header .streamer-details .streamer-item {
  display: flex;
  flex-direction: row;
  flex: 1;
}
.drops-group
  .drop
  .drop-header
  .streamer-details
  .streamer-item
  .streamer-name {
  color: #fff;
  font-size: 1.25rem;
  font-weight: bold;
  flex: 1;
}
.drops-group
  .drop
  .drop-header
  .streamer-details
  .streamer-item
  .streamer-name
  .mdi {
  margin-right: 0.5rem;
}
.drops-group
  .drop
  .drop-header
  .streamer-details
  .streamer-item
  .streamer-name
  .mdi.mdi-youtube {
  color: #f00;
}
.drops-group
  .drop
  .drop-header
  .streamer-details
  .streamer-item
  .streamer-name
  .mdi.mdi-twitch {
  color: #9146ff;
}
.drops-group
  .drop
  .drop-header
  .streamer-details
  .streamer-item
  .online-status {
  border: 1px solid #ffff;
  color: #ffff;
  border-radius: 4px;
  font-weight: bold;
  font-size: 12px;
  padding: 4px 6px;
  text-transform: uppercase;
}
.drops-group
  .drop
  .drop-header
  .streamer-details
  .streamer-item
  .online-status.is-live {
  background-color: rgba(222, 42, 42, 0.4);
  box-shadow: 0 0 10px rgba(222, 42, 42, 0.8);
  color: #fff;
  border: 1px solid #de2a2a;
  position: relative;
  padding-left: 20px;
}
.drops-group
  .drop
  .drop-header
  .streamer-details
  .streamer-item
  .online-status.is-live:after {
  background-color: #de2a2a;
  border-radius: 50%;
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  top: 50%;
  left: 6px;
  transform: translateY(-50%);
}
.drops-group .drop .drop-image {
  padding: 0;
  margin: 0;
  border-top: 0;
  border-bottom: 2px solid #ffff;
  border-right: 2px solid #ffff;
  border-left: 2px solid #ffff;
}

.drops-group .drop .drop-image img {
  width: 100%;
}
.drops-group .drop .drop-image > video {
  width: 100%;
  max-height: 350px;
}
.drops-group .drop .drop-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  transition: all 0.2s ease;
  border-top: 0;
  border-bottom: 2px solid #ffff;
  border-right: 2px solid #ffff;
  border-left: 2px solid #ffff;
}
.drops-group .drop .drop-footer .drop-time {
  border-radius: 4px;
  font-weight: bold;
  font-size: 12px;
  padding: 4px 6px;
  text-transform: uppercase;
  border: 1px solid #ffff;
  color: #ffff;
}
.drops-group .drop .drop-footer .drop-time i {
  margin-right: 4px;
}
.drops-group .drop .drop-footer .drop-time span {
  color: #ffff;
}
.drops-group .drop .drop-footer .drop-name {
  color: #ffff;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.link_account {
  background: #0000006e;
  text-align: center;
  padding: 60px;
  margin-top: 20px;
  width: 70%;
}

.link_account p {
  color: #cd492c;
  margin: 0;
}
