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;
}

.initloading2{
    position: absolute;
    top: calc(50% - 100px);
    left: calc(50% - 100px);
    display: flex;
    background: white;
    padding: 10px;
    border-radius: 78px;
    box-shadow: -1px 4px 10px rgba(0, 0, 0, 0.23);
    align-items: center;
}

.initloading2 b{
    /* margin: 18px 13px; */
    display: block;
    font-size: 16px;
}

.init_img{
    width: 70px;
    background: url(https://www.codicore.com/assets/img/codicore-circle.svg);
    height: 70px;
    border-radius: 50%;
    border: 1px solid #19b5fe;
}
.init_details{
    padding:0 15px;
}
.init_details small{
    margin-top: -5px;
    position: relative;
    display: block;
    color: #b5b5b5;
}

.initloader {
    border: 2px solid #dff5ff;
    border-radius: 50%;
    border-top: 2px solid #19b5fe;
    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); }
}