﻿.dialog {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 20px;
    border-radius: 7px;
    border: solid 1px black;
    background-color: white;
    z-index: 999999;
    display:none;
    max-height:calc(100% - 32px);
}
.dialog_title {
    color: rgba(0,0,0,.87);
    font-family: Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    font-size: 1.25rem;
    line-height: 2rem;
    font-weight: 500;
    letter-spacing: .0125em;
    text-decoration: inherit;
    text-transform: inherit;
    display: block;
    position: relative;
    flex-shrink: 0;
    box-sizing: border-box;
    margin: 0;
    padding: 0 24px 9px;
    border-bottom: 1px solid transparent;
    margin-block-start: 0.83em;
    margin-block-end: 0.83em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}
.dialog_title::before {
    display: inline-block;
    width: 0;
    height: 40px;
    content: "";
    vertical-align: 0;
    box-sizing: border-box;
}
.dialog_content {
    padding-top: 0;
    color: rgba(0,0,0,.6);
    font-family: Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 400;
    letter-spacing: .03125em;
    text-decoration: inherit;
    text-transform: inherit;
    flex-grow: 1;
    box-sizing: border-box;
    margin: 0;
    padding: 20px 24px;
    overflow: auto;
    display: block;
}
.dialog_actions {
    display: flex;
    position: relative;
    flex-shrink: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    box-sizing: border-box;
    min-height: 52px;
    margin: 0;
    padding: 8px;
    border-top: 1px solid transparent;
}
.dialog_button {
    color: var(--mdc-theme-primary, #6200ee);
    background-color: transparent;
    max-width: 100%;
    text-align: right;
    height: 36px;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    will-change: transform,opacity;
    font-family: Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    font-size: .875rem;
    font-weight: 500;
    letter-spacing: .0892857143em;
    text-decoration: none;
    text-transform: uppercase;
    padding: 0 8px 0 8px;
    display: inline-flex;
    position: relative;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    min-width: 64px;
    border: none;
    outline: none;
    line-height: inherit;
    user-select: none;
    -webkit-appearance: none;
    overflow: visible;
    vertical-align: middle;
    border-radius: 4px;
}
.dialog_button_label {
    box-sizing: border-box;
    color: var(--mdc-theme-primary, #6200ee);
    text-align: right;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    font-family: Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    font-size: .875rem;
    font-weight: 500;
    letter-spacing: .0892857143em;
    text-transform: uppercase;
    line-height: inherit;
    user-select: none;
}
.dialog_confirmation {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 8px;
    padding-bottom: 8px;
    color: rgba(0,0,0,.6);
    font-family: Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 400;
    letter-spacing: .03125em;
    text-decoration: inherit;
    text-transform: inherit;
    flex-grow: 1;
    box-sizing: border-box;
    margin: 0;
    overflow: auto;
    display: block;
    pointer-events: auto;
    box-sizing: border-box;
}

/* The container */
.container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.container input:checked ~ .checkmark {
    background-color: #2196F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.container .checkmark:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}
.dialog_arrow {
    display: block;
    height: 20px;
    background-color: #e4e4e4;
    text-align: center;
    border-radius: 4px;
}

.dialog_spacer {
    display: block;
    height: 4px;
}

.dialog_digit {
    display: block;
    height: 48px;
    background-color: #ece0fd;
    color: #6305ee;
    font-family: Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    font-size: 2rem;
    line-height: 48px;
    font-weight: 400;
    text-align: center;
    border-radius: 4px;
}

.dialog_digit_white {
    display: block;
    height: 48px;
    color: #000000;
    font-family: Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    font-size: 2rem;
    line-height: 48px;
    font-weight: 400;
    text-align: center;
}