.hfslider-wrapper
{
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hfslider-container
{
    position: relative;
    height: fit-content;
    /*left: 50%;*/
    cursor:grab;
}

.hfslider-navigator
{
	display:flex;
	height:5px;
	justify-content:center;
	width:90%;
	max-width:320px;
	margin:auto;
	margin-top:48px;
	cursor:pointer;
}
.hfslider-navigator-item
{
	height:100%;
	flex:1;
	background-color:#fff;
}
.hfslider-navigator-item.selected
{
	background-color:#e70;
}

.hfslider-arrow
{
    position: absolute;
    top:50%;
    transform: translateY(-50%);
    width: 48px;
    height: 80px;
    cursor: pointer;
    transition: all 100ms ease;
    opacity: 0.8;
	background-color:#0003;
}

.hfslider-arrow:active
{
    transform: translateY(-50%) scale(0.96);
}

.hfslider-arrow:hover
{
    opacity: 1;
}

.arrow-left
{
    left: 0;
}

.arrow-right
{
    right: 0;
}

.arrow-left::before
{
    content: '\276C';
    position: absolute;
    inset: 0 0 0 0;
    font-size: 48px;
    left: -4px;
	top: 4px;
    color:#fff;
    text-shadow: 2px 2px 4px #232323;
    text-align: center;
}

.arrow-right::before
{
    content: '\276D';
    position: absolute;
    inset: 0 0 0 0;
    font-size: 48px;
    right: -4px;
	top:4px;
    color:#fff;
    text-shadow: 2px 2px 4px #232323;
    text-align: center;
}

@media only screen and (max-width: 1368px)
{
    .arrow-left
    {
        left: 8px;
    }

    .arrow-right
    {
        right: 8px;
    }
}