@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap");
@import url("https://assets.mlcdn.com/fonts.css?version=1696321");
@import url("https://assets.mlcdn.com/fonts.css?version=1696321");
@import url("https://assets.mlcdn.com/fonts.css?version=1696321");
/*
0px - 600px: Phone
600px - 900px: Tablet Portrait
900px - 1200px: Tablet Landscape
1200px - 1800px: Normal Styles (Desktop)
1800px + : Big Desktop

    $breakpoint argument choices:
    - phone
    - tab-port
    - tab-land
    - big-desktop

    ORDER: base + typography > general layout > page layout > components
*/
html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}
@media only screen and (min-width: 112.5em) {
  html {
    font-size: 75%;
  }
}
@media only screen and (max-width: 75em) {
  html {
    font-size: 56.25%;
  }
}
@media only screen and (max-width: 56.25em) {
  html {
    font-size: 50%;
  }
}

::selection {
  background-color: #333;
  color: #fff;
}

a {
  color: #53d7ff;
}

body {
  overflow-x: hidden;
}

body {
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  color: #333;
}

.unselectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.card {
  background-color: #fff;
  border-radius: 2rem;
  font-weight: bold;
  width: 75%;
  box-shadow: 2px 2px 9px #ccc;
  transition: cubic-bezier(0, 1.49, 0.4, 1.46) 0.5s;
  display: flex;
  padding: 1rem 2rem;
  flex-direction: column;
  text-align: center;
  cursor: pointer;
}
@media only screen and (max-width: 37.5em) {
  .card {
    padding: 2rem 3rem;
    font-size: 2.5rem;
    margin-bottom: 0;
  }
}
.card__thumbnail {
  width: 100%;
  height: auto;
  margin-bottom: 0.5rem;
}
.card__thumbnail--image {
  max-width: 100%;
  height: 100%;
}
.card:hover {
  transform-origin: center;
  transform: scale(1.1, 1.1);
  box-shadow: 0 0 10px #53d7ff;
}

.client-card {
  display: flex;
  flex-direction: column;
  width: 15rem;
  height: 15rem;
  border-radius: 5px;
  padding: 2rem;
  cursor: pointer;
  text-align: center;
  align-items: center;
  justify-content: center;
  position: relative;
  perspective: 150rem;
  -moz-perspective: 150rem;
}
@media only screen and (min-width: 112.5em) {
  .client-card {
    width: 20rem;
    height: 20rem;
  }
}
@media only screen and (max-width: 75em) {
  .client-card {
    width: 8rem;
    height: 8rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .client-card {
    width: 6rem;
    height: 6rem;
    padding: 4px;
  }
}
.client-card:hover > .client-card__thumbnail {
  transform: rotateY(-180deg);
}
.client-card:hover > .client-card__title {
  transform: rotateY(0deg);
}
.client-card__thumbnail {
  border: 1px solid #ccc;
  background-color: #fff;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.8s ease;
  border-radius: 5px;
  padding: 2rem;
  height: 13rem;
  width: 13rem;
  box-shadow: -2px 2px 3px #ccc;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 112.5em) {
  .client-card__thumbnail {
    width: 20rem;
    height: 20rem;
  }
}
@media only screen and (max-width: 75em) {
  .client-card__thumbnail {
    width: 8rem;
    height: 8rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .client-card__thumbnail {
    width: 6rem;
    height: 6rem;
    padding: 4px;
  }
}
.client-card__thumbnail--image {
  height: auto;
  max-height: 90%;
  max-width: 90%;
  width: auto;
}
.client-card__title {
  transform: rotateY(180deg);
  border-radius: 5px;
  border: 1px solid #ccc;
  box-shadow: -2px 2px 3px #ccc;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.8s ease;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 13rem;
  width: 13rem;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  font-weight: bold;
}
@media only screen and (min-width: 112.5em) {
  .client-card__title {
    width: 20rem;
    height: 20rem;
  }
}
@media only screen and (max-width: 75em) {
  .client-card__title {
    width: 8rem;
    height: 8rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .client-card__title {
    width: 6rem;
    height: 6rem;
    padding: 4px;
  }
}

.backgrounds {
  position: absolute;
  top: 0;
  left: 20vw;
  height: 20rem;
  width: 80vw;
  z-index: -100;
  background-image: url("../img/action1.jpg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.header {
  position: fixed;
  z-index: 200;
  top: 0;
  display: flex;
  padding-top: 0rem;
  padding-bottom: 0rem;
  border-bottom: 1px solid lightgrey;
  width: 100%;
  background-color: white;
  border-bottom: 1px solid darkgray;
  align-items: center;
}
.header__hamburger {
  display: none;
  font-size: 3rem;
  font-weight: bold;
  margin-left: auto;
  margin-right: 2rem;
}
@media only screen and (max-width: 37.5em) {
  .header__hamburger {
    display: inline-block;
  }
}
.header__hamburger--close {
  font-size: 4rem;
  font-weight: normal;
  display: none;
}
.header a {
  text-decoration: none;
  color: black;
}
.header__demo-button {
  height: 4rem;
  width: 12rem;
  margin-left: auto;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid grey;
  background-color: #ffff58;
  border-radius: 10px;
  margin-right: 2rem;
  cursor: pointer;
  transition: 0.2s;
}
.header__demo-button:hover {
  transform: scale(1.03, 1.03);
  box-shadow: 1px 1px 2px 2px lightgrey;
}
.header__demo-button:active {
  transform: scale(0.9, 0.9);
}
.header__menu {
  display: flex;
  flex-direction: row;
  list-style: none;
  font-size: 1.8rem;
  cursor: pointer;
}
@media only screen and (max-width: 37.5em) {
  .header__menu {
    display: none;
    margin-top: 0;
    flex-direction: column;
    position: absolute;
    top: 48.8px;
    border-bottom: 1px solid grey;
    right: 0;
    width: 100vw;
    background-color: white;
  }
}
.header__menu--item:not(:last-child) {
  margin-right: 1.5rem;
}
.header__menu--item a {
  transition: 0.2s;
}
.header__menu--item a:hover {
  color: #778b91;
}
@media only screen and (max-width: 37.5em) {
  .header__menu--item {
    width: 100%;
    font-size: 3rem;
    text-align: center;
    padding-bottom: 2rem;
    padding-top: 2rem;
    border-bottom: 2px solid grey;
  }
  .header__menu--item:active {
    background-color: lightgrey;
  }
}
.header__logo {
  height: 6rem;
  width: 15rem;
  margin-left: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.header__logo img {
  width: 100%;
  height: auto;
}
.header__login {
  font-size: 1.8rem;
  margin-left: auto;
  margin-right: 2rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.intro {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 0;
  background-color: #fff;
  font-size: 3.5rem;
  padding-bottom: 2rem;
}
.intro__content {
  margin-top: 4rem;
  margin-bottom: 4rem;
  display: flex;
  width: 75%;
}
@media only screen and (max-width: 37.5em) {
  .intro__content {
    width: 100%;
    flex-direction: column-reverse;
    margin-top: 8rem;
    margin-bottom: 0;
  }
}
.intro__content__image {
  width: 50%;
}
@media only screen and (max-width: 37.5em) {
  .intro__content__image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }
}
.intro__content__image img {
  width: 100%;
  margin-top: 4rem;
  margin-left: 5rem;
  border-radius: 2rem;
  height: auto;
}
@media only screen and (max-width: 37.5em) {
  .intro__content__image img {
    width: 75%;
    margin: 0;
  }
}
.intro__content__text {
  width: 50%;
  padding-top: 2rem;
  padding-right: 2rem;
  display: flex;
  flex-direction: column;
  padding-bottom: 4rem;
  overflow: hidden;
  align-self: center;
}
@media only screen and (max-width: 37.5em) {
  .intro__content__text {
    max-width: 95%;
    padding: 0;
    width: 95%;
  }
}
.intro__content__text h1 {
  margin-left: 2rem;
  font-size: 4rem;
  text-align: left;
  margin-bottom: 0;
}
@media only screen and (max-width: 37.5em) {
  .intro__content__text h1 {
    margin-left: 0;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.intro__content__text__details {
  margin-left: 2rem;
  font-size: 1.7rem;
  line-height: 2.5rem;
  color: #7c7c7c;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 37.5em) {
  .intro__content__text__details {
    margin-left: 0;
    font-size: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
    line-height: 2.75rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .intro {
    flex-direction: column-reverse;
    padding-left: 0;
    padding-right: 0;
  }
}

.intro-buttons {
  display: flex;
  justify-content: center;
  width: 100%;
}
@media only screen and (max-width: 37.5em) {
  .intro-buttons {
    padding: 2rem 0;
  }
}
.intro-buttons__explore {
  width: 10rem;
  margin-left: 2rem;
  background-color: #f6f6f6;
  box-shadow: 1px 1px 1px 1px #ff6767;
  color: black;
}
.intro-buttons__explore:hover {
  box-shadow: 1px 1px 1px 1px lightgrey;
  background-color: #ff6767;
  color: white;
}
.intro-buttons__demo {
  margin-top: 3rem;
  width: 23rem;
  background-color: #f6f6f6;
  box-shadow: 1px 1px 1px 1px #53d7ff;
  color: black;
  animation-name: bg-glow;
  animation-iteration-count: infinite;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
}
@media only screen and (max-width: 37.5em) {
  .intro-buttons__demo {
    margin-top: 0;
    width: 35rem;
    height: 3.5rem;
  }
}
.intro-buttons__demo a {
  text-decoration: none;
  color: black;
}
@media only screen and (max-width: 37.5em) {
  .intro-buttons__demo a {
    font-size: 2.5rem;
  }
}
.intro-buttons__demo:hover {
  box-shadow: 1px 1px 1px 1px lightgrey;
  background-color: #53d7ff;
}
.intro-buttons__demo:hover a {
  color: white;
}
@keyframes bg-glow {
  0% {
    box-shadow: 0px 0px 1px 1px #53d7ff;
  }
  50% {
    box-shadow: 0px 0px 10px 4px #53d7ff;
  }
  100% {
    box-shadow: 0px 0px 1px 1px #53d7ff;
  }
}
.intro-buttons div {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  padding: 1rem 2rem;
  font-weight: bold;
  border: 1px solid grey;
  border-radius: 4rem;
  cursor: pointer;
  transition: 0.2s;
}
@media only screen and (max-width: 37.5em) {
  .intro-buttons div {
    height: 3.5rem;
  }
}
.intro-buttons div:hover {
  transform: scale(1.05, 1.05);
}
.intro-buttons div p {
  margin: 0;
  font-size: 1.75rem;
  text-align: center;
}

.waviy {
  position: relative;
  -webkit-box-reflect: below -20px linear-gradient(transparent, rgba(0, 0, 0, 0.2));
}

.waviy span {
  color: #53d7ff;
  position: relative;
  margin-left: -0.5rem;
  display: inline-block;
  animation: waviy 4s infinite;
  animation-delay: calc(0.1s * var(--i));
}

@keyframes waviy {
  0%, 10%, 100% {
    transform: translateY(0);
  }
  5% {
    transform: translateY(-20px);
  }
}
.contact {
  color: #242424;
  text-align: center;
  padding-top: 2rem;
  background-color: #e0e0e0;
  padding-bottom: 2rem;
  position: relative;
  z-index: 1;
}
.contact-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 4rem;
}
@media only screen and (max-width: 37.5em) {
  .contact-container {
    padding: 0;
  }
}
@media only screen and (max-width: 37.5em) {
  .contact {
    padding-top: 2rem;
  }
}
.contact__title.section-title {
  margin-bottom: 2rem;
}
.contact__subtitle {
  font-size: 2rem;
}
.contact *::selection {
  background-color: #fff;
  color: #333;
}
.contact__text {
  line-height: 2;
  font-size: 2rem;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 37.5em) {
  .contact__text {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 112.5em) {
  .contact__text {
    font-size: 2.5rem;
  }
}
.contact__text a {
  color: #3baaff;
}

.about {
  color: #242424;
  text-align: center;
  padding-top: 2rem;
  background-color: #f4f4f4;
  padding-bottom: 2rem;
  position: relative;
  z-index: 1;
}
.about-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 4rem;
}
@media only screen and (max-width: 37.5em) {
  .about-container {
    padding: 0;
  }
}
@media only screen and (max-width: 37.5em) {
  .about {
    padding-top: 2rem;
  }
}
.about__title.section-title {
  margin-bottom: 2rem;
}
.about__subtitle {
  font-size: 2rem;
}
.about *::selection {
  background-color: #fff;
  color: #333;
}
.about__person {
  background-color: white;
  border: 1px solid lightgrey;
  border-radius: 1rem;
  padding: 2rem 2rem;
  width: 100rem;
  margin-bottom: 5rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media only screen and (max-width: 37.5em) {
  .about__person {
    flex-direction: column;
    align-items: center;
    width: 90%;
    padding: 2rem 0;
  }
}
.about__person--image {
  width: 25%;
  margin-right: 6rem;
}
@media only screen and (max-width: 37.5em) {
  .about__person--image {
    flex-direction: column;
    width: 50%;
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
.about__person--image img {
  width: 100%;
  height: auto;
}
.about__person--bio {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75%;
}
@media only screen and (max-width: 37.5em) {
  .about__person--bio {
    width: 90%;
  }
}
.about__person--bio__text {
  font-size: 1.8rem;
  line-height: 2.5rem;
  text-align: left;
}
@media only screen and (max-width: 37.5em) {
  .about__person--bio__text {
    hyphens: auto;
  }
}

.name {
  color: #052852;
  display: inline;
  font-weight: bold;
  font-size: 2.4rem;
}

.content {
  display: block;
  position: absolute;
  top: 6rem;
  overflow-y: auto;
  width: 100%;
}
@media only screen and (max-width: 37.5em) {
  .content {
    margin-left: 0;
    top: 0;
  }
}

.pricing {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 30;
  position: relative;
  background-color: #fff;
  margin-top: -8rem;
  padding-top: 2rem;
  padding-bottom: 10rem;
}
.pricing-container {
  display: flex;
  flex-direction: row;
}
.pricing-card {
  box-shadow: 1px 1px 4px 1px lightgrey;
  cursor: pointer;
  margin: 0 10rem;
  border-radius: 2rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 38rem;
  height: 50rem;
  border: 1px solid lightgrey;
  transition: 0.2s;
}
.pricing-card:hover {
  transform: scale(1.01);
}
.pricing-card:hover .pricing-card__buy-button {
  background-color: white;
  color: black;
  border: 1px solid #dedede;
}
.pricing-card__title {
  font-size: 4rem;
  color: white;
}
.pricing-card__price {
  font-size: 6rem;
  color: white;
}
.pricing-card__buy-button {
  margin-top: auto;
  margin-bottom: 1rem;
  cursor: pointer;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2rem;
  width: 14rem;
  background-color: #53d7ff;
  color: white;
  height: 6rem;
  transition: 0.2s ease-out;
}
.pricing-card__feature-list-container {
  width: 100%;
}
.pricing-card__feature-list {
  padding-left: 1rem;
  padding-right: 1rem;
  list-style: none;
}
.pricing-card__feature-list li {
  color: #303030;
  font-size: 2rem;
  text-align: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  width: 100%;
}
.pricing-card__feature-list li:not(:last-of-type) {
  border-bottom: 1px solid grey;
}
.pricing-card__top-container {
  justify-content: center;
  height: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #53d7ff;
}
.pricing-card__bottom-container {
  height: 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.navigation {
  width: 100%;
}
.navigation__list {
  margin-top: 4rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 0;
  color: #333;
}
.navigation__list li {
  width: 100%;
}
.navigation__list li:not(:first-child) {
  padding-top: 1rem;
}
.navigation__list li:not(:last-child) {
  padding-bottom: 1rem;
}
.navigation__item {
  transition: ease-in 0.2s;
  font-size: 1.6rem;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid transparent;
  text-decoration: none;
  color: #333;
}
.navigation__item--selected {
  color: #53d7ff;
  text-decoration: underline;
}
.navigation__item:hover {
  color: #ccc;
}
@media only screen and (min-width: 112.5em) {
  .navigation__item {
    font-size: 2.5rem;
  }
}

.books {
  position: relative;
  background-color: #f9fdff;
  padding-bottom: 3rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.books__try-button {
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2rem;
  font-size: 1.75rem;
  font-weight: bold;
  border: 1px solid #53d7ff;
  width: 25rem;
  padding-left: 1rem;
  padding-right: 1rem;
  transition: 0.2s;
  cursor: pointer;
}
@media only screen and (max-width: 37.5em) {
  .books__try-button {
    width: 35rem;
    font-size: 2.5rem;
    border: 2px solid #53d7ff;
  }
}
.books__try-button a {
  text-decoration: none;
  color: black;
}
.books__try-button:hover {
  transform: scale(1.02);
  box-shadow: 1px 1px 4px 0px #d2d2d2;
}
.books__header {
  margin: 0.2rem 0;
}
@media only screen and (max-width: 37.5em) {
  .books__header-container {
    width: 95%;
  }
}
@media only screen and (max-width: 37.5em) {
  .books__header-container h1 {
    font-size: 4rem;
  }
}
.books__container {
  padding-top: 2rem;
  padding-bottom: 2rem;
  width: 90%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 37.5em) {
  .books__container {
    width: 100%;
  }
}
.books__showcase {
  margin-top: 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 37.5em) {
  .books__showcase {
    flex-direction: column;
  }
}
.books__showcase__item {
  width: 24rem;
  margin-right: 8rem;
  margin-left: 8rem;
}
@media only screen and (max-width: 37.5em) {
  .books__showcase__item {
    margin: 2rem 0;
    width: 80%;
  }
}
.books__showcase__item--text {
  font-size: 2rem;
  margin-top: 2rem;
  text-align: center;
  font-weight: bold;
}
@media only screen and (max-width: 37.5em) {
  .books__showcase__item--text {
    margin-top: 0.5rem;
  }
}
.books__showcase__item--image {
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.books__showcase__item--image img {
  width: 100%;
  height: auto;
  transition: 0.1s ease-out;
}
.books__showcase__item--image img:hover {
  transform: scale(1.03);
  box-shadow: 3px 3px 4px 3px #ececec;
}

.journey {
  background-color: #f3f3f3;
  padding-top: 4rem;
  height: 50rem;
}
.journey-container {
  padding: 0 10rem;
}

.testimonials {
  display: flex;
  flex-direction: column;
  padding-bottom: 4rem;
}
.testimonials-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.testimonials .testimonial {
  width: 30%;
  margin: 0 2rem;
  padding: 3rem 1rem;
  padding-right: 2rem;
  border-radius: 2rem;
  border: 1px solid #dcf0ff;
  box-shadow: 2px 2px 8px 1px #dcf0ff;
}
.testimonials .testimonial__content {
  color: #333;
  text-align: center;
  font-size: 2rem;
  line-height: 1.5;
  margin-top: 2.5rem;
  margin-left: 1rem;
}
.testimonials .testimonial__name {
  text-align: center;
  margin-top: 2rem;
}
.testimonials .testimonial__quotes {
  font-family: Roboto;
  position: absolute;
  font-size: 15rem;
  z-index: -2;
  color: #dcf0ff;
  transform: translate(0, -4rem);
}

.qotd {
  visibility: hidden;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999999;
  width: 100vw;
  height: 100vh;
  background-color: transparent;
  opacity: 100%;
  margin: auto auto;
}

.qotd-container {
  opacity: 0;
  transition: opacity 0.4s;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 3rem;
  padding-right: 3rem;
  background-color: white;
  width: 70rem;
}
@media only screen and (max-width: 37.5em) {
  .qotd-container {
    width: 85%;
    height: 60%;
    padding-top: 1rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.x-button {
  color: darkgrey;
  font-size: 4rem;
  cursor: pointer;
  max-width: 3rem;
  margin-left: auto;
  transition: 0.2s;
}
@media only screen and (max-width: 37.5em) {
  .x-button {
    font-size: 5rem;
  }
}
.x-button:hover {
  color: #262626;
}

.x-button-container {
  width: 100%;
  text-align: right;
  margin-bottom: 2rem;
}

.section-title.qotd__title {
  position: absolute;
  margin-top: 1.5rem;
  font-size: 4rem;
  margin-bottom: 2rem;
  margin-bottom: 0;
}

.qotd__text {
  margin-top: 2rem;
  margin-bottom: 3rem;
  line-height: 1.5;
  font-size: 2rem;
  color: grey;
  width: 90%;
}
@media only screen and (max-width: 37.5em) {
  .qotd__text {
    font-size: 2.5rem;
    text-align: center;
  }
}

.qotd__subtitle {
  margin-bottom: 0;
}

.grey-out {
  visibility: hidden;
  opacity: 0;
  width: 100vw;
  height: 100vh;
  background-color: grey;
  position: absolute;
  z-index: 9999;
  transition: opacity 0.4s;
}

.mailer-lite-container {
  width: 100%;
}

/* LOADER */
.ml-form-embedSubmitLoad {
  display: inline-block;
  width: 20px;
  height: 20px;
}

.g-recaptcha {
  transform: scale(1);
  -webkit-transform: scale(1);
  transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.ml-form-embedSubmitLoad:after {
  content: " ";
  display: block;
  width: 11px;
  height: 11px;
  margin: 1px;
  border-radius: 50%;
  border: 4px solid #fff;
  border-color: #ffffff #ffffff #ffffff transparent;
  animation: ml-form-embedSubmitLoad 1.2s linear infinite;
}

@keyframes ml-form-embedSubmitLoad {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#mlb2-8347156.ml-form-embedContainer {
  box-sizing: border-box;
  display: table;
  margin: 0 auto;
  position: static;
  width: 100% !important;
}

#mlb2-8347156.ml-form-embedContainer h4,
#mlb2-8347156.ml-form-embedContainer p,
#mlb2-8347156.ml-form-embedContainer span,
#mlb2-8347156.ml-form-embedContainer button {
  text-transform: none !important;
  letter-spacing: normal !important;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper {
  border-width: 0px;
  border-color: transparent;
  border-radius: 4px;
  border-style: solid;
  box-sizing: border-box;
  display: inline-block !important;
  margin: 0;
  padding: 0;
  position: relative;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper.embedPopup,
#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper.embedDefault {
  width: 400px;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper.embedForm {
  max-width: 400px;
  width: 100%;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-align-left {
  text-align: left;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-align-center {
  text-align: center;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-align-default {
  display: table-cell !important;
  vertical-align: middle !important;
  text-align: center !important;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-align-right {
  text-align: right;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedHeader img {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  height: auto;
  margin: 0 auto !important;
  max-width: 100%;
  width: undefinedpx;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody,
#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody {
  padding: 0px 20px 0 20px;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody.ml-form-embedBodyHorizontal {
  padding-bottom: 0;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent,
#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent {
  text-align: left;
  margin: 0 0 20px 0;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent h4,
#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent h4 {
  color: #000000;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 30px;
  font-weight: 400;
  margin: 0 0 10px 0;
  text-align: center;
  word-break: break-word;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p,
#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p {
  color: #000000;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin: 0 0 10px 0;
  text-align: left;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ul,
#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ol,
#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ul,
#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ol {
  color: #000000;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 14px;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ol ol,
#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ol ol {
  list-style-type: lower-alpha;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ol ol ol,
#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ol ol ol {
  list-style-type: lower-roman;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p a,
#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p a {
  color: #000000;
  text-decoration: underline;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-block-form .ml-field-group {
  text-align: left !important;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-block-form .ml-field-group label {
  margin-bottom: 5px;
  color: #333333;
  font-size: 14px;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-style: normal;
  text-decoration: none;
  display: inline-block;
  line-height: 20px;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p:last-child,
#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p:last-child {
  margin: 0;
  text-align: center;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody form {
  margin: 0;
  width: 100%;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent,
#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow {
  margin: 0 0 20px 0;
  width: 100%;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow {
  float: left;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent.horozintalForm {
  margin: 0;
  padding: 0 0 20px 0;
  width: 100%;
  height: auto;
  float: left;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow {
  margin: 0 0 10px 0;
  width: 100%;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow.ml-last-item {
  margin: 0;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow.ml-formfieldHorizintal {
  margin: 0;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input {
  background-color: #ffffff !important;
  color: #333333 !important;
  border-color: #cccccc;
  border-radius: 4px !important;
  border-style: solid !important;
  border-width: 1px !important;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 14px !important;
  height: auto;
  line-height: 21px !important;
  margin-bottom: 0;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  padding: 10px 10px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  max-width: 100% !important;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::-webkit-input-placeholder,
#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input::-webkit-input-placeholder {
  color: #333333;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::-moz-placeholder,
#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input::-moz-placeholder {
  color: #333333;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input:-ms-input-placeholder,
#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input:-ms-input-placeholder {
  color: #333333;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input:-moz-placeholder,
#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input:-moz-placeholder {
  color: #333333;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow textarea, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow textarea {
  background-color: #ffffff !important;
  color: #333333 !important;
  border-color: #cccccc;
  border-radius: 4px !important;
  border-style: solid !important;
  border-width: 1px !important;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 14px !important;
  height: auto;
  line-height: 21px !important;
  margin-bottom: 0;
  margin-top: 0;
  padding: 10px 10px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  max-width: 100% !important;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label::before, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label::before, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::before, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::before, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before {
  border-color: #cccccc !important;
  background-color: #ffffff !important;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input.custom-control-input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
  position: absolute;
  z-index: -1;
  opacity: 0;
  margin-top: 5px;
  margin-left: -1.5rem;
  overflow: visible;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::before, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::before, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before {
  border-radius: 4px !important;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow input[type=checkbox]:checked ~ .label-description::after, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox input[type=checkbox]:checked ~ .label-description::after, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox input[type=checkbox]:checked ~ .label-description::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input:checked ~ .custom-control-label::after, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input:checked ~ .custom-control-label::before, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-input:checked ~ .custom-control-label::before, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox input[type=checkbox]:checked ~ .label-description::before, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox input[type=checkbox]:checked ~ .label-description::before, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow input[type=checkbox]:checked ~ .label-description::before {
  border-color: #000000 !important;
  background-color: #000000 !important;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label::before, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label::before, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label::after, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label::after, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::before, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::after, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::before, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::after {
  top: 2px;
  box-sizing: border-box;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::after, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after {
  top: 0px !important;
  box-sizing: border-box !important;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after {
  top: 0px !important;
  box-sizing: border-box !important;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::after {
  top: 0px !important;
  box-sizing: border-box !important;
  position: absolute;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before {
  top: 0px !important;
  box-sizing: border-box !important;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-control-label::before {
  position: absolute;
  top: 4px;
  left: -1.5rem;
  display: block;
  width: 16px;
  height: 16px;
  pointer-events: none;
  content: "";
  background-color: #ffffff;
  border: #adb5bd solid 1px;
  border-radius: 50%;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-control-label::after {
  position: absolute;
  top: 2px !important;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before {
  position: absolute;
  top: 4px;
  left: -1.5rem;
  display: block;
  width: 16px;
  height: 16px;
  pointer-events: none;
  content: "";
  background-color: #ffffff;
  border: #adb5bd solid 1px;
  border-radius: 50%;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::after {
  position: absolute;
  top: 0px !important;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after {
  position: absolute;
  top: 0px !important;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-radio .custom-control-label::after {
  background: no-repeat 50%/50% 50%;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-checkbox .custom-control-label::after, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::after, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::after, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after {
  background: no-repeat 50%/50% 50%;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-control, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-control {
  position: relative;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-input, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-input, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-input {
  position: absolute;
  z-index: -1;
  opacity: 0;
  box-sizing: border-box;
  padding: 0;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label {
  color: #000000;
  font-size: 12px !important;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 22px;
  margin-bottom: 0;
  position: relative;
  vertical-align: top;
  font-style: normal;
  font-weight: 700;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-select, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-select {
  background-color: #ffffff !important;
  color: #333333 !important;
  border-color: #cccccc;
  border-radius: 4px !important;
  border-style: solid !important;
  border-width: 1px !important;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 14px !important;
  line-height: 20px !important;
  margin-bottom: 0;
  margin-top: 0;
  padding: 10px 28px 10px 12px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  max-width: 100% !important;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  background: url("https://assets.mlcdn.com/ml/images/default/dropdown.svg") no-repeat right 0.75rem center/8px 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow {
  height: auto;
  width: 100%;
  float: left;
}

.ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal {
  width: 70%;
  float: left;
}

.ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-button-horizontal {
  width: 30%;
  float: left;
}

.ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-button-horizontal.labelsOn {
  padding-top: 25px;
}

.ml-form-formContent.horozintalForm .ml-form-horizontalRow .horizontal-fields {
  box-sizing: border-box;
  float: left;
  padding-right: 10px;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input {
  background-color: #ffffff;
  color: #333333;
  border-color: #cccccc;
  border-radius: 4px;
  border-style: solid;
  border-width: 1px;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 0;
  margin-top: 0;
  padding: 10px 10px;
  width: 100%;
  box-sizing: border-box;
  overflow-y: initial;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow button {
  background-color: #53d7ff !important;
  border-color: #53d7ff;
  border-style: solid;
  border-width: 1px;
  border-radius: 4px;
  box-shadow: none;
  color: #ffffff !important;
  cursor: pointer;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 14px !important;
  font-weight: 700;
  line-height: 20px;
  margin: 0 !important;
  padding: 10px !important;
  width: 100%;
  height: auto;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow button:hover {
  background-color: #00c4ff !important;
  border-color: #00c4ff !important;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
  position: absolute;
  z-index: -1;
  opacity: 0;
  margin-top: 5px;
  margin-left: -1.5rem;
  overflow: visible;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description {
  color: #000000;
  display: block;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 12px;
  text-align: left;
  margin-bottom: 0;
  position: relative;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label {
  font-weight: normal;
  margin: 0;
  padding: 0;
  position: relative;
  display: block;
  min-height: 24px;
  padding-left: 24px;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label a {
  color: #000000;
  text-decoration: underline;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label p {
  color: #000000 !important;
  font-family: "Open Sans", Arial, Helvetica, sans-serif !important;
  font-size: 12px !important;
  font-weight: normal !important;
  line-height: 18px !important;
  padding: 0 !important;
  margin: 0 5px 0 0 !important;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label p:last-child {
  margin: 0;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit {
  margin: 0 0 20px 0;
  float: left;
  width: 100%;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button {
  transition: 0.2s;
  background-color: #53d7ff !important;
  border: none !important;
  border-radius: 4px !important;
  box-shadow: none !important;
  color: #ffffff !important;
  cursor: pointer;
  font-family: "Open Sans", Arial, Helvetica, sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 21px !important;
  height: auto;
  padding: 10px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button.loading {
  display: none;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button:hover {
  background-color: #00c4ff !important;
}

.ml-subscribe-close {
  width: 30px;
  height: 30px;
  background: url("https://assets.mlcdn.com/ml/images/default/modal_close.png") no-repeat;
  background-size: 30px;
  cursor: pointer;
  margin-top: -10px;
  margin-right: -10px;
  position: absolute;
  top: 0;
  right: 0;
}

.ml-error input, .ml-error textarea, .ml-error select {
  border-color: red !important;
}

.ml-error .custom-checkbox-radio-list {
  border: 1px solid red !important;
  border-radius: 4px;
  padding: 10px;
}

.ml-error .label-description,
.ml-error .label-description p,
.ml-error .label-description p a,
.ml-error label:first-child {
  color: #ff0000 !important;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p,
#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p:first-letter {
  color: #ff0000 !important;
}

@media only screen and (max-width: 400px) {
  .ml-form-embedWrapper.embedDefault, .ml-form-embedWrapper.embedPopup {
    width: 100% !important;
  }

  .ml-form-formContent.horozintalForm {
    float: left !important;
  }

  .ml-form-formContent.horozintalForm .ml-form-horizontalRow {
    height: auto !important;
    width: 100% !important;
    float: left !important;
  }

  .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal {
    width: 100% !important;
  }

  .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal > div {
    padding-right: 0px !important;
    padding-bottom: 10px;
  }

  .ml-form-formContent.horozintalForm .ml-button-horizontal {
    width: 100% !important;
  }

  .ml-form-formContent.horozintalForm .ml-button-horizontal.labelsOn {
    padding-top: 0px !important;
  }
}
.question-selector-container {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.practice-page {
  width: 100vw;
  height: 100vh;
}

.practice-console {
  display: flex;
  flex-direction: row;
  width: 100vw;
  height: 100vh;
  padding-top: 48px;
}

.practice-console--left {
  background-color: white;
  box-shadow: 1px 0px 2px 0px lightgrey;
  border-right: 1px solid lightgrey;
  width: 25%;
}
@media only screen and (max-width: 37.5em) {
  .practice-console--left {
    width: 40%;
  }
}

.get-score {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 75%;
  height: 100%;
  z-index: 100;
}
@media only screen and (max-width: 75em) {
  .get-score {
    align-items: start;
    overflow: hidden;
  }
}
.get-score-grey-out {
  position: absolute;
  background-color: grey;
  opacity: 50%;
  width: 100%;
  height: 100%;
}
.get-score-form {
  width: 70rem;
}
@media only screen and (max-width: 75em) {
  .get-score-form {
    width: initial;
  }
}
.get-score--x {
  font-weight: bold;
  cursor: pointer;
  user-select: none;
  z-index: 201;
  right: -75%;
  top: 3rem;
  position: relative;
  color: grey;
}
@media only screen and (max-width: 75em) {
  .get-score--x {
    right: -92.5%;
  }
}
.get-score--x:hover {
  color: #3c3c3c;
}

.practice-console--right {
  background-color: #f7fbff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75%;
}
@media only screen and (max-width: 37.5em) {
  .practice-console--right {
    width: 60%;
  }
}

.rotate-screen-alert {
  display: none;
  width: 100%;
  height: 100%;
  background-color: lightgrey;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.rotate-screen-alert--text {
  font-size: 3rem;
  text-align: center;
}
.rotate-screen-alert--image {
  width: 40%;
}
.rotate-screen-alert--image img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 37.5em) {
  .rotate-screen-alert {
    display: flex;
  }
}

.practice-test-selector {
  list-style: none;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-left: 0rem;
}
.practice-test-selector--title {
  width: 100%;
  text-align: center;
}
.practice-test-selector--item {
  user-select: none;
  display: flex;
  box-sizing: border-box;
  border-radius: 0.1rem;
  margin: 0 auto;
  width: 95%;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  background-color: white;
  height: 5rem;
  transition: 0.1s;
  cursor: pointer;
}
.practice-test-selector--item:not(:last-of-type) {
  border-bottom: 1px solid grey;
}
.practice-test-selector--item--selected {
  background-color: #d7f5ff;
  border-left: 4px solid #4949ff;
  font-weight: bold;
}
.practice-test-selector--item--selected:hover {
  background-color: #c1d7df;
}
.practice-test-selector--item--more {
  background-color: #e6e6e6;
}

option {
  border-radius: 0;
}

#test-selector {
  border-radius: 0;
}

.main-practice-test-container {
  display: flex;
  flex-direction: column;
  background-color: white;
  width: 100rem;
  height: 60rem;
  border: 1px solid black;
  margin: 0 auto;
  border-radius: 1rem;
  overflow: hidden;
}
@media only screen and (max-width: 37.5em) {
  .main-practice-test-container {
    display: none;
  }
}
@media only screen and (max-width: 75em) {
  .main-practice-test-container {
    height: 100%;
    border-radius: 0;
  }
}

.dashed-border {
  height: 2%;
  width: 100%;
}

.flex-container {
  flex-basis: 33%;
  flex-grow: 1;
}

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

.flex-container-vert-half {
  flex-basis: 50%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.bookmark-icon {
  width: 2.5rem;
  height: 2.5rem;
}

@media only screen and (max-width: 75em) {
  .top-middle-border {
    display: none;
  }
}

.top {
  display: flex;
  background-color: white;
  flex-basis: 12%;
  flex-grow: 0;
  flex-shrink: 0;
}
@media only screen and (max-width: 75em) and (orientation: landscape) {
  .top {
    display: none;
  }
}
.top--left {
  padding-left: 4rem;
  padding-top: 1.5rem;
  height: 100%;
}
.top--left__section {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.top--left__directions-dropdown {
  display: flex;
  font-size: 1.7em;
  align-content: center;
}
.top--left__directions-dropdown--button {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.top--left .down-arrow {
  height: 1.8rem;
  width: 2rem;
}
.top--center {
  display: flex;
  flex-direction: column;
  flex-basis: auto;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.top--center__stopwatch img {
  width: 1.75rem;
  height: auto;
  margin-top: 1rem;
}
.top--center__timer {
  font-size: 2.5rem;
  margin-top: 1rem;
}
.top--center__hide-button {
  letter-spacing: 0.05rem;
  font-size: 1.2rem;
  padding: 0.2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid black;
  border-radius: 2rem;
  width: 4.6rem;
  height: 1.5rem;
  transition: 0.2s;
  cursor: pointer;
}
.top--center__hide-button:hover {
  font-weight: bold;
  box-shadow: 0px 0px 1px 1px lightgrey;
}
.top--center__hide-button:active {
  transform: scale(0.92);
  box-shadow: none;
}
.top--right {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.top--right__battery {
  display: flex;
  justify-content: right;
  align-items: center;
  padding-right: 1rem;
  height: 30%;
}
.top--right__battery .battery-icon {
  padding-top: 0.1rem;
  height: 1.2rem;
  width: auto;
}
.top--right__controls {
  display: flex;
  justify-content: right;
  align-items: center;
  padding-right: 2rem;
  height: 100%;
}
.top--right__controls .controls-button {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  flex-direction: column;
  margin-right: 2rem;
}
.top--right__controls .controls-button .button--icon {
  width: 2.3rem;
  height: auto;
}
.question-nav {
  z-index: 100003;
  position: absolute;
  background-color: white;
  border-radius: 1rem;
  width: 50rem;
  min-height: 25rem;
}
.question-nav-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  width: 100%;
  height: 100%;
}
.question-nav--header {
  font-weight: bold;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 1.8rem;
  border-bottom: 1px solid grey;
  width: 90%;
  height: 3rem;
}
.question-nav--header--text {
  text-align: center;
  width: 100%;
}
.question-nav--header--x {
  width: 2rem;
  margin-left: auto;
  cursor: pointer;
}
.question-nav--key {
  border-bottom: 1px solid grey;
  width: 90%;
  height: 20%;
  justify-content: center;
  display: flex;
  flex-direction: row;
}
.question-nav--key_item {
  flex-direction: row;
  display: flex;
  margin-right: 1rem;
  margin-left: 1rem;
  align-items: center;
}
.question-nav--key_item img {
  width: 2rem;
  height: 2rem;
  margin-right: 0.5rem;
}
.question-nav--key_item p {
  font-size: 1.6rem;
}
.question-nav--question-boxes {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  width: 90%;
  height: 30%;
}
.question-nav--question-boxes_item {
  font-weight: bold;
  font-size: 1.8rem;
  color: blue;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px dashed black;
  height: 2.75rem;
  width: 2.75rem;
  margin: 1rem;
  cursor: pointer;
}
.question-nav--question-boxes_item:hover {
  background-color: #f3f3f3;
}
.question-nav--question-boxes_item--current {
  text-decoration: underline;
}
.question-nav--question-boxes_item--current::before {
  content: "";
  background-image: url(../img/current_question_icon.png);
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  transform: translate(0, -2.5rem);
  background-size: cover;
  width: 1.75rem;
  height: 1.75rem;
}
.question-nav--question-boxes_item--answered {
  background-color: #0000d4;
  border: 1px solid #0000d4;
  color: white;
}
.question-nav--question-boxes_item--answered:hover {
  background-color: #3b47b9;
}
.question-nav--question-boxes_item--marked::after {
  content: "";
  background-image: url(../img/bookmark_icon.png);
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  transform: translate(1.3rem, -1.65rem);
  background-size: cover;
  width: 1.3rem;
  height: 1.3rem;
}
.question-nav--review-page {
  width: 90%;
  height: 30%;
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.question-nav--review-page .go-to-review-page-button {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 1rem;
  padding-right: 1rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2rem;
  color: blue;
  border: 1px solid blue;
  font-size: 1.5rem;
  cursor: pointer;
  transition: 0.2s;
}
.question-nav--review-page .go-to-review-page-button:hover {
  box-shadow: 0 0 2px #00007e;
  border: 1px solid #00007e;
}

.question-nav-shadow-box {
  z-index: 100000;
  position: absolute;
  background-color: white;
  box-shadow: 0px 0px 6px 0px lightgrey;
  border-radius: 1rem;
  width: 50rem;
}

.question-nav-arrow {
  z-index: 100001;
  background-color: white;
  box-shadow: -1px -1px 1rem 1px lightgrey;
  width: 4rem;
  height: 4rem;
  position: absolute;
  transform: scaleX(0.95) translate(50rem, -5rem) rotate(45deg);
}
.review-page-panel {
  font-family: Roboto;
  background-color: #fcfcfc;
  display: none;
  height: 100%;
  width: 100%;
  flex-direction: column;
}
@media only screen and (max-width: 75em) {
  .review-page-panel {
    overflow-y: auto;
  }
}
.review-page-panel--top {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 35%;
}
@media only screen and (max-width: 75em) {
  .review-page-panel--top {
    height: 25%;
  }
}
.review-page-panel--top h1 {
  font-family: Roboto;
  font-weight: 400;
  font-size: 3.5rem;
  margin-top: 2rem;
}
@media only screen and (max-width: 75em) {
  .review-page-panel--top h1 {
    font-size: 2rem;
    margin-top: 1rem;
    margin-bottom: 0;
  }
}
.review-page-panel--top p {
  font-size: 1.6rem;
  margin-bottom: 0;
}
@media only screen and (max-width: 75em) {
  .review-page-panel--top p {
    margin-top: 0.2rem;
  }
}
.review-page-panel--bottom {
  height: 65%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (max-width: 75em) {
  .review-page-panel--bottom {
    height: 75%;
    padding-bottom: 5rem;
  }
}
.review-page-panel--bottom__question-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  margin-top: 2rem;
  width: 75%;
  border-radius: 1rem;
  box-shadow: 0px 3px 12px 2px #d1d1d1;
  padding: 1rem 4rem;
}
.review-page-panel--bottom__question-nav--top {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: 30%;
  background-color: white;
  border-bottom: 1px solid lightgrey;
}
.review-page-panel--bottom__question-nav--top h2 {
  font-family: Roboto;
  font-size: 2rem;
}
.review-page-panel--bottom__question-nav--top .horizontal-flex-container {
  margin-left: auto;
}
.review-page-panel--bottom__question-nav--bottom {
  display: flex;
  width: 100%;
  height: 60%;
  flex-direction: column;
  align-items: center;
}
.review-page-panel--bottom__question-nav--bottom .question-nav--question-boxes {
  width: 100%;
  height: 90%;
}
.review-page-panel--bottom__question-nav--bottom .question-nav--question-boxes_item {
  width: 3rem;
  height: 3rem;
  font-size: 2rem;
}
.review-page-panel--bottom__question-nav--bottom .question-nav--question-boxes_item--current {
  text-decoration: none;
}
.review-page-panel--bottom__question-nav--bottom .question-nav--question-boxes_item--current::before {
  display: none;
}
.review-page-panel--get-your-score-button {
  width: 6rem;
  height: 4rem;
  background-color: #ededed;
  user-select: none;
  cursor: pointer;
  border: 1px solid black;
  /* color: white; */
  font-size: 2rem;
  margin-top: 3rem;
  border-radius: 2rem;
  justify-content: center;
  width: 17rem;
  height: 4rem;
  display: flex;
  align-items: center;
  transition: 0.1s;
}
.review-page-panel--get-your-score-button:hover {
  transform: scale(1.01);
  box-shadow: 0px 0px 4px 2px #53d7ff;
}
.review-page-panel--get-your-score-button:active {
  transform: scale(0.99);
  box-shadow: none;
}

.directions-grey-out {
  position: absolute;
  width: 100rem;
  height: calc(56.5rem + 2px);
  transform: translateY(-0.6em);
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  background-color: grey;
  opacity: 35%;
}

.directions-popout-arrow {
  background-color: white;
  box-shadow: -1px -1px 1rem 1px lightgrey;
  width: 3rem;
  height: 3rem;
  position: absolute;
  transform: scaleX(0.95) translate(7rem, -1.2rem) rotate(45deg);
}

.directions-popout {
  z-index: 10000;
  position: absolute;
  width: 80rem;
  height: 45rem;
  transform: translateX(4rem);
  background-color: white;
  box-shadow: 8px 8px 1rem -7px grey;
  padding: 2rem 3rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
}

.middle {
  display: flex;
  flex-basis: 73%;
  max-height: 73%;
  flex-grow: 0;
  flex-shrink: 0;
  width: 100%;
}
@media only screen and (max-width: 75em) {
  .middle {
    max-height: 69%;
  }
}
.middle__question {
  overflow-y: auto;
  width: 49.5%;
  display: flex;
}
.middle__question--container {
  display: flex;
  flex-direction: column;
  padding-top: 4.2rem;
}
@media only screen and (max-width: 75em) {
  .middle__question--container {
    padding-top: 1rem;
  }
}
.middle__question--container img {
  width: 100%;
}
.middle__question--text {
  margin-left: 3rem;
  width: 92%;
  font-size: 1.7rem;
  line-height: 1.5;
}
@media only screen and (max-width: 75em) {
  .middle__question--text {
    margin-left: auto;
  }
}
.middle__question--text--excerpt {
  margin-left: 1rem;
}
.middle__question--expand {
  display: flex 0 3rem;
  justify-content: end;
  align-items: end;
  width: 8%;
}
@media only screen and (max-width: 75em) {
  .middle__question--expand {
    display: none;
  }
}
.middle__question--expand-button {
  margin-left: auto;
  border: 1px solid lightgrey;
  border-radius: 2rem;
  box-shadow: -0.2rem 0.5rem 0.8rem -0.2rem #cfcfcf;
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin-top: 1rem;
  transition: 0.2s;
}
.middle__question--expand-button:hover {
  transform: scale(1);
  border: 1px solid grey;
}
.middle__question--expand-button:hover > img {
  filter: brightness(75%);
}
.middle__question--expand-button > img {
  width: 1.6rem;
  height: auto;
}
.middle__answers {
  width: 49.5%;
  max-height: 100%;
  overflow-y: auto;
  font-size: 1.5rem;
  letter-spacing: 0.02rem;
  display: flex;
}
.middle__answers--expand {
  width: 8%;
  display: flex 0 3rem;
  justify-content: center;
}
@media only screen and (max-width: 75em) {
  .middle__answers--expand {
    display: none;
  }
}
.middle__answers--expand-button {
  border: 1px solid lightgrey;
  border-radius: 2rem;
  box-shadow: -0.2rem 0.5rem 0.8rem -0.2rem #cfcfcf;
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin-top: 1rem;
  transition: 0.2s;
}
.middle__answers--expand-button:hover {
  transform: scale(1);
  border: 1px solid grey;
}
.middle__answers--expand-button:hover > img {
  filter: brightness(75%);
}
.middle__answers--expand-button > img {
  width: 1.6rem;
  height: auto;
}
.middle__answers--container {
  display: flex;
  width: 92%;
  margin-top: 4.2rem;
  margin-right: 5rem;
}
@media only screen and (max-width: 75em) {
  .middle__answers--container {
    margin-top: 1rem;
    margin-left: 1rem;
    margin-right: 1rem;
  }
}
.middle__answers--container .answer {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
}
.middle__answers--container .answer--header {
  display: flex;
  height: 2.8rem;
  align-items: center;
  background-color: #eaeaea;
}
.middle__answers--container .answer--header--number {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: black;
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
  width: 2.5rem;
  height: 100%;
}
.middle__answers--container .answer--header--mark-for-review {
  font-size: 1.5rem;
  margin-left: 1.5rem;
  display: flex;
  align-items: center;
}
.middle__answers--container .answer--header--mark-for-review img {
  cursor: pointer;
}
.middle__answers--container .answer--header--cross-out-answers {
  margin-left: auto;
  height: 100%;
  display: flex;
  justify-content: end;
  align-items: center;
  padding-right: 1rem;
}
.middle__answers--container .answer--header--cross-out-answers:hover .answer--header--cross-out-answers-hover-box {
  visibility: visible;
}
.middle__answers--container .answer--header--cross-out-answers:hover .answer--header--cross-out-answers-hover-diamond {
  visibility: visible;
}
.middle__answers--container .answer--header--cross-out-answers-hover-box {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  position: absolute;
  color: white;
  transform: translateY(-5rem) translateX(2rem);
  width: 18rem;
  border-radius: 7px;
  background-color: #646464;
  visibility: hidden;
}
.middle__answers--container .answer--header--cross-out-answers-hover-diamond {
  z-index: -1;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  position: absolute;
  color: white;
  transform: translateY(-3.2rem) translateX(0rem) rotate(45deg);
  width: 0.5rem;
  height: 0.5rem;
  background-color: #646464;
  visibility: hidden;
}
.middle__answers--container .answer--header--cross-out-answers img {
  margin-left: auto;
  height: 85%;
  cursor: pointer;
}
.middle__answers--container .answer--prompt {
  font-size: 1.5rem;
  line-height: 1.4;
  margin-top: 0;
}
.middle__answers--container .answer--choices {
  display: flex;
  flex-direction: column;
}
.middle__answers--container .answer--choices--choice .circle {
  font-family: sans-serif;
}
.middle__answers--container .answer--choices .crossed-out {
  color: grey;
}
.middle__answers--container .answer--choices .crossed-out .circle-container .circle {
  border: 1px solid grey;
}
.middle__answers--container .answer--choices--cross-out-undo {
  display: none;
  font-family: sans-serif;
  font-weight: bold;
  height: 100%;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  margin-left: 1rem;
  text-decoration: underline;
}
.middle__answers--container .answer--choices--cross-out-undo div {
  cursor: pointer;
  transform: translateY(-1rem);
}
.middle__answers--container .answer--choices--cross-out-circle {
  cursor: pointer;
  display: none;
  font-family: sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  align-items: center;
  justify-content: center;
  border: 1px solid black;
  width: 2.2rem;
  height: 1.8rem;
  border-radius: 5rem;
  transform: translateY(-1rem);
  margin-left: 2rem;
  margin-right: 2rem;
}
.middle__answers--container .answer--choices--cross-out-circle .cross-out-line {
  z-index: 100;
  position: absolute;
  height: 0.05px;
  width: 30px;
  border: 1px solid black;
}
.middle__answers--container .answer--choices--choice-container {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.middle__answers--container .answer--choices--choice-container .choice-cross-out {
  position: absolute;
  content: "";
  height: 0.1px;
  display: none;
  transform: translateX(-5px) translateY(-1rem);
  border: 1px solid black;
}
.middle__answers--container .answer--choices--choice {
  width: 100%;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  border-radius: 0.5rem;
  border: 1px solid black;
  margin-bottom: 2rem;
  cursor: pointer;
}
.middle__answers--container .answer--choices--choice--selected {
  box-shadow: 0 0 0 2px #2781d5;
  border: 1px solid #2781d5;
  text-shadow: 0 0 1px grey;
}
.middle__answers--container .answer--choices--choice--selected > .circle-container > .circle {
  background-color: #2781d5;
  color: white;
  border: 2px solid grey;
}
.middle__answers--container .answer--choices--choice--unselected:hover {
  text-shadow: 0px 0px 1px grey;
  transform: scale(1.02);
  box-shadow: 1px 1px 0px 1px lightgrey;
}
.middle__answers--container .answer--choices--choice:active {
  transform: scale(1);
  box-shadow: none;
}
.middle__answers--container .answer--choices--choice .circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.3rem;
  height: 2.3rem;
  border: 2px solid black;
  border-radius: 100%;
  font-size: 1.4rem;
}
.middle__answers--container .answer--choices--choice .circle-container {
  margin-right: 1rem;
  display: flex 0 2.3em;
  justify-content: start;
  align-items: start;
}
.middle__answers--container .answer--choices--choice .answer-text-container {
  display: flex;
  flex-grow: 1;
  padding-left: 0.5rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.middle__answers--container .answer--choices--choice .answer-text {
  flex-basis: 92%;
  margin: 0;
}
.middle .vertical-divider {
  width: 0.5%;
  flex-grow: 1;
  margin: 1rem 0.5rem;
  background-color: #cecece;
}

.bottom {
  width: 100%;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 11%;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 75em) {
  .bottom {
    flex-basis: 15%;
  }
}
.bottom .review-page-panel--get-your-score-button {
  display: none;
}
@media only screen and (max-width: 75em) {
  .bottom .review-page-panel--get-your-score-button {
    margin-top: 0;
    margin-left: auto;
  }
}
.bottom--name {
  user-select: none;
  margin-left: 4rem;
  font-size: 2rem;
}
@media only screen and (max-width: 75em) {
  .bottom--name {
    margin-left: 1rem;
    font-size: 15px;
  }
}
.bottom--name span {
  color: #2781d5;
}
.bottom--question-selector {
  margin: 0 auto;
  display: flex;
  font-weight: bold;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  width: 13rem;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  color: white;
  background-color: black;
  cursor: pointer;
}
.bottom--question-selector .question-selector-icon {
  margin-left: 0.3rem;
  width: 2rem;
  height: 2rem;
}
.bottom--nav-button-container {
  display: flex;
  justify-content: end;
  padding-right: 2rem;
}
@media only screen and (max-width: 75em) {
  .bottom--nav-button-container {
    padding-right: 0;
  }
}
.bottom--nav-button {
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  padding: 1rem 2rem;
  border-radius: 2rem;
  font-size: 1.5rem;
  font-weight: bold;
  min-width: 4rem;
  background-color: #2781d5;
  user-select: none;
  cursor: pointer;
  transition: 0.2s;
}
.bottom--nav-button:hover {
  transform: scale(1.05);
  background-color: #1761a5;
}
.bottom--nav-button:active {
  transform: scale(1);
}

/* LOADER */
.ml-form-embedSubmitLoad {
  display: inline-block;
  width: 20px;
  height: 20px;
}

.g-recaptcha {
  transform: scale(1);
  -webkit-transform: scale(1);
  transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.ml-form-embedSubmitLoad:after {
  content: " ";
  display: block;
  width: 11px;
  height: 11px;
  margin: 1px;
  border-radius: 50%;
  border: 4px solid #fff;
  border-color: #ffffff #ffffff #ffffff transparent;
  animation: ml-form-embedSubmitLoad 1.2s linear infinite;
}

@keyframes ml-form-embedSubmitLoad {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#mlb2-8590278.ml-form-embedContainer {
  box-sizing: border-box;
  display: table;
  margin: 0 auto;
  position: static;
  width: 100% !important;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent h4 {
  text-align: center;
}

#mlb2-8590278.ml-form-embedContainer h4,
#mlb2-8590278.ml-form-embedContainer p,
#mlb2-8590278.ml-form-embedContainer span,
#mlb2-8590278.ml-form-embedContainer button {
  text-transform: none !important;
  letter-spacing: normal !important;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper {
  background-color: #f6f6f6;
  border-width: 0px;
  border-color: transparent;
  border-radius: 4px;
  border-style: solid;
  box-sizing: border-box;
  display: inline-block !important;
  margin: 0;
  padding: 0;
  position: relative;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper.embedPopup,
#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper.embedDefault {
  width: 400px;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper.embedForm {
  max-width: 400px;
  width: 100%;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-align-left {
  text-align: left;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-align-center {
  text-align: center;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-align-default {
  display: table-cell !important;
  vertical-align: middle !important;
  text-align: center !important;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-align-right {
  text-align: right;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedHeader img {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  height: auto;
  margin: 0 auto !important;
  max-width: 100%;
  width: undefinedpx;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody,
#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody {
  padding: 20px 20px 0 20px;
}
@media only screen and (max-width: 75em) {
  #mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody,
#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody {
    padding: 0px 20px 0 20px;
  }
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody.ml-form-embedBodyHorizontal {
  padding-bottom: 0;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent,
#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent {
  text-align: left;
  margin: 0 0 20px 0;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent h4,
#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent h4 {
  color: #000000;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 30px;
  font-weight: 400;
  margin: 0 0 10px 0;
  word-break: break-word;
}
@media only screen and (max-width: 75em) {
  #mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent h4,
#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent h4 {
    font-size: 20px;
  }
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p,
#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p {
  color: #000000;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin: 0 0 10px 0;
  text-align: left;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ul,
#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ol,
#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ul,
#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ol {
  color: #000000;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 14px;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ol ol,
#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ol ol {
  list-style-type: lower-alpha;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ol ol ol,
#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ol ol ol {
  list-style-type: lower-roman;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p a,
#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p a {
  color: #000000;
  text-decoration: underline;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-block-form .ml-field-group {
  text-align: left !important;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-block-form .ml-field-group label {
  margin-bottom: 5px;
  color: #333333;
  font-size: 14px;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-style: normal;
  text-decoration: none;
  display: inline-block;
  line-height: 20px;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p:last-child,
#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p:last-child {
  margin: 0;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody form {
  margin: 0;
  width: 100%;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent,
#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow {
  margin: 0 0 20px 0;
  width: 100%;
}
@media only screen and (max-width: 75em) {
  #mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent,
#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow {
    margin: 0 0 10px 0;
  }
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow {
  float: left;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent.horozintalForm {
  margin: 0;
  padding: 0 0 20px 0;
  width: 100%;
  height: auto;
  float: left;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow {
  margin: 0 0 10px 0;
  width: 100%;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow.ml-last-item {
  margin: 0;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow.ml-formfieldHorizintal {
  margin: 0;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input {
  background-color: #ffffff !important;
  color: #333333 !important;
  border-color: #cccccc;
  border-radius: 4px !important;
  border-style: solid !important;
  border-width: 1px !important;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 14px !important;
  height: auto;
  line-height: 21px !important;
  margin-bottom: 0;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  padding: 10px 10px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  max-width: 100% !important;
}
#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::-webkit-input-placeholder,
#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input::-webkit-input-placeholder {
  color: #333333;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::-moz-placeholder,
#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input::-moz-placeholder {
  color: #333333;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input:-ms-input-placeholder,
#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input:-ms-input-placeholder {
  color: #333333;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input:-moz-placeholder,
#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input:-moz-placeholder {
  color: #333333;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow textarea, #mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow textarea {
  background-color: #ffffff !important;
  color: #333333 !important;
  border-color: #cccccc;
  border-radius: 4px !important;
  border-style: solid !important;
  border-width: 1px !important;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 14px !important;
  height: auto;
  line-height: 21px !important;
  margin-bottom: 0;
  margin-top: 0;
  padding: 10px 10px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  max-width: 100% !important;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label::before, #mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label::before, #mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::before, #mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::before, #mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before, #mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before {
  border-color: #cccccc !important;
  background-color: #ffffff !important;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input.custom-control-input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
  position: absolute;
  z-index: -1;
  opacity: 0;
  margin-top: 5px;
  margin-left: -1.5rem;
  overflow: visible;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::before, #mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::before, #mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before, #mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before {
  border-radius: 4px !important;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input:checked ~ .custom-control-label::after, #mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow input[type=checkbox]:checked ~ .label-description::after, #mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox input[type=checkbox]:checked ~ .label-description::after, #mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after, #mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after, #mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox input[type=checkbox]:checked ~ .label-description::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input:checked ~ .custom-control-label::before, #mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-input:checked ~ .custom-control-label::before, #mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before, #mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before, #mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox input[type=checkbox]:checked ~ .label-description::before, #mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox input[type=checkbox]:checked ~ .label-description::before, #mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow input[type=checkbox]:checked ~ .label-description::before {
  border-color: #000000 !important;
  background-color: #176cff !important;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label::before, #mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label::before, #mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label::after, #mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label::after, #mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::before, #mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::after, #mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::before, #mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::after {
  top: 2px;
  box-sizing: border-box;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::after, #mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before, #mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after {
  top: 0px !important;
  box-sizing: border-box !important;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before, #mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after {
  top: 0px !important;
  box-sizing: border-box !important;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::after {
  top: 0px !important;
  box-sizing: border-box !important;
  position: absolute;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before {
  top: 0px !important;
  box-sizing: border-box !important;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-control-label::before {
  position: absolute;
  top: 4px;
  left: -1.5rem;
  display: block;
  width: 16px;
  height: 16px;
  pointer-events: none;
  content: "";
  background-color: #ffffff;
  border: #adb5bd solid 1px;
  border-radius: 50%;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-control-label::after {
  position: absolute;
  top: 2px !important;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before, #mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before {
  position: absolute;
  top: 4px;
  left: -1.5rem;
  display: block;
  width: 16px;
  height: 16px;
  pointer-events: none;
  content: "";
  background-color: #ffffff;
  border: #adb5bd solid 1px;
  border-radius: 50%;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::after {
  position: absolute;
  top: 0px !important;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after {
  position: absolute;
  top: 0px !important;
  left: -1.5rem;
  display: block;
  width: 16px;
  height: 16px;
  content: "";
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-radio .custom-control-label::after {
  background: no-repeat 50%/50% 50%;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-checkbox .custom-control-label::after, #mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::after, #mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::after, #mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after {
  background: no-repeat 50%/50% 50%;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-control, #mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-control {
  position: relative;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input, #mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-input, #mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-input, #mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-input {
  position: absolute;
  z-index: -1;
  opacity: 0;
  box-sizing: border-box;
  padding: 0;
  cursor: pointer;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label, #mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label, #mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label, #mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label {
  color: #000000;
  font-size: 12px !important;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 22px;
  margin-bottom: 0;
  position: relative;
  vertical-align: top;
  font-style: normal;
  font-weight: 700;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-select, #mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-select {
  background-color: #ffffff !important;
  color: #333333 !important;
  border-color: #cccccc;
  border-radius: 4px !important;
  border-style: solid !important;
  border-width: 1px !important;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 14px !important;
  line-height: 20px !important;
  margin-bottom: 0;
  margin-top: 0;
  padding: 10px 28px 10px 12px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  max-width: 100% !important;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  background: url("https://assets.mlcdn.com/ml/images/default/dropdown.svg") no-repeat right 0.75rem center/8px 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow {
  height: auto;
  width: 100%;
  float: left;
}

.ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal {
  width: 70%;
  float: left;
}

.ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-button-horizontal {
  width: 30%;
  float: left;
}

.ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-button-horizontal.labelsOn {
  padding-top: 25px;
}

.ml-form-formContent.horozintalForm .ml-form-horizontalRow .horizontal-fields {
  box-sizing: border-box;
  float: left;
  padding-right: 10px;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input {
  background-color: #ffffff;
  color: #333333;
  border-color: #cccccc;
  border-radius: 4px;
  border-style: solid;
  border-width: 1px;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 0;
  margin-top: 0;
  padding: 10px 10px;
  width: 100%;
  box-sizing: border-box;
  overflow-y: initial;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow button {
  background-color: #000000 !important;
  border-color: #000000;
  border-style: solid;
  border-width: 1px;
  border-radius: 4px;
  box-shadow: none;
  color: #ffffff !important;
  cursor: pointer;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 14px !important;
  font-weight: 700;
  line-height: 20px;
  margin: 0 !important;
  padding: 10px !important;
  width: 100%;
  height: auto;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow button:hover {
  background-color: #333333 !important;
  border-color: #333333 !important;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
  position: absolute;
  z-index: -1;
  opacity: 0;
  margin-top: 5px;
  margin-left: -1.5rem;
  overflow: visible;
  cursor: pointer;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description {
  color: #000000;
  display: block;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 12px;
  text-align: left;
  margin-bottom: 0;
  position: relative;
  vertical-align: top;
  padding-left: 1rem;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label {
  font-weight: normal;
  margin: 0;
  padding: 0;
  position: relative;
  display: block;
  min-height: 24px;
  padding-left: 24px;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label a {
  color: #000000;
  text-decoration: underline;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label p {
  color: #000000 !important;
  font-family: "Open Sans", Arial, Helvetica, sans-serif !important;
  font-size: 12px !important;
  font-weight: normal !important;
  line-height: 18px !important;
  padding: 0 !important;
  margin: 0 5px 0 0 !important;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label p:last-child {
  margin: 0;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit {
  margin: 0 0 20px 0;
  float: left;
  width: 100%;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button {
  background-color: #53d7ff !important;
  border: none !important;
  border-radius: 4px !important;
  box-shadow: none !important;
  color: #ffffff !important;
  cursor: pointer;
  font-family: "Open Sans", Arial, Helvetica, sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 21px !important;
  height: auto;
  padding: 10px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  transition: 0.2s;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button.loading {
  display: none;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button:hover {
  background-color: #1296ce !important;
}

.ml-subscribe-close {
  width: 30px;
  height: 30px;
  background: url("https://assets.mlcdn.com/ml/images/default/modal_close.png") no-repeat;
  background-size: 30px;
  cursor: pointer;
  margin-top: -10px;
  margin-right: -10px;
  position: absolute;
  top: 0;
  right: 0;
}

.ml-error input, .ml-error textarea, .ml-error select {
  border-color: red !important;
}

.ml-error .custom-checkbox-radio-list {
  border: 1px solid red !important;
  border-radius: 4px;
  padding: 10px;
}

.ml-error .label-description,
.ml-error .label-description p,
.ml-error .label-description p a,
.ml-error label:first-child {
  color: #ff0000 !important;
}

#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p,
#mlb2-8590278.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p:first-letter {
  color: #ff0000 !important;
}

@media only screen and (max-width: 400px) {
  .ml-form-embedWrapper.embedDefault, .ml-form-embedWrapper.embedPopup {
    width: 100% !important;
  }

  .ml-form-formContent.horozintalForm {
    float: left !important;
  }

  .ml-form-formContent.horozintalForm .ml-form-horizontalRow {
    height: auto !important;
    width: 100% !important;
    float: left !important;
  }

  .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal {
    width: 100% !important;
  }

  .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal > div {
    padding-right: 0px !important;
    padding-bottom: 10px;
  }

  .ml-form-formContent.horozintalForm .ml-button-horizontal {
    width: 100% !important;
  }

  .ml-form-formContent.horozintalForm .ml-button-horizontal.labelsOn {
    padding-top: 0px !important;
  }
}
.qotd-page {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  opacity: 100%;
  margin: auto auto;
}

.qotd-page-container {
  border-radius: 2rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 3rem;
  padding-right: 3rem;
  background-color: white;
  width: 70rem;
}
@media only screen and (max-width: 37.5em) {
  .qotd-page-container {
    width: 95%;
    height: 60%;
    padding-top: 1rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.section-title.qotd-page__title {
  margin-top: 1.5rem;
  font-size: 3rem;
  margin-bottom: 2rem;
  margin-bottom: 0;
}
@media only screen and (max-width: 37.5em) {
  .section-title.qotd-page__title {
    font-size: 3.25rem;
  }
}

.qotd-page__text {
  margin-top: 2rem;
  margin-bottom: 3rem;
  line-height: 1.5;
  font-size: 2rem;
  text-align: center;
  color: grey;
  width: 90%;
}
@media only screen and (max-width: 37.5em) {
  .qotd-page__text {
    font-size: 3rem;
    line-height: 1.25;
  }
}

.qotd-page__subtitle {
  margin-bottom: 0;
}

.grey-out {
  visibility: hidden;
  opacity: 0;
  width: 100vw;
  height: 100vh;
  background-color: grey;
  position: absolute;
  z-index: 9999;
  transition: opacity 0.4s;
}

.mailer-lite-container {
  width: 100%;
}

/* LOADER */
.ml-form-embedSubmitLoad {
  display: inline-block;
  width: 20px;
  height: 20px;
}

.g-recaptcha {
  transform: scale(1);
  -webkit-transform: scale(1);
  transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.ml-form-embedSubmitLoad:after {
  content: " ";
  display: block;
  width: 11px;
  height: 11px;
  margin: 1px;
  border-radius: 50%;
  border: 4px solid #fff;
  border-color: #ffffff #ffffff #ffffff transparent;
  animation: ml-form-embedSubmitLoad 1.2s linear infinite;
}

@keyframes ml-form-embedSubmitLoad {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#mlb2-8347156.ml-form-embedContainer {
  box-sizing: border-box;
  display: table;
  margin: 0 auto;
  position: static;
  width: 100% !important;
}

#mlb2-8347156.ml-form-embedContainer h4,
#mlb2-8347156.ml-form-embedContainer p,
#mlb2-8347156.ml-form-embedContainer span,
#mlb2-8347156.ml-form-embedContainer button {
  text-transform: none !important;
  letter-spacing: normal !important;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper {
  border-width: 0px;
  border-color: transparent;
  border-radius: 4px;
  border-style: solid;
  box-sizing: border-box;
  display: inline-block !important;
  margin: 0;
  padding: 0;
  position: relative;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper.embedPopup,
#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper.embedDefault {
  width: 400px;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper.embedForm {
  max-width: 400px;
  width: 100%;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-align-left {
  text-align: left;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-align-center {
  text-align: center;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-align-default {
  display: table-cell !important;
  vertical-align: middle !important;
  text-align: center !important;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-align-right {
  text-align: right;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedHeader img {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  height: auto;
  margin: 0 auto !important;
  max-width: 100%;
  width: undefinedpx;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody,
#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody {
  padding: 0px 20px 0 20px;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody.ml-form-embedBodyHorizontal {
  padding-bottom: 0;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent,
#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent {
  text-align: left;
  margin: 0 0 20px 0;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent h4,
#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent h4 {
  color: #000000;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 30px;
  font-weight: 400;
  margin: 0 0 10px 0;
  text-align: center;
  word-break: break-word;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p,
#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p {
  color: #000000;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin: 0 0 10px 0;
  text-align: left;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ul,
#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ol,
#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ul,
#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ol {
  color: #000000;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 14px;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ol ol,
#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ol ol {
  list-style-type: lower-alpha;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ol ol ol,
#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ol ol ol {
  list-style-type: lower-roman;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p a,
#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p a {
  color: #000000;
  text-decoration: underline;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-block-form .ml-field-group {
  text-align: left !important;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-block-form .ml-field-group label {
  margin-bottom: 5px;
  color: #333333;
  font-size: 14px;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-style: normal;
  text-decoration: none;
  display: inline-block;
  line-height: 20px;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p:last-child,
#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p:last-child {
  margin: 0;
  text-align: center;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody form {
  margin: 0;
  width: 100%;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent,
#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow {
  margin: 0 0 20px 0;
  width: 100%;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow {
  float: left;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent.horozintalForm {
  margin: 0;
  padding: 0 0 20px 0;
  width: 100%;
  height: auto;
  float: left;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow {
  margin: 0 0 10px 0;
  width: 100%;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow.ml-last-item {
  margin: 0;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow.ml-formfieldHorizintal {
  margin: 0;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input {
  background-color: #ffffff !important;
  color: #333333 !important;
  border-color: #cccccc;
  border-radius: 4px !important;
  border-style: solid !important;
  border-width: 1px !important;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 14px !important;
  height: auto;
  line-height: 21px !important;
  margin-bottom: 0;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  padding: 10px 10px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  max-width: 100% !important;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::-webkit-input-placeholder,
#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input::-webkit-input-placeholder {
  color: #333333;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::-moz-placeholder,
#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input::-moz-placeholder {
  color: #333333;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input:-ms-input-placeholder,
#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input:-ms-input-placeholder {
  color: #333333;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input:-moz-placeholder,
#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input:-moz-placeholder {
  color: #333333;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow textarea, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow textarea {
  background-color: #ffffff !important;
  color: #333333 !important;
  border-color: #cccccc;
  border-radius: 4px !important;
  border-style: solid !important;
  border-width: 1px !important;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 14px !important;
  height: auto;
  line-height: 21px !important;
  margin-bottom: 0;
  margin-top: 0;
  padding: 10px 10px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  max-width: 100% !important;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label::before, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label::before, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::before, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::before, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before {
  border-color: #cccccc !important;
  background-color: #ffffff !important;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input.custom-control-input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
  position: absolute;
  z-index: -1;
  opacity: 0;
  margin-top: 5px;
  margin-left: -1.5rem;
  overflow: visible;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::before, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::before, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before {
  border-radius: 4px !important;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow input[type=checkbox]:checked ~ .label-description::after, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox input[type=checkbox]:checked ~ .label-description::after, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox input[type=checkbox]:checked ~ .label-description::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input:checked ~ .custom-control-label::after, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input:checked ~ .custom-control-label::before, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-input:checked ~ .custom-control-label::before, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox input[type=checkbox]:checked ~ .label-description::before, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox input[type=checkbox]:checked ~ .label-description::before, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow input[type=checkbox]:checked ~ .label-description::before {
  border-color: #000000 !important;
  background-color: #000000 !important;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label::before, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label::before, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label::after, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label::after, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::before, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::after, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::before, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::after {
  top: 2px;
  box-sizing: border-box;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::after, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after {
  top: 0px !important;
  box-sizing: border-box !important;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after {
  top: 0px !important;
  box-sizing: border-box !important;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::after {
  top: 0px !important;
  box-sizing: border-box !important;
  position: absolute;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before {
  top: 0px !important;
  box-sizing: border-box !important;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-control-label::before {
  position: absolute;
  top: 4px;
  left: -1.5rem;
  display: block;
  width: 16px;
  height: 16px;
  pointer-events: none;
  content: "";
  background-color: #ffffff;
  border: #adb5bd solid 1px;
  border-radius: 50%;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-control-label::after {
  position: absolute;
  top: 2px !important;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before {
  position: absolute;
  top: 4px;
  left: -1.5rem;
  display: block;
  width: 16px;
  height: 16px;
  pointer-events: none;
  content: "";
  background-color: #ffffff;
  border: #adb5bd solid 1px;
  border-radius: 50%;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::after {
  position: absolute;
  top: 0px !important;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after {
  position: absolute;
  top: 0px !important;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-radio .custom-control-label::after {
  background: no-repeat 50%/50% 50%;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-checkbox .custom-control-label::after, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::after, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::after, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after {
  background: no-repeat 50%/50% 50%;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-control, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-control {
  position: relative;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-input, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-input, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-input {
  position: absolute;
  z-index: -1;
  opacity: 0;
  box-sizing: border-box;
  padding: 0;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label {
  color: #000000;
  font-size: 12px !important;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 22px;
  margin-bottom: 0;
  position: relative;
  vertical-align: top;
  font-style: normal;
  font-weight: 700;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-select, #mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-select {
  background-color: #ffffff !important;
  color: #333333 !important;
  border-color: #cccccc;
  border-radius: 4px !important;
  border-style: solid !important;
  border-width: 1px !important;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 14px !important;
  line-height: 20px !important;
  margin-bottom: 0;
  margin-top: 0;
  padding: 10px 28px 10px 12px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  max-width: 100% !important;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  background: url("https://assets.mlcdn.com/ml/images/default/dropdown.svg") no-repeat right 0.75rem center/8px 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow {
  height: auto;
  width: 100%;
  float: left;
}

.ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal {
  width: 70%;
  float: left;
}

.ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-button-horizontal {
  width: 30%;
  float: left;
}

.ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-button-horizontal.labelsOn {
  padding-top: 25px;
}

.ml-form-formContent.horozintalForm .ml-form-horizontalRow .horizontal-fields {
  box-sizing: border-box;
  float: left;
  padding-right: 10px;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input {
  background-color: #ffffff;
  color: #333333;
  border-color: #cccccc;
  border-radius: 4px;
  border-style: solid;
  border-width: 1px;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 0;
  margin-top: 0;
  padding: 10px 10px;
  width: 100%;
  box-sizing: border-box;
  overflow-y: initial;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow button {
  background-color: #53d7ff !important;
  border-color: #53d7ff;
  border-style: solid;
  border-width: 1px;
  border-radius: 4px;
  box-shadow: none;
  color: #ffffff !important;
  cursor: pointer;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 14px !important;
  font-weight: 700;
  line-height: 20px;
  margin: 0 !important;
  padding: 10px !important;
  width: 100%;
  height: auto;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow button:hover {
  background-color: #00c4ff !important;
  border-color: #00c4ff !important;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
  position: absolute;
  z-index: -1;
  opacity: 0;
  margin-top: 5px;
  margin-left: -1.5rem;
  overflow: visible;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description {
  color: #000000;
  display: block;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 12px;
  text-align: left;
  margin-bottom: 0;
  position: relative;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label {
  font-weight: normal;
  margin: 0;
  padding: 0;
  position: relative;
  display: block;
  min-height: 24px;
  padding-left: 24px;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label a {
  color: #000000;
  text-decoration: underline;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label p {
  color: #000000 !important;
  font-family: "Open Sans", Arial, Helvetica, sans-serif !important;
  font-size: 12px !important;
  font-weight: normal !important;
  line-height: 18px !important;
  padding: 0 !important;
  margin: 0 5px 0 0 !important;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label p:last-child {
  margin: 0;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit {
  margin: 0 0 20px 0;
  float: left;
  width: 100%;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button {
  transition: 0.2s;
  background-color: #53d7ff !important;
  border: none !important;
  border-radius: 4px !important;
  box-shadow: none !important;
  color: #ffffff !important;
  cursor: pointer;
  font-family: "Open Sans", Arial, Helvetica, sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 21px !important;
  height: auto;
  padding: 10px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button.loading {
  display: none;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button:hover {
  background-color: #00c4ff !important;
}

.ml-subscribe-close {
  width: 30px;
  height: 30px;
  background: url("https://assets.mlcdn.com/ml/images/default/modal_close.png") no-repeat;
  background-size: 30px;
  cursor: pointer;
  margin-top: -10px;
  margin-right: -10px;
  position: absolute;
  top: 0;
  right: 0;
}

.ml-error input, .ml-error textarea, .ml-error select {
  border-color: red !important;
}

.ml-error .custom-checkbox-radio-list {
  border: 1px solid red !important;
  border-radius: 4px;
  padding: 10px;
}

.ml-error .label-description,
.ml-error .label-description p,
.ml-error .label-description p a,
.ml-error label:first-child {
  color: #ff0000 !important;
}

#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p,
#mlb2-8347156.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p:first-letter {
  color: #ff0000 !important;
}

@media only screen and (max-width: 400px) {
  .ml-form-embedWrapper.embedDefault, .ml-form-embedWrapper.embedPopup {
    width: 100% !important;
  }

  .ml-form-formContent.horozintalForm {
    float: left !important;
  }

  .ml-form-formContent.horozintalForm .ml-form-horizontalRow {
    height: auto !important;
    width: 100% !important;
    float: left !important;
  }

  .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal {
    width: 100% !important;
  }

  .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal > div {
    padding-right: 0px !important;
    padding-bottom: 10px;
  }

  .ml-form-formContent.horozintalForm .ml-button-horizontal {
    width: 100% !important;
  }

  .ml-form-formContent.horozintalForm .ml-button-horizontal.labelsOn {
    padding-top: 0px !important;
  }
}
.scoring {
  background-color: #f1fffe;
  width: 75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 2rem;
  border: 1px solid lightgrey;
  border-radius: 1.5rem;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 37.5em) {
  .scoring {
    width: 80%;
  }
}
.scoring__container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 37.5em) {
  .scoring__container h1 {
    margin-top: 2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .scoring__container {
    width: 100%;
    padding: 8rem 0;
  }
}

table {
  border-collapse: collapse;
}

td {
  font-size: 2rem;
  width: 20rem;
  height: 4rem;
  text-align: center;
  background-color: white;
  border: 1px solid lightgrey;
  padding: 0;
  border-spacing: 0;
}
@media only screen and (max-width: 37.5em) {
  td {
    width: 9rem;
    height: 1rem;
    padding: 0.5rem 0;
  }
}

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

h1 {
  text-align: center;
  color: #333;
}

.section-title {
  width: -moz-fit-content;
  width: fit-content;
  display: table;
  margin: 0 auto;
  margin-bottom: 8rem;
}
@media only screen and (min-width: 112.5em) {
  .section-title {
    font-size: 3.5rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .section-title {
    margin-bottom: 4rem;
  }
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

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