/* Mobile navbar */
@media only screen and (max-width: 991px) {
  .navbar-toggle {
    display: flex !important;
    align-items: center;
  }
}

/* Sign up page */
#contactForm.signup-form .checkbox-wrapper label,
#newslettersForm.signup-form .checkbox-wrapper label{
    text-transform: none !important;
}

span.mandatory::after {
    content: "*";
    color: red;
    margin-left: 4px;
    font-weight: bold;
    font-size: 16px;
    line-height: 1;
}

#msgSubmitNewsletter {
    position: fixed;
    top: 20px;
    right: -300px;
    padding: 15px 25px;
    color: white;
    font-size: 1em;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 9999;
}

#msgSubmitNewsletter.show {
    right: 20px;
    opacity: 1;
}


/* Footer */
#newslettersForm{
    margin-bottom: 5px;
}

#footer-consent{
    font-size: 0.8em;
}

#footer-consent-optional{
    margin-bottom: 10px !important;
    padding-top: 15px;
    padding-left: 0 !important;
    background: transparent;
}
#footer-consent-optional label{
    color: #fff !important;
}

.footer-social-links{
    margin-top: 0 !important;
    padding-top: 0 !important;
    border-top: 0 !important;
}