.sw19s-confirmation-modal-background {
    width: 100vw;
    height: 100vh;
    position: fixed;
    inset: 0 0 0 0;
    background-color: rgba(0, 0, 0, 0.25);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;

    @media (max-width: 768px) {
        background-color: rgba(0, 0, 0, 0.75);
    }

    &.modal-display-initial {
        display: none;
    }

    .modal-confirmation {
        width: 550px;
        padding: 2rem;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);

        @media (max-width: 425px) {
            width: 80vw;
        }

        .close-btn {
            border: none;
            background-color: transparent;
            align-self: flex-end;
            cursor: pointer;

            svg {
                width: 15px;
            }
        }

        .modal-title {
            font-weight: 700;
            font-size: 26px;
            margin-top: 15px;
            color: black;
            text-align: center;
            line-height: 120%;
        }

        .modal-text {
            padding: 0 2rem;
            text-align: center;
            font-size: 16px;

            @media (max-width: 425px) {
                padding: 0;
            }
        }

        .modal-btn-wrapper {
            margin: 1rem 0;

            .modal-btn {
                font-size: 16px;
                cursor: pointer;
            }

            .btn-dismiss {
                margin-bottom: 2rem;
                background-color: transparent;
                border: none;
                font-weight: 500;
            }
        }
    }
}
