@import url("https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");
html, body {
  height: 100%;
  margin: 0;
  padding: 0px;
  font-size: 18px;
  color: #fffffe;
  background: #29303b;
}

#frontImage img, #backImage img {
  width:100%;
}
h1, h2, h3, h4, h5, h6 {
  color: #fffffe;
  font-family: "PT Sans", sans-serif;
}

p {
  color: #fffffe;
  font-family: "PT Sans", sans-serif;
}

a {
  text-decoration: underline;
  color: #fffffe;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
a:hover {
  color: #06f0b2;
}

[class*=headline-], [class^=headline-] {
  font-family: "PT Sans", sans-serif;
  color: #fffffe;
  padding: 0;
  margin: 0;
}

.headline-lg {
  font-size: 3rem;
}

.headline-md {
  font-size: 2rem;
  font-weight: 600;
}

.headline-sm {
  font-size: 1.2rem;
}

.text-em {
  padding: 0;
  margin: 0;
  font-family: "PT Sans", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fffffe;
}
.text-em--text-align-centre {
  text-align: center;
}

#home {
  background-color: #29303b;
}

header {
  background-color: #29303b;
  padding: 1rem 0;
}
header .header-left {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
header .header-right {
  padding-right: 25px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

footer {
  bottom: 0;
  background-color: #1f242c;
  padding: 4rem 0 0 0;
  color: #fffffe;
}

.copyright {
  background-color: #14181d;
  padding: 0.5rem 0;
  margin-top: 2rem;
}
.copyright p {
  color: #f06400;
  text-align: center;
  padding: 0;
  margin: 0;
  line-height: 1;
}

.transcription-section {
  border-top: 1px solid #06f0b2;
  border-bottom: 1px solid #fffffe;
  border-bottom-style: double;
  height: 600px;
  z-index: 10;
  overflow: hidden;
}

.spreadsheet-section {
  background: #29303b;
  padding-top: 1rem;
  margin-top: 10px;
  z-index: 20;
}

.logo-container .custom-logo {
  height: 150px;
}

.footer-logo {
  height: 140px;
  width: auto;
  padding-bottom: 2rem;
}

.icon-label-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  color: #fffffe;
  margin-bottom: 1rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.icon-label-container i {
  color: #06f0b2;
  font-style: normal;
}
.icon-label-container:hover {
  color: #fffffe;
  text-decoration: none;
}
.icon-label-container:hover i {
  color: #05be8d;
  cursor: pointer;
}

.icon-large {
  font-family: FontAwesome;
  font-weight: 900;
  color: #fffffe;
  font-size: 3rem;
}

.icon-white {
  color: white;
}

.menu.menu-primary {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.menu.menu-footer {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.menu.menu-footer .menu-item {
  padding: 0 0 1rem 0;
}
.menu.menu-footer .menu-item .menu-item-content {
  color: #06f0b2;
  border-bottom: 1px solid transparent !important;
}
.menu.menu-footer .menu-item .menu-item-content:hover {
  border-bottom: 1px solid transparent !important;
  color: #f06400;
}

.menu {
  padding: 0;
  margin: 0;
}
.menu .menu-item {
  list-style: none;
}
.menu .menu-item .menu-item-content {
  padding: 1rem;
  color: #fffffe;
  text-decoration: none;
  font-family: "PT Sans", sans-serif;
  font-size: 1.2rem;
  border-bottom: 1px solid transparent;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.menu .menu-item .menu-item-content:hover {
  color: #06f0b2;
  border-bottom: 1px solid #06f0b2;
}

label {
  font-weight: 700;
}

input[type=text], input[type=date], input[type=email] {
  padding: 0.5rem 1rem;
  background-color: #fffffe;
  color: #29303b;
  border: 1px solid #c8c8c8;
  border-radius: 2px;
  width: 320px;
}

textarea {
  padding: 0.5rem 1rem;
  background-color: #fffffe;
  color: #29303b;
  border: 1px solid #c8c8c8;
  border-radius: 2px;
  width: 600px;
  height: 300px;
}

select {
  padding: 0.5rem 1rem;
  background-color: #fffffe;
  color: #29303b;
  border: 1px solid #c8c8c8;
  border-radius: 2px;
  width: 320px;
}

.page-banner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

#editableTable {
  width: 100%;
  height: 100%;
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
}

#editableTable td, #editableTable th {
  border: 0px solid #ddd;
  padding: 8px;
}

#editableTable tr:nth-child(even) {
  background-color: #f2f2f2;
}

#editableTable tr:hover {
  background-color: #ddd;
}

#editableTable th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #04AA6D;
  color: white;
}

#scaleUpButton {
  border: 0px solid #06f0b2;
}



.button-display {
  display: inline-block;
  margin: 0.5rem;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  font-size: 1.2rem;
  line-height: 1;
  text-decoration: none;
  border: 2px solid #fffffe;
  border-radius: 5px;
  font-weight: 700;
  color: #212529;
  text-align: center;
  background-color: #dee2e6;
}
.button-display:hover {
  color: #fffffe;
  background-color: #1f242c;
}

.button-lg {
  padding: 0.7rem 1rem;
  font-size: 1.2rem;
  line-height: 1;
  text-decoration: none;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  margin-bottom: 1rem;
  min-width: 120px;
  text-align: center;
}

.button-md {
  padding: 0.7rem 1rem;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  margin: 0;
  text-align: center;
}

.button-primary {
  background-color: #06f0b2;
  color: #29303b;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.button-primary:hover {
  color: #29303b;
  background-color: #05be8d;
}

.button-secondary {
  background-color: #e5006e;
  color: #29303b;
}
.button-secondary:hover {
  color: #29303b;
  background-color: #e3006a;
}

.button-trans {
  background-color: transparent;
  color: #fffffe;
  border: 2px solid #fffffe;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.button-trans:hover {
  color: #fffffe;
  background-color: #1f242c;
}

.card-container {
  position: relative;
  text-decoration: none !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border-radius: 10px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin: 2rem 2rem 1rem 2rem;
  padding: 2rem;
  height: 350px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.card-container:hover {
 // opacity: 0.7;
}
.card-container--card-dynamic {
  border-bottom: none;
  height: 350px;
}
.card-container--card-dynamic--card-primary .progress-bar {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #048c68;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  height: 30px;
}
.card-container--card-dynamic--card-primary .progress-bar .firstPage {
  display: block;
  position: absolute;
  height: 100%;
  width: 63%;
  background-color: #06f0b2;
}
.card-container--card-dynamic--card-secondary .progress-bar {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #8a3a00;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  height: 30px;
}
.card-container--card-dynamic--card-secondary .progress-bar .firstPage {
  display: block;
  position: absolute;
  height: 100%;
  width: 12%;
  background-color: #f06400;
}
.card-container--card-dynamic--card-tertiary .progress-bar {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #1d358a;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  height: 30px;
}
.card-container--card-dynamic--card-tertiary .progress-bar .firstPage {
  display: block;
  position: absolute;
  height: 100%;
  width: 82%;
  background-color: #385ad5;
}
.card-container--card-dynamic--card-quaternary .progress-bar {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #0f7180;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  height: 30px;
}
.card-container--card-dynamic--card-quaternary .progress-bar .firstPage {
  display: block;
  position: absolute;
  height: 100%;
  width: 42%;
  background-color: #1ac2db;
}

.progress {
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  margin: 0;
  color: #fffffe;
  background-color: transparent;
  font-size: 1.4rem;
}

#canvas {
  border: 0px solid greenyellow;
  width: 100%;
  background: #29303b;
}

#controls {
  position: absolute;
  z-index: 10;
  top: 160px;
  right: 10px;
  border: 2px solid #f06400;
  padding: 2rem;
  font-family: "PT Sans", sans-serif;
  background-color: #333c4a;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 180px;
}

#spreadsheet {
  width: 100%;
  height: 100% !important;
  color: #29303b;
}
#spreadsheet .jexcel_content {
  width: 100%;
}
#spreadsheet .jexcel_content table {
  width: 100%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#draggable-canvas {
  border-bottom: 4px dotted solid double #06f0b2;
  /* padding:10px; */
  width: 100%;
  /* margin-left:50px; */
  /* margin-top:50px; */
  /* top:50px; */
  /*margin-left:150px;
  margin-top:150px;*/
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.menu-project {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 0.4rem 1rem 0.8rem 1rem;
  margin: 0 0 2rem 0;
  width: 100%;
  background-color: #333c4a;
  border-radius: 6px;
}
.menu-project .menu-item {
  padding: 0;
  margin: 0.3rem 1rem;
}
.menu-project .menu-item .menu-item-content {
  font-size: 18px;
  padding: 0.4rem 0;
  color: #fffffe;
  border-bottom: 1px solid transparent !important;
}
.menu-project .menu-item .menu-item-content:hover {
  border-bottom: 1px solid transparent !important;
  color: #06f0b2;
}
.menu-project .menu-item .menu-item-content.selected {
  border-bottom: 2px solid #fffffe !important;
}

.project-card-row {
  background-color: #3e4859;
  border-radius: 10px;
  margin: 2rem 0;

}

.project-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 1rem;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width:23%;
}
.project-card-image-container:hover {
  //opacity: 0.6;
  outline: 8px solid currentColor;
}
.project-card.assigned .project-card-image-container {
  border: 3px solid #06f0b2;
}
.project-card.notFirstPage .project-card-image-container {
  border: 3px solid #ddd;
  background-color: #777;
}
.project-card.firstPage .project-card-image-container {
  border: 12px solid #e5006e;
  background-color: #444;
}
.project-card.fb-received .project-card-image-container {
  border: 3px solid #d32631;
}
/*.project-card .project-card-image-container {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
  width: 100%;
 // height: 150px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 3px;
}
*/
.transcription-image-container {
  height: calc(100vh - 100px);
  overflow: scroll;
  padding: 2rem;
}
.transcription-image-container .transcription-image {
  width: 100%;
}

.transcription-input-fields, .input-fields {
  height: calc(100vh - 100px);
  overflow: scroll;
  color: #fffffe;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 2rem;
}
.transcription-input-fields__input-group--horizontal, .input-fields__input-group--horizontal {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin: 0 0 1rem 0;
}
.transcription-input-fields__input-group--horizontal i, .input-fields__input-group--horizontal i {
  font-size: 1.8rem !important;
  color: #06f0b2;
}
.transcription-input-fields__input-group--vertical, .input-fields__input-group--vertical {
  display: flex;
  flex-direction: column;
  margin: 0 0 1rem 0;
}
.transcription-input-fields__input-group--vertical i, .input-fields__input-group--vertical i {
  font-size: 1.8rem !important;
  color: #06f0b2;
}
.transcription-input-fields__input-item, .input-fields__input-item {
  padding: 2rem 0 0 0;
  margin-bottom: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.transcription-input-fields__input-item__label, .input-fields__input-item__label {
  padding: 0 0 1rem 0;
  color: #06f0b2;
}
.transcription-input-fields__input-item__text-field, .input-fields__input-item__text-field {
  margin: 0 1rem 0 0;
}
.transcription-input-fields__input-item__date-field, .input-fields__input-item__date-field {
  margin: 0 1rem 0 0;
}
.transcription-input-fields__input-item__textarea, .input-fields__input-item__textarea {
  margin: 0 1rem 0 0;
}
.transcription-input-fields__input-item__instructions, .input-fields__input-item__instructions {
  color: #fffffe;
}

.--margin-lg {
  margin: 4rem 0 2rem 0;
}

.--margin-md {
  margin: 2.5rem 0 2.5rem 0;
}

.--margin-bottom-lg {
  margin-bottom: 4rem;
}

.--margin-bottom-md {
  margin-bottom: 2.5rem;
}

.--margin-bottom-sm {
  margin-bottom: 1.2rem;
}

.--margin-top-lg {
  margin: 4rem 0 0 0;
}

.--margin-top-md {
  margin: 2.5rem 0 0 0;
}

.--margin-top-sm {
  margin: 1.2rem 0 0 0;
}

.--text-align-centre {
  text-align: center;
}

.--flex-col-center-h {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.--no-border {
  border: none !important;
}

.vertical-seperator {
  display: block;
  border: 1px solid red;
}
.vertical-seperator--lg {
  height: 50px;
}
.vertical-seperator--md {
  height: 30px;
}
.vertical-seperator--sm {
  height: 15px;
}

.thmWrap {
  display: flex;
  gap: 10px; /* optional spacing */
}

.thmImg {
  width: 140px;
 
 // background-color: lightgray; /* for visibility */
}

.thmImg img { width:150px; }
/*# sourceMappingURL=style.css.map */

/*radio button for split page */
.rotation-type {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}

.rotation-type input[type="radio"] {
  display: none; /* hide the default radio dots */
}

.rotation-type label {
  flex: 1;
  text-align: center;
  padding: 0.75rem 0;
  font-size: 1em;
  font-weight: 500;
  cursor: pointer;
  border: 2px solid #ccc;
  border-radius: 6px;
  background: #f9f9f9;
  color: #333;
  transition: all 0.2s ease;
  user-select: none;
}

.rotation-type label:hover {
  border-color: #999; /* subtle hover feedback */
}

.rotation-type input[type="radio"]:checked + label {
  border-color: #e5006e; /* client brand pink border */
  color: #000;           /* keep text readable */
  background: #fff;      /* keep background neutral */
}
/* Container for image + caption + radios */
.project-card .project-card-image-container {
  position: relative;
  width: 100%;
  height: 260px;  
  background: #fff;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
  transition: all 0.2s ease;

  /* THIS is the key bit */
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;  /* image | caption */
  justify-items: center;
}
/* Highlight when firstPage */
.project-card.firstPage .project-card-image-container {
  border-color: #e5006e;
  box-shadow: 0 0 0 2px rgba(229,0,110,.15);
}

.project-card .project-card-image-container .doc-image {
  grid-row: 1;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.project-card .project-card-image-container .text-em {
  grid-row: 2;
  margin-top: .25rem;
  text-align: center;
}

/* Radio controls row */
.project-card .project-card-image-container .rotation-type {
  grid-row: 3;
  width: 100%;
  margin-top: .35rem;
  display: flex;
  gap: .5rem;
  justify-content: space-between;
}