/* KTI Tvätt Sverige */

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

/* Fonts */
@font-face {
    font-family: 'Helvetica Now Text';
    src: url('/assets/fonts/helvetica-now-text-regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Helvetica Now Text Bold';
    src: url('/assets/fonts/helvetica-now-text-bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Helvetica Now Display';
    src: url('/assets/fonts/helvetica-now-display-regular.ttf') format('truetype');
}

/* ==========================================================================
Generellt 
========================================================================== */
:root {
    /* 	Colors */
    --primary-color: 43, 41, 101;
    --secondary-color: 42, 167, 55;

    --accent-green-color: 62, 104, 66;

    --black-color: 17, 17, 17;
    --gray-dark-color: 58, 58, 58;
    --gray-color: 197, 197, 201;
    --gray-light-color: 243, 245, 246;
    --white-color: 255, 255, 255;

    /* 	Layout  */
    --section-width: 150rem;
    --col-padding: 3rem;
    --menu-height: 8rem;
    --menu-height-scrolled: 8rem;

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

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

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

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

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

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

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

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

/* Ovriga klasser */
.justify-center {
    justify-content: center;
}

.inline-block {
    display: inline-block;
}

.of-hidden {
    overflow: hidden;
}

@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: 'Helvetica Now Text', Arial, sans-serif;
}

/* Rubriker */
.text-label {
    padding-bottom: 1em;
    font-size: 1.4rem;
    font-weight: 400;
    color: rgb(var(--primary-color));
    font-family: 'Helvetica Now Text Bold', Arial, sans-serif;
}

.section-title {
    padding-bottom: .3em;
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1.2;
    font-family: 'Helvetica Now Display', Arial, sans-serif;
}

.small-title {
    padding-bottom: .3em;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.4;
    font-family: 'Helvetica Now Display', Arial, sans-serif;
}

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

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

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

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

.text-bold {
    font-family: 'Helvetica Now Text Bold', Arial, sans-serif;
}

.text-center {
    text-align: 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 */
    .text-label {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 3.4rem;
    }
}

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

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

/* Knappar */
.btn,
.ContactSubmit {
    min-width: 15rem;
    padding: 1.4rem 2rem;
    margin: 5px;
    font-weight: 400;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    border-radius: 2rem;
    text-align: center;
    text-decoration: none;
    font-family: 'Helvetica Now Text Bold', Arial, sans-serif;
    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,
.ContactSubmit:focus {
    color: rgb(var(--primary-color));
    background-color: transparent;
}

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

.btn-secondary-filled:hover,
.guide-step-next:hover,
.guide-step-prev:hover {
    color: rgb(var(--secondary-color));
    background-color: transparent;
}

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

.btn-white-filled:hover {
    color: rgb(var(--white-color));
    background-color: transparent;
}

/* Arrow link */
.arrow-link {
    padding-right: 1rem;
    font-size: var(--base-size);
    color: rgb(var(--gray-dark-color));
    text-decoration: none;
}

.btn.arrow-link {
    font-size: 1.2rem;
}

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

/* Cirkelikon */
.circle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    padding: 0;
    margin: .5rem;
    font-size: 0;
    color: rgb(var(--white-color));
    text-decoration: none;
    border-radius: 50%;
    background-color: rgb(var(--primary-color));
    transition: .3s ease;
}

.circle-icon:hover {
    color: rgb(var(--white-color));
    background-color: rgb(var(--primary-color));
}

.circle-icon em:before,
.circle-icon i:before {
    font-size: var(--base-size);
}

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

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

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

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

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

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

/* Grafiska element
========================================================================== */
/* Border radius */
.br-2 {
    border-radius: 2rem;
    overflow: hidden;
}

/* Object position */
.of-wrapper img.op-50-20 {
    object-position: 50% 20%;
}

.of-wrapper img.op-50-65 {
    object-position: 50% 65%;
}

/* Bakgrundsbilder och videos 
========================================================================== */
.bg-image,
.bg-video,
.bg-crossfade {
    position: relative;
    overflow: hidden;
}

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

/* Crossfade */
.fade-slider {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.fade-slider div {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.fade-slider.slick-slider {
    position: absolute;
}

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

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

.card-item {
    text-decoration: none;
}

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

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

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

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

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

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

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

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

    /* Bredder */
    .cards-wrapper.w-25 .card-item,
    .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-20 .card-item {
        width: calc((100% / 3) - 1rem);
        margin: .5rem;
    }

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

    /* Paddings */
    .cards-wrapper .p-3 {
        padding: 2rem;
    }
}

/* Card 2-5 */
.card-2-5 .card-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 1rem;
    transition: .3s ease;
}

.card-2-5 a.card-item:hover {
    background-color: rgb(var(--gray-color));
}

.card-2-5 .card-header {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: .5rem;
}

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

.card-2-5 .card-body {
    padding: 0 2rem;
}

/* Card 3-1 */
.card-3-1 .logo-wrapper {
    height: 15rem;
}

/* Cards 3-5 */
.card-3-5 .card-item {
    position: relative;
    padding: 2rem;
    border-radius: 2rem;
    overflow: hidden;
}

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

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

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

.card-3-5 .card-body {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 30rem;
    padding-bottom: 0;
    border: 1px solid rgb(var(--white-color));
    border-bottom: none;
    border-radius: 1rem 1rem 0 0;
}

.card-3-5 .card-footer {
    z-index: 1;
    position: relative;
    display: flex;
    height: 3rem;
}

.card-3-5 .card-footer::before,
.card-3-5 .card-footer::after {
    position: relative;
    display: inline-block;
    content: '';
    flex: 1 1 0px;
    border-bottom: 1px solid rgb(var(--white-color));
}

.card-3-5 .card-footer::before {
    margin-right: 2rem;
    border-radius: 0 0 0 1rem;
    border-left: 1px solid rgb(var(--white-color));
}

.card-3-5 .card-footer::after {
    margin-left: 2rem;
    border-radius: 0 0 1rem 0;
    border-right: 1px solid rgb(var(--white-color));
}

.card-3-5 .arrow-link {
    align-self: flex-end;
    font-size: 1.4rem;
    transform: translateY(50%);
}

.card-3-5 .arrow-link::after {
    display: none;
}

@media only screen and (max-width: 680px) {
    .card-3-5 .card-body {
        min-height: 20rem;
    }
}

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

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

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

.split-image,
.split-video {
    width: 50%;
}

/* Split video */
.split-video video,
.split-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

@media screen and (max-width: 1000px) {
    .split-content {
        width: 100%;
    }

    .split-image {
        width: 100%;
    }

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

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

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

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

    .split-wrapper p.text-white,
    .split-wrapper li.text-white {
        color: rgb(var(--gray-dark-color));
    }

    .split-image,
    .split-video {
        border-radius: 2rem;
    }
}

/* Gridsplit
========================================================================== */
.grid-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 15rem 1fr;
    gap: 2rem;
}

.grid-split>* {
    width: 100%;
    min-height: 25rem;
    border-radius: 2rem;
}

.grid-split>*:nth-of-type(1) {
    grid-row: 1 / 3;
}

.grid-split>*:nth-of-type(3) {
    grid-row: 2 / 4;
    grid-column-start: 2;
}

.grid-split img {
    position: absolute;
    transform: translate(-50%, -50%);
}

@media only screen and (max-width: 1000px) {
    .grid-split>* {
        min-height: none;
    }

    .grid-split {
        display: flex;
        flex-wrap: wrap;
    }

    .grid-split .split-image {
        min-height: 45rem;
    }
}

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

    .grid-split .split-image {
        min-height: 25rem;
    }
}

/* Header / Navigation
========================================================================== */
header {
    border-bottom: 1px solid rgb(var(--gray-light-color));
}

header:not(.scrolled) {
    border-color: transparent;
}

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

/* Nav */
.TemplateMenu a {
    font-size: 1.4rem;
    font-weight: 400;
    color: rgb(var(--black-color));
}

/* Andra dropdown */
.header:not(.mobile-menu) .TemplateMenu>li>ul>li>ul {
    width: 23rem;
    right: -22.8rem;
}

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

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

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

/* Mobilmeny */
.mobile-menu .Padding {
    padding-bottom: 16rem;
}

.mobile-menu .TemplateMenu>li>a,
.mobile-menu.scrolled .TemplateMenu>li>a,
.mobile-menu .TemplateMenu ul a {
    font-size: 1.5rem;
    line-height: 3;
}

.mobile-menu .TemplateMenu ul {
    background-color: transparent;
}

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

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

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

/* Top-section
========================================================================== */
.top-section {
    margin: 1rem 2rem 2rem;
    border-radius: 2rem;
    overflow: hidden;
}

.top-section .cards-wrapper {
    margin: 0;
}

.top-section .card-item {
    position: relative;
    display: flex;
    align-items: center;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0%;
    min-height: calc(100vh - var(--menu-height) - 3rem);
    transition: flex-grow .6s ease;
}

.top-section .card-item:hover {
    flex-grow: 2;
}

.top-section .image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .3s ease;
}

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

.top-section .card-item:hover .image-wrapper::after {
    background: rgba(var(--black-color), .4);
}

.top-section .card-body {
    position: relative;
    width: 100%;
}

@media only screen and (max-width: 1024px) {
    .top-section .cards-wrapper .card-item {
        flex-basis: unset;
        min-height: calc((100vh / 2) - var(--mobile-menu-height));
    }

    .top-section .cards-wrapper .card-item:nth-child(1) {
        width: 100%;
    }

    .top-section .cards-wrapper .card-item:nth-child(2),
    .top-section .cards-wrapper .card-item:nth-child(3) {
        width: 50%;
    }
}

@media only screen and (max-width: 680px) {
    .top-section .cards-wrapper .card-item {
        flex-basis: unset;
        min-height: calc((100vh / 3) - var(--mobile-menu-height));
    }

    .top-section .cards-wrapper .card-item:nth-child(2),
    .top-section .cards-wrapper .card-item:nth-child(3) {
        width: 100%;
    }
}

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

/* Hero - Grundkod
========================================================================== */
.hero {
    display: flex;
    align-items: center;
    min-height: 45rem;
    margin: 1rem 2rem 2rem;
    border-radius: 2rem;
    background-color: rgb(var(--black-color), .3);
}

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

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

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

    .hero {
        min-height: 25rem;
    }

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

/* Subnav
========================================================================== */
.section-subnav .section-block-wrapper {
    align-items: flex-start;
}

.section-subnav .col-0 {
    width: 35rem;
    padding: 3rem;
    border-radius: 2rem;
    background: rgb(var(--gray-light-color));
}

.section-subnav .col-1 {
    width: calc(100% - 55rem);
    padding-left: 10rem;
}

.section-subnav .col-0 .small-title {
    padding-bottom: 2rem;
    font-size: 2.1rem;
    font-family: 'Helvetica Now Text Bold', Arial, sans-serif;
}

.subnav {
    padding: 0;
    margin: 0;
    list-style: none;
    background: rgb(var(--gray-light-color));
}

.subnav a {
    padding: .5rem .5rem .5rem 1.8rem;
    font-size: 1.5rem;
    text-decoration: none;
    border-left: 2px solid rgb(var(--gray-color));
    transition: .3s ease;
}

.subnav a:hover {
    color: rgb(var(--primary-color));
    border-color: rgb(var(--primary-color));
}

.subnav a.active {
    color: rgb(var(--secondary-color));
    border-color: rgb(var(--secondary-color));
}

@media only screen and (max-width: 1150px) {
    .section-subnav .section-block-wrapper {
        flex-direction: column-reverse;
    }

    .section-subnav .col-0 {
        width: 100%;
        text-align: center;
    }

    .section-subnav .col-1 {
        width: 100%;
        padding-left: 0;
    }

    .section-subnav .col-0 .small-title {
        padding-bottom: 1rem;
    }

    .subnav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .subnav a {
        padding: 5px 2rem 5px 0;
        border: none;
    }
}

@media only screen and (max-width: 680px) {
    .section-subnav .col-0 {
        padding: 2rem;
    }
}

/* ==========================================================================
Undersida: Om oss
========================================================================== */
/* Timeline */
.timeline-wrapper {
    position: relative;
    max-width: 90rem;
    margin: 0 auto;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: rgb(var(--gray-light-color));
}

.timeline-item {
    position: relative;
    width: 40%;
}

.timeline-item.item-left {
    margin: 0 0 0 auto;
}

.timeline-item:before {
    content: '';
    z-index: 1;
    position: absolute;
    top: 50%;
    left: 122.1%;
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 50%;
    background: rgb(var(--primary-color));
    border: 2px solid rgb(var(--secondary-color));
    transform: translateY(-50%);
}

.item-left.timeline-item:before {
    left: -27.8%;
}

.timeline-item .small-title {
    font-size: 2.2rem;
    font-weight: 700;
}

@media only screen and (max-width: 980px) {
    .timeline-wrapper::before {
        left: 1rem;
    }

    .timeline-item {
        width: 100%;
        padding: 2rem 7rem;
    }

    .timeline-item:before,
    .item-left.timeline-item:before {
        left: -.5rem;
    }
}

@media only screen and (max-width: 680px) {
    .timeline-item {
        padding: 1rem 0 1rem 4rem;
    }

    .timeline-item .small-title {
        padding-bottom: 0;
        font-size: 1.8rem;
    }
}

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

/* Card item */
.scroll-wrapper .card-item {
    display: flex;
    flex-direction: column;
    margin: 0 2rem 0 0;
}

/* Slick Arrow */
.scroll-wrapper .slick-arrow {
    position: absolute;
    top: auto;
    bottom: -4rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: rgb(var(--primary-color));
}

.scroll-wrapper .slick-arrow::after {
    font-weight: 300;
    color: rgb(var(--white-color));
}

.scroll-wrapper .slick-next {
    right: 2rem;
}

.scroll-wrapper .slick-prev {
    left: auto;
    right: 6rem;
}

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

/* ==========================================================================
Undersida: Bli kund
========================================================================== */
.section-form .ContactForm {
    max-width: 90rem;
    padding: 5rem;
    margin: 0 auto;
    border-radius: 2rem;
    background-color: rgb(var(--gray-light-color));
}

.ContactForm>div.guide-step-field,
.ContactForm>div#submit-placeholder {
    margin-bottom: 0rem;
}

.ContactForm input[type="text"]:not(.illegal),
.ContactForm input[type="number"]:not(.illegal),
.ContactForm input[type="email"]:not(.illegal),
.ContactForm input[type="tel"]:not(.illegal),
.ContactForm input[type="date"]:not(.illegal),
.ContactForm input[type="datetime-local"]:not(.illegal),
.ContactForm select:not(.illegal),
.ContactForm textarea:not(.illegal),
.ContactForm .file-dropzone:not(.illegal) {
    background-color: rgb(var(--white-color));
    border-radius: 8px;
}

@media only screen and (max-width: 680px) {
    .section-form .ContactForm {
        padding: 2rem;
    }

    /* Steg for steg-knappar */
    .guide-step-navigation {
        flex-wrap: wrap;
    }

    .ContactForm .guide-submit-button {
        width: 100%;
        margin-left: 0;
    }

    .guide-step-navigation .btn,
    .guide-step-navigation .ContactSubmit,
    .ContactForm .guide-step-prev,
    .ContactForm .guide-step-next {
        min-width: 100%;
        margin: 1rem 0;
    }
}

/* ==========================================================================
Footer
========================================================================== */
.footer {
    --base-size: 1.4rem;
    padding: 0 5rem;
    background-color: rgb(var(--gray-light-color));
}

/* 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 .text-label {
    color: rgb(var(--black-color));
    padding: 0 0 1rem;
    line-height: 1;
}

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

.footer-top li {
    padding: 0 0 1rem;
}

.footer-top p,
.footer-top a {
    text-decoration: none;
}

.footer a:hover {
    text-decoration: none;
    color: rgb(var(--black-color));
}

/* Loggor */
.footer-socials {
    display: flex;
    align-items: center;
}

.footer-socials::before,
.footer-socials::after {
    position: relative;
    display: inline-block;
    content: '';
    flex: 1 1 0%;
    border-top: 1px solid rgb(var(--black-color));
}

.footer-socials::before {
    margin-right: 2rem;
}

.footer-socials::after {
    margin-left: 2rem;
}

.footer-socials img {
    width: 6rem;
    margin: 0 1rem
}

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

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

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

.webbess-stamp img {
    width: 2.5rem;
    margin-left: 1rem;
    opacity: .6;
}

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

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

    .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%;
    }

    /* Loggor */
    .footer-socials img {
        width: 4rem;
        margin: 0 4px;
    }
}

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

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

    .footer-menu {
        margin: 0;
    }

    /* Loggor */
    .footer-socials {
        justify-content: center;
        margin-bottom: 2rem;
    }

    .footer-socials::before,
    .footer-socials::after {
        display: none;
    }

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

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