﻿.sovos-dialog-root {
    position: fixed;
    inset: 0px;
    background: none;
    display: none;
}

    .sovos-dialog-overlay {
        position: fixed;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: center;
        justify-content: center;
        inset: 0px;
        background-color: rgba(0, 0, 0, 0.5);
        -webkit-tap-highlight-color: transparent;
        z-index: 1499;
    }

    .sovos-dialog-container {
        height: 100%;
        outline: 0px;
        display: flex;
        -webkit-box-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        align-items: center;
        z-index: 1500;
    }

        .sovos-dialog {
            background-color: var(--sovos-text-color-contrast-text);
            color: var(--sovos-text-color-primary);
            transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
            border-radius: 8px;
            box-shadow: rgba(0, 0, 0, 0.2) 0px 11px 15px -7px, rgba(0, 0, 0, 0.14) 0px 24px 38px 3px, rgba(0, 0, 0, 0.12) 0px 9px 46px 8px;
            margin: 32px;
            position: relative;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            max-height: calc(100% - 64px);
            border-end-end-radius: 8px;
            border-end-start-radius: 8px;
            border-start-end-radius: 8px;
            border-start-start-radius: 8px;
            padding: 24px;
            min-width: 600px;
            max-width: 700px;
            z-index: 1700;
        }

            .sovos-dialog-title {
                align-items: flex-start;
                display: flex;
                flex-wrap: wrap;
                -webkit-box-pack: justify;
                justify-content: space-between;
                min-height: 48px;
                padding: 0px 0px 16px;
                color: var(--sovos-text-color-primary);
                flex: 1 1 auto;
                margin: 0px;
                font-weight: 400;
                font-size: 1.125rem;
                letter-spacing: -0.2px;
                line-height: 1.55556;
                font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
                background: none;
                border: none;
            }

            .sovos-dialog-close-button {
                border: none;
                border-radius: 50%;
                height: 32px;
                width: 32px;
                display: flex;
                justify-content: center;
                align-items: center;
                background: none;
            }

                .sovos-dialog-close-button:hover {
                    background: var(--sovos-actions-hover);
                }

                .sovos-dialog-close-button:focus-visible {
                    outline: none;
                }

                .sovos-dialog-close-path {
                    width: 24px;
                }

                .sovos-dialog-close-path path {
                    d: path("M 19 6.41 L 17.59 5 L 12 10.59 L 6.41 5 L 5 6.41 L 10.59 12 L 5 17.59 L 6.41 19 L 12 13.41 L 17.59 19 L 19 17.59 L 13.41 12 Z");
                    fill: var(--sovos-actions-active);
                }

            .sovos-dialog-content {
                flex: 1 1 auto;
                overflow-y: auto;
                font-weight: 400;
                font-size: 0.875rem;
                letter-spacing: -0.1px;
                line-height: 1.42857;
                font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
                color: var(--sovos-text-color-secondary);
                margin: 0px 0px 8px;
                padding: 0px;
            }

            .sovos-dialog-buttons-container {
                display: flex;
                -webkit-box-align: center;
                align-items: center;
                -webkit-box-pack: end;
                justify-content: flex-end;
                flex: 0 0 auto;
                margin: 8px 0px 0px;
                padding: 0px;
            }