* {
    margin: 0;
    padding: 0;
    outline: none !important;
    box-sizing: border-box;
}

html {
    position: relative;
    height: 100%;
    font-size: 16px;
}

body {
    height: 100%;
    overflow: auto;
    font-family: "basis-grotesque-pro", sans-serif;
    font-size: 1rem;
    font-weight: normal;
    line-height: 24px;
    scroll-behavior: smooth;
}

a,
a:active {
    text-decoration: none;
    cursor: pointer;
}

a:hover {
    text-decoration: underline;
}

a.btn:hover {
    text-decoration: none !important;
}

button,
button:hover,
button:active,
button:visited {
    text-decoration: none !important;
    outline: none !important;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

input {
    padding-left: 8px;
    font-size: 1rem;
    background-clip: padding-box;
    color: rgb(58, 58, 58);
    border: none;
}

input:focus {
    border: 1px solid #4B33DD;
    background: #fbfbfb;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
    padding-left: 8px;
    background-clip: padding-box;
    font-size: 1rem;
}

input::-moz-placeholder {
    font-size: 1rem;
    color: #939393;
}

input:-ms-input-placeholder {
    font-size: 1rem;
    color: #939393;
    font-weight: lighter;
}

input::-webkit-input-placeholder {
    font-size: 1rem;
    color: #939393;
}

input:placeholder-shown {
    font-size: 1rem;
    color: #939393;
    font-weight: lighter;
}

li {
    list-style: none;
}

/* Color style */

.color-primary {
    color: #4B33DD !important;
}

.color-bright-cyan {
    color: #33CFDF;
}

.color-blue {
    color: #2E4DD9;
}

.color-red {
    color: rgba(255, 0, 0, 0.7);
}

.color-pink {
    color: #E90371;
}

.color-birght-black {
    color: #303030;
}

.color-dark-gray {
    color: #303030;
}

.color-dark-blue {
    color: #0E003F;
}

.color-blue-link {
    color: #0539F7;
}

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

/* end of color style */

/* background */
.bg-dark-blue {
    background: #0E003F;
}

.bg-primary {
    /* background on safari */
    background: #4B33DD;
}

.bg-night-blue {
    background: #110751;
}

.bg-violet {
    background: #F1D1DD;
}

.violet-color {
    color: #EAA0BE;
}

/*/ Text and font style */
.text-center {
    text-align: center;
}

.text-bold {
    font-weight: bold;
}

.no-txt-decoration,
.no-txt-decoration:hover,
.no-txt-decoration:active {
    text-decoration: none;
}

.text-500 {
    font-weight: 500;
}

.no-wrap {
    white-space: nowrap;
}

/* Flex box  */
.flex-end,
.flex-wrap,
.flex-no-wrap,
.flex-content-center,
.flex-space-between {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-no-wrap {
    flex-wrap: nowrap;
}

.flex-v-align-center {
    display: flex;
    align-items: center;
}

.flex-space-between {
    justify-content: space-between;
}

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

.flex-content-center {
    justify-content: center;
}

/* End of flex box  */

/* buttons */
.btn-bordered {
    background: none;
    height: 44px;
    width: 128px;
    border: 1px solid #110751;
    border-radius: 4px;
    color: #000000 !important;
    opacity: 1;
}

.btn-sm {
    height: 35px;
    width: 113px;
    background: none;
    color: #000;
    font-weight: 400;
}

.btn-md {
    height: 56px;
    border-radius: 4px;
    margin: 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-block {
    width: 100%;
}

.btn-bg-none {
    background: none;
}

/* Width */

.container {
    width: 100%;
    margin: auto;
    max-width: 1224px;
    padding-left: 20px;
    padding-right: 20px;
}

.column-left,
.column-right {
    width: 50%;
}

.column-right {
    padding-left: 40px;
}

.column-left {
    padding-right: 40px;
}

/* End of width  */

/* Border */
.border-blue {
    bordder-color: #4B33DD;
}

#home-page {
    padding-top: 90px;
    background: #FFFFFF;
}

.forside-header {
    position: fixed;
    top: 0;
    background: #fff;
    z-index: 100;
    -webkit-transition: 0.3s linear;
    -moz-transition: 0.3s linear;
    -ms-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
}

.nav-up {
    top: -90px;
}

.forside-header,
.job-page header {
    border-bottom: 1px solid #D8D8D8;
}

.header-nav-wrapper {
    max-width: 1440px;
    margin: auto;
}

header,
footer {
    width: 100%;
}

#navbar {
    max-width: 1312px;
    display: flex;
    justify-content: space-between;
}

.nav-list {
    height: 90px;
    display: flex;
    align-items: center;
}

.logo-wrapper {
    max-width: 128px;
    margin-right: 58px;
    margin-left: 20px;
}

.logo {
    height: 24px;
    width: 20px;
}

a.nav-link {
    color: #0539F7;
    font-weight: 100;
}

.job-page a.nav-link {
    color: #EAA0BE !important;
}

.nav-item.back-link span:last-child {
    display: none;
}

.nav-item:not(:last-child) {
    padding-right: 48px;
}

.btn-register,
.btn-log-in {
    display: inline-flex;
    height: 44px;
    width: 128px;
    border: 1px solid #110751;
    color: #110751;
    border-radius: 4px;

    align-items: center;
    justify-content: center;
}

.job-page .btn-register {
    border: 1px solid #EAA0BE;
    color: #EAA0BE;
}

.btn-register,
.btn-md,
.btn-log-in {
    -webkit-transition: background 0.3s linear;
    -moz-transition: background 0.3s linear;
    -ms-transition: background 0.3s linear;
    -o-transition: background 0.3s linear;
    transition: background 0.3s linear;
}

.btn-log-in:hover,
.btn-register:hover {
    background: #110751;
    color: #fff;
    border: 1px solid #110751;
}

.btn-md.btn-bg-none:hover {
    background: #E1E1E1;
    color: #110751;
}


/* sluttbrukeravtale */

.contract-section {
    max-width: 870px;
    margin-top: 45px;
    line-height: 1.75;
}

.contract-section p {
    margin: 1.2em 0;
}

.contract-section h3,
.contract-section h1 {
    font-weight: 500;
    margin-top: 1.2em;
}

.contract-section h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contract-section h1 {
    font-size: 1.5rem;
}

.contract-section h1 + h3 {
    margin-top: 0;
}

.contract-section ul {
    padding-left: 30px;
}

.contract-section ul li {
    list-style: square;
    padding-left: 10px;
}

.contract-section .fremhevet {
    font-size: 110%;
}



/* cookie policy */

.cookies-table,
.definition-table {
    border-collapse: collapse;
    border-spacing: 0;
    margin-bottom: 2em;
}

.cookies-table tbody tr td,
.cookies-table thead tr th,
.definition-table tbody tr td,
.definition-table thead tr th {
    padding: 5px;
    text-align: left;
    vertical-align: top;
}

.cookies-table thead tr th,
.definition-table thead tr th {
    border-bottom: 1px solid #ccc;
}

.cookies-table tbody tr
.definition-table tbody tr {
    border-bottom: 1px solid #ccc;
}

.cookies-table tr:last-child,
.definition-table tr:last-child {
    border-bottom: none;
}

.definition-table thead th:first-of-type {
    width: 25%;
}

#cookies .cookies-section {
    max-width: 870px;
    margin-top: 45px;
    line-height: 28px;
}

#cookies h1 {
    margin-bottom: 43px;
    font-size: 1.5rem;
    font-weight: 500;
}

#cookies .cookies-section > h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 37px;
    margin-bottom: 15px;
}

#cookies .cookies-section > p {
    margin-bottom: 10px;
}

#cookies .cookies-section > ul {
    padding-left: 30px;
    margin-bottom: 10px;
}

#cookies .cookies-section > ul > li {
    list-style: square;
    padding-left: 10px;
}

.cookie-policy-link {
    font-size: 12px;
    color: #939393;
}

.cookie-policy-link:visited {
    color: #939393;
}