.list_row{
    position: relative;
    min-height: 105px;
    padding: 20px 20px 15px;
    /*float: left;*/
    width: 100%;
    display: flex;
    align-items: center;
}
.list_row:not(:last-child){
    border-bottom: 1px solid #aaaaaa;
}
.logo{
    float: right;
    margin-left:20px;
    /*margin-top: 20px;*/
    /*position: relative;*/
    order: 2;

}
.logo img{
    max-height: 50px;
    max-width: 250px;
}
.description{
    /*overflow: hidden;*/
    text-align: left;
    flex-grow: 1;
    order: 1;
}
.list{
    width: 80%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    background-color: #fff;
}
.list_row .icon{
    height: 16px;
    width: 16px;
    position: relative;
    top: 2px;
    margin: 0 2px 0 6px;
}
.icons_list > span:first-child .icon{
    margin-left: 0;
}
.list_row .rating_icon {
    margin-left: 0;
    height: 10px;
    width: 10px;
    top: 0;
}
.description .link{
    font-size: 20px;
}
.priority_icon{
    height: 16px;
    width: 16px;
    vertical-align: inherit;
}
.private_operator{
    padding-left: 5px;
}




@media only screen and (max-width: 601px) {
    .list{
        width: 95%;
    }
    .logo{
        display: block;
        float: none;
        text-align: center;
        margin-left: 0;
    }
    .description{
        text-align: center;
        display: block;
    }
    .list_row{
        display: block;
    }
}
@media only screen and (max-width: 992px) {
    .list{
        width: 95%;
    }
}