.bbx_modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #3333336e;
    z-index: 99999;
    display: none;
    height: 100vh;
    overflow-y: scroll;

}

.bbx_modal.active {
    display: flex;
}

.bbx_inner_modal {
    max-width: 600px;
    width: 90vw;
    margin: auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 20px 4px #0000008f;
    text-align: center;
    font-weight: 700;
    padding: 15px;
    display: block;
}

#cookie_title {
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1;
}

#bbx_modal_cookie .tab > p {
    text-align: left;
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 1em;
    line-height: 1.3em;
}

#bbx_modal_cookie .d-none {
    display: none;
}

#bbx_modal_cookie a {
    color: #e13c0e;
    text-decoration: underline;
}

#bbx_modal_cookie .btn {
    padding: 5px;
    margin: 7px;
    display: inline-block;
    border-radius: 5px;
    cursor: pointer;
    transition: all ease-in-out 0.01s;
    box-shadow: 1px 2px 3px 1px #808080bf;
    border: 1px solid gray;
    background-color: #e13c0e;
    color: #fff;
    float: unset;
    font-size: 1em;
    font-family: "Roboto", sans-serif;
    font-weight: 400;

}

#bbx_modal_cookie .btn:hover {
    background-color: #e13c0e;
    color: #fff;
    transform: scale(1.05);

}

#bbx_modal_cookie .row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

#bbx_modal_cookie .col-8 {
    flex: 0 0 66.66%;
    max-width: 66.66%;
}

#bbx_modal_cookie .col-4 {
    flex: 0 0 33.33%;
    max-width: 33.33%;
}

@media (max-width: 768px) {
    #bbx_modal_cookie .tab > p {
        font-size: 0.7em;
    }
}