.eventGroup-wrapper {
  overflow: hidden;
}
h2 {
  margin-top: 0px;
  line-height: 1;
  font-size: 42px;
  color: white;
  margin-bottom: 35px;
  position: relative;
}
.view_all {
  display: block;
  position: relative;
  text-align: right;
  padding-left: 70px;
  border-bottom: 2px solid rgba(230, 231, 233, 0.1);
  color: white;
  text-transform: uppercase;
  font-family: Roboto-Bold;
  margin-bottom: 40px;
}
.view_all::after {
  content: '';
  position: absolute;
  left: 0;
  display: block;
  bottom: 3px;
  height: 16px;
  width: 70px;
  background-color: #f73646;
}
a.eventSale {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #f73646;
  background-color: #f73646;
  float: right;
  text-align: center;
  color: white;
  line-height: 1;
  margin-top: 5px;
  font-size: 11px;
  text-transform: uppercase;
  transition: all 0.25s ease-in-out;
  margin-right: 10px;
}
a.eventSale.soldOut {
  color: #f73646;
  background-color: white;
}
a.eventSale.soldOut:hover {
  color: white;
  background-color: #f73646;
}
a.eventSale:hover {
  background-color: #d73340;
  border-color: #d73340;
  text-decoration: none;
  color: white;
}
a.eventSale:focus {
  background-color: #d73340;
  border-color: #d73340;
  text-decoration: none;
  color: white;
}
a:focus {
  outline: none;
  color: #f73646;
}
.closed-event {
  opacity: 0.5;
}
.imgMoreArticles {
  position: relative;
  overflow: hidden;
}
.imgMoreArticles:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.25);
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.imgMoreArticles:hover:before {
  transform: scaleY(0);
}
.eventPreview.next-event {
  opacity: 0;
  animation: fadeOut 0.5s forwards;
  display: none;
}
.eventPreview.prev-event {
  opacity: 0;
  animation: fadeIn 0.5s forwards;
  display: none;
}
.eventPreview.prev-event.visible-event,
.eventPreview.next-event.visible-event {
  opacity: 1;
  display: block;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateX(-50%);
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeOut {
  0% {
    opacity: 0;
    transform: translateX(150%);
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
