.container-limited{
    margin-right: auto;
    margin-left: auto;
    padding: 0 16px;
    max-width: 1280px;
}
.breadcrumbs{
    margin-left: auto;
    margin-right: auto;
    padding: 0 16px;
    display: flex;
    width: 100%;
    min-height: 48px;
    color: #2e2e2e;
    
}
.breadcrumbs-container{
    display: flex;
    width: 100%;
    position: relative;
    padding-top: 8px;
    padding-bottom: 8px;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
}
.breadcrumbs-list {
    display: flex;
    margin-bottom: 0;
    line-height: 16px;
}
.breadcrumbs-list a{
    display: flex;
    align-items: center;
    position: relative;
    padding: 2px 0;
    color: #707070;
    font-size: 12px;
}
.breadcrumb:last-child {
    color: #2e2e2e;
    font-weight: 600;
}
.breadcrumb:before{
    font-size: 8px;
    color: #707070;
}
.m-0{
    margin: 0;
}
.mx-auto{
    margin: 0 auto;
}
.mx-1{
    margin: 0 5px;
}
.content{
    margin-top: 4px;
    margin-left: auto;
    margin-right: auto;
}
h1, h2, h3,
h4, h5, h6{
    font-weight: 600;
}
h4{
    font-size: 1.3rem;
}
h5{
    font-size: 14px;
}
.d-block{
    display: block!important;
}
.d-flex{
    display: flex;
}
.d-inline-block{
    display: inline-block;
}
.d-inline-flex{
    display: inline-flex;
}
.justify-content-center{
    justify-content: center;
}
.justify-content-between{
    justify-content: space-between;
}
.align-content-start{
    align-content: start;
}
.align-items-center{
    align-items: center;
}
.align-items-start{
    align-items: flex-start;
}
.align-items-end{
    align-items: end;
}
.flex-wrap{
    flex-flow: wrap;
}
.text-center{
    text-align: center;
}
.prepend-top-0 {
    margin-top: 0;
}
/* button */
.btn {
    display: inline-block;
    padding: 6px 10px;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    font-size: 14px;
    line-height: 20px;
    text-transform: initial;
    white-space: nowrap;
    color: #2e2e2e;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #e5e5e5;
    box-shadow: unset;
}
.btn-success{
    text-transform: initial;
    background-color: #1aaa55;
    border-color: #168f48;
    color: #fff;
}
.btn:hover,
.btn:focus {
    background-color: #f0f0f0;
    border-color: #e3e3e3;
    color: #2e2e2e;
    box-shadow: unset;
}
.btn-success:hover,
.btn-success:focus{
    background-color: #168f48;
    border-color: #12753a;
}
/* xs view */
@media (max-width: 575.98px) {
    .d-sm-none{
        display: none;
    }
}
