/* Steps Block */

.steps-block {
  /*margin: 50px 100px 20px!important;*/
}

@media (max-width: 999px) {
  .steps-block {
    /*margin: 50px 30px 20px !important;*/
  }
}

.steps-block .wpb_text_column {
  text-align: center;
}

.steps-block .wpb_text_column p {
  color: #8AC926;
  font-weight: 700;
}

.steps-block .wpb_text_column p strong {
  color: #8AC926;
  font-weight: 700;
}

.steps-block .plus_list {
  display: flex;
  flex-direction: row;
  gap: 16px;
  counter-reset: step;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  padding-bottom: 8px;
}

.steps-block .plus_list::-webkit-scrollbar {
  display: none;
}

.steps-block .plus_list.is-dragging {
  cursor: grabbing;
}

.steps-block .plus_list .item {
  counter-increment: step;
  text-align: center;
  padding: 20px;
  padding-top: 80px;
  position: relative;
  border: 1px solid #00000010;
  border-radius: 20px;
  box-shadow: -3px 3px 10px #00000012;
  min-width: 240px;
  max-width: 300px;
  flex-shrink: 0;
}

.steps-block .plus_list .item::before {
  content: "." counter(step);
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 51px;
  background: url('../img/rombo.svg') no-repeat center / contain;
  color: #136F63;
  font-weight: 700;
  font-size: 16px;
  line-height: 51px;
  text-align: center;
}

.steps-block .plus_list .item h4 {
  margin-bottom: 16px;
  color: #136F63;
}

.steps-block .plus_list .item div * {
  color: #2E2E2E;
  font-size: 14px !important;
}

.steps-block .btn_container {
  justify-content: center;
  margin-top: 50px;
}

@media (max-width: 690px) {
  .steps-block .plus_list .item {
    min-width: 200px;
    max-width: 220px;
  }
}

/* Override accordion da .self_storage su mobile */
@media (max-width: 767px) {
  .self_storage .steps-block .plus_list .item h4 {
    display: block;
    font-size: inherit;
  }
  .self_storage .steps-block .plus_list .item h4::after {
    content: none;
  }
  .self_storage .steps-block .plus_list .item:not(.attivo) {
    height: auto;
    max-height: none;
    overflow: visible;
  }
  .self_storage .steps-block .plus_list .item:not(.attivo) p {
    opacity: 1;
  }
}
