.bg-white {
    background-color: #ffffff;
}

.bg-green-light {
    background-color: #ACDF40;
}

.bg-green-dark {
    background-color: #054D26;
}

.bg-orange {
    background-color: #FF7533;
}

.bg-yellow {
    background-color: #FFE651;
}

.bg-black {
    background-color: #000000;
}

.bg-ocher {
    /*background-color: #c2851a;*/ /*Orginalfarge*/
    background-color: #CE9D47; /* 20% lysere */
}

.bg-beige {
    background-color: #E8E6D4;
}

.bg-grey {
    background-color: #96989a;
}

.bg-box-grey {
    background-color: #F2F2F2 !important;
}

.bg-gray-gradient {
    background: #FFFFFF;
    background: linear-gradient(180deg, #F2F2F2 0%, #FFFFFF 15rem);
}

.text-white {
    color: #ffffff !important;
}

.text-black {
    color: #000000 !important;
}

.text-grey {
    color: #6F6F6F !important;
}

.text-orange {
    color: #FF5200 !important;
}

.border-top-gray {
    border-top: 1px solid #C3C3C3;
}

.border-bottom-gray {
    border-bottom: 1px solid #C3C3C3;
}

.text-center {
    text-align: center;
}
.text-left {
    text-align: left;
}

.text-transform-none {
    text-transform: none;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-underline-none,
a.text-underline-none:link {
    text-decoration: none;
}

.extra-box-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

.book-image {
    width: 350px;
    height: 300px;
    padding: 30px;
}

.container-overflow-right {
    left: 0;
}

.one-line {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.two-line {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.three-line {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.horizontal-grid {
    overflow-x: scroll;
    width: calc(((100vw - 100%) / 2) + 100%);
}

.horizontal-grid-item {
    flex-basis: 100%;
    flex-shrink: 0;
}

@media screen and (min-width: 960px) {
    .horizontal-grid-item {
        max-width: 426px
    }
}

.w-100 {
    width: 100%;
}


.h-100 {
    height: 100%;
}

.break-word {
    word-break: break-word;
}

.pt-25 {
    padding-top: 80px;
}

.pb-25 {
    padding-bottom: 80px;
}

.py-25 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.mt-25 {
    margin-top: 80px;
}

.mud-main-content > .mt-25:first-child {
    margin-top: 25px;
}

.mb-25 {
    margin-bottom: 80px;
}

.my-25 {
    margin-top: 80px;
    margin-bottom: 80px;
}


@media screen and (min-width: 960px) {
    .pt-25 {
        padding-top: 100px;
    }

    .pb-25 {
        padding-bottom: 100px;
    }

    .py-25 {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .mt-25,
    .mud-main-content > .mt-25:first-child {
        margin-top: 100px;
    }



    .mb-25 {
        margin-bottom: 100px;
    }


    .my-25 {
        margin-top: 100px;
        margin-bottom: 100px;
    }
}

ul.list-reset {
   list-style-type: none;
    margin: 0;

}

    ul.list-reset li {
        padding: 0;
    }

    ul.list-reset li::before {
        display: none;
    }