@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
body {
  font-family: "Roboto", sans-serif;
  position: relative;
  background: #f3f3f7; }

.view-content {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-bottom: 80px; }

.app-container {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative; }

.app-content {
  width: 100%;
  padding: 0 16px;
  max-width: 1200px; }

h1,
.h1 {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2em; }
  @media (max-width: 480px) {
    h1,
    .h1 {
      font-size: 28px; } }

h2,
.h2 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2em; }
  @media (max-width: 480px) {
    h2,
    .h2 {
      font-size: 18px; } }

h3,
.h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2em; }
  @media (max-width: 480px) {
    h3,
    .h3 {
      font-size: 16px; } }

p,
span,
li {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2em; }
  @media (max-width: 480px) {
    p,
    span,
    li {
      font-size: 14px; } }

a {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2em;
  color: #0b0f20;
  text-decoration: underline;
  text-decoration-color: #6eb744; }
  a:hover {
    color: #6eb744; }

.small, .data-container .data-text .data-description {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2em; }

.large {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2em; }

i {
  font-size: 20px; }

.btn {
  position: relative;
  font-weight: 500;
  color: #0b0f20;
  text-decoration: none; }
  .btn span {
    font-weight: 500; }
  .btn i {
    margin-left: 8px;
    color: #707070; }
  .btn.btn--ghost {
    background: none;
    color: #0b0f20; }
  .btn.btn--outline {
    background: none;
    color: #0b0f20;
    border: solid 2px #6eb744; }
  .btn.btn--primary {
    background: #6eb744;
    color: #fff; }
    .btn.btn--primary i {
      color: #fff; }
    .btn.btn--primary:hover {
      background-color: #67ac40; }
  .btn.btn--circle {
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0; }
    .btn.btn--circle i {
      margin: 0; }
  .btn.btn--cta {
    background: #6eb744;
    color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2367ac40' fill-opacity='1' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E"); }
    .btn.btn--cta i {
      color: #fff; }
    .btn.btn--cta:hover {
      background-color: #67ac40; }

input[type="text"],
select,
.btn,
.form-control,
.custom-select {
  height: 42px;
  padding: 4px 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 24px;
  font-size: 14px;
  transition: all 0.05s 0s ease-in-out;
  color: #0b0f20;
  font-weight: 500;
  background-color: #fcfcfc; }
  input[type="text"]:hover,
  select:hover,
  .btn:hover,
  .form-control:hover,
  .custom-select:hover {
    background-color: rgba(110, 183, 68, 0.16); }
  input[type="text"]:focus,
  select:focus,
  .btn:focus,
  .form-control:focus,
  .custom-select:focus {
    color: #0b0f20;
    border-color: #67ac40;
    box-shadow: 0px 4px 16px rgba(108, 117, 125, 0.25); }
  input[type="text"]::placeholder,
  select::placeholder,
  .btn::placeholder,
  .form-control::placeholder,
  .custom-select::placeholder {
    color: #707070;
    font-weight: 400; }
  input[type="text"]:disabled,
  select:disabled,
  .btn:disabled,
  .form-control:disabled,
  .custom-select:disabled {
    background: #d0d0d0 !important;
    color: #707070 !important;
    cursor: not-allowed;
    border-color: #d0d0d0; }

input[type="text"],
select,
.custom-select {
  border: solid 1px #e7eaf2;
  border-radius: 24px; }
  input[type="text"]:focus:hover,
  select:focus:hover,
  .custom-select:focus:hover {
    background-color: #fff; }

.app-footer {
  padding: 8px;
  position: absolute;
  bottom: 0;
  left: 0; }

.data-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 12px; }
  .data-container img,
  .data-container i {
    margin-right: 16px; }
  .data-container .data-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start; }
    .data-container .data-text .data-title {
      font-weight: 500; }
    .data-container .data-text .data-description {
      margin-top: 2px; }
  .data-container .data-checkbox {
    margin-right: 12px; }
  .data-container .data-with-image,
  .data-container .data-with-icon {
    display: flex;
    align-items: center; }
  .data-container .custom-control-label:before, .data-container .custom-control-label:after {
    top: 50%;
    transform: translateY(-50%); }

.data-with-image img {
  width: 40px;
  height: 40px; }

.custom-control-input:checked ~ .custom-control-label::before {
  background: #6eb744;
  border: solid 1px #6eb744; }

.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(110, 183, 68, 0.3); }

.panel {
  background: #fff;
  border: solid 1px #e7eaf2;
  padding: 24px;
  border-radius: 24px;
  margin-bottom: 40px;
  box-shadow: 0px 16px 32px rgba(108, 117, 125, 0.25); }
  .panel .panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    margin-bottom: 16px;
    border-bottom: solid 1px #e7eaf2; }
  @media (max-width: 1000px) {
    .panel {
      padding: 16px; } }
  @media (max-width: 480px) {
    .panel {
      margin: 0 -16px;
      margin-bottom: 40px;
      border-radius: 0; } }

.site-background {
  position: fixed;
  top: 0;
  right: 0;
  width: auto;
  height: 100vh;
  z-index: -1;
  object-fit: cover; }
  @media (max-width: 1000px) {
    .site-background {
      opacity: 0.1; } }

.app-header {
  margin: 60px 0; }

.nav-tabs {
  border: 0;
  margin-left: 24px; }
  .nav-tabs .btn {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin-right: 12px; }
  @media (max-width: 480px) {
    .nav-tabs {
      margin-left: 0; } }

.search-container {
  margin-bottom: 60px; }

.more-filters-container {
  border-bottom: solid 1px #e7eaf2;
  margin-bottom: 60px;
  display: none; }
  .more-filters-container.show, .more-filters-container.collapsing {
    display: flex;
    flex-direction: column; }
  .more-filters-container section {
    margin-bottom: 60px; }
  .more-filters-container .modal-dialog {
    width: 100%;
    max-width: 1200px; }

.school-logo {
  width: 100px;
  height: 100px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 2px #6eb744;
  background: #fff; }
  .school-logo.small, .data-container .data-text .school-logo.data-description {
    width: 60px;
    height: 60px; }
  .school-logo.large {
    width: 140px;
    height: 140px; }
  .school-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain; }
  .school-logo.school-edit-logo .school-edit-logo-button {
    position: absolute;
    right: -10px;
    bottom: 5px;
    z-index: 10; }

.search-results .search-results__list td {
  vertical-align: middle; }
  .search-results .search-results__list td:first-of-type {
    padding-left: 0; }
  .search-results .search-results__list td:last-of-type {
    padding-right: 0; }

@media (max-width: 480px) {
  .search-results .search-results__list tr {
    display: flex;
    flex-wrap: wrap;
    border-bottom: solid 1px #e7eaf2; }
  .search-results .search-results__list td {
    border: none; }
    .search-results .search-results__list td:last-of-type {
      display: flex;
      flex: 1;
      padding-left: 0; } }

.school-selects {
  padding-top: 24px;
  padding-bottom: 24px;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1; }

.compare-results section {
  border-bottom: solid 1px #e7eaf2;
  padding: 32px 0; }
  .compare-results section h2 {
    margin-bottom: 4px; }
  .compare-results section:last-of-type {
    border: 0; }
  .compare-results section .col {
    border-right: solid 1px #e7eaf2;
    padding-top: 32px;
    padding-bottom: 32px; }
    .compare-results section .col:last-of-type {
      border-right: none; }
  .compare-results section .chart .chart-content {
    max-width: 180px;
    align-self: center; }

.compare-results ul {
  list-style: none;
  padding: 0;
  margin: 0; }

@media (max-width: 480px) {
  .compare-results .data-with-icon {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start; }
    .compare-results .data-with-icon i {
      margin-top: 12px;
      margin-bottom: 4px; } }

@media (max-width: 480px) {
  .compare-results .data-with-image img {
    margin-right: 8px; } }

.school-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap; }
  .school-header .header-buttons {
    display: flex;
    justify-content: flex-end;
    margin: 12px 0 12px 24px; }
    @media (max-width: 480px) {
      .school-header .header-buttons i {
        margin: 0; } }

.school-views-list {
  list-style: none;
  display: flex;
  overflow: auto;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 24px 15px;
  margin-left: -15px;
  margin-right: -15px; }
  .school-views-list li {
    margin-right: 12px;
    display: flex;
    flex-shrink: 0; }
  .school-views-list a {
    margin: 0; }

.loading {
  width: 100%;
  cursor: progress; }
  .loading .loading-block {
    position: relative;
    width: 100%;
    height: 40px;
    flex: 1;
    border-radius: 12px;
    background: #e4edf1;
    overflow: hidden; }
    .loading .loading-block::after {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      transform: translateX(-100%);
      background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.2) 20%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0));
      animation: shimmer 2s infinite;
      content: ""; }

@keyframes shimmer {
  100% {
    transform: translateX(100%); } }
  .loading .loading-block--avatar {
    width: 40px;
    height: 40px;
    max-width: 40px; }
  .loading.loading--search-school .loading-block {
    height: 150px; }
  .loading.loading--search-school .loading-block--avatar {
    width: 150px;
    height: 150px;
    max-width: 150px; }

@keyframes loading {
  to {
    background-position: 315px 0, 0 0, 0 190px, 50px 195px; } }

form .state-error {
  position: absolute;
  right: 16px;
  background: #dc3545;
  display: none;
  border-radius: 12px;
  border-bottom-right-radius: 0;
  width: auto;
  width: 200px;
  padding: 8px;
  pointer-events: none;
  color: #fff !important;
  transition: visibility 0s, all 0.2s 0s ease-in-out;
  opacity: 0;
  transform: translateY(calc(-100%)); }

form.dirty .state-error {
  display: flex;
  visibility: visible;
  opacity: 1;
  animation: show-up 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both; }

form.dirty #start_search {
  animation: shake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  transform: translate3d(0, 0, 0);
  perspective: 1000px; }

@keyframes show-up {
  0% {
    display: none;
    opacity: 0; }
  1% {
    display: block;
    opacity: 0;
    transform: translateY(calc(-100%)); }
  100% {
    opacity: 1;
    transform: translateY(calc(-100% - 8px)); } }

@keyframes shake {
  10%,
  90% {
    transform: translate3d(-1px, 0, 0); }
  20%,
  80% {
    transform: translate3d(2px, 0, 0); }
  30%,
  50%,
  70% {
    transform: translate3d(-2px, 0, 0); }
  40%,
  60% {
    transform: translate3d(2px, 0, 0); } }

.chart {
  display: flex;
  flex-direction: column;
  position: relative; }
  .chart.chart--pie .chart-content {
    max-width: 400px; }
  .chart p {
    margin: 0;
    display: flex;
    flex-direction: column; }
  .chart .chart-legend {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0; }
  .chart .chart-legend-item {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 16px;
    margin-right: 16px; }
  .chart .chart-content {
    position: relative;
    padding: 12px;
    width: fit-content;
    width: 100%; }
  .chart .data-label-color {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: solid 1px #e7eaf2;
    margin-right: 4px; }
  .chart .data-label-text {
    font-weight: 700; }
  .chart .doughnut-center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    font-weight: 700; }
  .chart .progress {
    height: 8px;
    margin-bottom: 40px; }
  .chart.hide-legend .chart-legend {
    display: none; }

.admin-panel input,
.admin-panel .form-control {
  background-color: #f3f3f7;
  border: solid 1px #e7eaf2; }

.admin-panel label {
  font-size: 12px;
  font-weight: 700; }

.admin-panel .admin-profile-item {
  border-bottom: solid 1px #e7eaf2; }
  .admin-panel .admin-profile-item .profile-points-input {
    width: 120px; }

.admin-panel .school-logo {
  display: flex;
  position: relative; }
  .admin-panel .school-logo img {
    width: 100%;
    height: 100%; }
  .admin-panel .school-logo .edit-logo {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 2px #6eb744; }

.control-group {
  padding: 0; }
  .control-group input,
  .control-group .form-control {
    border: none;
    background: none !important;
    overflow: auto; }

.text-center {
  text-align: center; }

.login-view {
  display: flex;
  align-items: center;
  justify-content: center; }
  .login-view .site-background {
    height: auto;
    width: 100%;
    top: 0;
    left: 0;
    object-fit: cover; }

.form {
  margin: auto;
  max-width: 400px;
  width: 100%; }

.error {
  color: #e6001b; }
