  select { 
  height: 30px; 
}
body {
  background-color: #f4f5f7;
  font-family: HelveticaNeue-Light,Helvetica Neue Light,Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif;
}

textarea, #notes {
  
  -webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
      box-sizing: border-box;
}
img#logo{
  margin:5px 25px;
  float:left;
}
h1#boardName{
  color:#5F2D91;
  font-size: xx-large;
  font-weight: lighter;
}

#content.sign-in {
  background-color:#f4f5f7;
}
#sign-in-form, 
#create-account-form,
#forgotten-password-form,
#signed-in-not-authenticated, 
#signed-in-authenticated  {
  background-color:#fff;
  box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.03);
  max-width: 320px;
  margin: 0 auto;
  padding: 16px 16px;
}
#sign-in-form h2, 
#create-account-form h2,
#forgotten-password-form h2,
#signed-in-not-authenticated h2, 
#signed-in-authenticated h2 {
  line-height:30px;
  background-position: left;
  background-size:35px;
  background-repeat:no-repeat;
  font-size: x-large;
  font-weight:lighter;
  color: #5F2D91;
}
#signed-in-not-authenticated {
  margin-top:100px;
}
#signed-in-authenticated h2 {
  padding-left: 50px;
  background-image: url('../files/authorised-tick.svg');
}
#sign-in-form .buttons,
#quickstart-sign-up {
  margin-top:20px;
}
#sign-in-form button, 
#signed-in-not-authenticated button, 
#authorise-button, 
#quickstart-sign-up {
  background-color:#0070D2;
  color:white;
  border: none;
  padding: 0 32px;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  display: inline-block;
  font-size: 16px;
  cursor:pointer;
}
#sign-in-form button:disabled, 
#signed-in-not-authenticated button:disabled, 
#authorise-button:disabled, 
#quickstart-sign-up:disabled:disabled {
  background-color:white;
  color:#0070D2;
  border: 1px solid #0070D2;
}
#forgotten-password-link{
  float:right;
  margin-top:20px;
}
#create-account-link, #forgotten-password-link, #sign-in-form-link {
  color:#0070D2;
  text-decoration:underline;
  cursor: pointer;
}
#sign-out {
  height:40px;
  padding: 10px;
  margin-right: 20px;
}
.user-creds input{
  height:35px;
  margin-top:10px;
}
#signed-in-authenticated{
  display:none;
}
#close-iframe {
  font-size:large;
  text-decoration: underline;
  cursor: pointer;
}
#undo {
  font-weight: bold;
  cursor: pointer;
  text-decoration: underline;
}
#snackbar {
  visibility: hidden; /* Hidden by default. Visible on click */
  width: 250px; /* Set a default minimum width */
  margin-left: -125px; /* Divide value of min-width by 2 */
  background-color: #5F2D91; /* Black background color */
  color: #fff; /* White text color */
  text-align: center; /* Centered text */
  border-radius: 2px; /* Rounded borders */
  padding: 16px; /* Padding */
  position: fixed; /* Sit on top of the screen */
  z-index: 1; /* Add a z-index if needed */
  left: 50%; /* Center the snackbar */
  bottom: 30px; /* 30px from the bottom */
}
#snackbar.show {
  visibility: visible; /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.5s;/*, fadeout 0.5s 2.5s;*/
  animation: fadein 0.5s;/*, fadeout 0.5s 2.5s;*/
}
#snackbar.hiding {
  visibility: visible; 
  -webkit-animation: fadeout 0.5s;
  animation: fadeout 0.5s;
}
#error-snackbar {
  visibility: hidden; /* Hidden by default. Visible on click */
  width: 250px; /* Set a default minimum width */
  margin-left: -125px; /* Divide value of min-width by 2 */
  background-color: red; /* Black background color */
  color: #fff; /* White text color */
  text-align: center; /* Centered text */
  border-radius: 2px; /* Rounded borders */
  padding: 16px; /* Padding */
  position: fixed; /* Sit on top of the screen */
  z-index: 1; /* Add a z-index if needed */
  left: 50%; /* Center the snackbar */
  bottom: 30px; /* 30px from the bottom */
}
#error-snackbar.show {
  visibility: visible; /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}
#throbber {
  display:none;
  position:fixed;
  height:100%;
  width:100%;
  background-color: rgba(106, 106, 106, 0.3);
  background-image: url('../files/throbber_13.gif');
  background-repeat:no-repeat;
  background-position: center;
  background-size:100px;
  z-index:99;
}
#overlay {
  background:rgba(0, 0, 0, 0.5);
  padding-top: 100px;
  width:100%;
  height:100%;
  position:fixed;
  overflow:scroll;
  z-index:99;
}
#overlay-body {
  margin: auto;
  padding: 20px;
  width: 60%;
  min-height:200px;
  background-color: white;
}
#overlay-close {
  float:right;
}
#overlay-close:hover {
  text-decoration:underline;
  cursor:pointer;
}
.boardlist li {
  padding:10px;
}
.boardlist li:hover {
  background-color: #CFC0DE;
  cursor:pointer;
}
#top-bar {
  height:40px;
  position:fixed;
  width:100%;
  top:0;
  background-color:white;
  z-index:2;
  box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.13);
}
#top-bar img#app-settings-icon,
#top-bar img#app-user-icon {
  float:right;
  margin-right:30px;
  margin-top:7px;
  width:25px;
  height:25px;
}
#top-bar #jotterbox {
  float:left;
  margin-left:30px;
  color:#5F2D91;
}
#top-bar #settings-menu {
  background-color: white;
  width: 150px;
  right: 50px;
  position: fixed;
  top: 50px;
  height: 100px;
  padding:2px;
  box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.03);
}
#top-bar #user-menu {
  background-color: white;
  width: 150px;
  right: 10px;
  position: fixed;
  top: 50px;
  height: 100px;
  padding:2px;
  box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.03);
}
#user-menu hr {
  margin: 5px 0;
}
#user-menu li, 
#settings-menu li,
#menu-list li {
  text-align: right;
  padding: 10px;
  cursor: pointer;
}
#user-menu li:hover,
#settings-menu li:hover,
#menu-list li:hover {
  background-color: #CFC0DE;
  }
#user-menu li.legal {
  padding: 0px 10px;
}
#user-menu li.legal:hover {
  background-color:white;
}
#jotterbox img {
  float:left;
  width:30px;
  height:30px;
  margin-top:5px;
}
#jotterbox span {
  float:left;
  margin: 10px 0 0 10px;
}
#header a {
  float:right;
}
#header {
  color:#54698D;
  width:100%;
  float:left;
  background-color: #f4f5f7;
  position: fixed;
  top: 40px;
  height:60px;
  z-index:1;
}
#header h1 {
  float:left;
  margin-top:15px;
  font-size: 26px;
}

#header label {
  font-weight:normal;
  text-align:center;
  width:100%;
  margin-top:0px;
}
div.grid-3 {
  width:33.3%;
  float:left;
}

#menu {
  float:left;
  height:30px;
  background-image: url('../files/Note%20Menu%20black.svg');
  background-repeat: no-repeat;
  background-position:bottom;
}

#menu:hover, #menu:focus {
  background-image: url('../files/Note%20Menu%20Hover.svg');
}
#menu-list{
  color:#5f2d91;
  display:none;
  width:300px;
  background-color:white;
  position: absolute;
  top: 50;
  left: 10px;
  height: 100px;
  padding:2px;
  box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.10);
}
#container {
  width:100%;
  float:left;
  background-color: #f4f5f7;
  position:relative;
  top:140px;
}
#addcard {
  position: fixed;
  top:50px;
  left: 50px;
  display: none;
  z-index:999;
}
#newcard-modal {
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  z-index:10;
}
#newcard {
  width: 50%;
  margin:40px auto;
  height:75vh;
  background-color: white;
  padding: 20px;
}
#newcard textarea {
  height:50vh;
}
.firepad {
  width: 100%;
  height: 450px;

}

/* Note: CodeMirror applies its own styles which can be customized in the same way.
   To apply a background to the entire editor, we need to also apply it to CodeMirror. */
.CodeMirror {

}
#menu, #starred {
  float:left;
  width:25%;
  margin-top:15px;
}
#layout {
  text-align:center;
  margin-top:4px;
}
.layout-options {
  width:100px;
  margin:0 auto;
  text-align:center;
  display: flex;
  justify-content: center;
  border:1px solid #D8DDE6;
  
}
.layout-options li {
  display:inline;
  float:left;
  cursor:pointer;
  width:50px;
  height:30px;
  background-position:center;
  background-repeat:no-repeat;
  background-color:white;
}
.layout-options li.active {
  background-color:#0070D2;
  color:white;
  background-image: url('../files/One%20page%20Selected.svg');
}
.layout-options li#singlepage {
  background-image: url('../files/One%20page.svg');
}
.layout-options li#singlepage.active {
  background-image: url('../files/One%20page%20Selected.svg');
}
.layout-options li#compare {
  background-image: url('../files/Compare.svg');
}
.layout-options li#compare.active {
  background-image: url('../files/Compare%20Selected.svg');
}
.filterlist {
  position:fixed;
  left:0;
  background-image: url('../files/Filter.svg');
  background-repeat: no-repeat;
  background-size: 30px 30px;
  height:30px;
  width:30px;
}

.filterlist li{
  display:none;
  cursor:pointer;
}
.filterlist li.active {
  background-color: red;
}
.filterlist.active {
  display: block;
  width:200px;
  height: auto;
  background-image:none;
  padding: 10px;
  z-indez:99;
}
.filterlist.active li {
  display:block;
  
}
#second .filterlist {
  position: fixed;
  left:50%;
}
#fixed-panel{
  display:block;
  padding:10px 0;
  width:100%;
  position:fixed;
  top:50px;
  z-index:1;
}
.panel-header {
  display: block;
  background-color: white;
  max-width: 900px;
  width: 100%;
  margin: 0px auto;
  height: 70px;
  box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.03);
  z-index:2;
}
.panel-header.split {
  width:45%;
  float: left;
  margin: 0 2.5%;
}
.panel-header-wrapper {
  width:90%;
  float:left;
}
.panel-header h2 {
  padding: 20px 20px 0 20px;
  margin-bottom:2px;
  color:#575757;
}
.panel-header h2:focus {
  outline:none;
}
.breadcrumb {
  padding-left:20px;
}
.breadcrumb span.breadcrumb-list {
  
}
.breadcrumb span.breadcrumb-item.active {
  color:#0070D2;
  cursor: pointer;
}



.breadcrumb span.breadcrumb-item.active:hover {
  text-decoration: underline;
}
.panel-options {
  float:left;
  height:100%;
  width:10%;
  background-image: url('../files/elipsis.svg');
  background-repeat:no-repeat;
  background-position: center;
  background-size:30px;
  cursor:pointer;
  position:relative;
}
.panel-options:hover, .panel-options:focus, .panel-options.active {
  background-image: url('../files/elipsis-hover.svg'); 
}
.panel-options.active {
  background-image: url('../files/elipsis-hover.svg');
}
.menu-elipsis {
  width:320px;
  display:none;
  
  background-color:white;
  border: 1px solid #D8D8D8;
  position: absolute;
  box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.03);
}
#menu-first{
  top:60px;
  left:-260px;
}
#menu-second{
  right:0px;
  top:60px;
}
.menu-elipsis li {
  height:40px;
  width:280px;
  padding-left: 40px;
  line-height: 40px;
  color: #16325C;
}
.menu-elipsis li:hover, .card-extra-details-menu li:hover {
  background-color:#CFC0DE;
}
.menu-elipsis li.active {
  background-image:url('../files/option-selected.svg');
  background-position: left;
  background-repeat:no-repeat;
}
.card-extra-details-menu {
  width:200px;
  display:none;
  background-color:white;
  border: 1px solid #D8D8D8;
  position: relative;
  right: 150px;
  top: 20px;
  box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.03);
}
.extra-details .card-extra-details-menu li {
  height:40px;
  width:100%;
  padding-left: 0px;
  line-height: 40px;
  color: #16325C;
}

.accordion{
  position: absolute;
  top:15px;
  left:25px;
  display:block;
  width: 20px;
  height:20px;
  cursor:pointer;
  padding:5px;
}
.accordion.closed{
  background-image: url(../files/accordion-right.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
}
.accordion.open{
  background-image: url(../files/accordion-down.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
}
.focus {
  position: absolute;
  top:15px;
  left:0px;
  display:block;
  width: 20px;
  height:20px;
  cursor:pointer;
  padding:5px;
}
.focus.hover {
  background-color:white;
  background-image: url(../files/Zoom%20in.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
}

.secondLayer .accordion,
.thirdLayer .accordion  {
  left:15px;
  top:10px;
  padding:5px;
}
.secondLayer .focus,
.thirdLayer .focus {
  left:-15px;
  top:10px;
  padding:5px;
}
.thirdLayer .focus {
  left:-15px;
}

/* Add styling to each card*/
.pageList {
  box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.03);
}
.pageList.card {
  box-shadow:none;
}
.pageList, #content {
  max-width: 900px;
  width: 100%;
  margin: 0px auto;
  display: block;
  background-color:white;
}
#content.authorise {
  max-width: none;
}
#first.pageList.split, #second.pageList.split {
  float:left;
  width:45%;
  margin:0 2.5%;
  overflow: scroll;
  height: 100vh;
  
}
.level1 {
  padding-left:40px;
  position: relative;
}
/*
.level1.open .list-wrapper,
.level2 .open .thirdLayerWrapper {
  border-left: 1px solid #D8D8D8;
}
*/
input[type="email"]:focus, input[type="text"]:focus, input[type="password"]:focus, input[type="search"]:focus, textarea:focus {
  box-shadow:none;
}
.level1 input {
  padding: 20px 20px 0px 15px;
  font-size: large;
}
.level1.list-wrapper{
  padding-left:0px;
}
.level2 input {
  font-size:medium;
  padding: 5px 20px 0px 15px;

}
.topLayer{
  position:relative;
  padding: 0px 0px 0px 40px;
}
#content {
  background-color: white;
  margin-top:14px;
}
#trello-popup{
  background-color: #fff;
}
#trello-popup #content{
  margin-top:0px;
}
#trello-popup #sign-in-form {
  box-shadow:none;
}
#trello-popup #signed-in-not-authenticated{
  margin-top:0px;
}
#trello-popup #authorise-button {
  width: 100%;
}
#trello-popup #sign-out {
  text-align: center;
  height:20px;
  margin-top:10px;
}
#trello-popup .auth-box-bottom-links{
  margin-top:20px;
}

.list{
  position:relative;
}
.cardWrapper,
.secondLayer {
  font-weight: bold;
  background-color:#fff;
  margin: 0px;
  padding: 20px 40px;
  padding-bottom:0px;
}
.secondLayer,
.thirdLayer {
  position:relative;
  padding: 10px 40px 0px 30px;
}

.cardWrapper.active,
.thirdLayer.active {
  background-image: url('../files/active.svg');
  background-repeat: repeat-y;
  background-size: 3px 10px;
}
.thirdLayer input {
  font-size:medium;
  padding-top:5px;
}
.pageList.card {
  background:none;
}
.pageList.card h3 {
  background-color: white;
  padding-bottom: 20px;
  margin-bottom:10px;
  box-shadow:0 0 3px 2px rgba(0, 0, 0, 0.03);
}
.pageList.card h3:hover {
  background-position: center left;
}
.pageList.card .cardWrapper {
  margin-bottom:10px;
  box-shadow:0 0 3px 2px rgba(0, 0, 0, 0.03);
}
.board-description {
  padding-left:50px;
}

.level1 input,
input.cardTitle,
input.secondLayerTitle,
input.thirdLayerTitle {
  box-shadow:none;
  border: none;
  width:90%;
  background-color: #fff;
  font-size:normal;
  font-weight:bold;
  padding-bottom: 12px;
  margin-bottom: 0px;
  }

  .cardDescription,
  .board-description,
  .thirdLayerDescription {
  font-weight:normal;
  white-space: pre-line;
  background-color: #fff;
  border:none;
  box-shadow:none;
  resize: none;
  padding:0 20px;
  width:95%;
  margin-bottom:0px;
}
.cardDescription:active,
.board-description:active {
  box-shadow:none;
}
.cardDescription:hover,
.board-description:hover {
  box-shadow:none;
  background-color:#fff;
}
.board-description {
  margin-bottom:0px;
}
.card-extra-details {
  float: left;
  height:20px;
  width:20px;
  background-image:url('../files/more_vert-24px.svg');
  background-repeat: no-repeat;
  background-size: 20px,20px;
}
.cardArchive {
  display:none;
  float: left;
  clear:left;
  x-index:99;
  height:20px;
  width:20px;
  background-image:url('../files/archive-24px.svg');
  background-repeat: no-repeat;
  background-size: 20px,20px;
}
.cardArchive:hover {
  cursor:pointer;
}
.thirdLayer.active .cardArchive {
  display:block;
}
a.newCard{
  display:block;
  height:30px;
  width:95%; 
  position: relative;
  left: -40px;
}
.cardMenu {
  float:right;
  width:5%;
}
.cardMenu li {
  padding: 5px;
  margin-bottom:20px;
  font-weight:400;
  color: #16325C;
}
.cardMenu li:hover {
  cursor: pointer;
}
.cardWrapper.active .cardMenu .cardArchive {
  display:block;
  color: #858585;
}


.cardWrapper.active a.newCard,
.thirdLayer.active a.newCard{
  background-color:white;
  background-image: url('../files/plus.svg'), url('../files/line.png');
  background-position: left, left;
  background-repeat: no-repeat, repeat-x;
  background-size: 40px, 8px;
}
.saving-throbber {
  float:right;
  padding-left:20px;
  display:none;
  font-weight: lighter;
  font-size: smaller;
}
.cardWrapper.active .saving-throbber {
  display:block;
}
.saving-throbber.active {
  background-image: url('../files/throbber_13.gif');
  background-repeat:no-repeat;
  background-position: left;
  background-size:15px;
  display:block;
}
.cardWrapper .checklists {
  margin:20px;
}
.checklists h4 {
  font-size: unset;
}
.checklists ul {
  margin-left: 20px;
}
.checklists li {
  font-weight: 400;
  width:100%;

}
.checklists li button {
  width:2%;
  height:20px;
  float:left;
  margin-right:5px;
}
.checklists li input {
  display:block;
  width:90%;
  box-shadow:none;
  border: none;
  background-color:#fff;
}
.checklists li.incomplete button {
  background-image: url('../files/todo-unchecked.svg');
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: 20px 20px;
}
.checklists li.complete button {
  background-image: url('../files/todo-checked.svg');
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: 20px 20px;
}
.checklists li.complete input {
  text-decoration: line-through;
  color: grey;
}



#page {
  width:90%;
  margin:0 5%;
  background-color:#fff;
  box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.03);
  float:left;
}
.settings-block{

  width:100%;
  padding: 16px 0px;
  float:left;
}
.settings-block {
  width:100%;
}
.settings-block input, 
.settings-block input:hover {
  background-color: #fff;
  border: none;
  box-shadow: none;
  width:80%;
  color: #172B4D;
  box-sizing: border-box;
  -webkit-appearance: none;
  border-radius: 3px;
  display: block;
  line-height: 20px;
  margin-bottom: 12px;
  padding: 8px 12px;
  transition-property: background-color,border-color,box-shadow;
  transition-duration: 85ms;
  transition-timing-function: ease;
}
.settings-block input:hover {
  border-bottom:2px solid black;
}
.settings-block input:focus {
  background-color: #FAFBFC;
  box-shadow: inset 0 0 0 2px #DFE1E6;
}
.settings-block img.save-icon {
  width: 20px;
  height:20px;
  float:left;
}
#setup-trello {
  height:100%;
  width:100%;
  position: fixed;
  background-color: rgba(106, 106, 106, 0.3);
  z-index:99;
}

#setup-trello-integration, #setup-trello-integration-complete {
  display:block;
  width:50%;
  
  margin: 0px auto 0 auto;
  background-color:white;
  padding:20px;
}
#setup-warning{
  color:red;
}

#trello-jotterbox-integration {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.button {
  position: relative;
  display: block;
  margin: 30px auto;
  padding: 10px;
  overflow: hidden;
  border-width: 0;
  outline: none;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .6);
  background-color: #0070D2;
  color: #fff;
  transition: background-color .3s;
  text-decoration: none;
}
.button:hover{
  color: #fff;
}
