
/* 
        --      Cookies         --
*/

.cookies-popup {
    background-color: rgba(0, 153, 0, 0.85);
    bottom: 0;
    color: #FFF;
    display: block;
    font-size: 0.875em;
    font-weight: bold;
    left: 0;
    opacity: 0;
    padding: 15px 30px;
    position: fixed;
    text-align: center;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: opacity 0.4s linear, transform 0.2s linear;
    -webkit-transition: opacity 0.4s linear, -webkit-transform 0.2s linear;
    transition: opacity 0.4s linear, -webkit-transform 0.2s linear;
    transition: opacity 0.4s linear, transform 0.2s linear;
    transition: opacity 0.4s linear, transform 0.2s linear, -webkit-transform 0.2s linear;
    width: 100%;
    z-index: 1000;
  }
  
  .cookies-popup a {
    color: #FFF;
    font-weight: normal;
  }
  
  .cookies-popup a:hover {
    text-decoration: underline;
  }
  
  .cookies-popup.active {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  
  .cookies-popup p {
    margin-bottom: 0;
  }
  
  .cookies-popup .close-cookie-message {
    position: absolute;
    right: 0;
    top: 0;
  }
  

  
/* 
        --      Content Images         --
*/

.content-image img {
    max-width: 100%;
    margin: 0 0 30px;
}

.content-image.image-left img {
    float: left;
    margin: 0 30px 30px 0;
}

.content-image.image-right img {
    float: right;
    margin: 0 0 30px 30px;
}

.content-image.image-centred  {
    display: block;
    float: none;
    text-align: center;
    width: 100%;
}


.content-image.image-size-naturnal img {
    width: auto;
}

.content-image.image-size-100 img {
    margin: 0 0 30px!important;
    width: 100%;
}

.content-image.image-size-75 img {
    width: 75%;
}

.content-image.image-size-50 img {
    width: 50%;
}

.content-image.image-size-25 img {
    width: 25%;
}