#consentModal {
    border: solid 1px #ccc;
    padding: 1em;
    min-width: min(640px, 100vw);
    margin: auto;
    text-align: center;
    max-width: 640px;
}

#consentModal::backdrop {
    background-color: rgba(0, 0, 0, 0.8);
}

#consentModal h1 {
    font-size: 1.5em;
    margin-bottom: 0.5em;
}

#consentModal label {
    display: block;
    margin: 0.5em 0;
    font-size: 1.5rem;
    text-align: left;
}
#consentModal input[type="checkbox"] {
    font-size: 1.5rem;
    width: 1.2rem;
    height: 1.2rem;
}

#consentModal menu {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
    gap: .5rem;
}
#consentModal menu > button.hidd{
    display: none;
}

#consentModal .d-none{
    display: none;
}

.consent-logo{
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    padding: 1rem;
}

#consentModal .bstab-pan{
    width: 100%;
    min-width: 100%;
    height: 12rem;
    overflow: auto;
    color: #666;
    line-height: 1.5rem;
    display: none;
}

#consentModal .bstab-pan.active{
    display: block;
}

#consentModal .p-2{
    padding: 1rem;
}
#consentModal .pb-2{
    padding-bottom: 1rem;
}

.bsnav-tabs{
    display: flex;
    margin-bottom: 1rem;
    border-bottom: 1px solid #ccc;
}

.bsnav-tabs > div{
    margin-right: -1px;
    padding: 1rem 1.5rem;
    color: #666;
    text-decoration: none;
    border:1px solid #ddd;
    border-bottom: none;
    margin-bottom: 0px;
    cursor: pointer;
    background-color: #f9f9f9;
}
.bsnav-tabs > div:hover{
    border-color: #bbb;
    background-color: #fff;
}

.bsnav-tabs > div.active{
    background-color: #fff;
    margin-bottom: -1px;
}

#consentModal .tab-content{
    text-align: left;
}

#consentToggle {
    position:fixed;
    top:unset;
    bottom: .5rem;
    left: .5rem;
    z-index: 2;
}

#consentToggle button {
    border: none;
    background-color: #fff;
    display: flex;
    align-items: center;
    padding: 0.5rem;
    border-radius: .5rem;
    height: 3.5rem;
    box-shadow: 0 0 .5rem rgba(0,0,0,.1);
}

#consentToggle button svg {
    fill:#24b9d7;
    transition: fill .3s ease-in-out;
    min-width: fit-content;
    width: 48px;
}
#consentToggle button:hover{
    cursor: pointer;
}
#consentToggle button:hover svg{
    fill:#0b434f;
}
#consentToggle div.c-icon{
    max-width: 5rem;
}
#consentToggle div.c-text{
    max-width: min-content;
    font-size: 0.85rem;
    line-height: 1rem;
}
