/* ------------ cookie layer ------- */
.mm-page {
    position: relative;
  }
  
  
  .cookie-layer {
    position: fixed;
    width:50%;
    bottom: 0;
    left:25%;
    padding: 1.6rem 0 1rem 0;
    background-color: white;
    -webkit-box-shadow: 0px -4px 9px 0px rgba(0,0,0,0.4);
  -moz-box-shadow: 0px -4px 9px 0px rgba(0,0,0,0.4);
  box-shadow: 0px -4px 9px 0px rgba(0,0,0,0.4);
  z-index: 10;
  }
  
  .cookie-layer input[type="checkbox"] {
    display:none;
  }
  
  .cookie-layer input[type="checkbox"] + label::before {
    width: 18px;
    height: 18px;
    border-style: solid;
    border-width: 1px;
    display: block;
    content: "";
    float: left;
    margin-right: 5px;
  }
  
  
  .cookie-layer input[type="checkbox"]:checked+label::before {
    background-image: url("icons/check-grey.png");
    background-repeat: no-repeat;
    background-position:0% 45%;
  }
  
  .cookie-layer__checkbox2 input[type="checkbox"]:checked+label::before {
    background-image: url("icons/check-black.png");
    background-repeat: no-repeat;
    background-position:0% 45%;
  }
  
  .cookie-layer__container {
    width: 80%;
    margin: 0 auto;
    
  }
  
  .cookie-layer form {
    flex-wrap: wrap;
    display: flex;
    justify-content: flex-end;
  }
  
  
  .cookie-layer a {
    text-decoration: underline;
  }
  
  
  
  
  .cookie-layer form label {
    display: inline-block;
    white-space: nowrap;
    
    
    
  }
  .cookie-layer__checkbox1 {
    margin-right: 1rem;
    margin-bottom: 1rem;
    color: #868686;
    cursor: pointer;
    
  }
  .cookie-layer__checkbox2 {
    margin-bottom: 1rem;
    cursor: pointer;
    
  }
  
  .cookie-layer__heading {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0px;
  
  }
  
  .cookie-layer__info {
  
  
  }
  
  .cookie-layer__button {
    height:35px;
    width:auto;
    padding: 7px 20px; 
    font-size:0.625rem;
    font-weight:700;
    color:#fff;
    border:0; 
    border-radius:3px;
    background-color:#ef7e05;
    cursor:pointer;
    -webkit-appearance: none;
    
  }
  
  .cookie-layer__button:hover {
    background-color: black;
    color: white;
  }
  .cookie-layer__button-notwendig {
    height:35px;
    font-size:0.625rem;
    font-weight:700;
    border-style: none;
    border-width: 1px;
    border-color: #000;
    background-color: transparent;
    padding: 7px 10px;
    margin-right: 10px;
    border-radius: 3px;
    -webkit-appearance: none;
  
    
    cursor: pointer;
  }
  
  .cookie-layer__button-notwendig:hover {
    background-color: black;
    color: white;
  }
  
  .cookie-layer__button:focus,
  .cookie-layer__button:hover {
    outline: none;
  }
  
  
  
  
  
  @media only screen and (max-width: 962px) {
  
    .cookie-layer{
      left:0;
      width: 100%;
    }
  
    .cookie-layer__heading {
  
      font-size: 1.4rem;
      font-family: 'Open Sans', Arial, sans-serif;
  
    }
    
    .cookie-layer__info {
      font-size: 12px;
    
    }
    .cookie-layer__container {
      width: 90%;
      margin: 0 auto;
      
    }
    .cookie-layer form {
      flex-direction: column;
      font-size: 12px;
  
    }
  
    .cookie-layer__button {
      margin-left: 0px;
      border:0px;
      margin-top: 5px;
    }
  
    .cookie-layer__button-notwendig {
      margin-left: 0px;
      margin-right:0px !important;
      border:0px;
  
    }
  
  }
  