﻿/*
<!--
	example for following two classes
	both the red and green columns should be the same height with their text verticall aligned middle
	under md they will be underneath one-another just as normal bootstrap cols
	Note: this only works for one row, i.e. your col-X-Y must only add up to 12
-->
<div class="equal-height-md vertical-align-md">
	<div class="row">
		<div class="col-md-8" style="background:red">
			[long text here]
		</div>
		<div class="col-md-4" style="background:green">
			[short text here]
		</div>
	</div>
</div>
*/
.equal-height-xs {
  margin: 0 -15px;
}
.equal-height-xs > .row {
  margin: 0;
  display: table;
  table-layout: fixed;
  height: 100%;
  width: 100%;
}
.equal-height-xs > .row:before,
.equal-height-xs > .row:after {
  content: none;
  display: none;
}
.equal-height-xs > .row > [class*="col-"] {
  display: table-cell;
  float: none;
  height: 100%;
  vertical-align: top;
}
@media (min-width: 768px) {
  .equal-height-sm {
    margin: 0 -15px;
  }
  .equal-height-sm > .row {
    margin: 0;
    display: table;
    table-layout: fixed;
    height: 100%;
    width: 100%;
  }
  .equal-height-sm > .row:before,
  .equal-height-sm > .row:after {
    content: none;
    display: none;
  }
  .equal-height-sm > .row > [class*="col-"] {
    display: table-cell;
    float: none;
    height: 100%;
    vertical-align: top;
  }
}
@media (min-width: 992px) {
  .equal-height-md {
    margin: 0 -15px;
  }
  .equal-height-md > .row {
    margin: 0;
    display: table;
    table-layout: fixed;
    height: 100%;
    width: 100%;
  }
  .equal-height-md > .row:before,
  .equal-height-md > .row:after {
    content: none;
    display: none;
  }
  .equal-height-md > .row > [class*="col-"] {
    display: table-cell;
    float: none;
    height: 100%;
    vertical-align: top;
  }
}
@media (min-width: 1200px) {
  .equal-height-lg {
    margin: 0 -15px;
  }
  .equal-height-lg > .row {
    margin: 0;
    display: table;
    table-layout: fixed;
    height: 100%;
    width: 100%;
  }
  .equal-height-lg > .row:before,
  .equal-height-lg > .row:after {
    content: none;
    display: none;
  }
  .equal-height-lg > .row > [class*="col-"] {
    display: table-cell;
    float: none;
    height: 100%;
    vertical-align: top;
  }
}
.vertical-align-xs > .row > [class*="col-"] {
  vertical-align: middle;
}
@media (min-width: 768px) {
  .vertical-align-sm > .row > [class*="col-"] {
    vertical-align: middle;
  }
}
@media (min-width: 992px) {
  .vertical-align-md > .row > [class*="col-"] {
    vertical-align: middle;
  }
}
@media (min-width: 1200px) {
  .vertical-align-lg > .row > [class*="col-"] {
    vertical-align: middle;
  }
}
/* No Results */
body #main-content .section.table-search .no-result {
  display: table-row;
}
/* Training Diary */
.training_diary .tab-content {
  padding-top: 3.5rem;
}
ul.key {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}
ul.key li {
  display: inline-block;
  margin-right: 1.5rem;
}
ul.key li:before {
  content: '';
  width: 10px;
  height: 10px;
  margin-right: 10px;
  background: #7373b5;
  display: inline-block;
  border-radius: 50%;
}
ul.key li.pastvisit:before {
  background: #fda975;
}
ul.key li.nextvisit:before {
  background: #ba4c96;
}
ul.key li.progressreview:before {
  background: #52ba4c;
}
ul.key li.functionalskills:before {
  background: #ff5400;
}
.diary-list {
  list-style: none;
  margin: 0 0 40px 0;
  padding: 0;
}
.diary-list > li {
  background: white;
  box-shadow: 0 0 7px rgba(202, 202, 202, 0.2);
  padding: 1.5rem 2rem;
  border-radius: 6px;
  margin-bottom: 10px;
  display: inline-block;
  width: 100%;
}
.diary-list .lozenge {
  display: inline-block;
  margin: 0;
}
.diary-views {
  border: 0;
  float: right;
  /*margin-left: 10px;*/
}
.diary-views li {
  margin: 0;
}
.diary-views li:not(:last-child) {
  margin-right: 1rem;
}
.diary-views li a {
  background: white;
  color: #27326f;
  margin: 0;
  padding: 1rem;
  border: 1px solid #ECEDF2;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}
.diary-views li a:focus,
.diary-views li a:hover {
  background-color: white;
  border-color: #ba4c96;
  color: #27326f;
}
.diary-views li.active a,
.diary-views li.active a:focus,
.diary-views li.active a:hover {
  color: white;
  cursor: default;
  background-color: #27326f;
  border-color: #27326f;
}
/*.diary-views li:first-child a {
    border-radius: 50% 0 0 50%;
}

.diary-views li:last-child a {
    border-radius: 0 50% 50% 0;
}*/
/* Events */
ul.key li.event:before {
  background: #72ebca;
}
.fc-event {
  background: #72ebca;
  cursor: pointer;
}
/* Bootstrap Alerts */
body #main-content .alert-dismissible .close {
  width: 1rem;
  height: 1rem;
}
body #main-content .alert-dismissible .close:before,
body #main-content .alert-dismissible .close:after {
  height: 1rem;
  background: #aaa;
}
/* Sections */
.section-intro {
  margin-bottom: 40px;
}
.section.training_diary {
  padding: 4rem 0;
}
/* Purple Table */
table.table-purple {
  text-align: left;
  border-radius: 6px 6px 0 0;
  border-spacing: 0 3px;
  border-collapse: separate;
  border: none;
}
table.table-purple thead {
  background: #7373b5;
  color: white;
  text-transform: uppercase;
  text-align: left;
}
table.table-purple thead th {
  text-align: left;
  padding: 2rem;
  border: none;
  vertical-align: top;
}
table.table-purple thead th:first-child {
  border-radius: 6px 0 0 0;
}
table.table-purple thead th:last-child {
  border-radius: 0 6px 0 0;
}
table.table-purple tbody tr {
  background: white;
  border: solid 1px #ECEDF2;
  margin-bottom: 3px;
}
table.table-purple tbody tr.complete {
  background: #f9f7fb;
}
table.table-purple tbody tr td {
  border: none;
  vertical-align: middle;
  border-bottom: solid 1px #ECEDF2;
  border-top: solid 1px #ECEDF2;
  padding: 2rem;
}
table.table-purple tbody tr td:first-child {
  border-left: solid 1px #ECEDF2;
}
table.table-purple tbody tr td:last-child {
  border-right: solid 1px #ECEDF2;
}
/* Table - Options Dropdown */
.table-options .options-dropdown {
  margin: 0;
  padding: 0;
  font-size: inherit;
  border: 0;
  text-align: center;
}
.table-options .dropdown-backdrop {
  display: none;
}
/* Table Search */
body #main-content .section.table-search .table-heading-holder .table-actions .form-group:before {
  visibility: hidden;
}
.table-heading-holder .form-group {
  margin-bottom: 0;
}
.form-group.search i {
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 1rem;
  margin-top: -8px;
}
.table-actions .form-control {
  margin: 0 !important;
}
/* Table Row Status Colours */
/*body #main-content .section.table-search table tbody tr.status-invited {
    background: #f8f8f8;
}

body #main-content .section.table-search table tbody tr.status-awaiting-verification,
body #main-content .section.table-search table tbody tr.status-awaiting-authorisation {
    background: #fcefef;
}

body #main-content .section.table-search table tbody tr.status-complete-enrolment {
    background: #ffffe6;
}*/
/* Dashboard */
.stat-section {
  margin: 0;
  background: white;
  border-bottom: solid 1px #ECEDF2;
  padding: 1.5rem 0;
}
.stat-title {
  margin: 0;
}
.stat-title .amount {
  font-size: 35px;
  color: #7373b5;
  font-weight: bold;
}
/* Reset Password Form */
#ResetPasswordContainer {
  display: inline-block;
  margin-right: 10px;
}
#ResetPasswordContainer .alert {
  position: absolute;
  top: 70px;
  right: 0;
}
#ResendInviteContainer {
  display: inline-block;
  margin-right: 10px;
}
#ResendInviteContainer .alert {
  position: absolute;
  top: 70px;
  right: 0;
}
/* Enrolment Read-Only */
.checklist {
  padding: 0;
  margin: 0;
  list-style: none;
}
.checklist li {
  margin: 3px 0;
  padding: 1rem;
  color: #111;
  background: #f9f7fb;
  border: 1px solid #ECEDF2;
}
.checklist li.green-bg {
  color: #3c763d;
  background: #dff0d8;
  border-color: #d6e9c6;
}
.checklist li.red-bg {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.checklist li i {
  margin-right: 10px;
}
.checklist li .answer {
  font-weight: 600;
  float: right;
}
/* Course Resources */
.resource {
  width: 100%;
  display: inline-block;
  box-shadow: 0 0 7px rgba(202, 202, 202, 0.2);
  border-radius: 6px;
  margin-bottom: 1.5rem;
}
.resource .content {
  background: white;
  padding: 25px;
  text-align: center;
}
.resource .content h5 {
  color: #888;
  margin: 1.5rem 0;
}
.resource .content i {
  display: block;
  color: #72ebca;
}
/* Course/Unit Box */
.course-box .btn {
  margin-top: 2rem;
}
.course-box.course-box-horizontal {
  text-align: left;
}
.course-box.course-box-horizontal .placeholder {
  width: 11.5rem;
  height: 11.5rem;
}
.course-box.no-access {
  opacity: 0.6;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}
.course-box .no-access-hover {
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  background: white;
  width: 100%;
  height: 100%;
  padding: 1.5rem;
}
.course-box .no-access-hover .inner-table {
  width: 100%;
  height: 100%;
  display: table;
  text-align: center;
  vertical-align: middle;
  margin: 0;
}
.course-box .no-access-hover .inner-table-cell {
  width: 100%;
  height: 100%;
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  color: #dc3545;
}
.course-box .no-access-hover .inner-table-cell span {
  font-size: 0.875em;
}
.course-box.no-access:hover {
  opacity: 1;
}
.course-box.no-access:hover .no-access-hover {
  visibility: visible;
}
.course-box .unit-student-uploads {
  display: block;
  position: absolute;
  left: 0;
  top: 20px;
}
/*.course-box {
    margin-bottom: 1.5rem;
}*/
.course-box .placeholder {
  cursor: pointer;
}
.apprenticeship-box .course-title .lozenge {
  float: right;
}
body #main-content .section.basic_panel.apprenticeship-box .panel-holder {
  margin-bottom: 1.5rem;
}
body #main-content .section.basic_panel.apprenticeship-box .panel-holder:last-child {
  margin-bottom: 0;
}
body #main-content .section.basic_panel.apprenticeship-box.past .panel-holder {
  opacity: 0.8;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}
body #main-content .section.basic_panel.apprenticeship-box.past .panel-holder:hover {
  opacity: 1;
}
/* Student Apprenticeship Page */
body #main-content .student-apprenticeship-page .section.basic_panel .panel-holder {
  margin-bottom: 1.5rem;
}
body #main-content .student-apprenticeship-page .section.basic_panel .panel-holder:last-child {
  margin-bottom: 0;
}
body #main-content .student-apprenticeship-page .section.basic_panel .panel-holder .mandatory-course .placeholder {
  width: 4rem;
  height: 4rem;
}
body #main-content .student-apprenticeship-page .section.basic_panel .panel-holder .mandatory-course .preview-large .course-details {
  margin-left: 80px;
}
body #main-content .student-apprenticeship-page .section.basic_panel .panel-holder .mandatory-course .preview-large {
  min-height: 4rem;
}
body #main-content .student-apprenticeship-page .section.basic_panel .panel-holder .mandatory-course .course-title {
  border: 0;
  margin: 0;
  padding: 10px 0;
}
body #main-content .student-apprenticeship-page .section.basic_panel .panel-holder .mandatory-course .course-title .lozenge {
  float: right;
}
body #main-content .student-apprenticeship-page .section.basic_panel .panel-holder .checklist {
  margin-top: 2rem;
}
/* Avatar Placeholder */
.avatar-placeholder {
  display: inline-block;
  border-radius: 50%;
  overflow: hidden;
  width: 150px;
  height: 150px;
}
.avatar-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.avatar-placeholder .placeholder {
  width: 100%;
  height: 100%;
  background: #ba4c96;
  border-radius: 50%;
  position: relative;
}
.avatar-placeholder .placeholder .character {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  font-size: 36px;
  color: white;
}
body #main-content .section.basic_panel .panel-holder .user-picture .placeholder {
  width: 150px;
  height: 150px;
}
/* Member Box */
.member-box {
  background: white;
  box-shadow: 0 0 7px rgba(202, 202, 202, 0.2);
  padding: 40px;
  border-radius: 6px;
}
.member-box h3 {
  border-bottom: 1px solid #ECEDF2;
  padding-bottom: 1.5rem;
  margin: 0 0 1.5rem 0;
}
.member-box ul.details {
  margin: 0;
  padding: 0;
  list-style: none;
}
.member-box ul.details li {
  font-size: 0.875em;
  margin: 5px 0;
}
.member-box ul.details li i {
  color: #27326f;
}
.member-box span {
  font-size: 0.875em;
}
.member-box .placeholder {
  display: inline-block;
  border-radius: 50%;
  overflow: hidden;
  width: 150px;
  height: 150px;
}
/* Course Placeholders */
.placeholder.purple {
  background: #7373b5 !important;
}
.placeholder.cyan {
  background: #72ebca !important;
}
.placeholder.peach {
  background: #fda975 !important;
}
/* Event Header */
.section.page-header .date {
  color: white;
  font-size: 0.875em;
  margin: 1.5rem 0;
}
.section.page-header .date i {
  color: #27326f;
}
/* Umbraco Forms */
.input-container-checkbox {
  position: absolute;
  top: 0;
}
.input-container-checkbox input[type=checkbox] {
  margin: 0;
  position: static;
}
.contourNavigation {
  margin-top: 2rem;
}
.input-container-titleanddescription {
  margin: 0;
  margin-bottom: 40px;
}
.input-container-titleanddescription h3 {
  font-size: 24px;
  border: 0 !important;
  margin: 0 0 10px 0 !important;
  padding: 0 !important;
}
/* Pagination */
.pagination > li > a,
.pagination > li > span {
  color: #27326f;
}
.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
  background-color: #27326f;
  border-color: #27326f;
}
.pagination > li > a:focus,
.pagination > li > a:hover,
.pagination > li > span:focus,
.pagination > li > span:hover {
  color: #27326f;
  background-color: #eee;
  border-color: #ddd;
}
/* Enrolment */
body #main-content .section.stages-actions .btns-holder .back-button {
  float: left;
}
/* Forms */
.checker.disabled {
  cursor: not-allowed;
}
.checkboxes-list-vertical label {
  font-weight: normal;
}
body #main-content .form-group .checkboxes-list-vertical label .checker {
  float: right;
}
.radio input[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: -4px;
  margin-left: -4px;
}
.date-picker {
  /*   display: inline-flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;*/
  display: block;
}
.date-picker label {
  display: inline-block;
  font-weight: 500;
  margin-right: 1rem;
  margin-bottom: 0;
}
.date-picker input {
  border-radius: 40px;
  border: solid 1px #ECEDF2;
  padding: 1.5rem;
  display: inline-block;
  box-shadow: none;
  outline: none;
  height: 48px;
  width: 100%;
  padding: 1rem 25px;
}
.date-picker input:active,
.date-picker input:focus {
  border-color: #7373b5;
}
.date-picker .data-picker-reset {
  position: absolute;
  right: 35px;
  width: 25px;
  top: 13px;
}
.date-picker:after {
  top: 25px;
  transform: translateY(-50%);
}
.date-picker .datepickerfield,
.date-picker .start-date,
.date-picker .target-date {
  cursor: pointer;
}
.date-picker .field-validation-valid {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
}
/*body #main-content .form-group .form-control {
    margin-bottom: 0;
}*/
/* Advanced Search */
.advanced-search-container {
  margin-top: -2rem;
}
.advanced-search-container .advanced-search-button {
  display: block;
  font-size: 0.875em;
  margin-bottom: 10px;
}
.advanced-search-container .advanced-search {
  display: none;
  clear: both;
}
/* Table Sort */
body #main-content .section.table-search table thead th.header {
  position: relative;
  cursor: pointer;
  padding-left: 2rem;
  vertical-align: middle;
}
body #main-content .section.table-search table thead th.header:before {
  font-family: FontAwesome;
  content: "\f0dc";
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
}
body #main-content .section.table-search table thead th.header.sort-up:before {
  content: "\f0de";
}
body #main-content .section.table-search table thead th.header.sort-down:before {
  content: "\f0dd";
}
body #main-content .section.table-search table.no-header-arrows thead th.header:before {
  font-family: FontAwesome;
  content: "";
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
}
body #main-content .section.table-search table.no-header-arrows thead th.header {
  padding: 1.5rem 14px;
  vertical-align: top;
}
body #main-content .section.table-search table.no-header-arrows thead th.header span {
  display: block;
  text-transform: none;
  font-size: smaller;
  font-weight: normal;
}
/* Event Status */
body #main-content .section.page-header .container-fluid .user-actions .event-status .lozenge {
  position: static;
  border: 0;
}
body #main-content .section.page-header .container-fluid .user-actions .event-status .lozenge.green {
  background: #0dcaf0;
  color: white;
  border: transparent;
}
body #main-content .section.page-header .container-fluid .user-actions .event-status .lozenge.green .fa,
body #main-content .event-status .lozenge.red .fa {
  color: white;
}
body #main-content .section.page-header .container-fluid .user-actions .event-status .btn {
  padding: 9.5px 10px;
  font-size: 12px;
  margin: 0 0 0 10px;
}
body #main-content .modal .event-status {
  display: inline-block;
}
body #main-content .modal .event-status .lozenge.green {
  background: #0dcaf0;
  color: white;
  border: transparent;
}
body #main-content .modal .event-status .lozenge.green .fa,
body #main-content .modal .event-status .lozenge.red .fa {
  color: white;
}
body #main-content .section.training_diary .calendar-holder .fc-view-container table .fc-body .fc-event.attending .fc-content:before {
  content: '\f00c';
  font-family: FontAwesome;
}
body #main-content .section.training_diary .calendar-holder .fc-view-container table .fc-body .fc-event .fc-time {
  display: none;
}
/* Typeahead */
body #main-content .form-group .form-control.typeahead-employers {
  width: 100%;
}
.tt-menu {
  padding: 1.5rem;
  margin: 0.5rem;
  width: calc(100vw - 1rem);
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  .tt-menu {
    width: 100%;
    margin: 0;
    border-radius: 0;
  }
}
.tt-dataset {
  margin-bottom: 10px;
}
.btns-holder .alert-warning {
  text-align: left;
  display: inline-block;
  margin-right: 1.5rem;
}
.help-icon {
  color: #7373b5;
  cursor: pointer;
}
body #main-content .lozenge-single {
  display: inline-block;
  margin: 0;
}
.section-title .amount {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  background: #7373b5;
  border-radius: 100rem;
  vertical-align: middle;
  margin-left: 1rem;
}
.section-title .amount .number {
  font-size: 16px;
  line-height: 1;
  color: white;
}
.navbar-nav > li.purple {
  background: #7373b5;
}
.status-section {
  padding: 1.5rem;
  position: relative;
}
.status-section input[type=radio] {
  position: absolute;
  left: 1.5rem;
  top: 1.5rem;
}
.status-section label {
  padding-left: 2rem;
  font-weight: normal;
}
/*uniform replaced*/
.status-section div.radio {
  position: absolute;
  left: 22px;
  top: 23px;
}
body #main-content .section.stages-actions.stages-actions-top {
  padding-top: 40px;
  text-align: center;
}
body #main-content .section.stages-actions.stages-actions-top .panel-holder {
  padding: 1.5rem;
}
body #main-content .section.stages-actions.stages-actions-top span {
  color: #7373b5;
}
body #main-content .section.stages-actions.stages-actions-top .btn {
  margin-left: 1.5rem;
}
body #main-content .section.navbar-tabs ul li a.disable {
  color: #ccc;
}
body #main-content .section.navbar-tabs ul li.active a.disable,
body #main-content .section.navbar-tabs ul li:hover a.disable {
  color: #ccc;
}
.no-result td {
  color: #888;
}
@media (min-width: 992px) {
  .diary-list .btns-holder {
    text-align: right;
  }
}
.table-search-nopadding {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.employer-form-container {
  background-color: transparent;
}
.list-group-item.disabled {
  color: #888;
  background-color: #eee;
}
.list-group-item.active,
.list-group-item.active:focus,
.list-group-item.active:hover {
  background-color: #27326f;
  background-image: none;
  border-color: #27326f;
  border-top: none;
  border-bottom: none;
}
.list-group-item.in-progress,
.list-group-item.in-progress:focus,
.list-group-item.in-progress:hover {
  border-left: 10px #ffc107 solid !important;
}
.list-group-item.complete,
.list-group-item.complete:focus,
.list-group-item.complete:hover {
  border-left: 10px #198754 solid !important;
}
.list-group-item.document-uploads {
  margin-top: 1.5rem;
}
.info-text {
  font-size: 0.8em;
  margin: 0px;
}
body #main-content .status.medium-risk:before {
  background: #ffc107;
}
body #main-content .status.high-risk:before {
  background: #dc3545;
}
body #main-content .status.low-risk:before {
  background: #198754;
}
body #main-content .section.table-search {
  padding-top: 0px;
  padding-bottom: 0px;
}
.tab-content {
  padding-top: 2rem;
}
.risk-status-row {
  padding: 1.5rem;
  padding-left: 25px;
  position: relative;
}
.risk-status-row:hover {
  background-color: #eee;
}
.risk-status-row h3 {
  margin: 0;
  cursor: pointer;
}
.risk-status-row h3:before {
  position: absolute;
  left: -5px;
  content: "\f105";
  font-family: FontAwesome;
  top: 45%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
}
.risk-status-row h3[aria-expanded=true]:before {
  position: absolute;
  left: -5px;
  content: "\f107";
  font-family: FontAwesome;
}
.comments-list {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}
.comments .reply {
  margin-left: 40px;
}
.comments .reply-form {
  display: none;
  border-left: 5px solid #27326f;
  padding: 1.5rem;
  background-color: #f7f2fd;
}
.box.comment-box {
  overflow: hidden;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border: 1px solid #eeeeee;
  background: white;
  box-shadow: 0 1px #dddddd;
  -moz-box-shadow: 0 1px #dddddd;
  -webkit-box-shadow: 0 1px #dddddd;
  margin: 10px 0;
  position: relative;
}
.box.comment-box .top {
  padding: 10px 1.5rem 10px 75px;
  width: 100%;
  min-height: 70px;
}
.box.comment-box .tooltip.top {
  padding: 5px 0;
  width: auto;
  min-height: 0;
}
.box.comment-box .bottom {
  padding: 12px 1.5rem 12px 75px;
  width: 100%;
  border-top: 1px solid #eeeeee;
}
.box.comment-box .bottom ul li {
  display: inline-block;
  *display: inline;
  zoom: 1;
  font-size: 18px;
  color: #bbbbbb;
  margin: 0 10px 0 0;
}
.box.comment-box .bottom .report {
  float: right;
  color: #bbbbbb;
  font-size: 18px;
}
.box.comment-box .bottom .like.active {
  color: #1abc9c;
}
.box.comment-box .bottom .like span {
  font-size: 0.813em;
  padding: 0px;
}
.box.comment-box .avatar {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 10px;
  left: 10px;
}
.box.comment-box .avatar img {
  width: 100%;
}
.box.comment-box .text {
  padding: 5px 0;
  margin: 0;
}
.box.comment-box .text p {
  line-height: 1.714em;
}
.box.comment-box.discussion-topic .text p {
  line-height: 2em;
  margin: 1.5rem 0;
}
.box.comment-box .text h3 {
  font-family: acumin-pro, Helvetica, Arial, sans-serif;
  font-size: 1.75em;
  margin: 1.5rem 0;
}
.box.comment-box .user-meta {
  padding: 5px 0 10px 0;
  border-bottom: 1px solid #eeeeee;
  width: 100%;
}
.box.comment-box .user-meta .name {
  font-size: 0.875em;
  color: #888888;
}
.box.comment-box .user-meta .date {
  font-size: 0.813em;
  color: #bbbbbb;
  float: right;
}
.box.comment-box h5 {
  font-size: 1em;
  margin: 5px 0 10px 0;
}
.box.comment-box h4 {
  font-size: 1.5em;
  margin: 10px 0;
}
.box.comment-box textarea.form-control {
  background: #fbfbfb;
  min-height: 12rem;
  font-size: 0.875em;
}
.box.comment-box .text {
  padding: 1.5rem 0px 10px 0;
}
.add-comment-form .form-group {
  margin-bottom: 10px !important;
}
body #main-content .section.page-header .container-fluid {
  padding: 0;
}
body #main-content #searchBar input {
  /*width: calc(100% - 80px);*/
  height: 80px;
  border: none;
  padding: 10px 40px;
  padding-left: 79px;
  font-size: 18px;
  outline: none;
}
body #main-content #searchBar .user-actions .box {
  width: 80px;
  height: 80px;
}
.reply .box {
  border-left: 5px solid #27326f;
  padding: 1.5rem;
}
body #main-content .section.navbar-tabs ul li.active.menuitemtemplate_5703 a,
body #main-content .section.navbar-tabs ul li.menuitemtemplate_5703:hover a {
  color: #e02020;
}
body #main-content .section.navbar-tabs ul li.menuitemtemplate_5703 a:after {
  background-color: #e02020;
}
body #main-content .section.navbar-tabs ul li.menuitemtemplate_5703 a {
  color: #e02020;
}
.hide-form-buttons .umbraco-forms-navigation {
  display: none;
}
.btn.btn-gray:hover {
  background: #ccc;
}
.btn.btn-gray {
  background: #ccc;
  color: white;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}
.table-postcode {
  display: block;
  font-size: smaller;
}
.privacy-highlight,
.highlight {
  padding: 1.5rem;
  background-color: #e5e5e5;
}
.pull-right {
  margin-left: auto;
}
.file-list {
  background: #fff;
  box-shadow: 0 0 7px rgba(202, 202, 202, 0.2);
  padding: 2rem;
  border-radius: 0;
}
.file-list .file-item {
  border-top: solid 1px #ECEDF2;
  padding-top: 20px;
  margin-top: 20px;
}
.file-list .file-item:first-child {
  margin-top: 0;
  padding-top: 0;
  border: none;
}
#main-content .item-overdue .lozenge.grey {
  background-color: #dc3545;
  border-color: #dc3545;
  color: #fff;
}
#main-content .item-overdue .lozenge.grey i {
  color: #fff;
}
#main-content .item-duesoon .lozenge.grey {
  background-color: #ff7800;
  border-color: #ff7800;
  color: #fff;
}
#main-content .item-duesoon .lozenge.grey i {
  color: #fff;
}
#main-content .item-completed .lozenge.grey {
  background-color: #198754;
  border-color: #198754;
  color: #fff;
}
#main-content .item-completed .lozenge.grey i {
  color: #fff;
}
@media (max-width: 768px) {
  .btns-holder .btn {
    margin: 10px 0 0 0;
    display: block;
    width: 100%;
  }
}
.readonlyform div.radio span.checked {
  background-color: #666;
}
.readonlyform div.checker span.checked:after {
  color: #666;
}
.readonlyform .date-picker .data-picker-reset {
  display: none;
}
#main-content .readonlyform .form-group .checker span.checked:after {
  color: #666;
}
#main-content .readonlyform .form-group .checker span.checked {
  border-color: #666;
}