/*
 * Services page specific styles - desktop version
 */
/*
 * Styles, which don't generate any output and can be safely imported from
 * all root level stylesheets
 */
/*
 * Paths
 */
/**
 * Animation & transition settings
 */
/*
 * Color Palette
 */
/*
 * Form color palette
 */
/*
 * Footer color palette
 */
/*
 * Settings for the `<body>` element
 */
/*
 * Text
 *
 * Settings for text, fonts, sizes
 */
/**
 * Text sizes
 *
 * Resolution specific font sizes, line height, etc.
 * All styles cascade up
 *
 * For each style is generated "%text--size-NAME" placeholder selector
 * Each style can also be used included using mixin "@include text--size(NAME);"
 *
 * See extends/_text-styles.scss
 */
/**
 * Link styles
 *
 * Settings for the anchor elements
 * For each link style is generated "%link--style-NAME" placeholder selector
 *
 * See extends/_links.scss
 *
 * @demo
 *   @extend %link--style-heading;
 */
/**
 * Grid
 *
 * Grid system settings
 * All resolution styles cascade up from mobile to desktop
 *
 * @demo
 *   <div class="row row--pad">...</div>
 *   <div class="row row--pad-small">...</div>
 */
/**
 * For each grid container is generated ".container--NAME" classname, except
 * for "default", for which ".container" classname is generated
 *
 * @demo
 *   <div class="container"></div>
 *   <div class="container container--footer"></div>
 */
/**
 * Spacing
 *
 * Settings for spacing between most of the elements
 *
 * @demo
 *   @include margins($spacing);
 *   @include margins($spacing-medium);
 */
/**
 * Breakpoints for devices / orientations / screens
 * Following already are default values, uncomment if needed
 */
/**
 * Minimal body width
 */
/**
 * Returns nth property from css property list
 *
 * @property {map} $list List
 * @property {number} $index Item index
 */
/**
 * In each $list pair of $breakpoint: $value replaces all values with 'inherit'
 * except for one in $index position
 *
 * @code
 *     $spacer: (xs: 10px 11px 12px 13px, md: 20px 0);
 *     $spacer-top-only:    pick-css-nth($spacer, 1); // => (xs: 10px inherit inherit inherit, md: 20px inherit inherit inherit)
 *     $spacer-bottom-only: pick-css-nth($spacer, 3); // => (xs: inherit inherit 12px inherit, md: inherit inherit 20px inherit)
 */
/**
 * @function map-deep-get Deep get for sass maps
 * @author https://css-tricks.com/snippets/sass/deep-getset-maps/
 * @description
 * Returns deeply nested property from a map
 *
 *     $paddings: map-deep-get($grid-containers, default, paddings, xs);
 */
/**
 * Mixin for object-fit plugin
 *
 * @see https://github.com/bfred-it/object-fit-images
 * @see components/_background.scss
 * @example
 *   @include object-fit(contain);
 *   @include object-fit(cover, top);
 */
/**
 * Converts SVG into data url so that this SVG could be used as a
 * background image
 *
 * @demo
 *     background-image: svg-to-data-url('<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100">...</svg>');
 */
/**
 * Selectors to target specific browsers without affecting specificity or
 * limiting use in media queries
 *
 * Pros:
 *   - Works with media queries
 *
 * Conts:
 *   - Can't be used with @extend as that will invalidate other selectors
 *
 * See http://browserstrangeness.bitbucket.org/css_hacks.html
 */
/**
 * Target Internet Explorer, but not Edge
 *
 * @demo
 *     div {
 *       @include browser-ie () {
 *         // ...
 *       }
 *     }
 */
/**
 * Target Edge
 */
/**
 * Target Firefox
 */
/**
 * Target Safari
 */
/**
 * Target all WebKit browsers
 */
/**
 * Breakpoints for devices / orientations / screens
 *
 * @code
 *     @include media-breakpoint (lg-up) {
 *         // ...
 *     }
 */
/**
 * Returns if media query name is valid and values exist
 */
/**
 * Output content in a media query
 *
 * @code
 *     .icon {
 *         @include media-breakpoint (sm-down) {
 *             // ...
 *         }
 *     }
 */
/**
 * Output content in retina display media query
 *
 * @code
 *     .icon {
 *         @include media-retina () {
 *             // ...
 *         }
 *     }
 */
/**
 * Output content in non-retina display media query
 *
 * @code
 *     .icon {
 *         @include media-non-retina () {
 *             // ...
 *         }
 *     }
 */
/**
 * Image rendering quality
 * In Chrome background image quality is not the best when using background-size
 */
/**
 * @function placeholder Set input placeholder styles
 * @demo
 *     input {
 *         @include placeholder () {
 *             color: #000;
 *         }
 *     }
 */
/**
 * Margins mixin
 */
/**
 * In each $list pair of $breakpoint: $value replaces all values with 'inherit'
 * except for one in $index position
 *
 * @demo
 *     @include padding(inherit 20px);
 *
 * @demo
 *     @include padding((
 *         xs: inherit 20px,
 *         md: inherit 40px
 *     ));
 */
/*
 * Grid generator mixins
 */
/**
 * Mixin to generate grid container classnames
 *
 * @property {map} $containers Containers
 * @property {number?} $gutter Gutter between grid columns
 */
/**
 * Mixins to generate content for grid container classname
 *
 * @property {map} $container Container
 * @property {map} $container.max-width List of max-widths
 * @property {map} $container.paddings  List of paddings
 * @property {number?} $gutter Gutter between grid columns
 */
/**
 * Mixin to generate column classnames for each resolutions
 *
 * @property {number}  $columns     Number of columns
 * @property {list}    $breakpoints Responsive breakpoints
 */
/**
 * Mixin to generate column paddings for each resolutions
 *
 * @property {number}  $columns     Number of columns
 * @property {list}    $breakpoints Responsive breakpoints
 * @property {number?} $gutter      Gutter between columns
 */
/*
 * 1. Fix for IE where paddings are not taken into account even with box-sizing
 * 2. Fix for Firefox
 */
/*
 * Button normal state style mixin
 *
 * Sets styles to button normal state
 * 1. We overwrite disabled state too because if classname is used, then :hover, :active will take precedent
 */
/*
 * Button hover state style mixin
 *
 * Sets styles to button hover, focused states
 */
/*
 * Button active state style mixin
 *
 * Sets styles to active state
 */
/*
 * Button hover + active state style mixin
 *
 * Sets styles to button active, hover, focused states
 */
/*
 * Active button state style mixin
 *
 * Sets styles to button active, hover, focused states
 */
/*
 * Button disabled state style mixin
 */
/*
 * Button style
 *
 * Sets hover, active, focus, disabled styles
 */
/*
 * Button size
 *
 * Sets different size for different breakpoints
 */
/*
 * Square button modifier mixin
 */
/*
 * Text size
 *
 * Sets different size for different breakpoints
 */
/*
 * Link normal state style mixin
 *
 * Sets styles to link normal state
 */
/*
 * Link hover state style mixin
 *
 * Sets styles to link hover and focused states
 */
/*
 * Link active state style mixin
 *
 * Sets styles to link active state
 */
/*
 * Link hover and active state style mixin
 *
 * Sets styles to link hover, focused and active states
 */
/*
 * Link disabled state style mixin
 *
 * Sets styles to link disabled state
 */
/*
 * Image icon generator mixin
 */
/*
 * Retina image for icon
 */
/**
 * Animations
 *
 * Enables transition for all properties for elements
 *
 * @demo
 *     div { @extend %transition; }
 */
.data-table__order:after {
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.25, 0.74, 0.22, 0.99); }

/**
 * Layout component mixin and placeholder classname, which is above other components
 *
 * @demo
 *     .lightbox { @extend %layout-order-above-top; }
 *     .header { @extend %layout-order-top; }
 *
 *     .lightbox { @include layout-order-above-top(); }
 *     .header { @include layout-order-top(); }
 */
/**
 * Layout component mixin and placeholder classname which covers parent
 *
 * @demo
 *     .btn-large:before { @extend %layout-position-overlay; }
 *     .btn-small:before { @extend %layout-position-overlay-extended; }
 *
 *     .btn-large:before { @include layout-position-overlay(); }
 *     .btn-small:before { @include layout-position-overlay-extended(); }
 */
/**
 * Text style mixin and placeholder classnames
 *
 * Used to keep all standard text and all headings consistent without code
 * duplication / to improve maintainability
 *
 * See settings/_text.scss
 *
 * @demo
 *     body  { @extend %text--default; }
 *     h1    { @extend %text--heading; }
 *
 *     body  { @include text--default(); }
 *     h1    { @include text--heading(); }
 */
.software .data-table th, .software__addons__heading {
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #333333; }
  .ui-footer .software .data-table th, .software .data-table .ui-footer th, .ui-footer .software__addons__heading {
    color: #ffffff; }

/**
 * Text size / style mixin and placeholder classname generator
 * For each style is generated "%text--size-NAME" placeholder selector
 *
 * See settings/_text.scss
 *
 * @demo
 *     .class { @extend %text--size-h1; }
 *
 *     .class { @include text--size(h1); }
 *
 *     .class {
 *         @include text--size((
 *             xs:  ( 'font-size': 1.4rem,  'line-height': 24 / 14 * 1em )
 *         ));
 *     }
 */
.software .data-table, .software__addons__heading, .software__addons li p {
  font-size: 1.4rem;
  line-height: 1.42857em; }

.data-table tbody th {
  font-size: 1.6rem;
  line-height: 1.3125em; }

.services .accordion__content {
  font-size: 1.8rem;
  line-height: 1.66667em; }

/**
 * Link style mixin and placeholder classname generator
 *
 * For each link theme defined in settings/_colors.scss creates
 * a %link--style-NAME placeholder classname
 *
 * See settings/_links.scss
 *
 * @demo
 *     a     { @extend %link--style-default; }
 *     nav a { @extend %link--style-text; }
 *
 *     a     { @include link--style(default); }
 *     nav a { @include link--style(text); }
 */
.data-table__order {
  color: #90989f; }
  .has-hover .data-table__order:focus, .has-hover .data-table__order:hover {
    color: #333333; }
  .data-table__order:active, .is-active.data-table__order {
    color: #333333; }

/**
 * Data table
 *
 * @demo
 *    <table class="data-table">
 *        <thead><tr>
 *            <td>Heading</td>
 *            <td>Heading</td>
 *        </tr></thead>
 *        <tbody>
 *            <tr>
 *                <td>Content</td>
 *                <td>Content</td>
 *            </tr>
 *        </tbody>
 *    </table>
 */
.data-table {
  width: 100%;
  border-spacing: 0; }
  .data-table td,
  .data-table th {
    font-weight: 500;
    text-align: left;
    border-top: 1px solid #edeef0;
    padding: 17px 0 17px 20px; }
    .data-table td:first-child,
    .data-table th:first-child {
      padding-left: 0; }
    .data-table td.text--right,
    .data-table th.text--right {
      text-align: right; }
  .data-table tr:first-child td,
  .data-table tr:first-child th {
    border-top: 0; }
  .data-table thead th {
    color: #90989f;
    border-bottom: 1px solid #edeef0;
    border-top: 0;
    padding-top: 10px;
    padding-bottom: 16px; }
  .data-table thead b {
    color: #333333; }
  .data-table td {
    color: #90989f; }
  .data-table tbody th {
    color: #333333; }

/**
 * Sorting arrows
 *
 * @demo
 *     <a class="data-table__order data-table__order--asc">Ascending</a>
 *     <a class="data-table__order data-table__order--desc">Descending</a>
 *     <a class="data-table__order">Unsorted</a>
 */
.data-table__order {
  display: inline-block;
  position: relative;
  padding-right: 22px; }
  .data-table__order:after {
    content: "";
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2390989f' d='M8.9,7.5C8.7,7.2,8.4,7,8,7H7V1c0-0.6-0.4-1-1-1S5,0.4,5,1v6H4C3.6,7,3.3,7.2,3.1,7.5c-0.2,0.3-0.2,0.7,0,1l2,3 C5.4,11.8,5.7,12,6,12s0.6-0.2,0.8-0.4l2-3C9,8.2,9.1,7.9,8.9,7.5z'/%3E%3C/svg%3E");
    width: 12px;
    height: 12px;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -6px;
    opacity: 0;
    transform: rotate(-180deg);
    transition-property: opacity, transform; }
  .data-table__order--asc:after, .data-table__order--desc:after {
    opacity: 1; }
  .data-table__order--asc:after {
    transform: rotate(0deg); }

/*
 * Selectable row
 */
.data-table__selectable {
  cursor: pointer; }
  .has-hover .data-table__selectable:focus, .has-hover .data-table__selectable:hover {
    background: #f7f9fc; }

/*
 * Adjust button position so that even without it table row
 * would take the same space
 */
.data-table .btn {
  margin-top: -16px;
  margin-bottom: -12px; }

.warranty .text ul b, .warranty .text ul strong {
  font-weight: 900; }
.warranty .text ul p {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem; }
  .warranty .text ul p:first-child {
    margin-top: 0; }
  .warranty .text ul p:last-child {
    margin-bottom: 0; }
.warranty__addons__list {
  display: flex;
  flex-wrap: wrap; }
  .warranty__addons__list li {
    flex-basis: 50%;
    margin-bottom: 3.6rem; }
    .is-ie .warranty__addons__list li {
      min-width: 50%;
      max-width: 50%; }
.warranty .product-list .product {
  border-top: 1px solid #edeef0;
  padding-top: 35px;
  padding-bottom: 35px;
  align-items: center; }
  .warranty .product-list .product:first-child {
    border-top: none;
    padding-top: 0; }
  .warranty .product-list .product figure {
    flex-basis: 30%; }
    .warranty .product-list .product figure img {
      width: auto; }
  .warranty .product-list .product__info {
    margin-left: 40px; }
  .warranty .product-list .product .text ul li {
    margin-bottom: 1.5rem; }

.insurance .text ul li {
  margin-bottom: 3rem; }
.insurance__warning {
  line-height: 1.5em; }
.insurance figure img {
  display: block; }

.software .data-table th {
  border-bottom: none; }
  .software .data-table th span {
    font-size: 2.2rem; }
.software .data-table td:first-child {
  text-align: left; }
.software .data-table td, .software .data-table th {
  color: #333333;
  text-align: center;
  padding-top: 13px;
  padding-bottom: 13px; }
.software__addons__heading__price {
  font-weight: 500;
  font-size: 2.2rem;
  margin-top: 3px; }
.software__addons__heading b {
  font-weight: 900; }
.software__addons li {
  padding-top: 0.5rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #edeef0; }
  .software__addons li:last-child {
    border-bottom: none; }
  .software__addons li p {
    margin-top: 1rem;
    margin-bottom: 1rem; }
    .software__addons li p:first-child {
      margin-top: 0; }
    .software__addons li p:last-child {
      margin-bottom: 0; }

.services .form-section__heading {
  margin-bottom: 0; }
.services .accordion__content {
  margin-left: -40px;
  margin-right: -40px;
  margin-top: 38px;
  padding-left: 40px;
  padding-right: 40px; }
  .services .accordion__content .card {
    margin-left: -40px;
    margin-right: -40px; }
  .services .accordion__content .text ul {
    line-height: 1.33333em; }
    .services .accordion__content .text ul li {
      padding-left: 2rem; }
      .services .accordion__content .text ul li:before {
        width: 7px;
        height: 7px; }

/*# sourceMappingURL=services.css.map */
