/**
 * Copyright (c) Microblink Ltd. All rights reserved.
 */

:host {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;

    visibility: hidden;

    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
    overflow-y: auto;
    padding: 24px;

    .mb-modal {
        width: 100%;
        max-width: 552px;

        position: relative;
        background-color: var(--mb-component-background);
        color: var(--mb-component-font-color);

        padding: 24px;

        .close-wrapper {
            position: absolute;
            right: 24px;
            top: 24px;
            cursor: pointer;

            svg {
                width: 24px;
                height: 24px;
            }
        }

        .title {
            text-align: center;
            font-weight: 500;
            font-size: 16px;
            line-height: 24px;
        }

        .content {
            margin: 24px 0;
            font-weight: 400;
            font-size: 14px;
            line-height: 20px;

            &.centered {
                text-align: center;
            }
        }

        .actions {
            display: flex;
            justify-content: center;

            button {
              width: 126px;
              height: 32px;
              border-radius: 0;
              border: 0;
              background: #48B2E8;
              color: #ffffff;
              cursor: pointer;
            }
        }
    }
}

:host(.visible) {
    visibility: visible;
    opacity: 1;
}

