﻿body {
} 

#CacheUpdateInfo {
    display: inline-grid;
    visibility: hidden;
    position: fixed;
    background: #333;
    bottom: 2px;
    right: 2px;
    border-radius: 2px;
    font-size: 14px;
    color: #fff;
    min-width: 265px;
    min-height: 100px;
    padding: 10px;
    text-align: center;
    max-width: 300px;
    z-index:10;
}

#CacheUpdateInfo.cacheUpdateInfoShow {
    visibility: visible;
    -webkit-animation: cacheupdateinfo-fadein 0.5s;
    animation: cacheupdateinfo-fadein 0.5s;
}

#CacheUpdateInfo.cacheUpdateInfoHide {
    visibility: visible;
    -webkit-animation: cacheupdateinfo-fadeout 0.5s 2.5s;
    animation: cacheupdateinfo-fadeout 0.5s 2.5s;
}

@-webkit-keyframes cacheupdateinfo-fadein {
    from {bottom: 0; opacity: 0;} 
    to {bottom: 2px; opacity: 1;}
}

@keyframes cacheupdateinfo-fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 2px; opacity: 1;}
}

@-webkit-keyframes cacheupdateinfo-fadeout {
    from {bottom: 2px; opacity: 1;} 
    to {bottom: 0; opacity: 0;}
}

@keyframes cacheupdateinfo-fadeout {
    from {bottom: 2px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}