.mk_scroller_panel {
    position: fixed;
    display: flex;
    flex-flow: row;
    bottom: 25px;
    left: 50%;
    z-index: 10;
}

.mk_scroller_panel > .mk_scroller_panel-item {
	display: block;
	height: 10px;
	width: 10px;
	border: 2px solid #ffffff;
	border-radius: 50%;
	margin: 0 10px;
	-o-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.mk_scroller_panel > .mk_scroller_panel-item.active {
    background-color: #ffffff;
}

/* @media (max-width: 750px) {
	body {
        overflow-y: auto!important;
    }
	.mk_scroller_panel {
		display: none;
	}
} */