footer {
  background: #000000;
  color: #ffffff;
  padding: 5rem 0 3rem;
  margin-top: 50px;
}
footer ul {
  padding: 0px;
  list-style-type: none;
}
footer ul li {
  margin: 10px 0px;
}
footer ul.menu a {
  color: #ffffff !important;
  opacity: 0.6;
}
footer ul.menu a:hover {
  opacity: 1;
  color: #ffffff !important;
}

.footer-tagline {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  opacity: 0.7;
  margin-top: 10px;
}

.divider {
  border-bottom: 1px solid #ffffff;
  margin: 2rem 0;
}

.social-row {
  display: -webkit-box;      /* Old iOS, Safari */
  display: -ms-flexbox;      /* IE 10 */
  display: flex;             /* Modern browsers */
  gap: 1.5rem;
  margin: 2rem 0;
}

/* FOOTER BOTTOM */
.footer-bottom {
  margin-top: 4rem;
  text-align: center;
}

.copyright {
  font-size: 0.7rem;
  opacity: 0.5;
}

.desktop-footer-top {
  display: -webkit-box;      /* Old iOS, Safari */
  display: -ms-flexbox;      /* IE 10 */
  display: flex;             /* Modern browsers */
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 5rem;
}
.desktop-footer-bottom {
  display: -webkit-box;      /* Old iOS, Safari */
  display: -ms-flexbox;      /* IE 10 */
  display: flex;             /* Modern browsers */
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid #ffffff;
  padding-top: 3rem;
}

.bottom-text > div,
.bottom-text {
  display: -webkit-box;      /* Old iOS, Safari */
  display: -ms-flexbox;      /* IE 10 */
  display: flex;             /* Modern browsers */
  flex-direction: column;
  gap: 1rem;
}

.bottom-copyright {
  font-weight: 700;
}

.bottom-desc {
  opacity: 0.4;
}

/* BUTTON */
.scroll-top-btn {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border-white-10);
  background: transparent;
  color: white;
  border-radius: 50%;
  display: -webkit-box;      /* Old iOS, Safari */
  display: -ms-flexbox;      /* IE 10 */
  display: flex;             /* Modern browsers */
  align-items: center;
  justify-content: center;
}

.scroll-top-fixed {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  border: none;
  cursor: pointer;
  background: transparent;

  display: -webkit-box;      /* Old iOS, Safari */
  display: -ms-flexbox;      /* IE 10 */
  display: flex;             /* Modern browsers */
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.35s ease;
  z-index: 99;
}

/* visible */
.scroll-top-fixed.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* progress ring */
.scroll-progress {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  /* background:conic-gradient(#000 0deg, #e5e5e5 0deg); */
}

/* inner circle */
.scroll-progress::after {
  content: "";
  position: absolute;
  inset: 5px;
  background: #e17475;
  border-radius: 50%;
}

/* arrow */
.scroll-top-fixed .arrow {
  position: relative;
  z-index: 2;
}
.scroll-top-fixed .arrow svg {
  stroke: #ffffff;
}
.scroll-top-fixed.in-footer .arrow svg {
  stroke: #ffffff;
}
.scroll-top-fixed.in-footer .scroll-progress::after {
  background: #999999;
}

.extra_menu {
  padding-top: 1.5rem;
  font-weight: 700;
}
.footer_newsletter {
  display: -webkit-box;      /* Old iOS, Safari */
  display: -ms-flexbox;      /* IE 10 */
  display: flex;             /* Modern browsers */
  justify-content: space-between;
  max-width: 1100px;
  margin: auto;
  background: var(--color-glam-red);
  padding: 40px 70px;
  color: #ffffff;
  align-items: center;

  gap: 50px;
}

.footer_newsletter .footer__text{
  font-size: 13px;
  text-transform: uppercase;
  max-width: 600px;
}

.footer_newsletter .footer__text p{
  margin: 0px;
}
#mlb2-6125511.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent > *,
#mlb2-6100512.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent > *{
  color: #ffffff !important;
  text-align: center !important;
  font-family: 'Montserrat' !important;
}

.footer_newsletter div:last-child {
  /* flex: 0 0 35%;
  max-width: 35%;
  width: 100px !important;
  text-align: right; */
}
.footer_newsletter div:last-child a {
  width: max-content;

  font-size: 12px;
  min-width: fit-content;
  padding: 0px 10px;
  font-weight: 600;
}

@media (max-width: 992px) {
  .footer_newsletter {
    padding: 20px 40px;
  }
  .desktop-footer-top {
    row-gap: 25px;
  }
  .desktop-footer-top .footer_column {
    flex: 0 0 48%;
    max-width: 48%;
  }
  .desktop-footer-top .footer_1 {
    order: 1;
  }
  .desktop-footer-top .footer_2 {
    order: 4;
  }
  .desktop-footer-top .footer_3 {
    order: 3;
  }
  .desktop-footer-top .footer_4 {
    order: 2;
  }
}
@media (max-width: 768px) {
  /* progress ring */
  .scroll-progress {
    width: 40px;
    height: 40px;
  }
  .scroll-top-fixed {
    right: 10px;
    bottom: 10px;
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 767px) {

  .footer-tagline {
    margin-top: 0.9rem;
    font-size: 0.48rem;
    letter-spacing: 0.12em;
    opacity: 0.78;
  }

  .divider {
    border-bottom-color: rgb(253 253 253 / 71%);
    margin: 1.45rem 0;
  }

  .social-row {
    gap: 1.9rem;
    margin: 1.25rem 0;
  }

  .social-row img {
    width: 40px;
    height: 40px;
  }
  .footer-bottom {
    margin-top: 1rem;
    text-align: right;
  }
  .copyright {
    font-size: 0.58rem;
    opacity: 0.7;
    letter-spacing: 0.02em;
  }
  .footer_newsletter {
    flex-wrap: wrap;
    padding: 15px 25px;
    gap: 10px;
    justify-content: center;
  }
  footer {
    padding: 3rem 0.5rem;
  }
  .desktop-footer-bottom {
    padding-top: 1rem;
  }
  .desktop-footer-top {
    margin-bottom: 1rem;
  }
  .desktop-footer-top .footer_1 {
    border-bottom: 1px solid #f2f2f2;
    padding-bottom: 30px;
  }
  .desktop-footer-top .footer_1 img {
    max-width: 150px !important;
  }
  .desktop-footer-top .footer_4 {
    border-bottom: 1px solid #f2f2f2;
    padding-bottom: 20px;
  }
  .desktop-footer-top .footer_3 {
    border-bottom: 1px solid #f2f2f2;
    padding-bottom: 20px;
  }
  .desktop-footer-top .footer_3 h4 {
    display: none;
  }
  .desktop-footer-top .footer_3 ul {
    margin: 0px;
    display: -webkit-box;      /* Old iOS, Safari */
  display: -ms-flexbox;      /* IE 10 */
  display: flex;             /* Modern browsers */
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .desktop-footer-top .footer_3 ul li {
    flex: 0 0 48%;
    max-width: 48%;
  }
  .desktop-footer-top .footer_2 h4 {
    margin-bottom: 1.3rem;
  }
  .menu-footer-glam-menu-container {
    display: none;
  }
  .menu-footer-glam-menu-container.open {
    display: block;
  }
  .footer_accordion_nav {
    position: relative;
  }
  .footer_2 ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: column;
  }
  .footer_accordion_nav:first-of-type:after {
    content: "+";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    right: 0;
    height: auto;
    font-size: 20px;
  }
  .footer_accordion_nav.open:first-of-type:after {
    content: "-";
  }
  .extra_menu {
    padding-top: 1rem;
    border-top: 1px solid #f2f2f2;
  }
  .desktop-footer-top .footer_column {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .desktop-footer-top .footer_1 {
    order: 1;
  }
  .desktop-footer-top .footer_2 {
    order: 4;
  }
  .desktop-footer-top .footer_3 {
    order: 3;
  }
  .desktop-footer-top .footer_4 {
    order: 2;
  }
}




/* Mailer Lite form styling */
#mlb2-6125511.ml-form-embedContainer .ml-form-embedWrapper.embedForm,
#mlb2-6100512.ml-form-embedContainer .ml-form-embedWrapper.embedForm{
	background: transparent;
}
#mlb2-6125511.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input.form-control,
#mlb2-6100512.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .ml-form-horizontalRow input.form-control{
  background: transparent !important;
  border-color: transparent !important;
  border-radius: 0px !important;
  border-style: solid !important;
  border-width: 0px !important;
  border: none !important;
  border-bottom: 1px solid #ffffff !important;
  border-radius: 0px !important;
  color: #ffffff !important;
  outline: none !important;
  font-family: 'Montserrat' !important;
  text-transform: uppercase;
  letter-spacing: 2px !important;
  font-weight: 700 !important;
}
#mlb2-6125511.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::placeholder,
#mlb2-6100512.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::placeholder{
	color:#ffffff !important;
}
#mlb2-6125511.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button.primary,
#mlb2-6100512.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button.primary{
	background: #ffffff !important;
  color: #000000 !important;
  max-width: 167px !important;
  border-radius: 0px !important;
  font-family: 'Montserrat' !important;
  text-transform: uppercase !important;
  color: #b41112 !important;
  border-radius: 10px !important;
  font-weight: bold !important;
}
#mlb2-6125511.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button.primary:hover,
#mlb2-6100512.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button.primary:hover{
  color: #ffffff !important;
}
#mlb2-6125511.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .ml-error > input.form-control,
#mlb2-6100512.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .ml-error > input.form-control{
  border-bottom: 1px solid #fe0000 !important;
}

.popup-container #mlb2-6125511.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit,
.popup-container #mlb2-6100512.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit{
  margin: 0px !important;
}
.popup-container #mlb2-6125511.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button.primary,
.popup-container #mlb2-6100512.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button.primary{
  margin: 0px !important;
}
.popup__content{
  display: flex !important;
  flex-direction: column;
  align-items: center !important;
  justify-content: center;
  padding: 0px 60px;
  color: #ffffff;
}
@media (max-width: 767px){
  .popup__content{
   padding : 0px 15px;
  }
}
  /* Layout: */
.popup-container #mlb2-6125511.ml-form-embedContainer .ml-form-embedWrapper.embedForm,
.popup-container #mlb2-6100512.ml-form-embedContainer .ml-form-embedWrapper.embedForm{
  max-width:500px !important;
}
.popup-container{
  padding: 160px 0px 50px 0px;
  /* background-image: url(https://glam.my/wp-content/uploads/2026/05/Newsletter-pop-up_bg.jpg);*/
  background-image : url(https://glam.my/wp-content/uploads/2026/05/02_Newsletter-pop-up_bg.jpg);
    background-size: 100%;
    background-position: 100% -200%;
    background-repeat: no-repeat;
}
@media (max-width: 767px){
  .popup-container{
    background-image : url(https://glam.my/wp-content/uploads/2026/05/02_Vertical-Banner_bg.jpg);
    background-position: 100% 37% !important;
  }
}
.col-complementary > div img{
  display:none !important;
}
.col-main {
  flex: 1;  
}  

.col-complementary {
  flex: 1;  
  
}
.col-complementary > div {
     display: flex;
    align-items: center;
}

/* Responsive: */

@media only screen and (min-width: 640px) {
  .layout {
    display: flex;
    align-items:center;
  }
}

/* etc */



.col img{
  width: 100%;
  height: 100% !important;
  min-height: 350px;
  object-fit: cover;
}
#popmake-340042{
   background: #cd1719;
   padding: 0px;
   border: 0px;
}

/* .newsletter_title{
  font-size: 21px;
  font-weight: normal;
  max-width: 200px;
  margin: auto;
} */



/* #mlb2-6125511.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before{
  background: transparent !important;
  border: 1.7px solid #ffffff !important;
  width: 21px !important;
  height: 21px !important;
  border-radius: 0px !important;
  left: -1.7rem !important;
}
#mlb2-6125511.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before, #mlb2-6125511.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-6125511.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::before, #mlb2-6125511.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label::before, #mlb2-6125511.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::before, #mlb2-6125511.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label::before, #mlb2-6125511.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before{
  background: transparent !important;
  border-radius: 0px !important;
}
#mlb2-6125511.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after{
  top: 2px !important;
}
#mlb2-6125511.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow input[type=checkbox]:checked~.label-description::after{
  background-image : url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 8 8"><path fill="#fff" d="M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z"/></svg>');
}
#mlb2-6125511.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after{
  background: no-repeat 50% / 50% 85% !important;
}*/
#mlb2-6125511.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label p,
#mlb2-6100512.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label p{
  font-family: 'Montserrat' !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  font-weight:700 !important;
}
/*
#mlb2-6125511.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label{
  padding-left: 30px !important;
} */
#mlb2-6125511.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button.primary,
#mlb2-6100512.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button.primary{
	margin-top:40px;
}

.ad-heading{
    display:none;
}
.ad-tag-line{
    display:none;
    background:#000000;
    color:#ffffff;
    margin:0px !important;
}



/* footer newsletter new css */
.footer_newsletter{
  gap: 20px;
}
.footer__text_heading{
  min-width: 200px;
  text-transform: capitalize;
}
.footer__gap div{
  background: #ffffff;
  width: 1px;
  height: 70px;
}
.footer_newsletter .footer__text{
  text-transform: capitalize;
  font-size: 14px;
}
.footer_newsletter div:last-child a{
  color: #b41112 !important;
  border-radius: 10px;
  font-weight: bold;
}

@media (max-width: 800px ){
  .footer_newsletter{
    flex-wrap: wrap;
  }
  .footer__text_heading h3{
    margin: 0px;
  }
  .footer__gap{
    display: none;
  }
}



/* Only visible on mobile */
@media (max-width:767px){

  .ad-heading,
  .ad-tag-line{
      display:block;
      font-size:12px;
      text-align:center;
      margin-bottom:6px;
      color:#999;
  }

}

/* mobile newsletter */
.footer_newsletter_mb{
  display: none;
}
@media ( max-width:767px ) {

  .footer_newsletter{
    display: none;
  }
  .footer_newsletter_mb{
    display: block;
  }
  .footer_newsletter_mb #mlb2-6125511.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent,
  .footer_newsletter_mb #mlb2-6100512.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent
  {
    float: left;
    width: 60%;
  }
  .footer_newsletter_mb #mlb2-6125511.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow,
  .footer_newsletter_mb #mlb2-6100512.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow
  {
    float: left;
    width: 60%;
    display: block;
    margin:0px;
  }
  
  .footer_newsletter_mb #mlb2-6125511.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit,
  .footer_newsletter_mb #mlb2-6100512.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit{
    float: right;
    margin: 0px;
    width: 35%;
    margin: 0px;
  }
  
  .footer_newsletter_mb #mlb2-6125511.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button.primary,
  .footer_newsletter_mb #mlb2-6100512.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button.primary{
    margin:0px;
    color: #b41112 !important;
    border-radius: 10px !important;
    font-weight: bold !important;
  }
  .footer_newsletter_mb{
    padding:50px 10px;
  }
  .mb_0_padding.container{
    padding-left: 0;
    padding-right: 0;
  }
  footer{
    margin: 0px;
  }
}

.footer_widget_title,
.menu-link {
    letter-spacing: 2px;
}


#mlb2-6125511.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p,
#mlb2-6100512.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p,
#mlb2-6125511.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p:first-letter,
#mlb2-6100512.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p:first-letter
{
    color: #ffffff !important;
}
.popup-container #mlb2-6125511.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p,
.popup-container #mlb2-6100512.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p,
.popup-container #mlb2-6125511.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p:first-letter,
.popup-container #mlb2-6100512.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p:first-letter,
.footer_newsletter #mlb2-6125511.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p,
.footer_newsletter #mlb2-6100512.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p,
.footer_newsletter #mlb2-6125511.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p:first-letter,
.footer_newsletter #mlb2-6100512.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p:first-letter,
.newsletter_section #mlb2-6125511.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p,
.newsletter_section #mlb2-6100512.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p,
.newsletter_section #mlb2-6125511.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p:first-letter,
.newsletter_section #mlb2-6100512.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p:first-letter{
  color: #ffffff !important;
}


.ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal{
  width: 100% !important;
}
.ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal input.form-control::placeholder{
  color: #ffffff !important;
}
.ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal input.form-control{
  background: transparent !important;
  border-color: transparent !important;
  border-radius: 0px !important;
  border-style: solid !important;
  border-width: 0px !important;
  border: none !important;
  border-bottom: 1px solid #ffffff !important;
  border-radius: 0px !important;
  color: #ffffff !important;
  outline: none !important;
  font-family: 'Montserrat' !important;
  text-transform: uppercase;
  letter-spacing: 2px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
}
.ml-button-horizontal.primary{
  width: 100% !important;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.newsletter_section #mlb2-6100512.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow button,
.newsletter_section #mlb2-6100512.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow button:hover,
.popup-container #mlb2-6100512.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow button,
.popup-container #mlb2-6100512.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow button:hover{
  background: #ffffff !important;
  color: #000000 !important;
  max-width: 167px !important;
  border-radius: 0px !important;
  font-family: 'Montserrat' !important;
  text-transform: uppercase !important;
  color: #b41112 !important;
  border-radius: 10px !important;
  font-weight: bold !important;
  width: fit-content !important; 
}
.popup-container #mlb2-6100512.ml-form-embedContainer .ml-form-embedWrapper .ml-block-form .ml-field-group.ml-error > input.form-control,
.newsletter_section #mlb2-6100512.ml-form-embedContainer .ml-form-embedWrapper .ml-block-form .ml-field-group.ml-error > input.form-control{
  border-bottom: 1px solid #fe0000 !important;
}
.newsletter_section #mlb2-6100512.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p,
.newsletter_section #mlb2-6100512.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p:first-letter,
.popup-container #mlb2-6100512.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p,
.popup-container #mlb2-6100512.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p:first-letter{
  color: #ffffff !important;
}
.newsletter_section #mlb2-6100512.ml-form-embedContainer .ml-form-align-left,
.popup-container #mlb2-6100512.ml-form-embedContainer .ml-form-align-left{
  text-align: center !important;
}


@media ( max-width:767px ) {


  .footer_newsletter_mb #mlb2-6100512.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent.horozintalForm
  {
    float: left;
    width: 60%;
  }
  .footer_newsletter_mb #mlb2-6100512.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow
  {
    float: left;
    width: 60%;
    display: block;
    margin:0px;
  }
  .footer_newsletter_mb #mlb2-6100512.ml-form-embedContainer .ml-mobileButton-horizontal{
    float: right;
    margin: 0px;
    width: 35%;
    margin: 0px;
  }
  .footer_newsletter_mb #mlb2-6100512 .ml-mobileButton-horizontal button{
    background: #ffffff !important;
    color: #000000 !important;
    max-width: 167px !important;
    border-radius: 0px !important;
    font-family: 'Montserrat' !important;
    text-transform: uppercase !important;
    color: #b41112 !important;
    border-radius: 10px !important;
    font-weight: bold !important;
    width: fit-content !important; 
  }
  .newsletter_section .ml-mobileButton-horizontal,
  .popup-container .ml-mobileButton-horizontal{
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }
  .newsletter_section #mlb2-6100512 .ml-mobileButton-horizontal button,
  .newsletter_section #mlb2-6100512 .ml-mobileButton-horizontal button:hover,
  .popup-container #mlb2-6100512 .ml-mobileButton-horizontal button,
  .newsletter_section #mlb2-6100512 .ml-mobileButton-horizontal button:hover{
    background: #ffffff !important;
    color: #000000 !important;
    max-width: 167px !important;
    border-radius: 0px !important;
    font-family: 'Montserrat' !important;
    text-transform: uppercase !important;
    color: #b41112 !important;
    border-radius: 10px !important;
    font-weight: bold !important;
    width: fit-content !important; 
  }

}