.searchPage {
    width: 80%;
    margin: 4rem auto;
    }

.searchPage h5 {
color: white;
}

.searchPage__text {
padding-top: 15px;
color: black;
text-align: center;
}

.searchPage__selectBox {
display: flex;
justify-content: flex-end;
margin-bottom: 20px;
}

.one_column {
max-width: 1200px;
margin: 0 auto 20px;
}

.searchPage__select {
width: 200px;
height: 40px;
padding-left: 12px;
}

.searchPage__container {
/* display: flex; */
justify-content: center;
}

@media (max-width: 768px) {
.searchPage__container {
flex-direction: column;
align-items: flex-end;
}
.searchPage {
width: 90%;
margin: 2rem auto;
}
}

.searchPage__categories {
display: flex;
width: 100%;
background-color: #EFEFEF;
flex-direction: column;
padding: 1rem;
max-width: 550px;
}

.searchPage__products {
display: flex;
width: 100%;
padding: 1rem;
max-width: 1200px;
flex-wrap: wrap;
gap: 10px;
justify-content: space-around;
align-items: flex-start;
}

.searchPage__products h6 {
    width: 100%;
    padding: 0 0 20px 10px;
    font-size: 27px;
}

.text {
color: #237ACA;
}

.srch-product_inner  {
border-bottom: 1px solid lightgrey;
}
.srch-product_inner p,
.srch-product_inner span {
color: black;
}

.srch-product_inner span {
font-size: 16px;
}

.hidden {
display: none;
}
.srch-product {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 280px;
    text-decoration: none;
    
    margin-bottom: 20px;
    position: relative;
    height: 455px;
}


.srch-product_right {
    padding: 15px;
    top: 0;
    border-radius: 5px;
    display: flex;
    /* align-items: center; */
    flex-direction: column;
    position: absolute;
    height: 510px;
    background-color: white;
}

.srch-product_right:hover {
    box-shadow: 1px 1px 5px 2px rgb(149, 149, 149);
    z-index: 10;
}
.srch-product_title {
    text-decoration: none;
    font-weight: bold;
    height: 80px;
    text-align: center;
    /* color: #FB9B2C */
}
.srch-product_image-block {
    /* height: 200px; */
    padding: 10px;
    overflow: hidden;
}
.srch-product_image {
    height: 250px;
    width: 230px;
    /* background-size: contain;
    background-position: 50% 50%;
    background-repeat: no-repeat; */
    object-fit: scale-down;
}
.srch-product_inner {
    /* margin-bottom: 10px; */
    padding: 10px;
}
.srch-product_price-excl {
    text-align: right;
    font-weight: bold;
    font-size: 18px;
}
.srch-product_price-incl {
    text-align: right;
    font-weight: 100;
    font-size: 14px;

}

.srch-product_button-hidden {
    
    display: none;
}
.srch-product_right:hover .srch-product_button-hidden {
    display: block;
}
.srch-product .homepage_category_block_read_more {
    margin-bottom: 10px;
}