/* ======================
   [START] Collapsers Basic
   ======================*/
.collapser__content {
  display: none;
}
.collapser--opened > .collapser__content,
.collapser__content.collapser--opened {
  display: block;
}
/* ======================
   [END] Collapsers Basic
   ======================*/
@keyframes blinking {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
html,
body {
  position: relative;
  padding: 0;
  margin: 0;
  height: 100%;
  width: 100%;
  display: flex;
}
nav {
  position: relative;
  width: 300px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
main {
  flex-grow: 1;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
main:after {
  content: "";
  position: absolute;
  top: 0;
  transform: rotate(180deg);
  left: 0;
  height: 100%;
  width: 1em;
  background: #ffffff;
  background: -moz-linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
  background: -webkit-linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#000000", GradientType=1);
}
.page-header {
  position: relative;
  background-color: #f2f2f2;
  height: 4rem;
  padding: 0 1rem;
  width: 100%;
  box-sizing: border-box;
  font-size: 150%;
  font-weight: bold;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  border-bottom: 1px solid #e0e0e0;
}
.page-content {
  width: 100%;
  flex-grow: 1;
  box-sizing: border-box;
  padding: 1rem;
  overflow-y: scroll;
}
* {
  font-family: 'Titillium Web', sans-serif;
}
.status-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.status-icon.completed {
  background-color: limegreen;
}
.status-icon.running {
  animation-name: blinking;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  background-color: cornflowerblue;
}
.status-icon.pending {
  background-color: gold;
}
.status-icon.error {
  background-color: crimson;
}
.log-records-container {
  margin: 0 auto;
}
.log-record {
  position: relative;
  padding: 0.5em;
  box-sizing: border-box;
  width: 100%;
  height: 3rem;
  border-bottom: 1px solid #d4d4d4;
  display: grid;
  grid-template-columns: 20px 3fr 5fr 3fr 2fr;
  grid-gap: 1em;
}
.log-record:first-of-type {
  border-top: 1px solid #d4d4d4;
}
.log-record > div {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
}
.log-record > div.options {
  justify-content: flex-end;
}
.log-record-expanded {
  background-color: darkslategray;
  color: white;
  padding: 0.5em;
  display: block;
  overflow: hidden;
  transition: padding 300ms ease-in-out;
}
.log-record-expanded.closed {
  padding: 0 0.5em;
  height: 0;
}
.btn {
  cursor: pointer;
  border-radius: 6px;
  display: inline-block;
  font-size: 75%;
  text-transform: uppercase;
  padding: 0.5em 1em;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}
.btn i {
  margin-right: 0.5em;
}
.btn.options {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#499bea+0,207ce5+100;Blue+3d+%237 */
  background: #499bea;
  /* Old browsers */
  background: -moz-linear-gradient(top, #499bea 0%, #207ce5 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #499bea 0%, #207ce5 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #499bea 0%, #207ce5 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#499bea', endColorstr='#207ce5', GradientType=0);
  /* IE6-9 */
  color: white;
}
.btn.error {
  background: #cc0000;
  /* Old browsers */
  color: white;
}
.download-btn {
  display: inline-flex;
  align-items: center;
  color: white;
  text-decoration: none;
  padding: 0.5em 1em;
  font-size: 75%;
}
.download-btn:hover {
  background-color: rgba(0, 0, 0, 0.2);
}
.download-btn > img {
  width: 2em;
  margin-right: 0.5em;
}
.header {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3em 0;
}
.test-btn {
  cursor: pointer;
  border-radius: 6px;
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  padding: 1em 3em;
  font-weight: bold;
  text-align: center;
  background: #499bea;
  /* Old browsers */
  background: -moz-linear-gradient(top, #499bea 0%, #207ce5 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #499bea 0%, #207ce5 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #499bea 0%, #207ce5 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#499bea', endColorstr='#207ce5', GradientType=0);
  /* IE6-9 */
  color: white;
}
.basic-data {
  margin-top: 0.5em;
  padding: 2em 0;
  border-top: 1px solid white;
  display: flex;
  justify-content: flex-start;
}
.basic-data-item {
  width: 10em;
  text-align: center;
}
.basic-data-item_value {
  font-weight: bold;
  font-size: 120%;
}
.basic-data-item_label {
  margin-top: 1em;
  font-size: 0.7rem;
  opacity: 0.8;
  text-transform: uppercase;
}
.chart-container {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}
.message {
  display: block;
  padding: 1rem;
  margin: 1em 0;
  text-align: center;
}
.message.error {
  color: #d91431;
  background-color: #ffbfbf;
}
.message.success {
  color: #22a851;
  background-color: #c7ffdb;
}
.nav-header {
  width: 100%;
  height: 4rem;
  background-color: black;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  padding: 0 1rem;
  color: white;
  box-sizing: border-box;
  justify-content: space-between;
  flex-shrink: 0;
}
.nav-header > a {
  color: silver;
  text-decoration: none;
}
.standalone-page {
  width: 100%;
  height: 100%;
}
.standalone-page.login {
  background-color: #f2f2f2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.login-form {
  width: 400px;
  background-color: white;
  padding: 2rem;
}
.login-form input {
  width: 100%;
  padding: 1rem;
  box-sizing: border-box;
  border: 0;
}
.login-form input[type="text"],
.login-form input[type="password"] {
  border-bottom: 1px solid #f2f2f2;
}
.login-form input[type="submit"] {
  background: #499bea;
  /* Old browsers */
  background: -moz-linear-gradient(top, #499bea 0%, #207ce5 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #499bea 0%, #207ce5 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #499bea 0%, #207ce5 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#499bea', endColorstr='#207ce5', GradientType=0);
  /* IE6-9 */
  color: white;
  cursor: pointer;
  border-radius: 6px;
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 2rem;
}
.pagination__wrapper {
  position: relative;
  margin-top: 2em;
  text-align: center;
  width: 100%;
}
.pagination {
  position: relative;
  display: inline-flex;
  justify-content: center;
  flex-wrap: wrap;
  overflow: hidden;
  border: 1px solid silver;
  border-radius: 3px;
}
.pagination__item {
  border-right: 1px solid silver;
}
.pagination__item:last-child {
  border-right: none;
}
.pagination-link {
  display: flex;
  width: 3em;
  height: 2em;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: black;
}
.pagination-link:hover {
  background-color: #c8e2ff;
}
.pagination-step {
  display: flex;
  width: 3em;
  height: 2em;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: silver;
}
.pagination-step.active {
  color: #207ce5;
}
.pagination-step.active:hover {
  background-color: #c8e2ff;
}
.pagination-link.active {
  background-color: #207ce5;
  color: white;
}
.pagination__separator {
  width: 3em;
  height: 2em;
  background-color: #f0f0f0;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.mainmenu__container {
  padding: 0;
  margin: 0;
  background-color: #1f1f1f;
  flex-grow: 1;
  box-sizing: border-box;
}
.mainmenu__item {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.mainmenu__link {
  display: block;
  padding: 0.5rem 1rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid black;
}
.mainmenu__link:hover {
  color: #33adff;
}
.mainmenu__item:first-of-type > .mainmenu__link {
  border-top: none;
}
.mainmenu__item:last-of-type > .mainmenu__link {
  border-bottom: 1px solid black;
}
.mainmenu__item:last-of-type {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mainmenu__submenu {
  position: relative;
  padding: 0;
  margin: 0;
}
.mainmenu__subitem {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.mainmenu__sublink {
  position: relative;
  display: block;
  padding: 0.5rem 1rem;
  color: black;
  background-color: white;
  text-decoration: none;
  border-bottom: 1px solid #e7e7e7;
}
.mainmenu__subitem:first-of-type > .mainmenu__sublink:after {
  content: "";
  height: 0.5em;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #ffffff;
  background: -moz-linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
  background: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#000000", GradientType=1);
}
.mainmenu__sublink:hover {
  background-color: #e7e7e7;
}
/*# sourceMappingURL=main.css.map */