/* Recepty List */

.recipeListSectionWrapp{
    width: 100%;
    margin-bottom: 100px;
}

.recipeListSectionWrapp .sectionHeadWrapp{
    margin-top: 32px;
    display: flex;
    justify-content: space-between;
    width: auto;
    margin-bottom: 32px;
}

.recipeListSectionWrapp .sectionHeadWrapp h1{
    margin-top: 7px;
}

.recipeListSectionWrapp .sectionHeadWrapp .primary-btn{
    font-size: 16px;
    padding: 15px 24px;
    height: fit-content;
}

.recipeListSectionWrapp .recipeListFilterWrapp{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid var(--border-primary);
    margin-bottom: 48px;
}

.recipeListSectionWrapp .recipeListFilterWrapp .filter{
    display: flex;

}

.recipeListSectionWrapp .recipeListFilterWrapp .filter .option{
    position: relative;
    width: fit-content;
    cursor: pointer;
    text-decoration: none;
}

.recipeListSectionWrapp .recipeListFilterWrapp .filter .option p{
    padding: 0px 12px;
    margin-bottom: 6px;
}

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

.recipeListSectionWrapp .recipeListFilterWrapp .filter .option.selected p{
    font-family: 'VolteSemibold', 'sans-serif';
}

.recipeListSectionWrapp .recipeListFilterWrapp .filter .option.selected .lineBottom{
    opacity: 1;
}

.recipeListSectionWrapp .recipeListFilterWrapp .page{
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 140%;
}

.recipeListSectionWrapp .recipeListFilterWrappMobile{
    position: relative;
    z-index: 11;
    display: none;
}

.recipeListSectionWrapp .recipeListFilterWrappMobile .selected{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--border-primary);
    padding: 12px;
    padding-left: 16px;
    font-size: 16px;
    cursor: pointer;
}

.recipeListSectionWrapp .recipeListFilterWrappMobile .selected p{
    font-family: 'VolteSemibold', 'sans-serif';
    color: var(--text-primary);
}

.recipeListSectionWrapp .recipeListFilterWrappMobile .selected p span{
    margin-left: 8px;
    color: var(--text-secondary);
    font-family: 'VolteRegular', sans-serif;
}

.recipeListSectionWrapp .recipeListFilterWrappMobile .selectList{
    display: none;
    gap: 6px;
    flex-direction: column;
    position: absolute;
    top: calc(45px + 12px);
    background-color: white;
    border: 1px solid var(--border-primary);
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    z-index: 10;
}

.recipeListSectionWrapp .recipeList{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 32px;
}

.recipeListSectionWrapp .recipeList .recipe{
    position: relative;
    color: var(--text-primary);
    text-decoration: none;
    display: block;

}

.recipeListSectionWrapp .recipeList .recipe .imgWrapp{
    width: 100%;
    min-width: 163.5px;
    min-height: 163.5px;
    border-radius: 12px;
    border: 1px solid var(--border-primary);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.recipeListSectionWrapp .recipeList .recipe .imgWrapp .icon{
    position: absolute;
    top: 15px;
    left: 15px;
/*     height: 32px;
    width: 32px; */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background-color: var(--surface-yellow);
    padding: 7px;
    z-index: 5;
}

.recipeListSectionWrapp .recipeList .recipe:hover .imgWrapp{
    border: 1px solid var(--text-primary);
}

.recipeListSectionWrapp .recipeList .recipe .imgWrapp img{
    position: relative;
    width: 100%;
    z-index: 4;
}

.recipeListSectionWrapp .recipeList .recipe .info{
    margin: 14px 0px;
    width: 100%;
}

.recipeListSectionWrapp .recipeList .recipe .info h3{
    font-size: 16px;
}

.recipeListSectionWrapp .recipeList .recipe .info p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 4px;
}

@media screen and (max-width:1280px) {
    .recipeListSectionWrapp{
        padding: 20px 16px;
        padding-bottom: 100px;
    }
}

@media screen and (max-width:1060px) {
    .recipeListSectionWrapp{
        padding: 20px 16px;
        padding-bottom: 100px;
    }

    .recipeListSectionWrapp .recipeList{
        grid-template-columns: 1fr 1fr 1fr;
    }

    .recipeListSectionWrapp .recipeList .recipe .info{
        margin-bottom: 0px;
    }
}

@media screen and (max-width:700px) {
    .recipeListSectionWrapp .recipeList{
        column-gap: 16px;
        row-gap: 32px;
    }
}

@media screen and (max-width:650px) {
    .recipeListSectionWrapp .recipeList{
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width:530px) {
    .recipeListSectionWrapp .recipeListFilterWrapp{
        display: none;
    }

    .recipeListSectionWrapp .recipeListFilterWrappMobile{
        display: block;
        margin-bottom: 16px;
    }

    .recipeListSectionWrapp .sectionHeadWrapp{
        margin-bottom: 16px;
        margin-top: 0px;
    }

    .recipeListSectionWrapp .recipeListFilterWrappMobile.show .selectList{
        display: flex;
    }

    .recipeListSectionWrapp .recipeListFilterWrappMobile.show .selected svg{
        transform: rotate(180deg);
    }
}


@media screen and (max-width:370px) {
    .recipeListSectionWrapp .recipeList .recipe .imgWrapp{
        min-width: 123.5px;
        min-height: 123.5px;
    }
}

.recipeListSectionWrapp  .loadMoreSection{
    margin-top: 48px;
    border-top: 1px solid var(--border-primary);
    padding-top: 30px;
    display: grid;
    grid-template-columns: 0.3fr 1fr 0.3fr;
}

.recipeListSectionWrapp  .loadMoreSection a.backTop{
    color: var(--text-primary);
    text-align: right;
    width: fit-content;
    margin-left: auto;
    margin-right: 0;
}

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

    .recipeListSectionWrapp  .loadMoreSection{
        display: block;
    }
    .recipeListSectionWrapp  .loadMoreSection a.backTop{
        display: none;
    }
}



/* Recipe - Normal */

.recipeSectionWrapp{
    width: 100%;
    padding-top: 32px;
    margin-bottom: 100px;
}

.recipeSectionWrapp .recipeMainWrapp{
    display: flex;
    gap: 32px;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-primary);
    padding-bottom: 10px;
    margin-bottom: 32px;
}

/* .recipeSectionWrapp .sectionHead .titleInput,
.recipeSectionWrapp.editMode .sectionHead h1.recipeTitle{
    display: none;
}

.recipeSectionWrapp.editMode .sectionHead .titleInput,
.recipeSectionWrapp .sectionHead h1.recipeTitle{
    display: block;
}
.recipeSectionWrapp.editMode .sectionHead .titleInput{
    margin-top: 16px;
    width: 100%;
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    padding: 10px 24px;
    line-height: 120%;
}

.recipeSectionWrapp.editMode .sectionHead .titleInput input{
    font-size: 32px;
    font-family: 'VolteSemibold', 'sans-serif';
    width: 100%;
    outline: none;
    border: none;
    color: var(--text-primary);
} */

.recipeSectionWrapp .recipeMainWrapp .recipeInfo .recipeBadge{
    margin-top: 16px;
}

.recipeSectionWrapp .recipeMainWrapp .recipeInfo .recipeBadge p{
    width: fit-content;
    padding: 2px 4px;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'VolteSemibold', 'sans-serif';
    color: white;
    background-color: var(--surface-dark);
}

.recipeSectionWrapp .recipeMainWrapp .recipeInfo .basicInfo{
    margin: 32px 0px;
    display: flex;
    gap: 32px;
    max-width: 625px;
}

.recipeSectionWrapp .recipeMainWrapp .recipeInfo .basicInfo .imgWrapp{
    width: 231px;
    height: 231px;
    min-width: 231px;
    min-height: 231px;
    background-color: var(--border-primary);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.recipeSectionWrapp .recipeMainWrapp .recipeInfo .basicInfo .imgWrapp img{
    width: auto;
    height: auto;
    z-index: 8;
    position: relative;
}

.recipeSectionWrapp .recipeMainWrapp .recipeInfo .basicInfo .imgWrapp .iconWrapp{
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.recipeSectionWrapp .recipeMainWrapp .recipeInfo .basicInfo .descWrapp .descHead{
    font-size: 18px;
    display: flex;
    gap: 6px;
    margin-bottom: 6px;
}

.recipeSectionWrapp .recipeMainWrapp .recipeInfo .basicInfo .descWrapp p.desc,
.recipeSectionWrapp .recipeMainWrapp .recipeInfo .basicInfo .descWrapp div.desc {
    font-size: 16px;
    line-height: 140%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 8;
    overflow: hidden;
    margin-bottom: 16px;
}

.recipeSectionWrapp .recipeMainWrapp .recipeInfo .basicInfo .descWrapp p.desc.expanded,
.recipeSectionWrapp .recipeMainWrapp .recipeInfo .basicInfo .descWrapp div.desc.expanded {
    display: block;
}

.recipeSectionWrapp .recipeMainWrapp .recipeInfo .basicInfo .descWrapp p.desc.expanded ~ .showMore,
.recipeSectionWrapp .recipeMainWrapp .recipeInfo .basicInfo .descWrapp div.desc.expanded ~ .showMore {
    display: none;
}

.recipeSectionWrapp .recipeMainWrapp .recipeInfo .basicInfo .descWrapp .showMore{
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    width: fit-content;
}

.recipeSectionWrapp .recipeMainWrapp .recipeInfo .basicInfo .descWrapp .showMore svg{
    margin-top: 3px;
}

.recipeSectionWrapp .recipeMainWrapp .recipeInfo .basicInfo .descWrapp .showMore p{
    text-decoration: underline;
}

.recipeSectionWrapp .recipeMainWrapp .settingsWrapp{
    max-width: 362px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.recipeSectionWrapp .recipeMainWrapp .settingsWrapp .first{
    width: 100%;
    background-color: var(--surface-dark);
    border-radius: 12px;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: white;
}

.recipeSectionWrapp .recipeMainWrapp .settingsWrapp .first .setUp{
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.recipeSectionWrapp .recipeMainWrapp .settingsWrapp .first .setUp .name{
    font-family: 'VolteSemibold', 'sans-serif';
    line-height: 140%;
}

.recipeSectionWrapp .recipeMainWrapp .settingsWrapp .first .setUp .amountWrapp svg{
    cursor: pointer;
}

.recipeSectionWrapp .recipeMainWrapp .settingsWrapp .first .setUp .amountWrapp,
.recipeSectionWrapp .recipeMainWrapp .settingsWrapp .first .setUp .price{
    background-color: white;
    border: 1px solid var(--border-primary);
    height: 36px;
    width: 121px;
    padding: 7px 11px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: space-between;
    gap: 4px;
    color: var(--text-primary);
}

.recipeSectionWrapp .recipeMainWrapp .settingsWrapp .first .setUp .price{
    justify-content: center;
}

.recipeSectionWrapp .recipeMainWrapp .settingsWrapp .first .setUp .price input{
    background-color: none;
    outline: none;
    border: none;
    width: 100%;
    text-align: center;
    font-size: 16px;
}

.recipeSectionWrapp .recipeMainWrapp .settingsWrapp .switcherWrapp{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 4px;
    gap: 8px;
    line-height: 140%;
}

.recipeSectionWrapp .recipeMainWrapp .settingsWrapp .switcherWrapp .switcher{
    background-color: var(--border-primary);
    width: 36px;
    height: 22px;
    cursor: pointer;
    position: relative;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 3px;
}

.recipeSectionWrapp .recipeMainWrapp .settingsWrapp .switcherWrapp .switcher.active{
    background-color: var(--primary-color);
    justify-content: flex-end;
}

.recipeSectionWrapp .recipeMainWrapp .settingsWrapp .switcherWrapp .switcher .circle{
    width: 16px;
    height: 16px;
    background-color: white;
    border-radius: 999px;
}

.recipeSectionWrapp .recipeMainWrapp .settingsWrapp .recipeEconomy{
    background-color: var(--surface-smoke);
    padding-top: 16px;
    border-radius: 12px;
    line-height: 140%;
}

.recipeSectionWrapp .recipeMainWrapp .settingsWrapp .recipeEconomy h3{
    font-size: 18px;
    margin-bottom: 12px;
    padding: 0px 20px;
}

.recipeSectionWrapp .recipeMainWrapp .settingsWrapp .recipeEconomy .data{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
    padding: 0px 20px;
}

.recipeSectionWrapp .recipeMainWrapp .settingsWrapp .recipeEconomy .data:first-of-type p{
    text-align: right;
    margin-bottom: 6px;
}

.recipeSectionWrapp .recipeMainWrapp .settingsWrapp .recipeEconomy .data p{
    color: var(--text-secondary);
    font-size: 14px;
}

.recipeSectionWrapp .recipeMainWrapp .settingsWrapp .recipeEconomy .data span{
    text-align: right;
}

.recipeSectionWrapp .recipeMainWrapp .settingsWrapp .recipeEconomy .line{
    height: 1px;
    width: auto;
    margin: 6px 20px;
    background-color: var(--border-primary);
}

.recipeSectionWrapp .recipeMainWrapp .settingsWrapp .recipeEconomy .data.economyFoot{
    background-color: var(--surface-green);
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
    padding-top: 16px;
    padding-bottom: 16px;
    color: white;
    margin-top: 8px;
}

.recipeSectionWrapp .recipeMainWrapp .settingsWrapp .recipeEconomy .data.economyFoot p{
    color: white;
}


.recipeSectionWrapp .recipeMainWrapp .settingsWrapp .recipeEconomy .data.economyFoot span.special{
    font-family: 'VolteSemibold', 'sans-serif';
}

/* Akcie - Recept */

.recipeSectionWrapp .hoverPopErrMessWrapp{
    position: absolute;
    bottom: calc(18px + 12px);
    max-width: 246px;
    width: 100%;
    z-index: 10;
    display: none;
}

.recipeSectionWrapp .hoverPopErrMessWrapp .popErrMessWrapp p{
    background-color: #343332;
    width: 100%;
    color: white;
    font-size: 12px;
    padding: 16px;
    text-align: center;
    border-radius: 12px;
    padding-top: 12px;
    line-height: normal;
    z-index: 12;
    position: relative;
}

.recipeSectionWrapp .hoverPopErrMessWrapp .popErrMessWrapp .triangel{
    width: 39.523px;
    height: 39.523px;
    transform: rotate(45deg);
    background-color: #343332;
    position: absolute;
    z-index: 11;
    bottom: 0px;
    right: 30%;
    border-radius: 4px;
}

.recipeSectionWrapp .actionsWrapp{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 32px;
}

.recipeSectionWrapp .actionsWrapp .simpleActions{
    display: flex;
    align-items: center;
    gap: 24px;
}

.recipeSectionWrapp .actionsWrapp .simpleActions p{
    text-decoration: underline;
    color: var(--text-primary);
    cursor: pointer;
}

.recipeSectionWrapp .actionsWrapp .simpleActions p.disabled{
    color: var(--text-secondary);
}

.recipeSectionWrapp .actionsWrapp .simpleActions .videoTour{
    padding: 15px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    line-height: 100%;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid var(--text-secondary);
    cursor: pointer;
}

.recipeSectionWrapp .actionsWrapp .simpleActions .videoTour p{
    text-decoration: none;
    color: var(--text-secondary);
}

.recipeSectionWrapp .actionsWrapp .firstActions{
    display: flex;
    background-color: var(--surface-smoke);
    padding: 12px;
    gap: 24px;
    align-items: center;
    border-radius: 8px;
}

.recipeSectionWrapp .actionsWrapp .firstActions a{
    color: var(--text-primary);
}

.recipeSectionWrapp .actionsWrapp .firstActions .action{
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: underline;
    cursor: pointer;
}

.recipeSectionWrapp .actionsWrapp .firstActions .action .icon{
    padding: 7px;
    background-color: var(--text-primary);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipeSectionWrapp .actionsWrapp .firstActions .action .icon svg{
    min-width: 12px;
    min-height: 12px;
}

.recipeSectionWrapp .actionsWrapp .firstActions .action.disabled{
    color: var(--border-primary);
}

.recipeSectionWrapp .actionsWrapp .firstActions .action.disabled .icon{
    background-color: var(--border-primary);
}

.recipeSectionWrapp .actionsWrapp .firstActions .action.disabled:hover .hoverPopErrMessWrapp{
    display: block;
}

.recipeSectionWrapp .actionsWrapp .simpleActions .firstActionsWrapp{
display: none;
}


/* List Wrapp */

.recipeSectionWrapp .itemsListWrapp{
    width: 100%;
}

.recipeSectionWrapp .itemsListWrapp h2{
    margin-bottom: 18px;
}

.recipeSectionWrapp .itemsListWrapp .itemsList{
    display: flex;
    flex-direction: column;
}

.recipeSectionWrapp .itemsListWrapp .itemsList .item{
    padding: 12px 10px;
    border-bottom: 1px solid var(--border-primary);
}

.recipeSectionWrapp .itemsListWrapp .itemsList .head,
.recipeSectionWrapp .itemsListWrapp .itemsList .item{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
}

.recipeSectionWrapp .itemsListWrapp .itemsList .head{
    font-size: 12px;
    padding: 0px 10px;
    text-align: center;
}

.recipeSectionWrapp .itemsListWrapp .itemsList .head .itemInfo,
.recipeSectionWrapp .itemsListWrapp .itemsList .item .itemInfo{
    min-width: 432px;
}

.recipeSectionWrapp .itemsListWrapp .itemsList .head .itemInfoWrapp,
.recipeSectionWrapp .itemsListWrapp .itemsList .item .itemInfoWrapp{
    display: flex;
    align-items: center;
    gap: 20px;
}

.recipeSectionWrapp .itemsListWrapp .itemsList .head .weightWrapp,
.recipeSectionWrapp .itemsListWrapp .itemsList .item .weightWrapp{
    display: flex;
    position: relative;
    gap: 3px;
    width: 108px;
}

.recipeSectionWrapp .itemsListWrapp .itemsList .head .weightWrapp:hover .hoverPopErrMessWrapp{
    display: block;
}

.recipeSectionWrapp .itemsListWrapp .itemsList .head .weightWrapp:hover .hoverPopErrMessWrapp .triangel{
    right: 10%;
}

.recipeSectionWrapp .itemsListWrapp .itemsList .head .priceMj,
.recipeSectionWrapp .itemsListWrapp .itemsList .item .priceMj{
    width: 71px;
}

.recipeSectionWrapp .itemsListWrapp .itemsList .head .amount,
.recipeSectionWrapp .itemsListWrapp .itemsList .item .amount{
    width: 121px;
    text-align: center;
}

.recipeSectionWrapp .itemsListWrapp .itemsList .head .price,
.recipeSectionWrapp .itemsListWrapp .itemsList .item .price{
    width: 145px;
}

.recipeSectionWrapp .itemsListWrapp .itemsList .item .itemInfo{
    display: flex;
    gap: 12px;
}

.recipeSectionWrapp .itemsListWrapp .itemsList .item .itemInfo h3{
    font-size: 16px;
}

.recipeSectionWrapp .itemsListWrapp .itemsList .item .itemInfo .imgWrapp{
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid var(--border-primary);
    border-radius: 4px;
}

.recipeSectionWrapp .itemsListWrapp .itemsList .item .itemInfo .imgWrapp img{
    width: 100%;
    height: auto;
}

.recipeSectionWrapp .itemsListWrapp .itemsList .item .itemInfo .info{
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.recipeSectionWrapp .itemsListWrapp .itemsList .item .itemInfo .info .name{
    font-size: 16px;
    display: flex;
    gap: 6px;
    align-items: center;
    line-height: 140%;
}

.recipeSectionWrapp .itemsListWrapp .itemsList .item .itemInfo .info .name svg{
    min-width: 16px;
    min-height: 16px;
}

.recipeSectionWrapp .itemsListWrapp .itemsList .item .itemInfo .info .descWrapp{
    font-size: 12px;
    display: flex;
    gap: 4px;

}

.recipeSectionWrapp .itemsListWrapp .itemsList .item .itemInfo .info .descWrapp .stockWrapp{
    display: flex;
    gap: 4px;
    align-items: center;
}

.recipeSectionWrapp .itemsListWrapp .itemsList .item .itemInfo .info .descWrapp .stockWrapp .ball{
    width: 8px;
    height: 8px;
    min-width: 8px;
    min-height: 8px;
    border-radius: 999px;
}

.recipeSectionWrapp .itemsListWrapp .itemsList .item .itemInfo .info .descWrapp .stockWrapp.inStock .ball{
    background-color: var(--surface-green);
}

.recipeSectionWrapp .itemsListWrapp .itemsList .item .itemInfo .info .descWrapp .stockWrapp.outStock .ball{
    background-color: var(--surface-red);
}

.recipeSectionWrapp .itemsListWrapp .itemsList .item .itemInfo .info .descWrapp .stockWrapp.onOrder .ball{
    background-color: var(--surface-yellow);
}

.recipeSectionWrapp .itemsListWrapp .itemsList .item .weightWrapp .weightInput{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    padding: 4px;
    padding-left: 8px;
    border-radius: 8px;
    border: 1px solid transparent;
}

.recipeSectionWrapp .itemsListWrapp .itemsList .item .weightWrapp .weightInput .weightInputSmall{
    align-items: center;
    gap: 2px;
    display: none;
}

.recipeSectionWrapp .itemsListWrapp .itemsList .item .weightWrapp .weightInput input{
    background-color: none;
    border: none;
    outline: none;
    width: 100%;
    text-align: right;
}

.recipeSectionWrapp .itemsListWrapp .itemsList .item .weightWrapp.editOpen .weightInput{
    border: 1px solid var(--primary-color);
    outline: 3px solid rgba(243, 146, 0, 0.30);
}

.recipeSectionWrapp .itemsListWrapp .itemsList .item .weightWrapp .save,
.recipeSectionWrapp .itemsListWrapp .itemsList .item .weightWrapp .edit{
    padding: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    cursor: pointer;
    background-color: var(--surface-smoke);
}

.recipeSectionWrapp .itemsListWrapp .itemsList .item .weightWrapp .save{
    background-color: var(--surface-yellow);
    display: none;
}

.recipeSectionWrapp .itemsListWrapp .itemsList .item .weightWrapp.editOpen .save,
.recipeSectionWrapp .itemsListWrapp .itemsList .item .weightWrapp.editOpen .weightInputSmall{
    display: flex;
}

.recipeSectionWrapp .itemsListWrapp .itemsList .item .weightWrapp .defValue{
    text-align: right;
}

.recipeSectionWrapp .itemsListWrapp .itemsList .item .weightWrapp.editOpen .edit,
.recipeSectionWrapp .itemsListWrapp .itemsList .item .weightWrapp.editOpen .defValue{
    display: none;
}

.recipeSectionWrapp .itemsListWrapp .itemsList .item .priceMj{
    text-align: right;
}

.recipeSectionWrapp .itemsListWrapp .itemsList .item .weightWrapp.changed{
    font-family: 'VolteSemibold', 'sans-serif';
}

.recipeSectionWrapp .itemsListWrapp .itemsList .item .amount .amountWrapp{
    width: 100%;
    border: 1px solid var(--border-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 11px;
    border-radius: 8px;
    font-size: 16px;
}

.recipeSectionWrapp .itemsListWrapp .itemsList .item .amount .amountWrapp.changed{
    border: 2px solid var(--text-secondary);
    font-family: 'VolteSemibold', 'sans-serif';
}

.recipeSectionWrapp .itemsListWrapp .itemsList .item .amount .amountWrapp svg{
    cursor: pointer;
}

.recipeSectionWrapp .itemsListWrapp .itemsList .item .price p{
    font-family: 'VolteSemibold', 'sans-serif';
}

.recipeSectionWrapp .itemsListWrapp .itemsList .item .price .desktop{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.recipeSectionWrapp .itemsListWrapp .itemsList .item .price .desktop .shopping{
    width: 54px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--surface-green);
    cursor: pointer;
    border-radius: 8px;
    padding: 15px 24px;
}

.recipeSectionWrapp .itemsListWrapp .itemsList .item .price .desktop .shopping svg{
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
}

.recipeSectionWrapp .itemsListWrapp .itemsList .item .nameWrapp,
.recipeSectionWrapp .itemsListWrapp .itemsList .item .mobileName{
    display: none;
}

.recipeSectionWrapp .itemsListWrapp .itemsList .item .price .mobile{
    display: none;
}

.recipeSectionWrapp .itemsListWrapp.optionalList{
    margin-top: 32px;
    margin-bottom: 32px;
}

.recipeSectionWrapp .finalSumWrapp{
    max-width: 645px;
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 12px 14px;
    padding-left: 20px;
    border-radius: 12px;
    border: 2px solid var(--text-primary);
    box-shadow: 1px 4px 6px rgba(0, 0, 0, 0.20);
    margin-left: auto;
    margin-right: 0px;
}

.recipeSectionWrapp .finalSumWrapp .text{
    display: grid;
    column-gap: 40px;
    grid-template-columns: 1fr 1fr;
}

.recipeSectionWrapp .finalSumWrapp .text h2:nth-child(2),
.recipeSectionWrapp .finalSumWrapp .text p:nth-child(4){
    text-align: right;
    width: 100%;
}

.recipeSectionWrapp .finalSumWrapp .text h2{
    font-size: 26px;
}

.recipeSectionWrapp .finalSumWrapp .text p:nth-child(1){
    color: var(--text-primary);
    font-size: 16px;
    line-height: 140%;
}

.recipeSectionWrapp .finalSumWrapp .text p:nth-child(4){
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 140%;
    white-space: nowrap;
}

.recipeSectionWrapp .finalSumWrapp .cart{
    width: 100%;
    display: flex;
    padding: 15px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    background-color: var(--surface-green);
    color: white;
    font-family: 'VolteSemibold', 'sans-serif';
    cursor: pointer;
}


@media screen and (max-width:1280px) {
    .recipeSectionWrapp{
        padding: 20px 16px;
    }
}

@media screen and (max-width:1000px) {
    .recipeSectionWrapp .recipeMainWrapp{
        flex-direction: column;
        align-items: center;
        padding-bottom: 32px;
    }

    .recipeSectionWrapp .actionsWrapp{
        justify-content: center;
    }
    .recipeSectionWrapp .actionsWrapp .simpleActions{
        flex-direction: column;
        gap: 10px;
        max-width: 343px;
        width: 100%;
    }

    .recipeSectionWrapp .actionsWrapp .firstActions.desktop{
        display: none;
    }

    .recipeSectionWrapp .actionsWrapp .simpleActions .firstActionsWrapp{
        display: flex;
        flex-direction: column;
        gap: 5px;
        margin-bottom: 6px;
    }

    .recipeSectionWrapp .actionsWrapp .simpleActions .firstActionsWrapp .actionsSelectShow{
        width: 100%;
        border-radius: 8px;
        border: 1px solid var(--border-primary);
        font-family: 'VolteSemibold', 'sans-serif';
        display: flex;
        align-items: center;
        gap: 10px;
        justify-content: center;
        padding: 15px 24px;
    }

    .recipeSectionWrapp .actionsWrapp .simpleActions .videoTour{
        width: 100%;
    }

    .recipeSectionWrapp .actionsWrapp .simpleActions .firstActionsWrapp{
        width: 100%;
    }

    .recipeSectionWrapp .actionsWrapp .simpleActions .firstActionsWrapp .actionsSelectShow svg{
        rotate: 180deg;
    }

    .recipeSectionWrapp .actionsWrapp .simpleActions .firstActionsWrapp .actionsSelectShow p{
        text-decoration: none;
    }

    .recipeSectionWrapp .actionsWrapp .simpleActions .firstActionsWrapp.active .actionsSelectShow svg{
        rotate: 0deg;
    }

    .recipeSectionWrapp .actionsWrapp .simpleActions .firstActionsWrapp .firstActions{
        display: none;
    }

    .recipeSectionWrapp .actionsWrapp .simpleActions .firstActionsWrapp.active .firstActions{
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 20px;
        gap: 12px;
    }

    .recipeSectionWrapp .recipeMainWrapp .recipeInfo .basicInfo{
        margin-bottom: 0px;
        margin-left: auto;
        margin-right: auto;
    }

    .recipeSectionWrapp .recipeMainWrapp .recipeInfo{
        width: 100%;
    }

    .recipeSectionWrapp .itemsListWrapp .itemsList .head,
    .recipeSectionWrapp .itemsListWrapp .itemsList .item,
    .recipeSectionWrapp .itemsListWrapp .itemsList .item .itemInfoWrapp{
        gap: 15px;
    }

    .recipeSectionWrapp .itemsListWrapp .itemsList .item{
        flex-direction: column;
        align-items: normal;
        padding: 16px 0px;
    }

    .recipeSectionWrapp .itemsListWrapp .itemsList .item .itemInfoWrapp{
        align-items: flex-start;
    }

    .recipeSectionWrapp .itemsListWrapp .itemsList .item .nameWrapp,
    .recipeSectionWrapp .itemsListWrapp .itemsList .item .mobileName{
        display: block;
        text-align: left;
    }

    .recipeSectionWrapp .itemsListWrapp .itemsList .item .priceMj,
    .recipeSectionWrapp .itemsListWrapp .itemsList .item .amount,
    .recipeSectionWrapp .itemsListWrapp .itemsList .item .weightWrapp{
        display: flex;
        width: 100%;
        justify-content: space-between;
        gap: 10px;
    }

    .recipeSectionWrapp .itemsListWrapp .itemsList .item .itemInfo{
        min-width: unset;
    }

    .recipeSectionWrapp .itemsListWrapp .itemsList .item .weightWrapp .nameWrapp{
        position: relative;
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .recipeSectionWrapp .itemsListWrapp .itemsList .item .weightWrapp .nameWrapp:hover .hoverPopErrMessWrapp{
        display: block;
        bottom: calc(18px + 15px);
    }

    .recipeSectionWrapp .itemsListWrapp .itemsList .item .amount .amountWrapp{
        max-width: 150px;
    }

    .recipeSectionWrapp .itemsListWrapp .itemsList .item .price .desktop{
        display: none;
    }

    .recipeSectionWrapp .itemsListWrapp .itemsList .item .price{
        width: 100%;
    }

    .recipeSectionWrapp .itemsListWrapp .itemsList .item .price .mobile{
        display: flex;
        width: 100%;
        gap: 10px;
        align-items: center;
        justify-content: center;
        padding: 15px 24px;
        background-color: var(--surface-green);
        border-radius: 8px;
        color: white;
    }
}

@media screen and (max-width:950px) {
    .recipeSectionWrapp .itemsListWrapp .itemsList .head div,
    .recipeSectionWrapp .itemsListWrapp .itemsList .head .weightWrapp,
    .recipeSectionWrapp .itemsListWrapp .itemsList .head p{
        display: none;
    }

    .recipeSectionWrapp .itemsListWrapp .itemsList .head{
        padding: 0px;
    }

    .recipeSectionWrapp .itemsListWrapp .itemsList .head .checkboxWrapp,
    .recipeSectionWrapp .itemsListWrapp .itemsList .head .checkboxWrapp .checkbox{
        display: flex;
    }

    .recipeSectionWrapp .itemsListWrapp h2{
        margin-bottom: 15px;
    }

    .recipeSectionWrapp .finalSumWrapp{
        flex-direction: column;
        gap: 24px;
        width: 100%;
        max-width: 100%;
    }

    .recipeSectionWrapp .finalSumWrapp .text{
        justify-content: space-between;
        width: 100%;
        gap: 0px;
    }

    .recipeSectionWrapp .finalSumWrapp .text p:nth-child(4){
        white-space: wrap;
    }
}

@media screen and (max-width:700px) {
    .recipeSectionWrapp .actionsWrapp .simpleActions{
        max-width: 100%;
    }
    .recipeSectionWrapp .recipeMainWrapp .settingsWrapp{
        max-width: 100%;
    }
}

@media screen and (max-width:600px) {
    .recipeSectionWrapp .recipeMainWrapp .recipeInfo .basicInfo{
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width:400px) {
    .recipeSectionWrapp .itemsListWrapp .itemsList .item .itemInfo .info .descWrapp{
        flex-direction: column;
    }
}


/* PopUps */

.recipeCopyWrappBg,
.recipeDeleteWrappBg{
    position: fixed;
    z-index: 1000;
    background-color: var(--popup-bg);
    width: 100vw;
    height: 100vh;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.recipeCopyWrappBg.recipeCopyWrappBgShow,
.recipeDeleteWrappBg.recipeDeleteWrappBgShow{
    display: flex;
}

.recipeCopyWrappBg .recipeCopyWrapp,
.recipeDeleteWrappBg .recipeDeleteWrapp{
    display: flex;
    max-width: 600px;
    width: 100%;
    padding: 24px 24px 16px 24px;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    background-color: var(--surface-smoke);
    border-radius: 12px;
}

.recipeCopyWrappBg .recipeCopyWrapp .contentBody{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.recipeCopyWrappBg .recipeCopyWrapp #hideRecipeCopyWrapp,
.recipeDeleteWrappBg .recipeDeleteWrapp #hideRecipeDeleteWrapp {
    text-decoration: underline;
    cursor: pointer;
}

.recipeCopyWrappBg .recipeCopyWrapp .contentBody h3{
    font-size: 26px;
    text-align: center;
}

.recipeCopyWrappBg .recipeCopyWrapp .contentBody .primary-btn{
    justify-content: center;
    width: 100%;
    text-align: center;
}

.recipeSectionWrapp .itemsListWrapp .itemsList .head .weightWrapp .hoverPopErrMessWrapp .popErrMessWrapp p,
.recipeSectionWrapp .itemsListWrapp .itemsList .item .weightWrapp .hoverPopErrMessWrapp .popErrMessWrapp p{
    min-width: 240px;
}

/* Odstránenie receptu */

.recipeDeleteWrappBg .recipeDeleteWrapp{
    max-width: 400px;
}

.recipeDeleteWrappBg .recipeDeleteWrapp .contentBody{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.recipeDeleteWrappBg .recipeDeleteWrapp .contentBody h3{
    font-size: 26px;
    text-align: center;
}

.recipeDeleteWrappBg .recipeDeleteWrapp .contentBody p{
    background-color: var(--surface-red);
    text-align: center;
    justify-content: center;
    margin-top: 4px;
    width: 100%;
}

.recipeDeleteWrappBg .recipeDeleteWrapp .contentBody svg{
    min-width: 24px;
    min-height: 24px;
}


/* Edit mode */

.recipeSectionWrapp .editMode .recipeMainWrapp .recipeInfo .basicInfo .imgWrapp:hover .iconWrapp{
    display: flex;
    cursor: pointer;
}

.recipeSectionWrapp.editMode .editMainControl{
    background-color: var(--yelow-100);
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4px;
    border-radius: 4px;
    margin-bottom: 32px;
}

.recipeSectionWrapp.editMode .editMainControl .title{
    display: flex;
    gap: 4px;
}

.recipeSectionWrapp.editMode .editMainControl .control{
    display: flex;
    align-items: center;
    gap: 12px;
}

.recipeSectionWrapp.editMode .editMainControl .control p{
    cursor: pointer;
}

.recipeSectionWrapp.editMode .editMainControl .control .cancel{
    font-size: 16px;
    text-decoration: underline;
    color: var(--text-primary);
}

.recipeSectionWrapp.editMode .editMainControl .control .save{
    padding: 10px 13px;
    background-color: var(--primary-color);
    color: white;
    font-family: 'VolteSemibold', 'sans-serif';
    border-radius: 8px;
}

.recipeSectionWrapp.editMode .sectionHead{
    max-width: 624px;
}

.recipeSectionWrapp.editMode .sectionHead .titleInput{
    margin-top: 16px;
    width: 100%;
    outline: none;
    border: none;
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    padding: 10px 24px;
    line-height: 120%;

    font-size: 32px;
    font-family: 'VolteSemibold', 'sans-serif';
    color: var(--text-primary);
}

.recipeSectionWrapp.editMode .recipeMainWrapp .recipeInfo .basicInfo .descWrapp .descHead .icon{
    padding: 7px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--surface-smoke);
    cursor: pointer;
}

.recipeSectionWrapp.editMode .recipeMainWrapp .recipeInfo .basicInfo .descWrapp .descHead .icon svg{
    min-width: 12px;
    min-height: 12px;
}

.recipeSectionWrapp.editMode .recipeMainWrapp .recipeInfo .imgWrapp:hover .iconWrapp{
    background-color: #49484775;
    display: flex;
    z-index: 10;
    cursor: pointer;
}

.recipeSectionWrapp.editMode .recipeMainWrapp .recipeInfo .imgWrapp.imgNull .iconWrapp{
    background-color: var(--border-primary);
    display: flex;
    z-index: 10;
}

.recipeSectionWrapp.editMode .recipeMainWrapp .recipeInfo .imgWrapp img{
    z-index: 9;
    position: relative;
}

.recipeSectionWrapp.editMode .setUpActions{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 32px;
}

.recipeSectionWrapp.editMode .setUpActions .first{
    max-width: 417px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.recipeSectionWrapp.editMode .setUpActions .first p.name{
    font-size: 12px;
}

.recipeSectionWrapp.editMode .setUpActions .first p.name span{
    color: var(--text-secondary);
}

.recipeSectionWrapp.editMode .setUpActions .first .controls{
    background-color: var(--surface-smoke);
    padding: 12px 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 8px;
}

.recipeSectionWrapp.editMode .setUpActions .first .controls .selectWrapp{
    width: 100%;
    position: relative;
}

.recipeSectionWrapp.editMode .setUpActions .first .controls .selectWrapp .selected{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: space-between;
    border-radius: 8px;
    border: 1px solid var(--border-primary);
    background-color: white;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 14px;
}

.recipeSectionWrapp.editMode .setUpActions .first .controls .selectWrapp .list{
    position: absolute;
    top: calc(32px + 4px);
    width: 100%;
    padding: 6px 12px;
    display: none;
    flex-direction: column;
    font-size: 14px;
    background-color: white;
    z-index: 10;
    border: 1px solid var(--border-primary);
    border-radius: 8px;
}

.recipeSectionWrapp.editMode .setUpActions .first .controls .selectWrapp.active .list{
    display: flex;
}

.recipeSectionWrapp.editMode .setUpActions .first .controls .selectWrapp .list p{
    padding: 5px 0px;
}

.recipeSectionWrapp.editMode .setUpActions .first .controls .saveChanges{
    display: flex;
    padding: 6px 12px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    font-size: 14px;
    color: white;
    background-color: var(--border-primary);
    border-radius: 8px;
    cursor: pointer;
}

.recipeSectionWrapp.editMode .setUpActions .first .controls .saveChanges.active{
    background-color: var(--border-primary);
}

.recipeSectionWrapp.editMode .setUpActions .second{
    display: flex;
    align-items: center;
    gap: 12px;
    align-items: flex-end;
}

.recipeSectionWrapp.editMode .setUpActions .second div{
    display: flex;
    cursor: pointer;
    height: 46px;
    padding: 15px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--text-secondary);
    border-radius: 8px;
}

.recipeSectionWrapp.editMode .itemsListWrapp .itemsList .item .weightWrapp .weightInput{
    outline: none;
    border: 1px solid var(--border-primary);
}



.recipeSectionWrapp.editMode .itemsListWrapp .itemsList .head,
.recipeSectionWrapp.editMode .itemsListWrapp .itemsList .item{
    justify-content: space-between;
}

.recipeSectionWrapp.editMode .itemsListWrapp .itemsList .head .price,
.recipeSectionWrapp.editMode .itemsListWrapp .itemsList .item .price{
    width: fit-content;
}


.recipeSectionWrapp.editMode .itemsListWrapp .itemsList .item .price .mobile{
    padding: 0;
    background-color: transparent;
    color: var(--text-primary);
    justify-content: space-between;
    gap: 10px;
    width: 100%;
}

.recipeSectionWrapp.editMode .itemsListWrapp .itemsList .item .price .mobile p:first-child{
    font-family: 'VolteRegular', sans-serif;
}

@media screen and (max-width:850px) {
    .recipeSectionWrapp.editMode .setUpActions{
        flex-direction: column-reverse;
        gap:32px;
        justify-content: center;
        align-items: center;
    }

    .recipeSectionWrapp.editMode .setUpActions .second{
        gap: 10px;
    }
}

@media screen and (max-width:1000px) {
    .recipeSectionWrapp.editMode .itemsListWrapp .itemsList .item .price{
        width: 100%;
    }
    .recipeSectionWrapp.editMode .itemsListWrapp .itemsList .item .price .mobile{
        display: flex;
    }
}

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

    .recipeSectionWrapp.editMode .setUpActions .second{
        flex-direction: column;
        align-items: normal;
    }
    .recipeSectionWrapp.editMode .setUpActions .second,
    .recipeSectionWrapp.editMode .setUpActions .first{
        width: 100%;
        max-width: 100%;
    }

}


/* Popupy */

.recipeEditModeWrappBg{
    position: fixed;
    width: 100vw;
    height: 100vh;
    display: none;
    padding: 16px;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    background-color: var(--popup-bg);
}

.recipeEditModeWrappBg.show{
    display: flex;
}

.recipeEditModeWrappBg .recipeAddItemsWrapp,
.recipeEditModeWrappBg .recipeCancelChangesWrapp,
.recipeEditModeWrappBg .recipeDescEditWrapp{
    background-color: white;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

.recipeEditModeWrappBg .recipeCancelChangesWrapp{
    gap: 20px;
    align-items: center;
    justify-content: center;
    max-width: 400px;
    padding: 24px;
    padding-bottom: 16px;
    width: 100%;
}

.recipeEditModeWrappBg .recipeCancelChangesWrapp h3{
    text-align: center;
    font-size: 26px;
}

.recipeEditModeWrappBg .recipeCancelChangesWrapp .desc{
    font-size: 14px;
    text-align: center;
}

.recipeEditModeWrappBg .recipeCancelChangesWrapp .desc span{
    font-family: 'VolteSemibold', 'sans-serif';
}

.recipeEditModeWrappBg .recipeCancelChangesWrapp .contentBody{
    width: 100%;
}

.recipeEditModeWrappBg .recipeCancelChangesWrapp .contentBody .primary-btn{
    width: 100%;
    text-align: center;
    justify-content: center;
}

.recipeEditModeWrappBg .recipeCancelChangesWrapp .contentBody .primary-btn.danger{
    background-color: var(--surface-red);
    margin-top: 10px;
    margin-bottom: 16px;
}

.recipeEditModeWrappBg .cancel{
    text-align: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    text-decoration: underline;
    cursor: pointer;
}

/* .recipeEditModeWrappBg#recipeAddItemsWrappBg{
    display: flex;
} */

.recipeEditModeWrappBg .recipeAddItemsWrapp{
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 16px;
    max-width: 1049px;
    width: 100%;
    max-height: 80vh;
}

.recipeEditModeWrappBg .recipeAddItemsWrapp .searchWrapper{
    margin: 32px 30px;
    margin-bottom: 16px;
    padding: 10px 12px;
    width: auto;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid var(--border-primary);
    height: 38px;
}

.recipeEditModeWrappBg .recipeAddItemsWrapp .searchWrapper svg{
    min-width: 16px;
    min-height: 16px;
}

.recipeEditModeWrappBg .recipeAddItemsWrapp .searchWrapper:focus-within{
    border: 1px solid var(--text-primary);
}

.recipeEditModeWrappBg .recipeAddItemsWrapp .searchWrapper .tags{
    display: flex;
    gap: 10px;
}

.recipeEditModeWrappBg .recipeAddItemsWrapp .searchWrapper .tags .tag{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 6px;
    padding-left: 12px;
    font-size: 14px;
    border: 1px solid var(--border-primary);
    border-radius: 4px;
}

.recipeEditModeWrappBg .recipeAddItemsWrapp .searchWrapper .tags .tag svg{
    min-width: 15px;
    min-height: 15px;
}

.recipeEditModeWrappBg .recipeAddItemsWrapp .searchWrapper input{
    background-color: transparent;
    outline: none;
    border: none;
    width: auto;
    font-size: 13px;
}

.recipeEditModeWrappBg .recipeAddItemsWrapp .contentBody{
    max-height: 100%;
    overflow-y: auto;
    margin-right: 6px;
    border-bottom: 1px solid var(--border-primary);
}

.recipeEditModeWrappBg .recipeAddItemsWrapp .contentBody::-webkit-scrollbar{
    width: 4px;
}
.recipeEditModeWrappBg .recipeAddItemsWrapp .contentBody::-webkit-scrollbar-thumb{
    border-radius: 99px;
    background-color: var(--border-primary);
}

.recipeEditModeWrappBg .recipeAddItemsWrapp .contentBody::-webkit-scrollbar-track{
    background: inherit;
}

.recipeEditModeWrappBg .recipeAddItemsWrapp .contentBody .filter{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recipeEditModeWrappBg .recipeAddItemsWrapp .contentBody .filter .tags{
    display: flex;
    gap: 6px;
    align-items: center;
    margin: 0px 30px;
}

.recipeEditModeWrappBg .recipeAddItemsWrapp .contentBody .filter .tags p{
    background-color: var(--surface-smoke);
    padding: 5px 10px;
    border-radius: 4px;
    color: var(--text-primary);
    cursor: pointer;
}

@media screen and (max-width:400px) {
    .recipeEditModeWrappBg .recipeAddItemsWrapp .contentBody .filter .tags p:nth-child(n+3) {
        display: none;
    }
}

.recipeEditModeWrappBg .recipeAddItemsWrapp .contentBody .filter .labels{
    padding: 0px 30px;
    display: flex;
    gap: 10px;
    position: relative;
}

.recipeEditModeWrappBg .recipeAddItemsWrapp .contentBody .filter .labels .whiteSpace{
    height: 40px;
    width: 44px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), white);
    display: none;
    position: absolute;
    right: 28px;
    z-index: 10;
}

.recipeEditModeWrappBg .recipeAddItemsWrapp .contentBody .filter .labels .labelsList{
    display: flex;
    gap: 10px;
    max-width: calc(100vw - 40px);
    overflow-x: auto;
}

.recipeEditModeWrappBg .recipeAddItemsWrapp .contentBody .filter .labels .labelsList::-webkit-scrollbar{
    height: 0px;
}

.recipeEditModeWrappBg .recipeAddItemsWrapp .contentBody .filter .labels .label,
.recipeEditModeWrappBg .recipeAddItemsWrapp .contentBody .filter .labels .badge{
    padding: 6px 10px;
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'VolteSemibold', 'sans-serif';
    font-size: 14px;
    cursor: pointer;
}

.recipeEditModeWrappBg .recipeAddItemsWrapp .contentBody .filter .labels .label img{
    height: 26px;
}

.recipeEditModeWrappBg .recipeAddItemsWrapp .contentBody .filter .labels .badge.brand{
    background-color: var(--yelow-100);
    border: none;
}

.recipeEditModeWrappBg .recipeAddItemsWrapp .contentBody .filter .labels .badge.cat{
    background-color: var(--blue-200);
    border: none;
}

.recipeEditModeWrappBg .recipeAddItemsWrapp .contentBody .itemsListResults{
    display: flex;
    flex-direction: column;
}

.recipeEditModeWrappBg .recipeAddItemsWrapp .contentBody .itemsListResults .item{
    padding: 12px 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--border-primary);
}

.recipeEditModeWrappBg .recipeAddItemsWrapp .contentBody .itemsListResults .item .mobileV{
    display: none;
}

.recipeEditModeWrappBg .recipeAddItemsWrapp .contentBody .itemsListResults .item .itemWrapp{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.recipeEditModeWrappBg .recipeAddItemsWrapp .contentBody .itemsListResults .item .itemWrapp .basicInfo{
    display: flex;
    gap: 12px;
}

.recipeEditModeWrappBg .recipeAddItemsWrapp .contentBody .itemsListResults .item .itemWrapp .basicInfo .imgWrapp{
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-primary);
    overflow: hidden;
    border-radius: 4px;
}

.recipeEditModeWrappBg .recipeAddItemsWrapp .contentBody .itemsListResults .item .itemWrapp .basicInfo .imgWrapp img{
    width: 100%;
}

.recipeEditModeWrappBg .recipeAddItemsWrapp .contentBody .itemsListResults .item .itemWrapp .basicInfo .info{
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.recipeEditModeWrappBg .recipeAddItemsWrapp .contentBody .itemsListResults .item .itemWrapp .basicInfo .info .name{
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
}

.recipeEditModeWrappBg .recipeAddItemsWrapp .contentBody .itemsListResults .item .itemWrapp .basicInfo .info .descWrapp{
    display: flex;
    gap: 4px;
    align-items: center;
}

.recipeEditModeWrappBg .recipeAddItemsWrapp .contentBody .itemsListResults .item .itemWrapp .basicInfo .info .descWrapp .stockBall{
    width: 8px;
    height: 8px;
    min-width: 8px;
    min-height: 8px;
    border-radius: 999px;
}

.recipeEditModeWrappBg .recipeAddItemsWrapp .contentBody .itemsListResults .item .itemWrapp .basicInfo .info .descWrapp .stockBall.inStock{
    background-color: var(--surface-green);
}

.recipeEditModeWrappBg .recipeAddItemsWrapp .contentBody .itemsListResults .item .itemWrapp .basicInfo .info .descWrapp .stockBall.outStock{
    background-color: var(--surface-red);
}

.recipeEditModeWrappBg .recipeAddItemsWrapp .contentBody .itemsListResults .item .itemWrapp .basicInfo .info .descWrapp .stockBall.onOrder{
    background-color: var(--surface-yellow);
}

.recipeEditModeWrappBg .recipeAddItemsWrapp .contentBody .itemsListResults .item .itemWrapp .second{
    display: flex;
    gap: 16px;
    align-items: center;
}

.recipeEditModeWrappBg .recipeAddItemsWrapp .contentBody .itemsListResults .item .itemWrapp .second .price{
    font-family: 'VolteSemibold', 'sans-serif';
    width: 90px;
    text-align: right;
}

.recipeEditModeWrappBg .recipeAddItemsWrapp .contentBody .itemsListResults .item .itemWrapp .second .addWrapper{
    position: relative;
    margin-right: 16px;
}

.recipeEditModeWrappBg .recipeAddItemsWrapp .contentBody .itemsListResults .item .itemWrapp .second .addWrapper .add{
    display: flex;
    width: 54px;
    height: 36px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    background-color: var(--surface-yellow);
    border-radius: 8px;
    cursor: pointer;
}

.recipeEditModeWrappBg .recipeAddItemsWrapp .contentBody .itemsListResults .item .itemWrapp .second .addWrapper .options{
    position: absolute;
    top: 40px;
    right: -10px;
    min-width: 240px;
    background-color: white;
    border-radius: 8px;
    border: 1px solid var(--border-primary);
    z-index: 10;
    display: none;
}

.recipeEditModeWrappBg .recipeAddItemsWrapp .contentBody .itemsListResults .item .itemWrapp .second .addWrapper.active .options{
    display: block;
}

.recipeEditModeWrappBg .recipeAddItemsWrapp .contentBody .itemsListResults .item .itemWrapp .second .addWrapper .options p,
.recipeEditModeWrappBg .recipeAddItemsWrapp .contentBody .itemsListResults .item .itemWrapp .second .addWrapper .options h4{
    padding: 8px 12px;
    font-size: 16px;
}

.recipeEditModeWrappBg .recipeAddItemsWrapp .contentBody .itemsListResults .item .itemWrapp .second .addWrapper .options h4:hover{
    background-color: var(--blue-200);
    cursor: pointer;
}

@media screen and (max-width:850px) {
    .recipeEditModeWrappBg .recipeAddItemsWrapp .contentBody .itemsListResults .item .itemWrapp .addWrapper,
    .recipeEditModeWrappBg .recipeAddItemsWrapp .contentBody .itemsListResults .item .itemWrapp .id{
        display: none;
    }

    .recipeEditModeWrappBg .recipeAddItemsWrapp .contentBody .itemsListResults .item .mobileV{
        display: none;
    }

    .recipeEditModeWrappBg .recipeAddItemsWrapp .contentBody .itemsListResults .item .mobileV.active{
        display: block;
    }

    .recipeEditModeWrappBg .recipeAddItemsWrapp .contentBody .itemsListResults .item .mobileV p{
        font-size: 12px;
        padding: 10px 12px;
    }

    .recipeEditModeWrappBg .recipeAddItemsWrapp .contentBody .itemsListResults .item .mobileV h4{
        padding: 10px 12px;
        cursor: pointer;
    }

    .recipeEditModeWrappBg .recipeAddItemsWrapp .contentBody .itemsListResults .item{
        padding: 0px;
    }

    .recipeEditModeWrappBg .recipeAddItemsWrapp .contentBody .itemsListResults .item .itemWrapp{
        padding: 12px 16px;
    }

    .recipeEditModeWrappBg .recipeAddItemsWrapp .contentBody .itemsListResults .item .itemWrapp .second .price{
        width: fit-content;
    }
}

@media screen and (max-width:500px) {
    .recipeEditModeWrappBg .recipeAddItemsWrapp .contentBody .itemsListResults .item .itemWrapp .basicInfo .info .descWrapp p{
        display: none;
    }

    .recipeEditModeWrappBg .recipeAddItemsWrapp .contentBody .itemsListResults .item .itemWrapp .basicInfo .info .name svg{
        display: none;
    }

    .recipeEditModeWrappBg .recipeAddItemsWrapp .contentBody .itemsListResults .item .itemWrapp .basicInfo .info .descWrapp p:nth-child(2){
        display: block;
    }
}

@media screen and (max-width:430px) {
    .recipeEditModeWrappBg .recipeAddItemsWrapp .contentBody .itemsListResults .item .itemWrapp .basicInfo .info .descWrapp p{
        font-size: 12px;
    }

    .recipeEditModeWrappBg .recipeAddItemsWrapp .contentBody .itemsListResults .item .itemWrapp .basicInfo .info h3{
        font-size: 13px;
        line-height: 110%;
    }
}


.recipeEditModeWrappBg .recipeAddItemsWrapp .nothingFound{
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    font-size: 32px;
}

@media screen and (max-width:500px) {
    .recipeEditModeWrappBg .recipeAddItemsWrapp .nothingFound{
        font-size: 26px;
    }
}

.recipeEditModeWrappBg .recipeDescEditWrapp{
    max-width: 600px;
    min-height: 40vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    padding-bottom: 16px;
    background-color: var(--surface-smoke);
}

.recipeEditModeWrappBg .recipeDescEditWrapp .contentBody{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.recipeEditModeWrappBg .recipeDescEditWrapp .contentBody .textWrapp{
    height: auto;
    background-color: white;
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    overflow: hidden;
    padding: 12px;
}

.recipeEditModeWrappBg .recipeDescEditWrapp .contentBody .textWrapp .controls{
    display: flex;
    align-items: center;
    gap: 4px;
}

.recipeEditModeWrappBg .recipeDescEditWrapp .contentBody .textWrapp textarea{
    height: 100%;
    min-height: 30vh;
    outline: none;
    border: none;
}


.recipeEditModeWrappBg .recipeDescEditWrapp .contentBody .textWrapp textarea::-webkit-scrollbar{
    width: 4px;
}
.recipeEditModeWrappBg .recipeDescEditWrapp .contentBody .textWrapp textarea::-webkit-scrollbar-thumb{
    border-radius: 99px;
    background-color: var(--border-primary);
}

.recipeEditModeWrappBg .recipeDescEditWrapp .contentBody .textWrapp textarea::-webkit-scrollbar-track{
    background: inherit;
}

.recipeEditModeWrappBg .recipeDescEditWrapp .contentBody .primary-btn{
    width: 100%;
    justify-content: center;
    text-align: center;
}