* {
  font-family: Montserrat;
}

.topBar {
  margin-top: 15px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  width: 100%;
  align-items: center;
}
.topBar .topBar_logo {
  width: 200px;
}
.topBar .topBar_logo img {
  height: 103px;
}
.topBar .topBar__right {
  flex-grow: 1;
}
.topBar .topBar__right .topBar__right_title {
  font-size: 22px;
  font-weight: 700;
  margin: 0px;
  padding: 0px;
}
.topBar .topBar__right .topBar__right_links {
  display: flex;
  gap: 15px;
  margin: 0px;
  padding: 0px;
}
@media only screen and (max-width: 600px) {
  .topBar .topBar__right .topBar__right_links {
    flex-direction: column;
  }
}
.topBar .topBar__right .topBar__right_links li {
  list-style: none;
  display: block;
}
.topBar .topBar__right .topBar__right_links li a {
  color: #000;
  font-size: 16px;
  font-weight: 300;
  text-decoration: none;
}

main > .container {
  padding: 30px 15px 20px;
}

.footer {
  background-color: #f5f5f5;
  font-size: 0.9em;
  height: 60px;
}

.footer > .container {
  padding-right: 15px;
  padding-left: 15px;
}

.not-set {
  color: #c55;
  font-style: italic;
}

/* add sorting icons to gridview sort links */
a.asc:after, a.desc:after {
  content: "";
  left: 3px;
  display: inline-block;
  width: 0;
  height: 0;
  border: solid 5px transparent;
  margin: 4px 4px 2px 4px;
  background: transparent;
}

a.asc:after {
  border-bottom: solid 7px #212529;
  border-top-width: 0;
}

a.desc:after {
  border-top: solid 7px #212529;
  border-bottom-width: 0;
}

.grid-view th {
  white-space: nowrap;
}

.hint-block {
  display: block;
  margin-top: 5px;
  color: #999;
}

.error-summary {
  color: #a94442;
  background: #fdf7f7;
  border-left: 3px solid #eed3d7;
  padding: 10px 20px;
  margin: 0 0 15px 0;
}

/* align the logout "link" (button in form) of the navbar */
.nav li > form > button.logout {
  padding-top: 7px;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 767px) {
  .nav li > form > button.logout {
    display: block;
    text-align: left;
    width: 100%;
    padding: 10px 0;
  }
}
.nav > li > form > button.logout:focus,
.nav > li > form > button.logout:hover {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
}

.nav > li > form > button.logout:focus {
  outline: none;
}

.form-group {
  margin-bottom: 1rem;
}

.pagination {
  gap: 15px;
}

.form-control {
  border-radius: 21px;
  border: 1px solid #213A53;
  background: #fff;
  height: 35px;
  flex-shrink: 0;
}

.survey-search {
  margin: 60px 0;
  background: #E9E9E9;
  padding: 20px 0;
}
.survey-search .survey-search-title {
  color: #000;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 27px;
}

.surveyRow {
  display: flex;
  margin-bottom: 20px;
  width: 100%;
  align-items: center;
  gap: 10px;
}
.surveyRow .surveyRow__field {
  flex-basis: auto;
  width: 100%;
  color: #000000;
}
.surveyRow .surveyRow__field p {
  font-family: Montserrat;
  font-size: 16px;
  line-height: 19px;
}
.surveyRow .surveyRow__field.surveyRow__field-withNumber {
  flex-basis: 45px;
}
.surveyRow .surveyRow__field.surveyRow__field-withNumber p {
  font-size: 18px;
}
.surveyRow .surveyRow__field.surveyRow__field-withDate {
  flex-basis: 300px;
}
.surveyRow .surveyRow__field.surveyRow__field-withButtons {
  flex-basis: 245px;
}
.surveyRow .surveyRow__field .surveyRow__field-label {
  font-size: 12px;
  margin-bottom: 3px;
  color: #B4B4B4;
  font-weight: 400;
  line-height: 16px;
}

.btn-brand {
  display: inline-block;
  border-radius: 21px;
  text-align: center;
  border: 1px solid #213A53;
  background: #213A53;
  color: #FFF;
  height: 35px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 35px;
  text-decoration: none;
  padding: 0px 30px;
}
.btn-brand.btn-wide {
  width: 100%;
}
.btn-brand.btn-danger {
  background-color: #d51515;
  border: 1px solid #770202;
}
.btn-brand.btn-disabled {
  background-color: #D9D9D9;
  border: 1px solid #D9D9D9;
  color: #000000;
}

.brand-color {
  color: #000;
}

.ml-6 {
  margin-left: 30px;
}

.text-right {
  text-align: right;
}

.survey__descriptionBlock {
  background: #E9E9E9;
  padding: 25px 0;
}
.survey__descriptionBlock .survey__descriptionBlock-title {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 25px;
}
.survey__descriptionBlock .survey__descriptionBlock__info {
  display: flex;
  gap: 60px;
  align-items: center;
}
@media only screen and (max-width: 600px) {
  .survey__descriptionBlock .survey__descriptionBlock__info {
    flex-direction: column;
    align-items: flex-start;
  }
}
.survey__descriptionBlock .survey__descriptionBlock__info .survey__descriptionBlock__info__field p {
  margin: 0px;
  padding: 0px;
}
.survey__descriptionBlock .survey__descriptionBlock__info .survey__descriptionBlock__info__field .survey__descriptionBlock__info__field-legend {
  color: #B4B4B4;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
}
.survey__descriptionBlock .survey__descriptionBlock__info .survey__descriptionBlock__info__field .survey__descriptionBlock__info__field-name {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  max-width: 350px;
}
.survey__descriptionBlock .survey__descriptionBlock__info .survey__descriptionBlock__info__field .survey__descriptionBlock__info__field-date {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}

.ml-auto {
  margin-left: auto;
}

.mb-3 {
  margin-bottom: 10px;
}

.employee-survey {
  margin-bottom: 20px;
}
.employee-survey.employeeSurvey_withRaters {
  padding: 30px 0;
}
.employee-survey.employeeSurvey__withoutRaters {
  margin-bottom: 0px;
}
.employee-survey .employeeSurvey__row {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 15px;
}
@media only screen and (max-width: 600px) {
  .employee-survey .employeeSurvey__row {
    flex-direction: column;
  }
  .employee-survey .employeeSurvey__row .employeeSurvey__row__employee {
    border-right: none !important;
  }
}
.employee-survey .employeeSurvey__row .employeeSurvey__row-title {
  color: #213A53;
  font-size: 18px;
  font-weight: 700;
}
.employee-survey .employeeSurvey__row .employeeSurvey__row-label {
  color: #B4B4B4;
  padding: 0px;
  margin: 0px;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
}
.employee-survey .employeeSurvey__row .employeeSurvey__row__employee.employeeSurvey__row_withRaters {
  border-right: 1px solid #9f9e9e;
  padding-right: 15px;
  width: 350px;
  display: flex;
  flex-direction: column;
}
.employee-survey .employeeSurvey__row .employeeSurvey__row__employee.employeeSurvey__row_withRaters .employeeSurvey__row-report-block {
  margin-top: 30px;
}
.employee-survey .employeeSurvey__row .employeeSurvey__row__employee.employeeSurvey__row_withoutRaters {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
}
.employee-survey .employeeSurvey__row .employeeSurvey__row__employee.employeeSurvey__row_withoutRaters .employeeSurvey__row__employee-info {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.employee-survey .employeeSurvey__row .employeeSurvey__row__employee.employeeSurvey__row_withoutRaters .employeeSurvey__row__employee-info .employeeSurvey__row__employee__info-name {
  width: 300px;
}
.employee-survey .employeeSurvey__row .employeeSurvey__row__employee.employeeSurvey__row_withoutRaters .employeeSurvey__row__employee-info .employeeSurvey__row__employee__info-jobTitle {
  width: 300px;
}
.employee-survey .employeeSurvey__row .employeeSurvey__row__employee.employeeSurvey__row_withoutRaters .employeeSurvey__row__employee-info .employeeSurvey__row-title {
  display: none;
}
.employee-survey .employeeSurvey__row .employeeSurvey__row__employee.employeeSurvey__row_withoutRaters .employeeSurvey__row-report-block {
  margin-left: auto;
}
.employee-survey .employeeSurvey__row .employeeSurvey__row__employee .employeeSurvey__row-editButtons {
  margin-top: 15px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.employee-survey .employeeSurvey__row .employeeSurvey__row__employee .employeeSurvey__row-editButtons a {
  display: block;
  color: #000;
  font-size: 16px;
  font-weight: 400;
}
.employee-survey .employeeSurvey__row .employeeSurvey__row__employee .employeeSurvey__row__employee-form {
  display: none;
}
.employee-survey .employeeSurvey__row .employeeSurvey__row__employee .employeeSurvey__row__employee-form .control-label {
  display: block;
  color: #B4B4B4;
  padding: 0px;
  margin: 0px;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
}
.employee-survey .employeeSurvey__row .employeeSurvey__row__employee .employeeSurvey__row__employee-form .form-group {
  display: block;
}
.employee-survey .employeeSurvey__row .employeeSurvey__row__raters {
  flex-grow: 1;
}
.employee-survey .employeeSurvey__row .employeeSurvey__row__raters th {
  color: #B4B4B4;
  font-size: 12px;
  font-weight: 400;
}
.employee-survey .employeeSurvey__row .employeeSurvey__row__raters tbody em {
  color: #B4B4B4;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
}
.employee-survey .employeeSurvey__row .employeeSurvey__row__raters .employeeSurvey__row__raters-buttons {
  text-align: center;
  margin: 30px 0;
}
.employee-survey .employeeSurvey__row .employeeSurvey__row__raters .employeeSurvey__row__raters-buttons a {
  margin-bottom: 5px;
}
.employee-survey .employeeSurvey__row .employeeSurvey__row__raters .employeeSurvey__row__raters-form {
  display: none;
  transition: opacity 1s ease-in;
  opacity: 0;
}
.employee-survey .employeeSurvey__row .employeeSurvey__row__raters .employeeSurvey__row__raters-form.open {
  opacity: 1;
  display: block;
}
.employee-survey .employeeSurvey__row .employeeSurvey__row__raters .employeeSurvey__row__raters-form label {
  display: block;
}

.survey__search {
  background: #E9E9E9;
  padding: 30px 0;
  margin-top: 30px;
}
.survey__search .survey__search_title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  line-height: 30px;
}

.survey-form {
  background: #E9E9E9;
  padding: 30px 0;
}
.survey-form .survey-form-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  line-height: 30px;
}

.alert {
  position: fixed;
  top: 10px;
  right: 10px;
}

.js-copy-link {
  width: 340px;
}

/*# sourceMappingURL=site.css.map */
