@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Anton&display=swap");
:root {
  --fuenteTitulos: "Tektur", cursive;
}

/*┌───────────────────────────────────────────── ∘°Media Queries°∘ ─────────────────────────────────────────────┐*/
@font-face {
  font-family: "Roboto-Regular"; /* Nombre de la fuente que usarás en CSS */
  src: url("fonts/Roboto-Regular.ttf") format("ttf"); /* Ruta al archivo de la fuente */
  font-weight: normal; /* Puedes especificar peso y estilo si la fuente tiene variantes */
  font-style: normal;
}
@font-face {
  font-family: "Manito LP Std"; /* Nombre de la fuente que usarás en CSS */
  src: url("/build/fonts/ManitoLPStdRegular.otf") format("opentype"); /* Ruta al archivo de la fuente */
}
a {
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Manito LP Std";
}

li {
  text-align: start;
  list-style: square;
  font-weight: 500;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #f2ded1;
  max-width: 2000px;
  margin: 0 auto;
}

html {
  box-sizing: border-box;
  font-size: 62.5%; /*10px = 1 Rem*/
  overflow-x: hidden;
  scroll-behavior: smooth;
}

*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

p {
  margin: 0 !important;
}

legend {
  font-size: 2rem;
}

label {
  display: block;
}

.no-margin {
  margin: 0rem !important;
}

.invisible {
  visibility: hidden;
}

.text-center {
  text-align: center !important;
}

.text-justify {
  text-align: justify !important;
}

.text-white {
  color: white !important;
}

/*┌───────────────────────────────────────────── ∘°Boostrap°∘ ─────────────────────────────────────────────┐*/
.k-form-container {
  width: 100%;
}
.k-form-container .k-form__division {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1200px) {
  .k-form-container .k-form__division {
    flex-direction: row;
    gap: 1rem;
  }
}
.k-form-container .k-form__field {
  width: 100%;
  margin: 1rem 0;
}
.k-form-container .k-form__field label {
  color: black;
  font-size: 1.4rem;
  text-transform: uppercase;
  display: block;
}
.k-form-container .k-form__field input, .k-form-container .k-form__field select {
  width: 100%;
  border-radius: 10px;
  padding: 0.5rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.k-form-container .k-form__field input:hover, .k-form-container .k-form__field select:hover {
  cursor: pointer;
}
.k-form-container .k-form__field input:focus, .k-form-container .k-form__field select:focus {
  opacity: 1;
}
.k-form-container .k-form__field .form-text-area {
  width: 100%;
  max-width: 100%;
  min-width: 50%;
  overflow: hidden;
  border-radius: 10px;
  height: 8rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  min-height: 8rem;
  max-height: 10rem;
}

.portada {
  position: relative;
  height: auto;
  max-height: 1100px;
  background-color: #e32000;
}
@media (min-width: 480px) {
  .portada {
    background-color: red;
    height: 100vh;
  }
}
.portada .portada__video {
  position: absolute;
  width: 100%;
  z-index: 1;
  display: none;
}
@media (min-width: 480px) {
  .portada .portada__video {
    display: block;
    height: 100%;
    object-fit: contain;
  }
}
@media (min-width: 1200px) {
  .portada .portada__video {
    display: inline;
    top: -6rem;
  }
}
.portada .portada__video--mobile {
  position: relative;
  width: 100%;
  object-fit: cover;
  max-height: 700px;
  z-index: 1;
}
@media (min-width: 480px) {
  .portada .portada__video--mobile {
    display: none;
  }
}
.portada .portada__cinta {
  position: absolute;
  width: 100%;
  bottom: -3vh;
  z-index: 2;
  left: 0;
}
@media (min-width: 992px) {
  .portada .portada__cinta {
    bottom: -6vh;
  }
}
@media (min-width: 1200px) {
  .portada .portada__cinta {
    bottom: -10%;
  }
}
.portada .portada__mango {
  position: absolute;
  bottom: -10vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}
.portada .portada__mango img {
  width: 100%;
}
@media (min-width: 1200px) {
  .portada .portada__mango img {
    width: 18.5vw;
    max-width: 370px;
    min-height: 300px;
  }
}
@media (min-width: 1440px) {
  .portada .portada__mango img {
    width: 22vw;
  }
}

.portada__contact {
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: absolute;
  width: 100%;
  top: 2rem;
}
.portada__contact .portada__contact-logo {
  max-width: 100px;
  z-index: 2;
}
@media (min-width: 480px) {
  .portada__contact .portada__contact-logo {
    max-width: 200px;
  }
}
.portada__contact .portada__contact-logo img {
  width: 100%;
}
.portada__contact .portada__contact-text {
  z-index: 2;
}
.portada__contact .portada__contact-text a {
  border-radius: 50px;
  border: solid 2px white;
  color: white;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.btn-mono {
  position: absolute;
  max-width: 40vw;
  bottom: 17vh;
  left: 33%;
  z-index: 2;
  animation: escalar 0.5s ease-in-out infinite alternate-reverse;
}
@media (min-width: 480px) {
  .btn-mono {
    left: 0;
    transform: unset;
    bottom: 15vh;
    max-width: 15vw;
    margin-left: 5rem;
    min-width: 180px;
  }
}
@media (min-width: 1200px) {
  .btn-mono {
    max-width: 20rem;
    left: 8%;
    top: 60%;
  }
}

#mango {
  display: none;
  transition: transform 0.3s ease-out; /* Ajusta la duración y el tipo de transición */
}
@media (min-width: 1200px) {
  #mango {
    display: inline;
    visibility: visible;
    position: static; /* o 'relative', 'absolute', pero no 'static' */
  }
}

.navbar {
  width: 100%;
  background-color: red;
  height: 8rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 1rem;
  position: fixed;
  transition: top 0.3s ease, opacity 0.3s ease;
  z-index: 1000;
  top: 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  max-width: 2000px;
}
.navbar .navbar__text img {
  width: 100px;
}
@media (min-width: 1200px) {
  .navbar .navbar__text img {
    width: 100px;
  }
}
.navbar .navbar__contacto {
  color: white;
}
.navbar .navbar__contacto a {
  border-radius: 50px;
  border: solid 2px white;
  color: white;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.menu {
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
}
.menu span {
  display: block;
  width: 5rem;
  height: 0.5rem;
  margin-top: 1rem;
  background-color: blue;
  transform-origin: 0px 100%;
  border-radius: 10px;
  transition: all 300ms;
}
.menu .active-menu__linea-1 {
  transform: rotate(45deg) translate(-6px, 0px);
}
.menu .active-menu__linea-2 {
  opacity: 0;
  transform: translate(-20px, 0px);
}
.menu .active-menu__linea-3 {
  transform: rotate(-45deg) translate(0px, 0px);
}

.navbar.hidden {
  top: -100px; /* Ajusta según la altura de tu navbar */
  opacity: 0; /* Hacer que desaparezca */
}

.section2-mango {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
@media (min-width: 768px) {
  .section2-mango {
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    gap: 2rem;
  }
}
.section2-mango .mango__text {
  padding: 1rem;
  margin-top: 5vh;
  text-align: center;
}
@media (min-width: 768px) {
  .section2-mango .mango__text {
    text-align: start;
  }
}
@media (min-width: 1200px) {
  .section2-mango .mango__text {
    margin-top: 20vh;
    margin-left: 10rem;
    min-width: 400px;
  }
}
.section2-mango .mango__text h3 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: red;
}
@media (min-width: 1200px) {
  .section2-mango .mango__text h3 {
    text-align: start;
    font-size: 4.8rem;
    letter-spacing: 0.1rem;
  }
}
.section2-mango .mango__text .text__container {
  margin: 0 8%;
  text-align: justify;
}
@media (min-width: 768px) {
  .section2-mango .mango__text .text__container {
    width: 400px;
    margin: unset;
  }
}
@media (min-width: 1200px) {
  .section2-mango .mango__text .text__container {
    width: 500px;
    margin: unset;
  }
}
.section2-mango .mango__text .text__container p {
  font-size: 1.6rem;
  line-height: 1.5rem;
}
@media (min-width: 768px) {
  .section2-mango .mango__text .text__container p {
    text-align: justify;
  }
}
@media (min-width: 1200px) {
  .section2-mango .mango__text .text__container p {
    text-align: justify;
    line-height: unset;
    font-size: 2.5rem;
    width: 100%;
  }
}
.section2-mango .mango__img-mango {
  position: relative;
  height: 100%;
}
@media (min-width: 1200px) {
  .section2-mango .mango__img-mango {
    margin-right: 10rem;
    min-width: 400px;
  }
}
.section2-mango .mango__img-mango .mango__section2 {
  display: block;
  margin: auto;
  width: 100%;
  max-width: 220px;
}
@media (min-width: 1200px) {
  .section2-mango .mango__img-mango .mango__section2 {
    margin-top: 5rem;
    visibility: hidden;
  }
}
.section2-mango .mango__img-mango .globo1 {
  display: none;
}
@media (min-width: 1440px) {
  .section2-mango .mango__img-mango .globo1 {
    position: absolute;
    display: inline;
    width: 55%;
    right: -20rem;
    top: 35rem;
    z-index: 100;
    animation: flotar 2s infinite ease-in-out alternate-reverse;
  }
}
@media (min-width: 1441px) {
  .section2-mango .mango__img-mango .globo1 {
    position: absolute;
    display: inline;
    width: 80%;
    right: -27rem;
    top: 26rem;
    z-index: 100;
    animation: flotar 2s infinite ease-in-out alternate-reverse;
  }
}
.section2-mango .mango__img-mango .globo2 {
  display: none;
}
@media (min-width: 1440px) {
  .section2-mango .mango__img-mango .globo2 {
    position: absolute;
    display: inline;
    width: 55%;
    right: 25rem;
    top: 20rem;
    z-index: 100;
    animation: flotar 2s infinite ease-in-out alternate-reverse;
  }
}
@media (min-width: 1441px) {
  .section2-mango .mango__img-mango .globo2 {
    position: absolute;
    display: inline;
    width: 60%;
    top: 15rem;
    left: -17rem;
    z-index: 100;
    animation: flotar 1s infinite ease-in alternate-reverse;
  }
}
.section2-mango .mango__img-mango .globo3 {
  display: none;
}
@media (min-width: 1440px) {
  .section2-mango .mango__img-mango .globo3 {
    display: inline;
    width: 50%;
    position: absolute;
    top: 20rem;
    right: -20rem;
    z-index: 100;
    animation: flotar 3s infinite ease-in alternate-reverse;
  }
}
@media (min-width: 1441px) {
  .section2-mango .mango__img-mango .globo3 {
    display: inline;
    width: 60%;
    position: absolute;
    top: 10rem;
    right: -15rem;
    z-index: 100;
    animation: flotar 3s infinite ease-in alternate-reverse;
  }
}

@keyframes flotar {
  0% {
    transform: translateY(1rem);
  }
  100% {
    transform: translateY(-1rem);
  }
}
.map-container {
  display: flex;
  flex-direction: column;
  margin-top: 10vh;
  align-items: center;
  padding: 0.5rem;
}
@media (min-width: 1200px) {
  .map-container {
    margin-top: 20vh;
    margin-bottom: 10rem;
  }
}
.map-container .map__text {
  font-size: clamp(1.6rem, 2.5vw, 3rem);
  text-align: center;
  color: red;
}
.map-container .map__text span {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  display: block;
}
.map-container .map__map img {
  display: block;
  margin: auto;
  max-width: 75%;
  position: relative;
  z-index: 2;
}

.treasure-container {
  background-color: red;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (min-width: 1200px) {
  .treasure-container {
    padding-bottom: 10rem;
  }
}
.treasure-container .treasure__title {
  padding-top: 10vh;
}
.treasure-container .treasure__title h4 {
  color: #ffbd0e;
  text-align: center;
  font-size: clamp(4rem, 5vw, 9rem);
  position: relative;
  z-index: 2;
}
.treasure-container .treasure__title span {
  display: block;
  text-align: center;
  font-size: clamp(1.6rem, 2.5vw, 3rem);
  color: white;
}
.treasure-container .treasure__chest {
  position: relative;
}
.treasure-container .treasure__chest .treasure__video-container {
  width: 100%;
}
@media (min-width: 480px) {
  .treasure-container .treasure__chest .treasure__video-container {
    width: 390px;
  }
}
@media (min-width: 1200px) {
  .treasure-container .treasure__chest .treasure__video-container {
    width: 700px;
    height: 700px;
  }
}
.treasure-container .treasure__chest .treasure__video-container video {
  width: 100%;
}
.treasure-container .treasure__chest .treasure__video-container .disponible-cartel {
  position: absolute;
  left: 50%;
  width: 70%;
  bottom: 0;
  transform: translateX(-50%) rotate(8deg);
}
@media (min-width: 1200px) {
  .treasure-container .treasure__chest .treasure__video-container .disponible-cartel {
    width: 80%;
    bottom: -5rem;
    left: 50%;
    transform: rotate(9deg) translateX(-50%);
  }
}
.treasure-container .treasure__chest .treasure__video-container .treasure-logo-splendid {
  position: absolute;
  top: 50%;
  display: none;
}
@media (min-width: 768px) {
  .treasure-container .treasure__chest .treasure__video-container .treasure-logo-splendid {
    display: inline;
    max-width: 200px;
  }
}
@media (min-width: 1200px) {
  .treasure-container .treasure__chest .treasure__video-container .treasure-logo-splendid {
    max-width: 250px;
  }
}

.borde-treasure {
  position: absolute;
  width: 100%;
  left: 0;
  top: -6rem;
}
@media (min-width: 480px) {
  .borde-treasure {
    top: -12rem;
  }
}
@media (min-width: 768px) {
  .borde-treasure {
    top: -18rem;
  }
}
@media (min-width: 1200px) {
  .borde-treasure {
    left: 0;
    top: -30rem;
  }
}

.create-kong-container {
  padding-bottom: 0rem;
  padding-top: 10rem;
  background-color: red;
  position: relative;
}
@media (min-width: 1200px) {
  .create-kong-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 5rem;
  }
}
.create-kong-container .create-title {
  text-align: center;
}
.create-kong-container .create-title h4 {
  font-size: clamp(5rem, 5vw, 9rem);
  color: white;
}
.create-kong-container .create-title h4 span {
  display: block;
  font-size: clamp(3rem, 2.5vw, 5rem);
  color: #ffbd0e;
  animation: temblar 1.5s ease-in-out alternate-reverse infinite;
  max-width: 200px;
  margin: auto;
}
@media (min-width: 1200px) {
  .create-kong-container .create-title h4 span {
    margin: 0 auto;
    max-width: unset;
  }
}
.create-kong-container .create-mono {
  display: block;
  margin: auto;
  max-width: 300px;
}
@media (min-width: 1200px) {
  .create-kong-container .create-mono {
    margin: 0 10rem 0 0;
    max-width: 500px;
  }
}
.create-kong-container .create-mono img {
  width: 100%;
}

.menu-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 1200px) {
  .menu-container {
    width: 350px;
  }
}
.menu-container .text-container {
  width: 100%;
  max-width: 510px;
  display: block;
  margin: auto;
}
.menu-container .text-container p {
  font-size: 1.8rem;
  color: white;
  text-align: center;
}
@media (min-width: 1200px) {
  .menu-container .text-container p {
    text-align: justify;
  }
}
.menu-container .text-container p span {
  font-size: 2.6rem;
  color: #ffbd0e;
  font-family: "Manito LP Std";
}
.menu-container .text-container p span:nth-last-child(1) {
  font-size: 1.8rem;
  color: white;
  font-family: unset;
  font-weight: 900;
}

.create-menu {
  display: flex;
  flex-wrap: wrap; /* Permite que los elementos se envuelvan a la siguiente línea */
  gap: 10px;
  justify-content: center;
  margin-top: 5rem;
}
@media (min-width: 1200px) {
  .create-menu {
    width: 320px;
  }
}
.create-menu .gen-item {
  width: 100px;
  height: 100px; /* Establece la altura de los elementos, ajusta según sea necesario */
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
}
@media (min-width: 1200px) {
  .create-menu .gen-item:hover {
    background-color: rgb(229.5, 229.5, 229.5);
    cursor: pointer;
    border: groove 10px #ffbd0e;
  }
}
.create-menu .gen-item img {
  width: 100%;
}

.animation-escala {
  animation: escalar 1.5s ease-in-out alternate-reverse infinite;
}

@keyframes temblar {
  0% {
    transform: rotate(-2deg);
  }
  100% {
    transform: rotate(2deg);
  }
}
@keyframes escalar {
  0% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.color-pallet {
  margin-top: 3rem;
  margin-bottom: 10rem;
  background-color: #191919;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 2rem;
  border-radius: 20px;
  row-gap: 2rem;
  column-gap: 5rem;
}
@media (min-width: 768px) {
  .color-pallet {
    margin: 0 auto;
    max-width: 400px;
    margin-top: 2rem;
    margin-bottom: 10rem;
  }
}
@media (min-width: 1200px) {
  .color-pallet {
    max-width: 400px;
  }
}
.color-pallet .colors {
  display: block;
  width: 30px;
  height: 30px;
  background-color: pink;
  cursor: pointer;
}
.color-pallet .colors:hover {
  transform: scale(1.1);
}
.color-pallet .color-white {
  background-color: white;
}
.color-pallet .color-marron {
  background-color: #654321;
}
.color-pallet .color-cian {
  background-color: #00ffff;
}
.color-pallet .color-rosa {
  background-color: #f88379;
}
.color-pallet .color-violeta {
  background-color: #8a2be2;
}
.color-pallet .color-naranja {
  background-color: #ff9505;
}
.color-pallet .color-amarillo {
  background-color: #ffdb58;
}
.color-pallet .color-rojo {
  background-color: #dc143c;
}
.color-pallet .color-verde {
  background-color: #50c878;
}
.color-pallet .color-azul {
  background-color: #1e3a8a;
}
.color-pallet .color-lavanda-saturado {
  background-color: #B57EDC;
}
.color-pallet .color-verde-obscuro {
  background-color: #006400;
}
.color-pallet .color-azul-electrico {
  background-color: #0073e6;
}
.color-pallet .color-menta {
  background-color: #ff4300;
}
.color-pallet .color-tinto {
  background-color: #360000;
}
.color-pallet span:nth-child(6) {
  flex-basis: 100%;
}
.color-pallet span:nth-child(12) {
  flex-basis: 100%;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #1c1a17;
  color: white;
  padding-top: 5rem;
}
@media (min-width: 1200px) {
  .footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    text-align: center;
    font-size: 1.6rem;
    padding: 5rem 0;
  }
}
.footer .modificarlogo {
  min-width: 200px;
  max-width: 200px;
}
@media (min-width: 1200px) {
  .footer .modificarlogo {
    min-width: 240px;
    max-width: 200px;
  }
}
.footer .footer-txt {
  margin-top: 5rem;
  text-align: center;
  font-size: 1.8rem;
}
@media (min-width: 1200px) {
  .footer .footer-txt {
    margin-top: unset;
  }
}
.footer .footer-txt span {
  margin-left: 1rem;
  font-weight: 700;
}

.footer-derecha {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
@media (min-width: 1200px) {
  .footer-derecha {
    width: unset;
  }
}
.footer-derecha p {
  font-size: 2rem;
  margin: 0;
}
.footer-derecha .logo-grupo {
  width: 50%;
  max-width: 350px;
  min-width: 300px;
}
@media (min-width: 1200px) {
  .footer-derecha .logo-grupo {
    width: unset;
    max-width: 20rem;
    min-width: unset;
    margin-top: 2rem;
  }
}

.div-iconos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 150px;
  filter: invert(1);
}
.div-iconos a {
  width: 50px;
  height: 50px;
}

.contacto {
  display: flex;
  align-items: center;
  border: solid 3px white;
  font-size: 1.6rem;
}
.contacto input {
  background-color: transparent;
  border: none;
}
.contacto input::placeholder {
  color: white;
  padding-left: 1rem;
}
.contacto p {
  margin: 0;
  font-size: 1.7rem;
}
.contacto .contacto-btn {
  background-color: #FFC84D;
  height: 100%;
  padding: 0.2rem;
  border-left: solid 3px white;
}

/*┌───────────────────────────────────────────── ∘°Contacto Code°∘ ─────────────────────────────────────────────┐*/
.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: #fff #fff #fff transparent;
  animation: ml-form-embedSubmitLoad 1.2s linear infinite;
}

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

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

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

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

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

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

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

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

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

#mlb2-6041587.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-6041587.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody, #mlb2-6041587.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody {
  padding: 20px 20px 0 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#mlb2-6041587.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-6041587.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow {
  margin: 0 0 10px 0;
  width: 100%;
}

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

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

#mlb2-6041587.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input {
  background-color: #fff !important;
  color: #333 !important;
  border-color: #ccc;
  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-6041587.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::-webkit-input-placeholder, #mlb2-6041587.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input::-webkit-input-placeholder {
  color: #333;
}

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

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

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

#mlb2-6041587.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow textarea, #mlb2-6041587.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow textarea {
  background-color: #fff !important;
  color: #333 !important;
  border-color: #ccc;
  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-6041587.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before, #mlb2-6041587.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-6041587.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::before, #mlb2-6041587.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label::before, #mlb2-6041587.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::before, #mlb2-6041587.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label::before, #mlb2-6041587.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before {
  border-color: #ccc !important;
  background-color: #fff !important;
}

#mlb2-6041587.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-6041587.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before, #mlb2-6041587.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-6041587.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::before, #mlb2-6041587.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::before, #mlb2-6041587.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before {
  border-radius: 4px !important;
}

#mlb2-6041587.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow input[type=checkbox]:checked ~ .label-description::after, #mlb2-6041587.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox input[type=checkbox]:checked ~ .label-description::after, #mlb2-6041587.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after, #mlb2-6041587.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after, #mlb2-6041587.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-6041587.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-6041587.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow input[type=checkbox]:checked ~ .label-description::before, #mlb2-6041587.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox input[type=checkbox]:checked ~ .label-description::before, #mlb2-6041587.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before, #mlb2-6041587.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input:checked ~ .custom-control-label::before, #mlb2-6041587.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before, #mlb2-6041587.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-input:checked ~ .custom-control-label::before, #mlb2-6041587.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox input[type=checkbox]:checked ~ .label-description::before {
  border-color: #000 !important;
  background-color: #000 !important;
}

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

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

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

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

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

#mlb2-6041587.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: #fff;
  border: #adb5bd solid 1px;
  border-radius: 50%;
}

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

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

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

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

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

#mlb2-6041587.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-control, #mlb2-6041587.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-6041587.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-input, #mlb2-6041587.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input, #mlb2-6041587.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-input, #mlb2-6041587.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-input {
  position: absolute;
  z-index: -1;
  opacity: 0;
  box-sizing: border-box;
  padding: 0;
}

#mlb2-6041587.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label, #mlb2-6041587.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label, #mlb2-6041587.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label, #mlb2-6041587.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label {
  color: #000;
  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-6041587.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-select, #mlb2-6041587.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-select {
  background-color: #fff !important;
  color: #333 !important;
  border-color: #ccc;
  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-6041587.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-6041587.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input {
  background-color: #fff;
  color: #333;
  border-color: #ccc;
  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-6041587.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow button {
  background-color: #ffc144 !important;
  border-color: #ffc144;
  border-style: solid;
  border-width: 1px;
  border-radius: 4px;
  box-shadow: none;
  color: #fff !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-6041587.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow button:hover {
  background-color: #ffc144 !important;
  border-color: #ffc144 !important;
}

#mlb2-6041587.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-6041587.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description {
  color: #000;
  display: block;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 12px;
  text-align: left;
  margin-bottom: 0;
  position: relative;
  vertical-align: top;
}

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

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

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

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

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

#mlb2-6041587.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button {
  background-color: #ffc144 !important;
  border: none !important;
  border-radius: 4px !important;
  box-shadow: none !important;
  color: #fff !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-6041587.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button.loading {
  display: none;
}

#mlb2-6041587.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button:hover {
  background-color: #ffc144 !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 select, .ml-error textarea {
  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: red !important;
}

#mlb2-6041587.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p, #mlb2-6041587.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p:first-letter {
  color: red !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: 0 !important;
    padding-bottom: 10px;
  }
  .ml-form-formContent.horozintalForm .ml-button-horizontal {
    width: 100% !important;
  }
  .ml-form-formContent.horozintalForm .ml-button-horizontal.labelsOn {
    padding-top: 0 !important;
  }
}
.ml-mobileButton-horizontal {
  display: none;
}

#mlb2-6054651 .ml-mobileButton-horizontal button {
  background-color: #ffc144 !important;
  border-color: #ffc144 !important;
  border-style: solid !important;
  border-width: 1px !important;
  border-radius: 4px !important;
  box-shadow: none !important;
  color: #fff !important;
  cursor: pointer;
  font-family: "Open Sans", Arial, Helvetica, sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 20px !important;
  padding: 10px !important;
  width: 100% !important;
}

@media only screen and (max-width: 400px) {
  #mlb2-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent.horozintalForm {
    padding: 0 0 10px 0 !important;
  }
  .ml-hide-horizontal {
    display: none !important;
  }
  .ml-form-formContent.horozintalForm .ml-button-horizontal {
    display: none !important;
  }
  .ml-mobileButton-horizontal {
    display: inline-block !important;
    margin-bottom: 20px;
    width: 100%;
  }
  .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal > div {
    padding-bottom: 0 !important;
  }
}
.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: #fff #fff #fff transparent;
  animation: ml-form-embedSubmitLoad 1.2s linear infinite;
}

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

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

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

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

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

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

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

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

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

#mlb2-6054651.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-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody, #mlb2-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody {
  padding: 20px 20px 0 20px;
}

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

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

#mlb2-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent h4, #mlb2-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent h4 {
  color: #000;
  font-family: Lato, Arial, Helvetica, sans-serif;
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 10px 0;
  text-align: left;
  word-break: break-word;
}

#mlb2-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p, #mlb2-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p {
  color: white;
  font-family: Lato, Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  margin: 0 0 10px 0;
  text-align: left;
}

#mlb2-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ol, #mlb2-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ul, #mlb2-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ol, #mlb2-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ul {
  color: #000;
  font-family: Lato, Arial, Helvetica, sans-serif;
  font-size: 16px;
}

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

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

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

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

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

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

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

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

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

#mlb2-6054651.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-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow {
  margin: 0 0 10px 0;
  width: 100%;
}

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

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

#mlb2-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input {
  background-color: #fff !important;
  color: #333 !important;
  border-color: #ccc;
  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-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::-webkit-input-placeholder, #mlb2-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input::-webkit-input-placeholder {
  color: #333;
}

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

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

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

#mlb2-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow textarea, #mlb2-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow textarea {
  background-color: #fff !important;
  color: #333 !important;
  border-color: #ccc;
  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-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before, #mlb2-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::before, #mlb2-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label::before, #mlb2-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::before, #mlb2-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label::before, #mlb2-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before {
  border-color: #ccc !important;
  background-color: #fff !important;
}

#mlb2-6054651.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-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before, #mlb2-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::before, #mlb2-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::before, #mlb2-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before {
  border-radius: 4px !important;
}

#mlb2-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow input[type=checkbox]:checked ~ .label-description::after, #mlb2-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox input[type=checkbox]:checked ~ .label-description::after, #mlb2-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after, #mlb2-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after, #mlb2-6054651.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-6054651.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-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow input[type=checkbox]:checked ~ .label-description::before, #mlb2-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox input[type=checkbox]:checked ~ .label-description::before, #mlb2-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before, #mlb2-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input:checked ~ .custom-control-label::before, #mlb2-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before, #mlb2-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-input:checked ~ .custom-control-label::before, #mlb2-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox input[type=checkbox]:checked ~ .label-description::before {
  border-color: #000 !important;
  background-color: #000 !important;
}

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

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

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

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

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

#mlb2-6054651.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: #fff;
  border: #adb5bd solid 1px;
  border-radius: 50%;
}

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

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

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

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

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

#mlb2-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-control, #mlb2-6054651.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-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-input, #mlb2-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input, #mlb2-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-input, #mlb2-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-input {
  position: absolute;
  z-index: -1;
  opacity: 0;
  box-sizing: border-box;
  padding: 0;
}

#mlb2-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label, #mlb2-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label, #mlb2-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label, #mlb2-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label {
  color: #000;
  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-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-select, #mlb2-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-select {
  background-color: #fff !important;
  color: #333 !important;
  border-color: #ccc;
  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-6054651.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-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input {
  background-color: #fff;
  color: #333;
  border-color: #ccc;
  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-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow button {
  background-color: #ffc144 !important;
  border-color: #ffc144;
  border-style: solid;
  border-width: 1px;
  border-radius: 4px;
  box-shadow: none;
  color: #fff !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-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow button:hover {
  background-color: #333 !important;
  border-color: #333 !important;
}

#mlb2-6054651.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-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description {
  color: #000;
  display: block;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 12px;
  text-align: left;
  margin-bottom: 0;
  position: relative;
  vertical-align: top;
}

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

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

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

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

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

#mlb2-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button {
  background-color: #ffc144 !important;
  border: none !important;
  border-radius: 4px !important;
  box-shadow: none !important;
  color: #fff !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-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button.loading {
  display: none;
}

#mlb2-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button:hover {
  background-color: #333 !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 select, .ml-error textarea {
  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: red !important;
}

#mlb2-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p, #mlb2-6054651.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p:first-letter {
  color: red !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: 0 !important;
    padding-bottom: 10px;
  }
  .ml-form-formContent.horozintalForm .ml-button-horizontal {
    width: 100% !important;
  }
  .ml-form-formContent.horozintalForm .ml-button-horizontal.labelsOn {
    padding-top: 0 !important;
  }
}
.hitboxes {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.hitboxes .hitbox__had {
  position: absolute;
  height: 24%;
  width: 100%;
  top: 0%;
  left: 0;
}
.hitboxes .hitbox__glasses {
  position: absolute;
  height: 12%;
  width: 100%;
  top: 24%;
  left: 0;
}
.hitboxes .hitbox__bigote {
  position: absolute;
  height: 12%;
  width: 100%;
  top: 35%;
  left: 0;
}
.hitboxes .hitbox__bow-tie {
  position: absolute;
  height: 15%;
  width: 100%;
  top: 46%;
  left: 0;
}

.accesories {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}
.accesories .had-box {
  position: absolute;
  transform: translate(0%, -50%);
  top: 5%;
  left: 0;
  width: 100%;
}
.accesories .had-box #had-1 {
  transform: translate(0%, 0%);
}
.accesories .had-box #had-2 {
  transform: translate(0%, -22%);
}
.accesories .had-box #had-3 {
  transform: translate(0%, 10%);
}
.accesories .had-box #had-4 {
  transform: translate(0%, 0%);
}
.accesories .glasses-box {
  position: absolute;
  transform: translate(0%, -50%);
  top: 30%;
  left: 0;
  width: 100%;
}
.accesories .glasses-box #glasses-1 {
  transform: scale(0.8, 1);
}
.accesories .glasses-box #glasses-2 {
  transform: scale(0.8, 1);
}
.accesories .glasses-box #glasses-3 {
  transform: scale(0.75, 0.75) translate(0%, -5%);
}
.accesories .glasses-box #glasses-4 {
  transform: scale(0.8, 1);
}
.accesories .bigote-box {
  position: absolute;
  transform: translate(0%, -50%);
  top: 46%;
  left: 0;
  width: 100%;
  z-index: 1;
}
.accesories .bigote-box #bigote-1 {
  transform: scale(0.7, 0.7) translate(0%, -6%);
}
.accesories .bigote-box #bigote-2 {
  transform: scale(0.7, 0.7) translate(0%, -11%);
}
.accesories .bow-tie-box {
  position: absolute;
  transform: translate(0%, -50%);
  top: 52%;
  left: 0;
  width: 100%;
}
.accesories .bow-tie-box #bow-tie-1 {
  transform: scale(0.5, 0.5);
}
.accesories .bow-tie-box #bow-tie-2 {
  transform: scale(0.5, 0.5);
}

.responsive_hit-box {
  width: 100%;
  height: auto;
  position: relative;
}
.responsive_hit-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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