.if_loader {
    position: fixed;
    left: 0;
    top: 0;

    width: 100%;
    height: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);

    z-index: -9999;
    opacity: 0;
    transition: all 0.5s ease;
    display: none !important;
}

.loader_active.if_loader {
    opacity: 1;
    z-index: 999999999999 !important;
    display: block !important;
}

.loader_active {
    overflow: hidden;
}

.if_loader_inn {
    position: relative;
    display: table;
    width: 100%;
    height: 100%;
    text-align: center;
}

.if_loader_inn_loader {
    width: 100%;
    height: 100%;
    display: table-cell;
    vertical-align: middle;
}

.if_loader_inn_loader_body {
    max-width: 300px;
    padding: 30px;
    background: #fff;
    margin: 0 auto;
    border-radius: 10px;
}

.if_loader_inn_loader_body p {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
    margin-top: 15px;
}