/*
    Version 0.0.1

    Styles related to piano integration, specifically related to the inline blocker.

    Copyright (c) 2022 The Japan Times, Ltd.
    All rights reserved.
*/

@import url(https://fonts.googleapis.com/earlyaccess/notosans.css);
  .blocker{
    text-align:center;
    position:relative;
    background-color: #fff;
    padding:40px 20px;
  }
  .blocker:before {
    display: block;
    content: '';
    background: -moz-linear-gradient(top,transparent,rgba(251,251,251,1));
    background: -webkit-linear-gradient(top,transparent,rgba(251,251,251,1));
    background: linear-gradient(to bottom,rgba(251,251,251,0),rgba(251,251,251,1));
    width: 100%;
    height: 200px;
    position: absolute;
    left: 0;
    top: -200px;
  }
  .blocker h3{
    font-family: 'Noto Sans', sans-serif !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    margin-bottom:15px !important;
  }
  .blocker p{
    font-family: 'Noto Sans', sans-serif !important;
    font-size: 12px !important;
    line-height:170% !important;
    margin-bottom:0 !important;
  }