:root {
    /*Dial*/
    --background_color_Dial_Watch: #1e90ff;
    --dial_digital_display: block;
    /*Border*/
    --background_color_Border_Watch: #563d7c;
    --border_width_Border_Watch: 5px;
    --border_radius_Border_Watch: 100%;
    --border_style_Border_Watch: solid;
    /*Numbers*/
    --numbers_color: #333333;
    --numbers_font_weight: normal;
    --numbers_display: block;
    /*Zeiger*/
    --seconds_hand_border_style: solid;
    --seconds_hand_border_color: black;
    --seconds_hand_display: block;
    --seconds_hand_border_width: 1px;
    --minutes_hand_border_style: solid;
    --minutes_hand_border_color: green;
    --minutes_hand_display: block;
    --minutes_hand_border_width: 1px;
    --hours_hand_border_style: solid;
    --hours_hand_border_color: blue;
    --hours_hand_display: block;
    --hours_hand_border_width: 1px;
}




.Watch_SY {
    width: 110px;
    height: 110px;
    border-color: var(--background_color_Border_Watch);
    border-width: var(--border_width_Border_Watch);
    border-radius: var(--border_radius_Border_Watch);
    background-color: var(--background_color_Dial_Watch);
    border-style: var(--border_style_Border_Watch);
    position: relative;
    margin: 0 auto;
}

.Watch_Seconds_SY {
    border-right-width: 0px;
    border-top-width: 0px;
    border-bottom-width: 0px;
    border-left-width: var(--seconds_hand_border_width);
    border-style: var(--seconds_hand_border_style);
    border-color: var(--seconds_hand_border_color);
    width: 45px;
    height: 45px;
    margin-left: 49px;
    margin-top: 0px;
    transform-origin: left bottom;
    position: absolute;
    display: var(--seconds_hand_display);
}

.Watch_Minutes_SY {
    border-right-width: 0px;
    border-top-width: 0px;
    border-bottom-width: 0px;
    border-left-width: var(--minutes_hand_border_width);
    border-style: var(--minutes_hand_border_style);
    border-color: var(--minutes_hand_border_color);
    width: 45px;
    height: 44px;
    margin-left: 49px;
    margin-top: 0px;
    transform-origin: left bottom;
    position: absolute;
    display: var(--minutes_hand_display);
}

.Watch_Hours_SY {
    border-right-width: 0px;
    border-top-width: 0px;
    border-bottom-width: 0px;
    border-left-width: var(--hours_hand_border_width);
    border-style: var(--hours_hand_border_style);
    border-color: var(--hours_hand_border_color);
    width: 45px;
    height: 45px;
    margin-left: 49px;
    margin-top: 0px;
    transform-origin: left bottom;
    position: absolute;
    display: var(--hours_hand_display);
}

.Watch_Numbers_SY {
    color: var(--numbers_color);
    font-weight: var(--numbers_font_weight);
    display: var(--numbers_display);

}

.Watch_Dial_SY_12 {
    position: absolute;
    text-align: center;
    width: 100px;
    
}

.Watch_Dial_SY_6 {
    position: absolute;
    text-align: center;
    bottom: 0;
    width: 100%;
}

.Watch_Dial_SY_9 {
    position: absolute;
    top: 40px;
    width: 100%;
    text-align: left;
    vertical-align: central;
}

.Watch_Dial_SY_3 {
    position: absolute;
    top: 40px;
    width: 100%;
    text-align: right;
    vertical-align: central;
}

.dialDigital {
    display: var(--dial_digital_display);
}