.bortom-vertical-steps-wrapper{
  display: grid;
  grid-template-columns: 260px 1fr;
  grid-gap: 1.5rem;
}
/*---------------------------------------------------------------------------------
menu bar
---------------------------------------------------------------------------------*/
.bortom-vertical-steps-wrapper .menu-items-wrapper{
  display: grid;
  grid-gap: 1.25rem;
  height: max-content;
  position: relative;
}
.bortom-vertical-steps-wrapper .bortom-menu-item{
  display: grid;
  grid-template-columns: 3rem 1fr;
  grid-gap: 1.5rem;
  grid-template-rows: 3rem;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.025rem;
  opacity: 0.5;
  transition: 0.3s ease all;
}
.bortom-vertical-steps-wrapper .bortom-menu-item.active{
  opacity: 1;
}
.bortom-vertical-steps-wrapper .bortom-menu-item .menu_icon{
  display: grid;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  position: relative;
}
.bortom-vertical-steps-wrapper .bortom-menu-item .menu_icon *{
  position: relative;
}
.bortom-vertical-steps-wrapper .bortom-menu-item .menu_icon i{
  font-size: 1.5rem;
}
.bortom-vertical-steps-wrapper .bortom-menu-item .menu_icon svg{
  width: 1.5rem;
  height: 1.5rem;
}
.bortom-vertical-steps-wrapper .bortom-menu-item .menu_icon:before{
  content: '';
  position: absolute;
  background-color: #000000;
  width: 100%;
  height: 100%;
  border-radius: 3rem;
  transition: 0.3s ease all;
  opacity: 0;
}
.bortom-vertical-steps-wrapper .bortom-menu-item.active .menu_icon:before{
  opacity: 0.06;
}
.bortom-vertical-steps-wrapper .timelapse-bar{
  position: absolute;
  right: 0;
  top: 0;
  width: 0.4rem;
  height: 100%;
  background-color: rgba(0,0,0,0.16);
  overflow: hidden;
  border-radius: 1rem;
}
.bortom-vertical-steps-wrapper .timelapse-bar .activebar{
  height: 3rem;
  width: 100%;
  background-color: currentcolor;
  border-radius: 1rem;
  transition: 0.3s ease all;
}

/*---------------------------------------------------------------------------------
content
---------------------------------------------------------------------------------*/
.content-items-wrapper{
  display: grid;
}

.bortom-vertical-steps-wrapper .bortom-content-item{
  display: grid;
  grid-row-start:  1;
  grid-row-end: 2;
  grid-column-start: 1;
  grid-column-end: 2;
  align-items: center;
  pointer-events: none;
  user-select: none;
  z-index: -1;
  opacity: 0;
  transition: 0.3s ease all;
}
.bortom-vertical-steps-wrapper .bortom-content-item.active{
  opacity: 1;
  z-index: 2;
  user-select: auto;
  pointer-events: auto;
}
.bortom-vertical-steps-wrapper .bortom-content-item.got-image{
  grid-template-columns: 5fr 4fr;
}
.bortom-vertical-steps-wrapper .bortom-content-item .inner_content{
  display: grid;
  grid-gap: 0.5rem;
}
.bortom-vertical-steps-wrapper .bortom-content-item .inner_content .heading{
  margin: 0;
}
.bortom-vertical-steps-wrapper .bortom-content-item img{
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 3rem 1.5rem -1.5rem rgba(0,0,0,0.08);
  width: 100%;
  height: auto;
  max-height: 750%;
}

/*---------------------------------------------------------------------------------
labels
---------------------------------------------------------------------------------*/
.bortom-vertical-steps-wrapper .bortom-labels-list{
  display: inline-flex;
  flex-wrap: wrap;
  grid-gap: 0.75rem;

}
.bortom-vertical-steps-wrapper .bortom-labels-list *{
  display: inline-grid;
  width: max-content;
  background-color: rgba(0,0,0,0.06);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  color: inherit;
  user-select: none;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}

@media (max-width:700px){
  .bortom-vertical-steps-wrapper{
    grid-template-columns: 1fr;
  }
  .bortom-vertical-steps-wrapper .menu-items-wrapper{
    display: flex;
    justify-content: space-between;
    max-width: 100%;
    flex-wrap: wrap;
    grid-gap: 0.5rem;
    padding-bottom: 1.5rem;
  }

  .bortom-vertical-steps-wrapper .bortom-menu-item .menu_icon svg{
    width: 1.5rem;
    height: 1.5rem;
  }
  .bortom-vertical-steps-wrapper .timelapse-bar{
    width:100%;
    top: 100%;
    right: unset;
    left: 0;
    height: 0.4rem;
  }
  .bortom-vertical-steps-wrapper .bortom-content-item.got-image{
    padding-top: 1rem;
    display: block;
  }
  .bortom-vertical-steps-wrapper .timelapse-bar .activebar{
    width: 3rem;
    height: 0.4rem;
  }
  .bortom-vertical-steps-wrapper .bortom-menu-item .menu_icon{
    width: 3rem;
    height: 3rem  ;
  }
  .bortom-vertical-steps-wrapper .bortom-menu-item{
    grid-template-columns: 1fr;

  }
  .bortom-vertical-steps-wrapper .bortom-menu-item .menu_title{
    display: none;
  }
}
