/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
 * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any styles
 * defined in the other CSS/SCSS files in this directory. It is generally better to create a new
 * file per style scope.
 *


 */
/*
 * BEFORE MODIFYING THIS DOCUMENT READ THIS DOCUMENTATION CAREFULLY:
 *
 * http://cssguidelin.es/
 *
 * What differs from the guideline:
 *
 * - Indentations are 2px
 * - Columns are 120px wide
 * - don't use [] in html inside class="" for grouping
 * - in html class="" don't use 2 space between classes, but put the related ones next to each other
 * - low level commenting is not necessary but u can use, just try to explain the things u think is important
 *
 */





/*
 * BASIC HTML RULES
 * General setting ot html elements
 *
 * Use em to set font sizes everywhere!
 */






* {
  margin: 0;
  padding: 0;
}



html {
  -webkit-tap-highlight-color: rgba(0,0,0,0); /* prevent highlight on tap */
  -webkit-text-size-adjust: 100%; /* text may be inflated of this exact proportion on mobile browsers */
  height: 100%;
}

  body {
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 62.5%; /* make the basic font size 10px, so we can use em to set font sizes. 6.25% is 1px */
    font-weight: 300;
    line-height: 1.5;
    color: #444;
    height: 100%;
    /* Prevent user selection
    -webkit-user-select: none;
    user-select: none;*/
  }

  .dark {
    background-color: #333;
    color: #eee;
  }



p {
  margin: 0 0 1em;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: 'Roboto Slab';
  font-weight: 400;
  line-height: 1.25;
  margin-top:    .5em;
  margin-bottom: .5em;
}

h1, .h1 { font-size: 4.6em; }
h2, .h2 { font-size: 3.0em; }
h3, .h3 { font-size: 2.2em; }
h4, .h4 { font-size: 1.8em; }
h5, .h5 { font-size: 1.4em; }
h6, .h6 { font-size: 1.2em; }

@media only screen and (max-width: 768px) {
  h1, .h1 { font-size: 3.0em; }
  h2, .h2 { font-size: 2.2em; }
}



a {
  color: #0066a9;
  text-decoration: none;
}

a:active, a:hover {
  outline: 0;
}



img {
  vertical-align: middle;
  border: 0;
}



ul, ol {
  margin: 0 0 2em 2em;
}

ul {
  list-style-type: circle;
}

li {
  margin: 0 0 .5em;
}



article, aside, details, figcaption, figure, footer, header, main, nav, section, summary {
  display: block;
}



b, strong {
  font-weight: 700;
}



blockquote {
  font-style: italic;
  border-left: solid 5px rgba(125,125,125,.2);
  padding: .5em 0 .5em 1em;
  margin: 0 0 1em 1em;
}

blockquote > p {
  margin: 0;
}



legend {
  border: 0;
  padding: 0;
}



input, button, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  background-image: none;
}

input, textarea {
  /* enable to select the text here
  -webkit-user-select: text;
  user-select: text;*/
}

textarea {
  overflow: auto;
  vertical-align: top;
}

button, select {
  text-transform: none;
}

button, input, textarea {
  -webkit-appearance: none; /* prevent to change the look in webkit browsers to the default */
}

button, input[type="button"], input[type="reset"], input[type="submit"] {
  cursor: pointer;
}

button[disabled], input[disabled] {
  cursor: default;
}

input[type="search"] {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
 * BEFORE MODIFYING THIS DOCUMENT READ THIS DOCUMENTATION CAREFULLY:
 *
 * http://cssguidelin.es/
 *
 * What differs from the guideline:
 *
 * - Indentations are 2px
 * - Columns are 120px wide
 * - don't use [] in html inside class="" for grouping
 * - in html class="" don't use 2 space between classes, but put the related ones next to each other
 * - low level commenting is not necessary but u can use, just try to explain the things u think is important
 *
 */





/*
 * COLORS
 * Colors to attach
 *
 * 1) TEXT................Colors for text
 *
 * 2) BACKGROUND..........Colors for background
 *
 */





/*--------*\
   #TEXT
\*--------*/




.text-white--1, .text-white--1 a {
  color: rgba(255, 255, 255, 1);
}

.text-white--08, .text-white--08 a {
  color: rgba(255, 255, 255, 0.8);
}

.text-white--06, .text-white--06 a {
  color: rgba(255, 255, 255, 0.6);
}

.text-white--04, .text-white--04 a {
  color: rgba(255, 255, 255, 0.4);
}

.text-white--02, .text-white--02 a {
  color: rgba(255, 255, 255, 0.2);
}

.text-black--1, .text-black--1 a {
  color: rgba(0, 0, 0, 1);
}

.text-black--08, .text-black--08 a {
  color: rgba(0, 0, 0, 0.8);
}

.text-black--06, .text-black--06 a {
  color: rgba(0, 0, 0, 0.6);
}

.text-black--04, .text-black--04 a {
  color: rgba(0, 0, 0, 0.4);
}

.text-black--02, .text-black--02 a {
  color: rgba(0, 0, 0, 0.2);
}

.text-blue--1, .text-blue--1 a{
  color: rgba(0, 154, 255, 1);
}

.text-red--1, .text-red--1 a{
  color: rgb(255, 0, 0);
}





/*-------------*\
   #BACKGROUND
\*-------------*/



.bg-black--005 {
  background-color: rgba(0,0,0,.05);
}

.bg-black--01 {
  background-color: rgba(0,0,0,.1);
}

.bg-black--02 {
  background-color: rgba(0,0,0,.2);
}

.bg-black--03 {
  background-color: rgba(0,0,0,.3);
}

.bg-black--04 {
  background-color: rgba(0,0,0,.4);
}

.bg-black--05 {
  background-color: rgba(0,0,0,.5);
}

.bg-black--06 {
  background-color: rgba(0,0,0,.6);
}

.bg-black--07 {
  background-color: rgba(0,0,0,.7);
}

.bg-black--08 {
  background-color: rgba(0,0,0,.8);
}

.bg-black--09 {
  background-color: rgba(0,0,0,.9);
}

.bg-black--1 {
  background-color: rgba(0,0,0,1);
}



.bg-mid-grey--02 {
  background-color: rgba(125,125,125,.2);
}



.bg-white--01 {
  background-color: rgba(255,255,255,.1);
}

.bg-white--02 {
  background-color: rgba(255,255,255,.2);
}

.bg-white--03 {
  background-color: rgba(255,255,255,.3);
}

.bg-white--04 {
  background-color: rgba(255,255,255,.4);
}

.bg-white--05 {
  background-color: rgba(255,255,255,.5);
}

.bg-white--06 {
  background-color: rgba(255,255,255,.6);
}

.bg-white--07 {
  background-color: rgba(255,255,255,.7);
}

.bg-white--08 {
  background-color: rgba(255,255,255,.8);
}

.bg-white--09 {
  background-color: rgba(255,255,255,.9);
}

.bg-white--1 {
  background-color: rgba(255,255,255,1);
}


/*
 * APPADVICE FONT SET
 *
 * Generated through fontastic.com
 * If new icons are added to the list, overwrite the font files, and copy the new icon classes to this document.
 * Keep the order by the content.
 *
 *
 * We don't use http://cssguidelin.es/ here for naming.
 */


/* Note: these files are part of the site's PUBLIC dir */

@font-face {
  font-family: "appadvice";
  src: url('/fonts-appadvice/appadvice.eot');
  src: url('/fonts-appadvice/appadvice.eot?#iefix') format("embedded-opentype"),
       url('/fonts-appadvice/appadvice.woff') format("woff"),
       url('/fonts-appadvice/appadvice.ttf') format("truetype"),
       url('/fonts-appadvice/appadvice.svg#appadvice') format("svg");
  font-weight: normal;
  font-style: normal;
}

[data-icon]:before {
  font-family: "appadvice" !important;
  content: attr(data-icon);
  font-style:   normal !important;
  font-weight:  normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  vertical-align: middle;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: "appadvice" !important;
  font-style:   normal !important;
  font-weight:  normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  vertical-align: middle;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-appadvice-logo:before {
  content: "\e000";
}

.icon-movie-play-o:before {
  content: "\e001";
}

.icon-check-circle-o:before {
  content: "\e002";
}

.icon-alert-o:before {
  content: "\e003";
}

.icon-information-o:before {
  content: "\e004";
}

.icon-thumbnails-o:before {
  content: "\e005";
}

.icon-book-o:before {
  content: "\e006";
}

.icon-note-paper-o:before {
  content: "\e007";
}

.icon-movie-play:before {
  content: "\e008";
}

.icon-note-paper:before {
  content: "\e009";
}

.icon-check-circle:before {
  content: "\e010";
}

.icon-alert:before {
  content: "\e011";
}

.icon-information:before {
  content: "\e012";
}

.icon-direction-sign:before {
  content: "\e013";
}

.icon-book:before {
  content: "\e014";
}

.icon-thumbnails:before {
  content: "\e015";
}

.icon-direction-sign-o:before {
  content: "\e016";
}

.icon-magnifier-o:before {
  content: "\e017";
}

.icon-chat-bubble-o:before {
  content: "\e018";
}

.icon-magnifier:before {
  content: "\e019";
}

.icon-preview:before {
  content: "\e020";
}

.icon-chat-bubble:before {
  content: "\e021";
}

.icon-preview-o:before {
  content: "\e022";
}

.icon-share-icon:before {
  content: "\e023";
}

.icon-list-o:before {
  content: "\e024";
}

.icon-list:before {
  content: "\e025";
}

.icon-chevron-right:before {
  content: "\e026";
}

.icon-chevron-left:before {
  content: "\e027";
}

.icon-chevron-up:before {
  content: "\e028";
}

.icon-chevron-down:before {
  content: "\e029";
}

.icon-star-half-o:before {
  content: "\e030";
}

.icon-star-o:before {
  content: "\e031";
}

.icon-star:before {
  content: "\e032";
}

.icon-glasses-o:before {
  content: "\e033";
}

.icon-glasses:before {
  content: "\e034";
}

.icon-arrow-left:before {
  content: "\e035";
}

.icon-arrow-right:before {
  content: "\e036";
}

.icon-arrow-up:before {
  content: "\e037";
}

.icon-arrow-down:before {
  content: "\e038";
}

.icon-tag-o:before {
  content: "\e039";
}

.icon-tag:before {
  content: "\e040";
}

.icon-setting-gear-o:before {
  content: "\e041";
}

.icon-setting-gear:before {
  content: "\e042";
}

.icon-waning-crescent-moon:before {
  content: "\e043";
}

.icon-waning-crescent-moon-o:before {
  content: "\e044";
}

.icon-add:before {
  content: "\e045";
}

.icon-delete:before {
  content: "\e046";
}

.icon-chevron-up-o:before {
  content: "\e047";
}

.icon-chevron-left-o:before {
  content: "\e048";
}

.icon-chevron-right-o:before {
  content: "\e049";
}

.icon-chevron-down-o:before {
  content: "\e050";
}

.icon-pacman-ghost-o:before {
  content: "\e051";
}

.icon-pacman-ghost:before {
  content: "\e052";
}
/*
 * BEFORE MODIFYING THIS DOCUMENT READ THIS DOCUMENTATION CAREFULLY:
 *
 * http://cssguidelin.es/
 *
 * What differs from the guideline:
 *
 * - Indentations are 2px
 * - Columns are 120px wide
 * - don't use [] in html inside class="" for grouping
 * - in html class="" don't use 2 space between classes, but put the related ones next to each other
 * - low level commenting is not necessary but u can use, just try to explain the things u think is important
 *
 */





/*
 * GLOBAL RULES
 * Rules that can effect all pages on the site.
 *
 *  0) SPINNER..................................Spinner for page load
 *
 *  1) MENU.....................................The main menu at the top of the page
 *
 *  2) SEARCH...................................Site search at the top of the page
 *
 *  3) WRAPPERS.................................Wraps the content of the pages, except the menu
 *
 *  4) ARTICLES LAYOUT..........................For pages, where the list of articles are shown
 *
 *  5) POST LAYOUT..............................For posts
 *
 *  6) APP REVIEW, LIST, GUIDE & CHART LAYOUT...List of app reviews and guides
 *
 *  7) PAGE NAV.................................Bottom navigation
 *
 *  8) FOOTER...................................Footer of every page
 *
 *  9) SHARE....................................Share btn and share window
 *
 * 10) GALLERIES................................Galleries and light box
 *
 * 10) MISCELLANEOUS............................Dividers and stuff
 *
 */





/*-----------*\
   #SPINNER
\*-----------*/




.spinner {
  position: fixed;
  z-index: 9;
  top:    0;
  right:  0;
  bottom: 0;
  left:   0;
  background-color: #fff;
}

.dark .spinner {
  background-color: #333;
}

  .spinner__wrap {
    position: absolute;
    top:    0;
    right:  0;
    bottom: 0;
    left:   0;
  }

    .spinner__wrap__spin {
      position: absolute;
      width:  70px;
      height: 70px;
      top:  50%;
      left: 50%;
      margin-top:  -35px;
      margin-left: -35px;
      -webkit-animation: loader 2.5s infinite alternate ease-in-out;
              animation: loader 2.5s infinite alternate ease-in-out;
    }

      .spinner__wrap__spin:before {
        content: "";
        display: block;
        width:  70px;
        height: 70px;
        border-radius: 50%;
        box-shadow: inset 0 0 0 2px #09f;
        -webkit-animation: stretch .7s infinite alternate ease-in;
                animation: stretch .7s infinite alternate ease-in;
      }



@-webkit-keyframes loader {
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes loader {
  100% { transform: rotate(360deg); }
}

@-webkit-keyframes stretch {
  100% { -webkit-transform: scaleX(1.1) scaleY(.9); }
}

@keyframes stretch {
  100% { transform: scaleX(1.1) scaleY(.9); }
}



.loading {
  position: relative;
}

  .loading:before {
    content: "";
    position: absolute;
    z-index: 1;
    top:    0;
    right:  0;
    bottom: 0;
    left:   0;
    background-color: #fff;
  }

  .dark .loading:before {
    background-color: #333;
  }

  .loading:after {
    content: "";
    position: absolute;
    z-index: 1;
    top:  15px;
    left: 50%;
    width:  10px;
    height: 10px;
    margin-left: -5px;
    background-color: #333;
    border-radius: 50%;
    -webkit-animation: move 1s infinite alternate ease-in-out;
            animation: move 1s infinite alternate ease-in-out;
  }

  .dark .loading:after {
    background-color: #fff;
  }


@-webkit-keyframes move {
  0% {   -webkit-transform: translate3d(-50px,0,0); }
  100% { -webkit-transform: translate3d(50px,0,0); }
}

@keyframes move {
  0% {   transform: translate3d(-50px,0,0); }
  100% { transform: translate3d(50px,0,0); }
}




/*--------*\
   #MENU
\*--------*/

/*
 * Menu bar and menu drawer for small screens
 *
 * We are creating the icons here, instead of in the html, because thus we can only need to add the active class to
 * to the current menu point to have the filled version of the icon. The content reference of the icons are in the
 * fonts.css file.
 *
 * There are a light and a dark version of the menu.
 */



.menu {
  position: fixed;
  z-index: 10;
  top:   0;
  right: 0;
  left:  0;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0,0,0,.5);
}

.dark .menu {
  background-color: #333;
}

  .menu__elem {
    position: relative;
    z-index: 1;
    height: 60px;
    padding: 0 10px;
    color: inherit;
    font-size: 22px; /* it shouldn't change thus the px */
    line-height: 60px;
  }

  .menu__elem--small {
    font-size: 16px;
  }

  @media only screen and (min-width: 1224px) {
    .menu__elem--right {
      position: absolute;
      right: 0;
    }
  }

    .logo { /* it's the AppAdvice logo */
      font-size: 25px; /* it shouldn't change thus the px */
      -webkit-transition: .2s ease;
              transition: .2s ease;
    }

    .menu__elem:focus > .logo, .menu__elem:hover > .logo {
      color: #09f;
    }

  button.menu__elem {
    border:  none;
    outline: none;
    background-color: transparent;
  }

  button.menu__elem.disable {
    opacity: .2;
    pointer-events: none;
  }

  .menu__elem--menu {
    position: relative;
    margin-left: 25px;
  }

  .menu__elem--menu:before, .menu__elem--menu:after {
    content: "";
    position: absolute;
    display: block;
    width: 20px;
    height: 1px;
    background-color: #222;
    left: 50%;
    margin-left: -10px;
    -webkit-transition: .2s ease;
            transition: .2s ease;
  }

  .dark .menu__elem--menu:before, .dark .menu__elem--menu:after {
    background-color: #fff;
  }

  .menu__elem--menu:before {
    bottom: 15px;
  }

  .menu__elem--menu:after {
    bottom: 8px;
  }

  .menu__elem--menu.active:before {
    -webkit-transform: rotate(135deg) translate3d(3px,-3px,0);
            transform: rotate(135deg) translate3d(3px,-3px,0);
  }

  .menu__elem--menu.active:after {
    -webkit-transform: rotate(45deg) translate3d(-2px,-2px,0);
            transform: rotate(45deg) translate3d(-2px,-2px,0);
  }

  .menu__wrap {
    position: relative;
    height: 60px;
    margin: 0;
    text-align: justify;
    background-color: #fff;
  }

  .dark .menu__wrap {
    background-color: #333;
  }

    .menu__wrap:after {
      content: "";
      display: inline-block;
      width: 100%;
    }

    .menu__wrap > li {
      display: inline-block;
      vertical-align: top;
      margin: 0;
    }

      .menu__btn {
        position: relative;
        display: inline-block;
        vertical-align: top;
        height: 60px;
        color: inherit;
        cursor: pointer;
        padding: 0 10px;
      }

      .menu__btn.active {
        box-shadow: 11px 0 0 -10px rgba(125,125,125,.2), -11px 0 0 -10px rgba(125,125,125,.2);
      }

        .menu__btn__icon {
          font-size: 16px;
          text-align: center;
          opacity: 0;
          margin-bottom: -3px;
          -webkit-transition: .2s ease-out;
                  transition: .2s ease-out;
          -webkit-transform: translate3d(0,0,0);
                  transform: translate3d(0,0,0);
        }

        .menu__btn__text {
          font-size: 14px; /* it shouldn't change thus the px */
          text-align: center;
          -webkit-transition: .2s ease-out;
                  transition: .2s ease-out;
          -webkit-transform: translate3d(0,0,0);
                  transform: translate3d(0,0,0);
        }

        .menu__btn.active > .menu__btn__text {
          color: #09f;
        }

        @media only screen and (min-width: 1024px) {
          .menu__btn:hover > .menu__btn__icon, li:hover .menu__btn__icon {
            opacity: .5;
            -webkit-transform: translate3d(0,7px,0);
                    transform: translate3d(0,7px,0);
          }

          .menu__btn:hover > .menu__btn__text, li:hover .menu__btn__text {
            color: #09f;
            -webkit-transform: translate3d(0,10px,0);
                    transform: translate3d(0,10px,0);
          }

          .menu__btn.active > .menu__btn__icon {
            opacity: 1;
            color: #09f;
            -webkit-transform: translate3d(0,7px,0);
            transform: translate3d(0,7px,0);
          }

          .menu__btn.active > .menu__btn__text {
            color: #09f;
            -webkit-transform: translate3d(0,10px,0);
            transform: translate3d(0,10px,0);
          }
        }

      .menu__btn--sub.open {
        z-index: 1;
        box-shadow: 0 1px #fff;
      }

      .menu__btn--sub.active.open {
        z-index: 1;
        box-shadow: 0 1px #fff, 11px 0 0 -10px rgba(125,125,125,.2), -11px 0 0 -10px rgba(125,125,125,.2);
      }

      .dark .menu__btn--sub.open {
        z-index: 1;
        box-shadow: 0 1px #333;
      }

      .dark .menu__btn--sub.active.open {
        z-index: 1;
        box-shadow: 0 1px #333, 11px 0 0 -10px rgba(125,125,125,.2), -11px 0 0 -10px rgba(125,125,125,.2);
      }

      .menu__btn--sub:before, .menu__btn--sub:after {
        content: "";
        position: absolute;
        display: block;
        width:  8px;
        height: 1px;
        bottom: 3px;
        left:   50%;
        margin-left: -4px;
        background-color: rgba(125,125,125,.5);
        -webkit-transition: .2s ease;
                transition: .2s ease;
      }

      .menu__btn--sub:before {
        -webkit-transform: rotate(45deg) translate3d(-4px,0,0);
                transform: rotate(45deg) translate3d(-4px,0,0);
      }

      .menu__btn--sub:after {
        -webkit-transform: rotate(-45deg) translate3d(4px,0,0);
                transform: rotate(-45deg) translate3d(4px,0,0);
      }

      .menu__btn--sub.open:before {
        -webkit-transform: rotate(45deg) translate3d(3px,3px,0);
                transform: rotate(45deg) translate3d(3px,3px,0);
      }

      .menu__btn--sub.open:after {
        -webkit-transform: rotate(-45deg) translate3d(-3px,3px,0);
                transform: rotate(-45deg) translate3d(-3px,3px,0);
      }

    .menu__sub {
      display: none;
      position: absolute;
      right: 43px;
      margin: 0;
      padding: 0 10px;
      overflow: hidden;
      text-align: right;
      background-color: #fff;
      border-radius: 0 0 3px 3px;
      box-shadow: 0 3px 5px rgba(0,0,0,.2), inset 0 1px rgba(0,0,0,.1);
    }

    .dark .menu__sub {
      background-color: #333;
    }

    .menu__sub.open {
      display: block;
    }

      .menu__sub > li {
        display: inline-block;
        vertical-align: top;
        margin: 0;
      }

        .menu__sub__btn {
          font-size: 14px;
          display: block;
          padding: 10px;
          color: inherit;
          -webkit-transition: .2s ease;
                  transition: .2s ease;
        }

        .menu__sub__btn:hover, .menu__sub__btn:focus {
          color: #09f;
        }



@media only screen and (max-width: 1023px) {
  .menu {
    box-shadow: none;
  }

  .menu:before {
    content: "";
    position: absolute;
    top:    0;
    right:  0;
    bottom: 0;
    left:   0;
    background-color: #fff;
    box-shadow: 0 1px rgba(0,0,0,.1);
  }

  .dark .menu:before {
    background-color: #333;
  }

  .menu__wrap {
    position: absolute;
    z-index: -1;
    right: 0;
    left:  0;
    height: auto;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,.5);
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    -webkit-transition: .2s ease;
            transition: .2s ease;
    -webkit-transform: translate3d(0,-100%,0);
            transform: translate3d(0,-100%,0);
  }

  .dark .menu__wrap {
    background-color: #333;
  }

  .menu__wrap.open {
    -webkit-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0);
  }

  .menu__wrap::-webkit-scrollbar-track {
    display: none;
  }

  .menu__wrap::-webkit-scrollbar {
    height: 4px;
    background-color: transparent;
  }

  .menu__wrap::-webkit-scrollbar-thumb {
    border-radius: 2px;
    background-color: rgba(125,125,125,.5);
  }

  .menu__wrap:after {
    display: none;
  }

  .menu__btn {
    height: auto;
  }

  .menu__btn__icon {
    display: none;
  }

  .menu__btn__text {
    padding: 10px 0;
  }

  .menu__sub {
    position: static;
    display: inline-block;
    padding: 0;
    border-radius: 0;
    box-shadow: -11px 0 0 -10px #222;
    background-color: transparent;
    -webkit-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0);
  }

  .dark .menu__sub {
    background-color: transparent;
    box-shadow: -11px 0 0 -10px #fff;
  }

  .menu__sub__btn:hover, .menu__sub__btn:focus {
    color: inherit;
  }
}





/*---------------*\
   #SEARCH
\*---------------*/



.search {
  position: fixed;
  z-index: 5;
  top:    0;
  right:  0;
  bottom: 0;
  left:   0;
  padding: 10em 0 3em 0;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: rgba(0,0,0,.9);
  color: #fff;
}

.dark .search {
  background-color: rgba(255,255,255,.9);
  color: #222;
}

  .search__form {
    box-shadow: 0 1px;
  }

  .search__btn {
    float: right;
    border:  none;
    outline: none;
    background-color: transparent;
    width:  40px;
    height: 40px;
    color: inherit;
    font-size: 3em;
  }

  .search__input {
    border: none;
    outline: none;
    font-size: 3em;
    background-color: transparent;
    color: inherit;
    font-family: inherit;
    font-weight: inherit;
    box-shadow: 0 1px;
    width: 100%;
    border-radius: 0;
    -webkit-appearance: none;
  }

  .search__options {
    display: inline-block;
    vertical-align: top;
    margin: 0 10px 10px 0;
  }

    .search__options > input {
      display: none;
    }

    .search__options > label {
      display: block;
      background-color: rgba(125,125,125,.2);
      padding: 3px 5px;
      border-radius: 2px;
      cursor: pointer;
      box-shadow: 0 0 0 1px rgba(125,125,125,.75);
      font-size: 1.2em;
      -webkit-transition: .2s ease;
              transition: .2s ease;
    }

    .search__options > label:hover {
      box-shadow: 0 0 0 1px #09f
    }

    .search__options > label > span {
      margin-left: 5px;
      padding-left: 5px;
      box-shadow: -1px 0;
      opacity: .5;
    }

    .search__options > input:checked + label {
      background-color: #09f;
      box-shadow: 0 0 0 1px #09f
    }

    .search__result {
      display: inline-block;
      vertical-align: top;
      width: 100%;
      padding: 20px;
      box-sizing: border-box;
      font-size: 2em;
      color: inherit;
      box-shadow: 0 -11px 0 -10px rgba(125,125,125,.5);
      -webkit-transition: .2s ease;
              transition: .2s ease;
    }

    .search__result:hover {
      box-shadow: 0 -11px 0 -10px #09f;
    }

    .search__nav {
      border:  none;
      outline: none;
      color: inherit;
      padding: 3px 10px;
      font-size: 1.75em;
      background-color: rgba(125,125,125,.5);
      border-radius: 2px;
    }

    .search__nav--next {
      float: right;
    }

    .search__nav--prev {

    }

@media only screen and (min-width: 768px) {
  .search__input {
    font-size: 4em;
  }

  .search__btn {
    width:  60px;
    height: 60px;
    font-size: 4em;
  }
}

@media only screen and (min-width: 480px) {
  .search__result {
    width: 50%;
  }
}

@media only screen and (min-width: 769px) {
  .search__input {
    font-size: 4em;
  }

  .search__btn {
    width:  60px;
    height: 60px;
    font-size: 4em;
  }

  .search__result {
    width: 33.33337%;
  }
}

@media only screen and (min-width: 1366px) {
  .search__result {
    width: 25%;
  }
}

@media only screen and (min-width: 1980px) {
  .search__result {
    width: 20%;
  }
}



.interests {
  margin: 2em;
  list-style-type: none;
  overflow: hidden;
}

  .interests__elem {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    margin: 0;
    box-shadow: 1px 1px rgba(125,125,125,.2);
    text-align:center;
    font-weight:bold;
  }

  @media only screen and (min-width: 480px) {
    .interests__elem {
      width: 50%;
    }
  }

  @media only screen and (min-width: 769px) {
    .interests__elem {
      width: 33.33337%;
    }
  }

  @media only screen and (min-width: 1366px) {
    .interests__elem {
      width: 25%;
    }
  }

    .interests__elem__a {
      position: relative;
      display: block;
      padding: 1em;
      font-size: 1.4em;
      color: inherit;
    }

    .interests__elem__a:before {
      content: "";
      position: absolute;
      top:    1px;
      right:  0;
      bottom: 0;
      left:   1px;
      opacity: 0;
      background-color: rgb(125,125,125);
    }

    .interests__elem__a:focus:before {
      opacity: .2;
    }

    @media only screen and (min-width: 1025px) {
      .interests__elem__a:hover:before {
        opacity: .2;
      }
    }

      .interests__elem__a__count {
        float: right;
        padding-left: .5em;
        opacity: .5;
      }

      .interests__elem__a__name {
        color: #09f;
      }





/*---------------*\
   #WRAPPERS
\*---------------*/

/*
 * The positions and z-indexes are important because of how the footer is displayed at the end of the pages.
 * The footer is fixed, and the content is hiding it until u reach the end of the page.
 * That's why the .main-wrapper:after is important
 *
 * Footer is in the FOOTER section
 */



.container-resp {
  margin: 0 auto;
  max-width: 1024px;
}

@media only screen and (min-width: 1224px) {
  .container-resp {
    margin: 0 100px;
    max-width: none;
  }
}

@media only screen and (min-width: 1640px) {
  .container-resp {
    margin: 0 auto;
    max-width: 1440px;
  }
}



.main-wrapper {
  padding-top: 60px;
  min-height: 100%;
  min-height: -webkit-calc(100% - 101px);
  min-height:         calc(100% - 101px);
}



.content {
}





/*------------------*\
   #ARTICLES LAYOUT
\*------------------*/

/*
 * The articles are displayed in a grid, where the aspect ratio of the images are constant. This aspect ratio has to be
 * the same for all of the articles!
 * The only exception is for the articles, where the .article--wide class was added. For this, the aspect ratio has to
 * be the half of the other articles' aspect ratio.
 * The .article--wide is better if only added to the first article.
 *
 * The titles of the articles has the blurred version of the background image. Be careful if you modify the setting of
 * these elements!
 *
 * The details part of the article also has to be the same height for all articles, because the articles are floated,
 * there are no js to set the article's height, or vertical position.
 */




.mentioned {
  display: block;
  color: #fff;
  margin-bottom: 5px;
}

.mentioned:last-child {
  margin-bottom: 0;
}

  .mentioned__img {
    position: relative;
    height: 150px;
    background-repeat:   no-repeat;
    background-position: center center;
    background-size:     cover;
  }

    .mentioned__img__overlay {
      position: absolute;
      top:    0;
      right:  0;
      bottom: 0;
      left:   0;
      background-color: rgba(0,0,0,.5);
    }

    .mentioned:focus .mentioned__img__overlay {
      opacity: .7;
    }

    @media only screen and (min-width: 1025px) {
      .mentioned:hover .mentioned__img__overlay {
        opacity: .7;
      }
    }

      .mentioned__img__title {
        position: absolute;
        top:   50%;
        right: 0;
        left:  0;
        margin: 0 20px;
        text-align: center;
        font-weight: 700;
        max-height: 5em;
        overflow: hidden;
        -webkit-transform: translate3d(0,-50%,0);
                transform: translate3d(0,-50%,0);
      }



.featured-container {
  position: relative;
  white-space: nowrap;
}

  .featured-container__arr {
    position: absolute;
    bottom: 2em;
    width:  3em;
    height: 3em;
    border:  none;
    outline: none;
    border-radius: 50%;
    background-color: rgba(125,125,125,.7);
    color: #fff;
    box-shadow: 0 0 0 1px;
    opacity: 0;
  }

  .featured-container__arr--prev {
    left: 2em;
  }

  .featured-container__arr--next {
    right: 2em;
  }

  @media only screen and (min-width: 1025px) {
    .featured-container:hover .featured-container__arr {
      opacity: 1;
    }
  }





.featured {
  display: inline-block;
  width: 100%;
  white-space: normal;
}

@media only screen and (min-width: 480px) {
  .featured {
    width: 50%;
  }
}

@media only screen and (min-width: 769px) {
  .featured {
    width: 33.33337%; /* ends in 7 to prevent gaps in some webkit */
  }
}

@media only screen and (min-width: 1366px) {
  .featured {
    width: 25%;
  }
}

  .featured__pad {
  }

    .featured__a {
      position: relative;
      display: block;
      color: #fff;
      overflow: hidden;
    }



  .featured__img {
    position: relative;
    padding-bottom: 20em;
    background-color: rgba(125,125,125,1);
  }

    .featured__img__bg {
      position: absolute;
      top:    0;
      right:  0;
      bottom: 0;
      left:   0;
      opacity: .9;
      background-repeat:   no-repeat;
      background-position: center center;
      background-size:     cover;
    }

  .featured__a:focus .featured__img__bg {
    opacity: 1;
  }

  @media only screen and (min-width: 1025px) {
    .featured__img__bg {
      bottom: -10px;
      -webkit-transition: .4s ease-out;
              transition: .4s ease-out;
    }

    .featured__a:hover .featured__img__bg {
      opacity: 1;
      -webkit-transform: translate3d(0,-10px,0);
              transform: translate3d(0,-10px,0);
    }
  }

  .featured__title {
    position: absolute;
    top:    0;
    right:  0;
    left:   0;
    min-height: 50%;
    padding: 10px;
    margin: 0;
    font-weight: 700;
    text-shadow: 1px 1px rgba(0,0,0,.5);
    background: -moz-linear-gradient(top, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0.4)), color-stop(100%,rgba(0,0,0,0))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, rgba(0,0,0,0.4) 0%,rgba(0,0,0,0) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(0,0,0,0.4) 0%,rgba(0,0,0,0) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, rgba(0,0,0,0.4) 0%,rgba(0,0,0,0) 100%); /* IE10+ */
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%,rgba(0,0,0,0) 100%); /* W3C */
  }

  @media only screen and (min-width: 768px) {
    .featured__title {
      padding: 20px;
    }

    .featured__img {
      padding-bottom: 24em;
    }
  }



.article-container {
  margin: 0 -5px;
}



.article-layout {
  position: relative;
  min-height: 6em;
}

  .article-layout__btns {
    position: absolute;
    top:   30%;
    right: 5px;
  }

    .article-layout__btn {
      border: none;
      outline: none;
      background-color: transparent;
      font-size: 16px;
      padding: 0 5px;
      color: inherit;
      opacity: .2;
    }

    .article-layout__btn.active {
      color: #09f;
      opacity: 1;
    }

.article-container--blogroll {

}

.article {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 100%;
  margin-bottom: 3em;
}

@media only screen and (min-width: 480px) {
  .article {
    width: 50%;
    margin-bottom: 1em;
  }
}

@media only screen and (min-width: 768px) {
  .article-container--blogroll > .article {
    display: block;
    width: 100%;
  }
}

@media only screen and (min-width: 769px) {
  .article {
    width: 33.33337%; /* ends in 7 to prevent gaps in some webkit */
  }
}

@media only screen and (min-width: 1366px) {
  .article {
    width: 25%;
  }
}



  .article__pad {
    padding: 0 5px 15px;
  }

    .article__label {
      position: absolute;
      top: -12px;
      left: 15px;
      margin: 35% 15px 0 0;
      padding: 4px 10px;
      background-color: #09f;
      color: #fff;
      border-radius: 2px 2px 2px 0;
      font-size: 10px;
      font-weight: 400;
      text-transform: uppercase;
      white-space: nowrap;
    }

      .article__label:after {
        content: "";
        position: absolute;
        bottom: -5px;
        left:    0;
        width:  0;
        height: 0;
        border-style: solid;
        border-width: 5px 5px 0 0;
        border-color: #09f transparent transparent transparent;
        -webkit-transition: inherit;
                transition: inherit;
      }

    .article__label:focus {
      background-color: #07f;
    }

    .article__label:focus:after {
      border-color: #07f transparent transparent transparent;
    }

    @media only screen and (min-width: 480px) {
      .article__label {
        left: 5px;
        margin: 50% 15px 0 0;
      }
    }

    @media only screen and (min-width: 769px) {
      .article__label {
        margin: 60% 15px 0 0;
      }
    }

    @media only screen and (min-width: 1025px) {
      .article__label {
        -webkit-transition: .2s ease-out;
                transition: .2s ease-out;
      }

      .article__label:hover {
        background-color: #07f;
      }

      .article__label:hover:after {
        border-color: #07f transparent transparent transparent;
      }
    }

    .article__a {
      position: relative;
      display: block;
      color: inherit;
    }

    .article__a:visited {
      color: #858585;
    }



  .article__img {
    position: relative; /* it's needed for the children */
    width: 100%;
    padding-bottom: 35%;
    background-color: rgba(125,125,125,1);
    overflow: hidden;
  }

  @media only screen and (min-width: 480px) {
    .article__img {
      padding-bottom: 50%;
    }
  }

  @media only screen and (min-width: 768px) {
    .article-container--blogroll .article__img {
      padding-bottom: 21em;
      width: 50%;
      float: left;
    }

    .article-container--blogroll .article__label {
      margin: 0 -5px 0 0;
      right: 50%;
      left: auto;
      top: 10px;
      border-radius: 2px 0 2px 2px;
    }

    .article-container--blogroll .article__label:after {
      right: -5px;
      left: auto;
      top: 0;
    }
  }

  @media only screen and (min-width: 769px) {
    .article__img {
      padding-bottom: 60%;
    }
  }

  @media only screen and (min-width: 1366px) {
  }

    .article__img__bg {
      position: absolute;
      top:    0;
      right:  0;
      bottom: 0;
      left:   0;
      opacity: .9;
      background-repeat:   no-repeat;
      background-position: center center;
      background-size:     cover;
    }

    @media only screen and (min-width: 1025px) {
      .article__img__bg {
        bottom: -10px;
        -webkit-transition: .4s ease-out;
                transition: .4s ease-out;
        -webkit-transform: translate3d(0,0,0);
                transform: translate3d(0,0,0);
      }
    }

    .article__img__overlay {
      position: absolute;
      top:    0;
      right:  0;
      bottom: 0;
      left:   0;
      background-color: #000;
      opacity: .05;
    }

    .article__read-more {
      position: absolute;
      top:    0;
      right:  0;
      bottom: 0;
      left:   0;
      display: none;
    }

      .article__read-more > .icon {
        position: absolute;
        font-size: 3em;
        width:  2em;
        height: 2em;
        line-height: 2em;
        text-align: center;
        border-radius: 50%;
        color: #fff;
        box-shadow: 0 0 0 1px #fff;
        left: 50%;
        top:  50%;
        -webkit-transform: translate3d(-50%,-50%,0);
                transform: translate3d(-50%,-50%,0);
      }

    .article__a:focus .article__read-more {
      display: block;
    }

    .article__a:focus .article__img__bg {
      opacity: 1;
    }

    @media only screen and (min-width: 1025px) {
      .article__a:hover .article__read-more {
        display: block;
      }

      .article__a:hover .article__img__bg {
        opacity: 1;
        -webkit-transform: translate3d(0,-10px,0);
                transform: translate3d(0,-10px,0);
      }
    }

    .article__img__line {
      position: absolute;
      bottom: 0;
      right:  0;
      left:   0;
    }

      .article__img__line__color {
        float: left;
        width: 20%;
        height: 3px;
      }

    .video-indicator {
      position: absolute;
      width:  66px;
      height: 66px;
      top:  50%;
      left: 50%;
      margin-top:  -33px;
      margin-left: -33px;
      color: #fff;
      font-size: 28px; /* it shouldn't change thus the px */
      text-align: center;
      line-height: 66px;
    }

    .video-indicator > i {
      margin-left: 3px;
    }

    .article__title {
      position: relative;
      overflow: hidden;
      padding: 0 20px;
    }

    @media only screen and (min-width: 480px) {
      .article__title {
        padding: 0 10px;
      }
    }

      .article__title__labels {
        position: relative;
        top: 8px;
        font-size: 1.2em;
      }

        .article__title__label:after {
          content: "";
          width: 4px;
          height: 4px;
          border-radius: 50%;
          box-shadow: inset 0 0 0 3px;
          display: inline-block;
          vertical-align: middle;
          margin: -1px 2px 0 4px;
          opacity: .5;
        }

        .article__title__label:last-child:after, .article__title__label:empty:after {
          display: none;
        }

      .article__title__text {
        position: relative;
        font-weight: 700;
      }

      .article__title__text--diff {
        font-weight: 300;
      }





  .article__details {
    position: relative;
    padding: 0 20px 5px;
    overflow: hidden; /* needed for blogroll view */
  }

  @media only screen and (min-width: 480px) {
    .article__details {
      padding: 0 10px 5px;
    }
  }

    .article__description {
      position: relative; /* needed for the pseudo element */
      text-align: justify;
      font-size: 1.5em;
      max-height: 12em; /* 8 lines on 1.5 line height */
      overflow: hidden;
      opacity: .8;
    }

    .article__data {
      position: relative; /* it's important if the this is inside the title */
      font-size: 1.3em;
      margin-top: 10px;
    }

      a.article__author {
        color: inherit;
        padding-right: 5px;
        -webkit-transition: .2s ease;
                transition: .2s ease;
        -webkit-transform: translate3d(0,0,0); /* Pass the element to the GPU to have 60fps */
                transform: translate3d(0,0,0);

      }

      a.article__author:hover, a.article__author:focus {
        opacity: 1;
      }

      .article__info {
        display: inline-block;
      }

      .article__info--left {
        float: left;
        padding-right: 5px;
      }

      .article__info--right {
        float: right;
        padding-left: 10px;
      }





/*---------------*\
   #POST LAYOUT
\*---------------*/



.post-header {
  box-shadow: inset 0 -3px rgba(125,125,125,.2);
}

  .post-header__stick {
    position: relative;
    background-color: rgba(125,125,125,.2);
  }

    .post-header__stick__elem {
      position: absolute;
      z-index: 1;
      top:   0;
      right: 0;
      left:  0;
      background-color: #fff;
      box-shadow: inset 0 -3px rgba(125,125,125,.2);
    }

    .dark .post-header__stick__elem {
      background-color: #333;
    }

    .post-header__stick__elem:after {
      content: "";
      position: absolute;
    }

    .post-header__stick__elem--stick {
      position: -webkit-sticky;
      top: 60px;
    }

    .post-header__img {
      height: 60em;
      background-repeat:   no-repeat;
      background-position: center center;
      background-size:     cover;
      margin-bottom: 1px;
      -webkit-transition: .4s ease;
              transition: .4s ease;
    }

  .post-header__data {
    display: inline-block;
    font-size: 1.5em;
    padding: 5px 20px;
  }

  .post-header__icon {
    width: 8.9em;
    float: left;
    margin: 20px 20px -5px;
  }

    .post-header__icon__img {
      width: 100%;
      padding-bottom: 100%;
      border-radius: 20%;
      background-repeat:   no-repeat;
      background-position: center center;
      background-size:     cover;
      background-color:    rgb(240,240,240);
      box-shadow: inset 0 0 1px rgba(125,125,125,.5);
    }

  .post-header__title {
    font-weight: 700;
    margin: 0;
  }

  .post-header__icon + .post-header__title {
    margin: 0;
  }

  .post-header__color {
    float: left;
    width: 11.11111%;
    height: 3px;
  }

  .post-header__label {
    position: relative;
    display: inline-block;
    padding: 4px 10px;
    margin: 0 0 5px 20px;
    background-color: #09f;
    border-radius: 2px 2px 2px 0;
    color: #fff;
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    white-space: nowrap;
  }

    .post-header__label:after {
      content: "";
      position: absolute;
      bottom: -5px;
      left: 0;
      width:  0;
      height: 0;
      border-style: solid;
      border-width: 5px 5px 0 0;
      border-color: #09f transparent transparent transparent;
      -webkit-transition: inherit;
      transition: inherit;
    }

  .post-header__label:focus {
    background-color: #07f;
  }

    .post-header__label:focus:after {
      border-color: #07f transparent transparent transparent;
    }

  @media only screen and (min-width: 1025px) {
    .post-header__label {
      -webkit-transition: .2s ease-out;
              transition: .2s ease-out;
    }

    .post-header__label:hover {
      background-color: #07f;
    }

    .post-header__label:hover:after {
      border-color: #07f transparent transparent transparent;
    }
  }


.post-img {
  position: relative;
  padding-bottom: 100%;
  overflow: hidden;
  background-repeat:   no-repeat;
  background-position: center center;
  background-size:     cover;
}

.post-header + .post-img {
  margin-top: -15px;
}

@media only screen and (min-width: 480px) {
  .post-img {
    padding-bottom: 75%;
  }
}

@media only screen and (min-width: 768px) {
  .post-img {
    padding-bottom: 55%;
  }
}

  .post-img__bg {
    position: absolute;
    top:    -50px;
    right:  -50px;
    bottom: -50px;
    left:   -50px;
    background-repeat:   no-repeat;
    background-position: center center;
    background-size:     cover;
  }

    .post-img__bg:after {
      content: "";
      position: absolute;
      top:    0;
      right:  0;
      bottom: 0;
      left:   0;
      background-color: #000;
      opacity: .05;
    }



.post {
  position: relative;
  overflow: hidden;
  box-shadow: -1px 0 rgba(125,125,125,.2), 1px 0 rgba(125,125,125,.2);
}

.post--bottom {
  box-shadow: -1px -1px rgba(125,125,125,.2), 1px 0 rgba(125,125,125,.2);
}

  .post__comments {
    background-color: rgba(125,125,125,.2);
    padding: 20px;
    font-size: 2em;
    font-weight: 100;
  }

  .post__img {
    position: relative;
    padding-bottom: 45%;
    background-repeat:   no-repeat;
    background-position: center center;
    background-size:     cover;
  }

    .post__img:after {
      content: "";
      position: absolute;
      top:    0;
      right:  0;
      bottom: 0;
      left:   0;
      background-color: rgba(0,0,0,.05);
    }

  .post__title {
    position: relative;
  }

    .post__title__icon {
      width: 8.9em;
      margin-top: -2px;
      padding: 10px 20px 0 20px;
      float: left;
    }

      .post__title__icon__img {
        width: 100%;
        padding-bottom: 100%;
        border-radius: 20%;
        background-repeat:   no-repeat;
        background-position: center center;
        background-size:     cover;
        background-color:    rgb(240,240,240);
        box-shadow: inset 0 0 1px rgba(125,125,125,.5);
      }

    .post__title__text {
      font-weight: 700;
      margin: -1em 20px 0 20px;
      padding: 0 40px 0 0;
    }

    .post__title:first-child > .post__title__text {
      margin: 10px 20px 0 20px;
    }

      .post__title__text__bg {
        background-color: #fff;
        box-shadow: -20px 0 #fff, 20px 0 #fff;
      }

.post__content {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  font-size: 1.7em;
}



  .post__content__pad {
    padding: 0 150px;
  }



  .post__content h1 {
    font-size: 3em;
  }

  .post__content h2 {
    font-size: 1.9em;
  }

  .post__content h3 {
    font-size: 1.4em;
  }

  .post__content h4 {
    font-size: 1em;
  }

  .post__content h5 {
    font-size: .8em;
  }

  .post__content h6 {
    font-size: .7em;
  }



  .post__content img {
    display: block;
    width:  auto;
    height: auto;
    max-width: 100%;
    max-height: 700px;
    margin: 0 auto 20px auto;
  }

  .post__content__video {
    margin: 5px auto;
  }

  .post__content__video.pull-left, .post__content img.pull-left {
    margin-right: 5%;
    padding-right: 6%;
    border-right: dashed 1px rgba(125,125,125,.2);
  }

  .post__content__video.pull-right, .post__content img.pull-right {
    margin-left: 5%;
    padding-left: 6%;
    border-left: dashed 1px rgba(125,125,125,.2);
  }

  .post__content__video--portrait {
    width: 25%;
  }

  .post__content__video--landscape {
    width: 50%;
  }

    .post__content__video > video {
      width:  100%;
      height: auto;
    }

  .post__content__pad .post__content__video--portrait {
    width: 40%;
  }

  .post__content__pad .post__content__video--landscape {
    width: 80%;
  }



  .post__content__pad .post__content__video.pull-left, .post__content__pad img.pull-left {
    margin-left: -150px;
  }

  .post__content__pad .post__content__video.pull-right, .post__content__pad img.pull-right {
    margin-right: -150px;
  }

  .post__content__media__title, .post__content__media__desc {
    display: block;
    opacity: .5;
    font-style: italic;
  }

  .post__content__media__desc {
    font-size: .8em;
  }

  .post__content__app {
    box-shadow: 0 -1px rgba(125,125,125,.2);
    padding: 1em 0;
  }

    .post__content__app__icon {
      width: 25%;
      padding-bottom: 25%;
      margin: 1em 2em 1em 0;
      border-radius: 20%;
      float: left;
      background-repeat:   no-repeat;
      background-position: center center;
      background-size:     cover;
      background-color:    rgba(0,0,0,.2);
      box-shadow: inset 0 0 1px rgba(125,125,125,.5);
    }

    .post__content__app__price {
      display: inline-block;
      margin: 0 0 .7em;
      text-align: center;
      font-size: 1.2em;
      color: #09f;
      box-shadow: 0 0 0 1px #09f;
      border-radius: 3px;
      padding: 0 1em;
      -webkit-transition: .2s ease;
              transition: .2s ease;
    }

    a.post__content__app__price:hover, a.post__content__app__price:focus {
      background-color: #09f;
      color: #fff;
    }

    .post__content__app__title {
      margin-bottom: 0;
    }

    .post__content__app__author {
      display: inline-block;
      color: inherit;
      margin-bottom: 1em;
      opacity: .5;
      -webkit-transition: .2s ease;
              transition: .2s ease;
    }

    a.post__content__app__author:hover, a.post__content__app__author:focus {
      opacity: 1;
    }



@media only screen and (max-width: 768px) {
  .post__content__pad {
    padding: 0;
  }

  .post__content__video--portrait, .post__content__pad .post__content__video--portrait {
    width: 35%;
  }

  .post__content__pad .post__content__video--landscape {
    width: 50%;
  }

  .post__content__video.pull-left, .post__content img.pull-left {
    margin-right: 3%;
    padding-right: 3%;
  }

  .post__content__video.pull-right, .post__content img.pull-right {
    margin-left: 3%;
    padding-left: 3%;
  }

  .post__content__pad .post__content__video.pull-left, .post__content__pad img.pull-left {
    margin-left: 0;
  }

  .post__content__pad .post__content__video.pull-right, .post__content__pad img.pull-right {
    margin-right: 0;
  }
}

@media only screen and (max-width: 480px) {
  .post__content img, .post__content__video {
    float: none !important;
    margin: 0 auto 20px auto !important;
    padding: 0 !important;
    border: none !important;
  }

  .post__content__video--landscape, .post__content__pad .post__content__video--landscape {
    width: 100%;
  }

  .post__content__video--portrait, .post__content__pad .post__content__video--portrait {
    width: 50%;
  }

  .post__content__app__icon {
    margin: 1em 1em 1em 0;
  }

  .post__content__app__price {
    display: block;
    clear: left;
  }
}





/*-----------------------------------------*\
   #APP REVIEW, LIST, GUIDE & CHART LAYOUT
\*-----------------------------------------*/



.app-list-menu {
  background-color: rgba(125,125,125,.2);
}

.app-list-menu__elem {
  display: inline-block;
  font-size: 1.4em;
  font-weight: inherit;
  margin-right: -3px;
  margin-bottom: 1px;
  padding: .5em .8em;
  background-color: transparent;
  border: none;
  outline: none;
  color: inherit;
  box-shadow: 0 -1px #fff;
  -webkit-transition: .2s ease;
          transition: .2s ease;
}

.dark .app-list-menu__elem {
  box-shadow: 0 -1px #333;
}

.app-list-menu__elem:hover, .app-list-menu__elem:focus {
  color: #09f;
}

.app-list-menu__elem.active {
  color: #fff;
  background-color: #09f;
}

.app-list {
  overflow: hidden; /* Prevent shadow overlaps at the bottom */
  box-shadow: inset 0 5px rgba(125,125,125,.2);
}

.app-list:first-child, .hide + .app-list {
  box-shadow: none;
}



  .app-list__wrap {
    position: relative;
    width: 100%;
    display: inline-block;
    vertical-align: top;
    color: inherit;
    margin-right: -3px;
    box-shadow: 1px 1px 0 rgba(125,125,125,.2);
  }

  .app-list__wrap:visited {
    color: #858585;
  }

  .app-list__wrap:last-child {
    box-shadow: 0 1px 0 rgba(125,125,125,.2);
  }

    .app-list__wrap__bg {
      display: block;
      padding-bottom: 50%;
      margin: 2em 2em 4em 2em;
      border-radius: 1em;
      background-repeat:   no-repeat;
      background-position: center center;
      background-size:     cover;
      background-color:    rgba(0,0,0,.2);
      box-shadow: inset 0 0 1px rgba(125,125,125,.5);
    }

    .app-list__wrap:hover > .app-list__wrap__bg, .app-list__wrap:focus > .app-list__wrap__bg {
      box-shadow: 0 0 0 3px rgba(125,125,125,.5);
    }

    .app-list__wrap__title {
      position: absolute;
      right:  1.5em;
      bottom: 0;
      left:   1.5em;
      font-size: 1.5em;
      font-weight: 500;
      text-align: left;
      padding: .6em 0;
    }



@media only screen and (min-width: 400px) {
  .app-list__wrap {
    width: 50%;
  }
}

@media only screen and (min-width: 768px) {
  .app-list__wrap {
    width: 33.33337%; /* ends in 7 to prevent gaps in some webkit */
  }
}

@media only screen and (min-width: 1024px) {
  .app-list__wrap {
    width: 25%;
  }
}

@media only screen and (min-width: 1640px) {
  .app-list__wrap {
    width: 20%;
  }
}



.app-chart__header {
  width: 50%;
  float: left;
}

  .app-chart__btn {
    border:  none;
    outline: none;
    background-color: transparent;
    float: left;
  }

  .app-chart__btn.active {
    color: #09f;
  }

  .app-chart__btn--main {
    width: 100%;
    color: inherit;
    font-size: 2em;
    padding: .5em 0;
    box-shadow: 1px 0 0 rgba(125,125,125,.2);
  }

  .app-chart__btn--sub {
    width: 50%;
    color: inherit;
    font-size: 1.6em;
    padding: .3em 0;
    box-shadow: 1px 1px 0 rgba(125,125,125,.2);
  }

.app-chart__main, .app-chart__sub {
  width: 100%;
  float: left;
}

.app-chart__sub {
  counter-reset: section; /* Set the section counter to 0 */
}

  .app-chart__elem:before {
    counter-increment: section;
    content: counter(section)".";
    font-size: 1.6em;
    width: 2.5em;
    display: block;
    text-align: center;
    position: absolute;
    top: 50%;
    margin-top: -.8em;
  }

@media only screen and (max-width: 479px) {
    .inactive > .app-chart__btn--sub {
      color: inherit;
      pointer-events: none;
    }
}

@media only screen and (min-width: 480px) {
    .app-chart__btn--main {
      pointer-events: none;
    }

    .app-chart__btn--main.active {
      color: inherit;
    }

  .app-chart__main {
    width: 50%;
  }
}

@media only screen and (min-width: 1024px) {
    .app-chart__btn--sub {
      pointer-events: none;
    }

    .app-chart__btn--sub.active {
      color: inherit;
    }

  .app-chart__sub {
    width: 50%;
  }
}





.agf-title {
  box-shadow: inset 0 5px rgba(125,125,125,.2);
  padding: 20px;
  margin: 0;
}

.agf-title:first-child {
  box-shadow: none;
}

.agf {
  overflow: hidden;
}



.agf-icons {
  display: inline-block;
  vertical-align: top;
  width:  4em;
  height: 4em;
  margin-right: 1em;
  border-radius: 20%;
  background-repeat:   no-repeat;
  background-position: center center;
  background-size:     cover;
  box-shadow: inset 0 0 1px rgba(125,125,125,.5);
}

.agf-icons:last-child {
  margin-right: 0;
}



.agf-app {
  position: relative;
  padding: 20px 0;
}

  .agf-app h1 {
    font-size: 3em;
  }

  .agf-app h2 {
    font-size: 1.9em;
  }

  .agf-app h3 {
    font-size: 1.4em;
  }

  .agf-app h4 {
    font-size: 1em;
  }

  .agf-app h5 {
    font-size: .8em;
  }

  .agf-app h6 {
    font-size: .7em;
  }

  .agf-app__icon {
    display: block;
    float: left;
    width:  10em;
    height: 10em;
    margin: 0 2em 1em;
    border-radius: 20%;
    background-repeat:   no-repeat;
    background-position: center center;
    background-size:     cover;
    box-shadow: inset 0 0 1px rgba(125,125,125,.5);
  }

  .agf-app__btn {
    display: block;
    margin: 20px;
    padding: 5px 0;
    font-size: 1.5em;
    font-weight: 400;
    text-align: center;
    color: #ccc;
    border-radius: 3px;
    box-shadow: inset 0 0 0 1px;
    clear: left;
  }

  .agf-app__btn--free {
    color: #09f;
  }

    .agf-app__btn__price {
      display: block;
      font-size: .8em;
      opacity: .5;
      margin-top: -5px;
    }

  .agf-app__btn:hover, .agf-app__btn:focus {
    box-shadow: none;
    color: #f0f0f0;
    background-color: #ccc;
  }

  .agf-app__btn--free:hover, .agf-app__btn--free:focus {
    box-shadow: none;
    color: #f0f0f0;
    background-color: #09f;
  }

  .agf-app__header {
    font-size: 1.3em;
    margin: 0 20px;
    overflow: hidden;
  }

    .agf-app__header__title {
      margin: 10px 0 0;
      max-height: 5em;
      overflow: hidden;
    }


  .agf-app__data {
    width: 10em;
    margin: 0 2em 2em;
    text-align: center;
    float: left;
    clear: left;
  }

    .agf-app__dev {
      font-size: 1.4em;
      margin-right: 5px;
      opacity: .5;
    }

  .agf-app__info {
    margin-top: 20px;
    font-size: 1.7em;
    overflow: hidden;
    clear: left;
  }

    .agf-app__gallery {
      text-align: center;
      margin-top: 20px;
      background-color: rgba(0,0,0,.1);
    }

      input.agf-app__gallery__btn {
        display: none;
      }

      label.agf-app__gallery__btn {
        display: inline-block;
        min-width: 55px;
        box-shadow: inset 0 0 0 1px #09f;
        padding: 2px 10px;
        margin-top: 20px;
        cursor: pointer;
        text-align: center;
      }

      input.agf-app__gallery__btn:checked + label.agf-app__gallery__btn {
        color: #fff;
        background-color: #09f;
      }

      label.agf-app__gallery__btn:nth-of-type(1) {
        border-radius: 3px 0 0 3px;
      }

      label.agf-app__gallery__btn:nth-of-type(2) {
        border-radius: 0 3px 3px 0;
      }

      label.agf-app__gallery__btn:only-of-type {
        border-radius: 3px;
      }

      .iphone-btn:checked ~ .agf-app__gallery__imgs > .ipad {
        display: none;
      }

      .ipad-btn:checked ~ .agf-app__gallery__imgs > .iphone {
        display: none;
      }

      .agf-app__gallery__imgs {
        padding: 20px 10px;
        margin-top: 10px;
        overflow: hidden;
        white-space: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
      }

        .agf-app__gallery__imgs > img {
          display: inline-block;
          vertical-align: middle;
          max-height: 300px;
          max-width:  300px;
          margin: 0 10px 0 0;
          box-shadow: 0 0 25px rgba(0,0,0,.2);
        }

        .agf-app__gallery__imgs > img:last-child {
          margin: 0;
        }

      .agf-app__gallery__imgs::-webkit-scrollbar-track {
        display: none;
      }

      .agf-app__gallery__imgs::-webkit-scrollbar {
        height: 8px;
        background-color: transparent;
      }

      .agf-app__gallery__imgs::-webkit-scrollbar-thumb {
        border-radius: 4px;
        background-color: rgba(125,125,125,.5);
      }

    .agf-app__info__text {
      margin: 0 20px;
    }

    .agf-app__pros {
      width: 44%;
      padding: 10px 3%;
      float: left;
      font-size: 0.8em;
      text-align: center;
    }

    .agf-app__pros:first-child {
      box-shadow: 1px 0 rgba(125,125,125,.2);
    }

      .agf-app__pros > i {
        display: block;
        font-size: 2em;
        margin-bottom: 10px
      }

@media only screen and (min-width: 480px) {
  .agf-app__btn {
    position: absolute;
    top:   30px;
    right: 0;
    width: 9em;
    margin: 0 2em;
  }

  .agf-app__btn--free {
    top: 27px;
  }

  .agf-app__header__title:before {
    content: "";
    width:  150px;
    height: 40px;
    float: right;
  }
}

@media only screen and (min-width: 769px) {
  .agf-app__icon {
    width:  15em;
    height: 15em;
    margin: 0 2em 2em;
  }

  .agf-app__data {
    width: 15em;
  }

  .agf-app__header {
    font-size: 1.7em;
  }

  .agf-app__header__title {
    margin: 15px 0 0;
  }

  .agf-app__header__title:before {
    display: none;
  }

  .agf-app__info {
    clear: none;
  }

    .agf-app__info__text {
      display: inline-block;
      vertical-align: top;
      width: 60%;
      margin: 0;
    }

    .agf-app__gallery {
      display: inline-block;
      vertical-align: top;
      width: 40%;
      background-color: transparent;
      text-align: left;
      padding-top: 2px;
      margin-top: 0;
    }

      label.agf-app__gallery__btn {
        margin-top: 0;
      }

      label.agf-app__gallery__btn:nth-of-type(1) {
        margin-left: 21px;
      }

      label.agf-app__gallery__btn:only-of-type {
        margin-left: 21px;
      }

      .agf-app__gallery__imgs {
        margin-left: 20px;
        background-color: rgba(0,0,0,.1);
        border-radius: 3px 0 0 3px;
      }

        .agf-app__gallery__imgs > img {
          max-width:  400px;
          max-height: 400px;
          cursor: pointer;
        }

  .agf-app__btn {
    position: absolute;
    top:    auto;
    right:  auto;
    bottom: 40px;
    left:   0;
  }
}





.app {
  position: relative;
  display: inline-block;
  vertical-align: bottom;
  width: 100%;
  color: inherit;
  padding: 2em 0 2em;
  box-shadow: 1px 1px 0 rgba(125,125,125,.2);
}

.app:last-child {
  box-shadow: none;
}

.app-chart__elem:last-child {
  box-shadow: 1px 1px 0 rgba(125,125,125,.2);
}

.app:visited {
  color: #858585;
}

.app--stars {
  padding: 2em 0 1em;
}

  .app__wrap {
    padding: 0 2em;
  }

  .app-chart__elem > .app__wrap {
    padding: 0 2em 0 4em;
  }

    .app__wrap__left {
      width: 30%;
      display: inline-block;
      vertical-align: middle;
    }

    .app__wrap__right {
      width: 70%;
      display: inline-block;
      vertical-align: middle;
    }



@media only screen and (min-width: 480px) {
  .app {
    width: 50%;
  }

  .app__wrap__left {
    width: 40%;
  }

  .app__wrap__right {
    width: 60%;
  }
}

@media only screen and (min-width: 768px) {
  .app {
    width: 33.33337%; /* ends in 7 to prevent gaps in some webkit */
  }
}

@media only screen and (min-width: 1024px) {
  .app {
    width: 25%;
  }
}

@media only screen and (min-width: 1640px) {
  .app {
    width: 20%;
  }
}

.app-chart__sub > .app {
  width: 100%;
}

  .app__img, .app__data {
  }

  .app--guide .app__img {
    padding-right: 2em;
  }

    .app__img__bg {
      height: 0;
      width:  100%;
      padding-bottom: 100%;
      border-radius: 20%;
      background-repeat:   no-repeat;
      background-position: center center;
      background-size:     cover;
      background-color:    rgb(240,240,240);
      box-shadow: inset 0 0 1px rgba(125,125,125,.5);
    }

    .app:focus .app__img__bg {
      box-shadow: 0 0 0 3px rgba(125,125,125,.5);
    }

    @media only screen and (min-width: 1025px) {
      .app:hover .app__img__bg {
        box-shadow: 0 0 0 3px rgba(125,125,125,.5);
      }
    }

    .app--guide .app__img__bg {
      position: relative;
      background-color: transparent;
      box-shadow: none !important;
    }

      .app--guide__img {
        position: relative;
        z-index: 3;
        height: 0;
        width:  100%;
        padding-bottom: 100%;
        border-radius: 20%;
        background-repeat:   no-repeat;
        background-position: center center;
        background-size:     cover;
        background-color:    rgb(240,240,240);
        box-shadow: inset 0 0 1px rgba(125,125,125,.5), 0 0 0 1px rgba(255,255,255,1);
        -webkit-transition: .2s ease;
                transition: .2s ease;
        -webkit-transform: translate3d(0,0,0);
                transform: translate3d(0,0,0);
      }

      .dark .app--guide__img {
        box-shadow: inset 0 0 1px rgba(125,125,125,.5), 0 0 0 1px rgba(51,51,51,1);
      }

      .app--guide__img:nth-child(2) {
        position: absolute;
        z-index: 2;
        width: 80%;
        padding-bottom: 80%;
        top:    10%;
        -webkit-transform: translate3d(40%,0,0);
                transform: translate3d(40%,0,0);
      }

      .app--guide__img:nth-child(3) {
        position: absolute;
        z-index: 1;
        width: 60%;
        padding-bottom: 60%;
        top:    20%;
        -webkit-transform: translate3d(100%,0,0);
                transform: translate3d(100%,0,0);
      }

      .app:hover .app--guide__img:nth-child(1), .app:focus .app--guide__img:nth-child(1) {
        -webkit-transform: translate3d(-10%,0,0);
                transform: translate3d(-10%,0,0);
      }

      .app:hover .app--guide__img:nth-child(3), .app:focus .app--guide__img:nth-child(3) {
        -webkit-transform: translate3d(120%,0,0);
                transform: translate3d(120%,0,0);
      }

  .app__data {
    padding-left: 2em;
  }

    .app__data__title {
      margin: 0;
      overflow: hidden;
    }

    h3.app__data__title {
      max-height: 2.5em; /* 2 lines with 1.25 line height */
    }

    h4.app__data__title {
      max-height: 3.75em; /* 3 lines with 1.25 line height */
    }

    .app-chart__elem h4.app__data__title {
      max-height: 2.5em; /* 2 lines with 1.25 line height */
    }

    .app__data__author {
      font-size: 1.2em;
      opacity: .6;
    }

    .app__data__author--diff {
      font-weight: 500;
      font-style: italic;
    }

    .app__data__info {
      font-size: 1.2em;
    }

  .app__stars {
    color: #ff9900;
    text-align: center;
  }

    .app__stars > .icon {
      font-size: 1.6em;
      margin-right: -3px;
    }

  .app__info {
    text-align: right;
    font-size: 1.5em;
  }

    .app__info__dev {
      opacity: .2;
      margin-right:  5px;
      padding-right: 10px;
      box-shadow: 1px 0;
    }

    .app__info__price {
    }





/*-----------*\
   #PAGE NAV
\*-----------*/



.page-nav {
  position: relative;
  margin-bottom: 1em;
}

  .page-nav__btn {
    display: block;
    color: inherit;
    font-size: 1.6em;
    line-height: 2.5em;
    border-radius: 2px;
    text-align: center;
    background-color: rgba(125,125,125,.4);
    opacity: .5;
    -webkit-transition: .2s ease;
            transition: .2s ease;
  }

  .page-nav__btn:focus {
    opacity: 1;
  }

  @media only screen and (min-width: 1025px) {
    .page-nav__btn:hover {
      opacity: 1;
    }
  }

  .page-nav__btn.loading {
    opacity: 1;
  }






/*----------*\
   #FOOTER
\*----------*/

/*
 * It's related to the MAIN WRAPPER section, don't forget to read that first
 */



.to-top {
  position: fixed;
  right:  0;
  bottom: 25px;
  width:  50px;
  height: 40px;
  padding: 10px 15px;
  border:  none;
  outline: none;
  background-color: transparent;
  color: #222;
}

  .to-top > .icon {
    display: block;
    line-height: 19px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,.5);
  }



.footer {
  font-size: 14px; /* it shouldn't change thus the px */
  padding: 10px;
  margin-top: 1em;
  text-align: center;
}

  .footer__link {
    display: inline-block;
    padding: 10px 10px;
    color: inherit;
    opacity: .5; /* We will animate the opacity on hover */
    -webkit-transition: .2s ease;
            transition: .2s ease;
    -webkit-transform: translate3d(0,0,0); /* Pass the element to the GPU to have 60fps */
            transform: translate3d(0,0,0);
  }

  .footer__link:hover, .footer__link:focus {
    opacity: 1;
  }

  .footer__text {
    display: block;
  }





/*---------*\
   #SHARE
\*---------*/



.share-btn {
  width:  50px;
  height: 50px;
  font-size: 30px; /* it shouldn't change thus the px */
  border:  none;
  outline: none;
  background-color: transparent;
  color: inherit;
}



.share {
  position: relative;
  padding: 0 10px;
  margin:  5px 0;
  overflow: hidden;
}

  .share__link {
    font-size: 2em;
    width: 2em;
    display: inline-block;
    text-align: center;
    line-height: 2em;
    color: rgba(125,125,125,1);
    -webkit-transition: .2s ease;
            transition: .2s ease;
  }

  .share__link--fb:hover, .share__link--fb:focus {
    color: #3b5997;
  }

  .share__link--tw:hover, .share__link--tw:focus {
    color: #41b7d8;
  }

  .share__link--go:hover, .share__link--go:focus {
    color: #d64937;
  }

  .share__link--tu:hover, .share__link--tu:focus {
    color: #35465c;
  }

  .share__link--pi:hover, .share__link--pi:focus {
    color: #cb2027;
  }

  .share__link--re:hover, .share__link--re:focus {
    color: #ff5700;
  }

  .share__link:hover, .share__link:focus {
    box-shadow: 0 0 0 1px;
  }





/*-----------------*\
   #YOUTUBE VIDEO
\*-----------------*/


.yt-video {
  margin: 0 auto;
  max-width: 824px;
}

@media only screen and (min-width: 1024px) {
  .yt-video {
    margin: 0 100px;
    max-width: none;
  }
}

  .yt-video__wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background-color: rgba(125,125,125,.2);
  }

    .yt-video__wrapper iframe, .yt-video__wrapper object, .yt-video__wrapper embed {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }



.vp {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

  .vp__right {
  }

  .vp__left {
    overflow: hidden;
  }



.vp__list {

}

  .vp__list__scroll {
    padding: 10px 0;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .vp__list__scroll::-webkit-scrollbar-track {
    display: none;
  }

  .vp__list__scroll::-webkit-scrollbar {
    height: 8px;
    background-color: transparent;
  }

  .vp__list__scroll::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(125,125,125,.5);
  }

  .vp__list__elem {
    position: relative;
    display: inline-block;
    vertical-align: top;
    max-width: 300px;
    padding: 10px;
    cursor: pointer;
    color: inherit;
    white-space: normal;
  }

  .vp__list__elem--btn {
    text-align: center;
    line-height: 50px;
  }

  .vp__list__elem .video-indicator:last-child {
    display: none;
  }

  .vp__list__elem.active .video-indicator:last-child {
    display: block;
  }

  .vp__list__elem.active .video-indicator:nth-last-child(2) {
    display: none;
  }

  .vp__list__elem.active .article__img__overlay {
    opacity: 1;
  }

  .vp__list__elem:before {
    content: "";
    position: absolute;
    top:    0;
    right:  0;
    bottom: 0;
    left:   0;
    background-color: rgb(125,125,125);
    opacity: 0;
    -webkit-transition: .2s ease;
    transition: .2s ease;
  }

  .vp__list__elem--btn:before {
    opacity: .2;
  }

  .vp__list__elem:focus:before, .vp__list__elem:hover:before {
    opacity: .4;
  }

  .vp__list__elem.active:before {
    opacity: .4;
    background-color: #09f;
  }

    .vp__list__elem__img {
      position: relative;
      background-repeat:   no-repeat;
      background-position: center center;
      background-size:     cover;
      width:  90px;
      height: 50px;
    }

    .vp__list__elem__title {
      display: none;
      margin: 7px 0;
    }

@media only screen and (min-width: 768px) {
  .vp {
    margin-bottom: 0;
  }

  .vp__list__elem__img {
    float: left;
    margin-right: 10px;
  }

  .vp__list__elem__title {
    display: block;
    max-height: 2.5em;
    overflow: hidden;
  }
}

@media only screen and (min-width: 1024px) {
  .vp__right {
    float: right;
    width: 30%;
  }

  .vp__list {
    position: relative;
    padding-bottom: 131.25%;
  }

  .vp__list__scroll {
    position: absolute;
    top:    0;
    right:  0;
    bottom: 0;
    left:   0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    white-space: normal;
  }

  .vp__list__scroll::-webkit-scrollbar {
    height: auto;
    width: 8px;
  }

  .vp__list__elem {
    display: block;
    max-width: none;
  }

  .vp__list__elem--btn {
    line-height: normal;
  }
}





/*-------------*\
   #GALLERIES
\*-------------*/



.gallery {
  position: relative;
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  background-color: rgba(0,0,0,.1);
  padding: 20px;
  -webkit-overflow-scrolling: touch;
}

.gallery > img {
  display: inline-block;
  vertical-align: middle;
  width:  auto;
  height: auto;
  max-width:  400px;
  max-height: 400px;
  margin-right: 20px;
  box-shadow: 0 0 25px rgba(0,0,0,.2);
  cursor: pointer;
}

.gallery::-webkit-scrollbar-track {
  display: none;
}

.gallery::-webkit-scrollbar {
  height: 8px;
  background-color: transparent;
}

.gallery::-webkit-scrollbar-thumb {
  border-radius: 4px;
  -webkit-box-shadow: inset 0 4px 4px rgba(255,255,255,.3);
  background-color: #09f;
}



.gallery-window {
  position: fixed;
  z-index: 5;
  top:    0;
  right:  0;
  bottom: 0;
  left:   0;
  overflow: hidden;
  background-color: rgba(0,0,0,0.9);
}

  .gallery-window__close {
    position: absolute;
    top:   70px;
    right: 10px;
    height: 40px;
    width:  40px;
    font-size: 20px;
    text-align: center;
    color: #fff;
    background-color: transparent;
    border: none;
    outline: none;
  }

  .gallery-window__nav {
    position: absolute;
    top: 50%;
    margin-top: -20px;
    height: 100px;
    width:  36px;
    font-size: 36px;
    text-align: center;
    color: #fff;
    background-color: transparent;
    border: none;
    outline: none;
  }

  .gallery-window__nav--prev {
    left: 10px;
  }

  .gallery-window__nav--next {
    right: 10px;
  }

  .gallery-window__tape {
    position: absolute;
    top:    60px;
    right:  0;
    bottom: 0;
    left:   0;
    white-space: nowrap;
    -webkit-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0);
  }

    .gallery-window__tape__frame {
      position: relative;
      display: inline-block;
      width:  100%;
      height: 100%;
      text-align: center;
    }

      .gallery-window__tape__frame__help {
        display: inline-block;
        height: 100%;
        vertical-align: middle;
      }

      .gallery-window__tape__frame__img {
        max-height: 100%;
        max-width:  100%;
        vertical-align: middle;
      }






/*----------------*\
   #MISCELLANEOUS
\*----------------*/



.taxonomy {
  padding: 10em 0;
  text-align: center;
  background-color: #222;
  color: #fff;
  margin-bottom: 20px;
}

  .taxonomy__title {
    font-size: 3.6em;
    font-weight: 100;
    padding: 0 20px;
  }

  .taxonomy__data {
    font-size: 1.4em;
    opacity: .5;
    padding: 0 20px;
  }



.author {
  display: inline-block;
  width: 100%;
  margin: 3em 0 1em;
}

@media only screen and (min-width: 480px) {
  .author {
    width: 50%;
  }
}

@media only screen and (min-width: 769px) {
  .author {
    width: 33.33337%; /* ends in 7 to prevent gaps in some webkit */
  }
}

@media only screen and (min-width: 1366px) {
  .author {
    width: 25%;
  }
}

  .author__a {
    display: block;
    width: 25em;
    margin: 0 auto;
    color: inherit;
  }

  .author__img {
    position: relative;
    width:  20em;
    height: 20em;
    margin: 0 auto;
  }

    .author__img:before {
      content: "";
      position: absolute;
      top:    0;
      right:  0;
      bottom: 0;
      left:   0;
      border-radius: 50%;
      background-color: rgba(125,125,125,.2);
      -webkit-transition: .4s ease;
              transition: .4s ease;
    }

    .author__img__bg {
      position: absolute;
      top:    0;
      right:  0;
      bottom: 0;
      left:   0;
      border-radius: 50%;
      box-shadow: inset 0 0 0 1px rgba(125,125,125,.2);
      background-repeat:   no-repeat;
      background-position: center center;
      background-size:     cover;
      -webkit-transition: .4s ease;
              transition: .4s ease;
    }

  .author__a:focus .author__img__bg {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }

  .author__a:focus .author__img:before {
    opacity: 0;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }

  @media only screen and (min-width: 1025px) {
    .author__a:hover .author__img__bg {
      -webkit-transform: scale(1.1);
              transform: scale(1.1);
    }

    .author__a:hover .author__img:before {
      opacity: 0;
      -webkit-transform: scale(1.3);
              transform: scale(1.3);
    }
  }

  .author__name {
    margin-bottom: 0;
  }

  .author__role{
    font-size: 1.2em;
    opacity: .5;
  }





.author-bg {
  background-repeat:   no-repeat;
  background-position: center center;
  background-size:     cover;
}

.author-bg--img > .author-info {
  color: #fff;
  background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.4))); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.4) 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.4) 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.4) 100%); /* IE10+ */
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.4) 100%); /* W3C */
}

.author-info {
  padding: 40px 0 20px;
}

.author-bg--img > .author-img {
  box-shadow: inset 0 0 0 1px rgba(125,125,125,.2), 0 0 0 5px #fff;
}

  .author-bg--img > .author-img:before {
    box-shadow: 0 0 0 1px #fff;
  }

.author-img {
  position: relative;
  margin: 4em auto 0 auto;
  width:  30em;
  height: 30em;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(125,125,125,.2);
  background-repeat:   no-repeat;
  background-position: center center;
  background-size:     cover;
}

  .author-img:before {
    content: "";
    position: absolute;
    top:    -20px;
    right:  -20px;
    bottom: -20px;
    left:   -20px;
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(125,125,125,.2);
  }



.author-link {
  display: inline-block;
  background-color: rgba(0,0,0,.3);
  color: #fff;
  text-align: center;
  line-height: 2em;
  width: 2em;
  font-size: 1.8em;
  border-radius: 50%;
  margin: 0 3px;
}

.author-link--fb {
  background-color: #3b5997;
}

.author-link--tw {
  background-color: #41b7d8;
}

.author-link--go {
  background-color: #d64937;
}

.author-link--tu {
  background-color: #35465c;
}

.author-link--in {
  background-color: #1a5570;
}

.author-link--pi {
  background-color: #cb2027;
}

.author-link--re {
  background-color: #ff5700;
}



.article-num {
  float: right;
  line-height: 1;
  text-align: center;
}



.sort-container {
  background-color: rgb(240,240,240);
}

.sort {
  margin: 1em;
  font-size: 1.4em;
}

  .sort__select {
    background-color: transparent;
    border: none;
    outline: none;
    color: inherit;
    font-weight: 500;
    cursor: pointer;
    -webkit-appearance: none;
  }

.filter {
  position: relative;
  font-size: 1.4em;
}

  .filter > .icon {
    position: absolute;
    top:  1em;
    left: .5em;
  }

  .filter__input {
    border: none;
    outline: none;
    padding: .5em .5em .5em 2em;
    margin:  .5em .5em .5em 0;
    border-radius: 3px;
    background-color: rgb(255,255,255);
  }



.tag {
  display: inline-block;
  vertical-align: middle;
  margin: 5px 5px 0 0;
}

a.tag {
  -webkit-transition: .2s ease;
          transition: .2s ease;
}

.tag--tag {
  opacity: .7;
  margin-right: 10px;
  font-size: 1.2em;
  font-weight: 500;
}

a.tag--tag {
  color: inherit;
}

a.tag--tag:hover, a.tag:focus {
  opacity: 1;
}

.tag--tag:after {
  content: ",";
}

.tag:last-child {
  margin-right: 0;
}

.tag--tag:last-child:after {
  content: "";
}

.tag--theme {
  padding: 3px 5px;
  background-color: #50f;
  text-transform: uppercase;
  color: #fff;
}

.tag--topic {
  padding: 3px 5px;
  background-color: #F50;
  text-transform: uppercase;
  color: #fff;
}

.tag--app-hub {
  padding: 3px 5px;
  background-color: #f05;
  text-transform: uppercase;
  color: #fff;
}





.divider-line--horizontal {
  height: 1px;
  background-color: rgba(125,125,125,.2);
}

.divider-line--horizontal--small {
  width: 100px;
  margin-left:  auto;
  margin-right: auto;
}



.notification {
  font-size: 1.6em;
  padding: .5em 0;
  text-align: center;
  background-color: rgba(255, 220, 150, 0.5);
}

.no-js .js-wait-for-image {
  opacity: 1 !important;
}

.browsehappy {
  display: none;
}

.no-boxshadow .browsehappy, .no-cssgradients .browsehappy, .no-csstransitions .browsehappy {
  display: block;
}

.no-js .browsehappy {
  display: none;
}
/*
 * BEFORE MODIFYING THIS DOCUMENT READ THIS DOCUMENTATION CAREFULLY:
 *
 * http://cssguidelin.es/
 *
 * What differs from the guideline:
 *
 * - Indentations are 2px
 * - Columns are 120px wide
 * - don't use [] in html inside class="" for grouping
 * - in html class="" don't use 2 space between classes, but put the related ones next to each other
 * - low level commenting is not necessary but u can use, just try to explain the things u think is important
 *
 */





/*
 * HELPER CLASSES
 * Rules that can help to modify elements in the related fields:
 *
 * 1) VISIBILITY.............show, hide, set opacity, etc.
 *
 * 2) FLOAT..................float, clear, etc.
 *
 * 3) TEXT FORMATTING........align, weight, etc.
 *
 * 4) BOX....................display, margin, padding, etc.
 *
 * 5) STICK..................sticking element for webkit
 *
 * 6) MISCELLANEOUS..........anchors, hovers, etc.
 *
 */





/*-------------*\
   #VISIBILITY
\*-------------*/




.hide {
  display: none !important;
}

/* hide above these screen sizes */
@media only screen and (min-width: 480px) {
  .hide--xs {
    display: none !important;
  }
}

@media only screen and (min-width: 768px) {
  .hide--s {
    display: none !important;
  }
}

@media only screen and (min-width: 1024px) {
  .hide--m {
    display: none !important;
  }
}

@media only screen and (min-width: 1280px) {
  .hide--l {
    display: none !important;
  }
}

@media only screen and (min-width: 1440px) {
  .hide--xl {
    display: none !important;
  }
}



/* show above these screen sizes + 1px */
@media only screen and (max-width: 479px) {
  .show--xs {
    display: none !important;
  }
}

@media only screen and (max-width: 767px) {
  .show--s {
    display: none !important;
  }
}

@media only screen and (max-width: 1023px) {
  .show--m {
    display: none !important;
  }
}

@media only screen and (max-width: 1279px) {
  .show--l {
    display: none !important;
  }
}

@media only screen and (max-width: 1439px) {
  .show--xl {
    display: none !important;
  }
}



.invisible {
  visibility: hidden !important;
}

.visible {
  visibility: visible !important;
}



.opacity0 {
  opacity: 0;
}

.opacity01 {
  opacity: .1;
}

.opacity02 {
  opacity: .2;
}

.opacity03 {
  opacity: .3;
}

.opacity04 {
  opacity: .4;
}

.opacity05 {
  opacity: .5;
}

.opacity06 {
  opacity: .6;
}

.opacity07 {
  opacity: .7;
}

.opacity08 {
  opacity: .8;
}

.opacity09 {
  opacity: .9;
}

.opacity1 {
  opacity: 1;
}





/*---------*\
   #FLOAT
\*---------*/



.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

/* pull above these screen sizes */
@media only screen and (min-width: 480px) {
  .pull-right--xs {
    float: right;
  }

  .pull-left--xs {
    float: left;
  }
}

@media only screen and (min-width: 768px) {
  .pull-right--s {
    float: right;
  }

  .pull-left--s {
    float: left;
  }
}

@media only screen and (min-width: 1024px) {
  .pull-right--m {
    float: right;
  }

  .pull-left--m {
    float: left;
  }
}

@media only screen and (min-width: 1280px) {
  .pull-right--l {
    float: right;
  }

  .pull-left--l {
    float: left;
  }
}

@media only screen and (min-width: 1440px) {
  .pull-right--xl {
    float: right;
  }

  .pull-left--xl {
    float: left;
  }
}



.clear {
  clear: both;
}

/* clearfix is very good to make the parent element follow the size of floating children inside */

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}





/*------------------*\
   #TEXT FORMATTING
\*------------------*/



.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}



.text-thin {
  font-weight: 100;
}

.text-light {
  font-weight: 300;
}

.text-normal {
  font-weight: 400;
}

.text-medium {
  font-weight: 500;
}

.text-bold {
  font-weight: 700;
}

.text-black {
  font-weight: 900;
}



.text-08 {
  font-size: 0.8em;
}

.text-12 {
  font-size: 1.2em;
}

.text-14 {
  font-size: 1.4em;
}

.text-16 {
  font-size: 1.6em;
}

.text-18 {
  font-size: 1.8em;
}

.text-20 {
  font-size: 2.0em;
}

.text-22 {
  font-size: 2.2em;
}

.text-24 {
  font-size: 2.4em;
}

.text-32 {
  font-size: 3.2em;
}

.text-36 {
  font-size: 3.6em;
}

.text-42 {
  font-size: 4.2em;
}

.text-50 {
  font-size: 5em;
}



.text-italic {
  font-style: italic;
}



.capitalize {
  text-transform: capitalize;
}

.uppercase {
  text-transform: uppercase;
}



.truncate { /* truncate for one line */
  white-space: nowrap !important;
  overflow: hidden;
  text-overflow: ellipsis;
}





/*--------*\
   #BOX
\*--------*/



.box-inline {
  display: inline-block;
}



.relative {
  position: relative;
}



.nomargin {
  margin: 0;
}

.margin-lr--20 {
  margin-left:  20px;
  margin-right: 20px;
}

.margin-lr--15 {
  margin-left:  15px;
  margin-right: 15px;
}

.margin-lr--10 {
  margin-left:  10px;
  margin-right: 10px;
}

.margin-lr--5 {
  margin-left:  5px;
  margin-right: 5px;
}

.margin-l--20 {
  margin-left: 20px;
}

.margin-r--20 {
  margin-right: 20px;
}

.margin-l--15 {
  margin-left: 15px;
}

.margin-r--15 {
  margin-right: 15px;
}

.margin-l--10 {
  margin-left: 10px;
}

.margin-r--10 {
  margin-right: 10px;
}

.margin-l--5 {
  margin-left: 5px;
}

.margin-r--5 {
  margin-right: 5px;
}

.margin-tb--20 {
  margin-top:    20px;
  margin-bottom: 20px;
}

.margin-tb--15 {
  margin-top:    15px;
  margin-bottom: 15px;
}

.margin-tb--10 {
  margin-top:    10px;
  margin-bottom: 10px;
}

.margin-tb--5 {
  margin-top:    5px;
  margin-bottom: 5px;
}

.margin-t--20 {
  margin-top: 20px;
}

.margin-b--20 {
  margin-bottom: 20px;
}

.margin-b---20 {
  margin-bottom: -20px;
}

.margin-t--15 {
  margin-top: 15px;
}

.margin-b--15 {
  margin-bottom: 15px;
}

.margin-t--10 {
  margin-top: 10px;
}

.margin-b--10 {
  margin-bottom: 10px;
}

.margin-b---10 {
  margin-bottom: -10px;
}

.margin-t--5 {
  margin-top: 5px;
}

.margin-b--5 {
  margin-bottom: 5px;
}



.padding-lr--20 {
  padding-left:  20px;
  padding-right: 20px;
}

.padding-lr--15 {
  padding-left:  15px;
  padding-right: 15px;
}

.padding-lr--10 {
  padding-left:  10px;
  padding-right: 10px;
}

.padding-lr--5 {
  padding-left:  5px;
  padding-right: 5px;
}

.padding-l--20 {
  padding-left: 20px;
}

.padding-r--20 {
  padding-right: 20px;
}

.padding-l--15 {
  padding-left: 15px;
}

.padding-r--15 {
  padding-right: 15px;
}

.padding-l--10 {
  padding-left: 10px;
}

.padding-r--10 {
  padding-right: 10px;
}

.padding-l--5 {
  padding-left: 5px;
}

.padding-r--5 {
  padding-right: 5px;
}

.padding-tb--20 {
  padding-top:    20px;
  padding-bottom: 20px;
}

.padding-tb--15 {
  padding-top:    15px;
  padding-bottom: 15px;
}

.padding-tb--10 {
  padding-top:    10px;
  padding-bottom: 10px;
}

.padding-tb--5 {
  padding-top:    5px;
  padding-bottom: 5px;
}

.padding-t--20 {
  padding-top: 20px;
}

.padding-b--20 {
  padding-bottom: 20px;
}

.padding-t--15 {
  padding-top: 15px;
}

.padding-b--15 {
  padding-bottom: 15px;
}

.padding-t--10 {
  padding-top: 10px;
}

.padding-b--10 {
  padding-bottom: 10px;
}

.padding-t--5 {
  padding-top: 5px;
}

.padding-b--5 {
  padding-bottom: 5px;
}







/*---------*\
   #STICK
\*---------*/

/*
 * Stick element in -webkit- browsers
 *
 * Very useful for iOS
 */



.stick { /* .sticky element only moves inside parent element, u may need to set the height of this via js */
  position: relative;
}

  .stick__elem {
    position: -webkit-sticky; /* Change to static if u want to turn out sticky */
    top: 0; /* Distance from the top when sticky starts */
  }





/*----------------*\
   #MISCELLANEOUS
\*----------------*/



a.underline {
  position: relative;
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
}

  a.underline:before {
     content: "";
     position: absolute;
     left:   0;
     bottom: 1px;
     height: 1px;
     width:  50%;
     background-color: #09f;
     -webkit-transition: inherit;
             transition: inherit;
     -webkit-transform: translate3d(-102%,0,0);
             transform: translate3d(-102%,0,0);
  }

  a.underline:hover, a.underline:focus {
    color: #09f;
  }

  a.underline:hover:before, a.underline:focus:before {
    -webkit-transform: translate3d(50%,0,0);
            transform: translate3d(50%,0,0);
  }



.noverflow {
  overflow: hidden;
}



.blur {
  -webkit-filter: blur(20px);
}



[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {
  display: none !important;
}
/*
 * BEFORE MODIFYING THIS DOCUMENT READ THIS DOCUMENTATION CAREFULLY:
 *
 * http://cssguidelin.es/
 *
 * What differs from the guideline:
 *
 * - Indentations are 2px
 * - Columns are 120px wide
 * - don't use [] in html inside class="" for grouping
 * - in html class="" don't use 2 space between classes, but put the related ones next to each other
 * - low level commenting is not necessary but u can use, just try to explain the things u think is important
 *
 */





/*
 * NEWS INDEX PAGE
 * Rules related to the news index page only
 */

/* Slider */

.slick-slider
{
    position: relative;

    display: block;

    -moz-box-sizing: border-box;
         box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}

@media only screen and (min-width: 768px) and (max-width: 1439px) {
  .featured.slick-slide {
      padding: 0 5px;
  }
}
/*
 * RULES FOR USABILLA FEEDBACK BUTTON
 *
 */




.usabilla_live_button_container {
  position: relative !important;
  left: 50%;
  top:  0 !important;
  height: 40px !important;
  margin-top:  0 !important;
  margin-left: 20px !important;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
/*
 * RULES FOR WORDPRESS
 *
 */






.contains-iframe {
  position: relative;
  display: block;
  height: 0;
  padding-bottom: 56.25%;
}

  .contains-iframe > iframe {
    position: absolute;
    top:  0;
    left: 0;
    width:  100%;
    height: 100%;
  }




  
.wp-caption {
  max-width: 100%;
  margin: 0 auto;
  width: auto !important;
}

  .wp-caption-text {
    font-size: .8em;
    opacity: .5;
    margin: -15px 0 15px 5px;
    text-align: center;
  }
