main {
    height: 60px;
    width: 70px;
    background: red;
}

h1{
    color: aqua;
}

body {
    margin-right: 0px;
    margin-left: 0px;
    margin-top: 0px;
    font-family: "Nunito Sans" !important;
    line-height: 1.5;
    background-color: #F5F6FA;

}

.custom-row {
    display: flex;
    background-color: #F5F6FA;
    justify-content: space-between;
    padding-right: 20px;
}

/*Loader css */
.loader-outer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 1;
}

.loader::before {
    content: "";
    height: 100%;
    position: absolute;
    inset: 0;
    backdrop-filter: blur(0.5px);
    background: #00000085;
}

.loader span {
    display: block;
    margin: 0 auto;
}

span[class*="l-"] {
    height: 8px;
    width: 8px;
    background: rgb(255, 255, 255);
    display: inline-block;
    margin: 12px 2px;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -webkit-animation: loader 2s infinite;
    -webkit-animation-timing-function: cubic-bezier(0.03, 0.615, 0.995, 0.415);
    -webkit-animation-fill-mode: both;
    -moz-animation: loader 2s infinite;
    -moz-animation-timing-function: cubic-bezier(0.03, 0.615, 0.995, 0.415);
    -moz-animation-fill-mode: both;
    -ms-animation: loader 2s infinite;
    -ms-animation-timing-function: cubic-bezier(0.03, 0.615, 0.995, 0.415);
    -ms-animation-fill-mode: both;
    animation: loader 2s infinite;
    animation-timing-function: cubic-bezier(0.03, 0.615, 0.995, 0.415);
    animation-fill-mode: both;
}

span.l-1 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    -ms-animation-delay: 1s;
    -moz-animation-delay: 1s;
}

span.l-2 {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    -ms-animation-delay: 0.9s;
    -moz-animation-delay: 0.9s;
}

span.l-3 {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    -ms-animation-delay: 0.8s;
    -moz-animation-delay: 0.8s;
}

span.l-4 {
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
    -ms-animation-delay: 0.7s;
    -moz-animation-delay: 0.7s;
}

span.l-5 {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    -ms-animation-delay: 0.6s;
    -moz-animation-delay: 0.6s;
}

span.l-6 {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
    -ms-animation-delay: 0.5s;
    -moz-animation-delay: 0.5s;
}

span.l-7 {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    -ms-animation-delay: 0.4s;
    -moz-animation-delay: 0.4s;
}

span.l-8 {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
    -ms-animation-delay: 0.3s;
    -moz-animation-delay: 0.3s;
}

span.l-9 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
    -ms-animation-delay: 0.2s;
    -moz-animation-delay: 0.2s;
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
    -ms-animation-delay: 0.1s;
    -moz-animation-delay: 0.1s;
}

span.l-10 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -ms-animation-delay: 0s;
    -moz-animation-delay: 0s;
}

@-webkit-keyframes loader {
    0% {
        -webkit-transform: translateX(-30px);
        opacity: 0;
    }

    25% {
        opacity: 1;
    }

    50% {
        -webkit-transform: translateX(30px);
        opacity: 0;
    }

    to {
        opacity: 0;
    }
}

@keyframes loader {
    0% {
        -webkit-transform: translateX(-30px);
        transform: translateX(-30px);
        opacity: 0;
    }

    25% {
        opacity: 1;
    }

    50% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
        opacity: 0;
    }

    to {
        opacity: 0;
    }
}
