/**

  * Cookiebar - Styles

  *

  * @author Jan-Markus

  */

.cookiebar {
  border-radius: 10px;

  position: fixed;

  bottom: 30px;

  left: 30px;

  width: 250px;

  padding: 1.25rem;

  text-align: center;

  line-height: 1.5;

  background-color: #fffffff5;

  color: black;
  -webkit-animation: slide-in-bottom 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
    both;
  animation: slide-in-bottom 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.imagecontainer {
  margin: 0 auto;
  height: 100px;
  width: 100px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 30px;
}

.cookiebar .text {
  padding: 0;
  margin: 0;
  color: #57a5ba;
}

.cookiebar .buttoncontainer {
  margin-top: 0.625rem;
}

.cookiebar .button {
  display: inline-block;

  padding: 10px 20px;

  margin: 0 0.625rem;

  font-size: 1rem;

  text-decoration: none;

  border: 0;

  cursor: pointer;
  color: #fff;
}

.subtext {
  padding: 10px 20px;
}

.cookiebar .accept {
  background-color: #57a5ba;
  border-radius: 4px;
}

.cookiebar .accept:hover {
  background-color: #fff;
  color: #57a5ba;
}

.cookiebar .accept .cookiebar .more {
  background-color: #57a5ba;
}

.close {
  cursor: pointer;
  position: absolute;
  top: 1%;
  right: 0%;
  padding: 12px 16px;
  transform: translate(0%, -10%);
  border-radius:4px;
}

.close:hover {background: #57a5ba;}
