.slide-selection{
	width:100%;
	text-align: center;
	margin-top: 15px;
	padding: 0px 2%;
	clear: both;
}

.slide-selection ul{
	text-align: center;
	display: inline;
	border-top: 2px solid #80808080;
	width: 100%;
	padding: 13px 0 0 0;
	margin: 0;
	cursor: pointer;
}

.slide-selection li{
	display: inline-block;
	margin-right: 1.5rem;
	padding: 10px 0;
}

.slide-selection ul > li::after {
    content: "⚫";
	padding: 6px 7px;
	font-size: 6px;
	position: absolute;
}

.slide-selection li.active {
	border-top: 2px solid #000;
	color: #b99f6e;
}

.slide-selection li:hover {
    color: #b99f6e;
	border-top: 2px solid #000;
	transition: all 0.25s ease;
}

.slide-selection ul > li:last-child::after {
    content: "";
	margin-right: 0px;
}

.slide-selection ul > li:last-child {

	margin-right: 0px!important;
}


/* CUSTOM SELECT START */

.paok-select {
  position: relative;
  font-family: Arial;
  margin: 10px auto;
  width: 100%;
  max-width: 300px;
}

.paok-select ul {
  display: none; /*hide original SELECT element: */
}

.select-selected {
  background-color: #dbdbdb;
  display: block;
}

/* Style the arrow inside the select element: */
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #000 transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #000 transparent;
  top: 7px;
}

/* style the items (options), including the selected item: */
.select-items div,.select-selected {
  color: #1a1a1a;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.4) transparent;
  cursor: pointer;
}

/* Style items (options): */
.select-items {
  position: absolute;
  background-color: #f1f1f1;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  border: 1px #000 solid;
  height: 230px;
  overflow-y: scroll;
}

/* Hide the items when the select box is closed: */
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: #b99f6e;
  transition: 0.2s ease;
}

/* CUSTOM SELECT END */


h1.title{
	text-align: center;
	color: black;
	margin: 20px;
	font-size: 25px;
}


/* media for slide selection */

@media only screen and (max-width: 480px) {
	
	.slide-selection {
		font-size: 0.8em;
	}
	
	.slide-selection ul, .slide-selection li.active, .slide-selection li:hover {
		border-top: unset;
	}
}


