html {
    font-size: 62.5%;
}

body {
    margin: 0;
    font-family: avenirnextltw01-regular,Helvetica,Arial,sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.8;
    letter-spacing: -.36px;
    color: #00194e;
    background: #2b4654;
    
    -webkit-text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
}

.selector {
    margin: 10px;
}

.selector > div {
    padding: 5px 10px;
    background-color: white;
    border-radius: 4px;
    display: inline-block;
}

.analog .tube, .analog .divider { display: none;}

.analog.clocks {
    background-color: #0093E9;
    background-image: linear-gradient(160deg, #0093E9 0%, #80D0C7 100%);
    padding: 2em;
    display: inline-block;
    border-radius: 10px;
    margin: 10px;
    border-bottom: 8px solid #0093E9;
    border-right: 8px solid #0093E9;
}

.analog .clock {
    border-radius: 50%;
    background: #fff url(./images/ios_clock.svg) no-repeat center;
    background-size: 88%;
    -webkit-box-shadow: inset 10px 11px 8px -7px rgba(0,0,0,0.46);
    box-shadow: inset 10px 11px 8px -7px rgba(0,0,0,0.46);
    height: 20em;
    width: 20em;
    border: 2px solid #0093e9;
    position: relative;
}

.analog .clock:before {
    background: #fff url(./images/logo.png) no-repeat center;
    width: 10em;
    height: 4em;
    display: block;
    content: '';
    position: absolute;
    bottom: 4em;
    left: 5em;
}

.analog .clock.simple:after {
    background: #000;
    border-radius: 50%;
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 5%;
    height: 5%;
    z-index: 10;
}

.analog .minutes-container, .analog .hours-container, .analog .seconds-container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.analog .hours {
    background: #000;
    height: 20%;
    left: 48.75%;
    position: absolute;
    top: 30%;
    transform-origin: 50% 100%;
    width: 2.5%;
}

.analog .minutes {
    background: #000;
    height: 40%;
    left: 49%;
    position: absolute;
    top: 10%;
    transform-origin: 50% 100%;
    width: 2%;
}

.analog .seconds {
    background: #0093e9;
    height: 45%;
    left: 49.5%;
    position: absolute;
    top: 14%;
    transform-origin: 50% 80%;
    width: 1%;
    z-index: 8;
    border-radius: 2px;
}

@keyframes rotate {
    100% {
        transform: rotateZ(360deg);
    }
}