@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700');
@import url('https://fonts.googleapis.com/css?family=Patua+One');

html, body {
  margin: 0px;
  padding: 0px;
}

#container {
  display: flex;
  flex-direction: column;

}

#header {
  z-index: 100;
  font-family: 'Patua One', sans-serif;
  margin: 0px;
  padding: 20px 0px 80px 0px;
  line-height: 3.0em;
  text-align: center;
  flex: 1 0 50vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

#header > .title {
  width: 100%;
  color: #5f587e;
}

#footer {
  z-index: 1000;
  margin: 0px;
  padding: 20px 0px 20px 50px;
  line-height: 3.0em;
  display: flex;
  flex-direction: row;
  align-items: left;
  /* background-color: #F9F9F9; */
  background-color: #5f587e;
  box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

#footer .boilerplateHeader {
  font-family: 'Patua One', sans-serif;
  font-size: 2.0em;
  color: #FFFFFF;
  width: 50%;
  margin-top: 40px;
  margin-bottom: 20px;
}

#footer .boilerplate {
  width: 100%;
  font-family: 'Open Sans', sans-serif;
  text-align: left;
  color: #FFFFFF;
  line-height:2.0em;
}

#footer #citations {
  width: 100%;
  font-family: 'Open Sans', sans-serif;
  text-align: left;
  color: #FFFFFF;
  line-height:2.0em;
}

#footer #citations > .citation {
  font-family: 'Open Sans', sans-serif;
  text-align: left;
  color: #FFFFFF;
  line-height:2.0em;
  padding-left: 40px;
  text-indent: -40px;
}

#footer #citations > .spacer {
  width: 100%;
  height: 20px;
  content: "";
}

#footer #citations > .citationHeader {
  font-family: 'Open Sans', sans-serif;
  text-align: left;
  color: #FFFFFF;
  line-height:2.0em;
  font-weight: 600;
  padding: 0px;
  margin: 0px;
}

#footer a:link, a:visited {
  color: #F6C900;
  text-decoration: underline;
}

#footer a:hover {
  text-decoration: underline;
}

.sectionHeader {
  font-family: 'Patua One', sans-serif;
  padding: 0px;
  margin: 20px 0px 20px 0px;
  font-size: 2.0em;
  text-align: left;
  color: #5f587e;
}


#vis_nav {
  overflow-x: scroll;
}

#vis_container {
    width: 100%;
    position: relative;
}

#vis_main {
  z-index: 0;
  overflow-y: hidden;
  margin: 0px;
  padding: 0px;
  width:100%;
  position: fixed;
  top: 0px;
  left: 0px;
}


#content {
  font-family: "Open Sans", sans-serif;
}

.section {
  font-family: "Open Sans", sans-serif;
  padding: 0px 0px 100px 0px;
  margin: 0px;
  box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  position: relative;

}

#mainSectionContent {
  flex:0 1 35%;
  z-index: 100;
  background-color: rgba(255,255,255,0.9);
}

#introduction {
  justify-content: center;
}

.subheader {
  display: block;
  margin: 0px 0px 10px 0px;
  padding: 0px;
  box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
  font-size: 0.9em;
  text-transform: uppercase;
  font-weight: 700;
}


.column1 {
  display: flex;
  flex-direction: column;
  flex: 0 1 100%;
  box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.column2 {
  display: flex;
  flex-direction: column;
  flex: 0 1 50%;
  padding: 0px 40px 0px 40px;
  box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}


.content {
  font-size: 1.0em;
  font-weight: 400;
  line-height: 2.0em;
  text-align: justify;
  display: block;
  margin: 10px 0px 30px 0px;
  padding: 0px;
  color: #333333;
  box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.padded {
  min-height: 75vh;
}


#song_tooltip {
  position: absolute;
  top: 0px;
  left: 0px;
  display: block;
  padding: 3px;
  background: rgba(255,255,255,0.9);
  visibility: hidden;
}

#screenshot_tooltip {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 300px;
  height: 188px;
  display: block;
  padding: 0px;
  border: 1px solid #AAAAAA;
  background-color: #000000;
  pointer-events: none;
  visibility: hidden;
}

#dialogue_tooltip {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 250px;
  display: block;
  color: #CCCCCC;
  background: rgba(255,255,255,0.9);
  padding: 5px;
  pointer-events: none;
  visibility: hidden;
}

#dialogue_tooltip > .characterHeader {
  font-size: 0.9em;
  font-variant: all-small-caps;
  font-weight: 600;
  font-family: 'Open Sans', sans-serif;
}

#dialogue_tooltip > .timeHeader {
  font-size: 0.9em;
  font-weight: 600;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
}

#dialogue_tooltip > .textBlock {
  font-size: 0.8em;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 10px;
}

#dialogue_tooltip > .currentLine {
  color: #000000;
}

#character_tooltip {
  position: absolute;
  top: initial;
  left: initial;
  display: block;
  pointer-events: none;
  font-family: "Open Sans";
  font-size: 10pt;
  font-weight: 700;
  background: rgba(255,255,255,0.9);
  padding: 3px;
  visibility: hidden;
}

#screenplay_tooltip {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 300px;
  display: block;
  pointer-events: none;
  font-family: "Open Sans";
  padding: 10px;
  border: 1px solid steelblue;
  font-size: 10pt;
}

.name {
  display: block;
  font-size: 1.0em;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.script {
  display: block;
  font-size: 1.0em;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}

.label {
  font-size: 1.1em;
  font-family: 'Open Sans', sans-serif;
  font-variant: small-caps;
  dominant-baseline: central;
  font-weight: 700;
  text-anchor: end;
}


.label-small {
  font-size: 1em;
  font-family: 'Open Sans', sans-serif;

  font-variant: all-small-caps;
  dominant-baseline: central;
  font-weight: 700;
  text-anchor: end;
}

.songLabel {
  display: block;
  font-size: 1.0em;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
}

.artistLabel {
  display: block;
  font-size: 1.0em;
  font-family: 'Open Sans', sans-serif;
  font-variant: all-small-caps;
  font-weight: 400;
}

.sceneBreak line {
  stroke: #DDDDDD; /* #EFEFEF */
  stroke-width: 4;
  /* stroke-dasharray: 4 4; */
}

.sceneBreak text {
  font-size: 0.7em;
  font-family: 'Open Sans', sans-serif;
  font-variant: small-caps;
  dominant-baseline: central;
  font-weight: 400;
  cursor: default;
  /* text-anchor: end; */
}

.locationBlock {
  fill: #fb8072;
}



.sceneBlock {
  stroke-width: 4;
  stroke: #FFFFFF;
  fill: #ffefdb;
}

.dialogueBlock {
  stroke: #bebada;
  fill: #bebada;
  stroke-width: 2;
}


#progressBar {
  position: fixed;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 50px;
  background: #FFFFFF;
}



.characterLineShadow {
  stroke-width: 10;
  stroke: #FFFFFF;
}


.characterNodeShadow {
  fill: #FFFFFF;
}

strong {
  color: #5f587e;
}

#segmentTable {
  display: flex;
  flex-direction: column;
}

#segmentTable > .row {
  display: flex;
  flex-direction: row;
  margin-bottom: 15px;
}

#segmentTable > .row > .column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1 0 auto;
}

#segmentTable > .row > .column .cell {
  flex: 1 0;
}

.quote {
  display: block;
  padding-left: 25px;
  padding-right: 25px;
  quotes: "“" "”" "‘" "’";
}

.quote:before {
  color: #5f587e;
  content: open-quote;
  font-weight: 700;
}

.quote:after {
  content: close-quote;
  color: #5f587e;
  font-weight: 700;
}

a:link, a:visited {
  color: steelblue;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Other styles */

span.character {
  font-weight: 600;
  color: #FFFFFF;
  padding: 0px 3px 0px 3px;
}

span.character#dude {
  color: #b1a5eb;
}

span.character#donny {
  color: #d4a5eb;
}

span.character#walter {
  color: #a5d2eb;
}

span.character#brandt {
  color: #e78ac3;
}

span.character#lebowski {
  color: #ebbca5;
}

span.character#nihilists {
  color: #111111;
}

span.character#maude {
  color: rgb(126,170,154);
}

span.character#stranger {
  color: rgb(241,210,64);
}

span.character_other {
  color: #999999;
  font-weight: 600;
}

span.annotationTrigger {
  background-color: #f0eccc;
  cursor: pointer;
}

span.annotationTrigger:hover {
  text-decoration: underline;
}
