
   
    * {
        font-family: 'Zawgyi-One' !important;
    }

    input[type=number]::-webkit-inner-spin-button,
    input[type=number]::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    @media (min-width: 320px) and (max-width: 480px) {

        /* img {
            width: 50%;
            margin-left: 25%;
        } */

        .container {
            margin-top: 25% !important;
        }

        #container_login {
            padding: 15px !important;
        }

        .modal-sm {
            width: 94% !important;
        }

    }

    .panel-heading {
        border-top-left-radius: 10px !important;
        border-top-right-radius: 10px !important;
    }


    .container {
        /*position: absolute;*/
        /*margin: 0 auto !important;*/
        margin-top: 10%;
        /*vertical-align: middle !important;*/
        /*top: 40% !important;*/
    }

    #overlay {
        position: fixed;
        display: block;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #686868;
        opacity: 0.75;
        /*z-index: 2;*/
        cursor: pointer;
        z-index: 50;
    }


    .loader {
        position: absolute;
        top: 40%;
        left: 45%;
        text-align: center;
        font-size: 50px;
        border: 16px solid #f3f3f3;
        /* Light grey */
        border-top: 16px solid #c2b016;
        /* Blue */
        border-radius: 50%;
        width: 120px;
        height: 120px;
        animation: spin 2s linear infinite;
    }

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

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