:root {
    --csb-color-bg: var(--csb-color-bg, #fff);
    --csb-color-text: var(--csb-color-bg, #000);
    --csb-color-button: var(--csb-color-bg, #fff);
    --csb-color-button-bg: var(--csb-color-bg, #000);
    --csb-padding: 40px;
}
.csb-wrapper {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: auto;
    height: auto;
    background-color: rgba(0,0,0,0.3);
    transition: background-color 0.5s ease-in-out;
    z-index: 100000;
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
    max-width: unset;
    max-height: unset;
}
.csb-box {
    position: relative;
    padding: var(--csb-padding);
    width: 80%;
    min-width: 300px;
    max-width: 1000px;
    max-height: 100%;
    transform: scale(1);
    pointer-events: all;
    opacity: 1;
    transition: transform 0.5s ease-in-out,opacity 0.5s ease-in-out;
    z-index: 100001;
    border-radius: var(--border-radius);
    scrollbar-width: none;
    background-color: var(--csb-color-bg);
    color: var(--csb-color-text);
}
.csb-box a {
    text-decoration: underline;
    color: var(--csb-color-text);
    font-weight: 600;
}
.csb-box a:hover,
.csb-box a:focus-visible {
    text-decoration-color: var(--csb-color-button-bg);
}
.csb-box, .csb-box * {
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.3
}
.csb-box strong {
    font-weight: 700
}
.csb-wrapper:not([open]) {
    background-color: rgba(0,0,0,0);
    pointer-events: none;
}
.csb-wrapper:not([open]) .csb-box {
    transform: scale(0);
    opacity: 0;
    pointer-events: none;
}
.csb_title {
    font-size: 1.6em;
    display: block;
    margin-bottom: 0.5rem;
}
.csb-box form {
    margin: 1rem 0 0;
    display: block;
    width: 100%;
}
div.csb-box form > span {
    margin-top: .5rem;
    position: relative;
    display: block;
    width: max-content;
}
div.csb-box form > span > a {
    line-height: 1;
    display: block;
    position: absolute;
    right: 0;
    top: -.05em;
    text-decoration: none;
    transform: scale(1.5)
}
div.csb-box form label.csb-label {
    position: relative;
    text-indent: 0;
    padding: 0 1rem 0 1.3rem;
    display: block !important;
    cursor: pointer
}
div.csb-box form label.csb-label:before {
    content: '';
    width: 1rem;
    height: 1rem;
    position: absolute;
    top: .1rem;
    left: 0;
    margin-right: .5rem;
    background-color: var(--csb-color-text);
    background-image: none;
    opacity: .5;
    border-radius: 100%;
    transform: scale(1);
    clip-path: polygon(50% 0%, 70% 0, 100% 0, 100% 100%, 0 100%, 0 30%, 0 0);
    transition: opacity .2s ease-in-out, background-color .2s ease-in-out, transform .2s ease-in-out, clip-path .2s ease-in-out, border-radius .2s ease-in-out;
}
div.csb-box form input[type="checkbox"] {
    visibility: visible;
}
div.csb-box form input[type="checkbox"]:checked + label.csb-label:before,
div.csb-box form input[type="checkbox"]:hover + label.csb-label:before,
div.csb-box form input[type="checkbox"]:focus-visible + label.csb-label:before {
    border-radius: 0;
    opacity: 1;
    clip-path: polygon(40% 50%, 70% 0, 100% 0, 40% 100%, 40% 100%, 0 30%, 30% 30%);
}
div.csb-box form input[type="checkbox"]:checked + label.csb-label:before {
    transform: scale(1);
    background-color: var(--csb-color-button-bg);
}
div.csb-box form input[type="checkbox"]:not([disabled]):hover + label.csb-label:before,
div.csb-box form input[type="checkbox"]:not([disabled]):focus-visible + label.csb-label:before {
    transform: scale(.75);
    background-color: var(--csb-color-text);
}
div.csb-box form input[type="checkbox"][disabled] + label.csb-label:before {
    transform: scale(1);
    opacity: .5;
    cursor: auto;
    background-color: var(--csb-color-text);
}
div.csb-box form input[type="checkbox"][disabled] + label.csb-label {
    cursor: auto
}
div.csb-box form .csb-buttons {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-flow: row wrap;
    margin: 10px -.4rem;
}
div.csb-box button {
    font-family: inherit;
    font-size: 12px;
    padding: 5px 20px;
    margin: .4rem;
    display: block;
    border: none;
    flex: 1 1 150px;
    color: var(--csb-color-button);
    background-color: var(--csb-color-button-bg);
    transition: color 0.5s ease-in-out, background-color 0.5s ease-in-out;
}
div.csb-box button:hover,
div.csb-box button:focus-visible {
    background-color: var(--csb-color-button);
    color: var(--csb-color-button-bg);
}
#csb_close {
    position: absolute;
    right: 0;
    top: 0;
    margin: 0;
    padding: 0;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#csb_close > span {
    font-size: 30px;
    font-weight: 700;
    line-height: 0;
    display: block;
    margin-top: -.2em
}
#csb_icon {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 3rem;
    height: 3rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-right-radius: 10px;
    transition: opacity 0.5s ease-in;
    z-index: 100001;
    padding: 0;
    background-color: var(--csb-color-button-bg);
    transition: color .5s ease-in-out, background-color .5s ease-in-out;
}
#csb_icon svg {
    display: block;
    width: 70%;
    height: 70%;
    transform: scale(1);
    transition: transform .5s ease-in-out,  fill .5s ease-in-out;
    fill: var(--csb-color-button);
}
#csb_icon:hover,
#csb_icon:focus-visible {
    background-color: var(--csb-color-button);
}
#csb_icon:hover svg,
#csb_icon:focus-visible svg {
    fill: var(--csb-color-button-bg);
    transform: scale(1.1);
}
div.csb-box summary {
    position: relative;
    padding: 0 1rem 0 1.3rem;
    cursor: pointer;
    display: block;
    margin-top: 0.5em;
}
div.csb-box details summary:before {
    content: '';
    position: absolute;
    display: inline-block;
    left: 0;
    width: 1rem;
    height: 1rem;
    opacity: .5;
    cursor: auto;
    background-color: var(--csb-color-text);
    clip-path: polygon(0 0, 0 0, 0 50%, 0 100%, 0 100%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%);
    transition: clip-path .2s ease-in-out, opacity .2s ease-in-out;
}
div.csb-box details summary:hover:before,
div.csb-box details summary:focus-visible:before,
div.csb-box details[open] summary:before {
    opacity: 1;
    clip-path: polygon(100% 20%, 100% 20%, 0 20%, 0 20%, 0 20%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%);
}
div.csb-box details[open] summary:hover:before,
div.csb-box details[open] summary:focus-visible:before {
    clip-path: polygon(20% 0%, 0% 20%, 30% 50%, 0% 80%, 20% 100%, 50% 70%, 80% 100%, 100% 80%, 70% 50%, 100% 20%, 80% 0%, 50% 30%);
}
div.csb-box details summary + div {
    padding: var(--csb-padding);
    padding-top: 1rem;
    position: absolute;
    background-color: var(--csb-color-bg);
    left: 0;
    right: 0
}
.blocked.by.csp {
    cursor: pointer;
    pointer-events: none;
}
@media only screen 
    and (min-width: 375px) 
    and (max-width: 667px) 
    and (-webkit-min-device-pixel-ratio: 3), 
    only screen 
    and (min-width: 375px) 
    and (max-width: 667px) 
    and (-webkit-min-device-pixel-ratio: 2),
    (max-width: 667px)
{ 
    :root {
        --csb-padding: 20px;
    }
    div.csb-box {
        width: 100%
    }
    div.csb-box button {
        flex: 1 1 100%
    }
}