.style {
    color: #fff;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: center;
}
.style label {
    display: block;
    position: relative;
    width: 100%;
    font-weight: 600;
    padding: 1.5vw 0 1.5vw 5vw;
    border-bottom: 1px solid var(--wh40);
    cursor: pointer;
}
.style input[type=checkbox] {
    opacity: 0;
    pointer-events: none;
    position: absolute;
}
.style label::before {
    content: "";
    width: 2.5vw;
    height: 1vw;
    border-radius: 100px;
    background: var(--wh40);
    position: absolute;
    left: 0;
}
.style label::after {
    content: "";
    width: 1.5vw;
    aspect-ratio: 1/1;
    position: absolute;
    top: calc(50% - .75vw);
    left: 0;
    background: #fff;
    border-radius: 50%;
    transition: all .2s ease;
}
.style input:checked + label::after {
    background: #ccffdf;
    left: 1.5vw;
}
.parus-buttons {
    display: none !important;
}
.parus-button-on .parus-buttons {
    display: flex !important;
}
.pe-cookies {
    display: flex;
    width: 100%;
    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;
}
.parus-content-anim {
    //animation: pca .5s ease 0s 1 forwards;
    padding: 0 !important;
}
.parus-content-c {
    transition: width .5s ease;
}
.parus-content-on .parus-content-c {
    //border-radius: 24px;
    width: 80vw;
}
//@keyframes pca {
    0% {padding: 0}
    100% {padding: 3vw}
}
.pe-jet-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: .5vw;
    padding: .4vw 0;
    color: #fff;
}
.pe-jet-row label, .pe-jet-row select {
    background: none !important;
    color: #fff;
    font-size: .9vw;
}
.pe-jet-row label {
    display: flex;
    align-items: center;
    width: 100%;
    display: none;
}
.pe-jet-row select, .style select {
    padding: .5vw;
    border: 1px solid #ffffff60;
    background: none;
    color: #dedede;
}
.style select {
    margin: .3vw 0 0 0;
}
.style span {
    display: block;
    margin: 2vw 0 0 0;
}
.pe-jet-row select[disabled] {
    opacity: .5;
}
.parus-editor-anim {
    animation: pea .3s ease .2s 1 forwards;
    transform: translateX(100%)
}
@keyframes pea {
    0% {transform: translateX(100%)}
    100% {transform: translateX(0)}
}
.pe-disabled {
    color: #fff;
    background: #ffffff20;
    padding: 1vw;
    border-radius: 10px;
    display: none;
    position: absolute;
    justify-content: center;
    align-items: center;
    inset: -5px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    text-align: center;
    opacity: 1;
    z-index: 999;
    backdrop-filter: blur(12px);
    line-height: 2em;
    font-weight: 600;
    border: 1px solid #ff000080;
}