/**

  * Cookiebar - Styles

  *

  * @author Jan-Markus

  */

.cookiebar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  /* padding: 1.25rem; */
  text-align: center;
  line-height: 1.5;

  width: 100%;
  justify-content: center;
  margin-bottom: 20px;
}

.inside {
  background-color: #ffffff;
  color: black;
  box-shadow: 0px 0px 4px 0px black;
  border-radius: 23px;
  padding-left: 20px;
}
.cookiebar .text {
  padding: 0;

  margin: 0;
  float: left;
  position: relative;
  top: 14px;
}

.cookiebar .buttoncontainer {
  margin-top: 0.625rem;
  float: right;
  float: right;
  position: relative;
  top: -3px;
}

.cookiebar .button {
  display: inline-block;

  padding: 0.3125rem 1.25rem;

  margin: 0 0.625rem;

  font-size: 1rem;

  text-decoration: none;

  border: 0;

  color: white;

  cursor: pointer;
}

.cookiebar .accept {
  background: #fff;
}
.cookiebar .accept:before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f058';
  color: #83b640;
  margin-right: 15px;
      font-size: 21px;
}
.cookiebar .accept:after {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f057';
  color: #d41d24;
      font-size: 21px;
}
.cookiebar .more {
  background-color: #2980b9;
}
