*, *::before, *::after {
    box-sizing: border-box;
}
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1140px;
}
.nw {
    white-space: nowrap;
}
.ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.text {
    position: relative;
}
.text span, .text .span {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: absolute;
    left: 0;
    right: 0;
}
.bold {
    font-weight: bold;
}

.text:before {
    content: '';
    display: inline-block;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.text-left {
    text-align: left;
}
.hidden {
    display: none;
}
.img-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
img {
    vertical-align: middle;
    border-style: none;

}
img.responsive {
    height: auto;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
}
.img-fluid {
    max-width: 100%;
    height: auto;
}
.flex-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.flex-row > * {
    flex-grow: 1;
}
.flex-row > *:last-child {
    text-align: right;
    child-align: right;
}

.pagination-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 5px;
}

/**
@media (min-width: 576px){
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px){
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px){
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}
/**/