#seemReports {
    display: flex;
    width: 100%;
    flex-direction: column;
}

.reportsHeader {
    display: flex;
    width: 100%;
}

.yearsBlock,
.monthsBlock,
.daysBlock,
.hoursBlock {
    display: flex;
    flex-direction: column;
    width: 25%;
    padding-right: 20px;
}

.hoursBlock {
    padding-right: 0;
}

#seemReports label {
    font-weight: bold;
}

.reporstContent {
    width: 100%;
    padding: 50px 0;
    text-align: center;
    font-size: 17px;
}

#seemReports .loading {
    display: block;
    width: 65px;
    height: 40px;
    margin: 0 auto;
    background: url('../img/loading.gif') no-repeat;
    background-size: 100%;
}

#seemReports .reportsList {
    display: flex;
    flex-direction: column;
    text-align: left;
}

#seemReports .reportsList .reportItem {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

#seemReports .reportsList .reportItem:hover .reportName {
    color: #000;
}

#seemReports .reportsList .reportItem .reportName {
    display: inline-block;
    margin-right: 15px;
    font-weight: bold;
    transition: all ease-in-out .4s;
}  

#seemReports .reportsList .reportItem .reportName i {
    font-weight: 400;
    font-size: 14px;
}

#seemReports .reportsList .reportItem .reportName .hourText {
    font-weight: bold;
    color: #c41165;
}

#seemReports .reportsList .reportItem a {
    display: inline-block;
    background: #01863d;
    color: #fff;
    padding: 2px 11px;
    font-size: 14px;
    transition: all ease-in-out .4s;
}

#seemReports .reportsList .reportItem a:hover {
    background: #2a4d99;
}