/* Pages */

.pages {
  list-style: none;
  margin: 20px 0;
  padding: 0;
  text-align: center;
}

.pages li {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin: 0 4px;
  text-indent: -999px;
  border-radius: 10px;
  cursor: pointer;
  overflow: hidden;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .2);
}

.pages li:hover {
  background: #aaa;
}

.pages li.active a {
  background: #666;
}

/* .companion li.thumb-list.active a{
  background: red;
} */

/* Controls */

.controlsWrap {
  position: relative;
  width: 800px;
  height: 90px;
  margin: -90px auto 0 auto;
  overflow: hidden;
}

.controls-inner {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-25%);
  width: 100%;
  height: 100%;
}

.controls {
  position: relative;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.controls li {
  vertical-align: middle;
  position: relative;
  text-align: center;
  padding: 0 5px;
}

.scrollbar {
  margin: 12px auto 1em auto;
  width: 100%;
  height: 6px;
  background: #ccc;
  line-height: 0;
  border-radius: 3px;
  overflow: hidden;
}

.scrollbar .handle {
  width: 100px;
  height: 100%;
  background: #555;
  cursor: pointer;
}

.scrollbar .handle .mousearea {
  position: absolute;
  top: -9px;
  left: 0;
  width: 100%;
  height: 20px;
}

.centerScroli {
  width: 30%;
}

.controls button {
  line-height: 30px;
  vertical-align: middle;
  padding: 0 10px;
  user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;

}

.controls button i {
  font-size: 30px;
  line-height: 1;
  vertical-align: middle;
  user-select: none;

}

.leftBtn button i {
  padding-right: 6px;
}

.rightBtn button i {
  padding-left: 6px;
}

.controls button span.cntTxt {
  display: inline-block;
  font-size: 10px;
  vertical-align: middle;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 2px;

}

/* Buttons */
.btn {
  position: relative;
  display: inline-block;
  *display: inline;
  color: #333333;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #ccc;
  border-bottom-width: 2px;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.15);
  *zoom: 1;
}

.btn:hover,
.btn:active,
.btn.active,
.btn.disabled,
.btn[disabled] {
  color: #333;
  background-color: #f5f5f5;
}

.btn:first-child {
  *margin-left: 0;
}

.btn:hover {
  color: #333;
  text-decoration: none;
}

/*
.btn:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
*/

.btn.active,
.btn:active,
.btn-group.open .btn {
  outline: 0;
  top: 1px;
  border-top-width: 2px;
  border-bottom-width: 1px;
  border-top-color: rgba(0, 0, 0, .2);
  -webkit-box-shadow: inset 0 60px 0 rgba(0, 0, 0, .1);
  -moz-box-shadow: inset 0 60px 0 rgba(0, 0, 0, .1);
  box-shadow: inset 0 60px 0 rgba(0, 0, 0, .1);
}

.btn.disabled,
.btn[disabled] {
  cursor: default;
  background-image: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
}





/* One Item Per Frame example*/

.oneperframe {
  height: 300px;
  line-height: 300px;
}

.oneperframe ul li {
  width: 1140px;
}

.oneperframe ul li.active {
  background: #333;
}


/* Crazy example */

.crazy ul li:nth-child(2n) {
  width: 100px;
  margin: 0 4px 0 20px;
}

.crazy ul li:nth-child(3n) {
  width: 300px;
  margin: 0 10px 0 5px;
}

.crazy ul li:nth-child(4n) {
  width: 400px;
  margin: 0 30px 0 2px;
}