.selectServicesBackGroud{
    width: 100%;
    height: fit-content;

    padding: 2rem .5rem;

    display: flex;
    justify-content: center;
}
.selectServicesBox{
    width: 100%;
    height: fit-content;

    max-width: 80rem;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.selectServicesBox h2{
    color: rgb(18, 130, 110);
    font-size: 2rem;
    font-family: 'Raleway', sans-serif;
    text-align: center;
}

.selectCallOrVisit{
    width: 100%;
    height: fit-content;

    display: flex;
    gap: 1rem;
}

.selectCallOrVisit button, #goToBasketButton{
    width: 100%;
    height: fit-content;

    padding: 1.5rem .5rem;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;

    border: 0.1rem solid rgb(226, 226, 226);
    border-radius: 1ch;
    box-shadow: 0 4px 16px rgb(226, 226, 226);
    background-color: white;

    text-align: center;

    font-weight: 500;
    font-size: 1rem;
    color: rgb(56, 56, 56);
    font-family: 'Manrope', sans-serif;

    cursor: pointer;

    transition: all .1s ease;
}
.selectCallOrVisit button:active, #goToBasketButton:active{
    border-color: rgb(18, 130, 110);
    background-color: rgb(18, 130, 110);
    color: white;
    box-shadow: 0 4px 16px rgb(18, 130, 110);
    transform: scale(0.95);
}
@media (hover: hover){
    .selectCallOrVisit button:hover, #goToBasketButton:hover{
        border-color: rgb(18, 130, 110);
        background-color: rgb(18, 130, 110);
        color: white;
        box-shadow: 0 4px 16px rgb(18, 130, 110);
    }
    .selectCallOrVisit button:hover svg{
        color: white;
    }
}

.selectCallOrVisit button.selected{
    border-color: rgb(18, 130, 110);
    background-color: rgb(18, 130, 110);
    color: white;
    box-shadow: 0 4px 16px rgb(18, 130, 110);
}
.selectCallOrVisit button.selected svg{
    color: white;
}

#goToBasketButton{
    max-width: 25rem;
}

.selectServicesForm{
    width: 100%;
    height: fit-content;

    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}
.selectServicesForm.active{
    display: flex;
}

.boxInputSearchService{
    position: sticky;
    top:var(--selectServices_topBoxInputSearchService, 0px);

    width: 100%;
    height: fit-content;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    z-index: 1;

    transition: transform 0.2s ease;
}

.selectServicesForm .inputIMG{
    position: absolute;
    pointer-events: none;
    
    left: 0.8rem;

    width: 1.8rem;
    height: 1.8rem;
}
.selectServicesForm input{
    width: 100%;
    height: 4rem;

    padding-left: 3rem;

    outline: none;

    border: none;
    border-radius: 1ch;

    box-shadow: 0 0 15px rgb(226, 226, 226);

    background-color: rgba(255, 255, 255, 0.88);

    font-size: 1.5rem;
    font-weight: 500;
    font-family: 'Manrope', sans-serif;
    color: rgb(56, 56, 56);
}
.boxInputSearchService:focus-within{
    transform: scale(1.01);
}
.selectServicesForm input:focus{
    box-shadow: 0 0px 16px rgb(18, 130, 110);
    background-color: white;
}

.boxServicesWithFuse{
    width: 100%;
    height: fit-content;
}

.boxServicesAll, .boxServicesHome, .boxFuseServices{
    width: 100%;
    height: fit-content;

    display: none;
    flex-direction: column;

    background-color: white;
}
.boxServicesAll.opened, .boxServicesHome.opened, .boxFuseServices.opened{
    display: flex;
}
.textNotFoundService, .textBlockIsEmpty{
    width: 100%;
    height: fit-content;

    display: none;

    text-align: center;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 1rem;
}
.textNotFoundService.active, .textBlockIsEmpty.active{
    display: block;
}