
#timer {
    position: fixed;

    margin: auto auto;
    top: 0; bottom: 0;
    right: 0px;

    width: 120px; height: 120px;
    background-color: #0277bd;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);

    -webkit-transition: background-color 1000ms linear;
    -ms-transition: background-color 1000ms linear;
    transition: background-color 1000ms linear;
    z-index: 999;
    
}
    #timer:hover {
    cursor:pointer;
    }
/* 
#timer {
    position: absolute;

    margin: auto auto; 
    top: 0; bottom: 0; left: 0; right: 0;
    width: 120px; height: 120px;
    background-color: #0277bd;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);

    -webkit-transition: background-color 1000ms linear;
    -ms-transition: background-color 1000ms linear;
    transition: background-color 1000ms linear;
} */

#clock {
    position: absolute;
    margin: auto auto;
    top: 10px; left: 0; right: 0;

    width: 70px; height: 70px;
    border-radius: 70px;
    background-color: #fbfbfb;
    transition: transform 2s;
    box-shadow: inset 0 0 5px #646464, 0 0 5px #646464;
}

#clock:hover {   
    transform: rotate(360deg);
}


#clockLabel {
    font-family: Arial, Helvetica, sans-serif;
    position: absolute;
    margin: auto auto;
    left: 0; right: 0;
    bottom: -3px;
    width: 90%;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: white;
    background-color: transparent;
    font-size: 18px;
    /* box-shadow: inset 0 0 5px #646464, 0 0 5px #646464; */
}

#clockStaticHand {
    position: absolute;
    margin: auto auto;
    top: 0; bottom: 0;
    left: 16px; right: 0;
    width: 13px;
    height: 2px;
    background-color: black;

}

#clockMovingHand {
    position: absolute;
    margin: auto auto;
    top: 0; bottom: 12px;
    left: 0px; right: 0;
    width: 2px;
    height: 13px;
    background-color: black;
    
}

#hideOldClock {
    display: none;
}


.loginbox2 {

    padding: 4px;
    border-radius: 3px !important;
    width:99%;


}