.d-grid {
    display: grid !important;
}

.btnWhite {
    cursor: pointer;
}
.cookie-bar .btnWhite:hover {
    border: 1px solid #fff;
}

.cookie-bts>div{
    margin-right: 2rem;
}
.cookie-bar {
    position: fixed;
    z-index: 999;
    bottom: 0;
    width: 100%;
    left: 0;
    right: 0;
    background-color: #1A1A1A;
    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 {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    color: #fff;
}
.cookie-text a {
    color: black;
    font-weight: bold;
}
.cookie-bts {
    display: flex;
}
.cbtn {
    background: rgb(37, 153, 105);
    color: white;
    font-weight: bold;
    margin: 0 0.5rem;
    padding: 5px 10px;
    border-radius: 3px;
    transition: 0.3s ease;
    text-align: center;
}
#acceptCookies {
    justify-self: flex-end;
}
#refuseCookies {
    /* background: #343a40; */
}
.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;
    }
}
