/* Messages */
.carousel-loop .warning {
  background: #ff0000;
  color: #fff;
  font-family: sans-serif;
  padding: 1em;
  display: block;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

/* Carousel functional styling*/
.carousel-loop {
  width: 90%;
  position: relative;
  max-width: 1200px;
}

.carousel-view-port {
  overflow: hidden;
  margin: 0 auto;
}

.carousel-content {
  position:relative;
  margin: 0 auto;
}

.carousel-content>div{
  float: left;
}

/* Navigation arrows */
.scroll {
  width:30px;
  height: 30px;
  position:absolute;
  top: 25%;
  z-index: 10;
  cursor: pointer;
  background: #505050;
  transition: background 0.5s;
  border-radius: 50%;
}

.scroll:hover {
  background: rgb(227, 6, 19);
}

.scroll:after {
  position: absolute;
  height: 10px;
  width: 10px;
  top: -0.45rem;
  color: #fff;
  font-size: 2rem;
}

.scroll.left-scroll {
  left: 15px;
  -webkit transform: rotate(225deg);
  -moz transform: rotate(225deg);
  -o transform: rotate(225deg);
  transform: rotate(225deg);
}

.scroll.right-scroll {
  right: 15px;
  -webkit transform: rotate(45deg);
  -moz transform: rotate(45deg);
  -o transform: rotate(45deg);
  transform: rotate(45deg);
}

.scroll:after {
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  top: 11px;
  left: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

/* Bullets */
.carousel-loop>ul {
  width: 100%;
  padding: 0;
  text-align: center;
  display: block;
  max-width: none;
  margin: 0;
  box-sizing: content-box;
  list-style: none;
}

.carousel-loop>ul.integrated {
  position: absolute;
  bottom: 0;
}

.carousel-loop>ul li {
  width: 9px;
  height: 9px;
  display: inline-block;
  margin: 7px;
  /* second color */
  background: #8c8c8c;
  list-style-type: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
  /* third color */
  border: 3px solid #fff;
}

.carousel-loop>ul li.active {
  /* first color */
  background: #ff0000;
}
