.checkbox { text-align: left; }

.checkbox label .element {
  display: inline-block;
  border-width: 0;
  padding: 0;
  font-size: 0;
  min-width: 36px;
  height: 20px;
  background: rgba(0,0,0,.12);
  border-radius: 50px;
  vertical-align: bottom;
  margin-right: 10px;
  float: left;
  position: relative;
  top: -2px;
}

.checkbox label { color: #444; cursor: pointer; display: inline-block;}
.checkbox label input { display: none !important; }

.checkbox label .element:after {
  content: "";
  width: 14px;
  height: 14px;
  background: #fff;
  display: inline-block;
  padding: 0;
  border-radius: 14px;
  margin: 3px;
  -webkit-transition: -webkit-transform .25s;
  transition: transform .25s;
  -webkit-transition-timing-function: cubic-bezier(.23,2.01,.43,.66);
  transition-timing-function: cubic-bezier(.23,2.01,.43,.66);
}

.checkbox label input[type=checkbox]:checked+.element { background: #2196F3; }
.checkbox label input[type=checkbox]:checked+.element:after { -webkit-transform: translateX(16px); transform: translateX(16px); }


.owl-carousel,
.owl-carousel .item {
  height: 80vh;
}

.owl-carousel .item img {
  max-width: 100%;
  width: auto!important;
  display: inline-block!important;
  max-height: 80vh;
}

.pill.controller {
  font-size: 0;
  display: inline-block;
  border-radius: 6px;
}
.pill.controller li {
  padding: 10px 20px;
  display: inline-block;
  border: 1px solid #fff;
  font-size: initial;
  -webkit-transiton: 0.5s;
  transition: 0.5s;
}

.pill.controller li:first-child {
  border-radius: 4px 0 0 4px;
}
.pill.controller li:last-child {
  border-radius: 0 4px 4px 0;
}

.pill.controller li.selected {
  background: #fff;
  color: #303030;
}

/* scroll button */
.demo {
  bottom: 20px;
  left: 50%;
  z-index: 2;
  display: inline-block;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #fff;
  font : normal 400 20px/1;
  letter-spacing: .1em;
  text-decoration: none;
  transition: opacity .3s;
}

#scrollButton {
  padding-top: 80px;
}
#scrollButton span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb07 2s infinite;
  animation: sdb07 2s infinite;
  opacity: 0;
  box-sizing: border-box;
}
#scrollButton span:nth-of-type(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
#scrollButton span:nth-of-type(2) {
  top: 16px;
  -webkit-animation-delay: .15s;
  animation-delay: .15s;
}
#scrollButton span:nth-of-type(3) {
  top: 32px;
  -webkit-animation-delay: .3s;
  animation-delay: .3s;
}
@-webkit-keyframes sdb07 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb07 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* end of scroll button */