.d-grid {
    display: grid !important;
}
.cookie-bar {
    position: fixed;
    z-index: 9999999999;
    bottom: 0;
    width: 100%;
    left: 0;
    right: 0;
    background-color: white;
    padding: 1rem;
    box-shadow: 0px 13px 15px 5px rgba(0, 0, 0, 80%);
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
}
.cookie-text {
    text-align: center;
}
.cookie-text a {
    color: black;
    font-weight: bold;
}
.cookie-bts {
    display: flex;
    justify-content: center;
}
.cbtn {
    cursor: pointer;
    background: #fff;
    color: var(--dark-100);
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 18px;
    margin: 0 0.5rem;
    padding: 10px 16px;
    border: 1px solid var(--dark-100);
    border-radius: 30px;
    transition: 0.3s ease;
    text-align: center;
}
#acceptCookies {
    justify-self: flex-end;
}
.cbtn:hover {
    filter: brightness(1.2);
}

@media screen and (max-width: 998px) {
    .cookie-bar {
        grid-template-columns: 100%;
        align-items: center;
    }
    .cookie-bts {
        justify-content: center;
        margin-top: 10px;
    }
}
@media screen and (max-width: 500px) {
    .cookie-bts {
        flex-flow: column;
        font-size: 14px;
    }
    .cbtn {
        margin-bottom: 10px;
    }
}
