.clocks {
    display: flex;
    justify-content: space-between;
    overflow: auto;
    scrollbar-color: #313131 #121212;
    scrollbar-width: auto;
    padding-bottom: 10px;
}

.clock {
    flex-grow: 1;
    margin-right: 20px;
    min-width: 225px;
}

.clock:last-child {
    margin: 0;
}

.clock .city {
    font-size: 30px;
    text-align: center;
    background: #121212;
    padding: 16px 0 10px 0;
    color: #bbb;
}

.clock__dial-container {
    border: solid 1px #121212;
    background: #3c3b3d;
    position: relative;
}

.clock__dial {
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background: #100f0f;
    border-radius: 50%;
    border: 2px #bbb dotted;
    overflow: hidden;
}

.clock__dial_center-container,
.clock__dial_seconds-hand-container,
.clock__dial_minutes-hand-container,
.clock__dial_hours-hand-container,
.clock__dial_streaks {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
}

.clock__dial_seconds-hand,
.clock__dial_minutes-hand,
.clock__dial_hours-hand,
.clock__dial_two-minutes-streaks-container,
.clock__dial_two-seconds-streaks-container,
.clock__dial_two-hours-streaks-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.clock__dial_seconds-hand,
.clock__dial_minutes-hand,
.clock__dial_hours-hand {
    justify-content: start;
}

.clock__dial_hours-hand_space {
    width: 44%;
}

.clock__dial_hours-hand_hand {
    width: 36%;
    height: 6px;
    background: #fe6103;
}

.clock__dial_minutes-hand_space {
    width: 40%;
}

.clock__dial_minutes-hand_hand {
    width: 49%;
    height: 5px;
    background: #ffd800;
}

.clock__dial_seconds-hand_space {
    width: 40%;
}

.clock__dial_seconds-hand_hand {
    height: 2px;
    background: #f00;
    width: 53%;
}

.clock__dial_two-hours-streaks-container:after,
.clock__dial_two-hours-streaks-container:before {
    content: '';
    border: solid 1px #fff;
    width: 16px;
}

.clock__dial_two-minutes-streaks-container:after,
.clock__dial_two-minutes-streaks-container:before {
    content: '';
    border-bottom: solid 1px #fff;
    width: 9px;
}

.clock__dial_center-container {
    justify-content: center;
}

.clock__dial_center {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background: #fff;
}

.clock__electronic {
    color: #bbb;
    font-size: 47px;
    background: #121212;
    display: flex;
    justify-content: center;
    align-items: end;
}

.clock__electronic_numbers:after {
    content: ':';
    font-size: 1.2em;
    margin-right: 4px;
}

.clock__electronic_numbers:last-child:after {
    content: '';
}
