body {
    font-family: 'Lato', sans-serif;
}
.blink_me {
    animation: blinker 1s linear infinite;
}
@keyframes blinker {  
    50% { opacity: 0.3; }
}

.myModalpos_center {
    top:20%;
    right:0%;
    /*bottom:50%;*/
    /*left:50%;*/
    outline: none;
}

#loading-img {
    background: url(https://www.uidapo.com/app/images/loading.gif?version2) center center no-repeat;
    height: 100%;
    z-index: 1501;
}
/*
.overlay {
    background: #dddddd;
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 1;
}
*/
.overlay {
    position: fixed; /* Sit on top of the page content */
    display: none; /* Hidden by default */
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    top: 0; 
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.5); /* Black background with opacity */
    z-index: 1500; /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer; /* Add a pointer on hover */
}


.modal-header-primary {
	color:#fff;
    padding:9px 15px;
    border-bottom:1px solid #eee;
    background-color: #428bca;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
     border-top-left-radius: 5px;
     border-top-right-radius: 5px;
}