/* Hör i Sverige AB */

/* objektiv - typsnitt enligt grafisk profil */
@import url("https://use.typekit.net/cyn5yli.css");

/* ==========================================================================
Generellt
========================================================================== */
:root {
    /* 	Colors */
    --primary-color: 13, 45, 50;
    --secondary-color: 249, 194, 167;
    --secondary-light-color: 247, 242, 239;
    --black-color: 17, 17, 17;
    --gray-dark-color: 58, 58, 58;
    --gray-color: 130, 130, 130;
    --gray-light-color: 247, 242, 240;
    --white-color: 255, 255, 255;

    /* 	Layout  */
    --col-padding: 3rem;
    --menu-height: 7rem;
    --menu-height-scrolled: 7rem;
    --section-width: 130rem;

    /* 	Typography */
    --base-size: 1.6rem;

    /* 	Mobile nav */
    --activate-mobile-menu: 980;
    --mobile-menu-height: 6rem;
    --mobile-menu-bg: var(--white-color);
    --menu-color: var(--black-color);
}

@media only screen and (max-width: 580px) {
    :root {
        --base-size: 1.5rem;
    }
}

/* Layout
========================================================================== */
.section-block {
    padding: 10rem 5rem;
}

/* Paddings */
.p-3 .section-block,
.p-3:not(.section-wrapper) {
    padding: 3rem;
}

.p-6 .section-block,
.p-6:not(.section-wrapper) {
    padding: 6rem;
}

.pb-0 .section-block,
.pb-0:not(.section-wrapper) {
    padding-bottom: 0;
}

.pb-2 .section-block,
.pb-2:not(.section-wrapper) {
    padding-bottom: 2rem;
}

.pt-0 .section-block,
.pt-0:not(.section-wrapper) {
    padding-top: 0;
}

/* Margins */
.mb-3 {
    margin-bottom: 3rem;
}

.mt--10 {
    margin-top: -10rem;
    z-index: 3;
}

.mw-1000 .section-block-wrapper,
.mw-1000:not(.section-wrapper) {
    max-width: 100rem;
}


/* Ovriga klasser */
.align-center .section-block-wrapper {
    align-items: center;
}


@media only screen and (max-width: 1024px) {
    .section-block {
        padding: 8rem 3rem;
    }
}

@media only screen and (max-width: 580px) {
    .section-block {
        padding: 5rem 2rem;
    }
}

/* Text och typsnitt
========================================================================== */
body {
    font-family: objektiv-mk2, sans-serif;
}

/* Rubriker */
.text-label {
    padding-bottom: 1em;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    color: rgb(var(--primary-color));
}

.section-title {
    padding-bottom: .5em;
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.3;
}

.small-title {
    padding-bottom: .3em;
    padding-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.4;
}

.smaller-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: normal;
    line-height: 1.5;
    padding-bottom: 1rem;
    letter-spacing: normal;
    margin-top: 1rem;
}

.smallest-title {
    font-size: var(--base-size);
    font-weight: 700;
    letter-spacing: normal;
    line-height: 1.5;
    padding-bottom: 1rem;
    letter-spacing: normal;
    margin-top: 1rem;
}

.ingress {
    font-size: 1.8rem;
}

/* Brodtext och lankar */
p,
li,
a {
    color: rgb(var(--gray-dark-color));
    font-weight: 300;
    font-size: 1.5rem
}

/* Ovriga klasser */
.text-block {
    max-width: 80rem;
}

.text-block-center {
    max-width: 95rem;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

@media only screen and (max-width: 1200px) {

    /* Rubriker */
    .section-title {
        font-size: 3.8rem;
    }

    .small-title {
        font-size: 2.2rem;
    }
}

@media only screen and (max-width: 580px) {

    /* Rubriker */
    .section-title {
        font-size: 2.5rem;
    }

    .small-title {
        font-size: 2rem;
    }

    .text-label {
        font-size: 1.2rem;
    }
}

/* Knappar och speciella lankar
========================================================================== */
.btn-wrapper {
    margin-top: 2rem;
}

.btn-wrapper.center {
    text-align: center;
}

/* Knappar */
.btn,
.ContactSubmit {
    min-width: 15rem;
    padding: 1.2rem 2rem;
    margin: 5px;
    font-size: 1.4rem;
    font-weight: 600;
    border-radius: 2rem;
    text-align: center;
    text-decoration: none;
    transition: all .4s ease;
}

.btn-primary-filled,
.ContactSubmit {
    color: rgb(var(--white-color));
    border: 1px solid rgb(var(--primary-color));
    background-color: rgb(var(--primary-color));
}

.btn-primary-filled:hover,
.ContactSubmit:hover {
    color: rgb(var(--primary-color));
    border: 1px solid rgb(var(--secondary-color));
    background-color: rgb(var(--secondary-color));
}

.btn-white-border {
    color: rgb(var(--white-color));
    border: 1px solid rgb(var(--white-color));
    background-color: transparent;
}

.btn-white-border:hover {
    color: rgb(var(--black-color));
    border: 1px solid rgb(var(--secondary-color));
    background-color: rgb(var(--secondary-color));
}

/* Arrow link */
.arrow-link {
    padding-right: 1rem;
    font-size: var(--base-size);
    color: rgb(var(--primary-color));
}

.arrow-link::after {
    content: ' \f105';
    display: inline-block;
    margin-left: 1rem;
    font-weight: 400;
    font-family: 'Font Awesome 5 Pro';
    transition: transform .4s ease;
}

.arrow-link:hover::after {
    transform: translateX(1rem);
    transition: transform .4s ease;
}

/* Farger
========================================================================== */
/* Bakgrunder */
.bg-primary {
    background-color: rgb(var(--primary-color));
}

.bg-secondary {
    background-color: rgb(var(--secondary-color));
}

.bg-secondary-light {
    background-color: rgb(var(--secondary-light-color));
}

.bg-white {
    background-color: rgb(var(--white-color));
}

.bg-gray-light {
    background-color: rgb(var(--gray-light-color));
}

/* Text */
.text-primary {
    color: rgb(var(--primary-color));
}

.text-secondary {
    color: rgb(var(--secondary-color));
}

.text-white {
    color: rgb(var(--white-color));
}

/* Grafiska element
========================================================================== */

/* Box shadow */
.box-shadow {
    box-shadow: 0 1rem 3rem rgba(var(--black-color), .1);
}

/* border radius */
.br-3 {
    border-radius: 3rem;
}

/* borders */
.br-gray {
    border-right: 0.1rem solid rgb(var(--gray-color));
}

.br-white {
    border: 0.1rem solid rgb(var(--white-color));
}

.border-gray {
    border: 0.1rem solid rgb(var(--gray-color));
}

.intro-line-secondary::before {
    border-bottom: 0.5rem solid rgb(var(--secondary-color));
    content: "";
    display: inline-block;
    height: .1em;
    position: relative;
    vertical-align: middle;
    width: 5rem;
    margin-bottom: .15em;
    right: 1.3rem;
    margin-left: 1.3rem;
}

@media only screen and (max-width: 1000px) {
    .br-gray {
        border-right: none;
    }
}

/* Bakgrundsbilder och videos
========================================================================== */
.bg-image,
.bg-video {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(var(--black-color), .4) 0%, rgba(var(--black-color), .7) 0%, rgba(var(--black-color), 0.0) 100%);
}

.bg-image-wrapper,
.bg-video-wrapper {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Video */
.bg-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Parallax */
.parallax {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.parallax .section-block {
    min-height: 50rem;
    background-color: rgb(var(--black-color), .5)
}

/* Bilder */
.parallax-aldre {
    background-image: url('/assets/images/lyckligt-par-2000px.jpg');
}

.parallax-ora {
    background-image: url('/assets/images/resound-1600px.jpg');
}

@media only screen and (hover:none) {
    .parallax {
        background-attachment: scroll;
        background-position: center center;
    }
}

/* Halvsektionsparallax */
.parallax-half {
    position: relative;
}

.parallax-half::after {
    content: '';
    z-index: 1;
    position: absolute;
    width: 100%;
    height: 60%;
    top: 0;
    left: 0;
    background-attachment: fixed;
    background-size: cover;
}

.parallax-half .section-block {
    z-index: 2;
    position: relative;
    padding-top: 20rem;
    background-image: linear-gradient(to bottom, rgba(var(--black-color), 0.6) 60%, rgb(var(--white-color)) 60%);
}

/* Bilder */
.parallax-stockholm::after {
    background-image: url('/assets/images/stockholm-2000px.jpg');
}

@media only screen and (hover: none) {
    .parallax-half::after {
        background-attachment: scroll;
        background-position: center center;
    }
}


/* Cards
========================================================================== */
.cards-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.cards-wrapper:not(.w-100) {
    margin-left: -1rem;
    margin-right: -1rem;
}

/* Bredder */
.cards-wrapper.w-33 .card-item {
    width: calc((100% / 3) - 2rem);
    margin: 1rem;
}

.cards-wrapper.w-50 .card-item {
    width: calc((100% / 2) - 2rem);
    margin: 1rem;
}

.cards-wrapper.w-100 .card-item {
    width: 100%;
    margin: 1rem 0;
}

/* Card grow */
.cards-grow .card-item {
    display: flex;
    flex-direction: column;
}

.cards-grow .card-body {
    flex-grow: 1;
}

@media only screen and (max-width: 1050px) {

    /* Bredder */
    .cards-wrapper.w-33 .card-item {
        width: calc((100% / 2) - 2rem);
    }
}

@media only screen and (max-width: 750px) {
    .cards-wrapper:not(.w-100) {
        margin-left: 0;
        margin-right: 0;
    }

    /* Bredder */
    .cards-wrapper.w-50 .card-item,
    .cards-wrapper.w-33 .card-item {
        width: 100%;
        margin: 1rem 0;
    }
}

/* Card 1-1 */
.card-1-1 a {
    text-decoration: none;
}

/* Card 3-1 */
.card-3-1 .image-wrapper,
.card-3-1 .card-item {
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
}

.card-3-1 .card-item {
    border-bottom-left-radius: 2rem;
    border-bottom-right-radius: 2rem;
}

.card-3-1 .image-wrapper {
    height: 25rem;
}

.card-3-1 .small-title {
    font-size: 1.9rem;
    border-bottom: 0.1rem solid rgb(var(--black-color));
    margin-bottom: 1rem;
}

.card-3-1 p {
    font-size: 1.5rem;
}

.card-3-1 .date {
    font-size: 1.3rem;
}

.card-3-1 a {
    text-decoration: none;
}

/* Card 3-2 */
.card-3-2 .image-wrapper {
    display: inline-block;
    max-width: 30rem;
    height: 30rem;
}


/* Card 3-5 */
.card-3-5 .card-item {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 40rem;
    border-radius: 4rem;
}

.card-3-5 .image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 4rem;
}

.card-3-5 .image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--black-color), .7);
    transition: .3s ease-in-out;
}

.card-3-5 .card-item:hover .image-wrapper::after {
    background: rgba(var(--black-color), .8);
}

.card-3-5 .card-body {
    z-index: 1;
    position: relative;
    text-align: center;
    padding: 5rem;
    color: rgb(var(--white-color));
}

.card-3-5 .card-body.border {
    margin: 5rem;
    border: 1px solid rgb(var(--white-color));
}

.card-3-5 a {
    text-decoration: none;
}

@media only screen and (max-width: 1000px) {
    .card-wrapper.cards-3-5 .card-item {
        width: 100%;
        margin: 1rem 0;
    }
}

@media only screen and (max-width: 580px) {
    .card-3-5 .card-body {
        padding: 2rem;
    }

    .card-3-5 .card-body.border {
        margin: 2rem;
    }
}


/* Split wrapper
========================================================================== */
.split-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.split-wrapper.reverse {
    flex-direction: row-reverse;
}

.split-content {
    width: 50%;
    padding: 5rem;
}

.split-content.p-0 {
    padding: 0 0 0 5rem;
}

.split-image {
    width: 50%;
}

/* Centrera content */
.split-wrapper .align-center {
    align-self: center;
}

/* Speciella bredder */
.split-wrapper .w-60 {
    width: 60%;
}

.split-wrapper .w-40 {
    width: 40%;
}

@media screen and (max-width: 1300px) {
    .split-content {
        padding: 3rem;
    }
}

@media screen and (max-width: 1000px) {

    .split-wrapper,
    .split-wrapper.reverse {
        flex-direction: column;
    }

    .split-content {
        width: 100%;
        max-width: 70rem;
        padding: 3rem;
    }

    .split-content.p-0 {
        padding: 0;
    }

    .split-wrapper .w-60,
    .split-wrapper .w-40 {
        width: 100%;
    }

    .split-image {
        width: 100%;
        min-height: 20rem;
    }

    /* Centrera content */
    .split-wrapper .align-center {
        align-self: flex-start;
    }
}

/* Header / Navigation
========================================================================== */
header {
    background-color: rgb(var(--white-color));
}

header .container {
    max-width: 100%;
}

header .TemplateMenu>li>a {
    line-height: 2;
}

/* Dropdown */
.TemplateMenu>li>ul {
    width: 28rem;
}

/* Logo */
.header-logo {
    flex: 1 1 0px;
}

header:not(.mobile-menu) .container {
    height: var(--menu-height);
}

/* Header logo */
header:not(.mobile-menu) .header-logo {
    align-self: flex-start;
}

header:not(.mobile-menu) .header-logo img {
    padding: 0;
    transition: .3s ease;
}

header:not(.scrolled, .mobile-menu) .header-logo img {
    max-height: 10rem;
}

/* Nav */
.EditMode .TemplateMenu ul {
    max-height: 50rem;
    overflow: scroll;
}

.TemplateMenu a {
    font-weight: 300;
    font-size: 1.4rem;
    color: rgb(var(--black-color));
}

/* Dolj hem */
body:not(.EditMode) .TemplateMenu>li:nth-child(1) {
    display: none;
}

/* CTA  */
.header-cta-wrapper {
    position: relative;
    z-index: 9;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex: 1 1 0px;
    padding: 0;
    margin: 0 0 0 4rem;
    list-style: none;
}

.header-cta-wrapper img {
    max-height: 5rem;
}

.TemplateMenu a[href="/17/28/boka-tid/"] {
    display: inline;
    padding: 0.8rem;
    font-size: inherit;
    color: rgb(var(--black-color));
    border: 1px solid rgb(var(--black-color));
    border-radius: 3rem;
    text-decoration: none;
    line-height: 1;
    background-color: transparent;
    margin-left: 2rem;
}

/* Mobilmeny */

.mobile-menu .TemplateMenu li {
    padding: 0 2rem;
    text-align: center;
}

@media only screen and (max-width: 580px) {

    /* Header logo */
    .header-logo a {
        font-size: 1.6rem;
    }

    /* CTA  */
    .header-cta-wrapper .btn {
        padding: 0.7rem 1.5rem;
    }
}

/* ==========================================================================
Startsida
========================================================================== */

/* Top-section
========================================================================== */
.top-section {
    margin-left: 2rem;
    margin-right: 2rem;
}

.top-section .section-block {
    display: flex;
    justify-content: center;
    min-height: 105vh;
    background-image: url(/assets/images/waves/wave-2.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center bottom;
}

.top-section .section-block {
    width: 100%;
}

.top-section .text-block-center {
    max-width: 111rem;
}

.top-section .section-title {
    font-size: 5rem;
    font-weight: 800;
    text-transform: uppercase;
}

.top-section p {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.7;
    color: rgb(var(--white-color));
}

.top-section .btn-primary-filled:hover {
    color: rgb(var(--white-color));
}

@media only screen and (max-width: 1200px) {
    .top-section .section-title {
        font-size: 4.5rem;
    }
}

@media only screen and (max-width: 580px) {
    .top-section .section-title {
        font-size: 2.5rem;
    }

    .top-section p {
        font-size: 1.8rem;
    }
}

/* Section Reco
========================================================================== */
.reco-wrapper {
    max-width: 15rem;
    margin: auto;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

/* ==========================================================================
Undersidor
========================================================================== */

/* Hero - Grundkod
========================================================================== */
.hero {
    display: flex;
    align-items: center;
    min-height: 40rem;
    padding-top: var(--menu-height);
    margin-top: calc(var(--menu-height) * -1);
    background-color: rgb(var(--black-color), .5);
    margin-left: 2rem;
    margin-right: 2rem;
}

.hero .section-block {
    width: 100%;
}

.hero .section-title {
    font-size: 5rem;
    color: rgb(var(--white-color));
}

@media only screen and (max-width: 580px) {
    .hero {
        min-height: 30rem;
    }

    .hero .section-title {
        font-size: 4rem;
    }
}

/* ==========================================================================
Undersida: Jobba hos oss
========================================================================== */
.section-apply .col-1 {
    padding: 4rem;
    padding-top: 5rem;
    margin-top: -20rem;
    background: rgb(var(--white-color));
    border-radius: 2rem;
    z-index: 3;
}

@media only screen and (max-width: 980px) {
    .section-apply .col-1 {
        padding-top: 2rem;
        margin-top: 3rem;
    }
}

/* Fragor & svar
========================================================================== */
.accordion-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.accordion-wrapper.w-50 .accordion-item {
    width: calc((100% / 2) - 2rem);
    margin: 1rem;
}

.accordion-item {
    width: 100%;
    margin-bottom: 1rem;
    background: rgb(var(--primary-color));
    transition: .3s ease;
}

.accordion-item:hover,
.accordion-item.active {
    background: rgb(var(--primary-color), .85);
}

.accordion-header {
    position: relative;
    width: 100%;
    padding: 2rem 4rem 2rem 2rem;
    text-decoration: none;
}

.accordion-header::after {
    content: "\f078";
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 1.7rem;
    font-weight: 700;
    font-family: "Font Awesome 5 Pro";
    color: rgb(var(--white-color));
    transition: .5s ease;
}

.accordion-item.active .accordion-header::after {
    transform: rotate(180deg);
}

.accordion-body {
    padding: 0 2rem 2rem;
}

.accordion-body p {
    font-size: 1.5rem;
}

@media only screen and (max-width: 800px) {
    .accordion-wrapper.w-50 .accordion-item {
        width: 100%;
        margin: 1rem 0;
    }
}

@media only screen and (max-width: 580px) {
    .accordion-header {
        padding: 1.5rem 3rem 1.5rem 1.5rem;
    }

    .accordion-header::after {
        right: 1rem;
    }

    .accordion-body {
        padding: 0 1.5rem 1.5rem;
    }
}

/* ==========================================================================
Undersida: Senaste nytt
========================================================================== */
.section-news-img .section-title {
    font-size: 3rem;
}

.section-news-img p {
    font-size: 1.4rem;
}

/* return link */
.return-link {
    padding-right: 1rem;
    font-size: var(--base-size);
    text-decoration: none;
    color: rgb(var(--white-color));
    font-weight: 300;
}

.return-link::before {
    content: ' \f0a5';
    display: inline-block;
    font-family: 'Font Awesome 5 Pro';
    transition: transform .4s ease;
    margin-right: 0.7rem;
}

a.return-link:hover::before {
    transform: translateX(0px);
    transition: transform .4s ease;
}

.newspost-section .col-0 {
    width: 70%;
}

.newspost-section .col-1 {
    width: 30%;
}

.page-navigation {
    background-color: rgb(var(--primary-color));
    padding: 2rem;
    margin-bottom: 2rem;
}

.page-navigation-title {
    font-size: 2rem;
    font-weight: 600;
}

.page-navigation p,
.page-navigation a {
    color: rgb(var(--white-color));
}

.share-wrapper i.fa-facebook-f {
    color: rgb(72, 103, 170);
    margin-right: 1rem;
    font-size: 2.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.share-wrapper i.fa-twitter {
    color: rgb(40, 169, 224);
    margin-right: 1rem;
    font-size: 2.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.share-wrapper i.fa-linkedin-in {
    color: rgb(3, 119, 181);
    margin-right: 1rem;
    font-size: 2.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.share-wrapper a {
    text-decoration: none;
}

.table-of-content {
    background-color: rgb(var(--gray-light-color));
    padding: 2rem;
}

.table-of-content .small-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

ul.js-blog-nav {
    padding: 0;
}

.js-blog-nav li a {
    text-decoration: none;
    padding-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.js-blog-nav li {
    list-style-type: none;
}

/* table of content ovanför texten vid 100% */
.table-of-content-mobile {
    display: none;
    margin-bottom: 4rem;
}

.EditMode .table-of-content-mobile {
    display: block;
}

@media only screen and (max-width: 1080px) {

    .newspost-section .col-0,
    .newspost-section .col-1 {
        width: 100%;
    }

    .table-of-content {
        display: none;
    }

    .table-of-content-mobile,
    .EditMode .table-of-content {
        display: block;
    }
}

/* Sok + filtrering
========================================================================== */
/* Sok */
.search-wrapper {
    position: relative;
    margin-bottom: 3rem;
}

.search-wrapper em {
    position: absolute;
    left: 2rem;
    top: 50%;
    font-size: 2rem;
    transform: translateY(-50%);
}

.search-wrapper input {
    width: 20rem;
    height: 4rem;
    padding: 0 2rem 0 5rem;
    margin: 0 .6rem;
    border: none;
    border-radius: 5rem;
    box-shadow: 1px 1px 5px rgb(var(--black-color), .2);
    transition: .5s ease;
}

.search-wrapper input:focus {
    width: calc(100% - 1.2rem);
    outline: unset;
}

.card-item.hidden-search-item {
    display: none;
}

/* Taggar */
.tags-heading {
    display: none;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.tag {
    padding: .3rem 1.5rem;
    margin: .6rem .5rem;
    font-size: 1.5rem;
    border: 1px solid rgb(var(--primary-color));
    border-radius: 2rem;
    cursor: pointer;
    transition: .5s ease;
}

.tag:hover,
.tag.tag-picked {
    color: rgb(var(--white-color));
    background: rgb(var(--primary-color));
}

@media only screen and (max-width:580px) {

    /* Sok */
    .search-wrapper input {
        width: 100%;
    }

    /* Taggar */
    .tags-wrapper {
        position: relative;
        max-width: 25rem;
        background: rgb(var(--primary-color));
        cursor: pointer;
    }

    .tags-heading {
        display: block;
        width: 100%;
        padding: 1rem 2rem;
    }

    .tags-heading p {
        display: flex;
        justify-content: space-between;
        padding-bottom: 0;
        color: rgb(var(--white-color));
    }

    .tags-heading i {
        margin-left: 2rem;
    }

    .tags-list {
        display: none;
        z-index: 1;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        text-align: left;
        background: rgb(var(--white-color));
        box-shadow: 1px 1px 10px rgba(var(--black-color), .1);
    }

    .tags-wrapper.opened .tags-list {
        display: block;
    }

    .tags-wrapper .tag {
        display: block;
        padding: 1rem 2rem;
        margin: 0;
        letter-spacing: normal;
        text-transform: initial;
        box-shadow: none;
        border-radius: 0;
    }
}

/* ==========================================================================
Undersida Nyheter > Nyhetssidor
========================================================================== */
.table {
    width: 100%;
    max-width: 110rem;
    margin: 0 auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.cell {
    width: calc(100% / 4);
    padding: 1rem;
}

@media only screen and (max-width: 750px) {
    .table-heading {
        display: none;
    }

    .cell {
        width: 100%;
    }

    .cell:before {
        content: attr(data-title);
        display: block;
        font-size: 1.3rem;
        color: #666;
        text-transform: uppercase;
        margin-bottom: 13px;
    }

    .cell[data-title="Typ"] {
        background-color: rgb(var(--secondary-light-color));
    }
}

/* ==========================================================================
Undersida: Kontakt
========================================================================== */
.section-contact .col-1 {
    padding: 4rem;
    padding-top: 5rem;
    margin-top: -20rem;
    background: rgb(var(--white-color));
    border-radius: 2rem;
    z-index: 3;
}

.section-contact .ContactForm {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.section-contact .ContactForm div {
    width: 49%;
}

.section-contact .ContactForm .ContactFormField:has(.field-4),
.section-contact .ContactForm .ContactFormField:has(.field-6),
.ContactForm .group-wrapper,
.ContactForm .ContactFormField:has(textarea),
.ContactForm .checkbox-field .group-wrapper .checkbox-option,
.ContactForm .checkbox-field .group-wrapper,
.ContactForm .ContactSubmit,
div.submit-button-container {
    width: 100% !important;
}

@media only screen and (max-width: 980px) {
    .section-contact .col-1 {
        padding-top: 0rem;
        margin-top: 3rem;
    }

    .section-contact .ContactForm div {
        width: 100%;
    }
}

/* ==========================================================================
Undersida: Enskild klinik
========================================================================== */
.section-klinik .col-0 {
    z-index: 2;
}

/* ==========================================================================
Footer
========================================================================== */
.footer {
    padding: 0 5rem;
    background-color: rgb(var(--primary-color));
}

.footer-container {
    max-width: var(--section-width);
    margin: 0 auto;
}

/* Footer top */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 8rem 0 0;
}

.footer-menu {
    width: 20%;
    margin: 0 0 3rem;
}

.footer-menu-large {
    width: 30%;
}

.footer .small-title {
    color: rgb(var(--white-color));
    font-size: 2.4rem;
}

.footer-submenu {
    padding: 0;
    margin: 0 0 3rem;
    list-style: none;
}

.footer-top li,
.footer-top p,
.footer-top a {
    text-decoration: none;
    color: rgb(var(--white-color));
    font-size: 1.5rem;
}

.footer a:not(.icon-links):hover {
    text-decoration: underline;
}

/* Social Menu */
.social-menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid rgb(var(--secondary-color));
}

.social-menu li {
    margin: 1rem 1rem 1rem 0;
}

/* Footer bottom */
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
}

.footer-bottom p,
.footer-bottom a {
    font-size: 1.4rem;
    line-height: 1.6;
    color: rgb(var(--white-color));
}

/* WebbEss Stamp  */
.footer .webbess-stamp {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.webbess-stamp img {
    width: 2.5rem;
    margin-left: 1rem;
    filter: invert();
}

@media only screen and (max-width: 1200px) {
    .footer {
        padding: 0 3rem;
    }

    /* Footer top */
    .footer-menu {
        width: 33.333%;
    }

    .footer-menu-large {
        width: 100%;
    }

    .footer-menu-large p {
        max-width: 55rem;
    }
}

@media only screen and (max-width: 750px) {

    /* Footer top */
    .footer-menu,
    .footer-menu-large {
        width: 100%;
    }
}

@media only screen and (max-width: 580px) {
    .footer {
        padding: 0 2rem;
    }

    /* Footer top */
    .footer-top {
        padding: 5rem 0 0;
    }

    /* Footer bottom */
    .footer-bottom {
        flex-direction: column-reverse;
    }

    .webbess-stamp {
        margin: 0 auto 2rem;
    }
}