@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

.toast-view
{
    position: fixed;
    z-index: 1000;
    top: 10px;
    font-family: "Inter", serif;
    font-optical-sizing: auto;
    width: 90%;
    text-align: center;
    background-color: #F2F2F2;
    border: 1px solid #E6E6E6;
    padding: 11px 20px;
    box-sizing: border-box;
    border-radius: 0.7em;
    transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    left: 50%;
}

.mono-icon
{
    width: 40px;
}

.mono-container
{
    opacity: 0.2;
    display: flex;
    flex-direction: column;
}

.mono-text
{
    font-weight: 500;
    font-size: 14px;
}

.mono-text-large
{
    font-size: 16px;
}

.mono-icon-small
{
    width: 30px;
}

.dialog-bg
{
    display: none;
    background-color: black;
    opacity: 0.5;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
}

.dialog-view
{
    display: none;
    background-color: white;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    padding: 17px 25px;
    padding-bottom: 0;
    border-radius: 0.5em;
    flex-direction: column;
    min-width: 80%;
}

.dialog-view .heading
{
    display: block;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 7px;
}

.dialog-view .body
{
    display: block;
    font-size: 13px;
    margin-bottom: 5px;
}

.dialog-view .close-button
{
    display: block;
    text-align: right;
    font-weight: 500;
    font-size: 14px;
    padding-top: 15px;
    padding-bottom: 17px;
    cursor: pointer;
}

.simple-loader
{
    border: 5px solid transparent;
    border-radius: 50%;
    border-top: 5px solid white;
    width: 25px;
    height: 25px;
    -webkit-animation: spin 0.7s linear infinite;
    animation: spin 0.7s linear infinite;
}

.view-loader
{
    border: 5px solid transparent;
    border-radius: 50%;
    border-top: 5px solid rgb(79, 79, 79);
    width: 80px;
    height: 80px;
    -webkit-animation: spin 0.7s linear infinite;
    animation: spin 0.7s linear infinite;
}

.loader-small
{
    width: 15px;
    height: 15px;
}

@-webkit-keyframes spin
{
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin
{
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}