.csb-wrapper {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
    transition: background-color 0.5s ease-in-out;
    z-index: 100000;
}
.csb-box {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 60%;
    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;
    overflow-y: scroll;
    scrollbar-width: thin
}
.csb-box, .csb-box * {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.3;
}
.csb-wrapper.csb-dismissed {
    background-color: rgba(0,0,0,0);
    pointer-events: none;
}
.csb-wrapper.csb-dismissed .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;
}
div.csb-box form > span > a {
    line-height: 1;
    display: block;
    position: absolute;
    right: 0;
    top: 18px;
}
div.csb-box form label.csb-label {
    /*! line-height: 1.2 */
    position: relative;
    text-indent: 0;
    padding: 0 1rem 0 1.3rem;
}
div.csb-box form label.csb-label:before {
    width: .8rem;
    height: .8rem;
    position: absolute;
    top: .1rem;
    left: 0;
    margin-right: .5rem
}
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 form .csb-buttons button {
    background-color: transparent;
    font-family: inherit;
    font-size: 12px;
    padding: 5px 20px;
    margin: .4rem;
    display: block;
    border: none;
    transition: color 0.5s ease-in-out, background-color 0.5s ease-in-out;
}
div.csb-box form .csb-buttons button#csb-all {
    padding: 5px 20px;
}
#csb-openov {
    cursor: pointer;
    display: block;
    margin-top: 0.5em;
}
#csb-ov {
    display: none;
}
#csb-ov.csb-ovopen {
    display: block;
}
#csb-icon {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-right-radius: 10px;
    opacity: 0.6;
    transition: opacity 0.5s ease-in;
    z-index: 100001;
}
#csb-icon:hover {
    opacity: 1;
}
.blocked.by.csp {
    cursor: pointer;
    pointer-events: none;
}