.contern_lab {
    margin: 0 87px;
    align-items: center;
    flex-direction: column;
}

.alert-primary-lab {
    color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff;
}

.border-2-red {
    border: 2px solid red;
}

/* LAB Step_Regis START */

.step-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin: 50px 0;
}

.inner-lab-step-image {
    min-width: 170px;
    min-height: 170px;
    padding: 16px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;                 
    align-items: center;           
    justify-content: center;   
}

.lab-step-image {
  min-width: 200px;
  min-height: 200px;
  padding: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, #C6E7E6 0%, #609F9B 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
}

.lab-step-image.ver2 {
  background: linear-gradient(180deg, #609F9B 0%, rgb(24, 73, 69) 100%);
  position: relative;
  z-index: 1;
}

.lab-step-image .lab-step-arrow {
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 40px;
  background: linear-gradient(180deg, #C6E7E6 0%, #609F9B 100%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  z-index: 0;
}

.lab-step-image.ver2 .lab-step-arrow {
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 40px;
  background: linear-gradient(180deg, #609F9B 0%, rgb(24, 73, 69) 100%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  z-index: 0;
}

.lab-step-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.lab-step-box {
    background: rgba(183, 248, 243, 1);
    min-width: 100px;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    border-radius: 50%;
}

.lab-step-box.ver2 {
    background:rgba(30, 93, 88, 1);
}

.lab-step-box h2{
    color: rgba(30, 93, 88, 1);
    font-weight: 400;
    font-size: 22px;
}
.lab-step-box.ver2 h2{
    color: #FFFFFF;
}

.lab-step-detail {
    width: 800px;
    box-shadow: 0px 2px 4px 0px rgba(171, 190, 209, 0.6);
    border-radius: 22px;
    border: 1px solid rgba(162, 225, 221, 1);
    padding: 24px;
}
.lab-step-detail h2{
    font-size: 24px;
    color: rgba(30, 93, 88, 1);
}
.lab-step-detail h3{
    font-size: 20px;
    color: rgba(0, 0, 0, 1);
    font-weight: 400;
}

.step-detail-list li {
    font-size: 20px;
    font-weight: 200;
}

.lab-line {
    position: absolute;
    background: rgba(153, 153, 153, 0.48);
    min-width: 8px;
    min-height: 250px;
    border-radius: 12px;
    bottom: -60px;
    left: 280px;
}

@media (max-width: 1015px) {
    .flex-wrap-lab {
        flex-wrap: wrap;
    }
}

@media (max-width: 991.98px) {
  .step-item {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .lab-step-detail {
    width: 100%;
    padding: 16px;
  }

  .lab-step-image,
  .lab-step-box {
    margin: 0 auto;
  }
  .lab-step-box {
    border-radius: 12px;
    flex-direction: row;
    gap: 18px;
    min-height: auto;
    min-width: auto;
    padding: .5rem 1rem;
  }

  .lab-step-image .lab-step-arrow {
    display: none;
  }
}

/* LAB Step_Regis END */