/*! Place your custom styles here */

.blink_MRR{
    animation-duration: 1s;
    animation: blink_MRR 1s linear infinite;
}

@keyframes blink_MRR{
    from {opacity: 0;}
    to {opacity: 1;}
}


#loadMRR{
    width:100%;
    height:100%;
    position:fixed;
    z-index:1000;
    background-color:rgba(0, 0, 0, 0.85);
}

.centeredMRR {
    color:white;
    font-weight:bold;
    z-index:1001;
    position: fixed;
    top: 50%;
    left: 50%;
    /* bring your own prefixes */
    /* background-image: url('/img/loadingImg.gif'); */
    transform: translate(-50%, -50%);
   
  }