/*
 * Bootstrap Cookie Alert by Wruczek
 * https://github.com/Wruczek/Bootstrap-Cookie-Alert
 * Released under MIT license
 */
.cookiealert {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    z-index: 999;
    opacity: 0;
    border-radius: 0;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    color: #ecf0f1;
    background: #b59e40;
    padding: 20px;
    font-size: 2rem;
    text-align: center;
}
.button-cookies {

    background-color: #4CAF50; /* Green */
    border: none;
    color: white;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;

}
/*
.button-cookies {

  background-color: white;
  color: black;
  border: 2px solid #4CAF50;
}*/
.button-cookies:hover {
  background-color: white; /* Green */
  color: #4CAF50;
}

.cookiealert a:hover{
    text-decoration: underline;
}


.cookiealert a {
    font-size: 2rem;
  text-decoration: none;
    color: #fff;
}

.cookiealert.show {
    opacity: 1;
    transform: translateY(0%);
    transition-delay: 1000ms;
}


.cookiealert .acceptcookies {
    margin-left: 10px;
    vertical-align: baseline;
}

@media  screen and (max-width:850px)
{

    .cookiealert {

        font-size: 1.3rem;
    }
    .cookiealert .button-cookies, .btn-principal{

      padding: 10px 20px;

      font-size: 1.3rem;
    }

    .cookiealert .button-cookies:hover, .btn-principal:hover{

      font-size: 1.3rem;
    }

    .cookiealert a {
        font-size: 1.3rem;
    }
  }



@media  screen and (max-width:720px)
{

    .cookiealert {

        font-size: 1rem;
    }
    .cookiealert .button-cookies, .btn-principal{

      padding: 10px 20px;

      font-size: 1rem;
    }

    .cookiealert .button-cookies:hover, .btn-principal:hover{

      font-size: 1rem;
    }

    .cookiealert a {
        font-size: 1rem;
    }
  }



@media  screen and (max-width:500px)
{

    .cookiealert {

        font-size: 14px;
    }
    .cookiealert .button-cookies, .btn-principal{

      padding: 10px 20px;

      font-size: 14px;
    }

    .cookiealert .button-cookies:hover, .btn-principal:hover{

      font-size: 14px;
    }

    .cookiealert a {
        font-size: 14px;
    }
  }


@media  screen and (max-width:375px)
{

  .cookiealert {

      font-size: 13px;
  }
  .cookiealert .button-cookies, .btn-principal{

    padding: 10px 20px;

    font-size: 13px;
  }

  .cookiealert .button-cookies:hover, .btn-principal:hover{

    font-size: 13px;
  }

  .cookiealert a {
      font-size: 13px;
  }
}
