@import url(https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Permanent+Marker&family=Whisper&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Luckiest+Guy&family=Permanent+Marker&family=Whisper&display=swap);
:root {
  --background: url("/assets/img/backgrounds/portrait-woman-dark-bar.jpg");
  --backgroundOpacity: 0.1;
}

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
* {
  box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "width" 100;
}

p {
  font-weight: 500;
  color: rgb(255, 255, 255);
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.25rem;
  text-align: justify;
}
@media only screen and (min-width: 1024px) {
  p {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.75rem;
  }
}

a {
  text-decoration: none;
  color: #881337;
  cursor: pointer;
}

h1 {
  font-weight: 800;
  color: rgb(255, 255, 255);
  margin-bottom: 2rem;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  h1 {
    font-size: 1.875rem;
    line-height: 2rem;
  }
}
@media only screen and (min-width: 768px) {
  h1 {
    font-size: 3rem;
    line-height: 3.5rem;
  }
}

h2 {
  font-weight: 800;
  color: rgb(255, 255, 255);
  margin-bottom: 1rem;
}

.text-white-100 {
  color: rgb(255, 255, 255);
}

.text-green-100 {
  color: #dcfce7;
}

.text-green-200 {
  color: #bbf7d0;
}

.text-green-300 {
  color: #86efac;
}

.text-green-400 {
  color: #4ade80;
}

.text-green-500 {
  color: #22c55e;
}

.text-green-600 {
  color: #16a34a;
}

.text-green-700 {
  color: #15803d;
}

.text-green-800 {
  color: #166534;
}

.text-green-900 {
  color: #14532d;
}

.text-blue-100 {
  color: #dbeafe;
}

.text-blue-200 {
  color: #bfdbfe;
}

.text-blue-300 {
  color: #93c5fd;
}

.text-blue-400 {
  color: #60a5fa;
}

.text-blue-500 {
  color: #3b82f6;
}

.text-blue-600 {
  color: #2563eb;
}

.text-blue-700 {
  color: #1d4ed8;
}

.text-blue-800 {
  color: #1e40af;
}

.text-blue-900 {
  color: #14532d;
}

.center {
  text-align: center;
}

:root {
  --background: url("/assets/img/backgrounds/portrait-woman-dark-bar.jpg");
  --backgroundOpacity: 0.1;
}

html {
  height: 100%;
  display: flex;
  flex-direction: column;
}

body {
  display: flex;
  background: #881337;
  flex: 1;
}
body.animated {
  background: linear-gradient(-45deg, #ffe4e6, #881337, #581c87, #3b82f6);
  background-size: 400% 400%;
  animation: gradient 30s ease infinite;
}
body.tall-back {
  background-size: 400% 700%;
}

@keyframes gradient {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
main {
  height: 100%;
  width: 100%;
  max-width: 1140px;
  margin: auto;
  display: flex;
  padding: 0 2rem;
  flex-direction: column;
}
main .page-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}
main .page-content.page-header-content {
  margin-top: 5rem;
}
main .page-content.v-center {
  justify-content: center;
}

.flex-1 {
  flex: 1;
  display: flex;
  align-items: center;
}

.hidden {
  display: none !important;
}

.opacity-0 {
  opacity: 0 !important;
}

.opacity-25 {
  opacity: 0.25 !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.opacity-100 {
  opacity: 1 !important;
}

.success-status {
  background: #bbf7d0;
  color: #166534;
  padding: 0.25rem;
  border-radius: 0.25rem;
  text-align: center;
}

ul.input-error li {
  background: #f43f5e;
  color: rgb(255, 255, 255);
  padding: 0.25rem;
  border-radius: 0.25rem;
}

.fade-in {
  transition: 1s opacity ease-in-out;
}

.btn {
  padding: 0 0.875rem;
  border-radius: 0.25rem;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  color: #881337;
  align-items: center;
  background: rgb(255, 255, 255);
}
.btn.admin-btn {
  background: #f97316 !important;
}
.btn.destruct-btn {
  background: #f43f5e !important;
}
.btn:not(.blank-btn) {
  cursor: pointer;
}
.btn a, .btn button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.5rem !important;
  border: none;
  background: transparent;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: normal;
  cursor: pointer;
}
.btn.logout-btn {
  background: #f43f5e;
  color: rgb(255, 255, 255);
}
.btn .btn-small-text {
  font-weight: 500;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.btn .text-content {
  color: #881337;
  padding: 0 0.5rem;
  flex: 1;
}

.header-btn {
  font-size: 1.75rem;
  color: rgb(255, 255, 255);
  border-radius: 0.25rem;
  padding: 0.25rem;
}
.header-btn.blank-btn {
  height: 36px;
  width: 36px;
  background-color: transparent;
  cursor: default;
}
.header-btn:not(.blank-btn) {
  background: rgba(0, 0, 0, 0.5);
}

:root {
  --background: url("/assets/img/backgrounds/portrait-woman-dark-bar.jpg");
  --backgroundOpacity: 0.1;
}

#cmp-game-play__log-results-container {
  margin: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: 1s;
}
#cmp-game-play__log-results-container > div {
  display: flex;
  gap: 0.5rem;
}
#cmp-game-play__log-results-container .log-results-btn,
#cmp-game-play__log-results-container .start-timer-btn {
  width: 100%;
}
#cmp-game-play__log-results-container .player-failed-btn {
  background-color: #fda4af;
}
#cmp-game-play__log-results-container .player-failed-btn .text-content {
  color: #881337;
}
#cmp-game-play__log-results-container .opponent-failed-btn {
  background-color: #fda4af;
}
#cmp-game-play__log-results-container .opponent-failed-btn .text-content {
  color: #881337 !important;
}
#cmp-game-play__log-results-container .task-completed-btn {
  background-color: #166534;
}
#cmp-game-play__log-results-container .task-completed-btn .text-content {
  color: rgb(255, 255, 255);
}
#cmp-game-play__log-results-container .start-timer-btn {
  background-color: #166534;
  color: rgb(255, 255, 255);
}
#cmp-game-play__log-results-container .start-timer-btn ion-icon {
  font-size: 24px;
  margin-right: 0.5rem;
}

:root {
  --background: url("/assets/img/backgrounds/portrait-woman-dark-bar.jpg");
  --backgroundOpacity: 0.1;
}

#cmp-game-play__start-timer-button-container {
  transition: 1s;
}
#cmp-game-play__start-timer-button-container .btn.start-timer-btn {
  margin: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
#cmp-game-play__start-timer-button-container .btn.start-timer-btn .text-content {
  line-height: 4.5rem;
}

.btn.create-game-btn {
  margin-top: 3rem;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 1rem;
  line-height: normal;
  padding: 0;
  display: flex;
  justify-content: space-between;
}
.btn.create-game-btn a {
  color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.btn.create-game-btn .text-content {
  padding: 0 0.5rem;
  flex: 1;
  color: rgb(255, 255, 255);
}
.btn.create-game-btn .btn-header {
  text-transform: uppercase;
  font-size: 1rem;
}
.btn.create-game-btn .btn-small-text {
  font-weight: 500;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.btn.create-game-btn ion-icon {
  color: rgb(255, 255, 255);
  padding: 0 0 0 0.5rem;
  font-size: 2rem;
}
.btn.create-game-btn ion-icon.status-icon {
  font-size: 1.75rem;
}
.btn.create-game-btn {
  margin-bottom: 3rem;
}
.btn.create-game-btn a {
  padding: 1rem 1.5rem !important;
}

.get-started-button {
  background: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 2rem;
  background: url("/assets/img/backgrounds/beautiful-female-lips-gloss-lipstick.jpg");
  background-size: contain;
  background-color: rgba(0, 0, 0, 0.9);
  background-repeat: no-repeat;
  margin: 2rem 0;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .get-started-button {
    width: 500px;
    align-self: center;
  }
}
.get-started-button .text-content {
  font-size: 2rem;
  line-height: 3rem;
  text-align: right;
  color: rgb(255, 255, 255);
}

.btn.settings-btn {
  background: #22c55e;
  padding: 0;
}
.btn.settings-btn a, .btn.settings-btn button {
  padding: 0.25rem 0.5rem !important;
}
.btn.settings-btn a .text-content, .btn.settings-btn button .text-content {
  line-height: 2rem;
  padding: 0 !important;
  text-align: left;
  color: rgb(255, 255, 255);
}
.btn.settings-btn a .text-content > div, .btn.settings-btn button .text-content > div {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.btn.settings-btn a ion-icon, .btn.settings-btn button ion-icon {
  color: rgb(255, 255, 255);
}
.btn.settings-btn a ion-icon:first-child, .btn.settings-btn button ion-icon:first-child {
  font-size: 1.75rem;
}

.game-history-btn-container {
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  display: flex;
  scrollbar-width: none;
  cursor: grab;
  transition: margin-left 0.5s linear, height 0.5s linear 0.2s, opacity 0.5s;
  height: 55px;
  width: 100%;
}
.game-history-btn-container::-webkit-scrollbar {
  display: none;
}
.game-history-btn-container .text-content {
  color: rgb(255, 255, 255);
  text-align: center;
}
.game-history-btn-container > * {
  scroll-snap-align: start;
}
.game-history-btn-container__button {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 1rem;
  line-height: normal;
  padding: 0;
  justify-content: space-between;
  margin-bottom: 0.25rem;
  flex: 2 0 100%;
}
.game-history-btn-container__button.active a ion-icon:first-child {
  color: #f43f5e;
}
.game-history-btn-container__button.completed {
  background: rgba(0, 0, 0, 0.2);
}
.game-history-btn-container__button.completed a {
  color: rgba(255, 255, 255, 0.3);
}
.game-history-btn-container__button.completed ion-icon:first-child {
  color: #22c55e;
}
.game-history-btn-container__button ion-icon {
  color: rgb(255, 255, 255);
  padding: 0 0 0 0.5rem;
  font-size: 2rem;
}
.game-history-btn-container__button ion-icon:first-child {
  font-size: 1.75rem;
}
.game-history-btn-container .delete-btn {
  flex: 1 0 30%;
  background-color: #ef4444;
  color: rgb(255, 255, 255);
  border: none;
  cursor: pointer;
  margin-bottom: 0.25rem;
}
.game-history-btn-container.deleted {
  display: none;
}

.btn.truth-dare-btn {
  border-radius: 1rem;
  opacity: 0.7;
  transition-duration: 1s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}
.btn.truth-dare-btn button, .btn.truth-dare-btn a {
  text-align: left;
  line-height: 8rem !important;
  text-transform: uppercase;
  justify-content: space-between !important;
  align-items: center;
  font-size: 3rem !important;
  margin: 0;
  display: flex;
  color: #881337;
  padding: 0 !important;
  border: none;
}
.btn.truth-dare-btn button .text-content, .btn.truth-dare-btn a .text-content {
  padding: 0 !important;
  flex: none;
}
@media only screen and (max-width: 1023px) {
  .btn.truth-dare-btn.truth-btn {
    margin-bottom: 2rem;
  }
}
.btn.truth-dare-btn.truth-btn img {
  width: 100px;
}
.btn.truth-dare-btn.truth-btn.slide-out {
  margin-left: -500px !important;
  opacity: 0;
}
.btn.truth-dare-btn.dare-btn img {
  width: 80px;
}
.btn.truth-dare-btn.dare-btn.slide-out {
  margin-left: 500px !important;
  opacity: 0;
}
.btn.truth-dare-btn.random-btn {
  width: 200px;
  height: 100px;
  border: none;
  display: flex;
  justify-content: center !important;
  align-self: center;
  z-index: 100;
  box-shadow: 10px 10px 15px 0 rgba(0, 0, 0, 0.75);
  background-color: #881337;
  opacity: 1;
  align-items: center;
}
@media only screen and (max-width: 1023px) {
  .btn.truth-dare-btn.random-btn {
    position: absolute;
    border-radius: 50px;
  }
}
@media only screen and (min-width: 1024px) {
  .btn.truth-dare-btn.random-btn {
    border-radius: 20px;
  }
}
.btn.truth-dare-btn.random-btn button, .btn.truth-dare-btn.random-btn a {
  justify-content: center !important;
}
.btn.truth-dare-btn.random-btn .text-content {
  font-size: 1.5rem !important;
  color: rgb(255, 255, 255);
}
.btn.truth-dare-btn.random-btn.fade-out {
  opacity: 0;
}

:root {
  --background: url("/assets/img/backgrounds/portrait-woman-dark-bar.jpg");
  --backgroundOpacity: 0.1;
}

#page-header {
  background: rgba(0, 0, 0, 0.3);
  padding: 1rem 2rem;
  height: 5rem;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
  z-index: 100;
  transition-duration: 1s;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
}
#page-header div.container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1140px;
}
@media only screen and (min-width: 1024px) {
  #page-header div.container {
    padding: 0 2rem;
  }
}
#page-header__game-level {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid rgb(255, 255, 255);
  color: rgb(255, 255, 255);
  padding: 0 2rem;
}
#page-header__game-level-number {
  padding-bottom: 0.25rem;
  font-size: 0.85rem;
}
#page-header__game-level-name {
  padding-bottom: 0.25rem;
  font-size: 1.25rem;
  font-weight: 700;
}
#page-header__page-title {
  color: rgb(255, 255, 255);
  font-size: 1.25rem;
}

:root {
  --background: url("/assets/img/backgrounds/portrait-woman-dark-bar.jpg");
  --backgroundOpacity: 0.1;
}

#cmp-game-play {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-top: 5rem;
  padding-bottom: 2rem;
}
@media only screen and (min-width: 1024px) {
  #cmp-game-play {
    background: rgba(255, 255, 255, 0.05);
  }
}
#cmp-game-play:not(.low-profile):before {
  content: "";
  height: 100%;
  width: 100%;
  background: linear-gradient(rgba(86, 1, 49, var(--backgroundOpacity)), rgba(3, 1, 84, var(--backgroundOpacity))), var(--background);
  background-size: cover;
  background-position: center;
  opacity: 0.7;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -10;
}
#cmp-game-play__content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  overflow: hidden;
  margin-top: 2rem;
}
@media only screen and (min-width: 1024px) {
  #cmp-game-play__content {
    padding: 0 2rem;
  }
}
#cmp-game-play__name-container {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 1rem;
  padding: 1rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgb(255, 255, 255);
  overflow: hidden;
  transition-duration: 1s;
  transition-property: all;
  height: 128px;
}
#cmp-game-play__name-container__name {
  font-size: 2rem;
}
#cmp-game-play__name-container__description {
  text-align: center;
  line-height: 1.5rem;
  margin-top: 1rem;
  transition-duration: 1s;
}
@media only screen and (max-width: 1023px) {
  #cmp-game-play__name-container__description {
    font-size: 0.85rem;
  }
}
@media only screen and (min-width: 1024px) {
  #cmp-game-play__name-container__description {
    font-size: 1rem;
  }
}
#cmp-game-play__name-container.reduced {
  height: 65px;
}
#cmp-game-play__upper-container {
  flex-direction: column;
  display: flex;
  flex: 1;
  justify-content: space-between;
  gap: 0.5rem;
}
#cmp-game-play__lower-container {
  display: flex;
  overflow: hidden;
  flex: 2;
}
@media only screen and (max-width: 1023px) {
  #cmp-game-play__lower-container {
    flex-direction: column;
    justify-content: center;
  }
}
@media only screen and (min-width: 1024px) {
  #cmp-game-play__lower-container {
    gap: 32px;
    align-items: center;
  }
}
#cmp-game-play__question-container {
  opacity: 0.75;
  padding: 25px 15px;
  text-align: center;
  color: rgb(255, 255, 255);
  font-size: 1.5rem;
  transition-duration: 1s;
  line-height: 2rem;
}
#cmp-game-play__question-container__title {
  background: rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.5rem;
  margin-top: -0.5rem;
  margin-bottom: 0.5rem;
  border-radius: 0.5rem;
}

#cmp-game-play__question-timer {
  color: rgb(255, 255, 255);
  font-size: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition-duration: 1s;
}
#cmp-game-play__question-timer .instruction-text {
  font-size: 0.75rem;
}
#cmp-game-play__question-timer #countdown-number {
  line-height: 5rem;
}

#flash-screen {
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 2rem;
  justify-content: center;
  align-items: stretch;
  z-index: -50;
  opacity: 0;
  transition-duration: 1s;
}
#flash-screen__play-score {
  display: flex;
  flex-direction: column;
  color: rgb(255, 255, 255);
  font-size: 1.5rem;
  line-height: 2rem;
  text-align: center;
  align-items: center;
  transform: scale(0);
  transition-duration: 1s;
  transition-delay: 5ms;
  transition-timing-function: ease-out;
  opacity: 0;
}
#flash-screen__play-score button {
  margin: 2rem 0;
  font-size: 1.5rem;
  padding: 1rem 2rem;
  font-weight: 700;
}
#flash-screen__score-container {
  width: 100%;
}
#flash-screen__score-container__scores {
  display: flex;
  justify-content: space-around;
}
#flash-screen__score-container .score {
  padding: 1rem;
  border-radius: 1rem;
  background: #bbf7d0;
  color: #166534;
  width: 33%;
}
#flash-screen__score-container .score .score-name, #flash-screen__score-container .score .score-value {
  width: 100%;
  display: block;
}
#flash-screen.active {
  z-index: 1000;
  opacity: 1;
}
#flash-screen.active #flash-screen__play-score {
  transform: scale(1);
}
#flash-screen.active.pass {
  background: #bbf7d0;
  transition-property: opacity;
}
#flash-screen.active.pass #flash-screen__play-score {
  font-size: 8rem;
  color: #15803d;
  opacity: 1;
  transition-property: font-size, opacity;
}
#flash-screen.active.fail {
  background: #fecdd3;
  transition-property: opacity;
}
#flash-screen.active.fail #flash-screen__play-score {
  font-size: 8rem;
  color: #be123c;
  opacity: 1;
  transition-property: font-size, opacity;
}
#flash-screen.active.level-up {
  background-color: rgba(0, 0, 0, 0.4);
  color: #14532d;
}
#flash-screen.active.level-up #flash-screen__play-score {
  opacity: 1;
  transition-property: opacity;
}
#flash-screen.active.fail {
  background: #fecdd3;
  color: #be123c;
}

.inter-game-results {
  margin: 0 -2rem 0 -2rem;
  padding: 8rem 2rem 2rem;
  background: linear-gradient(-45deg, #ffe4e6, #881337, #581c87, #3b82f6);
  background-size: 400% 400%;
  animation: gradient 30s ease infinite;
  transition-duration: 1s;
  position: relative;
  z-index: 50;
  min-height: 100%;
}
.inter-game-results.inactive {
  margin-top: 300% !important;
}

.final-game-results {
  padding-top: 2rem;
}

.final-game-results__group-container,
.inter-game-results__group-container {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-bottom: 2rem;
}
.final-game-results__play-container,
.inter-game-results__play-container {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
  padding: 0.5rem;
  display: flex;
  color: rgb(255, 255, 255);
  flex-wrap: wrap;
}
.final-game-results__player-name,
.inter-game-results__player-name {
  width: 50%;
  font-size: 0.85rem;
}
.final-game-results__play-result,
.inter-game-results__play-result {
  width: 50%;
  font-size: 0.85rem;
  display: flex;
  justify-content: flex-end;
}
.final-game-results__play-result .completed,
.inter-game-results__play-result .completed {
  color: #22c55e;
  padding: 0 0.25rem;
}
.final-game-results__play-result .failed,
.inter-game-results__play-result .failed {
  color: #f43f5e;
  padding: 0 0.25rem;
}
.final-game-results__play-action,
.inter-game-results__play-action {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  margin-top: 0.5rem;
}

form {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
@media only screen and (max-width: 767px) {
  form:not(.header-btn) {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  form div.inline {
    display: flex;
    flex-direction: row !important;
    align-items: flex-end;
    gap: 0.5rem;
  }
  form div.inline .radio-field {
    margin-bottom: 1.5rem;
  }
}
form p {
  font-size: 1rem;
  font-weight: 500;
}
form div.field {
  margin-bottom: 0.75rem;
  display: flex;
  width: 100%;
}
form div.field.field-section {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  justify-content: space-between;
}
form div.field.text-field {
  flex-direction: column;
}
form div.field.checkbox-field {
  align-items: flex-end;
}
form div.field.radio-field {
  align-items: flex-end;
  justify-content: space-evenly;
}
form div.field.radio-field label {
  margin-bottom: 0;
}
form div.field.right-buttons {
  justify-content: flex-end;
  gap: 1rem;
}
form div.field label {
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  flex: 1;
  color: rgb(255, 255, 255);
}
form div.field input {
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0.5rem 0.75rem;
  line-height: 1.25 !important;
  border-radius: 0.25rem !important;
  font-family: inherit;
  font-size: 100%;
  outline: none;
}
form div.field input:focus {
  box-shadow: 0 0 0 2px #fda4af !important;
}
form div.field input[type=text], form div.field input[type=password], form div.field input[type=email] {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
  width: 100%;
}
form div.field input[type=checkbox], form div.field input[type=radio] {
  padding: 0;
  box-shadow: none !important;
  margin: 0 0.25rem 0 0;
}
form .input-error {
  color: #881337;
  margin-top: 0.5rem;
}
form .form-text-link {
  justify-content: space-between;
  font-size: 0.85rem;
}
form .form-text-link a {
  color: rgb(255, 255, 255);
}
form .form-element-description.active {
  font-size: 0.85rem;
  text-align: center;
  margin-bottom: 1rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.25rem;
  color: white;
}

.settings-container {
  position: fixed;
  width: 100vw;
  height: 100%;
  z-index: 1000;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition-duration: 0.5s;
  transition-timing-function: ease-in-out;
}
.settings-container__menu {
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 75%;
  padding: 0 1rem;
}
.settings-container form {
  padding: 0;
  background: none;
}
.settings-container:not(.active) {
  margin-left: -100vw;
}
.settings-container__buttons {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.settings-container__top-buttons {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.25rem;
}
.settings-container__bottom-buttons {
  display: flex;
  flex-direction: column;
  padding-bottom: 2rem;
  gap: 0.25rem;
}
.settings-container__profile {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding: 1rem 0;
  color: rgb(255, 255, 255);
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
}
.settings-container__avatar ion-icon {
  color: rgb(255, 255, 255);
  font-size: 2.5rem;
  padding: 0;
}
.settings-container__username {
  flex: 1;
}

#splash-spinner {
  width: 100vw;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  transition-duration: 0.5s;
  display: flex;
}
#splash-spinner__spinner {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  border-top: 4px solid #FFF;
  border-right: 4px solid transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
#splash-spinner__spinner::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border-left: 4px solid #FF3D00;
  border-bottom: 4px solid transparent;
  animation: rotation 0.5s linear infinite reverse;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.app-logo {
  display: flex;
  overflow: hidden;
  margin: 2rem 0;
  transition: 1s opacity ease-out;
  width: 100%;
}
.app-logo__truth {
  color: rgb(255, 255, 255);
  font-family: "Whisper", cursive;
  font-weight: 400;
  font-style: normal;
  position: relative;
  transition-duration: 1s;
}
.app-logo__or {
  background: rgba(0, 0, 0, 0.8);
  color: rgb(255, 255, 255);
  font-weight: 700;
  text-transform: uppercase;
  z-index: 5f00;
  transition-duration: 800ms;
  position: relative;
}
.app-logo__dare {
  color: rgb(255, 255, 255);
  font-weight: 700;
  font-family: "Luckiest Guy", cursive;
  font-style: normal;
  background-image: linear-gradient(45deg, #A81613, #D86A13);
  background-size: 100%;
  background-repeat: repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
  z-index: 200;
  transition-duration: 1s;
  position: relative;
}
.app-logo__small {
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}
.app-logo__small .app-logo__truth {
  font-size: 2.5rem;
}
.app-logo__small .app-logo__or {
  padding: 0.25rem;
}
.app-logo__small .app-logo__dare {
  font-size: 1.75rem;
  margin-top: 0.5rem;
  margin-left: -0.25rem;
}
.app-logo:not(.app-logo__small) {
  flex-direction: column;
  align-items: center;
}
.app-logo:not(.app-logo__small) .app-logo__truth {
  font-size: 5rem;
  margin-left: -9rem;
}
.app-logo:not(.app-logo__small) .app-logo__or {
  font-size: 1rem;
  padding: 0.25rem 2rem;
  margin: -1.5rem 0 -0.5rem -0.5rem;
}
.app-logo:not(.app-logo__small) .app-logo__dare {
  font-size: 4rem;
  margin-bottom: -1rem;
}
.app-logo:not(.app-logo__small).animation-setup .app-logo__truth {
  margin-left: -40rem;
  opacity: 0;
}
.app-logo:not(.app-logo__small).animation-setup .app-logo__or {
  opacity: 0;
}
.app-logo:not(.app-logo__small).animation-setup .app-logo__dare {
  margin-right: -40rem !important;
  opacity: 0;
}
.app-logo:not(.app-logo__small).low-profile .app-logo__truth {
  margin-top: -0.5rem;
}
.app-logo:not(.app-logo__small).low-profile .app-logo__dare {
  margin-right: -7rem;
}
.app-logo:not(.app-logo__small):not(.low-profile) .app-logo__truth:before {
  content: "";
  background-image: url("/assets/img/icons/halo.svg");
  background-size: contain;
  height: 50px;
  width: 100px;
  position: absolute;
  background-repeat: no-repeat;
  right: 0;
}
.app-logo:not(.app-logo__small):not(.low-profile) .app-logo__dare {
  transform: rotate(-5deg);
  margin-right: -9rem;
}
.app-logo:not(.app-logo__small):not(.low-profile) .app-logo__dare:after {
  content: "";
  background-image: url("/assets/img/icons/devil-horns.svg");
  background-size: contain;
  height: 50px;
  width: 150px;
  position: absolute;
  background-repeat: no-repeat;
  right: -71px;
  top: -20px;
}

.image-attribution-container {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 2rem;
}
.image-attribution-container p {
  margin-bottom: 2rem;
  font-size: 0.85rem;
  line-height: 1.5rem;
  color: rgb(255, 255, 255);
}
.image-attribution-container__images {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.image-attribution-container__image {
  width: 24%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
}
.image-attribution-container__image.current {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 200;
  background-size: cover;
}
.image-attribution-container__image.current img {
  opacity: 0.7;
}
.image-attribution-container__image.current .image-attribution-container__image__overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  background-size: 400% 400%;
  animation: gradient 30s ease infinite;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
}
.image-attribution-container__image.current .image-attribution-container__image__overlay .close-btn {
  align-self: flex-end;
  margin: 1rem;
}
.image-attribution-container__image.current .image-attribution-container__image__navigation {
  display: flex;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}
.image-attribution-container__image.current .image-attribution-container__image__details {
  background: rgba(0, 0, 0, 0.3);
  color: rgb(255, 255, 255);
  padding: 1rem 1rem 2rem 1rem;
  font-size: 0.85rem;
  line-height: 1.5rem;
  text-align: center;
}
.image-attribution-container__image.current .image-attribution-container__image__details .source {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}
.image-attribution-container__image img {
  height: 100%;
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
}
.image-attribution-container__image__overlay {
  display: none;
}

.welcome-page {
  display: flex;
  height: 100%;
  margin-bottom: 2rem;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.welcome-page .auth-form {
  transition: 0.5s;
}
.welcome-page > *:not(.app-logo) {
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 1023px) {
  .welcome-page {
    flex-direction: column;
  }
}
@media only screen and (min-width: 1024px) {
  .welcome-page {
    align-items: center;
  }
}
.welcome-page .form-container {
  display: flex;
  justify-content: space-evenly;
  gap: 2rem;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .welcome-page .form-container {
    flex-direction: column;
  }
}
@media only screen and (min-width: 768px) {
  .welcome-page .form-container > * {
    flex: 1;
  }
}

.modal {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  z-index: 1000;
}
.modal.danger-modal {
  background: #7f1d1d;
}

.user-profile-forms section {
  display: flex;
  flex-direction: column;
}
.user-profile-forms form {
  margin-bottom: 2rem;
  margin-top: 1rem;
}
.user-profile-forms .right-buttons {
  margin: 0.75rem 0;
  justify-content: flex-end;
  display: flex;
  width: 100%;
}

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