﻿.company-logo {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 40px;
}

.company-logo img {
  height: 80px;
}

.app-logo img {
  max-height: 40px;
  margin-left: 30px;
}

.app-campaign-name {
  text-align: center;
  flex-grow: 1;
  overflow: hidden;
}

.login-form, .forgot-password-form, .reset-password-form {
  width: 40vw;
  max-width: 500px;
  margin: 0px auto 0pc auto;
}

.login-form > div, .forgot-password-form > div {
  margin-bottom: 10px;
}

.login-button button, .forgot-password-form button {
  width: 100%;
}

.disclaimer-text, .forgot-password {
  font-weight: bold;
  font-size: 0.9em;
  text-align: center;
}

.approvals-required {
  padding: 15px;
  background-color: #ffb620;
  color: #333;
  border: 1px solid #666;
  margin-bottom: 15px;
  cursor: pointer;
}

.assessment {
  cursor: pointer;
}

.approved {
  color: green;
}

.rejected {
  color: red;
}

.waiting {
  color: #ffb620;
}

.bottom-back-button-container {
  text-align: center;
  margin-top: 5px;
  margin-bottom: 5px;
  height: 40px;
  box-sizing: border-box;
  padding: 5px;
}
.bottom-back-button-container button {
  width: 25%;
}

.app-container {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
}
.app-container .panel-instr {
  width: 60vw;
  height: 80vh;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000000;
  font-size: 1.4vw;
  /*display: flex;*/
  display: none;
  flex-direction: column;
}
.app-container .panel-instr .instr-text {
  flex-grow: 1;
}

.app-background {
  position: fixed;
  display: none;
  z-index: 999999;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  cursor: pointer;
}

.rhs-buttons {
  margin-left: auto;
  display: flex;
  gap: 30px;
}
.rhs-buttons .approvals-required {
  margin-right: 40px;
  color: #ffb620;
  cursor: pointer;
}

.app-menu-button, .app-help-button {
  cursor: pointer;
}

.app-back {
  cursor: pointer;
}

.app-menu {
  position: absolute;
  display: none;
  top: 0px;
  right: 0px;
  bottom: 0px;
  width: 250px;
  box-shadow: -7px 0px 10px -1px rgb(168, 168, 168);
  background-color: #eaeaea;
  z-index: 1000000;
  padding-top: 20px;
}
.app-menu ul {
  list-style: none;
  font-size: 20px;
  padding: 0px;
}
.app-menu ul li {
  padding: 10px 20px;
  cursor: pointer;
}
.app-menu ul li:hover {
  background-color: #ccc;
}
.app-menu ul i {
  margin-right: 10px;
}

.progress-indicator {
  display: flex;
  height: 5px;
  width: 80vw;
  margin-left: auto;
  margin-right: auto;
}
.progress-indicator div {
  flex-grow: 1;
}
.progress-indicator div.answered {
  background-color: green;
}
.progress-indicator div.not-answered {
  background-color: red;
}
.progress-indicator div.question-number {
  display: none;
}

.assessment-360 {
  display: flex;
  justify-content: space-between;
  padding: 15px;
}

.assessment-360 > div h1 {
  font-size: 1.3em;
}

.assessor-status-table table {
  width: 100%;
}
.assessor-status-table th {
  font-size: 12px;
}
.assessor-status-table td.type-name {
  font-weight: bold;
}
.assessor-status-table td.num-col, .assessor-status-table th.num-col {
  text-align: center;
}
.assessor-status-table .td.complete-status {
  color: #1e6f1e;
}

.app-pop {
  display: none;
  position: fixed;
  top: 100px;
  border-radius: 0px;
  background: #f5f5f5;
  border: 1px solid #cecece;
  -webkit-box-shadow: 2px 2px 3px -1px rgb(0, 0, 0);
  -moz-box-shadow: 2px 2px 3px -1px rgb(0, 0, 0);
  box-shadow: 2px 2px 3px -1px rgb(0, 0, 0);
  padding: 15px;
  font-size: 14px;
  z-index: 1000000;
  left: 50%;
  transform: translate(-50%, 0);
}

.app-pop-back {
  position: fixed;
  display: none;
  background: rgba(0, 0, 0, 0.3);
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  cursor: pointer;
  z-index: 999999;
  backdrop-filter: blur(8px);
}

.entry-form {
  display: grid;
  grid-template-columns: 40% 60%;
  row-gap: 10px;
}

div.assessors table {
  width: 100%;
}
div.assessors table td {
  padding: 5px;
  white-space: nowrap;
}
div.assessors table td.name {
  padding-left: 30px;
}
div.assessors table td.date-col {
  font-size: 1em;
}
div.assessors table td.date-col i {
  margin-right: 5px;
}
div.assessors table .assessor-type {
  font-weight: bold;
}
div.assessors table .edit-button {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
}
div.assessors table .spacer td {
  height: 20px;
}

tr.assessor td i {
  font-size: 1.2em;
}
tr.assessor td.approval-status, tr.assessor td.date-col, tr.assessor td.assessor-status, tr.assessor td.delete-assessor, tr.assessor td.edit-col {
  text-align: center;
}
tr.assessor td.delete-assessor {
  height: 24px;
  width: 24px;
  color: red;
  padding-top: 8px;
}
tr.assessor td.assessor-status div {
  height: 24px;
  width: 24px;
}
tr.assessor td.assessor-status div::after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  height: 24px;
  width: 24px;
}
tr.assessor td.assessor-status div.stat-in-progress::after {
  background-image: url("../images/stat-in-progress.png");
}
tr.assessor td.assessor-status div.stat-complete::after {
  background-image: url("../images/stat-complete.png");
}
tr.assessor td.assessor-status div.stat-not-started::after {
  background-image: url("../images/notstarted.png");
}

@media only screen and (max-width: 800px) {
  .app-container .panel-instr {
    width: 90vw;
    font-size: 4vw;
  }
  div.assessors table td.email-col {
    display: none;
  }
}
.approve-assessors-table input[type=radio] {
  transform: scale(1.2);
}
.approve-assessors-table td {
  padding: 5px;
  height: 43px;
}
.approve-assessors-table .name-col {
  width: 280px;
}
.approve-assessors-table .radio-col {
  width: 80px;
}
