@import "../../../_variables";

#slider-container-outer {
  overflow: hidden;
  position:relative;
}

#slider-container {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  position: relative;
  z-index: 2;
}

/* CSS transition applied when translation of items happen */
.slider-container-transition {
  transition: transform 0.7s ease-in-out;
}

.background-timeline{
  background-color: #dfdfdf;
  position: absolute;
  left: 20%;
  right: 20%;
  height: 2px;
  z-index: 1;
  margin-top: 24px;
}

.slider-item {
  width: 33.3%;
  height:80px;
  background-color: transparent;
  flex-shrink: 0;
  justify-content: center;
  display: flex;
  z-index: 2;
  position: relative;
  flex-wrap: wrap;
}

.slider-item >* {
  flex: 1 1 100%;
  justify-content: center;
  align-items: center;
  align-content: center;
  display: flex;
}

.slider-item fa-icon{
  background-color: #cfcfcf;
  font-weight: bold;
  width: 40px;
  height: 40px;
  font-size: 1.2em;
  color: #fff;
  border-radius: 50%;
  padding: 10px;
  display: flex;
  justify-content: center;
  text-align: center;
}

.slider-item fa-icon.selected{
  background-color: $primary;
}

.label-timeline-mobile{
  font-size:14px;
}

