﻿@media only screen and (min-width: 0px) and (max-width: 400px) {
    .FetchingData {
        border-radius: 10px;
        position: absolute;
        top: 10%;
        background-color: #FFFFFF;
        left: 21%;
        width:250px;
        height: auto;
    }
}

@media only screen and (min-width: 401px) and (max-width: 990px) {
    .FetchingData {
        border-radius: 10px;
        position: absolute;
        top: 10%;
        background-color: #FFFFFF;
        left: 35%;
        width: 250px;
        height: auto;
    }
}

@media only screen and (min-width: 991px) and (max-width: 1400px) {
    .FetchingData {
        border-radius: 10px;
        position: absolute;
        top: 10%;
        background-color: #FFFFFF;
        left: 40%;
        width: 300px;
        height: auto;
    }
}

@media screen and (min-width: 1401px) {
    .FetchingData {
        border-radius: 10px;
        position: absolute;
        top: 10%;
        background-color: #FFFFFF;
        left: 40%;
        width: 320px;
        height: auto;
    }
}

   