.navigation-buttons-wrap {
	width: 120px;
	display: flex;
	gap: 8px;
}

.navigation-buttons-wrap button {
	line-height: 1;
	border-radius: 2px;
	width: 56px;
	height: 43px;
	text-align: center;
	padding: 0;
	background-color: var(--global-palette-btn-bg);
	border: 1px solid #f0f0f012;
	transition: all .4s;
}

.navigation-buttons-wrap button svg {
	fill: #dedede;
	transition: all 0.4s;
}

.navigation-buttons-wrap button:hover {
    background: #f0f0f0 !important;
}

.navigation-buttons-wrap button:hover svg {
    fill: #232323;
}