/** Shopify CDN: Minification failed

Line 16:0 Unexpected "$"
Line 16:13 Unexpected "{"
Line 16:23 Expected ":"
Line 16:36 Unexpected ";"
Line 17:15 Unexpected "{"
Line 17:25 Expected ":"
Line 17:45 Unexpected ";"
Line 18:15 Unexpected "{"
Line 18:25 Expected ":"
Line 18:41 Unexpected ";"
... and 9 more hidden warnings

**/
$body-font: {{ settings.body-font }};
$body-weight: {{ settings.body-font-weight }};
$header-font: {{ settings.heading-font }};
$header-weight: {{ settings.heading-font-weight }};
$button-font: {{ settings.primary-button-font }};
$button-weight: {{ settings.primary-button-font-weight }};

$background-light: #fafafa;


$desktop-breakpoint: 1300px;
$tablet-breakpoint: 400px;

@mixin body() {
    font-family: $body-font;
    font-size: 16px;
    line-height: 25px;
}

@mixin header() {
    font-family: $header-font;
    font-size: 36px;
    font-weight: 700;
}

@mixin small-body() {
    font-family: $body-font;
    font-size: 13px;
}

@mixin subheader() {
    font-family: $header-font;
    font-weight: 600;
    font-size: 24px;
}

.SoftwarePage__outer-container {
}

.SoftwarePage__inner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    overflow: hidden;
    max-width: 1400px;
    margin: 0 auto;
}

.SP__api-section-outer {
    width: 100%;
    display: flex;
    align-items: center;
    @media screen and (min-width: $desktop-breakpoint) {
        padding: 100px 0;
    }
}

.SP__api-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 20px;
    max-width: 840px;
}

.SP__api-section__button {
    width: 170px;
    height: 45px;
}

.SP__api-section__header {
    @include header();
    text-align: center;
    margin-bottom: 20px;
}

.SP__api-section__description {
    @include body();
    margin-bottom: 40px;
    text-align: center;
    max-width: 500px;
}

.SP__header {
    margin-bottom: 30px;
    text-align: center;
}

.SP__header-container {
    margin-bottom: 20px;
}

.SP__header-description {
    @include body();
    text-align: center;
    max-width: 600px;

    @media screen and (min-width: $desktop-breakpoint) {
        margin-bottom: 60px;
    }
}

.SP__software-preview-section {
    display: flex;
    flex-direction: column;
    flex-flow: wrap;

    @media screen and (min-width: $tablet-breakpoint) {
        justify-content: center;
        flex-flow: column;
    }

    @media screen and (min-width: $desktop-breakpoint) {
        align-items: center;
        flex-direction: row;
    }
}

.SP__software-preview {
    width: 33%;
    padding: 40px 20px;
    margin-bottom: 40px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    background: #fafafa;
    border: 1px solid #ededed;
    text-align: center;

    @media screen and (min-width: $tablet-breakpoint) {
        margin-top: 5;
        width: 100%;

    }

    @media screen and (min-width: $desktop-breakpoint) {
        margin: 0 20px;
    }
}
@media only screen and (max-width: 600px) 
  {.SP__software-preview 
   {
    width: 100%;
  }
  }
.SP__software-preview--emphasized {
    border-color: #c3d939;
    border-width: 3px;
    box-shadow: 0 15px 40px 0 rgba(106, 106, 106, 0.15);

    .SP__software-preview__bottom-section {
        margin: 0 30px;
        height: 400px;
    }

    .SP__software-preview {
        max-width: 430px;
    }
}

.SP__software-preview__bottom-section {
    padding: 0 20px;
    height: 335px;
}

.SP__software-preview__button {
    width: 170px;
    height: 45px;
    margin: 0 auto;
}

.SP__software-preview__description {
    @include body();
    height: 150px;
}

.SP__software-preview__header {
    @include subheader();
}
.SP__software-preview__header {
    font-family: Libre Franklin,sans-serif;
    font-weight: 600;
    font-size: 24px;
}
.SP__software-preview__price {
    font-family: Libre Franklin,sans-serif;
    font-weight: 600;
    font-size: 24px;
    text-align: start;
    margin-left: 20px;
    margin-bottom: 15px;
}

.SP__software-preview__price {
    @include subheader();
    text-align: start;
    margin-left: 20px;
    margin-bottom: 15px;
}

.SP__software-preview__rule {
    width: 100%;
    height: 1px;
    background-color: #979797;
    margin-bottom: 20px;
}

.SP__software-preview__checkmark-list {
    margin: 0;
    font-size: 12px;
    text-align: left;
    list-style-image: url('//cdn.shopify.com/s/files/1/0023/5139/8973/files/shape_pico.png?v=1528402811');
}

.SP__software-preview__checkmark-list--colored {
    list-style-image: url(//cdn.shopify.com/s/files/1/0023/5139/8973/files/shape_d024abe3-9c8c-4556-a1a4-e3f9326741f2_pico.png?v=1528402939);
}

.SP__software-preview__checkmark-list__item {
    @include small-body();
    margin: 0 0 20px 30px;
}

.SP__software-preview__checkmark-list__item--colored {
    color: #c3d939;
    text-transform: uppercase;
    text-align: start;
}