#cb{
    position: absolute;
    z-index: 10;
    width: 90%;
    height: auto;
    display: flex;
    left: 50%;
    top: 50%;
    flex-direction: column;
    transform: translate(-50%, -50%);
    justify-content: space-evenly;
    background-color: white;
    border-radius: 1rem;
    padding: 1rem;
    border: solid 2px black;
    /*filter: drop-shadow(0px 1px 21px grey);*/
    align-content: stretch;
    align-items: stretch;
}

.cb_text{
    width: 90%;
    text-align: center;
    font-size: 1.1rem;
    align-self: center;
    margin-bottom: 2rem;
    font-family: Arial, Helvetica, sans-serif;
}

.cb_buttons{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

#cb_btn_deny{
    border: unset;
    border-radius: 1.5rem;
    padding: 0.3rem;
    font-size: 1rem;
    cursor: pointer;
    transition: 1s;
    background-color: #fff;
}

#cb_btn_deny > a{
    color: #000;
}

#cb_btn_allow{
    background-color: #ef60c5;

    border-radius: 1.5rem;
    border:  0.2rem rgb(0, 0, 0) solid;
    padding: 0.3rem;
    font-size: 1rem;
    cursor: pointer;
    transition: 1s;

}

#cb_btn_allow > a{
    color: #000;
}

@media (min-width: 768px) {
    #cb{
        width: 50%;
        
    }
}