
.month {
    padding: 5px;
    margin-left: 5px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.month:first-child {
    margin-left: 0px;

}

.hronika-date {
    display: none
}

.years-bar {
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row
}

.years-bar-now {
    display: block;
    text-align: center;
    padding-top: 5px;
    color: white;
    background-color: #2D3538;
    min-width: calc(100%/12);
}

.years-bar-last {
    display: block;
    text-align: center;
    padding-top: 5px;
    color: white;
    background-color: #C1D0D7;
    min-width: calc(100%/12);
}

.hronika-month-list {
    margin-top:5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0;
}



.hronika-month-list li {
    display: inline;
    width: calc(100%/12);
    text-align: center;
}



.activee {
    -webkit-box-shadow: inset 0 0 0 3px #f39d09;
            box-shadow: inset 0 0 0 3px #f39d09;
    background: #f39d09;
    color: #f2f2f2;
    border-radius: 5px;
}



.read {
    display: block;
}

.hronika-text {
    border: 1px solid #9494ff;
    padding: 5px;
    height: 300px;
    overflow-y: scroll;
}

@media screen and (min-width: 901px) {
    .activee:hover {
        background: rgba(0, 0, 0, 0);
        color: #f39d09;
    }

    .month:hover {
        -webkit-box-shadow: inset 0 0 0 3px #f39d09;
                box-shadow: inset 0 0 0 3px #f39d09;
        background: #f39d09;
        color: #f2f2f2;
        border-radius: 5px;
    }
}

@media screen and (max-width: 900px) {
    .hronika-month-list {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .hronika-month-list li {
        width: calc(100%/4);
    }

    .month {
        margin: 5px;
    }
}