/**
 * @file
 * The footer components.
 *
 * It includes styles for the footer itself and its
 * components.
 */

/**
 * Global footer rules
 */

/**
 * Menu Footer
 */

 .flex-wrapper-center {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
   }
   .footer-menu {
     padding: 0;
   }
  .footer-menu__item {
    display: block;
    text-align: center;
    padding: 0.5rem 0;
  }


  @media all and (min-width: 1024px) {
    .footer-menu__item {
      display: inline-block;
    }
    .footer-menu__item:not(:first-child)::before {
      content: " | ";
      padding: 0 1rem;
    }
  }

  /**
 * Block Footer
 */

.block-footer {
  background-color: #F2F2F2;
}
.block-footer-wrapper{
  padding: 0;
}

.block-footer__content{
  display: flex;
  flex-direction: column;
}
.block-footer__content img{
 margin: 0 auto;
}
.block-footer__content .field__items{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px 0;
}

.block-footer__content .field__item{
  /* padding:10px; */
  /* width: 45%; */
}



.block-footer__linkedin-link{
  background-color: #066232;
  color:#fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
}
.block-footer__linkedin-wrapper a{
  color:#fff;
  text-decoration: none;
}
.block-footer__linkedin-link:hover{
  color:#fff;
  text-decoration: none;
}
.block-footer__item-text-linkedin{
  text-align: center;
  padding-top: 5px;
}

@media all and (min-width: 750px) {
  .block-footer__content{
    display: flex;
    flex-direction: row;
  }
  .block-footer__content .field__items{
    flex-direction: row;
    padding: 25px 0;
  }
  .block-footer__logo-wrapper .field__item{
    /* padding:10px; */
    width: 80%;
  }
  .block-footer__linkedin-link{
    width: 18%;
    align-items: center;
  }
}

.logo-footer-text{
  font-size: 14px;
  text-align: center;
}


/**
 * Cookie banner
 */
 .eu-cookie-compliance-banner {
  background-color: #4EAA73;
  border-top: #FFE000 solid 2px;
}
#popup-text h2,
#popup-text p {
  color: white;
}
.eu-cookie-compliance-message .find-more-button{
  text-decoration: none;
  color: white;
}
.eu-cookie-compliance-message .find-more-button:hover{
  text-decoration: underline;
}
.decline-button.eu-cookie-compliance-default-button {
  color: white;
  background: none;
  font-size: 1rem;
  font-weight: 400;
  border: 0;
  text-shadow: none;
  padding: 0;
  box-shadow: none;
}
.agree-button.eu-cookie-compliance-secondary-button {
  background: #FFE000;
  border: #066232 solid 1px;
  padding: 0.5em;
  margin-right: 1em;
}
.agree-button.eu-cookie-compliance-secondary-button:hover {
  background: #FEF4CD;
  color: #333;
}
