
.cd-filter {
  /* SVG animation style switcher - not needed in production */
  margin-top: 1em;
  text-align: center;
}
.cd-filter li {
  display: inline-block;
  margin: 4px;
}
.cd-filter a {
  display: block;
  border-bottom: 2px solid rgba(76, 92, 98, 0);
  padding: .8em 1em;
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #4c5c62;
}
.no-touch .cd-filter a:hover {
  border-bottom: 2px solid rgba(76, 92, 98, 0.6);
}
.cd-filter a.selected {
  color: #00A7E1;
  border-bottom: 2px solid rgba(0, 167, 225, 0.4);
}
.no-touch .cd-filter a.selected:hover {
  border-bottom: 2px solid rgba(0, 167, 225, 0.4);
}
@media only screen and (min-width: 768px) {
  .cd-filter {
    margin-top: 2em;
  }
}

/* --------------------------------

Slider

-------------------------------- */
.cd-slider-wrapper {
  padding-bottom: 20px;
  padding-top: 50px;
  position: relative;
  width: 100%;
  margin: 0;
  /* hide horizontal scrollbar on IE11 */
  overflow-x: hidden;
}

ul.cd-slider {
    -webkit-margin-before: 0em!important;
    -webkit-margin-after: 0em!important;
    -webkit-margin-start: 0px!important;
    -webkit-margin-end: 0px!important;
    -webkit-padding-start: 0px!important;
    -moz-padding-end: 0px;
    -moz-padding-start: 0px;
    margin-top: 0;
}

.cd-slider > li {
  position: absolute;
  padding: 0px!important;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  /* hide vertical scrollbar on IE11 */
  overflow: hidden;
}
.cd-slider > li.visible {
  position: relative;
  z-index: 2;
  opacity: 1;
}
.cd-slider > li.is-animating {
  z-index: 3;
  opacity: 1;
}

.cd-slider .cd-svg-wrapper {
  /* using padding Hack to fix bug on IE - svg height not properly calculated */
  height: 0;
  padding-bottom: 57.15%;
}

.cd-slider-wrapper svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* --------------------------------

Slider navigation

-------------------------------- */
.cd-slider-navigation li {
  position: absolute;
  z-index: 3;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 10px;
  height: 48px;
  width: 48px;
}
.cd-slider-navigation li a {
  display: block;
  height: 100%;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  color: transparent;
  background: url(img/cd-icon-arrows.svg) no-repeat 0 0;
  -webkit-transition: -webkit-transform 0.2s;
  -moz-transition: -moz-transform 0.2s;
  transition: transform 0.2s;
}
.no-touch .cd-slider-navigation li a:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.cd-slider-navigation li:last-of-type {
  left: 10px;
  right: auto;
}
.cd-slider-navigation li:last-of-type a {
  background-position: -48px 0;
}

/* --------------------------------

Slider dots/controls

-------------------------------- */
.cd-slider-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  width: 90%;
}
.cd-slider-controls::after {
  clear: both;
  content: "";
  display: table;
}
.cd-slider-controls li {
  display: inline-block;
  margin-right: 10px;
}
.cd-slider-controls li:last-of-type {
  margin-right: 0;
}
.cd-slider-controls li.selected a {
  background-color: #ffffff;
}
.cd-slider-controls a {
  display: block;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  color: transparent;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  border: 2px solid #ffffff;
}
.no-touch .cd-slider-controls a:hover {
  background-color: #ffffff;
}

.cd-slider-navigation li a.next-slide{
    left: auto;
    right: 0;
    background: url("/local/templates/.default/images/arrows.png") no-repeat scroll 0 -155px;
    border: none;
    cursor: pointer;
    height: 50px;
    left: 0;
    position: absolute;
    text-indent: -9999px;
    top: 41%;
    width: 50px;
    background-position: -71px -155px;
}

.cd-slider-navigation li a.prev-slide{
    left: auto;
    right: 0;
    background: url("/local/templates/.default/images/arrows.png") no-repeat scroll 0 -155px;
    border: none;
    cursor: pointer;
    height: 50px;
    left: 0;
    position: absolute;
    text-indent: -9999px;
    top: 41%;
    width: 50px;
}

.cd-slider-navigation > li{
  list-style-type: none;
}

.slide_text{
  background-color: white;
  position: absolute;
  left: 50%;
  bottom: 40px;
  max-width: 40%;
  width: auto;
  font-size: 18px;
  text-align: center;
  text-transform: uppercase;
  padding: 5px;
  line-height: 1.3;
  transform: translateX(-50%);
}

@media only screen and (max-width: 768px) {
  .slide_text{
    font-size: 17px !important;
    right: 6%;
  }
}

@media only screen and (max-width: 425px){
  .slide_text{
    display: none;
  }
  .cd-slider-navigation li a.next-slide{
    background: url(img/cd-icon-arrows.svg) no-repeat 0 0;
  }
  .cd-slider-navigation li a.prev-slide{
    background: url(img/cd-icon-arrows.svg) no-repeat 0 0;
    background-position: -48px 0;
  }
}

.visible{
  transform:none !important;
}

.is-animating{

}
