﻿.two-row-text,
.three-row-text,
.four-row-text,
.five-row-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 2em !important;
}


.text-dots {
    width: 100%;
    display: inline-block;
    overflow: hidden !important;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.two-row-text {
    -webkit-line-clamp: 2;
    height: calc(2em * 2);
}

.three-row-text {
    -webkit-line-clamp: 3;
    height: calc(2em * 3);
}

.four-row-text {
    -webkit-line-clamp: 4;
    height: calc(2em * 4);
}

.five-row-text {
    -webkit-line-clamp: 5;
    height: calc(2em * 5);
}

.text-dots {
    width: 100%;
    display: inline-block;
    overflow: hidden !important;
    white-space: nowrap;
    text-overflow: ellipsis;
}


.footer-licenses {
    display: flex;
    align-items: center;
    justify-content: space-evenly
}

    .footer-licenses img {
        border: 1px solid var(--gray-800);
        background-color: white;
        border-radius: 10px;
        width: 110px;
        height: 110px;
        padding: 10px;
        box-shadow: var(--common-box-shadow)
    }


.scale-x {
    transform: scaleX(-1);
/*    display: inline-block;
*/}