@charset "utf-8";
/* CSS Document */

.container-cookies{
 width: 1600px;
 margin: auto;
}

.subcontainer{
 width: 75%;
 margin: auto;
}

#cookies{
 width: 100%;
 position: fixed;
 bottom: 0;
 font-weight: 300;
 font-size: .3rem;
 color: white;
 background-color: rgba(0,0,0,0.7);
 z-index: 1;
 display: none;
}

.cookies{
 min-height: 70px;
 display: flex;
 justify-content: space-between;
 align-items: center;
 flex-wrap: wrap;
 gap: 10px;
}

.cookies-para { 
 font-size: .9rem; 
 color: white;
}

.cookies a{
 color: yellow;
 font-weight: 500;
 text-decoration: none;
}

#cookies-btn{
 border-radius: 0px;
 padding: 4px 8px 4px 8px;
 font-size: .9rem;
 font-family: inherit;
 cursor: pointer;
 border: 1px solid white;
 background-color: dodgerblue;
 color: white;
}

@media(max-width:1600px){
 .container-cookies{
  width: 100%
 }
}

@media(max-width:1024px){
 .cookies{
  padding: 10px 0;
 }
}