@import url("https://fonts.googleapis.com/css?family=Lato&display=swap");

* {
  box-sizing: border-box;
}


.overflow {
  width: 94%;
  height: 100%;
  padding: 0 1.1vmax;
  margin-left: 3%;
  box-shadow: none;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.overflow.animation-reveal {
  animation: reveal 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.strip_of { 
  height: 90px;
  width: 1.1rem;
  z-index: 99;
  position: absolute;
}
.strip_of.paper1 {
  transform: translate(-45vw, 0%);
}
.strip_of.paper2 {
  transform: translate(45vw, 0%);
}
.strip_of.invisible {
  visibility: hidden;
}

.carousel {
  width: 100%;
  height: 100%;
  padding: 0 1rem;
  margin: 0;
  box-shadow: none;
  overflow: hidden;
}

.slider {
  width: 100%;
  height: 100%;
}

.cardCarusel {
  margin: 0 0.3rem;
  overflow: hidden;
  border-radius: 0px;
  height: 40px;
  width: auto;
  position: relative;
  background-position: 50%;
  background-size: cover;
  cursor: pointer;
  transition: width 0.16s ease-in-out, height 0.16s ease-in-out;
  transition: 0.2s ease;
  font-size: 1vmax;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cardCarusel:nth-of-type(5) {
  font-size: 0.9vmax;
}
.cardCarusel .location {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
  width: 100%;
  height: 50%;
  padding: 1rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
  position: absolute;
  transform: translate(0%, 100%);
  text-decoration: none;
  transition: 0.2s ease;
}
.cardCarusel .location:hover {
  color: white;
  transition: 0.2s ease;  
}
.cardCarusel.is-selected {
  transform: scale(1.05);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 10;
  /* box-shadow: 0 10px 10px rgba(0, 0, 0, 0.25), 0 6px 6px rgba(0, 0, 0, 0.22);*/
  transition: 0.2s ease;
  
}

.cardCarusel-bg {
  height: 100%;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.cardCarusel-bg:hover{
  background: #e3e3e3;
}

.cardCarusel-bg.nono {
  background-position: center;
  background-size: 300px;
  background-color: #191925;
  background-repeat: no-repeat;
}

.button {
  background-color:transparent;
/*  border-radius: 50%;*/
  
  height: 32px;
  width: 32px;  
  border: 0;
  outline: 0;
  cursor: pointer;
  z-index: 100;
  position: absolute;
 /*
  box-shadow: 0 5px 5px 0 rgba(0, 0, 35, 0.25);
  color: #333;
  font-size: 1rem;
*/
  transition: 0.2s ease;
  display: block;
}
.button.previous {
  transform: translate(-47vw, 0%);
}
.button.next {
  transform: translate(47vw, 0%);
}
.button:focus {
  transition: 0.2s ease;
  outline: 0;
  border: 0;
 /* box-shadow: 0 7px 7px 0 rgba(0, 0, 35, 0.25);*/
}
.button i {
  outline: none;
  text-decoration: none;
  background-color:transparent;
}
.button i:focus {
  outline: none;
  border: none;
}

.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: none;
}

.flickity-viewport {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  transform: translate(0%, 100%);
  vertical-align: middle;
}

.flickity-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  position: absolute;
  width: 100%;
  height: 100%;
}