/* All with pdf... is for pdfoveriw page */
.pdfContentWrapper {
  width: 100%;
  display: block;
  float: left;
  /* padding: 2em 1em; */
}

.pdfWrapper {
  display: block;
  width: 100%;
  float: left;
}

/* wraps table and thumbs view */
#tableAndThumbWrapper {
  display: block;
  float: left;
  width: 100%;
}
#tableAndThumbWrapper.hidden {
  display: none;
}

/* table */
.pdfWrapper table#tableView {
  width: 100%;
  text-align: left;
  margin-bottom: 1.5em;
}
.pdfWrapper table#tableView.hidden {
  /* visibility: hidden; */
  display: none;
}

.pdfWrapper table caption {
  width: 100%;
  text-align: left;
  display: none;  
}

.pdfWrapper table tr.even {
background: rgba(0,0,255, 0);
-webkit-box-shadow: inset 0px 1px 10px -2px rgba(0,0,255,1);
-moz-box-shadow: inset 0px 1px 10px -3px rgba(0,0,255,1);
box-shadow: inset 0px 1px 10px -2px rgba(0,0,255,1);
}

.pdfWrapper table td {
  padding: 3px 7px;
  color: blue;
}
.pdfWrapper table th {
  color: blue;
}

.pdfWrapper table a.tableBtn {
  display: inline-block;
  color: blue;
  line-height: 24px;
  padding: 0px 10px;
  outline: 0;
  background: transparent; /* rgba(0,51,102,0.05); */
  border-radius: 5px;
  border-bottom: 0px;
  margin-right: 1px;
}
.pdfWrapper table a.tableBtn:hover {
  background: rgb(0,0,255);
  color: white;
}
.pdfWrapper table a.tableBtn:first-child {
  margin-left: 10px;
}


/* View top - impro an filtering */
.viewTopWrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.5em;
}
.viewTopLeft {
  flex: 0 0 70%;
}
.viewTopRight {
  flex: 0 0 30%;
}
/* views in bottom */
.viewBottomWrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;  
}
.viewBottomLeft {
  flex: 0 0 70%;
}
.viewBottomRight {
  flex: 0 0 30%;
}


.formItem {
  display: block;
  float: left;
  border: 1px solid rgba(0,0,255,1); /* 0px; /* 1px solid red; */
  color: blue;
  background: #FFF;
  border-radius: 0px;
  outline: none;
  margin: 0 0.5em 0.5em 0;
  padding: 0px 0.65em; /* 0.25em 0.5em; */
  font-size: 19px; /* inherit; */
  line-height: 38px; /* 40px; */
  height: 40px;
  font-family: 'Crimson Text', serif;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
a.formItem:last-child {
  margin-right: 0px !important;
}

/* general link styling */
a.formItem:hover {
  padding: 0px 0.65em;
  color: blue;
  border: 1px solid blue;
  background: #FFF;
  cursor: pointer;
}

/* specific buttons */
a#improLayoutBtn {
  margin-left: 0px;
  margin-right: 0px;
  float: right;
  text-align: center;
}
a#btmSearchRedirect {
  margin-left: 0px;
  margin-right: 0px;
  text-align: center;
}

/* blue on filter input field */
input#searchInput {
  background-color: rgba(0,0,255,0.05);
}
input#searchInput::placeholder {
  color: rgba(0,0,255,0.75);
}

#search form {
  transition: opacity 0.5s ease;
}

/* files */
.fileCol a,  .fileCol a:visited, td a, td a:visited {
  color: rgba(0,0,255, 1);
  text-decoration: none;
  border-bottom: 0px;
}

.fileCol a:hover, td a:hover {
  color: rgba(0,0,255, 1);
  text-decoration: none;
  border-bottom: 0px;
  text-shadow: 0 0 1.5px blue;
  background: 0 0;
}


/* *************************************** */
/* pdf thumbs here */
#pdfThumbsWrapper {
  display: block;
  float: left;
  width: 100%;
  margin-bottom: 1em;
}
#pdfThumbsWrapper:after {
  content: "";
  display: table;
  clear: both;
}
#pdfThumbsWrapper.hidden {
  display: none;
}

ul#pdfThumbs {
  width: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  list-style: none;
  margin: 0px -8px 0px -8px;
}

ul#pdfThumbs li a {
  width: 100%;
  display: block;
  float: left;
  padding: 8px; /* 0px 8px 16px 8px; */
  border-bottom: 0px;
}
ul#pdfThumbs li a:hover {
  background: transparent; /*  rgba(0,51,102,0.1); /* #003366; */
  border-radius: 2px;
  color: #00F; /* #003366; /* white; /* black; */
  text-decoration: underline;
}

ul#pdfThumbs li a .imgWrapper {
  display: block;
  float: left;
  width: 100%;
  height: auto;
}

/* phrase */
ul#pdfThumbs li a .phrase {
  font-style: italic;
  color: rgba(0,0,255, 0.8);
}

/* date */
ul#pdfThumbs li a .created {
  font-style: normal;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 11pt;
  line-height: 15pt;
  color: rgba(0,0,255, 0.8);
}

/* disabled buttons */
#btn_prev.disabled,
#btn_next.disabled {
  color: rgba(0,0,250,0.35); /* #999; */
  border: 1px solid rgba(0,0,250,0.35); /* #999; */
  text-decoration: line-through;
}

#page {
  display: block;
  float: right; /* left; */
  margin: 0 0 0.5em 0;
  color: blue;
  line-height: 32px;
}


/* ************************************************************* */


/* - - - - - - - - - - - - toggle search - - - - - - - - - - - -  */


/* this is for scrape client */
#scrapeBotWrapper {
  position: fixed;
  bottom: 0vh;
  /* right: 0px; */
  /* min-width: 100px; /* 100px; */
  /* width: 90px; */
  display: block;
  background: -moz-linear-gradient(-45deg,  rgba(0,0,255,1) 0%, rgba(0,0,255,0) 100%);
  background: -webkit-linear-gradient(-45deg,  rgba(0,0,255,1) 0%,rgba(0,0,255,0) 100%);
  background: linear-gradient(135deg,  rgba(0,0,255,1) 0%,rgba(0,0,255,0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0000ff', endColorstr='#000000ff',GradientType=1 );
  box-shadow: 0 0 5px #00F; 
  -webkit-animation: glowing 1500ms infinite;
  padding: 2.5em 1.5em 1.5em 1.5em; /* 4.5em 1.5em 1.5em 1.5em; */
  transition: 0.4s;
  z-index: 1;
  text-align: center;
}

#scrapeBotWrapper.full {
  /* top: 0%; */
  bottom: 0px;
  right: 0px;
  overflow-y: auto; /* scroll; */
  text-align: left; /* center; */
}

/* content */
#scrapeBotWrapper #fullContent {
  opacity: 0;
  display: block;
  height: 50px;
  overflow: hidden;
  transition: 0.4s;
}

#scrapeBotWrapper.full #fullContent {
  opacity: 1;
  height: auto;
}

/* scrape link */
#scrapeBotWrapper a {
  color: white;
  border-bottom: 1px solid #FFF;
  background: transparent;
}
#scrapeBotWrapper a:hover {
  background: blue;
}

/* toggle */
a#toggleBtn {
  color: #FFF;
  border-bottom: 0px;
  padding: 0px 4px 0px 0px;
  display: block;
  /* margin-bottom: 1em; */
}
a#toggleBtn:hover {
  background: transparent;
  color: #FFF;
  filter: blur(2px);
}


/* - - - - - - - - - - - - button corner, pulsing - - - - - - - - - - - -  */
@-webkit-keyframes glowing {
  0% { -webkit-box-shadow: 0 0 3px #00F; }
  50% {  -webkit-box-shadow: 0 0 15px #00F; }
  100% { -webkit-box-shadow: 0 0 3px #00F; }
}
@-moz-keyframes glowing {
  0% {  -moz-box-shadow: 0 0 3px #00F; }
  50% { -moz-box-shadow: 0 0 10px #00F; }
  100% {  -moz-box-shadow: 0 0 3px #00F; }
}
@-o-keyframes glowing {
  0% {  box-shadow: 0 0 3px #00F; }
  50% {  box-shadow: 0 0 15px #00F; }
  100% {  box-shadow: 0 0 3px #00F; }
}
@keyframes glowing {
  0% { box-shadow: 0 0 3px #00F; }
  50% { box-shadow: 0 0 15px #00F; }
  100% {  box-shadow: 0 0 3px #00F; }
}

#Corner a {
  -webkit-animation: glowing 1500ms infinite;
  -moz-animation: glowing 1500ms infinite;
  -o-animation: glowing 1500ms infinite;
  animation: glowing 1500ms infinite;
}


/* - - - - - - - - - - - - about page search  - - - - - - - - - - - -  */

#search {
  position: relative;
  display: inline-block;
  margin: 0px; /* 20px 0; */
  font-size: 18px;
  overflow-x: hidden;
}
#search p {
  text-shadow: 0px 1px 12px rgba(0,0,255, 0.65);
}
#search p.smallMargin {
  margin: 0px 0px 0.5em 0px;
}

/* input field */
#search input#query {
  width: 250px;
  height: 40px; /* 42px; */
  padding: 0px 12px; /* 0px 10px; */
  font-family: serif;
  font-size: 19px; /* 18px; /* 16px; */
  border: none;
  color: black;
  margin-right: 0.5em;
  -webkit-box-shadow: inset 0px 1px 10px -2px rgba(0,0,255,1);
  -moz-box-shadow: inset 0px 1px 10px -3px rgba(0,0,255,1);
  box-shadow: inset 0px 1px 10px -2px rgba(0,0,255,1);
  margin-bottom: 0.5em;
}

#search button#performASearch {
  font-family: 'Crimson Text', serif;
  color: rgba(0,0,255,1);
  font-size: 19px;
  line-height: 38px;
  height: 40px;
  display: inline-block;
  padding: 0 10px;
  background-color: #FFFFFF;
  border: none;
}
#search button:hover#performASearch {
  cursor: pointer;
}
/* a as button */
#search a#searchAPerformance {
  font-family: 'Crimson Text', serif;
  font-size: 19px; /* 16px */
  line-height: 38px; /* 42px; */
  height: 40px;
  display: inline-block;
  padding: 0 10px;
  margin-right: 0.5em; /* 1em; */
  background-color: #FFFFFF; 
  border: none;
  color: rgba(0,0,255,1);
}

/* loading anim */
@-webkit-keyframes loading {
  to { -webkit-transform: rotate(360deg); }
}
@-moz-keyframes loading {
	to { -moz-transform: rotate(360deg); }
}
@-ms-keyframes loading {
	to { -ms-transform: rotate(360deg); }
}
@keyframes loading {
	to { transform: rotate(360deg); }
}



/* #fullContent p, a, h2, li, ul { */
#fullContent {
  color: #FFFFFF !important;
}
/*
.grid h2 {
  font-family: 'Crimson Pro', serif;
  line-height: 1.2em;
  font-size: 2.5em;
}
*/

#showResult {
  font-size: 1em;
  line-height: 27px;
  margin: 0px 0px 27px 0px;
  color: #FFFFFF;
}


/* improPieceWrapper ***************************** */

#improPieceWrapper {
  width: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center; /* flex-start; */
  align-items: center;
  list-style: none;
  /* margin: 0px -8px 2em -8px; /* 0px -8px 0px -8px; */
  padding: 10rem auto 10rem auto;
  min-height: 60vh;
  /* background: pink; */
}
#improPieceWrapper.hidden {
  display: none;
}

.improThumb {
  /* flex: 0 0 12.5%; /* make this responsive! */
  transform: skewY(20deg);
  width: 140px;
  text-align: center;
  /* border: 1px solid orange; */
}
.improThumb a {
  width: 100%;
  display: block;
  float: left;
  padding: 0px 8px 16px 8px;
  text-decoration: none;
  border-bottom: 0px;
  color: blue;
}
.improThumb a:hover {
  padding: 0px 16px 16px 0px;
  color: blue;
  text-decoration: none;
  background: transparent;
}
.improThumb a .imgWrapper {
  display: block;
  float: left;
  width: 100%;
  margin-bottom: 0.5em;
}
.improThumb a .imgWrapper .image {
  display: block;
  float: left;
  max-width: 80px;
  height: auto;
  margin-bottom: 0.35em;
}
.improThumb a .imgWrapper .image img {
  display: block;
  float: left;
  max-width: 100%;
  height: auto;
}
.improThumb a .imgWrapper .image img:hover {
  padding: 0px 0px 0px 0px;
  text-decoration: none;
  border-bottom: 0px;
  background-color: transparent;
  -webkit-box-shadow: 1px 1px 8px rgba(0,0,255, 0.25);
  -moz-box-shadow: 1px 1px 8px rgba(0,0,255, 0.25);
  box-shadow: 1px 1px 8px rgba(0,0,255, 0.25);  
}

/* drop shadow */
.improThumb a:hover .path1:before {
  text-shadow: 0px 0px 8px rgba(0,0,255, 0.5);
}


.improThumb a .phrase {
  font-size: 21px;
}





/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* grids */


/*
 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

@media screen {

  a#toggleBtn {
    margin-bottom: 1em;
  }

  /* hide suggestions */
  p.smallMargin {
    display: none;
  }

  .pdfContentWrapper {
    padding: 1em 0px; /* 2em 1em; */
  }

  /* Table col claes - hide fileName col in mobile view */
  .pdfWrapper table .fileCol,
  .pdfWrapper table .tempoCol,
  .pdfWrapper table td .time,
  .pdfWrapper table td.tempoCol,
  .pdfWrapper table a.tableBtn {
    display: none;
  }

  ul#pdfThumbs li {
    flex: 0 0 50%;
    overflow: hidden;
  }

  #scrapeBotWrapper {
    height: calc(100% - 60px);
    top: calc(100% - 60px);
    width: 100%;
    padding: 1em 0.5em 0.5em 0.5em;
    text-align: center;
  }
  #scrapeBotWrapper.full {
    width: 100%;
    top: 60px;
    text-align: center; /* keep this! */
    padding: 2em 0.5em 1.5em 0.5em;
  }

  .viewTopLeft { flex: 0 0 100%; }
  .viewTopRight { flex: 0 0 100%; }
  .viewBottomLeft { flex: 0 0 70%; }
  .viewBottomRight { flex: 0 0 30%; }
  
  /* specific buttons */
  a#improLayoutBtn {
    width: 100%;
  }
  a#btmSearchRedirect {
    width: 100%;
  }

  /* search input and clear button */
  input#searchInput {
    width: 100%; /* calc(100% - 0.5em); */
  }
  a#clearSearch {
    /*width: 30%; 
    text-align: center; */
    display: none;
  }
  /* OLD */
  /*input#searchInput {
    width: calc(70% - 0.5em);
  }
  a#clearSearch {
    width: 30%;
    text-align: center;
  }*/

  /* search input on about page */
  #scrapeBot #fullContent h2 {
    font-size: 2.25em;
    font-family: 'Crimson Text';
    font-weight: 700;
    line-height: 1.1em;
    margin: 0 0 0.75em 0;
  }  

  #search input#query {
    margin-right: 0px;
    color: blue;
  }
  #search input#query::placeholder {
    color: blue;
  }

  /* scraper */
  #scrapeBot {
    margin: 0px 0 0 0;
  }

  #scrapeLoaderWrapper {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background: rgba(0,0,255,0.25);
    z-index: 100;
    width: 100%; /* 680px; */
  }
  #scrapeLoaderWrapper.hide {
    display: none;
  }  
  #scrapeLoader {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -25px 0px 0px -25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent;
    border-top: 5px solid rgba(255,255,255,0.98); /* #fff; */
    border-right: 5px solid rgba(255,255,255,0.98); /* #fff; */
    border-bottom: 5px solid rgba(255,255,255,0.35);
    border-left: 5px solid rgba(255,255,255,0.35);
    -webkit-animation: loading 1.2s infinite linear;
    -moz-animation: loading 1.2s infinite linear;
    -ms-animation: loading 1.2s infinite linear;
    animation: loading 1.2s infinite linear;    
  }

}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
@media screen and (min-width: 360px) {

  /* show suggestions */
  p.smallMargin {
    display: inline-block;
  }

  ul#pdfThumbs li {
    flex: 0 0 33.3333%;
  }

}


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
@media screen and (min-width: 500px) {

  /* search input and clear button */
  input#searchInput {
    width: calc(70% - 0.5em);
  }
  a#clearSearch {
    width: 30%; 
    text-align: center;
    display: block; /* none */
  }
    
  a#toggleBtn {
    margin-bottom: 2.5em;
  }

  .pdfContentWrapper {
    padding: 2em 1em;
  }

  #scrapeBotWrapper {
    height: calc(100% - 120px);
    top: calc(100% - 60px);
    width: 100%;
    padding: 1em 0.5em 0.5em 0.5em;
    text-align: center;
  }
  #scrapeBotWrapper.full {
    width: 100%;
    top: 120px;
    text-align: center; /* keep this! */
    padding: 2em 0.5em 1.5em 0.5em;
  }

  ul#pdfThumbs li {
    flex: 0 0 25%;
  }

  /* input on about page */
  #search input#query {
    margin-right: 0.5em;
  }

}


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
@media screen and (min-width: 768px) {


  .pdfWrapper table td.tempoCol,
  .pdfWrapper table th.tempoCol {
    display: table-cell;
  }

  ul#pdfThumbs li {
    flex: 0 0 16.6666%;
  }

  /* search input on about page */
  #scrapeBot #fullContent h2 {
    font-size: 3em;
  }    

}


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
@media screen and (min-width: 1024px) {

  /* Table col classes - SHOW fileName col in mobile view */
  .pdfWrapper table .fileCol {
    display: table-cell;
  }
  .pdfWrapper table td .time,
  .pdfWrapper table td .date {
    display: inline-block;
  }
  .pdfWrapper table a.tableBtn {
    display: inline-block;
  }


  ul#pdfThumbs li {
    flex: 0 0 12.5%;
  }

  #scrapeBotWrapper {
    width: 680px;
    top: 0px;
    left: calc(100% - 80px);
    height: 100%;
    padding: 2.5em 1.5em 1.5em 1.5em;
    text-align: left; /* center; /* keep this! */
  }

  #scrapeBotWrapper.full {
    top: 0px;
    left: calc(100% - 680px);
    height: 100%;
    text-align: left; /* keep this! */
    padding: 2.5em 1.5em 1.5em 1.5em; /* overwrites other mobile full class */
  }

  #scrapeLoaderWrapper {
    width: 680px;
  }

  .viewTopLeft { flex: 0 0 70%; }
  .viewTopRight { flex: 0 0 30%; }

  
  /* search input and clear button */
  input#searchInput {
    width: auto; /* calc(60% - 1em); */
  }
  a#clearSearch {
    width: auto; /* 30%; */
    text-align: center;
  }

  a#improLayoutBtn {
    width: auto;
  }
  a#btmSearchRedirect {
    width: auto;
  }

  /* scraper */
  #scrapeBot {
    margin: 60px 0 0 0;
  }

}


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
@media screen and (min-width: 1280px) {

  ul#pdfThumbs li {
    flex: 0 0 10%;
  }

}


/* ********************************************************************************************* */
/* ********************************************************************************************* */
/* ********************************************************************************************* */
/* ********************************************************************************************* */

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

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* more icon styling */
.fs1 {
  font-size: 100px;
  padding: 0px;
}
.fs1 a {
  padding: 0px;
  margin: 0px;
  background: transparent;
  text-decoration: none;
  border: 0px;
}

.fs1 a:hover {
  transform: skewY(2deg);
  padding: 0px;
  margin: 0px;
  background: transparent;
}

.icon-PDFicon2 .path1:before {
  content: "\e900";
  color: rgb(255, 255, 255);
  text-shadow: 0px 0px 12px transparent;
}
.icon-PDFicon2 .path2:before {
  content: "\e901";
  margin-left: -0.78125em;
  color: rgb(0, 0, 255);
}




/* - - - - - - - - - - - - insde pdf- - - - - - - - - - - -  */
/*
.textLayer {
  font-size: 16.6667px;
  font-family: 'Crimson Text', serif;
  color: blue;
}
.linkAnnotation a{
  font-size: 16.6667px;
  font-family: 'Crimson Text', serif;
  color: blue;
  text-decoration: underline;
}
.linkAnnotation a:hover{
  text-shadow: 0 0 1.5px blue;
}
*/

