/*
 * Copyright (c) 2021 Nordic Semiconductor ASA
 *
 * SPDX-License-Identifier: LicenseRef-Nordic-4-Clause
 */

@import '../variables';

.dialog {
    color: $gray-700;

    .modal-content {
        border: 0 transparent;
        box-shadow: 0px 3px 6px #00000029;
        background: #ffffff 0% 0% no-repeat padding-box;
    }

    .modal-header {
        height: 40px;
        border: 0 transparent;
        background: $gray-50;
        padding: 16px 16px;

        flex-direction: row;
        align-items: center;

        p {
            font-size: 14px;
            margin: 0;
        }

        .mdi {
            font-size: 20px;
        }
    }

    .modal-body {
        overflow-wrap: anywhere;
        padding: 32px 16px 16px 16px;
        margin: 0;
        p,
        details,
        li {
            font-size: 14px;
        }

        .error-details {
            overflow-y: auto;
            @include scrollbars($white);
        }
    }
}
