.content__list{
    background-color: #fff;
    padding: 20px 40px;
    border-radius: 0 8px 8px 8px;
}
.content__list.columns{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.content__list p{
    margin: 16px 0;
}

/*---ROWS---*/
.list_row{
    display: flex;
    flex-direction: row;
    width: 100%;
    /* border-bottom: 1px solid #D4E0EE; */
    align-items: center;
}
.list_row:first-child,
.list_row:last-child{
    border: none;
}
.list_row .number{
    min-width: 30px;
    flex-grow: 1;
}
.list_row .preview_image{
    min-width: 10%;
    flex-grow: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.list_row .preview_image svg{
    position: absolute;
    color: rgba(255, 255, 255, 0.8);;
    margin-top: 20px;
    font-size: 35px;
}
.list_row .preview_image span{
    border-radius: 5px;
    overflow: hidden;
    height: 48px;
}
.list_row .preview_image img{
    height: 48px;
    width: auto;
}
.list_row.row p:hover{
    cursor: pointer;
}
.list_row .name{
    width: auto;
    flex-grow: 100;
    display: flex;
    flex-direction: column;
    margin-left: 10px;
}
.list_row .name .label{
    color: #000;
    font-weight: 600;
    font-size: 24px;
}
.list_row .name .lasting_time{
    font-size: 16px;
    padding-top: 8px;
}
.list_row .name .lasting_time svg{
    margin-right: 10px;
}
.list_row:not([class*="video"]) .name .lasting_time{
    display: none;
}
.list_row.row .condition{
    min-width: 60px;
    text-align: center;
    color: #D8E8FE;
    flex-grow: 1;
    font-size: 24px;
}
/*//////////////////////////////////*/


/*---ROWS MODULE---*/
.list_row.module{
    display: block;
}
.module .list_row{
    border: none;
}
.module .module_btn{
    display: flex;
    justify-content: space-between;
    height: 100px;
    align-items: center;
}
.module .module_btn .name{
    font-size: 28px;
    font-weight: 600;
    line-height: 36px;
    color: #312A2A;
}
.module .module_btn.opened .arrow{
    transform: rotate(180deg);
}
.module .row_wraper{
    overflow: hidden;
    height: 0;
}
.module .module_content{
    position: relative;
}
.module .row_wraper, .module .module_content{
    transition: all ease-in-out .2s;
}
.module .list_row .name .label{
    font-weight: 400;;
}
/*//////////////////////////////////*/


/*---MODULE ICONS---*/
.module_content .list_row.video .preview_image img {
    height: 44px;
    width: auto;
}
.module_content .list_row.test .preview_image img {
    height: 55px;
    width: auto;
}
.module_content .list_row.text .preview_image img {
    height: 65px;
    width: auto;
}
.module_content .list_row .preview_image span{
    display: block;
    flex-direction: column;
    justify-content: center;
}
.content__list.columns .module_content .list_row .preview_image span{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.module_content .list_row.video .preview_image svg,
.columns .list_row.video .preview_image svg,
.preview_image svg{
    display: none;
}
/*//////////////////////////////////*/


/*---COLUMN VIEW---*/
.columns .list_row:not([class~="module"]) {
    background: #D8E8FE;
    border-radius: 16px;
    height: auto;
    padding: 16px;
    margin: 0 20px 32px 20px;
    width: calc(33.333% - 40px);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.columns .list_row:not([class~="module"]) .preview_image {
    display: block;
    width: 100%;
    margin-bottom: 8px;
    margin-top: 0;
}
.columns .list_row:not([class~="module"]) .preview_image img {
    width: auto;
    display: table;
    margin: 0 auto;
}
.columns .list_row:not([class~="module"]) .name {
    display: block;
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}
.columns .list_row:not([class~="module"]) .name .label {
    font-family: 'Golos';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 27px;
    text-align: center;
    color: #1B1B1B;
    min-height: 48px;
    margin-bottom: 8px;
    display: block;
    flex-grow: 1;
}
.columns .list_row:not([class~="module"]) .name .lasting_time {
    font-family: 'Golos';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    letter-spacing: -0.05px;
    font-feature-settings: 'pnum' on, 'lnum' on;
    display: block;
}
.content__list.columns .list_row .header,
.content__list.columns .list_row .number,
.content__list.columns .list_row .condition {   display: none;}
.list_row.row p:hover {
    cursor: pointer;
}
.columns .module_content{
    display: flex;
    flex-wrap: wrap;
}
/*//////////////////////////////////*/


/*---MEDIA WIDTH---*/
@media (max-width: 900px){
    .content__list{
        padding: 20px;
        border-radius: 20px;
    }
    .list_row.header, .list_row .number{
        display: none;
    }
    .list_row .preview_image{
        min-width: 20%;
        align-items: center;
    }
    /* .list_row .preview_image span,
    .module_content .list_row.test .preview_image img,
    .module_content .list_row.text .preview_image img{
        height: 50px;
    }
    .list_row .preview_image img{
        height: 50px;
    } */
    .list_row .preview_image svg{
        margin-top: 9px;
    }
    .list_row .name,
    .module .module_btn .name {
        font-weight: 700;
        font-size: 20px;
        line-height: 24px;
        color: #312A2A;
    }
    .list_row .name .label{
        font-weight: 600;
        font-size: 18px;
    }
    .columns .list_row:not([class~="module"]) .name .label {
        font-weight: 400;
        font-size: 14px;
        line-height: 24px;
    }
    .list_row .name .lasting_time{
        font-size: 14px;
        padding-top: 4px;
        font-weight: 400;
    }
     .columns .list_row .name .lasting_time.gray{
        font-size: 12px;
        padding-top: 4px;
        font-weight: 400;
        text-transform: uppercase;
    }
    .list_row .condition{
        font-size: 30px;
    }
    .columns .list_row:not([class~="module"]) {
        width: calc(45% - 40px);
    }
}

.noDecor .list_row.header,
.noDecor .number,
.condition{display: none;}