.pagewrapper {
    max-width: 1280px;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.15);
}
.noshadow
{
    box-shadow: none !important;
}

body {
    background: #fff;
    font-family:'DIN Next LT W02 Regular';
}

body * {
    font: 16px/1.5 DIN Next LT W02 Regular, sans-serif;
    color:#101010;
    -webkit-font-smoothing: antialiased;
}


.jumbotron {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
    background-color: transparent;
    border-radius: .3rem;
}

.border-bottom {
    border-bottom: 1px solid #eee!important;
}

.border-top-0 {
    border-top: 1px solid #eee!important;
}

hr {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, .06)
}

.relative {
    position: relative;
}

.hr__big {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
    border: 0;
    border-top: 1px solid #eee;
}

.center-vertical {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

a:hover{
    color: #00b0f7;
    text-decoration: none !important;
}

.fa, .far, .fas {
    font-family: "Font Awesome\ 5 Pro" !important;
}

.centered {
    text-align: center;
}

.img-responsive img,
.img-responsive {
    max-width: 100%;
    height: auto;
}

.flex-col {
    flex-direction: column;
}


.li-nobefore:before {
    display: none;
}

.tableofcontentscontainer {
    margin-bottom: 1rem;
}

.hover:hover {
    cursor: pointer;
}

html {
    scroll-behavior: smooth;
}

@media screen and (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}


@media only screen and (max-width: 768px) {

}

/* Very Large Devices */
@media only screen and (min-width: 1200px) {

}

/* Large Devices, Wide Screens */
@media only screener and (max-width: 1200px) {

}

/* Medium Devices, Desktops */
@media only screen and (max-width: 992px) {

}

/* Small Devices, Tablets */
@media only screen and (max-width: 768px) {
    .container {
        width: 100%;
    }
}

/* Extra Small Devices, Phones */
@media only screen and (max-width: 544px) {

}

/* Custom, iPhone Retina */
@media only screen and (max-width: 320px) {

}

.message {
    --clr: #009ddc;
    display: block;
    font-size: 1rem;
    color: var(--clr);
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 0;
    border: 1px solid var(--clr);
}

.message p:last-child {
    margin-bottom: 0;
}

.message.good {
    --clr: #4CAF50;
}

.message.bad,
.message.validation,
.message.required,
.message.danger {
    --clr: #F44336;
}