/* layout
------------------------- */
.body {
  background: #f4f4f4;
}

.page {
  position: relative;
  display: flex;
  flex-direction: column;
}

.main {
  flex: 1;
}

.sidebar {
  background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row {
  background-color: #f7f7f7;
  border-bottom: 1px solid #d6d5d5;
  justify-content: flex-end;
  height: 3.5rem;
  display: flex;
  align-items: center;
}

.top-row ::deep a, .top-row .btn-link {
  white-space: nowrap;
  margin-left: 1.5rem;
  padding-right: 20px;
}

.top-row > a {
  padding-right: 20px;
}

.top-row a:first-child {
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 640.98px) {
  .top-row:not(.auth) {
    display: none;
  }
  .top-row.auth {
    justify-content: space-between;
  }
  .top-row a, .top-row .btn-link {
    margin-left: 0;
  }
}
@media (min-width: 641px) {
  .page {
    flex-direction: row;
  }
  .sidebar {
    width: 250px;
    height: 100vh;
    position: sticky;
    top: 0;
  }
  .top-row {
    position: sticky;
    top: 0;
    z-index: 1;
  }
  /*   .main > div {
      padding-left: 2rem !important;
      padding-right: 1.5rem !important;
  }*/
}
html, body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

a, .btn-link {
  color: #0366d6;
}

.btn-primary {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.content {
  display: flex;
  padding: 0;
  background: #f4f4f4;
  height: 100%;
  position: fixed;
  width: 100%;
}

.valid.modified:not([type=checkbox]) {
  outline: 1px solid #26b050;
}

.invalid {
  outline: 1px solid red;
}

.validation-message {
  color: red;
}

#blazor-error-ui {
  background: lightyellow;
  bottom: 0;
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
  display: none;
  left: 0;
  padding: 0.6rem 1.25rem 0.7rem 1.25rem;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

#blazor-error-ui .dismiss {
  cursor: pointer;
  position: absolute;
  right: 0.75rem;
  top: 0.5rem;
}

.content-wrapper {
  flex-grow: 1;
  padding-left: 360px;
  overflow-y: auto;
}
@media screen and (max-device-width: 720px), screen and (max-width: 720px) {
  .content-wrapper {
    padding-left: 90px !important;
  }
}
.content-wrapper__mobile-menu {
  padding-left: 160px;
}

.spinner {
  border: 16px solid silver;
  border-top: 16px solid #337AB7;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  animation: spin 700ms linear infinite;
  top: 40%;
  left: 55%;
  position: absolute;
}
.spinner--hide {
  display: none;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}