#pe-editor {
    position: fixed;
    inset: 0 78vw;
    width: 22vw;
    height: 100vh;
    display: none;
    padding: 5vw 2vw 8vw 2vw !important;
    background: #111111cc;
    backdrop-filter: blur(20px);
    flex-direction: column !important;
    justify-content: end !important;
    align-items: start !important;
    border-radius: 10px 0 0 10px;
    box-shadow: 0 0 20px #11111140;
}
.pe-editor-on {
    display: flex !important;
    z-index: 999;
    transform: translateX(100%);
    animation: peon .3s ease 0s 1 forwards;
}
.pe-jet-selects {
    max-height: 53vh;
    overflow-y: scroll;
}
.pe-content-on {
    /* animation: pcon .3s ease 0s 1 forwards; */
}
@keyframes pcon {
    0% {width: 100vw}
    100% {width: 78vw}
}
@keyframes peon {
    0% {transform: translateX(100%)}
    100% {transform: translateX(0)}
}
.style {
    color: #fff;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: center;
}
.style label {
    display: block;
    position: relative;
    width: 100%;
    font-size: .75vw;
    font-weight: 600;
    padding: 1.5vw 0 1.5vw 4vw;
    cursor: pointer;
}
.style input[type=checkbox] {
    opacity: 0;
    pointer-events: none;
    position: absolute;
}
.style label::before {
    content: "";
    width: 2.4vw;
    height: .8vw;
    border-radius: 100px;
    background: var(--cs-g1-o1);
    position: absolute;
    left: 0;
}
.style label::after {
    content: "";
    width: 1.2vw;
    aspect-ratio: 1/1;
    position: absolute;
    top: calc(50% - .6vw);
    left: 0;
    background: #fff;
    border-radius: 50%;
    transition: all .2s ease;
}
.style input:checked + label::after {
    background: #ccffdf;
    left: 1.4vw;
}
.pe-cookies {
    display: flex;
    padding: 1vw;
    border-radius: 10px;
    border: 1px solid #ffffff40;
    color: #fff;
    flex-direction: column;
    max-height: 15vh;
    min-height: 15vh;
    overflow-y: scroll;
}
.pe-cookies div, .pe-cookies span {
    display: block;
    width: 100%;
    padding: .5vw 0;
}
.pe-jet-row {
    display: grid;
    grid-template-columns: 1vw .8vw 1fr .5fr .5fr .75fr;
    gap: 2px;
    padding: .4vw 0;
    color: #fff;
    position: relative;
}
.pe-jet-row-disabled::after {
    content: "Wyłączone";
    position: absolute;
    inset: 10% 0;
    width: 100%;
    height: 80%;
    background: #ff000030;
    backdrop-filter: blur(10px);
    z-index: 9;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 10px;
}
.pe-jet-row label, .pe-jet-row select {
    color: #fff;
    font-size: .9vw;
}
.pe-jet-row label {
    display: flex;
    align-items: center;
    width: 100%;
    font-size: .75em;
    background: none !important;
    /* display: none; */
}
.pe-jet-row select, .style select {
    padding: .5vw;
    border: 1px solid #ffffff60;
    background: #111;
    color: #dedede;
    border-radius: 10px;
}
.style select {
    margin: .3vw 0 0 0;
}
.style span {
    display: block;
    margin: 2vw 0 0 0;
}
.pe-jet-row select[disabled] {
    opacity: .5;
}
.pe-disabled {
    padding: .3vw;
    border: 1px solid #ff0000;
    border-radius: 10px;
}
.pe-disabled select {
    user-select: none !important;
    pointer-events: none !important;
}
.pe-drag {
    cursor: grab;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2vw;
    opacity: .5;
    user-select: none;
}
.pe-drag:active {
    cursor: grabbing;
}
.pe-dragging {
    opacity: .4;
}
.pe-dragover {
    outline: 1px solid #ccffdf;
    border-radius: 8px;
}
.znacznik {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9997;
    background: #0000ff80;
    color: #fff;
    padding: .5vw 0;
    font-size: var(--o1);
    font-weight: 700;
    text-align: center;
}
