/* Nafal Måleri AB */

/* Animationer */
@import url('/resources/scripts/aos/2.3.1/aos.css');

/* ==========================================================================
Generellt
========================================================================== */
:root {
    /* 	Colors */
    --primary-color: 1, 100, 6;

    --black-color: 17, 17, 17;
    --gray-dark-color: 58, 58, 58;
    --gray-color: 130, 130, 130;
    --gray-light-color: 243, 241, 237;
    --white-color: 255, 255, 255;
    --accent-green-color: 87, 167, 80;

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

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

    /* 	Mobile nav */
    --activate-mobile-menu: 1000;
    --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-2 .section-block,
.p-2:not(.section-wrapper) {
    padding: 2rem;
}

.pl-0 .section-block,
.pl-0:not(.section-wrapper) {
    padding-left: 0;
}

.pr-0 .section-block,
.pr-0:not(.section-wrapper) {
    padding-right: 0;
}

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

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

/* Ovrigt */
.display-flex {
    display: flex;
}

@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: 'Onest', sans-serif;
}

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

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

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

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

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

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

    .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: 7px;
    font-size: 1.4rem;
    font-weight: 600;
    border-radius: 2px;
    text-align: center;
    text-decoration: none;
    transition: all .4s ease;
}

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

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

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

/* Pulse btn */
.snake-btn {
    position: relative;
    background: transparent;
}

.snake-btn::before,
.snake-btn::after {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 2px;
    border: 2px solid rgb(var(--white-color));
    transition: all 0.5s;
    -webkit-animation: clippath 5s infinite linear;
    animation: clippath 5s infinite linear;
}

.snake-btn::after {
    -webkit-animation: clippath 5s infinite -2.5s linear;
    animation: clippath 5s infinite -2.5s linear;
}

@-webkit-keyframes clippath {
    0%, 100% {
        -webkit-clip-path: inset(0 0 98% 0);
        clip-path: inset(0 0 98% 0);
    }
    25% {
        -webkit-clip-path: inset(0 98% 0 0);
        clip-path: inset(0 98% 0 0);
    }
    50% {
        -webkit-clip-path: inset(98% 0 0 0);
        clip-path: inset(98% 0 0 0);
    }
    75% {
        -webkit-clip-path: inset(0 0 0 98%);
        clip-path: inset(0 0 0 98%);
    }
}

@keyframes clippath {
    0%, 100% {
        -webkit-clip-path: inset(0 0 98% 0);
        clip-path: inset(0 0 98% 0);
    }

    25% {
        -webkit-clip-path: inset(0 98% 0 0);
        clip-path: inset(0 98% 0 0);
    }

    50% {
        -webkit-clip-path: inset(98% 0 0 0);
        clip-path: inset(98% 0 0 0);
    }

    75% {
        -webkit-clip-path: inset(0 0 0 98%);
        clip-path: inset(0 0 0 98%);
    }
}

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

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

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

/* Overlays */
.overlay-primary-after {
    position: relative;
}

.overlay-primary-after::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(var(--primary-color), .4)
}

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

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

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

/* Bakgrundsbilder och videos
========================================================================== */
.bg-image {
    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;
}

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

.card-item {
    text-decoration: none;
    transition: all .3s ease;
}

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

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

@media only screen and (max-width: 750px) {
    .cards-wrapper.w-33 .card-item,
    .cards-wrapper.w-50 .card-item {
        width: 100%;
        margin: 1rem 0;
    }
}

/* Card 1-1 */
.card-1-1 .card-item {
    display: flex;
    align-items: center;
}

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

.card-1-1 .card-body {
    padding-left: 2rem;
}

@media only screen and (max-width: 480px) {
    .card-1-1 .card-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .card-1-1 .card-body {
        padding-top: 2rem;
        padding-left: 0;
    }
}

/* Card 3-1 */
.card-3-1 .card-item {
    border-radius: 2px;
    overflow: hidden;
}

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

/* 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%;
    border-radius: 2px;
}

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

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

@media screen and (max-width: 1000px) {
    .split-wrapper,
    .split-wrapper.reverse {
        flex-direction: column;
        background: transparent;
    }

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

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

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

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

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

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

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

.header-cta-wrapper .btn {
    min-width: unset;
    padding: 1rem 2rem;
    margin: 0;
    line-height: 1;
    white-space: nowrap;
}

/* Mobilmeny */
.mobile-menu .header-logo {
    flex: 1 1 0px;
}

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

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

/* Top-section
========================================================================== */
.top-section {
    display: flex;
    align-items: center;
    min-height: calc(100vh - var(--menu-height));
    background-color: rgb(var(--black-color), .5);
}

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

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

.top-section .section-title {
    font-size: 5.5rem;
}

.top-section p {
    max-width: 58rem;
}

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

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

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

/* CTA-sektion
========================================================================== */
.cta-wrapper {
    padding: 10rem 4rem 4rem;
    border-radius: 2px;
    background-image: linear-gradient(to right, rgb(var(--black-color), .5), rgb(var(--black-color), .3)), url('/assets/images/fargprover-2000px.jpg');
    background-size: cover;
    background-position: center;
}

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

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

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

/* Hero - Grundkod
========================================================================== */
.hero .section-block {
    display: flex;
    align-items: center;
    min-height: 50rem;
    background-image: linear-gradient(194deg, rgba(var(--primary-color), 0.7) 0%, rgba(var(--primary-color), 0.6) 100%);
    background-size: 50% 100%;
    background-repeat: no-repeat;
    background-position: center left;
}

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

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

@media only screen and (max-width: 580px) {
    .hero .section-block {
        max-width: 100%;
        min-height: 30rem;
        align-items: end;
    }

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

/* ==========================================================================
Undersida: Kontakt
========================================================================== */
.section-contact .section-block-wrapper {
    justify-content: space-between;
}

.section-contact .col-2 {
    max-width: 50rem;
    padding: 3rem;
    background: rgb(var(--gray-light-color));
}

@media only screen and (max-width: 980px) {
    .section-contact .col-2 {
        max-width: 100%;
        margin-top: 5rem;
    }
}

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

/* ==========================================================================
Footer
========================================================================== */
.footer {
    padding: 0 5rem;
    background-color: rgb(var(--gray-light-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 10rem;
}

.footer-menu {
    width: 15%;
}

.footer-menu-large {
    width: 30%;
    padding-right: 5rem;
}

.footer .text-label {
    padding: 0 0 1rem;
    line-height: 1;
    color: rgb(var(--primary-color));
}

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

.footer-top li,
.footer-top p,
.footer-top a {
    color: rgb(var(--gray-dark-color));
    text-decoration: none;
}

.footer-top a {
    transition: .2s ease;
}

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

.footer-top em {
    width: 2rem;
    margin-right: 5px;
    font-size: 1.4rem;
    text-align: center;
}
.logo-wrapper{
    display: flex;
}
.footer-logo{
    max-width: 12rem;
    padding: 1rem;
}

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

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

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

.social-menu a:hover {
    color: rgb(var(--white-color));
    background-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(--black-color), .5);
}

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

/* 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%;
        margin: 0 0 5rem;
    }

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

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

@media only screen and (max-width: 750px) {
    /* Footer top */
    .footer-top {
        padding: 5rem 0 0;
    }

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

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

    /* Footer top */
    .footer-menu {
        margin: 0 0 3rem;
    }

    /* Social Menu */
    .social-menu {
        justify-content: center;
    }

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

    .social-menu a {
        font-size: 1.2rem;
    }

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

    .footer-bottom p,
    .footer-bottom a {
        font-size: 1.3rem;
    }

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


/* ==========================================================================
Undersida: Produkter > Enskilda sidor
========================================================================== */

/* Bildspel */
.section-cart-product .gallery-slider {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    padding: 1rem;
    background: rgb(var(--gray-light-color));
}

.gallery-container .slick-list {
    width: 100%;
}

.gallery-container .slick-track {
    display: flex;
    max-height: calc(90vh - 10rem - 13rem);
}

.gallery-container .slick-slide {
    height: auto;
}

.gallery-container .image-wrapper {
    height: 100%;
}

.gallery-container .of-wrapper img {
    object-fit: contain;
    transition: transform 0.5s ease-out;
}

.gallery-slider .slick-arrow {
    position: absolute;
    z-index: 2;
    top: 50%;
    width: 4rem;
    height: 4rem;
}

.gallery-slider .slick-next {
    right: 0;
}

.gallery-slider .slick-prev {
    left: 0;
}

/* Thumbnails */
.gallery-thumbnails {
    display: flex;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.gallery-thumbnails .gallery-item {
    width: 6rem;
    height: 6rem;
    position: relative;
    padding: 5px;
    border: 1px solid rgb(var(--gray-light-color));
    margin: 0 5px 5px 0;
    border-radius: 3px;
}

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

    /* Bildspel */
    .gallery-container .slick-track {
        display: flex;
        max-height: 60vh;
    }
}

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

    /* Bildspel */
    .gallery-container .slick-track {
        display: flex;
        max-height: 50vh;
    }
}

/* ==========================================================================
Undersida: Varukorg (.section-cart-total)
========================================================================== */
.section-cart-total .remove-btn {
    max-width: 75rem;
    margin: 0 auto;
    text-align: right;
}

.section-cart-total .remove-btn p {
    display: inline-block;
    min-width: unset;
    padding: 0.5rem 1rem;
    margin: 0 0 2rem 0;
}

.cart-items-wrapper {
    max-width: 75rem;
    margin: 0 auto;
}

.cart-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 3rem;
    border: 1px solid rgb(var(--gray-color));
}

.cart-item .image-wrapper {
    width: 40%;
}

.cart-item .text-wrapper {
    width: 60%;
    padding: 2rem;
    text-align: left;
}

.cart-item .text-wrapper .cart-id {
    padding-bottom: 0;
}

.cart-item .small-title {
    padding-bottom: 0;
    font-size: 2.2rem;
    line-height: 1;
}

.cart-item .cart-product-total {
    padding-bottom: 1.3rem;
    font-size: 1.6rem;
    font-weight: 600;
}

.cart-item .cart-price {
    font-size: 1.8rem;
    font-weight: 400;
    border-bottom: 1px solid rgb(var(--gray-color), 0.3);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.cart-item p {
    font-size: 1.4rem;
}

.cart-decrease,
.cart-increase {
    font-size: 2rem;
    cursor: pointer;
}

.cart-toggle-wrapper input {
    padding: 1rem;
    text-align: center;
    margin: 0 .5rem;
}

.cart-total p {
    font-size: 2.4rem;
    margin-top: 3rem;
    padding-bottom: 0;
}

/* Falt som ska doljas */
.cart-taxrate {
    display: none;
}

@media only screen and (max-width: 1100px) {
    .cart-item .image-wrapper {
        width: 40%;
    }

    .cart-item .text-wrapper {
        width: 60%;
    }
}

@media only screen and (max-width: 868px) {
    .cart-item .image-wrapper {
        width: 50%;
    }

    .cart-item .text-wrapper {
        width: 50%;
    }
}

@media only screen and (max-width: 700px) {
    .cart-item .image-wrapper {
        width: 100%;
    }

    .cart-item .text-wrapper {
        width: 100%;
        padding: 3rem 2rem;
    }
}

/* ==========================================================================
Undersida: Varukorg > Produkter (section-cart-products)
========================================================================== */
.section-cart-products .col-0 {
    width: 25rem;
}

.section-cart-products .col-1 {
    width: calc(100% - 25rem);
}

.section-cart-products.product-categories .col-0 {
    width: 100%;
}

@media only screen and (max-width: 1550px) {
    .section-cart-products.product-categories .cards-wrapper.w-25 .card-item {
        width: calc((100% / 4) - 2rem);
    }

    .section-cart-products .badge {
        width: 9.1rem;
        height: 9.1rem;
    }
}

@media only screen and (max-width: 1350px) {
    .section-cart-products .badge {
        width: 8rem;
        height: 8rem;
    }
}

@media only screen and (max-width: 1250px) {
    .section-cart-products.product-categories .cards-wrapper.w-25 .card-item {
        width: calc((100% / 3) - 2rem);
    }

    .section-cart-products .badge {
        width: 7rem;
        height: 7rem;
    }
}

@media only screen and (max-width: 1180px) {
    .section-cart-products .badge {
        width: 6rem;
        height: 6rem;
        font-size: 1.2rem;
    }
}

/* @media only screen and (max-width: 1050px) {
    .section-cart-products .badge {
        width: 6.7rem;
        height: 6.7rem;
        font-size: 1.4rem;
    }
} */
@media only screen and (max-width: 900px) {
    .section-cart-products.product-categories .cards-wrapper.w-25 .card-item {
        width: calc((100% / 2) - 2rem);
    }
}

@media only screen and (max-width: 750px) {
    .section-cart-products.product-categories .cards-wrapper.w-25 .card-item {
        width: 100%;
    }

    .section-cart-products .badge {
        width: 10rem;
        height: 10rem;
        font-size: 1.5rem;
    }
}

@media only screen and (max-width: 450px) {
    .section-cart-products .badge {
        width: 8rem;
        height: 8rem;
    }
}

/* Filtrering + produktkort
========================================================================== */
.section-cart-products .tags-wrapper {
    border: 1px solid rgb(var(--black-color), .1);
}

/* Sök */
.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 */
.section-cart-products .tags-heading {
    display: none;
}

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

.section-cart-products .tag {
    display: block;
    width: 100%;
    padding: .3rem 1.5rem;
    margin: .6rem .5rem;
    font-size: 1.5rem;
    cursor: pointer;
    transition: .5s ease;
}

.section-cart-products .tag:hover,
.section-cart-products .tag.tag-picked {
    background-color: rgb(var(--gray-dark-color));
    color: rgb(var(--white-color));
}

/* Produktkort */
.section-cart-products .cards-18 .card-item {
    display: flex;
    flex-direction: column;
    transition: .3s ease;
}

.section-cart-products .cards-18 .card-item:hover {
    background-color: rgb(var(--gray-light-color));
}

.section-cart-products .cards-18 .card-item:hover .btn {
    color: rgb(var(--white-color));
    background-color: rgb(var(--gray-dark-color));
    border: 1px solid rgb(var(--gray-dark-color));
}

.section-cart-products .cards-18 .text-wrapper {
    flex-grow: 1;
}

.section-cart-products .cards-18 .cart-name,
.section-cart-products .cards-18 .products .small-title {
    padding-bottom: .5rem;
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.4;
    text-transform: uppercase;
}

.section-cart-products .cards-18 .of-wrapper img {
    object-position: center 38%;
}

.section-cart-products .cards-18 .cart-price {
    color: rgb(var(--gray-dark-color));
    font-weight: 700;
}

.section-cart-products .cart-short-description p,
.section-cart-products .cards-18 .products p {
    font-size: 1.4rem;
}

.section-cart-products .cards-18 .btn {
    display: block;
    min-width: unset;
    padding: 1rem;
    margin: 1rem;
    border-radius: 0;
    cursor: pointer;
}

.cards-18 .card-item.hidden-tag-item {
    display: none;
}

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

.cards-18 .card-item.display-none {
    display: none !important;
}

/* Falt som ska doljas */
.section-cart-products .cart-article,
.section-cart-products .cart-taxrate,
.section-cart-products .cart-url {
    display: none;
}

@media only screen and (max-width: 800px) {
    .section-cart-products .col-0 {
        width: 100%;
        padding: 0;
        margin-bottom: 3rem;
    }

    .section-cart-products .col-1 {
        width: 100%;
        padding: 0;
    }

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

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

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

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

    .section-cart-products .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);
    }

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

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

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

    /* Produktkort */
    .section-cart-products .cards-18 .btn {
        margin: 1rem 0;
    }
}

/* ==========================================================================
Undersida: Varukorg > Produktundersida (section-cart-product)
========================================================================== */
.section-cart-product .section-block {
    padding-left: 0;
    padding-bottom: 0;
    padding-right: 0;
}

.section-cart-product .section-block-wrapper {
    max-width: unset;
}

/* Splitten */
.section-cart-product .split-wrapper {
    max-width: 140rem;
    padding: 0 2rem;
    margin: 0 auto;
}

.section-cart-product .image-slide {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    background-color: rgb(var(--gray-light-color));
    padding: 1rem;
}

.section-cart-product .split-image:after {
    content: '\f302';
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    color: rgb(var(--gray-dark-color));
    font-weight: 100;
    font-size: 3rem;
    font-family: 'Font Awesome 5 Pro';
    pointer-events: none;
}

.section-cart-product .split-image:hover:after {
    box-shadow: 0 0 0 0 rgb(var(--primary-color));
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    transition: all 300ms ease-in-out;
    border-radius: 50%;
}

.fancybox-content .fancybox-image {
    background-color: rgb(var(--white-color));
}

.section-cart-product .split-image .more-images {
    font-size: 4rem;
    position: absolute;
    right: 2rem;
    bottom: 1rem;
    padding: 0;
    pointer-events: none;
}

.section-cart-product .split-image a {
    width: 100%;
    height: 100%;
}

.section-cart-product .split-image a:not(:nth-child(1)) {
    display: none;
}

/* Animation */
@-webkit-keyframes pulsing {
    to {
        box-shadow: 0 0 0 3rem rgb(var(--gray-dark-color), 0.1);
    }
}

@-moz-keyframes pulsing {
    to {
        box-shadow: 0 0 0 3rem rgb(var(--gray-dark-color), 0);
    }
}

@-ms-keyframes pulsing {
    to {
        box-shadow: 0 0 0 3rem rgb(var(--gray-dark-color), 0);
    }
}

@keyframes pulsing {
    to {
        box-shadow: 0 0 0 3rem rgb(var(--gray-dark-color), 0);
    }
}

/* Splitten - Content */
.section-cart-product .split-content {
    align-items: center;
}

.section-cart-product .cart-name {
    font-size: 4rem;
    color: rgb(var(--gray-dark-color));
    font-weight: 600;
    padding-bottom: 0;
}

.section-cart-product .cart-price {
    padding-bottom: 2rem;
    font-size: 2.6rem;
}

.section-cart-product .cart-image,
.section-cart-product .cart-article,
.section-cart-product .cart-taxrate,
.section-cart-product .cart-url,
.section-cart-product .cart-short-description {
    display: none;
}

.section-cart-product .btn {
    margin: 2rem 0 0;
}

.list-product {
    list-style: none;
    margin-top: 0;
}

.list-product li {
    position: relative;
    font-size: 1.5rem;
}

.list-product li::before {
    content: '\f00c';
    position: absolute;
    top: 42%;
    left: -2.5rem;
    color: rgb(var(--gray-dark-color));
    font-weight: 100;
    font-size: 1.5rem;
    font-family: 'Font Awesome 5 Pro';
    transform: translateY(-50%);
}

/* Filtrering - Taggar */
.section-cart-product .tags-wrapper {
    max-width: 140rem;
    padding: 0 2rem;
    margin: 10rem auto 0;
}

.section-cart-product .specifications-wrapper {
    border-top: 2px solid rgb(var(--gray-dark-color));
    background: rgb(var(--gray-light-color));
}

.section-cart-product .tags-heading {
    display: none;
}

.section-cart-product .tag {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    border-radius: 0.8rem 0.8rem 0 0;
    background: rgb(var(--gray-dark-color));
    color: rgb(var(--white-color));
    cursor: pointer;
    transition: .5s ease;
}

.section-cart-product .tag:hover,
.section-cart-product .tag.tag-picked {
    color: rgb(var(--white-color));
    background: rgb(var(--gray-dark-color), .5);
}

/* Filtrering - Content */
.section-cart-product .list-styled {
    max-width: 140rem;
    padding: 5rem 2rem;
    margin: 0 auto;
    list-style: none;
}

.section-cart-product .list-styled li {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    padding: 0.5rem 0;
    margin: 0.5rem 0;
    border-bottom: 1px dotted rgb(var(--gray-dark-color));
}

.section-cart-product .list-styled p {
    padding: 0;
}

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

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

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

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

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

    .section-cart-product .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);
    }

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

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

/* ==========================================================================
Undersida: Varukorg > Varukorg / Tack for din bestallning (section-cart-confirmation)
========================================================================== */
/* Bekraftelseruta */
.confirmation-wrapper {
    max-width: 75rem;
    text-align: center;
    margin: 0 auto 5rem;
    padding: 3rem;
    border: 1px solid rgb(var(--gray-dark-color));
}

.confirmation-wrapper .section-title {
    padding-bottom: .5rem;
}

.confirmation-wrapper .ingress {
    padding-bottom: 2rem;
    font-size: 2.2rem;
    font-weight: 300;
}

/* Produktlista */
/* .cart-items-wrapper {
    max-width: 75rem;
    margin: 0 auto;
}.cart-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 1rem;
    border: 1px solid rgb(var(--gray-color));
}.cart-item .image-wrapper {
    width: 20%;
}.cart-item .text-wrapper {
    width: 80%;
    padding: 2rem;
    text-align: left;
}.cart-item .small-title {
    padding-bottom: 0;
    font-size: 2.2rem;
    line-height: 1;
}.cart-item .cart-product-total {
    padding-bottom: 1.3rem;
    font-size: 1.6rem;
}.cart-item .cart-price {
    font-size: 1.8rem;
    font-weight: 400;
    border-bottom: 1px solid rgb(var(--gray-color), 0.3);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}.cart-item p {
    font-size: 1.4rem;
} */
.cart-decrease,
.cart-increase {
    font-size: 2rem;
    cursor: pointer;
}

.cart-toggle-wrapper input {
    padding: 1rem;
    text-align: center;
    margin: 0 .5rem;
}

/* Falt som ska doljas */
.cart-taxrate {
    display: none;
}

@media only screen and (max-width: 1100px) {
    .cart-item .image-wrapper {
        width: 40%;
    }

    .cart-item .text-wrapper {
        width: 60%;
    }
}

@media only screen and (max-width: 868px) {
    .cart-item .image-wrapper {
        width: 50%;
    }

    .cart-item .text-wrapper {
        width: 50%;
    }
}

@media only screen and (max-width: 700px) {
    .cart-item .image-wrapper {
        width: 100%;
    }

    .cart-item .text-wrapper {
        width: 100%;
        padding: 3rem 2rem;
    }
}

/* ==========================================================================
Undersida: Tjanster
========================================================================== */
.section-services .col-0 {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(var(--gray-light-color));
    width: 15%;
}

.section-services .col-1 {
    width: 85%;
}

.section-services .col-0 .section-title {
    transform: rotate(-90deg);
    padding: 0;
}

@media only screen and (max-width:1050px) {
    .section-services .col-block {
        width: 100%;
    }

    .section-services .col-0 {
        padding: 4rem 2rem;
    }

    .section-services .col-0 .section-title {
        transform: none;
    }

    .cards-9 .card-item .text-wrapper {
        width: 95%;
    }
}

/* ==========================================================================
Undersida: Tjanster > Belysningsplan 3D
========================================================================== */
/* Responsive table */
.responsive-table {
    width: 100%;
    max-width: 110rem;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.table {
    width: 100%;
    display: table;
    margin: 0;
}

.row.header {
    -moz-transition: 0.2s ease-in-out;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.row {
    display: table-row;
    background: rgb(var(--white-color));
    -moz-transition: 0.2s ease-in-out;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.row.header {
    color: rgb(var(--black-color));
    background: rgba(235, 235, 235, 0.793);
}

.row.header:hover {
    background: rgba(235, 235, 235, 0.793);
}

.cell {
    display: table-cell;
}

.row .cell {
    padding: 1.5rem 2rem;
    font-size: 1.5rem;
    color: rgb(var(--black-color));
    line-height: 1.2;
    text-transform: none;
    font-weight: 300;
    letter-spacing: normal;
}

.row .cell:not(:first-child) {
    text-align: center;
}

.row:nth-child(odd):not(.row.header) {
    background-color: rgb(var(--gray-light-color));
}

.row.header .cell {
    font-size: 1.6rem;
    color: rgb(var(--black-color));
    line-height: 1.2;
    font-weight: 400;
    padding: 1.5rem;
}

.row.header .cell:nth-child(1) {
    min-width: 25rem;
}

.table,
.row {
    width: 100%;
}

.row .cell .image-wrapper {
    width: 100%;
}

.row .cell .fa-times {
    color: rgb(var(--accent-red-color));
}

.row .cell .fa-check {
    color: rgb(var(--accent-green-color));
}

@media screen and (max-width: 550px) {
    .responsive-table {
        overflow-x: auto;
    }

    .row.header .cell {
        font-size: 1.5rem;
        padding-top: 1.8rem;
        padding-bottom: 1.8rem;
    }

    .row .cell {
        width: unset;
        min-width: 15rem;
        font-size: 1.3rem;
        padding: 1.5rem 0.8rem;
    }

    .row.header .cell:nth-child(1) {
        min-width: unset;
    }
}

/* ==========================================================================
Undersida: Om oss
========================================================================== */
.spotlight-wrapper {
    position: relative;
    overflow: hidden;
}

.spotlight-shapes {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgb(var(--gray-dark-color));
    overflow: hidden;
}

.spotlight-text {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgb(var(--white-color));
    mix-blend-mode: screen;
}

.shape {
    will-change: transform;
    position: absolute;
    border-radius: 50%;
}

.shape.shape-1 {
    background: rgb(var(--gray-color), .4);
    width: 650px;
    height: 650px;
    margin: -325px 0 0 -325px;
}

.shape.shape-2 {
    background: rgb(var(--black-color), .8);
    width: 440px;
    height: 440px;
    margin: -220px 0 0 -220px;
}

.shape.shape-3 {
    background: rgb(var(--black-color));
    width: 270px;
    height: 270px;
    margin: -135px 0 0 -135px;
}

/* ==========================================================================
Undersida: Inspiration (DOLD SIDA - TESTSIDA)
========================================================================== */
/* Taggar */
.section-gallery .tags-heading {
    display: none;
}

.section-gallery .tags-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}

.section-gallery .tag {
    padding: .3rem 1.5rem;
    margin: .6rem .5rem;
    font-size: 1.5rem;
    box-shadow: 1px 1px 5px rgb(var(--black-color), .2);
    border-radius: 2rem;
    cursor: pointer;
    background: rgb(var(--white-color));
    transition: .5s ease;
}

.section-gallery .tag:hover,
.section-gallery .tag.tag-picked {
    color: rgb(var(--white-color));
    background: rgb(var(--gray-dark-color), .5);
}

/* Cards */
.section-gallery .cards-gallery .card-item.display-none {
    display: none;
}

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

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

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

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

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

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

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

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

/* ==========================================================================
Undersida: Kontakta oss
========================================================================== */
.contact-img-box {
    margin: auto;
    text-align: center;
}

/* Kontaktformular JOTFORM
========================================================================== */
.section-form {
    background: linear-gradient(to bottom, rgb(var(--primary-color)) 40%, rgb(var(--gray-dark-color)) 40%);
}

.section-contact .col-0 {
    max-width: 80rem;
    margin: auto;
    background-color: rgb(var(--white-color));
    padding: 4rem;
    border-radius: 1rem;
}

.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 select:not(.illegal),
.ContactForm textarea:not(.illegal),
.ContactForm .file-dropzone:not(.illegal) {
    background-color: rgb(var(--white-color));
    border-radius: 0.5rem;
}

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

.ContactForm div {
    width: 49%;
}

.ContactFormField.file-field,
.file-upload-container,
.file-upload-container div,
.ContactFormField.textarea-field,
.submit-button-container {
    width: 100% !important;
}

@media only screen and (max-width: 630px) {
    .ContactForm div {
        width: 100%;
    }
}

/* ==========================================================================
Footer
========================================================================== */
.footer {
    background: rgb(var(--gray-dark-color));
}

.footer-container {
    max-width: none;
    padding: 0 5rem;
}

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

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

.footer-large {
    width: 30%;
}

.footer .small-title {
    font-size: 2rem;
    letter-spacing: normal;
    font-weight: 4200;
    color: rgb(var(--white-color));
}

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

.footer p,
.footer li,
.footer a {
    color: rgb(var(--white-color));
    font-size: 1.6rem;
    font-weight: 300;
}

.footer a {
    position: relative;
}

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

.footer-contacts a {
    display: flex;
    align-items: flex-start;
}

.footer-contacts a em {
    padding-right: 1rem;
    padding-top: .7rem;
    color: rgb(var(--white-color));
}

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

.footer-bottom p {
    font-size: 1.4rem;
}

.footer-bottom .circle-icon {
    width: 3rem;
    height: 3rem;
    background: transparent;
}

.footer-bottom em::before {
    font-size: 1.4rem;
    margin-left: 4px;
    margin-top: -1px;
}

/* WebbEss Stamp  */
.webbess-stamp {
    display: flex;
    align-items: center;
    padding: 0;
    font-size: 1.3rem;
    font-weight: normal;
}

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

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

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

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

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

    .footer-bottom {
        padding-left: 0;
    }
}

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

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

    .footer-bottom {
        display: block;
    }
}