/* 2 hands image on hover */

.two-hands-image {
    position: absolute;
    bottom: 24px;
    right: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 1;
    filter: blur(5px);
    transform: scale(0.95);
    transition: opacity 0.25s cubic-bezier(0.5, 0, 0, 1), visibility 0.25s cubic-bezier(0.5, 0, 0, 1), filter 0.25s cubic-bezier(0.5, 0, 0, 1), transform 0.25s cubic-bezier(0.5, 0, 0, 1);
}


.two-hands-image {
    height: 48px;
}

.container:has(.clickable-time:hover) .two-hands-image {
    opacity: 1;
    visibility: visible;
    filter: blur(0px);
    transform: scale(1);
}

/* Dark mode for two hands image */
body.dark-mode .two-hands-image {
    filter: invert(1) blur(5px);
}

body.dark-mode .container:has(.clickable-time:hover) .two-hands-image {
    filter: invert(1) blur(0px);
}