          #white {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            background-color: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(20px);
            display:none;
            z-index: 9999999999;
            font-family:"shabnam" ;
        }

        #load1 {
            position: absolute;
            top: calc(50% - 100px);
            left: calc(50% - 100px);
            width: 200px;
            height: 200px;
            border-radius: 100%;
            background-color: transparent;
            border-left: 20px solid #ea1;
            border-right: 20px solid #ea1;
            border-top: 20px solid transparent;
            border-bottom: 20px solid transparent;

            animation-name: loading;
            animation-duration: 2000ms;
            animation-iteration-count: infinite;
        }

        #load2 {
            position: absolute;
            top: calc(50% - 75px);
            left: calc(50% - 75px);
            width: 150px;
            height: 150px;
            border-radius: 100%;
            background-color: transparent;
            border-left: 20px solid rgb(238, 87, 17);
            border-right: 20px solid rgb(238, 87, 17);
            border-top: 20px solid transparent;
            border-bottom: 20px solid transparent;
            animation-name: loading;
            animation-duration: 2000ms;
            animation-iteration-count: infinite;
            animation-direction: reverse;
        }

        #load4 {
            position: absolute;
            top: calc(50% - 55px);
            left: calc(50% - 55px);
            width: 110px;
            height: 110px;
            border-radius: 100%;
            background-color: #fde5e5;
            border-top: 20px solid rgb(238, 87, 17);
            border-bottom: 20px solid rgb(238, 87, 17);
            border-right: 20px solid transparent;
            border-left: 20px solid transparent;
            animation-name: loading;
            animation-duration: 2000ms;
            animation-iteration-count: infinite;
            animation-direction: reverse;

        }

        #load3 {
            position: absolute;
            top: calc(50% + 10px);
            left: calc(50% - 30px);
            text-align: center;
            background-color: transparent;
            width: 90px;
            height: 20px;


        }

        @keyframes loading {
            100% {
                transform: rotate(360deg);
            }
        }
