.txt-r {
    text-align: right !important;
}
.display-iblock {
    display: inline-block !important;
}
.display-block {
    display: block !important;
}

.fl-dir__col {
    display: flex;
    flex-direction: column;
}
.fl-dir__row {
    display: flex;
    flex-direction: row;
}
.fl-col {
    margin-right: 5%;
}

@keyframes quick-scale {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.01);
    }
    100% {
        transform: scale(1);
    }
}

.spaced-items-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.spaced-items-container .Field {
    margin-bottom: 0;
}

.height-100 {
    height: 100%;
}
.overflow-auto {
    overflow: auto;
}
