#dt-access-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(2px);
}

.dt-access-popup-content {
    background: whitesmoke;
    width: 25vw;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    text-align: left;
    z-index: 1001;
    overflow: hidden;
}

.dt-access-popup-content-head {
    background: darkgray;
    padding: 20px;
    font-size: 3em;
}

.dt-access-popup-title{
    color: white;
    margin-bottom: 0px;
    text-align: center;
}

.dt-access-popup-content-body {
    padding: 20px 30px;
}

.dt-access-popup-content-body-error{
    padding: 0px 0px 20px 0px;
	font-size: 1.0em;
}

.dt-access-popup-content-body-logout{
    padding: 20px 0px;
	 font-size: 0.8em;
}

.dt-access-popup-content-foot {
    padding: 20px;
    background: red;
    color: white;
    text-align: center;
}

.dt-access-popup-content-foot a{
    color: white !important;
    text-decoration: none;
}

.dt-access-popup-icon{
    font-size: 1.8em;
}

@media only screen and (max-width: 1000px) {
    .dt-access-popup-content {
        width: 100%;
        height: 100%;
        border-radius: 0px;
    }
  }