.content__view__control{
    display: flex;
    justify-content: space-between;
    /* padding: 0 40px; */
}
.content__view__control p{
    margin: 0;
}


/*---PART---*/
.change_part{
    display: flex;
    align-items: flex-end;
    margin-top: 35px;
}
.change_part div{
    background: linear-gradient(259.58deg, #42B0FF -12.47%, #295ECC 124.69%);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin-right: 8px;
    text-align: center;
    width: 200px;
    display: flex;
    height: 48px;
    justify-content: center;
    align-items: center;
    font-weight: 400;
    color: #fff;
    font-size: 18px;
    line-height: 20px;
}
.change_part div.active{
    background: #FFFFFF;
    color: #3176DB;
}
.change_part div:hover{
    cursor: pointer;
}
/*//////////////////////////////////*/


/*---VIEW---*/
.change_view {
    display: flex;
    display: none;
    align-items: center;
    /* justify-content: end; */
    font-size: 30px;
    /* margin: 10px 0; */
    height: fit-content;
    align-self: center;
    background-color: #ceddf3;
    padding: 3px;
    border-radius: 9px;
}
.change_view p{
    margin: 0;
}
.change_view svg {
    font-size: 44px;
    margin-left: 8px;
    justify-content: center;
    align-items: center;
    padding: 4px 12px;
    background: #FFFFFF;
    border-radius: 6px;
    color: #1989F9;
    box-shadow: 0px 0px 1px rgba(28, 41, 61, 0.2), 0px 2px 4px rgba(28, 41, 61, 0.12);
}
.change_view p:first-child svg{
    margin: 0;
}
.change_view .rows svg,
.change_view.columns .columns svg{
    background-color: #E8E8EE;
}
.change_view.columns .rows svg{
    background: #FFFFFF;
}
.change_view svg:hover {
    cursor: pointer;    
}
@media (max-width: 1384px){
    .change_view{
        margin-right: 18px;
    }
}
@media (max-width: 600px){
    .content__view__control{
        padding-left: 0;
    }
    .change_part{    
        margin-top: 22px;
    }
    .change_part div{
        width: 108px;
    }
    .change_view{
        align-items: flex-end;
        margin-bottom: 10px;
        align-self: flex-end;
    }
    .change_view p svg{
        height: .8em;
    }
}
/*//////////////////////////////////*/