/* -------------------------------------------------------------
# COOKIE
---------------------------------------------------------------*/

.cookiealert {
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    opacity: 0;
    border-radius: 0;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    color: #fff;
    z-index: 9999;
    text-align: center;
    font-size: 16px;
    background-color: #2A4365;
  }
  .cookiealert.show {
    opacity: 1;
    transform: translateY(0%);
    transition-delay: 1000ms;
  }
  .cookiealert a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;

    &:hover{
        color: #2A4365;
        background-color: #fff;
      }
  }
  .cookiealert .cookie-button {
    margin-left: 10px;
    padding: 0 8px;
    vertical-align: baseline;
    border: 1px #fff solid;
    margin-top: 4px;
    margin-bottom: 4px;

    &:hover{
      color: #2A4365;
      background-color: #fff;
    }
  }
  
  /* ENDE COOKIE -------------------------------------------------*/