/* Recyctec */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&family=Source+Sans+Pro:wght@600&display=swap');

/* ==========================================================================
Generellt 
========================================================================== */
:root {
    /* 	Layout  */
    --col-padding: 3rem;
    --menu-height: 8rem;
    --menu-height-scrolled: 8rem;

    /* 	Colors */
    --primary-color: 37, 169, 78;
    --secondary-color: 0, 124, 194;
    
    --black-color: 34, 34, 34;
    --gray-dark-color: 72, 72, 72;
    --gray-light-color: 248, 248, 248;
    --white-color: 255, 255, 255;

    /* 	Typography */
    --base-size: 1.7rem;

    /* 	Mobile nav */
    --activate-mobile-menu: 1100;
    --mobile-menu-height: 8rem;
    --mobile-menu-bg: 255, 255, 255;
    --menu-color: rgb(var(--black-color));
}

/* Layout
========================================================================== */
.section-wrapper {
    background: rgb(var(--white-color));
}

.section-block {
    padding: 11rem 4rem;
}

.section-block-wrapper {
	max-width: 130rem;
}

/* Speciella paddings */
.p-2{
    padding: 2rem;
}
.p-3 {
    padding: 3rem;
}

.p-5 {
    padding: 5rem;
}

.pt-0 .section-block,
.pt-0:not(.section-wrapper) {
    padding-top: 0;
}

.pt-2 {
    padding-top: 2rem;
}

.pb-2 {
    padding-bottom: 2rem;
}

.pr-0 .section-block {
    padding-right: 0;
}

.pb-0 .section-block,
.pb-0:not(.section-wrapper) {
    padding-bottom: 0;
}

.pl-0 .section-block {
    padding-left: 0;
}

/* Speciella margins */
.m-0-auto {
    margin: 0 auto;
}

.mt-3 {
    margin-top: 3rem;
}

.mt-5 {
    margin-top: 5rem;
}
.mb-5 {
    margin-bottom: 5rem;
}

/* Speciella bredder */
.mw-none .section-block-wrapper {
    max-width: none;
}

.mw-80:not(.section-wrapper) {
    max-width: 80rem;
}

.mw-90 .section-block-wrapper,
.mw-90:not(.section-wrapper) {
    max-width: 90rem;
}

.mw-1000 .section-block-wrapper {
    max-width: 100rem;
}

.mw-1500 .section-block-wrapper {
    max-width: 150rem;
}


@media only screen and (max-width: 1024px) {
    .section-block {
        padding: 11rem 2rem;
    }
}

@media only screen and (max-width: 580px) {
    .section-block {
        padding: 8rem 2rem;
    }
}

/* Text och typsnitt
========================================================================== */
body {
    font-family: 'Montserrat', sans-serif;
}

/* Rubriker */
.text-label {
    padding-bottom: 1.5rem;
    color: rgb(var(--dark-color));
    font-size: 1.4rem;
    font-weight: 400;
    font-family: inherit;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
}

.section-title {
    padding-bottom: 2rem;
    color: rgb(var(--primary-color));
    font-size: 4.5rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.02em;
}

.small-title {
    padding-bottom: 1.5rem;
    color: rgb(var(--primary-color));
    font-size: 2.5rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.5;
}

.ingress {
    padding-bottom: 1.5rem;
    font-size: 2.2rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.5;
}

/* Länkar och brödtext */
p, li {
    font-weight: 300;
    color: rgb(var(--gray-dark-color));
    letter-spacing: 0.02em;
}

a {
    color: rgb(var(--primary-color));
    text-decoration: none;
}
.f-18{
    font-size: 1.8rem;
}

/* Listor */
.arrow-list li {
    line-height: 1.7em;
    padding-bottom: 1.5rem;
    list-style: none;
}

.arrow-list li::before {
	content: "\f101";
    display: inline-block;
    width: 1.8em;
    margin-left: -1.8em;
    color: rgb(var(--primary-color));
    font-family: 'Font Awesome 5 Pro';
    font-weight: 500;
}

/* Tables */
table {
    width: 100%;
}

table th {
    padding: 1rem;
    font-size: var(--base-size);
    font-weight: 400;
    text-align: left;
    color: rgb(var(--white-color));
    background: rgb(var(--primary-color));
}

table td {
    padding: 1rem;
    font-size: var(--base-size);
    vertical-align: top;
}

/* Övriga klasser */
.text-block-center {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

.text-bold {
    font-weight: 600;
}

.text-italic {
    font-style: italic;
}

.text-small {
    font-size: 1.5rem;
}

@media only screen and (max-width: 580px) {
    /* Rubriker */
    .section-title {
        font-size: 3rem;
    }

    .small-title {
        font-size: 2.2rem;
    }

    /* Tables */
    table th,
    table td,
    table p,
    table a {
        font-size: 1.3rem;
    }
}

.normal-list{
    padding-bottom: .5em;
    margin: 0;
    font-size: var(--base-size);
    line-height: 1.8;
    font-style: normal;
    font-family: inherit;
    font-weight: 300;
}

/* Knappar och speciella länkar
========================================================================== */
.btn-wrapper {
    margin-top: 3rem;
}

.btn-wrapper.center {
    text-align: center;
}


.btn-wrapper.multiple .btn:not(:last-child) {
    margin-right: 2rem;
}


/* Knappar */
.btn {
    display: inline-block;
    min-width: 20rem;
    padding: 1.6rem 3rem;
    font-weight: 400;
    font-size: 1.5rem;
    text-align: center;
    text-decoration: none;
    border-radius: 3rem;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.btn-big {
    min-width: 49%;
    margin-bottom: 1rem;
}

.btn-primary-filled {
    color: rgb(var(--white-color));
    background: rgba(var(--primary-color));
}

.btn-white-filled {
    color: rgb(var(--black-color));
    background: rgba(var(--white-color));
}

.btn-primary-filled:hover, .btn-white-filled:hover  {
    background: rgba(var(--secondary-color));
}
.btn-black-border {
    color: rgb(var(--black-color));
    background: rgba(var(--white-color));
    border: 1px solid rgb(var(--black-color));
}
.btn-black-border:hover {
    background: rgba(var(--secondary-color));
}


@media only screen and (max-width: 580px) {
    .btn:not(.btn-nav) {
        display:block;
        width:100%;
    }
    
    .btn-wrapper.multiple .btn:not(:last-child) {
       margin-right: 0rem;
       margin-bottom:2rem;
     }
   }
/* 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);
}

/* Färger
========================================================================== */
/* Bakgrundsfärger */
.bg-white {
    background: rgba(var(--white-color));
}

.bg-gray {
    background: rgba(var(--gray-light-color));
}

.bg-primary {
    background: rgba(var(--primary-color));
}

.bg-green-light {
    background-color: #66c03c;
}

/* Text */
.text-white {
    color: rgba(var(--white-color));
}

.text-primary {
    color: rgba(var(--primary-color));
}

/* Grafiska element
========================================================================== */
/* Bakgrundsbilder */
.bg-forrest {
    background: url('/assets/images/skog-sol-2000px.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.bg-forrest .section-block {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.65) 40%, rgba(0, 0, 0, 0.2));
    background-size: cover;
    background-position: center center;
}

@media only screen and (hover:none) {
    .bg-forrest {
        background-attachment: scroll;
        background-position: center center;
    }
} 

/* Boxshadow */
.box-shadow {
    box-shadow: 0px .4rem 1.5rem rgba(var(--black-color), .05);
}

/* Borders */
.outline-white {
    outline: 1px solid rgba(var(--white-color));
    outline-offset: -1rem;
}

.border-gray {
    border: 1px solid #ececec;
}

.border-right-gray {
    border-right: 1px solid #eaeaea;
}

.border-bottom-gray {
    border-bottom: 1px solid #eaeaea;
}

.border-bottom-dotted-gray {
    border-bottom: 1px dotted #eaeaea;
}

/* 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%;
}

.split-image.align-items-center {
    display: flex;
    align-items: center;
}

/* Centrera content */
.split-wrapper .align-center {
    align-self: center;
}

.split-wrapper .space-between {
    justify-content: space-between;
}

/* Speciella bredder */
.split-wrapper .w-35 {
    width: 35%;
}

.split-wrapper .w-65 {
    width: 65%;
}

@media screen and (max-width: 1100px) {
    .split-content,
    .split-wrapper .w-35,
    .split-wrapper .w-65 {
        width: 100%;
    }

    .split-image {
        width: 100%;
        min-height: 20rem;
    }
}

@media screen and (max-width: 580px) {
    .split-wrapper {
        background: transparent;
    }

    .split-content {
        padding: 0 0 3rem 0;
    }

    .pl-0 .split-wrapper {
        padding-left: 2rem;
    }

    .full-width .split-content {
        padding: 8rem 2rem;
    }
}

/* Cards
========================================================================== */
.cards-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.cards-wrapper.justify-center {
    justify-content: center;
}

/* Specifika bredder */
.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-32 .card-item {
    width: calc((80% / 2) - 2rem);
    margin: 1rem;
    margin: auto;
}

.cards-wrapper.w-50 .card-item {
    width: calc((100% / 2) - 2rem);
    margin: 1rem;
}

@media only screen and (max-width: 1250px) {
    .cards-wrapper.w-25 .card-item {
        width: calc((100% / 2) - 2rem);
        margin: 1rem;
    }
}

@media only screen and (max-width: 1050px) {
    .cards-wrapper.w-33 .card-item {
        width: calc((100% / 2) - 2rem);
        margin: 1rem;
    }

    .cards-wrapper.w-32 .card-item {
        width: calc((100% / 2) - 2rem);
        margin: 1rem;
    }
}

@media only screen and (max-width: 750px) {
    .cards-wrapper.w-33 .card-item,
    .cards-wrapper.w-32 .card-item,
    .cards-wrapper.w-50 .card-item {
        width: 100%;
        margin: 1rem 0;
    }
}

@media only screen and (max-width: 480px) {
    .cards-wrapper.w-25 .card-item {
        width: 100%;
        margin: 1rem 0;
    }
}

/* Produktkort */
.products-card .card-item {
    background: rgb(var(--white-color));
    box-shadow: 0px .4rem 1.5rem rgba(var(--black-color), .05);
}

.products-card .text-wrapper {
    padding: 3rem;
}

.products-card .text-label {
    font-size: 1.3rem;
}

.product-link {
    margin-top: 1rem;
}

.product-info p,
.product-link a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.5rem;
}

.product-info p {
    padding: .2rem;
    margin: .2rem;
    border-bottom: 1px dotted #eaeae4;
}

.product-link a {
    padding: .4rem;
    margin: .4rem;
}

.product-info span,
.product-link span {
    margin-left: 1rem;
}

.product-info img {
    max-width: 3rem;
    margin-left: .5rem;
}

/* Cards 6*/
.cards-6 .card-item {
    display: flex;
    flex-direction: column;
    padding: 3rem;
}

.cards-6 .image-wrapper {
    max-width: 30rem;
    max-height: 30rem;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
}

.cards-6 .icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20rem;
    height: 20rem;
    margin: 0 auto;
    color: rgb(var(--primary-color));
    font-size: 7rem;
    border-radius: 50%;
    overflow: hidden;
}

.cards-6 .text-wrapper {
    flex-grow: 1;
    padding: 2rem 0 1rem;
    text-align: center;
}

.cards-6 .text-wrapper.text-left {
    text-align: left;
}

@media only screen and (max-width: 580px) {
    .cards-6 .card-item {
        padding: 2rem 0;
    }

    .cards-6 .text-wrapper {
        padding: 0 1.5rem;
    }
}

/* Header / Navigation
========================================================================== */
/* Logo */
.header-logo {
    width: 20rem;
}

/* Nav */
nav.mainmenu {
    flex-grow: 1;
    padding-left: 5rem;
}

.TemplateMenu > li:nth-child(1) {
    display: none;
}

.TemplateMenu a {
    padding: 0 1.5rem;
    color: rgba(var(--dark-color));
    font-size: 1.3rem;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.TemplateMenu ul {
    width: 32rem;
}

.TemplateMenu ul a {
    padding: 1rem 2rem;
    font-weight: 400;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    line-height: 2rem;
    text-transform: unset;
}

/* Språk */
.lang-wrapper {
    position: relative;
}

.lang-wrapper a {
    display: flex;
    align-items: center;
    padding: 1rem;
    font-size: 1.5rem;
    border-radius: 6px;
    color: rgb(var(--white-color));
    background: rgb(var(--black-color));
}

.lang-wrapper img {
    max-width: 2.5rem;
    margin-left: .5rem;
}

/* dropdown */
.lang-dropdown {
    display: none;
}

.lang-wrapper:hover .lang-dropdown {
    display: block;
    position: absolute;
    top: 100%;
}

.lang-dropdown a {
    color: rgb(var(--white-color));
    background: rgb(var(--primary-color));
}

@media only screen and (hover:none) {
    .lang-active {
        display: none;
    }

    .lang-dropdown {
        display: block;
    }
}

/* Mobilmeny */
header.mobile-menu .container {
    height: var(--mobile-menu-height);
}

header.mobile-menu .header-logo {
    flex-grow: 1;
}

.mobile-menu .header-logo img,
.mobile-menu.scrolled .header-logo img {
    max-width: 20rem;
}

/* .mobile-menu .mainmenu {
    top: var(--mobile-menu-height);
    padding-top: 0;
} */

/* ==========================================================================
Startsida 
========================================================================== */

/* Topsection
========================================================================== */
.topsection {
    position: relative;
    margin-top: calc(-1 * var(--menu-height));
}

.topsection .section-block {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding-top: 19rem;
    padding-bottom: 19rem;
}

.top-section {
    overflow: hidden;
    background: linear-gradient(46deg, rgba(var(--primary-color), 0.4) 20%, rgba(var(--primary-color), 0.3) 120%);
  }


.topsection::before,
.topsection::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 18rem;
  left: 0;
  bottom: -1px;
}

.topsection::before {
  background-color: rgba(var(--primary-color), 0.8);
  -webkit-clip-path: polygon(0 0, 0 100%, 50% 50%);
  clip-path: polygon(0 0, 0 100%, 50% 50%);
}

.topsection::after {
  background-color: rgb(var(--gray-light-color));
  -webkit-clip-path: polygon(50% 50%, 0 100%, 100% 100%);
  clip-path: polygon(50% 50%, 0 100%, 100% 100%);
}


.topsection .section-block-wrapper {
    width: 100%;
}

.topsection .section-title {
    font-size: 7rem;
}

.topsection p {
    max-width: 60rem;
}

.topsection .counter {
    max-width: 38rem;
    text-align: center;
}

.topsection .counter .small-title {
    padding-bottom: 0;
    font-size: 3.5rem;
}

@media only screen and (max-width: 1200px) {
    .topsection::before,
    .topsection::after {
        display: none;
    }
    
    .topsection .split-content {
        width: 100%;
    }

    .topsection .section-title {
        font-size: 5rem;
    }
}

@media only screen and (max-width: 580px) {
    .topsection .section-block {
        padding: 20rem 2rem 8rem;
    }

    .topsection .split-content:nth-child(2) {
        margin-top: 5rem;
    }

    .topsection .split-content {
        text-align: center;
    }

    .topsection .section-title {
        font-size: 3.5rem;
    }

    .topsection .counter {
        margin: 0 auto;
    }
}

/* Nyheter top
========================================================================== */
.news-top .layout-1 .col-0 {
    width: 100%;
    margin-top: -250px;
    z-index: 2;
}

@media only screen and (max-width: 580px) {
    .news-top .layout-1 .col-0 {
        margin-top: -150px;
       
    }
}

/* Produkter och tjanster
========================================================================== */
.section-products-services .card-item {
    padding: 1rem;
}

.section-products-services .image-wrapper {
    max-width: 25rem;
}

.section-products-services .small-title {
    font-size: 2rem;
}

/* Partners
========================================================================== */
.section-partners {
    padding-top: 11rem;
    padding-bottom: 11rem;
}

.partners-slider .slick-list {
    width: 100%;
}

.partners-slider .slick-slide {
    margin: 0 1rem 0 0;
}

@media only screen and (max-width: 580px) {
    .section-partners {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
}

/* ==========================================================================
Undersidor 
========================================================================== */

/* Hero med enbart rubrik
========================================================================== */
.hero-text {
    background: url('/assets/images/skog-sol-2000px.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero-text .section-block {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.65) 40%, rgba(0, 0, 0, 0.2));
    background-size: cover;
    background-position: center center;
}

.hero-text .section-title {
    padding-bottom: 0;
    color: rgba(var(--white-color));
    text-align: center;
}

/* Hero med split (.hero-split)
========================================================================== */
.hero-split .section-block {
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
}

.hero-split .section-block-wrapper {
    max-width: unset;
}

.hero-split .split-content {
    padding: 10rem 5rem;
}

@media only screen and (max-width: 1100px) {
    .hero-split .section-block {
        padding-left: 0;
    }
}

@media only screen and (max-width: 580px) {
    .hero-split .split-content {
        padding: 10rem 2rem 5rem;
    }
}

/* ==========================================================================
Undersida: Produkter & Tjänster > Produktdatablad & Säkerhetsdatablad 
========================================================================== */
.section-product-documents td {
    min-width: 17rem;
    padding: 3rem;
}

.section-product-documents a {
    margin: 0 0.5rem 0.5rem 0;
}

@media only screen and (max-width: 1024px) {
    .section-product-documents td {
        min-width: unset;
        padding: 1rem;
    }

    .section-product-documents p {
        font-size: 1.3rem;
    }

    .section-product-documents img {
        max-width: 2.5rem;
    }
}

/* ==========================================================================
Undersida: IR > Pressrealeaser
========================================================================== */
/* paginering */
.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    list-style: none;
}

.pagination a {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    border: 1px solid rgb(var(--gray-light-color));
}

/* pressreleases */
.cision-container {
    max-width: 90rem;
    margin: 0 auto;
}

.press-item {
    width: 100%;
    padding: 2rem;
    background-color: rgb(var(--white-color));
    transition: all .3s ease;
}

.press-item:hover {
    background-color: rgb(var(--gray-light-color));
}

.press-title {
    padding-bottom: 1.5rem;
    color: rgb(var(--primary-color));
    font-size: 2.5rem;
    font-weight: 600;
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.5;
}

.press-date {
    padding: 0 0 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px dotted #ccc;
}

@media only screen and (max-width: 580px) {
    .press-item {
        padding: 2rem 0;
    }

    .press-item:hover {
        background: rgb(var(--white-color));
    }

    .press-title {
        font-size: 2.2rem;
    }
}

/* ==========================================================================
Undersida: IR > Pressrealeaser > Pressrelease (.section-pressrelease)
========================================================================== */
.section-pressrelease .container {
    max-width: 100rem;
    margin: 0 auto;
}

.section-pressrelease h1 {
    padding-bottom: 2rem;
    color: rgb(var(--primary-color));
    font-size: 4.5rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.02em;
}

.section-pressrelease p {
    margin: 0 !important;
    font-family: 'Montserrat', sans-serif;
}

.section-pressrelease span {
    font-size: var(--base-size);
    font-family: 'Montserrat', sans-serif;
}

@media only screen and (max-width: 580px) {
    .section-pressrelease h1 {
        font-size: 3rem;
    }
}

/* ==========================================================================
Undersida: IR > Finansiella rapporter
========================================================================== */
.documents-wrapper p {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-bottom: .5rem;
    margin-bottom: .5rem;
}

.documents-wrapper .btn {
    padding: 0.5rem 2rem;
}

/* ==========================================================================
Undersida: IR > Dialog med ägarna
========================================================================== */
.accordion-item {
    padding-bottom: 2rem;
}

.accordion-question {
    position: relative;
    padding: 0 2rem 1rem;
    border-bottom: 1px solid rgb(var(--primary-color));
    cursor: pointer;
}

.accordion-question::after {
    content: "\f078";
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 1.7rem;
    font-family: "Font Awesome 5 Pro";
    transition: .5s ease;
}

.accordion-item.active .accordion-question::after {
    transform: rotate(180deg);
}

.accordion-item p {
    font-size: 1.6rem;
}

.accordion-question p {
    padding-right: 2.5rem;
    font-weight: 500;
}

.accordion-question span {
    display: block;
    font-size: 1.3rem;
}

.accordion-answer {
    padding: 2rem;
}

.accordion-item .signature {
    color: rgba(var(--primary-color));
    font-weight: 500;
}

/* ==========================================================================
Undersida: Om Recytec 
========================================================================== */
.timeline-wrapper {
    position: relative;
    max-width: 95%;
    margin: 5rem auto;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    bottom: 0;
    width: 2px;
    background-color: rgb(var(--primary-color));
} 

.timeline-wrapper .timeline-item:not(:nth-child(1)) {
    margin-top: 0;
}

.timeline-item {
    position: relative;
    display: block;
    width: 50%;
}

.timeline-item.item-left {
    padding-right: 10rem;
}

.timeline-item.item-right {
    padding-left: 10rem;
    margin: 0 0 0 auto;
}

@media only screen and (max-width: 980px) {
    .timeline-wrapper {
        max-width: 100%;
        margin: 3rem 0;
    }

    .timeline-wrapper::before {
        left: 0;
    }

    .timeline-wrapper .timeline-item:not(:nth-child(1)),
    .timeline-item.item-right,
    .timeline-item.item-left {
        width: calc(100% - 2rem);
        padding: 0;
        margin: 0 0 3rem 2rem;
    }
}

/* ==========================================================================
Undersida: Om Recyctec > Nyheter 
========================================================================== */
.light-theme a, .light-theme span {
	line-height: 3.5rem !important;
	padding: 0 1.5rem !important;
	margin: 0.2rem !important;
}

/* Modal */
@import url('https://cdnjs.cloudflare.com/ajax/libs/jquery-modal/0.9.1/jquery.modal.min.css'); 

/* ========================================================================== 
Generellt
========================================================================== */


/* Modal
========================================================================== */
  .modal {
    max-width: 75rem;
    width: 100%;
    max-height: 75vh;
    padding: 4rem;
    border-radius: 0;
    box-shadow: none;
    overflow: auto;
  }

  .blocker {
    z-index: 100;
  }

  .modal a.close-modal {
    display: none;
  }

  .modal .custom-close-modal {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
  }

  @media only screen and (max-width: 450px) {
    .modal {
      padding: 3rem 2rem;
    }

    .blocker {
      padding: 1rem;
    }
  }


/* ==========================================================================
Undersida: Inlamningsforfragan av emballerad glykol
========================================================================== */

.section-form-intro .section-block {
    padding-bottom: 15rem;
}

.form-wrapper {
    background-color: rgb(var(--white-color));
    margin-top: -5rem;
    border-radius: 3px;
    overflow: hidden;
}

@media only screen and (max-width: 768px) {
    .section-form .section-block {
        padding-left: 0;
        padding-right: 0;
    }

    .form-wrapper {
        margin: -5rem 0 0;
        background-color: transparent;
    }
}

/* ==========================================================================
Footer 
========================================================================== */
footer {
    background: rgb(var(--primary-color));
}

.footer-container {
    max-width: 160rem;
    padding: 0 2rem;
    margin: 0 auto;
}

/* 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-menu-large {
    width: 30%;
}

.footer .small-title {
    padding-bottom: .5rem;
    font-size: 2rem;
    color: rgba(var(--white-color));
    letter-spacing: normal;
}

.footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer li,
.footer p,
.footer a {
    color: rgba(var(--white-color));
}

.footer a:hover {
    text-decoration: underline;
}

/* Footer bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 2rem;
}

.footer-bottom p {
    font-size: 1.4rem;
}

/* WebbEss Stamp  */
.webbess-stamp {
    display: flex;
    align-items: center;
    padding: 0;
    font-size: 1.3rem;
    font-weight: normal;
    color: #FFF;
}

.webbess-stamp img {
    width: 3rem;
    margin-left: 1rem;
    filter: invert(1);
}

@media only screen and (max-width: 1024px) {
    /* 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%;
    }
}

@media only screen and (max-width: 450px) {
    /* Footer top */
    .footer-top {
        padding: 8rem 0 4rem 0;
    }

    /* Footer bottom */
    .footer-bottom {
        padding: 2rem 0;
    }
}