/*-----------------------------------------------------------------*/
/* Machine slider
/*-----------------------------------------------------------------*/

.machine-list {
  margin-right: 1px;
  border-bottom: 0;
  border-radius: 2px;
}

.machines .machine {
  height: 250px;
  padding:5px;
}

.machines a {
  border-bottom:unset;
} 

.machines-list .machine img {
  height: 100% !important;
}

.border-machine {
  border: 1px #000000 dashed;
}

.machine .container {
  width: auto !important;
  padding-top:0px !important;
}

.machine .border-left-dashed {
  border-left:1px dashed #000000;
}

@media screen and (max-width: 1200px) {
  .machine .border-left-dashed {
    border-left:unset;
  }
}

.slick-next {
  overflow: visible !important;
}

.slick-prev {
  overflow: visible !important;
}

.next-step {
  font-size: 12px;
  background-color: #ffffff;
  position: absolute;
  z-index: 1000;
  left: 40px;
  margin-top: 15px;
  width: fit-content;
  padding: 5px;
  opacity: 0;
}

.slick-next:hover .next-step{
  opacity:1;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}

.prev-step {
  font-size: 12px;
  background-color: #ffffff;
  position: absolute;
  z-index: 1000;
  width: fit-content;
  right: 40px;
  margin-top: 15px;
  padding: 5px;
  opacity: 0;
}

.slick-prev:hover .prev-step{
  opacity:1;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}