.cookie-container{
    align-items: center;
    background: rgb(255, 255, 255);
    color: rgb(51, 51, 51);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    left: 50%;
    position: fixed;
    width: 100%;
    z-index: 9999;
    max-width: 1000px;
    transform: translateX(-50%);
    box-shadow: rgba(0, 0, 0, 25%) 0px 2px 8px;
    bottom: 0px;
    font-size: 14px;
    line-height: 1.8;
}

.cookie-terms{
    flex: 1 0 300px; 
    margin: 15px;
}

.cookie-btn button{
    border-radius: 4px;
    box-shadow: none;
    cursor: pointer;
    flex: 0 0 auto;
    padding: 5px 10px;
    margin: 15px;
    width: 92px;
    height: 37px;
}

.cookie-btn button:nth-child(1){
    background:rgb(255, 255, 255);
    border: 1px solid rgb(48, 168, 251);
    color: rgb(48, 168, 251);
}

.cookie-btn button:nth-child(2){
    background: rgb(48, 168, 251);
    border: 0px;
    color: rgb(255, 255, 255);
}

.cookie-btn button:hover{
    opacity: 0.7;
}

@media screen and (max-width: 829px) {
    .cookie-terms{
        font-size: 12px;
    }
}

