@import "https://fonts.googleapis.com/css2?family=Readex+Pro:wght@200;300;500;700&display=swap";

/* style/text.css */
body {
  font-family: "Readex Pro", sans-serif;
}
.text-lg {
  font-weight: 300;
  font-size: 28px;
}
h1 {
  font-size: 24px;
  font-weight: 300;
  margin: 10px 0;
  color: rgb(0 106 180);
}
.minor-link {
  color: gray;
  font-size: 14px;
}
.minor-link.icon {
  display: flex;
  align-items: center;
  text-decoration: none;
  justify-content: center;
}
.minor-link.icon i {
  font-size: 22px;
  margin-right: 5px;
}
.minor-link.icon.inline {
  display: inline-flex;
}
.step-text {
  font-size: 28px;
  line-height: 36px;
  font-weight: 300;
  margin: 40px auto;
  color: rgb(0 106 180);
  max-width: 400px;
}
.step-text.minor {
  font-size: 18px;
  line-height: 22px;
  color: #444;
}
.med-icon {
  font-size: 32px;
  color: #999;
}
.copy {
  font-size: 14px;
  line-height: 22px;
  font-weight: 300;
}
.fine-print {
  font-size: 12px;
  color: #666;
}
.general-item-link {
  text-decoration: none;
  color: #333;
}

/* style/sprite.css */
.sprite {
  background-size: 100% auto;
  display: inline-block;
}
.sprite.logo {
  background-image: url(https://www.regionofwaterloo.ca/en/images/structure/logo.svg);
  width: 104px;
  height: 70px;
}

/* style/input.css */
input,
textarea {
  padding: 8px;
  font-size: 20px;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  border: 2px solid #ccc;
}
input[type=text],
textarea,
input[type=password] {
  width: calc(100% - 20px);
}
input[type=submit] {
}
textarea {
  height: 185px;
}
.input-group {
  margin: 20px 0;
}
.input-group input:not([type=submit]) {
  width: calc(100% - 16px);
}

/* style/element.css */
ul {
  padding: 0;
  margin: 0;
}
.btn,
input[type=submit] {
  background-color: rgb(0 106 180);
  color: white;
  border: 0;
  padding: 10px 20px;
  display: inline-block;
  text-decoration: none;
}
.btn.disabled {
  cursor: "not-allowed";
  background-color: #ccc;
}
.btn.icon {
  display: inline-flex;
  align-items: center;
}
.btn.icon i {
  font-size: 18px;
  margin-right: 10px;
  color: white;
}
.pill {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  font-size: 11px;
  border-radius: 25px;
  padding: 5px 12px;
  background-color: #ccc;
  color: #444;
  margin-right: 5px;
  text-decoration: none;
  margin-bottom: 5px;
}
.pill strong {
  font-weight: 700;
}
.pill i {
  margin-right: 6px;
}
.pill a {
  color: inherit;
  margin-left: 5px;
}
.pill a i {
  font-size: 16px;
}
.pill.colour-1 {
  background-color: #c6dcc6;
  color: #267727;
}
.pill.colour-2 {
  background-color: #eec7c6;
  color: #7d1717;
}
.resource-list-item {
  text-decoration: none;
  color: #000;
  text-align: left;
  display: block;
}
.resource-list-item .title {
  font-weight: 300;
}
.resource-list-item .descriptors {
  display: flex;
  margin-top: 4px;
}
.resource-list-item .descriptors .pill {
  font-size: 8px;
  padding: 5px 7px;
}
.resource-list-item.with-icon {
  display: flex;
}
.resource-list-item.with-icon > *:first-child {
  margin-right: 10px;
}
.resource-list-item.with-icon i {
  font-size: 22px;
  color: #999;
}
.resource-list-item.with-subtitle .desc {
  font-size: 14px;
  font-weight: 300;
}
.resource-list-item.with-subtitle .title {
  font-size: 11px;
  color: gray;
}
ul.no-bullet {
  list-style-type: none;
}
.checkable {
  position: relative;
  padding-left: 45px;
}
.checkable::before {
  content: "\e836";
  font-family: "Material Icons";
  top: calc(50% - 17px);
  position: absolute;
  left: 0;
  font-size: 34px;
  color: #999;
}
.checkable.checked::before {
  content: "\e92d";
  color: green;
}
.checkable.progress::before {
  content: "\e837";
  color: orange;
}
.big-icon {
  margin-bottom: 20px;
}
.big-icon i {
  font-size: 88px;
  color: #999;
}
.inline-icon {
}
.inline-icon i {
  font-size: 32px;
  color: rgb(0 106 180);
}
.loader {
  z-index: 99999;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition-property: visibility, opacity;
  transition-duration: 0.1s;
}
.loader.in-container {
  height: 100%;
  min-height: 100px;
  background-color: #fff;
}
.loader::before {
  content: "loop";
  font-family: "Material Icons";
  font-size: 36px;
  animation: spin 1s infinite;
  color: #ccc;
}
.loader.loading {
  opacity: 1;
  visibility: visible;
}
.short_caption {
  max-width: 500px;
  margin: auto;
  font-size: 14px;
  font-weight: 300;
}
@-moz-keyframes spin {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.big-check {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.big-check .icon-container {
  position: absolute;
  top: -110px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ccc;
  width: 75px;
  height: 75px;
}
.big-check .icon-container i {
  font-size: 32px;
}
.big-check.active .icon-container {
  background-color: green;
}
.big-check.active .icon-container i {
  color: white;
}
.roadmap-list-item {
  transition-property: background-color;
  transition-duration: 0.25s;
}
.roadmap-list-item:hover {
  background-color: #f0f0f0;
}
.feedback-type-selection {
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 10px;
}
.feedback-type-selection ul {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  padding-bottom: 10px;
}
.feedback-type-selection li {
  list-style-type: none;
  flex: 1;
}
.feedback-type-selection ul li a {
  width: 100%;
  display: block;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #666;
  font-size: 14px;
  text-align: center;
}
.feedback-type-selection ul li.active a {
  color: rgb(0 106 180);
}
.remove-media-link {
  font-size: 12px;
  margin: 15px 0;
  color: gray;
}

/* style/layout.css */
.full-screen-container {
  display: flex;
  width: calc(100% - 40px);
  margin: auto;
  height: 100vh;
  align-items: center;
  justify-content: center;
}
.full-screen-container.with-nav {
  padding-bottom: 67px;
  height: calc(100vh - 67px);
  overflow-y: auto;
}
.responsive-container {
  width: calc(100% - 40px);
  max-width: 1000px;
  margin: auto;
  padding-top: 20px;
  position: relative;
}
.text-centre {
  text-align: center;
}
.margin-bottom-md {
  margin-bottom: 10px;
}
.margin-bottom-lg {
  margin-bottom: 40px;
}
.margin-top-xl {
  margin-top: 50px;
}
.margin-top-lg {
  margin-top: 40px;
}
.margin-vertical-md {
  margin-top: 20px;
  margin-bottom: 20px;
}
.margin-vertical-lg {
  margin-top: 40px;
  margin-bottom: 40px;
}
.floating-outer-container {
  width: 90%;
  max-width: 500px;
}
.floating-inner-container {
  background-color: white;
  box-shadow: 0 0 26px 7px #eaeaea;
  border: 1px solid #eaeaea;
  text-align: center;
  padding: 30px 50px;
}
#loginform label {
  display: block;
}
nav#home li {
  list-style-type: none;
  margin: 10px 0;
}
nav#home .btn {
  width: calc(100% - 40px);
}
nav#footer-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #333;
  color: white;
  padding: 10px 0;
  z-index: 99999;
}
nav#footer-nav ul {
  padding: 0;
  display: flex;
  justify-content: space-around;
  margin: 0;
}
nav#footer-nav li {
  list-style-type: none;
}
nav#footer-nav li.active a {
  color: white;
}
nav#footer-nav a {
  color: #999;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
nav#footer-nav a span {
  font-size: 14px;
  margin-top: 5px;
}
.search-outer-container {
}
.search-results-container {
  padding: 0 20px 80px 20px;
  position: relative;
}
.search-results-container::after {
  content: "Searching...";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  transition-property: visibility, opacity;
  transition-duration: 0.5s;
  opacity: 0;
  visibility: hidden;
  font-weight: 300;
  font-size: 18px;
  color: #666;
  background-color: rgba(240, 240, 240, 0.75);
}
.search-results-container.searching::after {
  visibility: visible;
  opacity: 1;
}
.search-outer-container input {
  width: calc(100% - 20px);
}
.classiferTabs ul {
  padding: 0;
  display: flex;
  margin: 0 0 10px 0;
}
.classiferTabs li {
  list-style-type: none;
  flex: 1;
  padding-right: 10px;
}
.classiferTabs li:last-child {
  padding-right: 0;
  flex: none;
  width: 31px;
  text-align: center;
}
.classiferTabs li a {
  display: block;
  padding: 8px 0;
  border-radius: 25px;
  background-color: #ccc;
  color: #666;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}
.classiferTabs li a i {
  margin-right: 10px;
}
.classiferTabs li:last-child a i {
  margin-right: 0;
}
.classiferTabs li:last-child a {
  border-radius: 50%;
}
.classiferTabs li.active a {
  background-color: rgb(0 106 180);
  color: white;
}
.classiferTabs li:last-child a {
  border-right: 0;
}
.classiferDropdown {
  margin-bottom: 10px;
  display: flex;
  align-items: stretch;
}
.classiferDropdown > *:first-child {
  width: calc(100% - 60px);
}
.classiferDropdown > *:last-child {
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.classiferDropdown > *:last-child a {
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.classifierValueContainer {
  margin-bottom: 10px;
}
.classifierValueContainer .pill {
  margin-bottom: 5px;
}
.search-results-container article,
.search-results-container .classifierValueResult {
  margin: 10px 0;
  width: calc(100% - 45px);
}
.search-results-container article a,
.search-results-container .classifierValueResult a {
  display: flex;
  align-items: top;
  padding: 20px 5px;
  width: 100%;
  text-decoration: none;
  color: black;
  background-color: white;
}
.search-results-container .classifierValueResult a {
  align-items: center;
  padding: 10px 5px;
}
.search-results-container article a > *:first-child,
.search-results-container .classifierValueResult a > *:first-child {
  width: 70px;
}
.search-results-container article a > *:last-child,
.search-results-container .classifierValueResult a > *:last-child {
  width: calc(100% - 70px);
}
.search-results-container article a > *:first-child i,
.search-results-container .classifierValueResult a > *:first-child i {
  font-size: 40px;
  color: #ccc;
}
.search-results-container .classifierValueResult a > *:first-child i {
  font-size: 16px;
}
.search-results-container article a:hover {
  background-color: #eaeaea;
}
.search-results-container article h2,
.classifierValueResult h2 {
  margin: 0 0 10px 0;
  font-size: 20px;
  font-weight: 400;
}
.classifierValueResult h2 {
  margin: 0;
}
.search-results-container article .desc {
  font-size: 12px;
  margin: 0;
  color: #444;
}
.search-results-container .classifierValueResult {
}
.search-results-container .classifierValueResult a {
  background-color: #666;
  color: white;
}
.resource-content {
  padding: 20px;
  background-color: white;
  border: 1px solid #eaeaea;
  box-shadow: 0 0 26px 7px #eaeaea;
  margin-top: 10px;
}
#classifiers_tags .pill {
  margin-bottom: 5px;
}
.resource-content section {
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
}
#actions ul {
  display: flex;
  padding: 0;
  margin: 10px 0 0 0;
}
#actions ul li {
  list-style-type: none;
  padding-right: 15px;
}
#actions ul li a {
  color: #666;
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 14px;
}
#actions ul li a i {
  font-size: 16px;
  margin-right: 5px;
}
.download_file_container a {
  text-decoration: none;
  color: #be3434;
  font-size: 20px;
  display: flex;
  align-items: center;
}
.download_file_container a i {
  font-size: 32px;
  margin-right: 10px;
}
#meta {
  font-size: 12px;
}
#meta ul {
  padding: 0;
}
#meta li {
  list-style-type: none;
}
.post-type-select {
  display: flex;
  margin-bottom: 10px;
}
.post-type-select > * {
  flex: 1;
  text-align: center;
  justify-content: center;
  font-weight: 500;
  font-size: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.post-type-select > *.active {
  background-color: rgb(0 106 180);
  color: white;
}
.resource-outer-container {
}
.resource-outer-container .resource-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  padding-bottom: 20px;
  background-color: #f0f0f0;
  z-index: 99;
  padding-bottom: 20px;
  border-bottom: 1px solid #e3e3e3;
}
.resource-outer-container .resource-body {
}
.resource-body {
  padding-bottom: 200px;
}
.resource-body section {
  margin-bottom: 40px;
}
.resource-outer-container h1 {
  font-weight: 300;
  font-size: 36px;
  margin: 5px 0;
}
.resource-detail .resource-header {
  background-color: #e4ebef;
}
.resource-outer-container h2 {
  font-size: 14px;
  color: rgb(0 106 180);
  margin: 5px 0 10px 0;
}
.responsive-header-inner {
  display: flex;
  align-items: center;
}
.responsive-header-inner > *:first-child {
  width: calc(100% - 175px);
}
.responsive-header-inner > *:last-child {
  width: 175px;
}
.download-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.resource-nav {
  position: fixed;
  bottom: 66.5px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px 0;
  background-color: #ccc;
}
.resource-nav ul {
  display: flex;
}
.resource-nav a {
  display: flex;
  align-items: center;
  color: #666;
  text-decoration: none;
  padding: 0 20px;
}
.resource-nav a.active {
  color: green;
}
.resource-nav a i {
  margin-right: 5px;
}
.list-outer-container {
}
.list-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #f6f6f6;
  z-index: 99;
  padding-bottom: 10px;
  border-bottom: 1px solid #e3e3e3;
}
.checklist-list {
  padding-bottom: 100px;
}
.checklist-list li {
  border-bottom: 1px solid #ccc;
  padding: 15px 0;
}
.checklist-list.spaced li {
}
.checklist-list.spaced li a {
  padding: 20px 0 20px 40px;
  display: block;
}
.space-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.search-outer-container {
}
.search-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  padding-bottom: 20px;
  background-color: #f6f6f6;
  z-index: 99;
  border-bottom: 1px solid #e3e3e3;
}
.search-header h1 {
  margin: 0;
  color: #666;
  font-weight: 700;
}
.horizontal-list {
  display: flex;
  align-items: center;
}
.horizontal-list > * {
  margin-right: 10px;
}
.resource-modal-outer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.25);
  width: 100%;
  height: 100vh;
  z-index: 9999999;
}
.resource-modal {
  position: absolute;
  top: 50px;
  height: calc(100vh - 100px);
  left: 50px;
  width: calc(100vw - 100px);
  z-index: 9999999;
  background-color: #f0f0f0;
  border: 1px solid #ccc;
}
.roadmap-item h1 {
  font-size: 18px !important;
  margin-bottom: 0;
}
.roadmap-item .desc {
  font-size: 28px;
  color: #333;
  font-weight: 200;
  margin: 10px 0 0 0;
}
.roadmap-item .resource-body section {
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
}
.roadmap-item .resource-body section:last-child {
  border-bottom: none;
}
.list-content .responsive-container {
  padding-top: 0;
}
@media (max-width : 700px) {
  .responsive-header-inner {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .responsive-header-inner > *:first-child {
    width: 100%;
  }
  .responsive-header-inner > *:last-child {
    width: 100%;
    margin-top: 20px;
  }
  .list-header .horizontal-list {
    flex-direction: column;
  }
  .list-header .horizontal-list > * {
    margin-bottom: 10px;
  }
}
.take-photo-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999999;
  background-color: black;
}
.take-photo-container video {
  width: 100%;
  height: 100%;
}
.take-photo-container .record {
  position: absolute;
  bottom: 40px;
  text-decoration: none;
  left: calc(50% - 30px);
}
.take-photo-container .record.recording {
  color: red;
}
.take-photo-container .record i {
  font-size: 62px;
  color: white;
}
.take-photo-container .record.recording i {
  color: red;
}
.cancel-snap {
  position: absolute;
  top: 40px;
  left: 40px;
  text-decoration: none;
}
.cancel-snap i {
  color: white;
  font-size: 60px;
}
#canvas {
  width: 200px;
  height: 150px;
}
#canvas img {
  object-fit: cover;
}
#recorded-video {
  width: 320px;
  height: 240px;
}
.take-photo-link {
  display: flex;
  align-items: center;
  color: #333;
  justify-content: center;
  text-decoration: none;
  margin: 30px 0;
}
.take-photo-link i {
  color: #999;
  font-size: 26px;
  margin-right: 5px;
}
.photo-box {
  width: 90%;
  max-width: 400px;
  background-color: #eaeaea;
  margin: 10px auto;
  padding: 10px 0;
}

/* style/app.css */
body {
  background-color: #fff;
  margin: 0;
}
