.cookie-bar {
  color: #666;
  position: fixed;
  width: 100%;
  bottom: 0;
  right: 0;
  height: auto;
  text-align: left;
  line-height: 30px;
  background: #fafafa;
  border: 1px solid #ddd;
  -webkit-box-shadow: 0 0 8px 2px #aaa;
  box-shadow: 0 0 8px 2px #aaa;
  font-size: 16px;
  font-family: Arial, sans-serif;
  font-weight: 100;
  padding: 5px 10px;
  z-index: 1000000;
}
.cookie-bar.detail {
    height: 280px;
}

.cookie-bar p {
    line-height: 20px;
}
.cookie-bar .message {
    float: left;
    text-shadow: 0 1px 0 #e9efff;
    margin: 8px 15px 0 0; 
}
.cookie-bar table {
    width: 100%;
}
.cookie-bar table th {
    display: none;
}
.cookie-bar .btn {
    font-weight: bold;
    padding: 4px;
}
.cookie-bar .btn-success {
    background-color: #3c7550;
    border-color: #216339;
    /*width: 100%;*/
}
.cookie-bar .btn-success:hover {
    background-color: #80b893;
    border-color: #3c7550;
}
.cookie-bar .btn-info {
    background-color: #fff;
    border-color: #999;
    color: #999;
}
.cookie-bar .btn-info:hover {
    background-color: #f5f5f5;
}
.cookie-bar .close-cb {
  border: none;
  color: #a0a0a0;
  
  position: absolute;
  display: inline-block;
  right: 10px;
  top: 0;
  cursor: pointer;
  border-radius: 3px;
  line-height: 30px;
  height: 30px;
  width: 30px;
  font-size: 16px;
  font-weight: normal;
  text-decoration: none;
}
.cookie-bar .close-cb:hover {
  color: #fff;
  background: #a0a0a0;
  text-decoration: none;
}

.cookie-bar .checkbox-cb {
  display: none;
}
.cookie-bar checkbox-cb:checked + .cookie-bar {
  transform: translateY(-50px);
}

.cookie-bar a {
  color: #000;
  text-decoration: underline;
}

@media (max-width: 767px) {
    .cookie-bar {
        color: #222;
        font-size: 14px;
        text-align: center;
        width: 100%;
        right: 0;
        bottom: 0;
    }
    .cookie-bar.detail {
        height: auto;
        min-height: 280px;
    }
}
@media (max-width: 1020px) {
    .cookie-bar .message {
        float: none;
    }
}