﻿body {
}
#navbarSupportedContent{
    height:0px;
}
#close{
    display:none;
}
#open {
    display: none;
}
.mobiledivcls{
    display:none;
}
/*.Navbarmargin {
    display: block;
}*/
.mobilenav{
    display:none;
}
@media only screen and (max-width: 768px) {
    #open {
        display: block;
            font-size:29px;
    }

    #close {
        display: none;
        font-size: 29px;
    }
    .Navbarmargin {
        display: none;
    }
}


/*
.loader {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

    .loader img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }*/


.loader {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 6px solid rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    border-top: 6px solid #3498db; /* Loader color */
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite; /* Animation */
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

