@import '../../../../../assets/scss/main';

.current-time{
    color: $color-white;
    font-weight: 400;
    padding-left: 30px;
    position: relative;
    &:before{
        content: '';
        display: block;
        position: absolute;
        top: 50%;
        left: 0;
        width: 20px;
        height: 20px;
        background-size: 20px 20px;
        background-repeat: no-repeat;
        background-position: center center;
        @include transform(translateY(-50%));
        background-image: url(clock.svg);
    }
}