.kn-wrp-props{
    display: flex;
    width: 100%;
}
.kn-wrp-props-items{
    width: 30%;
    display: flex;
    flex-direction: column;
}
.kn-wrp-props-props{
    width: 70%;
}
.kn-wrp-props-item{
    display: flex;
    padding: 16px;
    border-radius: 4px;
    border: 1px solid #E6E9F0;
    margin-bottom: 12px;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}
.kn-wrp-props-item:hover{
    border-color: #BCC3D1;
}
.kn-wrp-props-item.select{
    border-color: var(--main_color);
}

.kn-wrp-props-item-img{
    width: 54px;
    height: 54px;
    margin-right: 16px;
}
.kn-wrp-props-item-img img{
    width: 100%;
    object-fit: cover;
}
.kn-wrp-props-item-name{
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: var(--main_text_black);
    max-height: 46px;
    overflow: hidden;
    width: 100%;
}
.kn-wrp-props-props{
    padding-left: 64px;
}
.kn-wrp-props-props-title{
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: var(--main_text_black);
    margin-bottom: 32px;
}

@media(max-width: 440px){
    .kn-wrp-props {
        flex-direction: column;
    }
    .kn-wrp-props-items {
        flex-direction: row;
        overflow-x: auto;
        width: 100%;
    }
    .kn-wrp-props-props{
        padding-left: 0;
        width: 100%;
    }
    .kn-wrp-props-props-title{
        font-size: 14px;
        margin-bottom: 24px;
    }
    .kn-wrp-props-item{
        padding: 14px 12px;
        margin-right: 8px;
        min-width: 220px;
    }
    .kn-wrp-props-item-img{
        width: 40px;
        height: 40px;
    }
    .kn-wrp-props-item-name {
        font-size: 12px;
        max-height: 38px;
    }
    .kn-wrp-props-item-img img {
        width: 100%;
        object-fit: contain;
        height: 100%;
    }
}