/*-- -------------------------- -->
<---          Pricing           -->
<--- -------------------------- -*/

/* Mobile 360px */
@media only screen and (min-width: 0rem) {
        @keyframes floatAnimation {
        0% {
            transform: translateY(12rem);
        }
        50% {
            transform: translateY(16rem);
        }
        100% {
            transform: translateY(12rem);
        }
    }
    @keyframes floatAnimation2 {
        0% {
            transform: translateY(4rem);
        }
        50% {
            transform: translateY(8rem);
        }
        100% {
            transform: translateY(4rem);
        }
    }
    #pricing-387 {
        padding: var(--sectionPadding);
        background: linear-gradient(#151515 1%, #000 40%, #151515 100%);
        padding-top: 8rem;
    }
    #pricing-387 .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #pricing-387 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: center;
    }
    #pricing-387 .cs-topper {
        color: #F8CD13;
        letter-spacing: .12em;
    }
    #pricing-387 .cs-title {
        color: var(--bodyTextColorWhite);
    }
    #pricing-387 .cs-text {
        /* 48px - 64px */
        margin-bottom: clamp(3rem, 3vw, 4rem);
        max-width: 50rem;
        color: var(--bodyTextColorWhite);
    }
    #pricing-387 .cs-toggle-group {
        width: 12.5rem;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #pricing-387 .cs-plan {
        font-size: 1rem;
        line-height: 1.5em;
        margin: 0;
        padding: 0;
        color: var(--headerColor);
    }
    #pricing-387 .cs-plan:hover {
        cursor: pointer;
    }
    #pricing-387 .cs-toggle {
        width: 3.5rem;
        height: 1.75rem;
        border-radius: 2.5rem;
        background-color: var(--primary);
        margin: 0 0.75rem;
        position: relative;
        /* prevent flexbox from squishing it */
        flex: none;
    }
    #pricing-387 .cs-toggle:hover {
        cursor: pointer;
    }
    #pricing-387 .cs-toggle.active:before {
        opacity: 1;
    }
    #pricing-387 .cs-toggle.active .cs-toggle-switch {
        left: 2rem;
    }
    #pricing-387 .cs-toggle:before {
        /* top right box */
        content: "";
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, #ffba43 -24.69%, #e12213 126.23%);
        opacity: 0;
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        border-radius: 2.5rem;
        transition: opacity 0.3s;
    }
    #pricing-387 .cs-toggle-switch {
        width: 1.25rem;
        height: 1.25rem;
        display: block;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0.25rem;
        transition: left 0.3s;
        background: #fff;
    }
    #pricing-387 .cs-option-group {
        position: relative;
        /* these two create the 3D illusion */
        perspective: 700px;
        transform-style: preserve-3d;
    }
    #pricing-387 .cs-option-group.option2-active .cs-option1-text {
        opacity: 0;
        transform: scaleY(0);
    }
    #pricing-387 .cs-option-group.option2-active .cs-option2-text {
        top: 0;
        opacity: 1;
    }
    #pricing-387 .cs-option1-text {
        transform-origin: center center;
        transition:
            opacity 0.3s,
            transform 0.3s;
    }
    #pricing-387 #cs-option1-387 {
        color: var(--bodyTextColorWhite);
    }
    #pricing-387 #cs-option2-387 {
        position: relative;
        color: var(--bodyTextColorWhite);
    }
    #pricing-387 #cs-option2-387:before {
        /* squiggle arrow */
        content: "";
        position: absolute;
        display: block;
        height: 1.75rem;
        width: 1.75rem;
        background: url("https://csimg.nyc3.digitaloceanspaces.com/Pricing/sqiggle-arrow.svg");
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 1;
        top: -0.3125rem;
        right: -2rem;
    }
    #pricing-387 #cs-option2-387:after {
        /* percentage off */
        content: "10% Rabatt";
        font-size: 0.75rem;
        line-height: 1.625rem;
        text-transform: uppercase;
        font-weight: 500;
        width: auto;
        height: 1.625rem;
        padding: 0 0.75rem;
        border-radius: 0.5rem;
        background: #e5f2ff;
        box-sizing: border-box;
        color: var(--secondary);
        opacity: 1;
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;
        top: -1.875rem;
        right: -4.25rem;
        box-shadow: #ffffff58 0 0 22px;
    }
    #pricing-387 .cs-option2-text {
        /* push the text down, outside of the group wrapper and animate back up */
        opacity: 0;
        position: absolute;
        left: 0;
        top: 1.875rem;
        transition:
            opacity 0.3s,
            top 0.6s cubic-bezier(0.42, 0, 0.16, 1.39);
    }
    #pricing-387 .cs-card-group {
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        /* 16px - 20px */
        gap: clamp(1rem, 2vw, 1.25rem);
        z-index: 10;
    }
    #pricing-387 .cs-item {
        list-style: none;
        /* 20px - 32px top & bottom */
        /* 16px - 32px left & right */
        padding: clamp(1.25rem, 3vw, 2rem) clamp(1rem, 2.4vw, 2rem);
        width: 100%;
        max-width: 39.375rem;
        background: #141414;
        border: 1px solid #21252E;
        border-radius: 12px;
        box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
        /* prevents padding from adding to height and width */
        box-sizing: border-box;
    }
    #pricing-387 .cs-item:nth-of-type(2) {
        background: #141414;
        border: 1px solid #21252E;
        border-radius: 12px;
        box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
    }
    #pricing-387 .cs-item:nth-of-type(2) .cs-option2-text,
    #pricing-387 .cs-item:nth-of-type(2) .cs-option1-text {
        transition-delay: 0.1s;
    }
    #pricing-387 .cs-icon {
        height: 1.5rem;
        margin: 0 0 0.75rem 0;
    }
    #pricing-387 .cs-h3 {
        font-size: 1.5rem;
        line-height: 1.2em;
        font-weight: 700;
        margin: 0 0 0.25rem;
        padding: 0;
        color: var(--primary);
    }
    #pricing-387 .cs-item-text {
        font-size: 1rem;
        line-height: 1.5em;
        /* 16px - 24px */
        margin: 0 0 clamp(1rem, 2vw, 1.5rem);
        padding: 0;
        color: var(--bodyTextColorWhite);
    }
    #pricing-387 .cs-option-group {
        position: relative;
    }
    #pricing-387 .cs-option-group:after {
        /* top right box */
        content: "";
        width: 100%;
        height: 1px;
        /* 32px - 40px */
        margin-bottom: clamp(2rem, 4vw, 2.5rem);
        background: linear-gradient(
            90deg,
            rgba(232, 232, 232, 0.2) 0%,
            #e8e8e8 53.78%,
            rgba(232, 232, 232, 0.2) 100%
        );
        opacity: 1;
        position: relative;
        display: block;
    }
    #pricing-387 .cs-price {
        font-size: 3.0625rem;
        line-height: 1.2em;
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: var(--primary);
        /* spans are inline, need to add block for margin to work */
        display: block;
    }
    #pricing-387 .cs-small {
        font-size: 0.875rem;
        font-weight: 400;
        color: var(--bodyTextColorWhite);
    }
    #pricing-387 .cs-included {
        font-size: 1rem;
        line-height: 1.5em;
        font-weight: 700;
        /* 16px - 24px */
        margin-bottom: clamp(1rem, 3vw, 1.5rem);
        color: var(--bodyTextColorWhite);
        display: block;
    }
    #pricing-387 .cs-ul {
        padding: 0;
        margin: 0;
        /* 32px - 40px */
        margin-bottom: clamp(2rem, 4vw, 2.5rem);
    }
    #pricing-387 .cs-li {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        line-height: 1.5em;
        list-style: none;
        padding: 0;
        margin: 0 0 0.75rem;
        color: var(--bodyTextColorWhite);
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
    }
    #pricing-387 .cs-li:last-of-type {
        margin-bottom: 0;
    }
    #pricing-387 .cs-disabled {
        /* fades out list items that are disabled from the price tier */
        filter: grayscale(1);
        opacity: 0.3;
    }
    #pricing-387 .cs-li-img {
        width: 1.25rem;
        height: auto;
        margin-top: 0.1875rem;
        margin-right: 0.5rem;
    }
    #pricing-387 .cs-button-solid {
        font-size: 1rem;
        /* 46px - 56px */
        line-height: clamp(2.875rem, 5.5vw, 3.5rem);
        text-decoration: none;
        font-weight: 700;
        text-align: center;
        margin: 0;
        color: #000;
        min-width: 9.375rem;
        padding: 0 1.5rem;
        background-color: var(--primary);
        border-radius: 0.25rem;
        display: inline-block;
        position: relative;
        z-index: 1;
        /* prevents padding from adding to the width */
        box-sizing: border-box;
        border: transparent 1px solid;
    }
    #pricing-387 .cs-button-solid:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 0%;
        background: #000;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        border-radius: 0.25rem;
        transition: width 0.3s;
        box-shadow: var(--primary) 0px 0px 6px;
    }
    #pricing-387 .cs-button-solid:hover:before {
        width: 100%;
    }
    #pricing-387 .cs-button-solid:hover {
        color: var(--primary);
        border: var(--primary) 1px solid;
    }
    #pricing-387 .cs-button-solid {
        /* cs-button-solid override */
        width: 100%;
        margin: 0 0 1rem 0;
    }
    #pricing-387 .cs-text-offert {
        margin-top: 12px;
        color: var(--bodyTextColorWhite);
    }
    #pricing-387 .cs-bubbles1 {
        width: 26.1875rem;
        height: 26.6875rem;
        position: absolute;
        left: -4.25rem;
        top: -4rem;
        z-index: 0;
        justify-content: contain;
    }
    #pricing-387 .cs-bubbles1:before {
        /* white border bubble */
        content: "";
        width: 16.625rem;
        height: 16.625rem;
        background: transparent;
        border: 1px solid var(--primary);
        border-radius: 50%;
        opacity: 1;
        position: absolute;
        display: block;
        top: 0;
        left: 2rem;
        animation-name: floatAnimation;
        animation-duration: 14s;
        animation-timing-function: ease-in-out;
        animation-fill-mode: forwards;
        animation-iteration-count: infinite;
        box-shadow: inset var(--primary) 0px 0px 24px;
    }
    #pricing-387 .cs-bubbles1:after {
        /* orange bubble */
        content: "";
        width: 12.25rem;
        height: 12.25rem;
        background: var(--primary);
        opacity: 0.4;
        border-radius: 50%;
        display: block;
        position: absolute;
        bottom: 0;
        right: 0;
        z-index: -1;
        animation-name: floatAnimation2;
        animation-duration: 20s;
        animation-timing-function: ease-in-out;
        animation-fill-mode: forwards;
        animation-iteration-count: infinite;
    }
}
/* Tablet 768px */
@media only screen and (min-width: 48rem) {
    #pricing-387 .cs-card-group {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        flex-wrap: nowrap;
    }
    #pricing-387 .cs-item {
        width: 100%;
        /* ensures they stay the same height if you add more content */
        align-self: stretch;
    }
    #pricing-387 .cs-popular {
        /* send back to its original order */
        order: unset;
    }
    #pricing-387 #cs-option2-387:before {
        top: -0.625rem;
    }
    #pricing-387 #cs-option2-387:after {
        top: -2.1875rem;
        right: -6.25rem;
    }
}
/* Tablet 768px */
@media screen and (min-width: 768px) and (max-width: 1005px) {
    #pricing-387 .cs-li-2 {
        padding-bottom: 2.4rem;
    }
    }
/* Tablet 768px */
@media screen and (min-width: 1006px) and (max-width: 1299px) {
    #pricing-387 .cs-li-2 {
        padding-bottom: 3.7rem;
    }
    }
/* Desktop 1300px */
@media only screen and (min-width: 81.25rem) {
    #pricing-387 .cs-top-section {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    #pricing-387 .cs-top-section:after {
        /* top right box */
        content: "";
        width: 100%;
        height: 1px;
        /* 32px - 40px */
        margin-bottom: clamp(2rem, 4vw, 2.5rem);
        background: linear-gradient(
            90deg,
            rgba(232, 232, 232, 0.2) 0%,
            #e8e8e8 53.78%,
            rgba(232, 232, 232, 0.2) 100%
        );
        opacity: 1;
        position: relative;
        display: block;
    }
    #pricing-387 .cs-option-group {
        margin-right: 1rem;
    }
    #pricing-387 .cs-option-group:after {
        display: none;
    }
    #pricing-387 .cs-ul {
        /* splits the list into 2 columns */
        columns: 2;
        column-gap: 6.875rem;
    }
    #pricing-387 .cs-bubbles1 {
        margin-right: 40.625rem;
        left: auto;
        right: 50%;
    }
}
/* 1) Gör bubblan skalflexibel på alla skärmar */
#pricing-387 .cs-bubbles1{
  /* samma proportioner som innan men responsivt */
  width: clamp(18rem, 22vw, 26.1875rem);
  height: clamp(18.5rem, 23vw, 26.6875rem);
  left: max(-8vw, -16.25rem);
  top: clamp(-3rem, -12vw, -15rem);
}


@media screen and (max-width: 1299px) {
  #pricing-387 .cs-bubbles1{
  display: none;
  }
}

/*-- -------------------------- -->
<---            CTA             -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #cta-1693 {
    padding: var(--sectionPadding);
    background: linear-gradient(#151515 1%, #151515 40%, #151515 100%);
    position: relative;
    overflow: hidden;
    padding-top: 1rem;
    padding-bottom: 0;  
  }
  #cta-1693 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #cta-1693 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
    gap: 1.5rem;
  }
  #cta-1693 .cs-title {
    max-width: 30ch;
    margin: 0;
    color: #fff;
    z-index: 10;
    margin-bottom: -5rem;
  }
  #cta-1693 .cs-button-solid {
    font-size: 1rem;
    font-weight: 700;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-align: center;
    text-decoration: none;
    min-width: 9.375rem;
    margin: 0;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
    padding: 0 1.5rem;
    color: #000;
    background-color: var(--primary);
    display: inline-block;
    position: relative;
    z-index: 1;
    border: 1px solid transparent;
    border-radius: 0.5rem;
  }
  #cta-1693 .cs-button-solid:before {
    content: "";
    width: 0%;
    height: 100%;
    background: #000;
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
    border-radius: 0.5rem;
    box-shadow: var(--primary) 0px 0px 6px;
  }
  #cta-1693 .cs-button-solid:hover {
    color: var(--primary);
    border: 1px solid var(--primary);
  }
  #cta-1693 .cs-button-solid:hover:before {
    width: 100%;
  }
  #cta-1693 .cs-wrapper {
    width: 100%;
    max-width: 120rem;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 1;
    /* prevents the mouse from interacting with it */
    pointer-events: none;
    transform: translateX(-50%);
  }
  #cta-1693 .cs-graphic {
    width: 23.25rem;
    height: 23.25rem;
    opacity: 0.1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  #cta-1693 .cs-graphic-1 {
    left: -16.3125rem;
  }
  #cta-1693 .cs-graphic-2 {
    right: -16.3125rem;
  }
  #cta-1693 .cs-btn-wrap {
  margin-top: 4rem;
}
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #cta-1693 .cs-content {
    text-align: left;
    flex-direction: row;
    justify-content: space-between;
  }
  #cta-1693 .cs-graphic-1 {
    left: -7.8125rem;
  }
  #cta-1693 .cs-graphic-2 {
    right: -7.8125rem;
  }
  #cta-1693 .cs-title {
    margin-bottom: 0;
  }
}
#cta-1693 .cs-btn-wrap {
  position: relative;
  display: grid;
  place-items: center;
  padding: 1rem; /* extra luft mellan knappen och pilbilden */
}

#cta-1693 .cs-btn-wrap .cs-button-solid{
  grid-area:1/1;
  position:relative;     /* behåll :before-effekten */
  z-index:1;             /* över bilden */
}

#cta-1693 .cs-btn-arrows{
  grid-area:1/1;
  /* width:clamp(16rem, 28vw, 30rem); storleken på pilarna runt knappen */
  aspect-ratio:1/1;
  object-fit:contain;
  pointer-events:none;   /* klick går till knappen */
  z-index:0;
  transform: scale(1.1);
  /* valfritt: lite djup */
  filter: drop-shadow(0 2px 12px rgba(0,0,0,.25));
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #cta-1693 .cs-btn-wrap {
    margin-top: 0;
  }
}

.cs-link {
  color: var(--primary);
}                             