.authenticator_setup_container{
    display: flex;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index:110;
    justify-content: center;
    align-items: center;
}

.authenticator_setup_container .dark_background{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index:111;
}

.authenticator_setup_container .authenticator_setup_window{
    width: 96%;
    max-width:500px;
    height: 90%;
    max-height: 600px;
    overflow: auto;
    top: 1%;
    z-index:112;
    background-color:#FFF;
    border-radius:15px;
    position:relative;
}

.authenticator_setup_container .authenticator_setup_window .cim{
    text-align: center;
    padding:20px;
    background-color:#0a9ebb;
    color:#FFF;
    font-size:22px;
    font-weight:bold;
}

.authenticator_setup_container .authenticator_setup_window .inner_container{
    padding:20px;

}

.authenticator_setup_container .authenticator_setup_window .inner_container ul{
    list-style-type: none;
    margin-left:0px;
    padding-left:0px;
}

.sysop_logo img{
    max-width:200px;
    max-height:30px;
}

.authenticator_cancel{
    color:#0a9ebb;
    text-decoration: none;
    display:block;
    position: absolute;
    bottom:15px;
    right:15px;
    width:auto;
    text-align: right;
    font-size:14px;
    border-radius:5px;
    padding:5px;
    cursor: pointer;
}

.authenticator_cancel:hover{
    background-color:#0a9ebb;
    color:#fff;
}