/* Editor style */
body.block-editor-iframe__body.editor-styles-wrapper.post-type-page,
body.block-editor-iframe__body.editor-styles-wrapper.post-type-post {
    padding: 0px 30px;
}

.editor-styles-wrapper {
    padding: 0px 60px !important;
}


.prefix-toc ul {
    display: none
}

.prefix-toc.active ul {
    display: flex;
    padding: 0;
    flex-wrap: wrap;
    gap: 12px;
    margin: 18px 0 0 0
}

.prefix-toc > ul > li {
    position: relative;
    padding: .5rem .75rem;
    border-radius: .5rem;
    border: 1px solid var(--color-toc-item-hover, #F1F1F1);
    overflow: hidden;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    background-color: var(--color-toc-item);
    width: fit-content;

}

.toc__title {
    margin: 0;
    cursor: pointer;
    position: relative;
}

.prefix-toc > ul > li > a {
    color: var(--color-text, #e3e3e3);
}


.toc.prefix-toc.item {
    background: #463e7a;
    padding: 20px;
    border-radius: 19px;
}


.prefix-toc > ul > li::after {
    position: absolute;
    content: "";
    top: 0;
    left: -300%;
    height: 100%;
    width: 5rem;
    background: rgba(190, 173, 228, .4);
    -webkit-transform: skewX(-45deg);
    -ms-transform: skewX(-45deg);
    transform: skewX(-45deg)
}

.prefix-toc > ul > li::before {
    content: none
}

.prefix-toc > ul > li:hover {
    -webkit-box-shadow: 0 0 8px 1px var(--color-lilac, #0C0C1A);
    box-shadow: 0 0 8px 1px var(--color-lilac, #0C0C1A)
}

.prefix-toc > ul > li:hover::after {
    -webkit-animation: identifier .35s linear;
    animation: identifier .35s linear
}


.toc__title::after {
    position: absolute;
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M8 0C8.55229 0 9 0.447715 9 1V7H15C15.5523 7 16 7.44772 16 8C16 8.55228 15.5523 9 15 9H9V15C9 15.5523 8.55229 16 8 16C7.44772 16 7 15.5523 7 15V9H1C0.447715 9 2.41411e-08 8.55229 0 8C-2.41411e-08 7.44772 0.447715 7 1 7H7V1C7 0.447715 7.44772 0 8 0Z" fill="%23fff"/></svg>');
    top: 38%;
    right: 0;
    transform: translateY(-50%);
    -webkit-transition: all .2s ease 0s;
    transition: all .2s ease 0s;
    border-radius: 4px;
    #background: var(--line-color, #EBEBEB);
    padding: 4px;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toc.active .toc__title::after {
    -webkit-transform: translateY(-50%) scaleY(-1);
    -ms-transform: translateY(-50%) scaleY(-1);
    transform: translateY(-50%) scaleY(-1);
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"><rect x="2" y="11" width="2" height="16" rx="1" transform="rotate(-90 2 11)" fill="%23fff"/></svg>');
}

.content-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.content-buttons.align-left {
    justify-content: flex-start;
}

.content-buttons.align-center {
    justify-content: center;
}

.content-buttons.align-right {
    justify-content: flex-end;
}

.btn {
    position: relative;
    z-index: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    width: max-content;
    max-width: 100%;
    background: 0 0;
    transition-property: background, box-shadow, color, border-color;
    transition-duration: .3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    will-change: background, box-shadow, color, border-color;
    cursor: pointer;
    color: var(--Headings, #fff);
    text-align: center;
    font-size: 1rem;
    line-height: 1.25rem;
    min-width: 180px;
    border-radius: 100px;
    background: var(--wp--preset--gradient--superb-purple-gradient);
    border-color: var(--wp--preset--color--filled-button-border);
    border-width: 1px;
    border-style: solid;
}

.btn svg {
    max-width: 32px;
    max-height: 32px;
    fill: #fff;
}


.btn--primary {
    background: #463e7a;
    border-width: 0;
}


@media (max-width: 767.98px) {
    .wp-block-table td, .wp-block-table th {
        width: 150px !important;
    }
    .btn {
        min-width: 100%;
    }
}
