@use '../../../assets/scss/customVariables.scss' as *;

.content {
  height: fit-content;
  background-color: #fff;
  box-sizing: border-box;
  border-radius: 24px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
  gap: 29px;
  position: relative;
  box-sizing: border-box;
  width: 100%;

  @media screen and (max-width: 660px) {
    width: 100%;
    max-width: 100%;
    gap: 0;
  }

  .track {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0px;
    height: 11px;
    transform: translateY(-50%);
    z-index: 1;
  }

  .wrapper {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    min-height: 57.98px;
    
    .steps {
      width: 57.98px;
      height: 57.98px;
      min-width: 57.98px;
      min-height: 57.98px;
      max-width: 57.98px;
      max-height: 57.98px;
      background-color: #C2C2C2;
      box-shadow: 0 0 30px #0000001f;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      margin-bottom: 0;
      border-radius: 50%;
      z-index: 2;
  
      color: #fff;
      font-weight: 700;
      font-size: 20px;
  
      @media screen and (max-width: 500px) {
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
        max-width: 48px;
        max-height: 48px;
      }
      
      @media screen and (max-width: 405px) {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        max-width: 40px;
        max-height: 40px;
      }
    }
  }


}