/*
# EDITABLE: all
*/


/***********************************************************************
* Some basics
*/

* {
  margin: 0;
  padding: 0;
  font: inherit;
  line-height: inherit;
}

a img {
  border: 0;
}

hr.clear {
  clear: both;
  border: 0;
}

.hidden {
  display: none !important;
  visibility: hidden;
}

.csc-default {
  position: relative;
}

li {
  list-style-position: outside;
}



/***********************************************************************
* Some neat base style.
*/

header.custom, footer.custom {
  background: #4c4c4c;
  color: #fff;
}

header.custom *, footer.custom * {
  color: #fff;
}

.extbase-debugger {
  margin: 0;
  border-radius: 0;
  border-bottom: 3px solid #f00;
  position: absolute;
  z-index: 1;
  width:100%;
}

/***********************************************************************
* Some basic flexbox for the page outline
*/
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-y: scroll;
}

main {
  flex-grow: 1;
}

#slick {
  display: initial !important;
}

@media only screen and (min-width: 90em) {
  #slick {
    display: none !important;
  }
}

/*
# EDITABLE: END
*/