.single-product-params {
    padding: 0;
    margin: 0;
}

.single-product-params li {
    font-size: 14px;
    font-weight: 500;
    color: var(--e-global-color-text);
    transition: color 0.3s;
    border-bottom: 1px #DDD solid;
    padding: 3px 0;
    list-style: none;
    display: flex;
    align-items: center;
}
.single-product-params li:last-child {
    border: 0;
}
.spp-icon {
    position: relative;
    width: 10px;
    height: 10px;
    display: flex;
    margin-right: 5px;
}
.spp-icon svg {
    fill: var(--e-global-color-secondary);
    transition: fill 0.3s;
}

.flex-direction-nav {
	display: flex !important;
	margin: 0;
	list-style: none;
}
.flex-direction-nav > li {
	display: flex;
    position: absolute;
    top: 30%;
}
.flex-direction-nav > li.flex-nav-prev {
	left: 0;
}
.flex-direction-nav > li.flex-nav-next {
	right: 0;
}
.flex-direction-nav > li > a {
	font-size: 0;
    width: 50px;
    height: 200px;
    background-color: #ffffff8c;
    display: flex;
    align-items: center;
    justify-content: flex-end;
	opacity: 0;
}
.flex-direction-nav > li > a::before,
.flex-direction-nav > li > a::after {
    content: '';
    display: flex;
    width: 50%;
    height: 3px;	
    background-color: #656565;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
}
.flex-direction-nav > li > a.flex-prev::before {
    transform: rotate(45deg);
    bottom: 45%;
}
.flex-direction-nav > li > a.flex-prev::after {
    transform: rotate(-45deg);
    top: 45%;
}

.flex-direction-nav > li > a.flex-next::before {
    transform: rotate(-45deg);
    bottom: 45%;
}
.flex-direction-nav > li > a.flex-next::after {
    transform: rotate(45deg);
    top: 45%;
}

.flex-direction-nav > li > a.flex-disabled {
	display: none;
}
.woocommerce-product-gallery:hover .flex-direction-nav > li > a {
	opacity: 1;
}
@media screen and (max-width: 768px) {
	.flex-direction-nav > li > a {
		opacity: 0.7;
	}
}