     /**Loading**/

        *, *:after, *:before {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        #contenedor_carga {
            background-color: rgba(250, 240, 245, 0.9);
            height: 100%;
            width: 100%;
            position: fixed;
            transition: all 1s ease;
            z-index: 10000;
        }

        #carga {
            border: 15px solid #6a7695;
            border-top-color: #1c1e53;
            height: 100px;
            width: 100px;
            border-radius: 100%;
            animation: girar 1.5s linear infinite;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            margin: auto;
        }



        @keyframes girar {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }