
* {
    box-sizing: border-box;}
/***** cookies ****/
.cookie-message {
  position:fixed;
  display:flex;
  flex-direction:column;
  top:inherit;
  bottom: 0;
  left:0;
  right:0;
  padding: 10px;
  border-bottom: 1px solid #ccc;
  -webkit-box-shadow: 0px 0px 3px 1px rgba(0,0,0,0.33);
  -moz-box-shadow: 0px 0px 3px 1px rgba(0,0,0,0.33);
  box-shadow: 0px 0px 3px 1px rgba(0,0,0,0.33);
  z-index: 999999;

  background: #4a4a4a;
  max-height:150px;
  opacity:1;
}

.cookie-message p {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin: 1.2em auto;
}

.cookie-btn {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.cookie-message a{
  position: inherit;
  margin:inherit;
}

.cookie-message a.my-close-button {
  cursor:pointer;
  background: #ce0000;
  color: #fff;
  padding: 8px 15px;
  color: #fff !important;
  font-size: 14px;
  font-weight: 300;
  display: block;
  text-align: center;
}

a.more {
    position: relative;
    top:inherit;
    color: #ffffff;
    padding: 5px 25px;
    background: #1e1e21;
   	display: inline-flex;
    cursor: pointer;
    align-items: center;
    text-align: center;
    justify-content: center;
    margin-right: 12%;
}



@media (min-width: 992px){
  .cookie-message{
    flex-direction:row;
    align-items: center;
  }



}
