.n-flex {
    display: flex;
    position: relative;
    justify-content: flex-start;
    flex: 0 1 auto;
    flex-wrap: nowrap;
    align-items: stretch;
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
    max-width: none;
    background-color: unset;
    gap: unset;
}

.n-flex p, h1, h2, h3, h4, h5 {
    margin: 0
}

.n-col {
    flex-direction: column
}

.n-row {
    flex-direction: row
}

.wrap {
    flex-wrap: wrap
}

.gap-xs {
    gap: .25rem
}

.gap-s {
    gap: .5rem
}

.gap-m {
    gap: 1rem
}

.gap-l {
    gap: 2rem
}

.gap-xl {
    gap: 3rem
}

.padding-xs {
    padding: .25rem
}

.padding-s {
    padding: .5rem
}

.padding-m {
    padding: 1rem
}

.padding-l {
    padding: 2rem
}

.padding-xl {
    padding: 3rem
}

.jus-center {
    justify-content: center
}

.jus-end {
    justify-content: flex-end
}

.align-center {
    align-items: center
}

.align-end {
    align-items: flex-end
}

.n-divider {
    min-height: 1px;
    height: 1px;
    width: 100%;
    background-color: #C0CCB6;
}

.c-primary {
    color: #334A20 !important;
}

.bg-primary {
    background: #334A20;
}

.bg-white {
    background: #fff;
}

.jotun-btn {

    padding: 8px 12px;
    font-size: 20px;
    border-radius: 2px;
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;


    &.outlined {
        border: 1px solid;
    }

    &:hover {
        background-color: rgba(51, 74, 32, 0.07);
        text-decoration: none;
    }

}

.jotun-btn.bg-primary {
    &:hover {
        background-color: rgba(51, 74, 32, 0.62);
        color: white;
    }
}

