html::-webkit-scrollbar{
    display: none;
}
.body{
    scroll-snap-type: y mandatory;
    overflow: scroll;
    height: 100vh;
}
header{
    scroll-snap-align: start;
}
.btn-rounded{
    border-radius: 40px;
}
.progress-wrapper{
    position: relative;
}
.choose-pet{
    position: relative; 
}
#pagination-wrapper{
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    height: 100%;
    display: flex;
    align-items: center;  
    justify-content: center;
    flex-direction: column;  
    right: 0;
}
.dot{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border:solid 2px var(--color-text-pink);
    margin-bottom: 10px;
    position: relative;
    cursor: pointer;
}
.dot.active::after{
    width: 13px;
    height: 13px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: var(--color-text-pink);
    display: block;
    content: '';
}
.pet-box-wrapper{
    scroll-snap-align: start;
    scroll-snap-stop: always;        
}
.pet-box{    
    position: relative;
    border-radius: 10px;    
    background: var(--color-text-pink-50);
    height: 170px;               
}
.pet-box img{
    width: 70%;
    left: 50%;
    max-height: 210px;
    min-height: 150px;
    min-width: 110px;
    transform: translateX(-50%);
    bottom: 10px;
    position: absolute;
}



@media only screen and (max-width:768px) and (min-width:400px){
    .pet-box-wrapper{
        max-width: 260px;
    }
}


/**************************************/
/**************************************/
/****                              ****/
/****          Progress            ****/
/****                              ****/
/**************************************/
/**************************************/

.ProgressBar {
    padding: 2em 13em 3em;
}
.ProgressBar-icon {
    width: 1.7rem;
    height: 1.7rem;
}
.ProgressBar-step:before, .ProgressBar-step:after {
    height: 0.4rem;
}
.ProgressBar-stepLabel {
    font-size: 14px;
}

@media only screen and (max-width:991px){
    .ProgressBar {
      padding: 2em 4em 3em;
    }
  }
  @media only screen and (max-width:767px){
    .ProgressBar {
      padding: 2em 3em 3em;
    }
    .ProgressBar-stepLabel{
      font-size:12px;
    }
  }
  @media only screen and (max-width:575px){
    .ProgressBar {
      padding: 2em 2em 3em;
    }
    .ProgressBar-icon{
      width: 1.5rem;
      height: 1.5rem;
    }
    .ProgressBar-step:before, .ProgressBar-step:after {
      height: 0.3rem;
    }
    .ProgressBar-stepLabel{
      font-size:10px;
    }
  }