/* Insamlingsstiftelsen för svensk konservatism */

/* Typsnitt */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Literata:ital,opsz,wght@0,7..72,300;0,7..72,700;1,7..72,300;1,7..72,700&family=Open+Sans:wght@600&display=swap');

/* Animationer */
@import url('https://unpkg.com/aos@2.3.1/dist/aos.css');

/* ==========================================================================
Generellt 
========================================================================== */
:root {
    /* 	Layout  */
    --col-padding: 3rem;
    --menu-height: 8rem;
    --menu-height-scrolled: 8rem;
    --section-width: 140rem;

    /* 	Colors */
    --primary-color: 27, 33, 51;
    --primary-light-color: 174, 186, 200;
    --secondary-color: 0, 157, 198;
    --tertiary-color: 118, 200, 160;

    --accent-green-color: 30, 215, 96;
    --accent-purple-color: 135, 46, 196;
    --accent-orange-color: 242, 111, 35;

    --black-color: 22, 22, 22;
    --gray-dark-color: 60, 60, 60;
    --gray-light-color: 242, 242, 242;
    --white-color: 255, 255, 255;

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

    /* 	Mobile nav */
    --activate-mobile-menu: 1340;
    --mobile-menu-height: 7rem;
    --mobile-menu-bg: var(--primary-color);
    --menu-color: var(--white-color);
}

/* Layout
========================================================================== */
body {
    background-color: rgb(var(--primary-color));
}

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

.section-block {
    padding: 10rem 5rem;
}

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

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

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

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

.py-5 .section-block,
.py-5:not(.section-wrapper) {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

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

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

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

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

.pb-2 .section-block {
    padding-bottom: 5rem;
}

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

.pl-0 {
    padding-left: 0 !important;
}

.pl-1 {
    padding-left: 1rem;
}

.pl-3 {
    padding-left: 3rem;
}

/* Margins */
.mt--5 {
    margin-top: -5rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-4 {
    margin-top: 4rem;
}

.mt-0-2 {
    margin-top: 0 !important;
    margin-bottom: 2rem;
}

.mr-1 {
    margin-right: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-4 {
    margin-bottom: 4rem !important;
}

.mb-6 {
    margin-bottom: 6rem !important;
}

.mb-8 {
    margin-bottom: 8rem !important;
}

.m-1 {
    margin: 1rem;
}

/* Bredder */
.mw-none .section-block-wrapper {
    max-width: none;
}

.mw-1000 .section-block-wrapper {
    max-width: 100rem;
}

/* Ovrig layout */
.justify-center {
    justify-content: 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: 'Literata', serif;
    font-weight: 300;
}

/* Rubriker */
.text-label {
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 1em;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 0.3em;
}

.banner-text .banner-span {
    background-color: rgb(var(--secondary-color));
    box-shadow: 10px 0 0px 0px rgb(var(--secondary-color)), -10px 0 0px 0px rgb(var(--secondary-color));
    color: rgb(var(--white-color));
    line-height: 1.6;
}

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

.ingress {
    font-size: calc(var(--base-size) * 1.2);
    font-weight: 700;
}

.ingress a {
    font-size: calc(var(--base-size) * 1.2) !important;
    font-weight: 700 !important;
}

/* Brodtext och lankar */
p,
li {
    font-weight: 400;
    color: rgb(var(--gray-dark-color));
}

a {
    font-size: inherit;
    font-weight: 400;
    text-decoration: underline;
    color: inherit;
}

a:hover {
    text-decoration: none;
}

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

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

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

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

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

.text-italic {
    font-style: italic;
}

.box-center {
    justify-content: center;
    margin: auto;
}

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

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

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

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

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

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

.btn-wrapper.multiple {
    gap: 2rem;
    align-items: center;
}

/* Knappar */
.btn,
.ContactSubmit {
    min-width: 15rem;
    padding: 1.4rem 2rem;
    font-family: 'Open Sans', sans-serif !important;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 4rem;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: all .4s ease;
}

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

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

.btn-primary-filled {
    color: rgb(var(--white-color));
    background: rgb(var(--primary-color));

}

.btn-primary-filled:hover {
    background: rgb(var(--secondary-color));
}

/* Runda knappar */
.btn-rounded {
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid;
    margin: 0 2rem 0 0;
    color: rgb(var(--gray-dark-color));
    transition: all .4s ease;
}

.btn-rounded:hover {
    border-color: rgb(var(--black-color));
    background-color: rgb(var(--black-color));
    color: rgb(var(--white-color));
}

/* Arrow link */
.arrow-link {
    font-size: var(--base-size);
    padding-right: 1rem;
    color: rgb(var(--gray-dark-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;
}

@media only screen and (max-width: 480px) {
    .btn {
        display: block;
        width: 100%;
    }
}

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

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

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

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

.gradient-primary-white {
    background-image: linear-gradient(to top, rgb(var(--white-color)) 50%, rgb(var(--primary-color)) 50%);
}

/* Bakgrunder */
.overlay-white {
    background-color: rgba(var(--white-color), .2);
}

/* Text */
.text-white {
    color: rgba(var(--white-color));
}

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

/* Bakgrundsbild
========================================================================== */
.bg-image {
    position: relative;
    background: linear-gradient(90deg, rgba(var(--black-color), .2) 0%, rgba(var(--black-color), .5) 0%, rgba(var(--black-color), 0.0) 100%);
}

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

/* Grafiska element
========================================================================== */
.of-wrapper .op-65 {
    object-position: center 65%;
}

/* Borders */
.border-bottom-primary {
    border-bottom: 4px solid rgb(var(--primary-color));
}

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

.border-left-secondary {
    border-left: .5rem solid rgb(var(--secondary-color));
}

.border-bottom-dotted-primary {
    border-bottom: 1px dotted rgb(var(--primary-color));
}

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

/* Offset */
.offset-white {
    outline: 1px solid rgb(var(--white-color));
    outline-offset: -11px;
}

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

/* Cards
========================================================================== */
.cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-left: -1rem;
    margin-right: -1rem;
}

/* Generellt */
a.card-item {
    transition: .3s ease;
    text-decoration: none;
}

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

/* Specifika 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;
}

/* Specifika layout */
.cards-wrapper.w-100.column .card-item {
    flex-direction: column;
    margin-bottom: 2rem;
}

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

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

.bottom-link {
    text-align: center !important;
    margin-bottom: 2rem;
}

@media only screen and (max-width: 1050px) {
    .cards-wrapper.w-33 .card-item {
        width: calc((100% / 2) - 2rem);
    }

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

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

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

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

    .card-item.p-5 {
        padding: 2rem;
    }
}

/* Card 1-1 */
.card-1-1 a.card-item {
    background: rgb(var(--primary-light-color), .5);
}

.card-1-1 a.card-item:hover {
    background: rgb(var(--primary-light-color));
}

.card-1-1 i {
    margin-right: 1rem;
}

/* Card 2-2 */
.card-2-2 a.card-item:hover {
    background: rgb(var(--gray-light-color));
}

.card-2-2 .card-header {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 7rem;
    height: 7rem;
    margin-bottom: 2rem;
    border-radius: 50%;
}

.card-2-2 .card-header i {
    font-size: 3rem;
}

/* Card 3-1 */
.card-3-1 .card-item {
    border-bottom: 3px solid rgb(var(--secondary-color));
    background-color: rgb(var(--white-color));
}

.card-3-1 a.card-item:hover .small-title {
    text-decoration: underline;
}

/* Card 3-2 */
.card-3-2 .image-wrapper {
    display: inline-block;
    max-width: 20rem;
    height: 20rem;
    border-radius: 50%;
}

.card-3-2 .small {
    display: inline-block;
    max-width: 10rem !important;
    height: 10rem !important;
    border-radius: 50%;
}

.card-3-2 .contact-item i {
    margin-right: 1rem;
}

.section-news .of-wrapper img {
    position: static;
    transform: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
}

/* Card 3-4 */
.card-3-4 .card-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 1rem;
    border-radius: 5px;
    background: rgb(var(--gray-light-color));
    border: 1px solid rgb(var(--primary-color), .1);

}

.card-3-4 .card-item:hover {
    background: rgb(var(--white-color));
}

.card-3-4 .image-wrapper {
    width: 12rem;
    border-radius: 5px;
}

.card-3-4 .card-body {
    flex: 1 1 0px;
}

.card-3-4 .contact-item i {
    margin-right: 1rem;
}

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

    .card-3-4 .image-wrapper {
        width: 5rem;
    }

    .card-3-4 .card-body {
        padding: 0 0 0 1rem;
    }

    .card-3-4 .small-title {
        font-size: 1.6rem;
        padding: 0 0 5px;
    }

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

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

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

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

.split-image {
    width: 50%;
    transition: .3s ease !important
}

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

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

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



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

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

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

@media screen and (max-width: 580px) {
    .split-wrapper {
        background: transparent;
    }

    .split-content {
        padding: 0 0 3rem 0;
    }
}

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

header .container {
    max-width: none;
}

/* Logo */
.header-logo {
    margin: 0 auto 0 0;
}

/* Nav */
.TemplateMenu a {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    color: rgb(var(--white-color));
    overflow: auto;
}

.TemplateMenu>li>a:hover {
    color: rgb(var(--tertiary-color));
}

.TemplateMenu li.active>a,
.TemplateMenu ul a:hover {
    overflow: auto;
    color: rgb(var(--primary-color));
    color: rgb(var(--secondary-color));
}

.TemplateMenu ul {
    overflow: scroll;
}

/* Dropdown */
.TemplateMenu ul {
    background-color: rgb(var(--primary-light-color));
}

.TemplateMenu ul a {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.4;
    margin: 1.5rem 0;
    color: rgb(var(--black-color));
}

.EditMode .TemplateMenu ul {
    height: 40rem;
    overflow: auto;
}

/* CTA  */
.header-cta-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
    margin: 0 0 0 2rem;
    list-style: none;
}

.header-cta-wrapper li {
    margin: 0 .5rem;
}

.header-cta-wrapper .btn {
    min-width: unset;
    padding: 1rem 2rem;
    line-height: 1;
}

@media only screen and (max-width: 580px) {
    /* Header CTA */
    .header-cta-wrapper .btn {
        min-width: unset;
        padding: 0.7rem 1.5rem;
    }
}

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

/* Top-section
========================================================================== */
.top-section {
    background-color: rgb(var(--primary-color), .2);
}

.top-section .split-content {
    padding-top: 0;
    padding-bottom: 0;
}

.top-section .section-title {
    /* max-width: 38rem; */
    font-size: 4rem;
    color: rgb(var(--white-color));
}

.top-section p {
    color: rgb(var(--white-color));
}

@media only screen and (max-width: 1200px) {
    .top-section .split-wrapper {
        flex-direction: column-reverse;
    }

    .top-section .split-content {
        width: 100%;
        padding-top: 5rem;
    }

    .top-section .split-image {
        width: 100%;
    }
}

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

/* Undermeny for nyheter (.section-news-submenu)
========================================================================== */

.section-news-submenu .col-0 {
    width: 75%;
}

.section-news-submenu .col-1 {
    width: 25%;
}

.section-news-submenu .split-wrapper {
    padding: 5rem 0rem;
}

.section-news-submenu .split-content {
    padding: 0rem 5rem;
}

.old-news .small-title {
    font-size: 1.9rem;
}

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

    .section-news-submenu .col-0 {
        width: 100%;
        padding: 0 0 5rem;
    }

    .section-news-submenu .col-1 {
        width: 100%;
        padding: 0;
    }

    .section-news-submenu .split-content {
        padding: 0 0 0 5rem;
    }

    .section-news-submenu .split-wrapper {
        padding: 0 0 5rem;
    }
}

@media only screen and (max-width: 1000px) {
    .section-news-submenu .split-content {
        padding: 3rem 0 0;
    }
}

/* CTA-sektion (.section-cta)
========================================================================== */
.video-wrapper {
    position: relative;
}

/* Play */
.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transition: .4s ease;
}

.video-wrapper:hover .play-overlay {
    opacity: 1;
    visibility: visible;
    background: rgba(var(--black-color), .7);
}

.play-overlay em {
    color: rgb(var(--secondary-color));
    font-size: 5rem;
    transition: .4s ease;
}

.video-wrapper:hover .play-overlay em {
    font-size: 3.5rem;
}

.play-overlay p {
    display: inline-block;
    color: rgb(var(--white-color));
    margin-left: 1.5rem;
    font-size: 0;
    transition: .4s ease;
}

.video-wrapper:hover .play-overlay p {
    font-size: 2rem;
}

/* Video */
.section-video .fancybox-video {
    display: none;
}

/* Bildspel (.section-gallery)
========================================================================== */
.section-gallery {
    overflow: hidden;
}

.section-gallery .card-item {
    margin: 0 1rem;
    transition: all .3s ease;
}

.section-gallery .card-item[aria-hidden="true"] {
    opacity: .5;
    transform: scale(.9);
}

/* Slick Slider */
.section-gallery .slick-list {
    width: calc(100% - 3rem);
    overflow: visible;
}

/* Knappar */
.section-gallery .slick-arrow {
    z-index: 2;
    position: absolute;
    top: 50%;
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background-color: rgb(var(--white-color));
    opacity: .95;
    transform: translateY(-50%);
}

.section-gallery .slick-prev {
    left: 4rem;
}

.section-gallery .slick-next {
    right: 4rem;
}

.section-gallery .slick-arrow::after {
    font-weight: 300;
}

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

    /* Slick Slider */
    .section-gallery .slick-list {
        width: calc(100% - 3rem);
    }
}

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

    /* Card */
    .section-gallery .card-item {
        margin: 0;
    }

    /* Pilar */
    .section-gallery .slick-arrow {
        width: 3.5rem;
        height: 3.5rem;
    }

    .section-gallery .slick-prev {
        left: 3rem;
    }

    .section-gallery .slick-next {
        right: 3rem;
    }
}


/* ==========================================================================
Undersidor: Samtliga
========================================================================== */
.img-gray {
    -webkit-filter: grayscale(100%);
    /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
}

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

.hero .section-block {
    display: flex;
    align-items: center;
    min-height: 55vh;
    /* margin-top: calc(-1 * var(--menu-height)); */
}

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

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

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

/* ==========================================================================
Undersida Opinion
========================================================================== */

/* Kolumn 0 */
.section-news .col-0 {
    border-right: 1px solid rgb(var(--primary-color));
}

.btn-wrapper-opinion {
    padding-top: 2rem;
}

/* Kolumn 1 */
.section-news .col-1 .card-3-1 .small-title {
    font-size: 2rem;
}

.section-news .date {
    font-size: 1.5rem;
}

/* Senaste nyheter */
.latest-news .card-item {
    position: relative;
}

.latest-news .card-body {
    padding: 0;
}

.latest-news .card-body>* {
    display: none;
}

.latest-news .card-body .btn-wrapper-opinion {
    display: block;
    padding: 0;
}

.latest-news .card-body .btn {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    font-size: 0;
    background-color: transparent;
    border-radius: 0;
    border: none;
}

.latest-news .card-body .btn:hover {
    background-color: rgb(var(--primary-light-color), .5);
}

/* Gamla nyheter */
.old-news .card-item .image-wrapper {
    display: none;
}

/* Paginering */
.section-news .simple-pagination ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.section-news .simple-pagination li {
    margin: 0 .3rem .3rem;
}

.section-news .simple-pagination a,
.section-news .simple-pagination span {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.4rem;
    line-height: 20px;
    padding: .2rem 1rem;
    border-radius: 5px;
    border: 1px solid rgb(var(--primary-color), .5);
    background: rgb(var(--white-color));
    box-shadow: none;
}

.section-news .simple-pagination li.active span,
.section-news .simple-pagination li.active a,
.section-news .simple-pagination li.disabled span,
.section-news .simple-pagination li.disabled a {
    border: 1px solid rgb(var(--primary-color));
    background: rgb(var(--primary-color));
}

.light-theme a,
.light-theme span {
    color: rgb(var(--white-color));
    border: rgb(var(--primary-color));
    background: rgb(var(--primary-color));
    box-shadow: none;
    text-decoration: none;
    padding: 0 12px;

}

.light-theme .ellipse {
    border-radius: 10px;

}


/* Bildspel
========================================================================== */
.section-scroll {
    overflow: hidden;
}

/* Slider */
.scroll-wrapper.cards-wrapper {
    margin-bottom: 5rem;
}

.scroll-wrapper.cards-wrapper .slick-list {
    width: 100%;
    overflow: visible;
}

.scroll-wrapper.cards-wrapper .slick-track {
    display: flex;
}

.scroll-wrapper.cards-wrapper .card-item {
    display: flex;
    height: auto;
    margin: 0 1rem;
    transition: all .3s ease;
}

.scroll-wrapper.cards-wrapper .card-item[aria-hidden="true"] {
    opacity: .5;
    transform: scale(.9);
}


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

    /* Kolumn 0 */
    .section-news .col-0 {
        border-right: none;
    }

    /* Kolumn 1 */
    .section-news .col-1 {
        margin-top: 5rem;
    }
}

/* ==========================================================================
Undersida: Opinion > Enskild sida
========================================================================== */
img.alignleft {
    display: inline;
    float: left;
    margin-right: 15px;
}

.iframe-wrapper {
    max-width: 750px;
    margin: auto;
}

@media only screen and (max-width: 580px) {
    .ingress.border-left-secondary {
        font-size: 1.6rem;
        padding-left: 1rem;
    }
}

/* 
Formular för ladda ned PDF
========================================================================== */


/* Formular*/
.section-sign-up .ContactForm {
    display: flex;
    max-width: 70rem;
    margin: 0 auto;
}

.section-sign-up .ContactForm p,
.section-sign-up .ContactForm div:not(.ContactFormEmail) {
    display: none;
}

.section-sign-up .ContactForm div.ContactFormEmail {
    width: calc(100% - 20rem);
    margin: 0;
}

.section-sign-up .ContactForm div.ContactFormEmail input {
    height: 100%;
    border-radius: 3rem 0 0 3rem;
}

/* Knapp */
.ContactForm .ContactSubmit {
    width: 20rem;
    padding: 1.5rem 0;
    margin: 0;
    text-align: center;
    color: rgb(var(--white-color));
    background-color: rgb(var(--primary-color));
    border: 1px solid rgb(var(--primary-color));
    border-radius: 0 3rem 3rem 0;
}

.ContactForm .ContactSubmit:hover {
    background-color: rgb(var(--secondary-color));
    border: 1px solid rgb(var(--secondary-color));
}

@media only screen and (max-width: 520px) {
    .section-sign-up .ContactForm {
        flex-wrap: wrap;
    }

    .section-sign-up .ContactForm div.ContactFormEmail {
        width: 100%;
    }

    .section-sign-up .ContactForm div.ContactFormEmail input {
        height: 100%;
        padding: 1.5rem 1.5rem;
        border-radius: 1.5rem 1.5rem 0 0;
    }

    /* Knapp */
    .ContactForm .ContactSubmit {
        width: 100%;
        padding: 1.5rem 0;
        border-radius: 0 0 1.5rem 1.5rem;
    }
}


/* ==========================================================================
Undersida Förtroenderåd
========================================================================== */
.fortroende-split .col-0 {
    background: rgb(var(--primary-color));
    padding: 5rem;
    margin: auto;
}

.fortroende-split .col-1 {
    background: rgb(var(--primary-light-color));
    padding: 5rem;
}

.img-box {
    height: 15rem;
    margin-bottom: 2rem;
}

.text-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 30rem;
    max-width: 60rem;
    margin: auto;
}

@media only screen and (max-width: 1024px) {
    .fortroende-split .col-block {
        padding: 5rem 3rem;
    }
}

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

/* ==========================================================================
Undersida Podd
========================================================================== */

.img-hover:hover {
    transform: scale(1.05);
}

.podd-img {
    transition: .3s ease;
}

.link-text {
    font-size: 1.4rem !important;
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 1em;
    text-decoration: none;
}

.link-text:hover {
    text-decoration: underline;
}

.icon-wrapper {
    margin-top: 2rem;
}

.podd-btn {
    font-size: 1.5rem;
}

/* ==========================================================================
Undersida: Illustra
========================================================================== */
.section-apply .section-block-wrapper {
    background-color: rgb(var(--primary-color));
    padding: 3rem 5rem 5rem 0;
}

.section-apply .col-1,
.section-apply .col-3 {
    padding: 4rem 5rem;
}

.section-apply .col-2 {
    background-color: rgb(var(--white-color));
    padding: 4rem;
}

.section-apply .expand-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.section-apply .expand-wrapper p {
    font-size: 1.5rem;
}

.section-apply .expand-wrapper a {
    padding-bottom: 0.5em;
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.8;
    font-style: normal;
    font-family: inherit;
}

@media only screen and (max-width: 590px) {
    .section-apply .section-block-wrapper {
        padding-right: 0;
    }

    .section-apply .section-block {
        padding: 5rem 0;
    }

    .section-apply .section-title {
        text-align: center;
    }

    .section-apply .col-1,
    .section-apply .col-2,
    .section-apply .col-3 {
        padding: 2rem;
    }

}

/* Vanliga frågor
========================================================================== */
.accordion-item {
    margin-bottom: 1rem;
    border-radius: 1rem;
    background: rgb(var(--gray-light-color));
    transition: .3s ease;
}

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

.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(--primary-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: 580px) {
    .accordion-wrapper {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .accordion-header {
        padding: 1.5rem 3rem 1.5rem 1.5rem;
    }

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

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

/* ==========================================================================
Undersida: Stod oss
========================================================================== */
.section-donate .col-0 {
    padding: 10rem 5rem 10rem 10rem;
    background: rgb(var(--primary-color));
}

.section-donate .col-1 {
    padding: 10rem 10rem 10rem 5rem;
    background: rgb(var(--primary-light-color));
}


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

    .section-donate .col-0,
    .section-donate .col-1 {
        padding: 10rem 5rem;
    }
}

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

    .section-donate .col-0,
    .section-donate .col-1 {
        width: 100%;
        padding: 10rem 5rem;
    }
}

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

    .section-donate .col-0,
    .section-donate .col-1 {
        padding: 5em 2rem;
    }
}

/* ==========================================================================
Undersida: Tack for ditt meddelande
========================================================================== */
.section-message .section-block {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
}

.section-message .section-block-wrapper {
    width: 100%;
}

/* ==========================================================================
undersida kontakt
========================================================================== */
.ContactForm input[type="text"],
.ContactForm textarea {
    border: 1px solid rgb(var(--primary-light-color));
    background-color: rgb(var(--primary-light-color), .5);
    border-radius: 0.5rem;
}

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

/* Footer top */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 8rem 0 5rem;
    border-bottom: 1px solid rgba(var(--white-color), .2);
}

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

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

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

.footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-top li,
.footer-top p,
.footer-top a:not(.circle-icon) {
    color: rgb(var(--white-color));
}

/* Social Menu */
.social-menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.social-menu a {
    font-size: 1.4rem;
    color: rgb(var(--white-color));
    padding: 5px 10px;
    border-radius: 2rem;
    line-height: 1;
    text-decoration: none;
    transition: all .3s ease;
}

.social-menu a:hover {
    background-color: rgb(var(--white-color));
    color: rgb(var(--black-color));
    transition: all .3s ease;
}

/* Footer bottom */
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid rgb(var(--white-color), .2);
}

.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();
}

/* Mailchimp */
.form-footer {
    border-left: 1px solid rgba(var(--white-color), .2);
    padding-left: 2rem;
}

/* MailChimp Form Embed Code - Classic - 12/17/2015 v10.7 */
#mc_embed_signup form {
    display: block;
    position: relative;
    text-align: left;
    margin: 20px
}

#mc_embed_signup h2 {
    font-weight: bold;
    padding: 0;
    margin: 15px 0;
    font-size: 1.4em;
}

#mc_embed_signup input {
    border: 1px solid rgba(var(--white-color), .1);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background-color: rgba(var(--white-color), .1);
    color: rgb(var(--white-color));
}

#mc_embed_signup input[type=checkbox] {
    -webkit-appearance: checkbox;
}

#mc_embed_signup input[type=radio] {
    -webkit-appearance: radio;
}

#mc_embed_signup input:focus {
    border-color: rgb(var(--secondary-color));
}

#mc_embed_signup .button {
    clear: both;
    background-color: rgb(var(--secondary-color));
    border: 0 none;
    border-radius: 3rem;
    transition: all 0.23s ease-in-out 0s;
    color: rgb(var(--white-color));
    cursor: pointer;
    display: inline-block;
    font-size: 15px;
    font-weight: normal;
    height: 32px;
    line-height: 32px;
    margin: 0 5px 10px 0;
    padding: 0 22px;
    text-align: center;
    text-decoration: none;
    vertical-align: top;
    white-space: nowrap;
    width: fit-content;
    width: -moz-fit-content;
}

#mc_embed_signup .button:hover {
    background-color: rgb(var(--primary-light-color));
}

#mc_embed_signup .small-meta {
    font-size: 11px;
}

#mc_embed_signup .nowrap {
    white-space: nowrap;
}

#mc_embed_signup .mc-field-group {
    clear: left;
    position: relative;
    width: 96%;
    padding-bottom: 3%;
    min-height: 50px;
    display: grid;
}

#mc_embed_signup .size1of2 {
    clear: none;
    display: inline-block;
    width: 46%;
    margin-right: 4%;
}

* html #mc_embed_signup .size1of2 {
    margin-right: 2%;
    /* Fix for IE6 double margins. */
}

#mc_embed_signup .mc-field-group label {
    display: block;
    margin-bottom: 3px;
    color: rgb(var(--white-color));
}

#mc_embed_signup .mc-field-group input {
    display: block;
    width: 100%;
    padding: 8px 0;
    text-indent: 2%;
}

#mc_embed_signup .mc-field-group select {
    display: inline-block;
    width: 99%;
    padding: 5px 0;
    margin-bottom: 2px;
}

#mc_embed_signup .mc-address-fields-group {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 96%;
    gap: 15px;
}

#mc_embed_signup .datefield,
#mc_embed_signup .phonefield-us {
    padding: 5px 0;
}

#mc_embed_signup .datefield input,
#mc_embed_signup .phonefield-us input {
    display: inline;
    width: 60px;
    margin: 0 2px;
    letter-spacing: 1px;
    text-align: center;
    padding: 5px 0 2px 0;
}

#mc_embed_signup .phonefield-us .phonearea input,
#mc_embed_signup .phonefield-us .phonedetail1 input {
    width: 40px;
}

#mc_embed_signup .datefield .monthfield input,
#mc_embed_signup .datefield .dayfield input {
    width: 30px;
}

#mc_embed_signup .datefield label,
#mc_embed_signup .phonefield-us label {
    display: none;
}

#mc_embed_signup .indicates-required {
    font-size: 11px;
    margin-right: 4%;
    color: rgb(var(--white-color));
}

#mc_embed_signup .asterisk {
    color: #e85c41;
    font-size: 150%;
    font-weight: normal;
    position: relative;
    top: 5px;
}

#mc_embed_signup .clear {
    clear: both;
}

#mc_embed_signup .foot {
    display: grid;
    grid-template-columns: 3fr 1fr;
    width: 96%;
    align-items: center;
}

@media screen and (max-width:400px) {
    #mc_embed_signup .foot {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        align-items: center;
    }
}

@media screen and (max-width:400px) {
    #mc_embed_signup .referralBadge {
        width: 50%;
    }
}

#mc_embed_signup .brandingLogo {
    justify-self: right;
}

@media screen and (max-width:400px) {
    #mc_embed_signup .brandingLogo {
        justify-self: left;
    }
}

#mc_embed_signup .mc-field-group.input-group ul {
    margin: 0;
    padding: 5px 0;
    list-style: none;
}

#mc_embed_signup .mc-field-group.input-group ul li {
    display: block;
    padding: 3px 0;
    margin: 0;
}

#mc_embed_signup .mc-field-group.input-group label {
    display: inline;
}

#mc_embed_signup .mc-field-group.input-group input {
    display: inline;
    width: auto;
    border: none;
}

#mc_embed_signup div#mce-responses {
    float: left;
    top: -1.4em;
    padding: 0em .5em 0em .5em;
    overflow: hidden;
    width: 90%;
    margin: 0 5%;
    clear: both;
}

#mc_embed_signup div.response {
    margin: 1em 0;
    padding: 1em .5em .5em 0;
    font-weight: bold;
    float: left;
    top: -1.5em;
    z-index: 1;
    width: 80%;
}

#mc_embed_signup #mce-error-response {
    display: none;
}

#mc_embed_signup #mce-success-response {
    color: #529214;
    display: none;
}

#mc_embed_signup label.error {
    display: block;
    float: none;
    width: auto;
    margin-left: 1.05em;
    text-align: left;
    padding: .5em 0;
}

#mc_embed_signup .helper_text {
    color: rgb(var(--white-color));
    margin-top: 2px;
    display: inline-block;
    padding: 3px;
    background-color: rgb(var(--primary-color), .8);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: normal;
    z-index: 1;
}

#mc-embedded-subscribe {
    clear: both;
    width: auto;
    display: block;
    margin: 1em 0 1em 5%;
}

#mc_embed_signup #num-subscribers {
    font-size: 1.1em;
}

#mc_embed_signup #num-subscribers span {
    padding: .5em;
    border: 1px solid #ccc;
    margin-right: .5em;
    font-weight: bold;
}

#mc_embed_signup #mc-embedded-subscribe-form div.mce_inline_error {
    display: inline-block;
    margin: 2px 0 1em 0;
    padding: 3px;
    background-color: rgba(255, 255, 255, 0.85);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: normal;
    z-index: 1;
    color: #e85c41;
}

#mc_embed_signup #mc-embedded-subscribe-form input.mce_inline_error {
    border: 2px solid #e85c41;
}

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

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

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

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

    /* Mailchimp */
    .form-footer {
        border-top: 1px solid rgba(var(--white-color), .2);
        border-left: none;
        padding: 2rem 0 0;
    }
}

@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;
    }
}