﻿.sovos-sliding-panel-overlay {
    position: fixed;
    inset-block-start: 0px;
    inset-inline-end: 0px;
    min-height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 1;
    z-index: 8999;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    width: 100% !important;
    pointer-events: none;
}

    .sovos-sliding-panel {
        background-color: var(--sovos-text-color-contrast-text);
        color: var(--sovos-text-color-primary);
        transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
        box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 10px -5px, rgba(0, 0, 0, 0.14) 0px 16px 24px 2px, rgba(0, 0, 0, 0.12) 0px 6px 30px 5px;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        height: 100%;
        flex: 1 0 auto;
        z-index: 9000;
        position: fixed;
        top: 0px;
        outline: 0px;
        right: 0px;
        overflow: hidden;
    }

        .sovos-sliding-panel-open {
            width: 90%;
        }

            .sovos-sliding-panel-overlay.sovos-sliding-panel-open {
                opacity: 1;
                pointer-events: visible;
            }

        .sovos-sliding-panel-closed {
            width: 0%;
        }

            .sovos-sliding-panel-overlay.sovos-sliding-panel-closed {
                opacity: 0;
            }

    .sovos-sliding-panel-header {
        box-sizing: border-box;
        border-bottom: 1px solid rgb(219, 224, 229);
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        justify-content: space-between;
        max-height: 48px;
        min-height: 48px;
        background-color: rgb(255, 255, 255);
        color: #072448;
        transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
        overflow-y: auto;
        flex: 1 0 auto;
        z-index: 1200;
        position: fixed;
        top: 0px;
        outline: 0px;
        width: inherit;
        right: 0px;
        flex-direction: row;
        padding: 0px 24px;
    }

        .sovos-sliding-panel-title {
            margin: 0px;
            font-weight: 500;
            font-size: 1.5rem;
            letter-spacing: -0.2px;
            line-height: 1.66667;
            font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
            white-space: nowrap;
        }

        .sovos-sliding-panel-header-buttons {
            margin-block: 4px;
            margin-inline: 16px 0px;
            -webkit-box-align: center;
            align-items: center;
            display: flex;
            flex: 1 0 auto;
            -webkit-box-pack: end;
            justify-content: flex-end;
        }

            .sovos-sliding-panel-title-actions {
                -webkit-box-align: center;
                align-items: center;
                display: flex;
                -webkit-box-pack: start;
                justify-content: flex-start;
            }

            .sovos-sliding-panel-title-close {
                -webkit-box-align: center;
                align-items: center;
                display: flex;
                -webkit-box-pack: start;
                justify-content: flex-start;
            }

        .sovos-sliding-panel-content {
            height: calc(100% - 48px);
            min-height: calc(100% - 48px);
            max-height: calc(100% - 48px);
            overflow: auto;
            width: auto;
            background: none;
            color: var(--sovos-text-color-primary);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            position: relative;
            top: 48px;
            padding: 24px;
            box-sizing: border-box;
        }

            .sovos-sliding-panel-content img {
                max-width: 75%;
                max-height: 90%;
            }

            .sovos-sliding-panel-content ol {
                margin: 0px;
            }

            .sovos-sliding-panel-content ol > li::marker {
                font-weight: bold;
            }

            .sovos-sliding-panel-content .step {
                font-weight: bold;
            }

.sovos-header {
    margin: 0px;
    color: var(--sovos-text-color-primary, #212121);
}

.sovos-header-h4 {
    font-family: Inter, Inter-Medium, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 24px;
    letter-spacing: -0.2px;
    line-height: 36px;
    font-weight: 500;
}

.sovos-header-h5 {
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 18px;
    letter-spacing: -0.2px;
    line-height: 28px;
    font-weight: 400;
}

.sovos-header-h6 {
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 16px;
    letter-spacing: -0.2px;
    line-height: 24px;
    font-weight: 400;
}


.sovos-sliding-panel-content::-webkit-scrollbar, body::-webkit-scrollbar {
    border-radius: 3px;
    height: 6px;
    width: 6px;
}

.sovos-sliding-panel-content::-webkit-scrollbar-corner, body::-webkit-scrollbar-corner {
    background-color: transparent;
}

.sovos-sliding-panel-content::-webkit-scrollbar-thumb, body::-webkit-scrollbar-thumb {
    background-color: rgb(84, 94, 117);
    border-radius: 3px;
    outline: 0px;
}

.sovos-sliding-panel-content::-webkit-scrollbar-track, body::-webkit-scrollbar-track {
    background-color: transparent;
}