.block-timer {
    padding: 5px;
    background-color: #2d2d2d;
    border-radius: 500px;
    width: 277px;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.2);
    padding-left: 50px;
    img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
    }

    h3 {
        font-size: 14px;
        font-weight: 500;
        color: #fff;
        margin: 0;
    }

    p {
        font-size: 14px;
        font-weight: 100;
        color: #ababab;
        margin: 0;
    }

    .caret-icon {
        border: 2px solid;
        border-radius: 50%;
        color: #6c6c6c;
        margin: 0 15px;
        width: 23px;
        height: 23px;
        font-size: 20px;
        cursor: pointer;
        .fa {
            width: 100%;
            text-align: center;
            -webkit-transition: 400ms;
            -o-transition: 400ms;
            transition: 400ms;
        }
        &.closed .fa {
            -webkit-transform: rotate(180deg) translateY(1px);
            -ms-transform: rotate(180deg) translateY(1px);
            transform: rotate(180deg) translateY(1px);
        }
    }
}
