﻿/*Begin Blazor reconnect default classes*/
#components-reconnect-modal {
    display: none;
    
    position: fixed;
    inset: 0px;
    z-index: 4000;
    overflow: hidden;
    /*background-color: rgb(255, 255, 255);*/
    /*opacity: 0.8;*/
    background: rgba(0,0,0,.5);
    text-align: center;
    font-weight: bold;
    transition: visibility 0s linear 500ms;
    visibility: visible;
    flex-direction: row;
    justify-content: center;
    /*transition: visibility 0s linear 1000ms;*/
}

#components-reconnect-modal.components-reconnect-show,
#components-reconnect-modal.components-reconnect-failed,
#components-reconnect-modal.components-reconnect-rejected {
    display: block;
}

/*End Blazor reconnect default classes*/


.reconnect-container{
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
    min-width: 300px;
    margin-left: auto;
    margin-right: auto;
    background-color: #fff;
    padding: 3rem;
}

.reconnect-content{
    font-family: "Helvetica Neue LT Std", sans-serif;
}

.reconnect-footer{
    max-width: 620px;
    margin-top: 2rem;
    margin-left: auto;
    margin-right: auto;
}

.reconnect-footer button{
    padding: 0.75rem 1rem;
    background: #feec34;
    border: 0;
    cursor: pointer;
    font-size: 1rem;
    font-family: "Helvetica Neue LT Std", sans-serif;
    line-height: 1;
}