
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

/**{
    padding:0;
    margin:0;
}

body {
    font-family: Roboto;
    font-size: 1rem; 
}*/

.container{
    width:1600px;
    margin:auto;
    padding:20px 0;
}
.subcontainer{
    width:85%;
    margin:auto;
}

#cookies{
    width:100%;
    position:fixed;
    bottom: 0;
    color: #212121;
    /*background-color: rgba(0, 0, 0, 0.7);*/
    z-index:1;
    display:none;
    background-color:white;
    border-color:#F4F4F4;
    box-shadow: 0 -1px 10px 0 #acabab4d;
	font-family: Roboto;
    font-size: 1rem; 
}

#cookies-btn{
    border-radius: 5px;
    padding: 10px 30px;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    border: 1px solid white;
    background-color: #1863DC;
    color: white;
}

#cookies-btn1{
    border-radius: 5px;
    padding: 10px 30px;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    border: 1px solid #1863DC;
    background-color: white;
    color:#212121;

}


.cookies{
    min-height:70px;
    display:flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap:10px;
}

.cookies_1{  
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap:10px;
    margin-top:10px
}
.cookies a{
   
    color:#1863DC; 
    font-weight: 400;
    text-decoration: none;
}

@media(max-width:1600px){
    .container{
        width:100%;
    }
}
@media(max-width:1024px){
    .cookies{
        padding:10px 0;
    }
}

