noscript{
    display: block;
    background: white;
    width: 80%;
    margin: 150px auto;
    padding: 2em;
    box-shadow: -1px 4px 10px rgba(0, 0, 0, 0.23);
}
noscript h1{
    text-align: center;
    color: red;
}

.container-loading{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.initloading2{
    display: flex;
    padding: 10px;
    border-radius: 78px;
    box-shadow: -1px 4px 10px rgb(90 90 90 / 23%);
    align-items: center;
    color: #3b3d3f;
    background: white;
}

.initloading2 b{
    /* margin: 18px 13px; */
    display: block;
    font-size: 16px;
}

.init_img{
    width: 70px;
    background: url(../img/diresa-s.jpg);
    height: 70px;
    border-radius: 50%;
    /* border: 1px solid #ffffff; */
    background-size: cover;
    background-size: 70px;
    background-repeat: no-repeat;
    background-position: center;
}
.init_details{
    padding:0 15px;
    /* display: none; */
}
.init_details small{
    margin-top: -5px;
    position: relative;
    display: block;
    color: #b5b5b5;
}

.initloader {
    border: 2px solid #bed1f5;
    border-radius: 50%;
    border-top: 2px solid #2f55a5;
    width: 30px;
    height: 30px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

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

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