/* ========= INFORMATION ============================
	- document:  WP Coder!
	- author:    Dmytro Lobov 
	- url:       https://wow-estore.com/
==================================================== */
*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  --lightGrey: #fcfcfc;
  --pink: #b52b65;
  --darkPurple: #4f3961;
  --darkGrey: #585858;
  --darkerGrey: #6d6d6d;
  --yellow: #ffe75e;
  --white: #fff;
  --familyRoboto: "Roboto", sans-serif;
  --familyRobotoSlab: "Roboto Slab", sans-serif;
  --bold: bold;
  overflow-x: initial !important;
}

body {
  margin: 0;
  min-width: 100%;
  min-height: 100%;
  background-color: white;
  font-family: var(--familyRoboto);
  line-height: 1.6;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

a {
  text-decoration: none;
  outline-color: var(--yellow);
}

/* =========================================================
   HEADER
   ========================================================= */

.header {
  padding: 1rem;
  background-color: var(--lightGrey);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
}

.nav-toggle {
  display: block;
  width: 24px;
  height: 24px;
  cursor: pointer;
  position: relative;
  border: none;
  background-color: transparent;
}

.hamburger {
  top: 10px;
  left: 0;
  display: block;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  border-radius: 3px;
  background-color: var(--darkPurple);
}

.hamburger::before {
  top: -10px;
  left: 0;
}

.hamburger::after {
  left: 0;
  bottom: -12px;
}

[aria-expanded="true"] .hamburger,
[aria-expanded="true"] .hamburger::before,
[aria-expanded="true"] .hamburger::after {
  transition: all 0.3s ease-in-out;
}

[aria-expanded="true"] .hamburger::before {
  opacity: 0;
  transform: rotate(0deg) scale(0.2);
}

[aria-expanded="false"] .hamburger::before {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

[aria-expanded="true"] .hamburger {
  transform: rotate(-45deg);
}

[aria-expanded="true"] .hamburger::after {
  transform: rotate(90deg) translateX(-12px);
}

[aria-expanded="false"] .hamburger,
[aria-expanded="false"] .hamburger::before,
[aria-expanded="false"] .hamburger::after {
  transition: all 0.3s ease-in-out;
}

.nav {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  top: -80px;
  left: -1rem;
  width: 50vw;
  height: 420px;
  transition: all 0.3s ease-in-out;
  transition-property: opacity, visibility, transform, background-color,
    box-shadow;
  background-color: #f4eeff;
  transform: translateX(-200%);
}

.logo {
  z-index: 2;
}

.nav-list {
  margin-top: 150px;
}

.nav.is-open {
  width: 70vw;
  height: 420px;
  top: -80px;
  margin-left: 0;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  background-color: #f4eeff;
  box-shadow: 0 6px 20px rgba(96, 109, 175, 0.2);
}

.nav.is-open .nav-link {
  margin-top: 1rem;
  margin-left: 1rem;
  font-size: 1.1rem;
}

.nav-link {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  margin-top: 1rem;
  color: var(--darkGrey);
  font-size: 1.1rem;
}

.nav-link-cta,
.nav-link:hover {
  color: var(--pink);
}

@media (min-width: 46em) {
  .nav-toggle {
    display: none;
    pointer-events: none;
  }

  .nav-list {
    margin-top: 0;
    display: flex;
  }

  .nav {
    width: auto;
    height: auto;
    position: static;
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    background-color: initial;
  }
}

/* =========================================================
   INTRODUCTION
   Image ABOVE text, text centered
   ========================================================= */

.intro {
  margin: 2rem auto 0;
  padding: 0 1rem;
  max-width: 1100px;

  /* Important: image and text are stacked vertically */
  display: flex;
  flex-direction: column;
  align-items: center;

  /* Center ONLY this section */
  text-align: center;
}

/* Image at the top of the introduction */
.intro__illustration1 {
  display: block;
  width: 100%;
  max-width: 650px;
  height: auto;
  margin: 0 auto 1.2rem auto;
  object-fit: contain;
}

/* The first text block */
.intro__subtitle {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  font-size: 1rem;
  color: var(--darkGrey);
  line-height: 1.6;
}

/* Keep links/buttons if used in the intro */
.intro .button {
  margin-left: auto;
  margin-right: auto;
}

.intro__title {
  margin: 0;
  font-family: var(--familyRobotoSlab);
  font-size: 2.4rem;
  font-weight: normal;
  line-height: 1.3;
  color: var(--darkPurple);
}

/* Remove unnecessary empty row spacing */
.intro .row {
  display: none;
}

@media (min-width: 32em) {
  .intro {
    margin-top: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .intro__illustration1 {
    max-width: 700px;
    margin-bottom: 1rem;
  }

  .intro__subtitle {
    font-size: 1.05rem;
  }
}

@media (min-width: 60em) {
  .intro {
    width: 90%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  .intro__illustration1 {
    max-width: 780px;
    margin-bottom: 0.8rem;
  }

  .intro__subtitle {
    max-width: 1050px;
    font-size: 1.15rem;
    text-align: center;
  }

  .intro__title {
    font-size: 4rem;
  }

  .button {
    font-size: 1.1rem;
  }
}

/* =========================================================
   BUTTONS
   ========================================================= */

.button {
  display: inline-block;
  padding: 0.7em 1.2em;
  font-size: 1rem;
  background-color: var(--pink);
  color: var(--white);
  border-radius: 3px;
}

.button:hover {
  background-color: #a5285c;
}

.button-53 {
  background-color: #3DD1E7;
  border: 0 solid #E5E7EB;
  box-sizing: border-box;
  color: #000000;
  display: flex;
  font-family: ui-sans-serif, system-ui, -apple-system, system-ui,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  justify-content: center;
  line-height: 1.75rem;
  padding: .75rem 1.65rem;
  position: relative;
  text-align: center;
  text-decoration: none;
  width: 100%;
  max-width: 460px;
  cursor: pointer;
  transform: rotate(-2deg);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-53:focus {
  outline: 0;
}

.button-53:after {
  content: '';
  position: absolute;
  border: 1px solid #000000;
  bottom: 4px;
  left: 4px;
  width: calc(100% - 1px);
  height: calc(100% - 1px);
}

.button-53:hover:after {
  bottom: 2px;
  left: 2px;
}

.button4 {
  background-color: #FFD700;
  color: black;
}

.button-inrg {
  padding: 10px 40px;
  color: white;
  background: #bf2048;
  border-radius: 4px;
  border: none;
}

/* =========================================================
   FEATURES
   ========================================================= */

.features {
  padding: 0 1em;
  margin-top: 2.5rem;
  text-align: center;
}

.features__list li {
  padding: 1rem;
}

.features p {
  font-size: 0.9rem;
}

.features__list svg {
  display: block;
  margin: auto;
  max-width: 100%;
  margin-bottom: 1.5rem;
}

.section__title {
  color: var(--darkPurple);
  font-weight: var(--bold);
  font-size: 1.85rem;
}

@media (min-width: 32em) {
  .features__list {
    display: flex;
    justify-content: space-around;
  }

  .features__list li {
    flex-basis: 350px;
  }
}

@media (min-width: 60em) {
  .features {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .features p {
    font-size: 1.3rem;
    color: black;
  }

  .section__title {
    font-size: 2.25rem;
  }
}

/* =========================================================
   GROW
   ========================================================= */

.grow {
  padding: 0 1em;
  position: relative;
}

.grow svg {
  width: 100%;
}

.grow p {
  font-size: 0.9rem;
}

.grow__title2 {
  text-align: center;
}

.blob {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

@media (min-width: 32em) {
  .grow {
    margin-top: 5rem;
    display: grid;
    grid-template-columns: minmax(200px, 550px) 40%;
    grid-template-areas:
      ". img"
      "title img"
      "p img"
      ". img";
  }

  .grow__title {
    grid-area: title;
  }

  .grow__title2 {
    grid-area: title;
    text-align: center;
  }

  .grow p {
    grid-area: p;
    margin: 0;
  }

  .grow > svg:first-of-type {
    grid-area: img;
  }

  .blob {
    top: -50px;
  }
}

@media (min-width: 60em) {
  .grow {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .grow p {
    font-size: 1.1rem;
  }
}

/* =========================================================
   FEEDBACK
   ========================================================= */

.get-feedback {
  padding: 0 1em;
}

.get-feedback p {
  font-size: 0.9rem;
}

.get-feedback svg {
  width: 100%;
}

@media (min-width: 32em) {
  .get-feedback {
    display: grid;
    grid-gap: 24px;
    grid-template-columns: 50% minmax(200px, 550px);
    grid-template-areas:
      "img ."
      "img title"
      "img p"
      "img .";
  }

  .get-feedback__title {
    grid-area: title;
    margin-bottom: 0;
  }

  .get-feedback svg {
    grid-area: img;
  }

  .get-feedback p {
    grid-area: p;
    margin: 0;
  }
}

@media (min-width: 60em) {
  .get-feedback {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .get-feedback p {
    font-size: 1.1rem;
  }
}

/* =========================================================
   LEARNING
   ========================================================= */

.learning {
  padding: 0 1em;
}

.learning p {
  font-size: 0.9rem;
}

.learning svg {
  width: 100%;
}

@media (min-width: 32em) {
  .learning {
    display: grid;
    grid-template-columns: minmax(200px, 450px) 50%;
    grid-template-areas:
      ". img"
      "title img"
      "p img"
      ". img";
  }

  .learning__title {
    grid-area: title;
  }

  .learning p {
    grid-area: p;
    margin: 0;
  }

  .learning svg {
    grid-area: img;
  }
}

@media (min-width: 60em) {
  .learning {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .learning p {
    font-size: 1.1rem;
  }
}

/* =========================================================
   GET STARTED
   ========================================================= */

.get-started li {
  width: 250px;
  height: 250px;
  padding: 2rem;
  margin: 1.5rem auto;
  background-image: url(https://res.cloudinary.com/alexandracaulea/image/upload/v1583497341/circle-shape_fbgxd9.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.get-started strong {
  font-size: 2.2rem;
}

.get-started p {
  margin: 0;
  margin-top: 5px;
  font-size: 0.9rem;
}

@media (min-width: 45em) {
  .get-started {
    margin-top: 100px;
  }

  .get-started ul {
    display: flex;
    justify-content: space-around;
  }

  .get-started li {
    width: 320px;
    height: 320px;
    background-size: initial;
  }
}

@media (min-width: 60em) {
  .get-started {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .get-started p {
    font-size: 1.1rem;
  }
}

/* =========================================================
   START LEARNING / VIDEO
   ========================================================= */

.start-learning {
  position: relative;
  margin-top: 5rem;
  margin-bottom: 5rem;
  text-align: center;
}

.start-learning .button {
  margin: 2rem 0;
}

.video-learning {
  width: 80vw;
  margin: 0 auto;
  max-width: 800px;
  position: relative;
  background-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-size: 0;
  border-radius: 3px;
}

.video-learning:fullscreen {
  max-width: none;
  width: 100%;
}

.video-learning:-webkit-full-screen {
  max-width: none;
  width: 100%;
}

.video {
  width: 100%;
  object-fit: cover;
  cursor: pointer;
}

.video-button {
  max-width: 50px;
  padding: 0.5rem;
  background: none;
  border: 0;
  line-height: 1;
  color: var(--white);
  text-align: center;
  cursor: pointer;
}

.video-button:hover {
  background-color: var(--pink);
}

.video-slider {
  width: 10px;
  height: 30px;
}

.video-controls {
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

.video-learning .progress {
  height: 10px;
}

.video-controls > * {
  flex: 1;
}

.progress {
  display: flex;
  flex-basis: 100%;
  height: 5px;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: ew-resize;
}

.progress-fill {
  width: 0%;
  background-color: var(--pink);
  flex: 0;
  flex-basis: 0%;
}

.blob-learning {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 500px;
}

@media (min-width: 32em) {
  .blob-learning {
    top: -100px;
    height: 800px;
  }
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  padding: 1em;
  margin: 2rem auto 0;
  background-color: #f8f8f8;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(50px, 100px));
}

.footer-title {
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--darkerGrey);
  letter-spacing: 1px;
}

.footer-link {
  font-size: 0.85rem;
  font-weight: var(--bold);
  color: inherit;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-newsletter {
  margin: 2rem auto;
  text-align: center;
}

.footer-newsletter p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--darkGrey);
}

.footer-email {
  display: block;
  width: 100%;
  padding: 0.35rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.6;
  box-shadow: none;
  color: var(--darkGrey);
  background-color: var(--white);
  border: 2px solid rgba(79, 57, 97, 0.141);
  border-radius: 3px;
  outline-color: var(--yellow);
  appearance: none;
}

.form-error-message {
  display: block;
  text-align: left;
  color: #cc3648;
  visibility: hidden;
}

.form-error .footer-email {
  border-color: #cc3648;
}

.form-error .form-error-message {
  visibility: visible;
}

.button-email {
  margin-top: 1rem;
  border: none;
  width: 100%;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3),
    0 2px 4px 0 rgba(14, 30, 37, 0.12);
  appearance: none;
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-social a {
  display: inline-block;
  padding: 0.5rem;
}

.footer-social svg {
  vertical-align: middle;
}

.copyright {
  flex-basis: 100%;
  text-align: center;
  color: var(--darkerGrey);
}

.dotted-link {
  color: #a94e76;
  border-bottom: 1px dashed #a94e76;
}

@media (min-width: 32em) {
  .footer-newsletter {
    text-align: left;
  }

  .footer-form {
    display: flex;
    position: relative;
  }

  .footer-email {
    width: auto;
  }

  .button-email {
    width: auto;
    margin: 0 0 0 1rem;
  }

  .form-error-message {
    position: absolute;
    top: 44px;
  }

  .footer-social {
    margin-top: 2rem;
  }
}

@media (min-width: 45em) {
  .footer {
    padding: 2em 1em;
  }

  .footer-container {
    display: grid;
    grid-gap: 20px;
    grid-template-areas:
      "nav newsletter"
      "social-links social-links"
      "copyright copyright";
  }

  .footer-nav {
    grid-area: nav;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
  }

  .footer-title {
    margin-top: 0;
  }

  .footer-newsletter {
    margin: 0;
    grid-area: newsletter;
  }

  .footer-social {
    grid-area: social-links;
  }

  .copyright {
    grid-area: copyright;
    margin: 0;
  }
}

@media (min-width: 60em) {
  .footer-container {
    max-width: 80%;
    margin: auto;
  }
}

/* =========================================================
   ARROWS
   ========================================================= */

.arrow-1,
.arrow-2 {
  margin-top: 20px;
  height: 90px;
  background-image: url(https://res.cloudinary.com/alexandracaulea/image/upload/v1583497341/line-1_dt5tua.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.arrow-2 {
  margin-top: -20px;
}

@media (min-width: 32em) {
  .arrow-1,
  .arrow-2 {
    height: 184px;
    background-repeat: no-repeat;
    background-position: center;
  }

  .arrow-1 {
    margin-top: 70px;
    background-image: url(https://res.cloudinary.com/alexandracaulea/image/upload/v1583497341/arrow-1-sm_kkfsxp.svg);
  }

  .arrow-2 {
    background-image: url(https://res.cloudinary.com/alexandracaulea/image/upload/v1583497341/arrow-2-sm_xtrpm5.svg);
  }
}

@media (min-width: 60em) {
  .arrow-1,
  .arrow-2 {
    height: 283px;
  }

  .arrow-1 {
    margin-top: 5px;
    background-image: url(https://res.cloudinary.com/alexandracaulea/image/upload/v1583497341/arrow-1-lg_jhrqpv.svg);
  }

  .arrow-2 {
    background-image: url(https://res.cloudinary.com/alexandracaulea/image/upload/v1583497341/arrow-2-lg_cjykcq.svg);
  }
}

/* =========================================================
   VISUALLY HIDDEN
   ========================================================= */

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/* =========================================================
   PARTNERS / SPONSORS
   ========================================================= */

.spk10 {
  margin-left: 5%;
  margin-right: 5%;
}

.logo-sus {
  text-align: center;
  max-height: 60px;
  padding-right: 10px;
}

.logo-sus2 {
  text-align: center;
  max-height: 60px;
  padding-right: 30px;
  float: right;
}

/* =========================================================
   COLUMNS
   ========================================================= */

.column {
  float: left;
  width: 50%;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

.inrg {
  text-align: center;
}

.column-pub {
  float: left;
  width: 25%;
  text-align: center;
  padding: 10px 30px;
}

.row-pub:after {
  content: "";
  display: table;
  clear: both;
}

enfagenda {
  padding-left: 25px;
  padding-right: 25px;
}

/* =========================================================
   TABS
   ========================================================= */

@-webkit-keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@-webkit-keyframes height {
  from { height: 100%; }
  to { height: 0; }
}

@keyframes height {
  from { height: 100%; }
  to { height: 0; }
}

@-webkit-keyframes height-reverse {
  from { height: 0; }
  to { height: 100%; }
}

@keyframes height-reverse {
  from { height: 0; }
  to { height: 100%; }
}

.wrapper {
  width: 90%;
  margin: 0 auto;
}

input[type=checkbox],
input[type=radio] {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  clip: rect(0 0 0 0);
  visibility: hidden;
  opacity: 0;
  z-index: -1;
}

input[type=checkbox][id=test1]:checked ~ .tabs .tab label[for=test1],
input[type=radio][id=test1]:checked ~ .tabs .tab label[for=test1],
input[type=checkbox][id=test2]:checked ~ .tabs .tab label[for=test2],
input[type=radio][id=test2]:checked ~ .tabs .tab label[for=test2],
input[type=checkbox][id=test4]:checked ~ .tabs .tab label[for=test4],
input[type=radio][id=test4]:checked ~ .tabs .tab label[for=test4] {
  color: #F9D83D;
  cursor: default;
}

input[type=checkbox][id=test1]:checked ~ .tabs .tab label[for=test1]::after,
input[type=radio][id=test1]:checked ~ .tabs .tab label[for=test1]::after,
input[type=checkbox][id=test2]:checked ~ .tabs .tab label[for=test2]::after,
input[type=radio][id=test2]:checked ~ .tabs .tab label[for=test2]::after,
input[type=checkbox][id=test4]:checked ~ .tabs .tab label[for=test4]::after,
input[type=radio][id=test4]:checked ~ .tabs .tab label[for=test4]::after {
  opacity: 1;
}

input[type=checkbox][id=test1]:checked ~ .panels #panel1,
input[type=radio][id=test1]:checked ~ .panels #panel1,
input[type=checkbox][id=test2]:checked ~ .panels #panel2,
input[type=radio][id=test2]:checked ~ .panels #panel2,
input[type=checkbox][id=test4]:checked ~ .panels #panel4,
input[type=radio][id=test4]:checked ~ .panels #panel4 {
  display: block;
}

.tab-panels .tabs {
  display: flex;
}

.tab-panels .tabs .tab {
  flex: 1;
  flex-grow: 1;
  position: relative;
  width: 60%;
  margin-top: 2.5rem;
  margin-right: 0;
  text-align: center;
  color: #AA1E36;
  background-color: transparent;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s ease;
}

.tab-panels .tabs .tab label {
  user-select: none;
  height: 100%;
  padding: 0 0.75rem;
  border: none;
  cursor: pointer;
}

.tab-panels .tabs .tab label .content .text {
  margin-bottom: 1.563rem;
  font-family: "Ubuntu", "Myriad Pro", sans-serif;
  font-size: 2.2rem;
}

.tab-panels .tabs .tab label::after {
  content: "";
  position: absolute;
  bottom: -0.33rem;
  left: 0;
  display: block;
  width: 100%;
  height: 3px;
  opacity: 0;
  background-color: #f0b53b;
  transition: opacity 0.3s ease-in-out;
}

.tab-panels .tabs .tab:hover {
  color: #f0b53b;
}

.tab-panels .separator {
  width: 100%;
  height: 3px;
  margin-bottom: 2.5rem;
  background-color: #363e4e;
}

.tab-panels .panels {
  border: none;
}

.tab-panels .panels .tab-panel {
  display: none;
  border: none;
}

.tab-panels .panels .tab-panel .content {
  font-family: "Ubuntu", "Myriad Pro", sans-serif;
  color: #707a89;
  animation: fade 0.3s linear;
}

/* =========================================================
   MODAL
   ========================================================= */

#modal1:checked ~ .modal-component .modal {
  visibility: visible;
}

#modal1:checked ~ .modal-component .modal .modal-overlay {
  opacity: 1;
}

#modal1:checked ~ .modal-component .modal .modal-inner {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

#modal1:checked ~ .modal-component .modal .modal-inner .modal-body-content {
  height: 100%;
  overflow: auto;
}

.modal-component {
  display: block;
  min-height: inherit;
  width: 100%;
  font-family: "Ubuntu", "Myriad Pro", sans-serif;
  overflow: hidden;
}

.modal-component .modal {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: inherit;
  min-height: 100vh;
  visibility: hidden;
  z-index: 1000;
}

.modal-component .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.82);
  opacity: 0;
  transition: all ease 0.5s;
  z-index: -1;
}

.modal-component .modal-container {
  max-width: inherit;
  width: 100%;
  padding: 2rem;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 1001;
}

.modal-component .modal-dialog {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
}

.modal-component .modal-inner {
  min-width: 100px;
  margin: auto;
  padding: 3.125rem 6.25rem;
  border-radius: 2px;
  color: #e5f0f6;
  transform: translate3d(0, 0, 0) scale(0.8);
  transition: all cubic-bezier(0.83, -0.35, 0.15, 1.48) 0.5s;
  background-color: #1d2128;
}

.modal-component .modal-inner .close-modal-button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -1.875rem;
  right: -1.875rem;
  width: 20px;
  height: 20px;
  font-size: 1.875rem;
  color: #323b48;
  padding: 1.25rem;
  border-radius: 50%;
  text-align: center;
  background-color: #171b21;
  transition: background-color 0.3s ease-in-out;
  cursor: pointer;
  overflow: hidden;
  z-index: 1001;
}

.modal-component .modal-inner .close-modal-button:hover,
.modal-component .modal-inner .close-modal-button:focus,
.modal-component .modal-inner .close-modal-button:active {
  background-color: #212730;
}

.modal-component .modal-inner .modal-header {
  text-transform: uppercase;
}

.modal-component .modal-inner .modal-header-content .modal-title {
  color: #f9bc3d;
}

.modal-component .modal-inner .modal-body-content {
  height: 0;
  text-align: justify;
  transition: height 0.3s ease-in-out;
  overflow: hidden;
}

.modal-component .modal-inner .modal-footer-content {
  color: red;
}

/* =========================================================
   HIGHLIGHTS
   ========================================================= */

.highlight-yellow {
  border-radius: 1em 0 1em 0;
  background-image: linear-gradient(
    -100deg,
    rgba(255, 224, 0, 0.2),
    rgba(255, 224, 0, 0.7) 95%,
    rgba(255, 224, 0, 0.1)
  );
}

.circle-sketch-highlight {
  position: relative;
  left: 0.5em;
  font-family: "Libre Franklin", sans-serif;
  font-size: 32px;
  font-weight: 500;
}

.circle-sketch-highlight:before {
  content: "";
  z-index: -1;
  left: -0.5em;
  top: -0.1em;
  border-width: 2px;
  border-style: solid;
  border-color: #882C3D;
  border-right-color: transparent;
  position: absolute;
  width: 100%;
  height: 1em;
  transform: rotate(2deg);
  opacity: 0.7;
  border-radius: 50%;
  padding: 0.1em 0.25em;
}

.circle-sketch-highlight:after {
  content: "";
  z-index: -1;
  left: -0.5em;
  top: 0.1em;
  padding: 0.1em 0.25em;
  border-width: 2px;
  border-style: solid;
  border-color: #882C3D;
  border-left-color: transparent;
  border-top-color: transparent;
  position: absolute;
  width: 100%;
  height: 1em;
  transform: rotate(-1deg);
  opacity: 0.7;
  border-radius: 50%;
}
