.marketplace-wrap{
    padding:80px 0;
    background-color:var(--gray-bg)
}
.marketplace__headline{
    padding-bottom:48px;
    font-weight:600;
    font-size:42px;
    text-align:center;
    color:var(--text)
}
.marketplace__form{
    position:relative;
    width:100%;
    max-width:630px;
    margin:0 auto
}
.marketplace__form-btn{
    position:absolute;
    top:5px;
    right:5px;
    display:flex;
    align-items:center;
    justify-content:center;
    white-space:nowrap;
    border-radius:4px;
    padding:0 24px;
    height:100%;
    max-height:54px;
    box-shadow:0 2px 2px 0 rgba(0,0,0,.15);
    background-color:var(--dark-blue);
    font-weight:700;
    font-size:16px;
    text-transform:uppercase;
    text-align:center;
    color:var(--white)!important;
    border:none
}
.marketplace__field{
    border:1px solid var(--grey);
    border-radius:5px;
    padding:0 130px 0 58px;
    width:100%;
    height:64px;
    background-color:var(--white)
}
.marketplace__field::placeholder{
    font-weight:400;
    font-size:18px;
    line-height:1.33;
    color:var(--input-text)
}
.marketplace__field:focus{
    border-color:var(--dark-blue)
}
.marketplace__field-ico{
    position:absolute;
    top:20px;
    left:24px
}
.marketplace__field-ico svg{
    height:100%;
    width:100%;
    max-width:17px;
    max-height:17px;
    min-width:17px;
    min-height:17px;
    object-fit:contain
}
.marketplace__content{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:20px
}
.marketplace__content-wrap{
    display:flex;
    gap:20px;
    padding-top:48px
}
.marketplace__nav-wrap{
    padding:24px 13px 24px 24px;
    border-radius:8px;
    width:100%;
    height:fit-content;
    min-width:305px;
    box-shadow:0 8px 20px 0 rgba(0,0,0,.05);
    background-color:var(--white)
}
.marketplace__nav-head{
    padding-bottom:16px;
    font-weight:700;
    font-size:18px;
    color:var(--text)
}
.marketplace__nav-body{
    display:flex;
    flex-direction:column;
    gap:16px 0;
    width:100%;
    list-style:none;
    padding-left:0
}
.marketplace__nav-body>.marketplace__nav-item{
    padding:10px 0
}
.marketplace__nav-link{
    width:100%
}
.marketplace__nav-link:hover>a{
    color:var(--blue)
}
.marketplace__nav-item{
    display:block;
    width:100%;
    transition-duration:.2s
}
.marketplace__nav-item a{
    display:block;
    width:100%;
    color:var(--text);
    font-weight:600;
    font-size:14px;
    line-height:1.29;
    white-space:nowrap
}
.marketplace__nav-item:hover>a{
    color:var(--blue)
}
.marketplace__nav-item.active.marketplace__nav-item--parent>.marketplace__nav-link-wrap>.marketplace__nav-link,.marketplace__nav-item.active:not(.marketplace__nav-item--parent){
    display:flex;
    justify-content:space-between;
    align-items:center;
    width:100%
}
.marketplace__nav-item.active.marketplace__nav-item--parent>.marketplace__nav-link-wrap>.marketplace__nav-link a,.marketplace__nav-item.active:not(.marketplace__nav-item--parent) a{
    color:#157fe2
}
.marketplace__nav-item.active.marketplace__nav-item--parent>.marketplace__nav-link-wrap>.marketplace__nav-link:after,.marketplace__nav-item.active:not(.marketplace__nav-item--parent):after{
    content:"";
    width:100%;
    height:100%;
    max-width:16px;
    max-height:16px;
    min-width:16px;
    min-height:16px;
    margin-right:10px;
    display:block;
    background-image:url(../images/theme/icons/icon-check-italic.svg)
}
.marketplace__nav-item.open .marketplace__nav-item--children{
    padding-left:15px;
    height:auto
}
.marketplace__nav-item.open .marketplace__nav-item--children-box{
    height:225px;
    overflow-y:scroll
}
.marketplace__nav-item.open .marketplace__nav-item--children-box::-webkit-scrollbar{
    width:2px;
    background-color:rgba(230,232,236,.5)
}
.marketplace__nav-item.open .marketplace__nav-item--children-box::-webkit-scrollbar-thumb{
    background-color:#cacaca;
    border-radius:0
}
.marketplace__nav-item.open .marketplace__nav-item--children-box::-webkit-scrollbar-button{
    display:none
}
.marketplace__nav-item.open .marketplace__nav-arr:before{
    transform:rotate(180deg)
}
.marketplace__nav-item:not(.open) .marketplace__nav-item--children{
    padding:0 0 0 15px
}
.marketplace__nav-item--children{
    transition-duration:.4s;
    list-style:none;
    height:0;
    overflow-y:hidden
}
.marketplace__nav-item--children a{
    font-weight:400
}
.marketplace__nav-item--children .marketplace__nav-item{
    padding:10px 0
}
.marketplace__nav-item--children .marketplace__nav-item.active a{
    font-weight:600
}
.marketplace__nav-item--parent{
    padding:10px 0
}
.marketplace__nav-item--parent .marketplace__nav-arr{
    display:block
}
.marketplace__nav-item--parent .marketplace__nav-arr:before{
    content:"";
    width:100%;
    height:100%;
    max-width:16px;
    max-height:26px;
    min-width:16px;
    min-height:26px;
    padding:10px;
    margin-left:-5px;
    display:block;
    background-image:url(../images/theme/icons/arrow.svg);
    background-repeat:no-repeat;
    background-position:50%;
    transition-duration:.4s;
    cursor:pointer
}
.marketplace__item,.marketplace__nav-item--parent .marketplace__nav-link-wrap{
    display:flex;
    align-items:center
}
.marketplace__item{
    flex-direction:column;
    border-radius:8px;
    width:100%;
    max-width:305px;
    box-shadow:0 4px 5px 0 rgba(0,0,0,.15);
    background-color:var(--white);
    transition-duration:.2s;
    padding:24px 48px 70px;
    align-self:normal
}
.marketplace__item:hover{
    margin:-10px 0 10px
}
.marketplace__img{
    height:100%;
    width:100%;
    max-width:80px;
    max-height:80px;
    min-width:80px;
    min-height:80px;
    object-fit:contain
}
.marketplace__desc{
    font-weight:400;
    font-size:14px;
    line-height:1.29;
    color:var(--text)
}
.marketplace__title{
    padding:16px 0 24px;
    font-weight:700;
    font-size:24px;
    line-height:1.33;
    text-align:center;
    color:var(--text)
}
.marketplace__btn{
    display:block;
    max-height:0;
    overflow:hidden;
    margin:0 auto;
    transition-duration:.2s;
    text-align:center;
    font-weight:600;
    font-size:16px;
    color:var(--blue)
}
.marketplace__btn-filter{
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:4px;
    padding:0 4px;
    width:100%;
    max-width:calc(50% - 8px);
    height:36px;
    background-color:#d6e4ff;
    border:none
}
.marketplace__btn-filter-text{
    font-size:14px;
    color:#2a2e36;
    padding-left:10px
}
.modal-filter{
    align-items:end;
    margin:0;
    height:100%;
    max-width:none
}
.modal-filter-wrap{
    padding-right:0!important
}
.modal-filter__content{
    border-radius:24px 24px 0 0
}
.modal-filter__body{
    padding-right:8px
}
.modal__btn-close{
    padding:0!important;
    background-color:transparent;
    border:none;
    margin:8px 8px 0 auto!important
}
@media (min-width:768px){
    .marketplace__nav-wrap{
        max-width:305px
    }
    .marketplace__btn-filter,.modal-filter-wrap{
        display:none
    }
}
@media (min-width:992px){
    .marketplace__item{
        max-width:calc(100% / 2 - 25px)
    }
}
@media (min-width:1240px){
    .marketplace__item{
        max-width:calc(100% / 3 - 25px)
    }
}
@media (max-width:768px){
    .marketplace__form{
        flex-direction:column;
        background-color:#fff;
        padding:8px 8px 14px;
        border-radius:4px
    }
    .marketplace__form-btn{
        position:relative;
        width:100%;
        height:48px;
        right:0
    }
    .marketplace__field{
        border:none
    }
    .marketplace__field-ico{
        top:24px
    }
    .marketplace__content{
        justify-content:center
    }
    .marketplace__content-wrap{
        flex-direction:column-reverse
    }
    .marketplace__nav-wrap{
        display:none
    }
    .marketplace__page-nav{
        padding-top:24px
    }
}