.cookie h2 {
  font-weight: bold;
  text-transform: uppercase;
}
.cookie p {
  margin-bottom:10px;
}

#main_content table.cookies {
  margin:20px 0;
  width:100%;
}
.cookies tr th,
.cookies tr td {
  padding:7px 10px;
  vertical-align:top;
  background:#eee;
}
.cookies tr td.state_off {
  background:#f01409;
  color:white;
  font-weight:bold;
}
.cookies tr td.state_on {
  background:#6c9d31;
  color:white;
  font-weight:bold;
}

.cookies tr th:nth-child(1) {
  width:150px;
}
.cookies tr th:nth-child(3) {
  width:120px;
}
.cookie form input[type="submit"] {
  background: #eaeaea;
  border: none;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  text-transform: uppercase;
}

.info-cookies {
/*    position: fixed;
    left: 0;
    top: 0;*/
    width: 100%;
    box-sizing:border-box;
    color: black;
    background-color: #ffc500;
    z-index: 1000;
    padding:15px;
    text-align:center;
}

.info-cookies button {
    background: #666;
    color: white;
    font-weight:bold;
    border:none;
    border-radius:10px;
    padding:2px 7px 4px 5px;
    margin-left: 15px;
}
.info-cookies button:hover {
  cursor:pointer;
}

.info-cookies button.info-cookies-no {
    cursor:pointer;
    background-color: #599114;
    border:0;
    padding:0;
    right:0;
}
/*
.info-cookies a.info-cookies-no {
}
*/
.info-cookies a, .info-cookies a:visited {
  color:black;
}

@keyframes blinking {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}