.PaginatorDate-Short{
    display: grid;
    justify-self: center;
    margin: 0 auto;
    max-width: 400px;
    grid-template-columns: auto auto;
    justify-content: space-around;
}
.PaginatorDate-Short--link{
    color: var(--site-color);
    font-weight: 500;
    font-size: 14px;
    background-size: 10px 16px;
    background-repeat: no-repeat;
    text-decoration: none;
    line-height: 32px;
}
.PaginatorDate-Short--link:hover,
.PaginatorDate-Short--link:focus{
    color: var(--site-color-corporate);
}
.PaginatorDate-Short--yesterday{
    padding-left: 20px;
    background-position: left center;
    background-image: url("./yesterday.svg");
}
.PaginatorDate-Short--tomorrow{
    padding-right: 20px;
    background-position: right center;
    background-image: url("./tomorrow.svg");
}
.PaginatorDate-Short--tomorrow[data-not-exist]{
    color: var(--site-color-hidden);
    background-image: url("./tomorrow-not-exist.svg");
}