.container {
    margin: 0 auto;
    max-width: 1320px;
}

.cookiesinfo_container {
    position: fixed;
    bottom: 15px;
    width: calc(100% - 170px);
    max-width: 950px;
    min-height: 60px;
    background: rgb(255, 255, 255);
    left: 0;
    right: 0;
    margin: auto;
    box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.3);
    display: none;
    grid-template-columns: 1fr 130px;
    z-index: 10000000000;
}

.cookielink {
    margin: 0 10px;
    display: contents;
    color: #febd12;
}

.cookiesinfo_text {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px !important;
    font-size: 14px;
    text-align: justify;
}

.cookiesinfo_buttoncontainer {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookiesinfo_button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 5px;
    width: fit-content;
    padding: 0 20px;
    cursor: pointer;
    height: 36px;
    font-weight: 600;
    font-size: 14px;
}

.cookiesinfo_button.btn:hover {
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
}

@media (max-width: 576px) {
    .cookiesinfo_container {
        bottom: 65px;
        padding: 2px;
        padding-bottom: 0;
        height: auto;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 50px;
        width: calc(100% - 20px);
        top:unset;
    }
    .cookiesinfo_button {
     margin: 10px 0;
    }
    .cookiesinfo_text {
      padding-bottom: 0 !important;
     }
}