@import url('https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700');

* {
  margin: 0;
  padding: 0;
  outline: none;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html,
body {
  height: 100%;
  background: white;
  font-family: 'Roboto', Helvetica, sans-serif;
  font-size: 16px;
}

.content {
    position: relative;
  width: 1000px;
  padding: 0 50px;
  margin: auto;
}

.theforbiddenword {
    position: relative;
    border: 1px solid #eee;
    border-radius: 1px;
  background: #eee;

  display: none;
}
    .theforbiddenword .close {
        position: absolute;
        top: 0;
        right: 0;
        background: #fff;
        width: 20px;
        height: 20px;
        font-size: 14px;
        text-align: center;
        line-height: 20px;
        text-decoration: none;
        color: #333;
    }
.theforbiddenword.theforbiddenword-size1 {
  width: 728px;
  height: 90px;
  margin: 20px auto;
}
.theforbiddenword.theforbiddenword-size2 {
    position: absolute;
  width: 160px;
  height: 600px;
}
.theforbiddenword.ad-size2.ad-left {
    margin-left: -200px;
    top: 120px;
    position: fixed;
}
.theforbiddenword.ad-size2.ad-right {
    margin-right: -200px;
}
.theforbiddenword.theforbiddenword-size2.theforbiddenword-left {
    margin-left: -170px;
}
.theforbiddenword.theforbiddenword-size2.theforbiddenword-right {
    margin-right: -170px;
    right: 0;
}
.theforbiddenword.theforbiddenword-size3 {
  width: 300px;
  height: 250px;
}

.logo-container {
  padding: 50px;
}
  .logo-container img {
    display: block;
    margin: auto;
    width: 128px;
    height: 128px;
  }
  .title-container {
    text-align: center;
    margin-bottom: 60px;
  }
    .title-container .title {
      font-size: 58px;
      font-weight: 300;
    }
    .title-container .subtitle {
      font-size: 24px;
      font-weight: 300;
      color: #A7A7A7;
    }

    .header {
        margin-bottom: 60px;
        transition: all 0.2s;
    }
    .header.fixed {
        position: fixed;
        z-index: 10;
        top: 0;
        left: 0;
        right: 0;
        height: 90px;
        background: #f9f9f9;
        box-shadow: 0 5px 5px rgba(0,0,0, 0.10);
        margin-bottom: 0;

    }
        .header-inner {
            transition: all 0.2s;
        }
        .header.fixed .header-inner {
            margin: auto;
            width: 1100px;
            padding: 0 20px;
            box-sizing: border-box;
            height: 100%;
            display: flex;
            align-items: center;
        }
            .header .logo {
                flex-shrink: 0;
                width: 52px;
                height: 52px;
                margin-right: 12px;
            }
            .header .logo,
            .header .text {
                display: none;
            }
            .header.fixed .logo,
            .header.fixed .text {
                display: block;
            }
            .header .text {
                font-size: 28px;
                font-weight: 300;
                margin-right: 60px;
            }
            .header .slider-container {
                flex-grow: 1;
            }
  .slider-container {
      cursor: pointer;
      position: relative;
    background: -webkit-linear-gradient(#FCFCFC 0%, #F8F8F8 100%);
    border: 1px solid #EAEAEA;
    border-radius: 60px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.07);
    height: 60px;
  }
    .slider-track {
        display: flex;
        flex-direction: row;
        height: 26px;
        margin: 16px;
    }
        .slider-track-start,
        .slider-track-end {
            flex-shrink: 0;
            width: 26px;
            height: 100%;
        }
        .slider-track-start {
            background: url(../img/slider-track-start.png);
        }
        .slider-track-end {
            background: url(../img/slider-track-end.png);
        }
        .slider-track-fill {
            flex-grow: 1;
            height: 100%;
            background: url(../img/slider-track-fill.png);
            background-repeat: repeat-x;
        }
        .slider-track-dot {
            flex-shrink: 0;
            width: 26px;
            height: 26px;
            background: url(../img/slider-track-dot.png);
        }
        .slider-hint {
            position: absolute;
            right: 12px;
            top: 50px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            padding: 18px;

            display: flex;

            opacity: 0;
            visibility: hidden;
            transform: scale(0.8);
            transform-origin: right top;
            transition: all 0.5s;
        }
        .slider-hint.visible {
            opacity: 1;
            visibility: visible;
            transform: scale(1);
        }
        .slider-hint:after {
            content: "";
            display: block;
            width: 0;
            height: 0;
            right: 10px;
            top: -10px;
            position: absolute;
            border: 10px solid transparent;
            border-top: none;
            border-bottom-color: #fff;
        }
        .slider-hint:before {
            content: "";
            display: block;
            width: 0;
            height: 0;
            right: 9px;
            top: -11px;
            position: absolute;
            border: 11px solid transparent;
            border-top: none;
            border-bottom-color: #eee;
        }
            .slider-hint-icon {
                width: 49px;
                height: 49px;
                background: url(../img/slider-hint.png) no-repeat center center;
                margin-right: 18px;
            }
            .slider-hint-text {
                display: flex;
                align-items: center;

                font-size: 14px;
                color: #333;
            }
    .slider-input-container {
        position: absolute;
        top: 0;
        left: 10px;
        right: 10px;
        bottom: 0;
    }
        .slider-input-container input {
            -webkit-appearance: none;
            width: 100%;
            height: 100%;
            background: transparent;

            outline: none;
        }
        .slider-input-container input:focus {
          outline: none;
        }
        .slider-input-container input::-moz-focus-outer {
          border: 0;
        }
        .slider-container input::-webkit-slider-thumb {
          -webkit-appearance: none;
          width: 46px;
          height: 46px;
          background: url(../img/slider-thumb.png) no-repeat center center;
          background-size: contain;
          cursor: move;
          outline: none;
          border: none;

          transition: all 0.2s;
        }
        .slider-container input::-webkit-slider-thumb:hover {
            transform: scale(1.2);
        }
        .slider-container input::-webkit-slider-thumb,
        .slider-container input::-webkit-slider-thumb:active {
            transform: scale(1.0);
        }

        .slider-container input::-moz-range-thumb {
          -webkit-appearance: none;
          width: 46px;
          height: 46px;
          background: url(../img/slider-thumb.png) no-repeat center center;
          background-size: contain;
          cursor: move;
          border: none;

          transition: all 0.2s;
        }
        .slider-container input::-moz-range-thumb:hover {
            transform: scale(1.2);
        }
        .slider-container input::-moz-range-thumb,
        .slider-container input::-moz-range-thumb:active {
            transform: scale(1.0);
        }

        .slider-container input::-ms-thumb {
          -webkit-appearance: none;
          width: 46px;
          height: 46px;
          background: url(../img/slider-thumb.png) no-repeat center center;
          background-size: contain;
          cursor: move;
          border: none;

          transition: all 0.2s;
        }
        .slider-container input::-ms-thumb:hover {
            transform: scale(1.2);
        }
        .slider-container input::-ms-thumb,
        .slider-container input::-ms-thumb:active {
            transform: scale(1.0);
        }

  .section.section-teller {
      margin-bottom: 0;
  }
  .section-teller .block.block2 {
      text-align: left;
      width: 60%;
      order: -1;
  }
    .section-teller .block.block2 img {
        display: block;
    }
  .section-teller .block.block1 {
      margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .section-teller .price-container {
    text-align: center;
  }
    .section-teller .price-container .product {
      font-size: 34px;
      font-weight: 100;
        line-height: 36px;
    }
    .section-teller .price-container .price {
      font-size: 34px;
      font-weight: 100;
    }
 .buy-container {
    text-align: center;
    margin-bottom: 100px;
  }
  .section-teller .buy-container {
      margin-bottom: 0;
  }
    .buy-container .buy {
      display: inline-block;
      background: #00B927;
      border: 1px solid #009C1F;
      border-bottom-width: 1px;
      border-radius: 5px;
      color: white;
      padding: 0.7em 4em;
      text-decoration: none;
      font-size: 18px;
      box-shadow: 0 1px 1px rgba(0,0,0,0.2);

      transition: all 0.2s;
    }
    .buy-container .buy:hover {
      background: #00ce00;
      cursor: pointer;
    }
    .buy-container .buy:active {
        border-bottom-width: 1px;
    }

.section {
    width: 100%;
  margin-bottom: 100px;
  display: flex;
  flex-direction: row;
}
    .section .block {
        width: 46%;
        margin: 0 2%;
        flex-grow: 1;
        flex-shrink: 1;
    }
        .section .block h2 {
            font-size: 32px;
            font-weight: 300;
            margin-bottom: 12px;
        }
        .section .block p {
            font-size: 16px;
            font-weight: 300;
            line-height: 28px;
            color: #111;
            margin-bottom: 1em;
        }
            .section .block p a {
                text-decoration: none;
                color: #0078ff;
            }
            .section .block p a:hover {
                text-decoration: underline;
            }
        .section .block.img img {
            width: 100%;
            border-radius: 5px;
            overflow: hidden;
        }

.section-hero {
    display: block;
}
    .section-hero img {
        width: 100%;
        border-radius: 5px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.25);
    }

.section-app {

}
    .section-app .block1 {
        background: #F5F5F5;
        border: 1px solid #EBEBEB;
        border-radius: 10px;
        padding: 16px;
        overflow: hidden;

        display: flex;
    }
        .section-app .block1 .left {
            width: 265px;
            margin-right: 12px;
        }
            .section-app .block1 .image {
                display: block;
                width: 100%;
                border-radius: 10px;
                overflow: hidden;
                margin-bottom: 16px;
            }
            .section-app .block1 .button {
                display: block;
                width: 100%;
                padding: 16px 0;
                box-sizing: border-box;
                text-align: center;
                background: -webkit-linear-gradient(#0ED1FF 0%, #367CFF 100%);
                border-radius: 10px;
                color: white;
                text-decoration: none;
                font-weight: 600;
                font-size: 16px;

                transition: all 0.2s;
            }
            .section-app .block1 .button:hover {
                filter: brightness(110%);
            }
            .section-app .block1 .button:active {
                background: -webkit-linear-gradient(#00a9cf 0%, #1264ff 100%);
                filter: brightness(95%);
            }
        .section-app .block1 .right {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-around;
            text-align: center;
        }
            .section-app .block1 .right .check {
                color: #12C300;
            }
            .section-app .block1 .right .line {
              font-size: 16px;
              color: #444;
            }
        .section-bottom-buy {
          margin-bottom: -125px;
        }

.overlay-container {
    position: fixed;
    z-index: 20;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.85);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}
.overlay-container.visible {
    opacity: 1;
    visibility: visible;
}
    .overlay {
        position: relative;
        background: white;
        padding: 48px;
        box-sizing: border-box;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        border-radius: 10px;

        width: 40%;
        min-width: 700px;
    }
        .overlay-close {
            position: absolute;
            top: 12px;
            right: 12px;
            font-size: 20px;
            width: 40px;
            height: 40px;
            text-align: center;
            line-height: 40px;

            transition: all 0.3s;
            user-select: none;
        }
        .overlay-close:hover {
            opacity: 1;
            cursor: pointer;
        }
        .overlay-close,
        .overlay-close:active {
            opacity: 0.5;
        }
        .overlay h2 {
            text-align: center;
            font-weight: 300;
            font-size: 38px;
        }
        .overlay h2:after {
            display: block;
            margin: 1em auto;
            content: "";
            width: 20%;
            background: #ddd;
            height: 1px;
        }
        .overlay p,
        .overlay ol,
        .overlay h3 {
            font-size: 16px;
            font-weight: 300;
            margin: auto;
            margin-bottom: 1em;
            line-height: 28px;
            max-width: 80%;
        }
            .overlay p .code {
                background: #f9f9f9;
                font-weight: bold;
                border: 1px solid #eeeeee;
                padding: 3px;
                color: #00b927;
                text-decoration: none;
            }
            .overlay p .code:hover {
                text-decoration: underline;
            }
        .overlay h3 {
            font-size: 22px;
            margin-bottom: 0.5em;
        }
        .overlay ol {
            padding-left: 30px;
        }
            .overlay ol li {
                margin-bottom: 1em;
            }

.footer {
    width: 100%;
    background: #222;
    padding: 30px;
    padding-top: 60px;
    box-sizing: border-box;
    text-align: center;
}
    .footer .logo {
        display: block;
        position: relative;
        width: 48px;
        height: 48px;
        margin: auto;
        margin-bottom: 20px;
    }
    .footer .text {
        color: #999;
        font-size: 14px;
    }


body.notloggedin .login {
  display: initial;
}
body.notloggedin .noprogress {
  display: none;
}

.onprogress {
  display: none;
}
.login {
  display: none;
}
body.installing-app .onprogress {
  display: initial;
}
body.installing-app .noprogress {
  display: none;
}

.section-app-installed {
  display: none;
}
.section-app-uninstalled {
  display: flex;
}
body.app-installed .section-app-installed {
  display: flex;
}
body.app-installed .section-app-uninstalled {
  display: none;
}

.homey-img-container > img {
    width: 200px;
}

.screenshot-img-container > img {
    border-radius: 5px;
    width: 125px;
}

.product-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    margin-bottom: 0;
    border-bottom: 1px solid #ddd;
    background: white;
    margin-bottom: 100px;
}

.footnotes {
    text-align: left;
    position: relative;
    width: 1100px;
    margin: auto;
    margin-bottom: 20px;
}

.footnotes > p {
    color: #666666;
    font-size:12px;
}

.footnotes > ol {
    color: #666666;
    font-size:12px;
    padding-left: 18px;
    padding-right: 18px;
}
.footnotes > .star-note {
    padding-left: -5px;
}

@media only screen and (max-width: 800px) {
    .content,
    .footnotes {
      width: 100%;
      padding: 0 12px;
      box-sizing: border-box;
    }

    .header {

    }
      .header.fixed .header-inner {
        width: 100%;
      }
      .header.fixed .text,
      .header.fixed .logo {
        display: none;
      }

    .theforbiddenword.theforbiddenword-size1 {
      max-width: 100%;
      height: auto;
    }
      .theforbiddenword.theforbiddenword-size1 img {
        display: block;
        width: 100%;
      }

    .section {
      flex-direction: column;
      margin-bottom: 20px;
    }
    .section .block,
    .section .block1,
    .section .block2 {
        margin: 0;
        margin-bottom: 50px;
        width: 100%;
        box-sizing: border-box;
    }
    .section img {
      max-width: 100%;
    }
      .section h2,
      .section p {
        text-align: center;
      }

    .product-container {
      margin-bottom: 40px;
      padding-bottom: 40px;
    }

    .section-app,
    .section-privacy {
      flex-direction: column-reverse;
    }
    .section-app {
      margin-bottom: 100px;
    }
    .section-app .block1 .right .line {
      font-size: 14px;
    }

    .section-teller .block.block2 {
      width: 100%;
    }
    .section-teller .block.block2 img {
        width: 100%;
    }

    .section-bottom-buy {
      margin-bottom: -175px;
    }

    .overlay {
      width: 90vw;
      height: 90vh;
      min-width: 90vw;
      min-height: 90vh;
      overflow: auto;
      padding: 48px 0;
    }
}