.main{
    width: 100%;
    height: fit-content;
    
    padding: 2rem .5rem;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 3rem;
}
.main .boxH1{
    width: 100%;
    height: fit-content;

    text-align: center;
}
.main .boxH1 h1{
    font-size: 2rem;
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
    color: rgb(18, 130, 110);
}


.infoBasket{
    width: 100%;
    height: fit-content;
    max-width: 70rem;

    display: flex;
    flex-direction: column;
    gap: .2rem;
}

.infoBasket .boxButtonService{
    width: 100%;
    height: fit-content;
}
.infoBasket .boxButtonService .boxServiceList{
    width: 100%;
    height: fit-content;

    display: none;
    flex-direction: column;
}
.infoBasket .boxButtonService .boxServiceList.opened{
    display: flex;
}
.infoBasket .boxButtonService .buttonBasket{
    width: 100%;
    height: fit-content;

    padding: .3rem;

    display: flex;
    align-items: center;
    gap: .5rem;

    background-color: rgb(18, 130, 110);

    border: 0.1rem solid rgb(18, 130, 110);

    cursor: pointer;
}
.infoBasket .boxButtonService .buttonBasket .svgArrow{
    transition: transform .2s ease;
}
.infoBasket .boxButtonService .buttonBasket.active .svgArrow{
    transform: rotate(180deg);
}
.infoBasket .boxButtonService .buttonBasket .text{
    width: 100%;
    height: fit-content;

    text-align: start;

    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: white;
}

.boxCallOrVisit{
    width: 100%;
    height: fit-content;
    max-width: 70rem;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}



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

    display: flex;
    gap: 1rem;
}

.boxButtons button, #buttonSendForm{
    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;

    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;

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

    cursor: pointer;

    transition: all .1s ease;
}
.boxButtons button:active, #buttonSendForm: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){
    .boxButtons button:hover, #buttonSendForm:hover{
        border-color: rgb(18, 130, 110);
        background-color: rgb(18, 130, 110);
        color: white;
        box-shadow: 0 4px 16px rgb(18, 130, 110);
    }
    .boxButtons button:hover svg{
        color: white;
    }
}
.boxCallOrVisit .sendForm .boxSendButton{
    width: 100%;
    height: fit-content;

    max-width: 30rem;
}

.boxButtons 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);
}
.boxButtons button.selected svg{
    color: white;
}

.boxCallOrVisit .sendForm{
    width: 100%;
    height: fit-content;

    display: none;
    flex-direction: column;
    align-items: center;
    gap: .6rem;
}
.boxCallOrVisit .sendForm.active{
    display: flex;
}
.boxCallOrVisit .sendForm .boxInput{
    position: relative;
    width: 100%;
    height: fit-content;

    box-shadow: 0px 0px 16px rgb(226, 226, 226);
    border-radius: 2ch;

    transition: transform .1s ease, box-shadow .1s ease;
}
.boxCallOrVisit .sendForm .boxInput img{
    position: absolute;

    top: .9rem;
    left: .6rem;

    width: 2rem;
    height: 2rem;
}
.boxCallOrVisit .sendForm .boxInput input{
    width: 100%;
    height: fit-content;

    padding: .7rem 0;
    padding-left: 3.2rem;

    border: 0.1rem solid rgb(226, 226, 226);
    border-radius: 1ch;

    color: rgb(56, 56, 56);
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
}

.boxCallOrVisit .sendForm .boxInput:focus-within{
    z-index: 1;
    box-shadow: 0 0 16px rgb(18, 130, 110);
    transform: scale(1.003);
}
.boxCallOrVisit .sendForm .boxInput input:focus{
    outline: none;
}

@media (hover: hover){
    .boxCallOrVisit .sendForm .boxInput:hover{
        z-index: 1;
        box-shadow: 0 0 16px rgb(18, 130, 110);
        transform: scale(1.003);
    }
}

.boxCallOrVisit .sendForm .toHomePrice{
    width: 100%;
    height: fit-content;

    display: none;

    text-align: end;

    font-family: 'Manrope', sans-serif;
    color: rgb(18, 130, 110);
    font-weight: 500;
    font-size: .8rem;
}
.boxCallOrVisit .sendForm .toHomePrice .price{
    font-family: 'Roboto Mono', monospace;
    font-size: .8rem;
}
.boxCallOrVisit .sendForm .toHomePrice.active{
    display: block;
}

.boxCallOrVisit .sendForm .formCall{
    width: 100%;
    height: fit-content;

    display: none;
    flex-direction: column;
    align-items: center;
    gap: .3rem;
}
.boxCallOrVisit .sendForm .formCall.active{
    display: flex;
}

.boxCallOrVisit .sendForm .totalPrice{
    width: 100%;
    height: fit-content;

    text-align: end;

    font-family: 'Manrope', sans-serif;
    color: rgb(18, 130, 110);
    font-weight: 500;
    font-size: 1.2rem;
}
.boxCallOrVisit .sendForm .totalPrice #priceNumber{
    font-family: 'Roboto Mono', monospace;
    font-size: 1.15rem;
}







.ymaps-2-1-79-search__suggest.ymaps-2-1-79-search__suggest{
    border-radius: 2ch;
}

.ymaps-2-1-79-suggest-item{
    font-size: 1rem;
    color: rgb(56, 56, 56);
}

.ymaps-2-1-79-search__suggest-item_selected_yes{
    background: rgba(0, 114, 97, 0.185) !important;
}