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

/* Icons */
.icon-box img{
    width: 100%;
}

.color-icon{
    background: linear-gradient(120deg, var(--accent-secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.white-icon{
    color: #fff;
}

.work-step-item:hover .icon-box span {
  filter: brightness(0) invert(0);
}

.i-20{
    font-size: 1.5rem !important;
    font-variation-settings: 
    'wght' 300,
    'GRAD' -25,
    'opsz' 48;
}

.i-40{
    font-size: 2.5rem !important;
}

/* 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: 30px;
    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;
}

/* pricing */
#save-pill {
    background: #333;
    color: #fff;
    border-radius: 5px;
    padding: 5px 7px;
    font-size: 0.8em;
    transition: background 0.3s ease-in-out;
}
#save-pill.blueish{
    background: var(--accent-color);
}

/* 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;
}

.mr-2{
    margin-right: 5px;
}