/**
 *
 * slippry v1.4.0 - Responsive content slider for jQuery
 * http://slippry.com
 *
 * Authors: Lukas Jakob Hafner - @saftsaak
 *          Thomas Hurd - @SeenNotHurd
 *
 * Copyright 2016, booncon oy - http://booncon.com
 *
 *
 * Released under the MIT license - http://opensource.org/licenses/MIT
 */
/* kenBurns animations, very basic */
@-webkit-keyframes left-right {
  0% {
    -webkit-transform: translateY(-20%) translateX(-10%);
            transform: translateY(-20%) translateX(-10%); }
  100% {
    -webkit-transform: translateY(0%) translateX(10%);
            transform: translateY(0%) translateX(10%); } }
@-o-keyframes left-right {
  0% {
    -o-transform: translateY(-20%) translateX(-10%);
       transform: translateY(-20%) translateX(-10%); }
  100% {
    -o-transform: translateY(0%) translateX(10%);
       transform: translateY(0%) translateX(10%); } }
@keyframes left-right {
  0% {
    -webkit-transform: translateY(-20%) translateX(-10%);
         -o-transform: translateY(-20%) translateX(-10%);
            transform: translateY(-20%) translateX(-10%); }
  100% {
    -webkit-transform: translateY(0%) translateX(10%);
         -o-transform: translateY(0%) translateX(10%);
            transform: translateY(0%) translateX(10%); } }
@-webkit-keyframes right-left {
  0% {
    -webkit-transform: translateY(0%) translateX(10%);
            transform: translateY(0%) translateX(10%); }
  100% {
    -webkit-transform: translateY(-20%) translateX(-10%);
            transform: translateY(-20%) translateX(-10%); } }
@-o-keyframes right-left {
  0% {
    -o-transform: translateY(0%) translateX(10%);
       transform: translateY(0%) translateX(10%); }
  100% {
    -o-transform: translateY(-20%) translateX(-10%);
       transform: translateY(-20%) translateX(-10%); } }
@keyframes right-left {
  0% {
    -webkit-transform: translateY(0%) translateX(10%);
         -o-transform: translateY(0%) translateX(10%);
            transform: translateY(0%) translateX(10%); }
  100% {
    -webkit-transform: translateY(-20%) translateX(-10%);
         -o-transform: translateY(-20%) translateX(-10%);
            transform: translateY(-20%) translateX(-10%); } }
/* added to the original element calling slippry */
.sy-box.sy-loading {
  background: url("../gif/sy-loader.gif") 50% 50% no-repeat;
  -webkit-background-size: 32px 32px;
          background-size: 32px;
  min-height: 40px; }
  .sy-box.sy-loading .sy-slides-wrap, .sy-box.sy-loading .sy-pager {
    visibility: hidden; }

/* element that wraps the slides */
.sy-slides-wrap {
  position: relative;
  height: 100%;
  width: 100%; }
  .sy-slides-wrap:hover .sy-controls {
    display: block; }

/* element that crops the visible area to the slides */
.sy-slides-crop {
  height: 100%;
  width: 100%;
  position: absolute;
  overflow: hidden; }

/* list containing the slides */
.sy-list {
  width: 100%;
  height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute; }
  .sy-list.horizontal {
    -webkit-transition: left ease;
         -o-transition: left ease;
            transition: left ease; }
  .sy-list.vertical {
    -webkit-transition: top ease;
         -o-transition: top ease;
            transition: top ease; }

/* single slide */
.sy-slide {
  position: absolute;
  width: 100%;
  z-index: 2; }
  .sy-slide.kenburns {
    width: 140%;
    left: -20%; }
    .sy-slide.kenburns.useCSS {
      -webkit-transition-property: opacity;
           -o-transition-property: opacity;
              transition-property: opacity; }
      .sy-slide.kenburns.useCSS.sy-ken:nth-child(1n) {
        -webkit-animation-name: left-right;
             -o-animation-name: left-right;
                animation-name: left-right;
        -webkit-animation-fill-mode: forwards;
             -o-animation-fill-mode: forwards;
                animation-fill-mode: forwards; }
      .sy-slide.kenburns.useCSS.sy-ken:nth-child(2n) {
        -webkit-animation-name: right-left;
             -o-animation-name: right-left;
                animation-name: right-left;
        -webkit-animation-fill-mode: forwards;
             -o-animation-fill-mode: forwards;
                animation-fill-mode: forwards; }
  .sy-slide.sy-active {
    z-index: 3; }
  .sy-slide > img {
    margin: 0;
    padding: 0;
    display: block;
    width: 100%;
    border: 0; }
  .sy-slide > a {
    margin: 0;
    padding: 0;
    display: block;
    width: 100%; }
    .sy-slide > a > img {
      margin: 0;
      padding: 0;
      display: block;
      width: 100%;
      border: 0; }

/* next/ prev buttons, with arrows and clickable area a lot larger than the visible buttons */
.sy-controls {
  display: none;
  list-style: none;
  height: 100%;
  width: 100%;
  position: absolute;
  padding: 0;
  margin: 0; }
  .sy-controls li {
    position: absolute;
    width: 10%;
    min-width: 4.2em;
    height: 100%;
    z-index: 33; }
    .sy-controls li.sy-prev {
      left: 0;
      top: 0; }
      .sy-controls li.sy-prev a:after {
        background-position: -5% 0; }
    .sy-controls li.sy-next {
      right: 0;
      top: 0; }
      .sy-controls li.sy-next a:after {
        background-position: 105% 0; }
    .sy-controls li a {
      position: relative;
      width: 100%;
      height: 100%;
      display: block;
      text-indent: -9999px; }
      .sy-controls li a:link, .sy-controls li a:visited {
        opacity: 0.4; }
      .sy-controls li a:hover, .sy-controls li a:focus {
        opacity: 0.8;
        outline: none; }
      .sy-controls li a:after {
        content: "";
        background-image: url("../svg/arrows.svg");
        background-repeat: no-repeat;
        -webkit-background-size: cover;
                background-size: cover;
        text-align: center;
        text-indent: 0;
        line-height: 2.8em;
        color: #111;
        font-weight: 800;
        position: absolute;
        background-color: #fff;
        width: 2.8em;
        height: 2.8em;
        left: 50%;
        top: 50%;
        margin-top: -1.4em;
        margin-left: -1.4em;
        border-radius: 50%; }
  @media only screen and (max-device-width: 600px) {
    .sy-controls {
      display: block; }
      .sy-controls li {
        min-width: 2.1em; }
        .sy-controls li a:after {
          width: 1.4em;
          height: 1.4em;
          margin-top: -0.7em;
          margin-left: -0.7em; } }

/* captions, styled fo the overlay variant */
.sy-caption-wrap {
  position: absolute;
  bottom: 2em;
  z-index: 12;
  left: 50%; }
  .sy-caption-wrap .sy-caption {
    position: relative;
    left: -50%;
    background-color: rgba(0, 0, 0, 0.54);
    color: #fff;
    padding: 0.4em 1em;
    border-radius: 1.2em; }
    .sy-caption-wrap .sy-caption a:link, .sy-caption-wrap .sy-caption a:visited {
      color: #e24b70;
      font-weight: 600;
      text-decoration: none; }
    .sy-caption-wrap .sy-caption a:hover, .sy-caption-wrap .sy-caption a:focus {
      text-decoration: underline; }
  @media only screen and (max-device-width: 600px), screen and (max-width: 600px) {
    .sy-caption-wrap {
      left: 0;
      bottom: 0.4em; }
      .sy-caption-wrap .sy-caption {
        left: 0;
        padding: 0.2em 0.4em;
        font-size: 0.92em;
        border-radius: 0; } }

/* pager bubbles */
.sy-pager {
  clear: both;
  display: block;
  width: 100%;
  margin: 1em 0 0;
  padding: 0;
  list-style: none;
  text-align: center; }
  .sy-pager li {
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    margin: 0 1em 0 0;
    border-radius: 50%; }
    .sy-pager li.sy-active a {
      background-color: #e24b70; }
    .sy-pager li a {
      width: 100%;
      height: 100%;
      display: block;
      background-color: #ccc;
      text-indent: -9999px;
      -webkit-background-size: 2em 2em;
              background-size: 2em;
      border-radius: 50%; }
      .sy-pager li a:link, .sy-pager li a:visited {
        opacity: 1.0; }
      .sy-pager li a:hover, .sy-pager li a:focus {
        opacity: 0.6; }

/* element to "keep/ fill" the space of the content, gets intrinsic height via js */
.sy-filler {
  width: 100%; }
  .sy-filler.ready {
    -webkit-transition: padding 600ms ease;
         -o-transition: padding 600ms ease;
            transition: padding 600ms ease; }

/* #region Responsive Mixins */
/* #region Responsive */
/* #endregion */
/* #endregion */
.wrapper {
  margin: 0 auto;
}

.wrapper #hero {
  margin: 0 auto 1em;
  max-width: 1550px;
  text-align: center;
}

.wrapper #hero .sy-pager li:last-child {
  margin-right: 0;
}

.wrapper #hero .sy-slides-crop {
  height: 99%;
}

@media only screen and (min-width: 1049px) {
  .wrapper #hero .slipslide .button {
    margin-left: 0;
  }
}

.wrapper #hero .slipslide .products {
  background-position: right;
}

@media only screen and (max-width: 1048px) {
  .wrapper #hero .slipslide .products {
    background-color: #777777;
    height: auto;
  }
}

.wrapper #hero .slipslide .products .content {
  width: 500px;
  height: 100%;
  background: transparent;
  color: #ffffff;
  padding: 0 5em;
  text-align: left;
  box-sizing: border-box;
  z-index: 1;
}

.wrapper #hero .slipslide .products .content .logo-container {
  height: auto;
  margin-bottom: 1em;
  width: 100%;
}

.wrapper #hero .slipslide .products .content .logo {
  height: 80%;
  width: 80%;
}

.wrapper #hero .slipslide .products .content img.herologo {
  margin-bottom: 1em;
}

.wrapper #hero .slipslide .products .content h3 {
  color: #ffffff;
  font-family: "Segoe UI", Arial, Tahoma;
  font-size: 1.875em;
  font-weight: bold;
  margin: 0;
  text-align: left;
}

.wrapper #hero .slipslide .products .content p {
  color: #ffffff;
  font-family: "Segoe UI", Arial, Tahoma;
  font-size: 1.25em;
  margin: 0.25em 0 1.25em;
  text-align: left;
}

.wrapper #hero .slipslide .products .content2 {
  width: 88%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  margin: 0 auto;
  overflow: hidden;
}

@media only screen and (max-width: 1048px) {
  .wrapper #hero .slipslide .products .content2 {
    background: transparent;
    color: #fff;
    height: 100%;
    margin: 0 auto;
    padding: 2em 5em;
    position: relative;
    text-align: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    z-index: 1;
  }
}

.wrapper #hero .slipslide .products .content2 h3 {
  color: #ffffff;
  font-family: "Segoe UI", Arial, Tahoma;
  font-size: 1.875em;
  font-weight: bold;
  margin: 0;
  text-align: center;
}

.wrapper #hero .slipslide .products .content2 h3.mobile {
  display: none;
}

@media only screen and (max-width: 1047px) {
  .wrapper #hero .slipslide .products .content2 h3.mobile {
    display: block;
  }
}

.wrapper #hero .slipslide .products .content2 p {
  color: #ffffff;
  font-family: "Segoe UI", Arial, Tahoma;
  font-size: 1.25em;
  margin: 1em 0 1.25em;
  text-align: center;
}

.wrapper #hero .slipslide .products .content2 p.mobile {
  display: none;
}

@media only screen and (max-width: 1047px) {
  .wrapper #hero .slipslide .products .content2 p.mobile {
    display: block;
  }
}

@media only screen and (min-width: 1048px) {
  .wrapper #hero .slipslide .products .content2 div.mid {
    position: absolute;
    z-index: 1;
    max-width: 520px;
    min-width: 50%;
    left: calc(50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 60px;
    text-align: center;
  }
}

.wrapper #hero .slipslide .products .res {
  position: relative;
  z-index: 1;
}

@media only screen and (min-width: 1048px) {
  .wrapper #hero .slipslide .products .res {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.675) 0%, rgba(0, 0, 0, 0.5) 35%, rgba(0, 0, 0, 0.25) 75%, rgba(0, 0, 0, 0) 100%);
    /*height: 99%;*/
    position: relative;
    position: absolute;
    /*top: calc(50%);
						-ms-transform: translateY(-50%);
						transform: translateY(-50%);*/
    top: 0;
    bottom: 0;
    z-index: 1;
    margin: 0 auto;
    overflow: hidden;
  }
}

@media only screen and (max-width: 1047px) {
  .wrapper #hero .slipslide .products .res {
    margin: 0 auto;
    padding: 2em 5em;
    text-align: center;
    width: 100%;
  }
}

@media only screen and (min-width: 1048px) {
  .wrapper #hero .slipslide .products .res.light {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.675) 0%, rgba(255, 255, 255, 0.5) 35%, rgba(255, 255, 255, 0.25) 75%, rgba(255, 255, 255, 0) 100%);
  }
}

@media only screen and (min-width: 1048px) {
  .wrapper #hero .slipslide .products .res div.mid {
    /*margin: 25% auto;*/
    position: absolute;
    top: calc(50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 0.938em;
    width: 280px;
  }
}

@media only screen and (min-width: 1300px) {
  .wrapper #hero .slipslide .products .res div.mid {
    font-size: 1em;
    width: 350px;
  }
}

@media only screen and (max-width: 1047px) {
  .wrapper #hero .slipslide .products .res h3 {
    text-align: center;
  }
}

.wrapper #hero .slipslide .products .res h3.desktop {
  display: block;
}

@media only screen and (max-width: 1047px) {
  .wrapper #hero .slipslide .products .res h3.desktop {
    display: none;
  }
}

.wrapper #hero .slipslide .products .res h3.mobile {
  display: none;
}

@media only screen and (max-width: 1047px) {
  .wrapper #hero .slipslide .products .res h3.mobile {
    display: block;
  }
}

@media only screen and (max-width: 1047px) {
  .wrapper #hero .slipslide .products .res p {
    text-align: center;
  }
}

@media only screen and (min-width: 1048px) {
  .wrapper #hero .slipslide .products .res .dark {
    color: #2d2d2d;
  }
}

.wrapper #hero .slipslide .products .heroimg {
  position: relative;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 0;
  width: 100%;
  overflow: hidden;
}

@media only screen and (max-width: 1047px) {
  .wrapper #hero .slipslide .products .heroimg.lg {
    display: none;
  }
}

@media only screen and (min-width: 1048px) {
  .wrapper #hero .slipslide .products .heroimg.sm {
    display: none;
  }
}

.wrapper #press {
  margin: 0 auto;
  border-bottom: 3px solid #ffffff;
}

.wrapper #press > h2 {
  font-family: "Segoe UI", Arial, Tahoma;
  font-size: 2.438em;
  font-weight: normal;
  margin: 1em auto 0.75em;
  text-align: center;
}

.wrapper #press > div.latest {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 1em;
}

@media (min-width: 768px) {
  .wrapper #press > div.latest {
    justify-content: space-around;
  }
}

@media (min-width: 1024px) {
  .wrapper #press > div.latest {
    justify-content: space-between;
  }
}

.wrapper #press > div.latest article {
  background-color: #FFF;
  display: flex;
  flex-direction: column;
  margin: 0 1em 2em;
  max-width: 270px;
}

@media (min-width: 1024px) {
  .wrapper #press > div.latest article {
    margin-left: 0;
    margin-right: 0;
  }
}

.wrapper #press > div.latest article > a {
  height: 152px;
  position: relative;
  width: 270px;
}

.wrapper #press > div.latest article > a > span {
  background-size: contain;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.wrapper #press > div.latest article > a > span.large {
  display: none;
}

.wrapper #press > div.latest article div.content_wrapper {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.wrapper #press > div.latest article div.content_wrapper > a {
  align-self: flex-end;
  color: #2D2D2D;
  background-color: #FFF;
  padding: 5px 10px;
}

.wrapper #press > div.latest article div.content_wrapper > a:hover {
  text-decoration: none;
}

.wrapper #press > div.latest article div.content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 13px;
}

.wrapper #press > div.latest article div.content > h2 {
  font-size: 15px;
  font-weight: normal;
  margin: 0;
}

.wrapper #press > div.latest article div.content > p {
  flex-grow: 1;
  position: relative;
}

.wrapper #press > div.latest article.entertainment {
  border-top: 5px solid #D6492A;
}

.wrapper #press > div.latest article.entertainment > a {
  background-image: url("../png/entertainment_article_default.png");
}

.wrapper #press > div.latest article.entertainment div.content > h2 > a {
  color: #016cd3;
  font-weight: 500;
}

.wrapper #press > div.latest article.entertainment div.content > p::after {
  background: linear-gradient(to bottom, transparent 60%, #FFEBE6);
}

.wrapper #press > div.latest article.software {
  border-top: 5px solid #66BC29;
}

.wrapper #press > div.latest article.software > a {
  background-image: url("../png/software_article_default.png");
}

.wrapper #press > div.latest article.software div.content > h2 > a {
  color: #016cd3;
  font-weight: 500;
}

.wrapper #press > div.latest article.software div.content > p::after {
  background: linear-gradient(to bottom, transparent 60%, #F0FFE5);
}

.wrapper #press > div.latest article.corporate {
  border-top: 5px solid #0D4D8B;
}

.wrapper #press > div.latest article.corporate > a {
  background-image: url("../png/corporate_article_default.png");
}

.wrapper #press > div.latest article.corporate div.content > h2 > a {
  color: #016cd3;
  font-weight: 500;
}

.wrapper #press > div.latest article.corporate div.content > p::after {
  background: linear-gradient(to bottom, transparent 60%, #E5F2FD);
}

html body {
  padding-top: 50px;
}

.super {
  font-family: 'Segoe UI', Arial, Verdana, Sans-Serif;
  font-size: 0.5em;
  vertical-align: top;
}

.super2 {
  font-family: 'Segoe UI', Arial, Verdana, Sans-Serif;
  font-size: 0.6em;
  vertical-align: top;
}

section.apps {
  margin-top: 0;
  padding-top: 20px;
}

section.apps > header {
  color: #2d2d2d;
  margin: 2em auto 4em;
}

section.apps > header > h2 {
  align-items: stretch;
  display: flex;
  flex-direction: row;
  font: normal 2.5em 'Segoe UI', Arial, Sans-Serif;
  font-weight: 500;
  justify-content: center;
  margin: 0;
  padding: 0;
  text-align: center;
}

section.apps > header > h3 {
  align-items: stretch;
  display: flex;
  flex-direction: row;
  font: normal 1.5em 'Segoe UI', Arial, Sans-Serif;
  justify-content: center;
  margin: 0.375em 0 2em;
  padding: 0;
  text-align: center;
}

section.apps > div.content {
  align-items: stretch;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  max-width: 1300px;
}

section.apps > div.content.btn {
  padding-bottom: 2em;
}

section.apps > div.content div.app {
  background: #ffffff;
  border: 1px solid #CCC;
  border-radius: 5px;
  box-shadow: 0px 0px 6px 2px #00000020;
  display: flex;
  flex-direction: column;
  margin: 0.75em 0.75em 2em;
  list-style: none outside none;
  text-align: center;
  width: 300px;
}

section.apps > div.content div.app:hover {
  background: #cbf3ff;
}

section.apps > div.content div.app, section.apps > div.content div.app .applink {
  text-decoration: none;
}

section.apps > div.content div.app > div.top, section.apps > div.content div.app .applink > div.top {
  text-align: center;
  margin: -2em auto 0;
  padding: 0.25em 0.5em;
}

section.apps > div.content div.app > div.top img.icon, section.apps > div.content div.app .applink > div.top img.icon {
  margin: 0 auto;
  max-width: 72px;
  text-align: center;
}

section.apps > div.content div.app > div.top img.icon2, section.apps > div.content div.app .applink > div.top img.icon2 {
  margin: -9px auto;
  max-width: 90px;
  text-align: center;
}

section.apps > div.content div.app > img, section.apps > div.content div.app .applink > img {
  border: 0;
}

section.apps > div.content div.app > h3, section.apps > div.content div.app .applink > h3 {
  color: #2D2D2D;
  font: bold 1.375rem 'Segoe UI', Arial, Sans-Serif;
  margin: 0;
}

section.apps > div.content div.app > p, section.apps > div.content div.app .applink > p {
  color: #2D2D2D;
  font-size: .938rem;
  margin: 0.5em 0;
}

section.apps > div.content div.app > p[itemprop="description"], section.apps > div.content div.app .applink > p[itemprop="description"] {
  flex: 1 0 auto;
  margin: 0.125em auto;
  text-align: center;
  width: 82%;
}

section.apps > div.content div.app > p[itemprop="offers"], section.apps > div.content div.app .applink > p[itemprop="offers"] {
  margin: 0;
}

section.apps > div.content div.app > p[itemprop="offers"] > span.price, section.apps > div.content div.app .applink > p[itemprop="offers"] > span.price {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

section.apps > div.content div.app > p[itemprop="offers"] > span.price > span:not(:last-child), section.apps > div.content div.app .applink > p[itemprop="offers"] > span.price > span:not(:last-child) {
  margin-right: .5em;
}

section.apps > div.content div.app .install, section.apps > div.content div.app .applink .install {
  color: #7f7f7f;
  font-size: .875rem;
  margin: 0 auto;
}

section.apps > div.content div.app .price, section.apps > div.content div.app .applink .price {
  align-items: baseline;
  display: block;
  color: #016cd3;
  font: normal 1.5em 'Segoe UI', Arial, Sans-Serif;
  font-weight: 500;
  line-height: 1.5em;
  margin: 0.5em auto 0;
  text-align: center;
}

section.apps > div.content div.app .price .strike, section.apps > div.content div.app .applink .price .strike {
  color: #004b8d;
  font-size: 0.675em;
}

section.apps > div.content div.app > div.buttons, section.apps > div.content div.app .applink > div.buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: .5em;
  min-height: 70px;
}

section.apps > div.content div.app > div.buttons a.link, section.apps > div.content div.app .applink > div.buttons a.link {
  color: #004b8d;
  margin-right: 100%;
  margin-top: 1em;
  text-decoration: none;
  white-space: nowrap;
}

section.apps > div.content div.app > div.buttons a.link:hover, section.apps > div.content div.app .applink > div.buttons a.link:hover {
  color: #1BA5C7;
  text-decoration: underline;
}

section.apps > div.content div.app a.learnmore, section.apps > div.content div.app .applink a.learnmore {
  color: #016cd3;
  margin: 0 auto 1.5em;
}

#productivity {
  background-color: #eaf5ff;
}

#personalized {
  background: linear-gradient(0deg, #002f46, #003d5c);
}

#personalized > header h2, #personalized > header h3 {
  color: #ffffff;
}

#odnt {
  background-color: #ffffff;
  padding: 20px 0;
}

#odnt div.wrap {
  background: linear-gradient(0deg, #003d5c, #02a1f9);
  border-radius: 5px;
  margin: 1em auto;
  max-width: 900px;
  width: 96%;
}

#odnt div.wrap div.odnt {
  display: flex;
  padding: 2em 3em;
}

@media only screen and (max-width: 820px) {
  #odnt div.wrap div.odnt {
    flex-direction: column;
  }
}

#odnt div.wrap div.odnt > div.left {
  flex-direction: column;
  text-align: left;
  justify-items: left;
  display: flex;
  justify-content: center;
}

@media only screen and (max-width: 820px) {
  #odnt div.wrap div.odnt > div.left {
    justify-items: center;
    text-align: center;
  }
}

#odnt div.wrap div.odnt > div h2 {
  align-items: stretch;
  color: #ffffff;
  display: flex;
  flex-direction: row;
  font: normal 2.5em 'Segoe UI', Arial, Sans-Serif;
  font-weight: 500;
  justify-content: center;
  margin: 0;
  padding: 0;
  text-align: left;
}

@media only screen and (max-width: 820px) {
  #odnt div.wrap div.odnt > div h2 {
    text-align: center;
  }
}

#odnt div.wrap div.odnt > div > img {
  display: block;
  margin: 0 auto;
  width: 320px;
}

#odnt div.wrap div.odnt > div div.buttons {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  text-align: left;
  align-items: center;
}

@media only screen and (max-width: 820px) {
  #odnt div.wrap div.odnt > div div.buttons {
    justify-content: center;
    margin-bottom: 2em;
  }
}

@media only screen and (max-width: 510px) {
  #odnt div.wrap div.odnt > div div.buttons {
    flex-direction: column;
  }
}

#odnt div.wrap div.odnt > div div.buttons a.button {
  margin: 1em 1em 0 0;
}

@media only screen and (max-width: 510px) {
  #odnt div.wrap div.odnt > div div.buttons a.button {
    margin: 1em 1em 0;
  }
}

#odnt div.wrap div.odnt > div > div.icons {
  align-items: center;
  margin: 0 auto;
  text-align: center;
  width: 90%;
}

#odnt div.wrap div.odnt > div > div.icons > img {
  max-height: 35px;
  max-width: 35px;
}

#odnt div.wrap div.odnt > div > div.icons > span {
  color: #ffffff;
  font-size: 1.5em;
  letter-spacing: 2px;
}

@media (max-width: 786px) {
  section.apps > header > h1 {
    text-align: center;
    white-space: normal;
  }
}

.buy-button {
  display: flex;
  height: 46px;
  padding: 0;
  box-sizing: border-box;
  border-radius: 10px;
  font-size: 1.25em;
  font-family: "Segoe UI", Arial, Tahoma;
  line-height: 46px;
  margin: 0.5em auto;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: .3s;
  user-select: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  width: 194px;
  margin-bottom: 0.5em;
}

.buy-button span {
  margin: 0;
  padding: 0;
  border: 0;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  font: inherit;
  vertical-align: baseline;
  display: flex;
  justify-content: center;
}

.buy-button .btntext {
  display: flex;
  justify-content: center;
  width: 148px;
  border-radius: 10px 0 0 10px;
}

.buy-button .btnicon {
  border-radius: 0 10px 10px 0;
  display: block;
  padding-top: 2px;
  width: 46px;
}

.buy-button:hover {
  filter: brightness(1.1);
  text-decoration: none;
}

.learnmore-btn {
  display: flex;
  height: 46px;
  padding: 0;
  box-sizing: border-box;
  border-radius: 10px;
  font-size: 1.25em;
  font-family: "Segoe UI", Arial, Tahoma;
  line-height: 46px;
  margin: 0.5em auto;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: .3s;
  user-select: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  width: 194px;
  margin-bottom: 0.5em;
  justify-content: center;
}

.learnmore-btn:hover {
  filter: brightness(1.1);
  text-decoration: none;
}

.learnmore-btn.long {
  width: 260px;
}

.button.blue {
  background-color: #01a2fd;
  color: #fff;
}

.button.blue.sale span {
  margin: 0 auto;
}

.button.blue .btntext {
  background-color: #01a2fd;
}

.button.blue .btnicon {
  background-color: #3db9ff;
}

.button.green {
  color: #fff;
}

.button.green .btntext {
  background-color: #65aa29;
}

.button.green .btnicon {
  background-color: #84cb47;
}

.sy-controls li {
  width: auto;
}
