.ml-1 {
  margin-left: 10px;
}

.ml-2 {
  margin-left: 20px;
}

.ml-3 {
  margin-left: 30px;
}

.ml-4 {
  margin-left: 40px;
}

.ml-5 {
  margin-left: 50px;
}

.mr-1 {
  margin-right: 10px;
}

.mr-2 {
  margin-right: 20px;
}

.mr-3 {
  margin-right: 30px;
}

.mr-4 {
  margin-right: 40px;
}

.mr-5 {
  margin-right: 50px;
}

.mb-1 {
  margin-bottom: 10px;
}

.mb-2 {
  margin-bottom: 20px !important;
}

.mb-3 {
  margin-bottom: 30px;
}

.mb-4 {
  margin-bottom: 40px;
}

.mb-5 {
  margin-bottom: 50px;
}

.mt-1 {
  margin-top: 10px;
}

.mt-2 {
  margin-top: 20px !important;
}

.mt-3 {
  margin-top: 30px;
}

.mt-4 {
  margin-top: 40px;
}

.mt-5 {
  margin-top: 50px;
}

.m-0 {
  margin: 0;
}

.p-0 {
  padding: 0;
}

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

.flex-vertical {
  display: flex;
  flex-direction: column;
}

.flex {
  display: flex;
}

.align-center {
  align-items: center;
}

.f100 {
  font-weight: 100;
}

.f200 {
  font-weight: 200;
}

.f300 {
  font-weight: 300;
}

.f400 {
  font-weight: 400;
}

.f500 {
  font-weight: 500;
}

.f600 {
  font-weight: 600;
}

.f700 {
  font-weight: 700;
}

.text-stick {
  font-family: "Lexend", sans-serif;
  text-transform: uppercase;
  font-weight: 300;
  line-height: 2em;
  word-spacing: 10px;
}

.text-playwrite {
  font-family: "Playwrite CL", sans-serif;
  font-weight: 200;
  word-spacing: 10px;
}

.button {
  text-decoration: underline;
  margin: 16px 0;
}

#landing .landing-tip {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 50px;
}
#landing .landing-tip img {
  width: 50%;
}
#landing .landing-tip .info {
  padding: 30px;
}
#landing .landing-tip:nth-child(2n) {
  flex-direction: row-reverse;
}

#story-style {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
}
#story-style li {
  border-left: 2px solid #ededed;
  padding: 0 12px;
  cursor: pointer;
}
#story-style li:first-child {
  border: 0;
  padding-left: 0;
}
#story-style li:hover, #story-style li.selected {
  text-decoration: underline;
}
#story-style li:hover span, #story-style li.selected span {
  font-weight: 300;
}
#story-style li span {
  border: 1px solid #cccccc;
  height: 36px;
  width: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-weight: 200;
}

.story-summary {
  list-style: none;
  margin: 50px 0;
}
.story-summary h3 {
  font-size: 28px;
}
.story-summary .read-more, .story-summary a {
  color: #423d34;
}
.story-summary .read-more {
  display: flex;
  align-items: center;
}

.story-questions {
  padding-left: 20px;
  list-style: auto;
  color: #423d34;
}
.story-questions li {
  line-height: 2em;
}

#story-resize {
  position: fixed;
  bottom: 10px;
  right: 10px;
  display: flex;
  gap: 20px;
}
#story-resize div {
  background-color: white;
  padding: 15px;
  border-radius: 100px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.microphone p {
  text-align: justify;
  margin: 0 0 70px;
}

#open-body-microphone {
  border: 0;
  background: transparent;
  position: relative;
}
#open-body-microphone i {
  font-size: 60px;
  padding: 20px;
  border: solid 6px rgb(50, 51, 53);
  color: rgb(50, 51, 53);
  border-radius: 100px;
  height: 70px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
#open-body-microphone.listening i {
  background: linear-gradient(45deg, #4A90E2, #B388EB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-color: #B388EB;
}
#open-body-microphone.listening .ray {
  display: block;
}

.ray {
  display: none;
}

.ray1 {
  height: 10px;
  width: 0;
  background: #588fe3;
  opacity: 0;
  border-radius: 100px;
  animation: microphone-ray-animation 1s linear infinite;
  transform: rotate(45deg);
  transform-origin: left center;
  position: absolute;
  top: 110px;
  left: 110px;
}
@keyframes microphone-ray-animation {
  0% {
    opacity: 0;
    width: 0;
  }
  30% {
    opacity: 1;
    width: 15px;
  }
  60% {
    opacity: 0;
    width: 30px;
  }
  100% {
    opacity: 0;
    width: 0;
  }
}

.ray2 {
  height: 10px;
  width: 0;
  background: #a989ea;
  opacity: 0;
  border-radius: 100px;
  animation: microphone-ray-animation 1.3s linear infinite;
  transform: rotate(-135deg);
  transform-origin: left center;
  position: absolute;
  top: 10px;
  left: 20px;
}
@keyframes microphone-ray-animation {
  0% {
    opacity: 0;
    width: 0;
  }
  30% {
    opacity: 1;
    width: 15px;
  }
  60% {
    opacity: 0;
    width: 30px;
  }
  100% {
    opacity: 0;
    width: 0;
  }
}

.ray3 {
  height: 10px;
  width: 0;
  background: #a989ea;
  opacity: 0;
  border-radius: 100px;
  animation: microphone-ray-animation 1s linear infinite;
  transform: rotate(-45deg);
  transform-origin: left center;
  position: absolute;
  top: 10px;
  left: 110px;
}
@keyframes microphone-ray-animation {
  0% {
    opacity: 0;
    width: 0;
  }
  30% {
    opacity: 1;
    width: 15px;
  }
  60% {
    opacity: 0;
    width: 30px;
  }
  100% {
    opacity: 0;
    width: 0;
  }
}

.ray4 {
  height: 10px;
  width: 0;
  background: #798ce6;
  opacity: 0;
  border-radius: 100px;
  animation: microphone-ray-animation 1.2s linear infinite;
  transform: rotate(135deg);
  transform-origin: left center;
  position: absolute;
  top: 110px;
  left: 20px;
}
@keyframes microphone-ray-animation {
  0% {
    opacity: 0;
    width: 0;
  }
  30% {
    opacity: 1;
    width: 15px;
  }
  60% {
    opacity: 0;
    width: 30px;
  }
  100% {
    opacity: 0;
    width: 0;
  }
}

.ray5 {
  height: 7px;
  width: 0;
  background: #a489ea;
  opacity: 0;
  border-radius: 100px;
  animation: microphone-ray-animation 1.5s linear infinite;
  transform: rotate(-90deg);
  transform-origin: left center;
  position: absolute;
  top: -8px;
  left: 67px;
}
@keyframes microphone-ray-animation {
  0% {
    opacity: 0;
    width: 0;
  }
  30% {
    opacity: 1;
    width: 10px;
  }
  60% {
    opacity: 0;
    width: 20px;
  }
  100% {
    opacity: 0;
    width: 0;
  }
}

.ray6 {
  height: 7px;
  width: 0;
  background: #4c90e2;
  opacity: 0;
  border-radius: 100px;
  animation: microphone-ray-animation 1s linear infinite;
  transform: rotate(90deg);
  transform-origin: left center;
  position: absolute;
  top: 125px;
  left: 67px;
}
@keyframes microphone-ray-animation {
  0% {
    opacity: 0;
    width: 0;
  }
  30% {
    opacity: 1;
    width: 10px;
  }
  60% {
    opacity: 0;
    width: 20px;
  }
  100% {
    opacity: 0;
    width: 0;
  }
}

.ray7 {
  height: 7px;
  width: 0;
  background: #808ce7;
  opacity: 0;
  border-radius: 100px;
  animation: microphone-ray-animation 1.8s linear infinite;
  transform: rotate(180deg);
  transform-origin: left center;
  position: absolute;
  top: 63px;
  left: 2px;
}
@keyframes microphone-ray-animation {
  0% {
    opacity: 0;
    width: 0;
  }
  30% {
    opacity: 1;
    width: 10px;
  }
  60% {
    opacity: 0;
    width: 20px;
  }
  100% {
    opacity: 0;
    width: 0;
  }
}

.ray8 {
  height: 7px;
  width: 0;
  background: #7b8ce6;
  opacity: 0;
  border-radius: 100px;
  animation: microphone-ray-animation 1.3s linear infinite;
  transform: rotate(0deg);
  transform-origin: left center;
  position: absolute;
  top: 63px;
  left: 133px;
}
@keyframes microphone-ray-animation {
  0% {
    opacity: 0;
    width: 0;
  }
  30% {
    opacity: 1;
    width: 10px;
  }
  60% {
    opacity: 0;
    width: 20px;
  }
  100% {
    opacity: 0;
    width: 0;
  }
}

.character-summary {
  list-style: none;
  margin: 50px 0;
}
.character-summary h3 {
  font-size: 28px;
}
.character-summary .read-more, .character-summary a {
  color: #423d34;
}
.character-summary .read-more {
  display: flex;
  align-items: center;
}

.character-card a {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 50px;
}
.character-card a .character-img {
  width: 25%;
  object-fit: cover;
}
.character-card a .info {
  padding: 30px;
}
.character-card a .stories .story img {
  height: 100px;
  border-radius: 20px;
}

.character-fav {
  display: inline-block;
  cursor: pointer;
}
.character-fav.it-is .it-is-not {
  display: none;
}
.character-fav.it-is-not .it-is {
  display: none;
}

* {
  font-family: "Lexend", cursive;
}

body {
  background-color: #fdf7ed;
  font-size: 19px;
  color: #423d34;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #423d34;
}

#header-wrapper {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  width: 100%;
  position: sticky;
  top: 0;
}

#header {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 50px;
  padding: 5px 20px;
  align-items: center;
  background-color: #fdf7ed;
}
#header #logo {
  margin-left: 30px;
  height: 70%;
  display: flex;
  align-items: end;
  font-size: 20px;
  color: #423d34;
}
#header #logo img {
  height: 100%;
  margin-right: 15px;
}
#header #header-bar {
  height: 100%;
  display: flex;
  flex-direction: row;
  gap: 20px;
}
#header #header-bar ul {
  display: flex;
  align-items: center;
  gap: 12px;
}
#header #header-bar ul li {
  list-style: none;
  padding-left: 12px;
  border-left: 1px solid #ccc;
}
#header #header-bar ul li:first-child {
  border-left: none;
  padding-left: 0;
}
#header #header-bar #user-icon {
  display: flex;
  align-items: center;
}
#header #header-bar #user-icon img {
  margin-right: 30px;
  border-radius: 30px;
  height: 30px;
  width: 30px;
}
#header .g_id_signin {
  width: auto;
  margin-right: 30px;
}
#header .g_id_signin * {
  border: 0 !important;
}

#main-column {
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 30px;
}

.horizontal-line {
  width: 100%;
  border: 1px solid #ededed;
  margin: 50px 0;
}

h1, h2, h3, h4 {
  text-transform: capitalize;
  margin: 0;
}
h1, h1 a, h2, h2 a, h3, h3 a, h4, h4 a {
  color: #423d34;
}

h1 {
  padding: 0 10px;
  margin-bottom: 40px;
}

h2 {
  font-size: 2em;
  margin-bottom: 30px;
}

h3 {
  font-size: 1.5em;
  margin-bottom: 20px;
  font-weight: 400;
}

h4 {
  font-size: 1em;
  margin: 5px;
  font-weight: 400;
}

.cover {
  height: 200px;
  border-radius: 20px;
}

.small-cover {
  height: 95px;
  border-radius: 10px;
}

@media (min-width: 1400px) {
  .block, .white-block, .character-card {
    box-shadow: 0 5px 15px -4px rgba(81, 81, 81, 0.6);
  }
}
.white-block, .character-card {
  background-color: white;
}

a.create-new i {
  font-size: 25px;
  color: rgb(20, 43, 87);
}

#block-adventure {
  display: flex;
  flex-direction: row;
  height: 1000px;
}
#block-adventure img {
  width: 55%;
  height: 100%;
  object-fit: cover;
}
#block-adventure .adventure {
  justify-items: end;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#block-adventure .adventure h2 {
  padding: 0 70px 70px 70px;
  background-color: white;
  margin-left: -100px;
}
#block-adventure .adventure p {
  padding: 40px 100px;
  font-size: 18px;
  color: rgb(50, 51, 53);
}
#block-adventure .adventure a {
  background-color: #142b57;
  padding: 15px 30px;
  border-radius: 5px;
  color: white;
  margin: 0 auto;
  text-decoration: none;
}

.character-header .character-more {
  display: flex;
  align-items: center;
}
.character-header .character-more .character-info {
  margin-left: 50px;
}
.character-header .character-more .character-info a {
  font-size: 1em;
  color: rgb(50, 51, 53);
  margin-bottom: 10px;
  display: block;
}
.character-header .character-more .character-info h3 {
  font-size: 1em;
}
.character-header .character-more .character-info .character-info-description {
  font-size: 0.9em;
}

.content-block {
  padding: 60px 20px;
}

#loading-list {
  list-style: none;
  overflow: hidden;
  position: relative;
  padding-top: 30%;
  font-size: 1.5em;
}
#loading-list li {
  list-style: none;
  margin: 0;
  padding: 2px;
  font-size: 1em;
  display: flex;
  color: #696969;
}
#loading-list li i {
  opacity: 0;
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#loading-list li.active {
  font-weight: bold;
  color: #000;
}
#loading-list li.active i {
  opacity: 1;
}
#loading-list li.done {
  color: #423d34;
}
#loading-list li.done i {
  opacity: 0.5;
}

#open-body-form textarea {
  display: none;
}

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