 /**
 * -----------------------------------------------------------------------------
 * @package     smartVISU
 * @author      Radoslav Dimov, Martin Gleiß, Wolfram v. Hülsen
 * @copyright   2009 - 2021
 * @license     Dual licensed under the MIT and GPL  
 * ----------------------------------------------------------------------------- 
 *
 * special thanks to Patrik Germann for the idea of wildcard id's 
 */
 
 
.digiclock{
    width: 100%;
    height: 100px;
    text-align: center;
}
    
#clock {
    margin: auto;
    width: 204px;
    height: 100px;
    z-index:98;
}
    
[id$="hours"], [id$="minutes"] {
    width:100px;
    height:100px;
    float:left;
    position:relative;
}

[id$="minutes"] {
    margin-left:2px;
}

[id$="hours_bg"], [id$="minutes_bg"] {
    position:absolute;
    top:0;
    left:0;
    z-index:99;
}

[id$="hours_bg"] img {
    width: 100px;
    height: 100px;
}

[id$="minutes_bg"] img {
    width: 100px;
    height: 100px;
}

.first_digit {
    width:40px;
    height:100px;
    position:absolute;
    top:0;
    left:10px;
    z-index:100;
}

.second_digit {
    width:40px;
    height:100px;
    position:absolute;
    top:0;
    left:50px;
    z-index:100;
}

.line {
    width:86px;
    height:1px;
    background:#efefef;
    position:absolute;
    top:48px;
    left:7px;
    z-index:101;
    font-size:1px;
}

[id$="am_pm"] {
    position:absolute;
    top:77px;
    left:70px;
    z-index:110;
}
