/* add prefixed mask image property */
#cookieman-modal
    [data-bs-toggle="collapse"][data-bs-target="#cookieman-settings"]:after {
    -webkit-mask-image: url("data:image/svg+xml,<svg viewBox='0 0 16 16' fill='currentColor' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z' clip-rule='evenodd'/></svg>");
    mask-image: url("data:image/svg+xml,<svg viewBox='0 0 16 16' fill='currentColor' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z' clip-rule='evenodd'/></svg>");
}

#cookieman-modal .btn-default {
    --btn-color-fg: var(--color-darkgray);
    --btn-color-bg: var(--color-white);
    --btn-color-border: var(--color-darkgray);
}

#cookieman-modal .btn-default:hover,
#cookieman-modal .btn-default:focus {
    --btn-color-fg: var(--color-white);
    --btn-color-bg: var(--color-darkgray);
    --btn-color-border: var(--color-darkgray);
}

#cookieman-modal .panel-title {
    display: flex;
    align-items: center;
}

#cookieman-modal .panel-title label {
    width: auto;
}

#cookieman-modal .panel-title button,
#cookieman-modal .panel-title a {
    flex-grow: 1;
    font-family: unset;
    border: none;
    background-color: transparent;
    text-align: left;
}

#cookieman-modal table {
    width: 100%;
}

#cookieman-modal th,
#cookieman-modal td {
    padding-right: 0.5em;
    text-align: left;
    vertical-align: text-bottom;
}

#cookieman-modal [data-toggle="collapse"]::after {
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    content: "\f077";
}

#cookieman-modal [data-toggle="collapse"].collapsed::after {
    content: "\f078";
}

#cookeman-modal .table-responsive {
    overflow: auto;
}

.cookieman-revoke {
    position: fixed;
    left: 0.625rem;
    bottom: 0.625rem;
    z-index: 1;
    width: 2.5rem;
    height: 2.5rem;
    background-image: url("../Icons/cookie.svg");
    background-repeat: no-repeat;
    background-size: 75%;
    background-position: center;
    background-color: var(--color-white);
    border: none;
    border-radius: 50%;
    box-shadow: 5px 10px 15px rgba(0, 0, 0, 0.125);
}

@media (min-width: 1024px) {
    #cookieman-modal .modal-dialog {
        width: 50em;
        max-width: 80vw;
    }
}
#cookieman-modal.modal {
    z-index: 2147483005;
}
@media (min-width: 768px) {
    #cookieman-modal .modal-dialog {
        margin: 0;
        position: absolute;
        right: 25px;
        bottom: 25px;
    }
}
