.searchWrappSectionMain{
    width: 100%;
}

.searchWrappSectionMain .nothingFound {
    padding: 50px 0 200px;
    text-align: center;
}

.searchWrappSectionMain .nothingFound svg {
    margin-bottom: 8px;
}

.searchWrappSectionMain .head{
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
}

.searchWrappSectionMain .head .recepty{
    display: none;
}

.searchWrappSectionMain .labels .badge{
    min-height: 42px;
    border-radius: 12px;
}

.searchWrappSectionMain .labels{
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    max-width: 100%;
    overflow-x: auto;
}

.searchWrappSectionMain .labels::-webkit-scrollbar{
    height: 0px;
}

.searchWrappSectionMain .labels .badge img,
.searchWrappSectionMain .labels .label img{
    height: 100%;
    max-height: 26px;
}

.searchWrappSectionMain .labels:last-child{
    margin-bottom: 16px;
}

@media screen and (max-width:1280px) {
    .searchWrappSectionMain .head{
        margin-top: 20px;
        padding: 0px 16px;
        margin-bottom: 16px;
    }

    .searchWrappSectionMain .labels{
        margin-bottom: 16px;
    }

    .searchWrappSectionMain .head .recepty{
        display: flex;
    }
}

@media screen and (max-width:1000px) {
    .searchWrappSectionMain .labels{
        flex-direction: column;
    }

    .searchWrappSectionMain .labels .brand.badge,
    .searchWrappSectionMain .labels .category.badge{
        width: fit-content;
        background-color: transparent;
        padding: 0;
        min-height: fit-content;

    }
}

.searchWrappSectionMain .desktopOrdering{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-primary);
    padding-bottom: 1px;
    margin-bottom: calc(1px + 30px);
}

@media screen and (max-width:1000px) {
    .searchWrappSectionMain .desktopOrdering{
        display: none;
    }
}

.searchWrappSectionMain .desktopOrdering p.resultsCount{
    color: var(--text-secondary);
    font-size: 14px;
}

.searchWrappSectionMain .desktopOrdering .options{
    display: flex;
}

.searchWrappSectionMain .desktopOrdering .options .option{
    margin-top: 6px;
    position: relative;
    width: fit-content;
    cursor: pointer;
}

.searchWrappSectionMain .desktopOrdering .options .option a{
    text-decoration: none;
    display: block;
    padding: 0px 12px;
    margin-bottom: 6px;
}

.searchWrappSectionMain .desktopOrdering .options .option .lineBottom{
    background-color: var(--primary-color);
    height: 3px;
    position: absolute;
    bottom: calc(-3px);
    width: 100%;
    border-radius: 999px;
    opacity: 0;
}

.searchWrappSectionMain .desktopOrdering .options .option.selected p{
    font-family: 'VolteSemibold', 'sans-serif';
}

.searchWrappSectionMain .desktopOrdering .options .option.selected .lineBottom{
    opacity: 1;
}

.searchWrappSectionMain .receptyWrapp{
    padding: 20px 0px;
}

.searchWrappSectionMain .receptyWrapp h3{
    font-size: 14px;
}

.searchWrappSectionMain .receptyWrapp .list{
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.searchWrappSectionMain .receptyWrapp .list a{
    color: var(--text-primary);
    font-size: 14px;
    width: fit-content;
}

.searchWrappSectionMain .resultsProducts{
    display: flex;
    flex-direction: column;
}

.searchWrappSectionMain .resultsProducts .result{
    width: 100%;
    padding: 12px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    justify-items: center;
    border-bottom: 1px solid var(--border-primary);
    transition: 0.4s;
    cursor: pointer;
    text-decoration: none;
    color: var(--text-primary);
}

.searchWrappSectionMain .resultsProducts .result:hover{
    background-color: var(--blue-200);
}

.searchWrappSectionMain .resultsProducts .result .first{
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 502px;
}

.searchWrappSectionMain .resultsProducts .result .first .content{
    position: relative;
}

.searchWrappSectionMain .resultsProducts .result .first .content .specificInfoWrapp{
    position: absolute;
    bottom: 50px;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.2s, opacity 0.6s;
}

.searchWrappSectionMain .resultsProducts .result .first .content:hover .specificInfoWrapp{
    visibility: visible;
    opacity: 1;
}

.searchWrappSectionMain .resultsProducts .result .first .content .specificInfoTriangleWrapp{
    position: relative;
}

.searchWrappSectionMain .resultsProducts .result .first .content .specificInfo{
    background-color: var(--surface-dark);
    color: var(--text-white);
    padding: 12px 16px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-radius: 12px;
    position: relative;
    z-index: 11;
}

.searchWrappSectionMain .resultsProducts .result .first .content .specificInfoWrapp .triangle{
    width: 39.523px;
    height: 39.523px;
    transform: rotate(45deg);
    background-color: var(--surface-dark);
    position: absolute;
    left: 50%;
    transform: translate(-50%), rotate(45deg);
    bottom: 0px;
    z-index: 10;
    border-radius: 2px;
}

.searchWrappSectionMain .resultsProducts .result .first .content .specificInfo .badges{
    display: flex;
    align-items: center;
    gap: 4px;
}

.searchWrappSectionMain .resultsProducts .result .first .content .specificInfo .badge{
    border-radius: 4px;
    padding: 2px 4px;
    font-size: 14px;
    font-family: 'VolteSemibold', 'sans-serif';
}

.searchWrappSectionMain .resultsProducts .result .first .content .specificInfo .badge.discount{
    color: var(--text-primary);
    background-color: var(--yellow);
}


.searchWrappSectionMain .resultsProducts .result .first .content .specificInfo .badge.new{
    color: var(--text-white);
    background-color: var(--surface-red);
}

.searchWrappSectionMain .resultsProducts .result .first .content .specificInfo .badge.tip{
    color: var(--text-white);
    background-color: var(--surface-green);
}

.searchWrappSectionMain .resultsProducts .result .first .content .specificInfo .badge.sale{
    color: var(--text-white);
    background-color: var(--surface-dark);
}

.searchWrappSectionMain .resultsProducts .result .first .content .specificInfo h4{
    font-size: 12px;
}

.searchWrappSectionMain .resultsProducts .result .first .content .specificInfo h4 span,
.searchWrappSectionMain .resultsProducts .result .first .content .specificInfo h4 a{
    font-family: 'VolteRegular', sans-serif;
    color: var(--text-white);
}

.searchWrappSectionMain .resultsProducts .result .first .content h3{
    font-size: 16px;
}

.searchWrappSectionMain .resultsProducts .result .first .desc{
    margin-top: 6px;
    display: flex;
    font-size: 12px;
    align-items: center;
    gap: 4px;
}

.searchWrappSectionMain .resultsProducts .result .first .desc .status{
    width: 8px;
    height: 8px;
    border-radius: 999px;
}

.searchWrappSectionMain .resultsProducts .result .first .desc .status.inStock{
    background-color: var(--surface-green);
}

.searchWrappSectionMain .resultsProducts .result .first .desc .status.outStock{
    background-color: var(--surface-red);
}

.searchWrappSectionMain .resultsProducts .result .first .desc .status.onOrder{
    background-color: var(--surface-yellow);
}

.searchWrappSectionMain .resultsProducts .result .first .img{
    max-width: 50px;
    max-height: 50px;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid var(--border-primary);
}

.searchWrappSectionMain .resultsProducts .result .first img{
    width: 100%;
    height: auto;
}

.searchWrappSectionMain .resultsProducts .result .second{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 32px;
}

.searchWrappSectionMain .resultsProducts .result .idWrapp{
    display: flex;
    align-items: center;
}

.searchWrappSectionMain .resultsProducts .result .id{
    width: 90px;
    text-align: right;
    margin-right: 12px;
}

.searchWrappSectionMain .resultsProducts .result .price{
    font-family: 'VolteSemibold', 'sans-serif';
    width: 90px;
    text-align: right;
    font-size: 16px;
}

.searchWrappSectionMain .resultsProducts .result .controlls{
    display: flex;
    align-items: center;
    gap: 10px;
}

.searchWrappSectionMain .resultsProducts .result .controlls .favorite {
    min-height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 7px 6px 7px;
    border-radius: 999px;
    background-color: white;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

.searchWrappSectionMain .resultsProducts .result .controlls .amount,
.searchWrappSectionMain .resultsProducts .result .controlls .amountWrapp {
    border: 1px solid var(--border-primary);
    padding: 13px 11px 13px 11px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 16px;
    min-width: 121px;
}

.searchWrappSectionMain .resultsProducts .result .controlls .cartWrapp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.searchWrappSectionMain .resultsProducts .result .controlls .amount svg{
    cursor: pointer;
}

.searchWrappSectionMain .resultsProducts .result .controlls .addToCart,
.searchWrappSectionMain .resultsProducts .result .controlls button.cart {
    background-color: var(--surface-green);
    padding: 10px 24px;
    border-radius: 8px;
    cursor: pointer;
}

.searchWrappSectionMain .resultsProducts .result h5{
    display: none;
}

.searchWrappSectionMain .resultsProducts .result .resultLink{
    color: var(--text-primary);
    text-decoration: none;
}

.searchWrappSectionMain .receptyWrapp.desktop{
    display: block;
}

.searchWrappSectionMain .loadMoreSection{
    margin-top: 46px;
    margin-bottom: 100px;
}

.searchWrappSectionMain .receptyWrapp.mobile{
    display: none;
}

@media screen and (max-width:1280px) {
    .searchWrappSectionMain .sectionHead,
    .searchWrappSectionMain .labels,
    .searchWrappSectionMain .receptyWrapp{
        padding: 0px 16px;
    }

    .searchWrappSectionMain .receptyWrapp.desktop{
        display: none;
    }

    .searchWrappSectionMain .receptyWrapp.mobile{
        margin-bottom: 16px;
        display: none;
    }

    .searchWrappSectionMain .receptyWrapp.mobile.show{
        display: block;
    }
}

@media screen and (max-width:800px) {
    .searchWrappSectionMain .resultsProducts .result{
        display: grid;
        grid-template-columns: 1fr 0.2fr;
        justify-items: stretch;
    }

    .searchWrappSectionMain .resultsProducts .result p.id,
    .searchWrappSectionMain .resultsProducts .result .controlls{
        display: none;
    }
}

@media screen and (max-width:450px) {
    .searchWrappSectionMain .resultsProducts .result{
        grid-template-columns: 1fr;
    }

    .searchWrappSectionMain .head .similars{
        flex-wrap: wrap;
    }

    .searchWrappSectionMain .resultsProducts .result h3{
        font-size: 16px;
    }

    .searchWrappSectionMain .resultsProducts .result .desc{
        font-size: 14px;
    }


    .searchWrappSectionMain .resultsProducts .result h5{
        display: block;
        margin-top: 5px;
        font-size: 15px;
    }

    .searchWrappSectionMain .resultsProducts .result .price{
        display: none;
    }
}

@media screen and (max-width:350px) {
    .shoppingCartSectionWrapp .notEmpty .shoppingCartSection .shoppingCart .products .product .second .controlWrapp .icon.favorite{
        display: none;
    }
}