@charset "utf-8";
/* CSS Document */
html {
    height: 100%;
}
body {
    position:relative;
    min-height:100%;
    padding-bottom: 80px;
}
.navbar {
    margin-bottom: 0;
}
.main-body {
    margin: auto 0.25rem;
}
.footer {
    position: absolute;
    width: 100%;
    height: 80px;
    bottom: 0;
}
.text-overflow {
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}
.justify-content-end {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}
.justify-content-center {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
}
.justify-content-between {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.justify-content-around {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-around;
    justify-content: space-around;
}
@media (max-width: 767px) {
    .footer{
        font-size: 12px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {

}

@media (min-width: 992px) {

}
