.navigation {
    color: #eee;
    padding: 10px 25px;
    margin: 0;
    overflow: hidden;
    display: flex;
	justify-content: flex-start;
    align-items: center;
    gap: 10px;
	background: #fff;    
	border-radius: 12px;
    box-shadow: 0 3px 4px rgb(0 56 95 / 25%);
	width: fit-content;
	margin-bottom: 50px;
}

.navigation__item {
    padding: 0;
    margin: 0;
    list-style: none;
}

.navigation__number {
    color: #1869A4;
    display: block;
    width: 24px;
    height: 24px;
    text-align: center;
	text-decoration: underline;
    font-size: 16px;
}

.navigation__link {
    display: block;
    width: 24px;
    height: 24px;
    text-align: center;
    border-right: none;
    color: #767676;
    font-size: 16px;
}

.navigation__link:hover {
    color: #1869A4;
	border-bottom: 1px solid #1869A4;
}

.navigation__link.__prev { display:inline-block; border: none !important;width: 24px; height: 24px; background-image: url('./svg/chevron-left.svg'); background-repeat:no-repeat; background-position: 60% 50%;}
.navigation__link.__next { display:inline-block; border: none !important; width: 24px; height: 24px; background-image: url('./svg/chevron-right.svg'); background-repeat:no-repeat; background-position: center;}
.navigation__link.__prevs { display:inline-block; border: none !important; width: 24px; height: 24px; background-image: url('./svg/chevrons-left.svg'); background-repeat:no-repeat; background-position: center;}
.navigation__link.__nexts { display:inline-block; border: none !important; width: 24px; height: 24px; background-image: url('./svg/chevrons-right.svg'); background-repeat:no-repeat; background-position: center;}

.load-more-items {
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
    color: #fff;
    padding: 15px 60px;
    text-decoration: underline;
}

.load-more-items:hover {
    opacity: 0.85;
    color: #fff;
}

.load-more-items:active {
    opacity: 0.75;
    color: #fff;
}