/*
.loader-first {
            position: fixed;
            left: 0;
            top: 0;
            width: 100%;
            height: 100vh;
            z-index: 99999999;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: #fff;
        }


        .loader-first img {
            width: 250px;
        }

        @media only screen and (max-width: 600px) {
            .loader-first img {
                width: 200px;
            }
        }

        .alert-warnning {
            position: fixed;
            top: 0;
            left: 0;
            z-index: 999999;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: 100%;
            font-size: 20px;
            text-transform: uppercase;
            text-align: center;
            line-height: 1.5em;
            font-weight: 700;
            color: #fff;
            background: #000;
            overflow: hidden;
        }

        .alert-warnning p {
            position: absolute;
            left: 50%;
            top: 50%;
            font-size: 18px;
            transform: translate(-50%, -50%);
        } */