.d-grid{
    display: grid!important;
}
.cookie-bar{
    position: fixed;
    z-index: 999;
    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: flex;
    justify-content: center;
}
.cookie-bar>div{
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cookie-text{
    /* text-align: center; */
}
.cookie-text a{
    color: black;
    font-weight: bold;
}
.cookie-bts{
    display: flex;
    margin-left: 15px;
}
.cbtn{
    padding: 20px;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    border-radius: 50px;
    font-size: 18px;
    cursor: pointer;
    background: #711643;
}

@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-bar>div{
        flex-direction: column;
        margin-left: 0px;
    }
    .cookie-text{
        text-align: center;
    }
    .cookie-bts{
        flex-flow: column;
        font-size: 14px;
    }
    .cbtn{
        margin-bottom: 10px;
    }
}