:root {
    --main-color: #4db748;
    --font: 'Open Sans Hebrew', serif;
}


.petFoodFinderContainer {
    -webkit-tap-highlight-color:  rgba(255, 255, 255, 0); 
    margin: auto;
    font-family: var(--font);
    text-align: center;
    padding-top: 100px;
    padding-bottom: 300px;
}

.petFoodFinder_title {
    font-size: 40px;
    font-weight: 900;
}

.petFoodFinder_stage {
    margin-top: 100px;
}

.petFoodFinder_stage.dog_life_stage .petFoodFinder_stageOptions {
    max-width: 700px;
}

.petFoodFinder_stage.hide:not(.first) {
    display: none;
}

.petFoodFinder_stageTitle {
    font-size: 30px;
    font-weight: 500;
}

.petFoodFinder_stageOptions {
    margin: 10px auto 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.petFoodFinder_option {
    height: 300px;
    width: 300px;
    position: relative;
    cursor: pointer;
    background-color: var(--main-color);
    margin: 2px;
}

.petFoodFinder_option:hover {
    filter: brightness(90%);
}

.petFoodFinder_option.selected {
    background-color: #f3dbb2;
}

.petFoodFinder_option:hover .petFoodFinder_optionImg {
    transform: scale(1.2);
}

.petFoodFinder_optionContent {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.petFoodFinder_optionImg {
    transform: scale(1);
    transition: 0.2s;
}

.petFoodFinder_optionDesc {
    font-size: 20px;
    margin-top: 10px;
}

.viewResusltsBtn {
    height: 96px;
    width: 400px;
    background-color: #f58102;
    cursor: pointer;
    color: white;
    font-size: 36px;
    margin: 80px auto 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.viewResusltsBtn.hide {
    display: none;
}




.petFoodFinder_sliderStage.hide {
    display: none;
}

.petFoodFinder_sliderStageContent {
    height: 400px;
    width: 900px;
    position: relative;
    background-color: var(--main-color);
    margin: auto;
}

.petFoodFinder_sliderInstructions {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin-top: 20px;
}

.petFoodFinder_sliderStageMiddle {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}






.sliderContainer {
    position: absolute;
    bottom: 0px;
    right: 50%;
    width: 100%;
    transform: translate(50%, 50%);
}

.petFoodFinderContainer .ui-slider-handle {
    background: #f3dbb2 !important;
    border-radius: 50% !important;
    height: 2.5em !important;
    width: 2.5em !important;
    cursor: pointer;
    margin: 0px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.petFoodFinderContainer .ui-slider-handle i {
    font-size: 36px;
    color: black;
}

.petFoodFinderContainer .ui-slider-horizontal {
    border-radius: 0px !important;
    height: 0.6em !important;
    cursor: pointer;
}

.petFoodFinderContainer .ui-slider-horizontal .ui-slider-handle {
    transform: translate(-50%, -25%) !important;
    cursor: pointer;
    z-index: 999;
}

.sliderDots {
    display: flex;
    position: absolute;
    bottom: 0px;
    right: 50%;
    width: 100%;
    transform: translate(50%, 25%);
    z-index: 99;
    align-self: center;
    justify-content: space-between;
    pointer-events: none
}

.sliderDots > div {
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background-color: black;
}
.sliderDots > div:nth-child(1) {
    transform: translateX(50%);
}
.sliderDots > div:nth-child(2) {
    transform: translateX(25%);
}
.sliderDots > div:nth-child(4) {
    transform: translateX(-25%);
}
.sliderDots > div:nth-child(5) {
    transform: translateX(-50%);
}



@media only screen and (max-width: 600px) {

    .petFoodFinderContainer {
        padding-bottom: 100px;
    }

    .petFoodFinder_sliderStageContent {
        height: 250px;
        width: 300px;
    }

    .petFoodFinder_option {
        height: 150px;
        width: 150px;
    }

    .viewResusltsBtn {
        height: 70px;
        width: 200px;
        font-size: 26px;
    }

    .petFoodFinder_stage {
        margin-top: 50px;
    }

    .petFoodFinder_optionDesc {
        font-size: 14px;
        white-space: nowrap;
    }

}