 /* Hide scrollbar for Chrome, Safari and Opera */
 *::-webkit-scrollbar {
     display: none;
 }

 /* Hide scrollbar for IE, Edge and Firefox */
 * {
     -ms-overflow-style: none;
     /* IE and Edge */
     scrollbar-width: none;
     /* Firefox */
 }



 #bg {
     display: block;
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background-image: linear-gradient(-25deg, #707070 0%, #fff 35%, #fff 65%, #707070 100%);
     z-index: -1000;
     transform: translateZ(-1000px);
 }

 body {
     width: 100%;
     overflow-x: hidden;
 }


 .spinner {
     height: 2em;
     width: 2em;
     border-left: 2px solid #fff;
     border-right: none;
     border-top: none;
     border-bottom: none;
     border-radius: 1em;
     margin-left: auto;
     margin-right: auto;
     animation: spin 1s linear 0s infinite;
 }

 @keyframes spin {
     0% {
         transform: rotateZ(0);
     }

     100% {
         transform: rotateZ(360deg);
     }
 }