    /*------------------------------------------------------------------
[Master Stylesheet]

Author: AtypicalThemes
Template: ARSNL - Video Game landing page

This file contains the styling for the actual theme, this
is the file you need to edit to change the look of the
theme.

-------------------------------------------------------------------
Table of contents

    I.General
    II.Header & Navigation
    III.Hero Section
    IV.About Section
    V.Media Section
    VI.Features Section
    VII.CTA Section

-------------------------------------------------------------------
[Color codes]

Background:	#FFF; (white)
Content:	#222; (black)
Footer:		#222;

a (standard): #FFD012;
a (hover): #FFD012;
a (visited): #FFD012;	
a (active):	#FFD012;

[Colors]

Primary Color: #222;
Accent Color: #FFD012;
-------------------------------------------------------------------*/

/*@import url('https://fonts.googleapis.com/css?family=century gothic:400'); century gothic Font */

@font-face {
    font-family: 'bookman_old_styleregular';
    src: url('https://nightspawngame.com/webfonts/bookos-webfont.woff2') format('woff2'),
         url('https://nightspawngame.com/webfonts/bookos-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'bookman_old_stylebold';
    src: url('https://nightspawngame.com/webfonts/bookosb-webfont.woff2') format('woff2'),
         url('https://nightspawngame.com/webfonts/bookosb-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'bookman_old_stylebold_italic';
    src: url('https://nightspawngame.com/webfonts/bookosbi-webfont.woff2') format('woff2'),
         url('https://nightspawngame.com/webfonts/bookosbi-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'bookman_old_styleitalic';
    src: url('https://nightspawngame.com/webfonts/bookosi-webfont.woff2') format('woff2'),
         url('https://nightspawngame.com/webfonts/bookosi-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

/* --------------------------- /////////// I. GENERAL /////////// --------------------------- */
/* -Color- */
.colored {
    color: #B20000;
}
.Bookman{
    font-family: bookman_old_styleregular, century gothic;
}
.Bookman span{
    display: block;
    letter-spacing: 48px;
    font-size: 0.5em;
}
/* -Link Styling- */
a {
    color: #222;
    font-family: century gothic, sans-serif;
	text-decoration: none;
}
a:visited {
    color: #222;
    text-decoration: none;
}
a:hover {
    color: #B20000;
	text-decoration: none;
}
a:active {
    color: #B20000;
    text-decoration: underline;
}
a:focus {
    color: #B20000;
    text-decoration: none;
}
/* -Resets- */
html, body { 
    background-color: #000;
    color: #FFF;
    font-size: 16px;
    line-height: 1.5rem; /* 24px */
    max-width: 100%;
	overflow-x: hidden;
}
/* -Full width fluid container- */
.full-width {
    padding-left: 0;
    padding-right: 0;
}
/* -Text Styling */
h1,h2,h3,h4,h5,h6 {
	font-family: century gothic, sans-serif;
    font-weight: 400;
}
h1 {
    font-size: 1.875rem;
} 
h2 {
    font-size: 1.5rem;
}
h3 {
    font-size: 1.25rem;
}
p {
    font-family: century gothic, sans-serif;
    font-size: 0.9375rem; /* 15px */
    padding: 5px 5px 5px 0;
    margin: 0;
    font-weight: 400;
}
.strong {
    font-weight: bold;
}
.spaced {
    letter-spacing: 5px;
}
.subtle {
	color: #999;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}
ul {
    list-style: none;
    padding: 0;
}
/* -Margins and Floats- */
.floated-left {
     float: left;
}
.floated-right {
    float: right;
}
.inline {
	display: inline;
}
.tiny-margin {
    margin-bottom: 3em /* 32px */
}
.small-margin {
	margin-bottom: 6em; /* 96px */
}
.medium-margin {
	margin-bottom: 8em; /* 128px */
}
.large-margin {
	margin-bottom: 12em; /* 192px */
}
/* -hr- */
hr {
    width: 100%;
    height: 1px;
    background: #FFD012;
    margin: 10px 0;
}
/* -General Button Styles */
button {
    outline: none !important;
}
.button {
    height: auto;
    width: 150px;
    margin: 20px auto;
    padding: 10px 15px;
    font-family: century gothic, sans-serif;
    font-weight: bold;
    color: #222;
    border: 2px solid #333;
    border-radius: 4px;
    background: none;
	display: inline-block;
    outline: none;
	transition: all 0.2s ease;
    cursor: pointer;
    text-align: center;
}
.button:visited {
    color: #222;
}
.button:hover {
    text-decoration: none;
    color: #FFF;
    background: #333;
}
.button:focus {
    color: #FFF;
}
/* - Cookies Notification - */
.cookies-bar {
    background: #000;
    height: auto;
    width: 100vw;
    position: fixed;
    bottom: -60px;
    border-top: 2px solid #B20000;
    z-index: 10;
    transition: 0.4s;
}
.cookies-wrapper {
    position: relative;
    padding: 15px 40px;
}
.cookies-bar.open {
    transform: translateY(-60px);
}
.cookies-bar.closed {
    transform: translateY(60px);
}
.cookies-bar p {
    display: inline;
}
.cookies-bar a {
    text-decoration: underline;
}
.cookies-bar .button {
    display: block;
    position: absolute;
    top: 25%;
    right: 35px;
    margin: 0;
    height: 30px;
    width: 30px;
    padding: 0;
    font-size: 1.4rem;
    color: #B20000;
    background: none;
    border: none;
}
.cookies-bar .button:hover {
    color: #FFF !important;
}
/* -Loading Screen- */
#loader-wrapper {
    background: #000;
    height: 100%;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    text-align: center;
    z-index: 1050;
}
.loader-logo {
    position: relative;
    top: 43%;
    font-family: Montserrat, sans-serif;
    letter-spacing: -2px;
}
#progress {
    width: 0;
    height: 2px;
    background: #B20000;
    position: relative;
    top: 45%;
}
.loader-text {
    position: relative;
    color: #fff;
    top: 48%;
}

/* -Loading Screen Animation- */
.loaded {
    -moz-transform: translate3d(0px, -100%, 0px);
    -webkit-transform: translate3d(0px, -100%, 0px);
    -o-transform: translate(0px, -100%);
    -ms-transform: translate(0px, -100%);
    transform: translate3d(0px, -100%, 0px);
    -webkit-transition: all 0.5s ease; 
    transition: all 0.5s ease;
}

/* RESPONSIVE STYLES */
@media (max-width : 769px) {
    .tiny-margin {
    margin-bottom: 1.5em;
}
    .small-margin {
	margin-bottom: 3em; 
}
    .medium-margin {
	margin-bottom: 4em; 
}
    .large-margin {
	margin-bottom: 6em; 
}
    .cookies-wrapper {
        padding: 15px 60px 15px 20px;
    }
    .cookies-bar .button {
        top: 30%;
    }
}
/* --------------------------- /////////// II. HEADER AND NAVIGATION /////////// --------------------------- */
#main-logo {
    color: rgba(255,255,255, 0.9);
    font-family: century gothic, sans-serif;
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: -2px;
}
.navbar-light {
    height: auto;
    background-color: #000;
    border: none;
}
.navbar-light .navbar-nav .nav-link {
    color: #fff;
    text-transform: uppercase;
}
.navbar-light .navbar-nav .nav-link:hover {
    color: #B20000;
    font-weight: bold;
}
.navbar-light .navbar-nav .nav-link:focus {
    color: #B20000;
    font-weight: bold;
}
/* Menu bars for mobile */
.navbar-toggler {
    border: none;
    cursor: pointer;
}
.navbar-brand em{
    display: inline-block;
    color: #222;
   /* font-size: 1.2rem;*/
    padding: 10px;
    font-weight: lighter;
}
#hamburger .icon-bar {
    display: block;
    height: 2px;
    width: 25px;
    background: #222;
    margin: 7px 0;
    transition: .3s ease-in-out;
}
/* Dropdown Menu */
.navbar-collapse .dropdown-menu {
	margin-top: 8px;
	border: none;
	background: #FFF; 
    border-radius: 0;
}
.navbar-collapse .dropdown-item {
	color: rgba(0,0,0,.5);
	text-decoration: none;
}
.navbar-collapse .dropdown-item:hover {
	background: none; 
}
.navbar-collapse .dropdown-item .item-text {
	font-size: 0.875rem;
}
.navbar-collapse .dropdown-item:hover .item-text {
	color: #222;
}
.navbar-collapse .dropdown-items-divide-hr {
	width: 100%;
	height: 1px;
	margin: 0.25rem auto 0.25rem auto;
	border: none;
	background-color: #999;
	opacity: 0.2;
}
/* - Mobile menu animation - */
#hamburger .icon-bar:nth-child(1) {
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}
#hamburger .icon-bar:nth-child(2) {
   -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}
#hamburger .icon-bar:nth-child(3) {
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}
#hamburger.open .icon-bar:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
#hamburger.open .icon-bar:nth-child(2) {
    width: 0%;
    opacity: 0;
}
#hamburger.open .icon-bar:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* --------------------------- /////////// III. HERO SECTION /////////// --------------------------- */
.hero-unit {
    position: relative;
}
/* -Video- */
#bgvid {
    width: 100%;
    height: 100%;
    max-height: 1080px;
}
/* -Image Overlay- */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.2);
}
.hero-overlay span{
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    height: 100px;
    background-image: url(/images/hero-grad.png);
}
/* -Hero Image Caption- */
.hero-caption {
    position: absolute;
    bottom: 10%;
    left: 0; 
    right: 0; 
    margin-inline: auto; 
    /* width: fit-content; */
    color: #FFF;
    padding: 20px;
    z-index: 5;
    text-align: center;
}
.hero-caption p {
    font-size: 1.5rem;
    margin-left: -20px;
}
.hero-caption p span{
    display: inline-block;
    width: 60px;
}
.hero-caption h1 {
    font-size: 5rem;
    display: block;
    width:100%;
    max-width: 880px;
    text-indent: -9999px;
    height: 337px;
    margin: auto auto -85px;
    background-image: url(/images/nighhtspawngame_logo.png);
    background-repeat: no-repeat;
    background-size: 100%;
}
.underline {
    width: 50%;
    height: 2px;
    background: #FFF;
    margin: 10px auto;
}
/* RESPONSIVE STYLES */
@media (max-width : 769px) {
    .hero-caption p {
    font-size: 1rem;
}
    .hero-caption h1 {
        font-size: 2rem;
    }
}
/* --------------------------- /////////// IV. ABOUT SECTION /////////// --------------------------- */
.store-buttons li {
    display: inline-block;
    width: auto;
    height: auto;
    background: #121212;
    padding: 10px;
    border-radius: 4px;
    margin: 0 10px;
    transition: 0.3s;
}
.store-buttons.no-margin li i{
    margin: 0;
}
.store-buttons {
    margin: 3em 0 6em 0;
}
.store-buttons li a {
    color: #fff;
    transition: 0.3s;
}
.store-buttons li i {
    display: inline;
    float: left;
    margin-right: 10px;
}
.store-buttons li p {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: bold;
    white-space: nowrap;
}
.store-buttons li:hover {
    background: #B20000;
}
.store-buttons li:hover a {
    color: #FFF
}
.video-box img {
    display: block;
    height: auto;
    width: 60%;
    margin: 0 auto;
}
.w-max-600 {
    max-width: 600px;
}
.video-box h2 {
    color: #fff;
}
.reviews {
    margin: 6em 0;
}
.reviews strong{
    color:#B20000;
}
.reviews div {
    display: inline-block;
    margin: 0 25px;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.overlay img {
    width: 100%;
    height: 30%;
    position: absolute;
    top: 30%;
}
.overlay h2 {
    text-align: center;
    width: 100%;
    position: absolute;
    top: 65%;
}
/* RESPONSIVE STYLES */
@media (max-width : 996px){
    .overlay h2 {
        font-size: 1rem;
    }
    .reviews div {
        margin: 15px 25px;
    }
}
@media (max-width : 769px) {
    .store-buttons li {
        display: block;
        width: auto;
        margin: 15px auto;
    }
    .store-buttons li i {
        float: none;
    }
    .store-buttons {
        margin: 2em 3em;
    }
    .overlay img {
        left: 10%;
    }
    .reviews {
        margin: 3em 0;
    }
    .reviews div {
        margin: 1em 25px;
    }
    .video-box img {
        width: 80%;
    }
}
/* --------------------------- /////////// V. MEDIA SECTION /////////// --------------------------- */
.gallery-item {
    padding: 0 2.5px;
}
.grid-gallery .row {
    margin: 0 0 5px 0;
}
.gallery-item img {
    transition: 0.3s ease;
}
.gallery-item:hover img {
    opacity: 0.6;
}
/* RESPONSIVE STYLES */
@media (max-width : 769px) {
    .gallery-item {
        margin: 5px 0;
    }
    .grid-gallery .row {
        margin: 0;
    }
}
/* --------------------------- /////////// VI. FEATURES SECTION /////////// --------------------------- */
.features img {
    /*width: 60%;*/
}
.features ul {
    font-family: century gothic, sans-serif;
    list-style-type: disc;
    font-size: 0.975rem;
    padding-left: 40px;
    margin: 15px 0;
}
/* RESPONSIVE STYLES */
@media (min-width : 765px) and (max-width : 996px) {
    .features img {
        width: 100%;
    }
}
@media (max-width : 769px) {
    .features img {
        margin: 2rem 0;
    }
}
section.features{
    margin-top: 1em;
}
section.features article{
    padding-left: 4em;
    padding-top: 1em;
}
section.features article h3{
    color: #B20000;
}

/* --------------------------- /////////// VII. CTA SECTION /////////// --------------------------- */
.cta h1 {
    font-size: 5rem;
}
.cta h2 {
    font-size: 1.2rem;
}
/* Newsletter */
input {
    width: 50%;
    height: 45px;
    border: none;
    background: #f0f0f0;
    padding: 0 0 0 20px;
    outline: #333;
}
#newsletter-box .button {
    vertical-align: top;
    margin: 0;
    height: 45px;
}
.text-danger {
    font-family: Montserrat, sans-serif;
    font-size: 1.3rem;
    margin-top: 10px;
}
.text-success {
    font-family: Montserrat, sans-serif;
    font-size: 1.3rem;
    margin-top: 10px;
}
/* --------------------------- /////////// EXTRAS /////////// --------------------------- */
.social-links li {
    display: inline-block;
    margin: 10px 20px;
}
.social-links li a i {
    transition: 0.2s;
}
.social-links li a :hover {
    color: #B20000;
}

/* --------------------------- /////////// FOOTER /////////// --------------------------- */

#footer {
    width: 100%;
    min-height: 50px;
    height: auto;
    color: #AAA;
    background: #222;
    border-top: 2px solid #B20000;
    padding: 0;
    font-size: 14px;
    line-height: 20px;
}
#footer ul {
    margin: 10px 0;
}
#footer ul li {
    display: inline-block;
    margin: 0 10px;
}
#footer ul li a {
    color: #AAA;
}
#footer ul li a:hover {
    color: #fcdc4b;
}
#footer .row:first-child{
    padding: 20px 0;
}
.brands {
    text-align: center;
}
.brands img {
    margin: 20px 0;
}
#copyright {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
}
#copyright a {
    color: #AAA;
    text-decoration: underline;
}
#footer ul li img{
    max-height: 5em;
}

/* --------------------------- /////////// X. EXTRA PAGES /////////// --------------------------- */
.extra-page {
    font-size: 0.875rem;
}
.extra-page a {
    color: #ecc424;
}
.extra-page a:hover {
    color: #ecc424;
    text-decoration: underline;
    text-decoration-color: #ecc424;
}
.extra-page h3 {
    font-weight: bold;
}
.extra-page .button:hover {
    text-decoration: none;
    color: #FFF;
}
.extra-page .hero-unit {
    min-height: 400px;
    background: #FFF;
    border: none;
}
.extra-page .hero-caption {
    margin-top: 25vh;
}
.extra-page .hero-caption h1 {
    font-size: 3.5rem;
}
.text-container ul {
    list-style: circle;
    margin-left: 40px;
}
.text-container ul li {
    margin: 5px 0;
}
.text-container ol li {
    margin: 5px 0;
}
.breadcrumb-nav {
    background: #F0F0F0;
    border: none;
    height: 60px;
}
.breadcrumb {
    border: none;
    background: none;
    margin: 0;
    height: 60px;
}
.breadcrumb li {
    padding-top: 5px;
}
#footer-extra {
    color: #FFF;
    border-top: 1px solid #ecc424;
    background: #222; 
}
#footer-extra .row:first-child {
    padding: 40px 0;
}
#footer-extra .social-links li a{
    color: #FFF;
}
#footer-extra .social-links li {
    margin: 0 15px 0 0;
}
.rating-links li {
    margin: 0 !important;
}

.form-control-input {
    width: 100%;
}
.form-control-select {
    width: 100%;
    height: 45px;
    background: #F0F0F0;
    border: none;
    outline: #333;
    color: #222;
    padding: 0 0 0 20px;
}
.checkbox {
    font-size: 14px;  
}
.checkbox input {
    width: auto;
    height: auto;
    vertical-align: -5%;
    margin-right: 0.375rem;
}
#privacyForm .button {
    width: 100%;
    margin-top: 0;
    height: 50px;
    font-size: 1.1rem;
}
.form-container {
    padding-top: 2em;
}
/* -RESPONSIVE STYLES- */
@media (max-width : 991px) {
    #footer-extra .col-md-4 {
        margin-bottom: 2em;
        text-align: center;
    }
    #footer-extra .row:first-child {
        padding: 40px 0 20px 0;
    }
}

/* MISSING BOOTSTRAP CSS */
.ml-auto, .mx-auto {
    margin-left: auto !important;
}

/* Tooltip customisation */
.nightspawn-tooltip {

}
#carousel, 
#gamemodes, 
#gamefeatures{
    margin: 50px 0;
}
#carousel{
    max-height: 600px;
}
#carousel .carousel-inner{
    max-height: 600px;
}
#carousel .carousel-item{
    max-height: 600px;
}
.card,
.card .list-group-item
{
    background-color: #222;
    color: #fff;
}
.icon-block{
    display: inline-block;
    min-width: 30px;
}

/* 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;
    height: ;
    }
    .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-25842856.ml-form-embedContainer {
    box-sizing: border-box;
    display: table;
    margin: 0 auto;
    position: static;
    width: 100% !important;
    }
    #mlb2-25842856.ml-form-embedContainer h4,
    #mlb2-25842856.ml-form-embedContainer p,
    #mlb2-25842856.ml-form-embedContainer span,
    #mlb2-25842856.ml-form-embedContainer button {
    text-transform: none !important;
    letter-spacing: normal !important;
    }
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper {
    background-color: #000;
    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-25842856.ml-form-embedContainer .ml-form-embedWrapper.embedPopup,
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper.embedDefault { width: 400px; }
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper.embedForm { width: 100%; }
    #mlb2-25842856.ml-form-embedContainer .ml-form-align-left { text-align: left; }
    #mlb2-25842856.ml-form-embedContainer .ml-form-align-center { text-align: center; }
    #mlb2-25842856.ml-form-embedContainer .ml-form-align-default { display: table-cell !important; vertical-align: middle !important; text-align: center !important; }
    #mlb2-25842856.ml-form-embedContainer .ml-form-align-right { text-align: right; }
    #mlb2-25842856.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-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody,
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody {
    padding: 20px 20px 0 20px;
    }
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody.ml-form-embedBodyHorizontal {
    padding-bottom: 0;
    }
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent,
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent {
    text-align: left;
    margin: 0 0 20px 0;
    }
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent h4,
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent h4 {
    color: #fff;
    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-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p,
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p {
    color: #fff;
    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-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ul,
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ol,
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ul,
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ol {
    color: #fff;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 14px;
    }
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ol ol,
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ol ol {
    list-style-type: lower-alpha;
    }
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ol ol ol,
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ol ol ol {
    list-style-type: lower-roman;
    }
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p a,
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p a {
    color: #000000;
    text-decoration: underline;
    }
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-block-form .ml-field-group {
    text-align: left!important;
    }
    #mlb2-25842856.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-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p:last-child,
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p:last-child {
    margin: 0;
    }
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody form {
    margin: 0;
    width: 100%;
    }
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent,
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow {
    margin: 0 0 20px 0;
    width: 100%;
    }
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow {
    float: left;
    }
    #mlb2-25842856.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-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow {
    margin: 0 0 10px 0;
    width: 100%;
    }
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow.ml-last-item {
    margin: 0;
    }
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow.ml-formfieldHorizintal {
    margin: 0;
    }
    #mlb2-25842856.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-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::-webkit-input-placeholder,
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input::-webkit-input-placeholder { color: #333333; }
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::-moz-placeholder,
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input::-moz-placeholder { color: #333333; }
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input:-ms-input-placeholder,
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input:-ms-input-placeholder { color: #333333; }
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input:-moz-placeholder,
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input:-moz-placeholder { color: #333333; }
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow textarea, #mlb2-25842856.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-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label::before, #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label::before, #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::before, #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::before, #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before, #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before {
    border-color: #cccccc!important;
    background-color: #ffffff!important;
    }
    #mlb2-25842856.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-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::before, #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::before, #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before, #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before {
    border-radius: 4px!important;
    }
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow input[type=checkbox]:checked~.label-description::after, #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox input[type=checkbox]:checked~.label-description::after, #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-input:checked~.custom-control-label::after, #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-input:checked~.custom-control-label::after, #mlb2-25842856.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-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input:checked~.custom-control-label::after, #mlb2-25842856.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-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input:checked~.custom-control-label::before, #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-input:checked~.custom-control-label::before, #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-input:checked~.custom-control-label::before, #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-input:checked~.custom-control-label::before, #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox input[type=checkbox]:checked~.label-description::before, #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox input[type=checkbox]:checked~.label-description::before, #mlb2-25842856.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-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label::before, #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label::before, #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label::after, #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label::after, #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::before, #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::after, #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::before, #mlb2-25842856.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-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::after, #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before, #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after {
    top: 0px!important;
    box-sizing: border-box!important;
    }
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before, #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after {
    top: 0px!important;
    box-sizing: border-box!important;
    }
    #mlb2-25842856.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-25842856.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-25842856.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-25842856.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-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before, #mlb2-25842856.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-25842856.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-25842856.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-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-radio .custom-control-label::after {
    background: no-repeat 50%/50% 50%;
    }
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-checkbox .custom-control-label::after, #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::after, #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::after, #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after {
    background: no-repeat 50%/50% 50%;
    }
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-control, #mlb2-25842856.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-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input, #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-input, #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-input, #mlb2-25842856.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-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label, #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label, #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label, #mlb2-25842856.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-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-select, #mlb2-25842856.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 .75rem center/8px 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    }
    #mlb2-25842856.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-25842856.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-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow button {
    background-color: #a40000 !important;
    border-color: #a40000;
    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-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow button:hover {
    background-color: #333333 !important;
    border-color: #333333 !important;
    }
    #mlb2-25842856.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-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description {
    color: #fff;
    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-25842856.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-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label a {
    color: #fff;
    text-decoration: underline;
    }
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label p {
    color: #fff !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-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label p:last-child {
    margin: 0;
    }
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit {
    margin: 0 0 20px 0;
    float: left;
    width: 100%;
    }
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button {
    background-color: #a40000 !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-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button.loading {
    display: none;
    }
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button:hover {
    background-color: #333333 !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-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p,
    #mlb2-25842856.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; }
    }

    .ml-mobileButton-horizontal { display: none; }
    #mlb2-25842856 .ml-mobileButton-horizontal button {
    background-color: #a40000 !important;
    border-color: #a40000 !important;
    border-style: solid !important;
    border-width: 1px !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: 20px !important;
    padding: 10px !important;
    width: 100% !important;
    }
    @media only screen and (max-width: 400px) {
    #mlb2-25842856.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: 0px !important; }
    }

    @media only screen and (max-width: 400px) {
    .ml-form-formContent.horozintalForm .ml-form-horizontalRow .horizontal-fields {
    margin-bottom: 10px !important;
    width: 100% !important;
    }
    }

    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions { text-align: left; float: left; width: 100%; }
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsContent {
    margin: 0 0 15px 0;
    text-align: left;
    }
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsContent.horizontal {
    margin: 0 0 15px 0;
    }
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsContent h4 {
    color: #000000;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
    margin: 0 0 10px 0;
    word-break: break-word;
    }
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsContent p {
    color: #000000;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 12px;
    line-height: 18px;
    margin: 0 0 10px 0;
    }
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsContent.privacy-policy p {
    color: #fff;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 12px;
    line-height: 22px;
    margin: 0 0 10px 0;
    }
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsContent.privacy-policy p a {
    color: #fff;
    }
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsContent.privacy-policy p:last-child {
    margin: 0;
    }
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsContent p a {
    color: #000000;
    text-decoration: underline;
    }
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsContent p:last-child { margin: 0 0 15px 0; }
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptions {
    margin: 0;
    padding: 0;
    }
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox {
    margin: 0 0 10px 0;
    }
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox:last-child {
    margin: 0;
    }
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox label {
    font-weight: normal;
    margin: 0;
    padding: 0;
    position: relative;
    display: block;
    min-height: 24px;
    padding-left: 24px;
    }
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description {
    color: #000000;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 12px;
    line-height: 18px;
    text-align: left;
    margin-bottom: 0;
    position: relative;
    vertical-align: top;
    font-style: normal;
    font-weight: 700;
    }
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .description {
    color: #000000;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-style: italic;
    font-weight: 400;
    line-height: 18px;
    margin: 5px 0 0 0;
    }
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox 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-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedMailerLite-GDPR {
    padding-bottom: 20px;
    }
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedMailerLite-GDPR p {
    color: #000000;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 10px;
    line-height: 14px;
    margin: 0;
    padding: 0;
    }
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedMailerLite-GDPR p a {
    color: #000000;
    text-decoration: underline;
    }
    @media (max-width: 768px) {
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsContent p {
    font-size: 12px !important;
    line-height: 18px !important;
    }
    #mlb2-25842856.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedMailerLite-GDPR p {
    font-size: 10px !important;
    line-height: 14px !important;
    }
    }