body {
    margin: 0;
}

* {
    box-sizing: border-box;
}

.dialog-example {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgb(0 0 0 / 75%);
    z-index: 10;

    &>.content {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        background-color: white;
        border-radius: 10px;
        overflow: hidden;

        &>header {
            text-align: left;
            line-height: 50px;
            background-color: #ddeaf5;
            border-bottom: 1px solid rgb(187, 184, 184);

            &>h2 {
                margin-block-start: 0;
                padding-inline-start: 0;
                padding: 0;
                margin: 0;
                color: #000000;
                font-size: 20px;
                padding-left: 50px;
                background-position: 10px center;
                background-repeat: no-repeat;
                background-size: auto 60%;
                font-family: cursive;
                display: inline-block;
                margin-block-end: 0;
            }

            &>.win-btns {
                position: absolute;
                right: 20px;
                top: -0.5px;
                font-size: 0;

                &>button {
                    font-size: 0;
                    height: 24px;
                    vertical-align: top;
                    outline: none;
                    border: none;
                    background-repeat: no-repeat;
                    background-position-y: center;
                    background-size: auto 100%;
                    cursor: pointer;
                    margin: 0 !important;
                    background-color: transparent !important;

                    &.close {
                        width: 59px;
                    }
                }
            }
        }
    }
}