.short-exchange-licences__content {
    display: flex;
    flex-direction: column;
    margin: 15px 0;
    clear: both;
}

.short-exchange-licences__item {
    margin-bottom: 15px;
}

.short-exchange-licences__company {
    font-size: 16px;
    line-height: 24px;
}

.short-exchange-licences__inside {
    display: flex;
    align-items: center;
}

.short-exchange-licences__aside {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    margin-right: 15px;
    background-color: #ECF1F7;
    border-radius: 10px;
}

.short-exchange-licences__type {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
}

.short-exchange-licences__description {
    display: none;
    font-size: 16px;
    line-height: 24px;
}

/*** Responsive ***/

@media (min-width: 768px) {

    .short-exchange-licences__content {
        flex-direction: row;
        flex-wrap: wrap;
        margin: 0 -5px 30px;
    }

    .short-exchange-licences__item {
        flex-grow: 1;
        width: 50%;
        padding: 0 5px;
    }

    .short-exchange-licences__inside {
        align-items: flex-start;
    }

    .short-exchange-licences__type {
        line-height: 24px;
    }

    .short-exchange-licences__description {
        display: block;
    }
}