@font-face {
  font-family: 'Roboto';
  src: url("../fonts/Roboto-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto';
  src: url("../fonts/Roboto-ThinItalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
}

@font-face {
  font-family: 'Roboto';
  src: url("../fonts/Roboto-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto';
  src: url("../fonts/Roboto-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: 'Roboto';
  src: url("../fonts/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto';
  src: url("../fonts/Roboto-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Roboto';
  src: url("../fonts/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto';
  src: url("../fonts/Roboto-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: 'Roboto';
  src: url("../fonts/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto';
  src: url("../fonts/Roboto-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: 'Roboto';
  src: url("../fonts/Roboto-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto';
  src: url("../fonts/Roboto-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
}

.charts {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-align-content: stretch;
      -ms-flex-line-pack: stretch;
          align-content: stretch;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.charts .chart-block {
  width: calc(33.1% - 5rem);
  padding: 2rem;
  margin-bottom: 2rem;
  background-color: #FFFFFF;
  border: 1px solid #DDDDDD;
}

@media (max-width: 100rem) {
  .charts .chart-block {
    width: calc(50% - 5rem);
  }
}

@media (max-width: 70rem) {
  .charts .chart-block {
    width: 100%;
  }
}

.charts .chart-block .title {
  font-size: 1.5rem;
  line-height: 1.8rem;
  margin-bottom: 1rem;
}

.charts .chart-block .chart {
  padding: 10rem 0;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.6rem;
  color: #32597C;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.charts .chart-block .totals {
  height: calc(100% - 5rem);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.charts .chart-block .totals .title-line {
  margin-top: 2rem;
  font-size: 2rem;
  line-height: 2rem;
  font-weight: 500;
}

.charts .chart-block .totals .totals-line {
  margin-top: 0.5rem;
  font-size: 3rem;
  line-height: 3rem;
  font-weight: 100;
}

.charts .placeholder {
  width: calc(33.1% - 5rem);
  padding: 2rem;
  margin-bottom: 2rem;
}

.action-bar {
  margin-bottom: 1rem;
  z-index: 20;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}

.action-bar .left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}

.action-bar .left .action-box,
.action-bar .left .action-input-box {
  margin-right: 1rem;
}

.action-bar .right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}

.action-bar .right .action-box,
.action-bar .right .action-input-box {
  margin-left: 1rem;
}

.action-bar .action-box {
  position: relative;
  background-color: #FFFFFF;
  border: 1px solid #DDDDDD;
  border-radius: 2px;
  padding: 0.8rem 1.2rem;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}

.action-bar .action-box .text {
  font-size: 1.2rem;
  color: #666666;
}

.action-bar .action-box:hover .options {
  display: block;
}

.action-bar .action-input-box {
  position: relative;
  cursor: text;
}

.action-bar .action-input-box input {
  background-color: #FFFFFF;
  border: 1px solid #DDDDDD;
  border-radius: 2px;
  padding: 0.8rem 1.2rem;
  font-size: 1.2rem;
  color: #666666;
  outline: none;
}

.action-bar .action-datepicker-box {
  position: relative;
}

.action-bar .action-datepicker-box input {
  cursor: pointer;
  background-color: #FFFFFF;
  border: 1px solid #DDDDDD;
  border-radius: 2px;
  padding: 0.8rem 1.2rem;
  font-size: 1.2rem;
  color: #666666;
  outline: none;
  width: 200px;
  text-align: center;
}

.action-bar .tags {
  padding: 0.484rem 1.2rem;
}

.action-bar .tags .label {
  margin-right: 0.5rem;
}

.action-bar .button-green {
  color: #FFFFFF;
  background-color: #92C739;
  padding: 0.8rem 1.2rem;
  font-size: 1.2rem;
  font-weight: 700;
  opacity: 0.75;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  margin-left: 1rem;
}

.action-bar .button-green:hover {
  opacity: 1;
}

.action-bar .options {
  display: none;
  position: absolute;
  background-color: white;
  border: 1px solid #DDDDDD;
  min-width: 100%;
  top: 3rem;
  left: -1px;
}

.action-bar .options ul {
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}

.action-bar .options ul li a {
  display: block;
  padding: 0.8rem 1.2rem;
  font-size: 1.2rem;
  color: #666666;
  text-decoration: none;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
  white-space: nowrap;
}

.action-bar .options ul li a:hover {
  color: black;
}

.action-bar .icon-arrow-down {
  width: 1rem;
  height: 1rem;
  margin-left: 1rem;
  background-image: url("../images/icons/arrow-down.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}

.action-bar .icon-link {
  width: 1rem;
  height: 1rem;
  margin-right: 1rem;
  background-image: url("../images/icons/link.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}

.action-bar .icon-play {
  width: 1rem;
  height: 1rem;
  margin-right: 1rem;
  background-image: url("../images/icons/play.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}

.action-bar .icon-sort {
  width: 1rem;
  height: 1rem;
  margin-right: 1rem;
  background-image: url("../images/icons/sort.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}

.action-bar .icon-star {
  width: 1rem;
  height: 1rem;
  margin-right: 1rem;
  background-image: url("../images/icons/star-gray.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}

.tags a.tag {
  padding: 0.4rem 0.8rem;
  background-color: #CCCCCC;
  border-radius: 6px;
  text-decoration: none;
  opacity: 0.6;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  font-size: 1.1rem;
  line-height: 1.2rem;
}

.tags a.tag:hover {
  opacity: 1;
}

.tags a.tag span.remove {
  margin-left: 0.2rem;
  font-weight: 700;
}

* {
  margin: 0;
  padding: 0;
  color: #000000;
}

html {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  background-color: #EEEEEE;
}

html body #main {
  position: absolute;
  top: 3rem;
  right: 0;
  width: calc(100% - 20rem);
  z-index: 0;
}

html body #main h1 {
  margin-top: 0;
  font-weight: 700;
}

html body #main #shortlinks {
  padding: 2rem 4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-content: flex-start;
      -ms-flex-line-pack: start;
          align-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}

html body #main #shortlinks h1 {
  font-size: 2rem;
  line-height: 2rem;
  margin-bottom: 2rem;
}

html body #main #shortlinks .shortlink-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-content: flex-start;
      -ms-flex-line-pack: start;
          align-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}

html body #main #shortlinks .shortlink-list .shortlink-block {
  padding: 2rem;
  background-color: #FFFFFF;
  border: 1px solid #DDDDDD;
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-align-content: stretch;
      -ms-flex-line-pack: stretch;
          align-content: stretch;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}

html body #main #shortlinks .shortlink-list .shortlink-block .info {
  width: calc(100% - 35rem);
  margin-right: 1rem;
  padding-right: 1rem;
  border-right: 1px solid #DDDDDD;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-align-content: flex-end;
      -ms-flex-line-pack: end;
          align-content: flex-end;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media (max-width: 90rem) {
  html body #main #shortlinks .shortlink-list .shortlink-block .info {
    width: 100%;
    margin-right: 0;
    padding-right: 0;
    border-right: none;
  }
}

html body #main #shortlinks .shortlink-list .shortlink-block .info .content {
  width: 90%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-content: flex-start;
      -ms-flex-line-pack: start;
          align-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}

@media (max-width: 90rem) {
  html body #main #shortlinks .shortlink-list .shortlink-block .info .content {
    width: 100%;
  }
}

html body #main #shortlinks .shortlink-list .shortlink-block .info .content .name {
  margin-bottom: 2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

html body #main #shortlinks .shortlink-list .shortlink-block .info .content .name a {
  font-size: 2rem;
  line-height: 2.2rem;
  font-weight: 500;
  text-decoration: none;
  opacity: 1;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

html body #main #shortlinks .shortlink-list .shortlink-block .info .content .name a:hover {
  opacity: 0.6;
}

html body #main #shortlinks .shortlink-list .shortlink-block .info .content .details {
  width: 90%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-content: flex-start;
      -ms-flex-line-pack: start;
          align-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}

html body #main #shortlinks .shortlink-list .shortlink-block .info .content .details .left {
  margin-right: 2rem;
  padding: 0.5rem 0;
  padding-right: 2rem;
  border-right: 1px solid #DDDDDD;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-content: flex-start;
      -ms-flex-line-pack: start;
          align-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}

html body #main #shortlinks .shortlink-list .shortlink-block .info .content .details .left .team {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  line-height: 1.2rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

html body #main #shortlinks .shortlink-list .shortlink-block .info .content .details .left .date {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  line-height: 1.2rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

html body #main #shortlinks .shortlink-list .shortlink-block .info .content .details .left .status {
  font-size: 1.1rem;
  line-height: 1.2rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

html body #main #shortlinks .shortlink-list .shortlink-block .info .content .details .right {
  width: 70%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-content: flex-start;
      -ms-flex-line-pack: start;
          align-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}

html body #main #shortlinks .shortlink-list .shortlink-block .info .content .details .right .long-url {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.5rem;
}

html body #main #shortlinks .shortlink-list .shortlink-block .info .content .details .right .long-url a {
  font-size: 1.1rem;
  line-height: 1.2rem;
  text-decoration: none;
  opacity: 0.6;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

html body #main #shortlinks .shortlink-list .shortlink-block .info .content .details .right .long-url a:hover {
  opacity: 1;
}

html body #main #shortlinks .shortlink-list .shortlink-block .info .content .details .right .shortlink {
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-bottom: 0.5rem;
}

html body #main #shortlinks .shortlink-list .shortlink-block .info .content .details .right .shortlink .copy-icon {
  display: inline-block;
  background-image: url("../images/icons/copy.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 1rem;
  height: 1rem;
  cursor: pointer;
}

html body #main #shortlinks .shortlink-list .shortlink-block .info .content .details .right .shortlink a {
  display: inline-block;
  font-size: 1.1rem;
  line-height: 1.2rem;
  text-decoration: none;
  opacity: 0.6;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

html body #main #shortlinks .shortlink-list .shortlink-block .info .content .details .right .shortlink a:hover {
  opacity: 1;
}

html body #main #shortlinks .shortlink-list .shortlink-block .info .content .details .right .tag-list {
  font-size: 1.1rem;
  line-height: 1.2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-content: flex-start;
      -ms-flex-line-pack: start;
          align-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

html body #main #shortlinks .shortlink-list .shortlink-block .info .content .details .right .tag-list .tag {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  padding: 0.4rem 0.8rem;
  background-color: #CCCCCC;
  border-radius: 6px;
  text-decoration: none;
  opacity: 0.6;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

html body #main #shortlinks .shortlink-list .shortlink-block .info .content .details .right .tag-list .tag:hover {
  opacity: 1;
}

html body #main #shortlinks .shortlink-list .shortlink-block .info .action-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

html body #main #shortlinks .shortlink-list .shortlink-block .info .action-links a {
  display: block;
  padding: 1rem;
  text-decoration: none;
  color: black;
  opacity: 0.6;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

html body #main #shortlinks .shortlink-list .shortlink-block .info .action-links a:hover {
  opacity: 1;
}

html body #main #shortlinks .shortlink-list .shortlink-block .chart {
  width: 30rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #32597C;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.6rem;
}

@media (max-width: 90rem) {
  html body #main #shortlinks .shortlink-list .shortlink-block .chart {
    display: none;
  }
}

html body #main #shortlinks .pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}

html body #main #shortlinks .pagination .page {
  text-decoration: none;
  background-color: #DDDDDD;
  border: 1px solid #DDDDDD;
  border-radius: 2px;
  padding: 0.8rem 1rem;
  margin-right: 0.5rem;
}

html body #main #shortlinks .pagination .page-link {
  text-decoration: none;
  background-color: white;
  border: 1px solid #DDDDDD;
  border-radius: 2px;
  padding: 0.8rem 1rem;
  margin-right: 0.5rem;
  cursor: pointer;
}

html body #main #shortlinks .pagination .page-null {
  text-decoration: none;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 0.8rem 1rem;
  margin-right: 0.5rem;
}

html body #main section#shortlink {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-content: flex-start;
      -ms-flex-line-pack: start;
          align-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

html body #main section#shortlink .info {
  padding: 4rem;
  background-color: #FFFFFF;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}

html body #main section#shortlink .info .content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}

html body #main section#shortlink .info .content .name {
  font-size: 2rem;
  line-height: 2.2rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

html body #main section#shortlink .info .content .details {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-content: flex-start;
      -ms-flex-line-pack: start;
          align-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}

html body #main section#shortlink .info .content .details .left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-right: 2rem;
  padding: 0.5rem 0;
  padding-right: 2rem;
  border-right: 1px solid #CCCCCC;
}

html body #main section#shortlink .info .content .details .left .team {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  line-height: 1.2rem;
}

html body #main section#shortlink .info .content .details .left .date {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  line-height: 1.2rem;
}

html body #main section#shortlink .info .content .details .left .status {
  font-size: 1.1rem;
  line-height: 1.2rem;
}

html body #main section#shortlink .info .content .details .right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-left: 2rem;
  padding: 0.5rem 0;
  padding-left: 2rem;
  border-left: 1px solid #CCCCCC;
}

html body #main section#shortlink .info .content .details .right .long-url {
  margin-bottom: 0.5rem;
}

html body #main section#shortlink .info .content .details .right .long-url a {
  font-size: 1.1rem;
  line-height: 1.2rem;
  text-decoration: none;
  opacity: 0.6;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

html body #main section#shortlink .info .content .details .right .long-url a:hover {
  opacity: 1;
}

html body #main section#shortlink .info .content .details .right .shortlink {
  margin-bottom: 0.5rem;
}

html body #main section#shortlink .info .content .details .right .shortlink .copy-icon {
  display: inline-block;
  background-image: url("../images/icons/copy.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 1rem;
  height: 1rem;
  cursor: pointer;
}

html body #main section#shortlink .info .content .details .right .shortlink a {
  display: inline-block;
  font-size: 1.1rem;
  line-height: 1.2rem;
  text-decoration: none;
  opacity: 0.6;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

html body #main section#shortlink .info .content .details .right .shortlink a:hover {
  opacity: 1;
}

html body #main section#shortlink .info .content .details .right .tag-list {
  font-size: 1.1rem;
  line-height: 1.2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-content: flex-start;
      -ms-flex-line-pack: start;
          align-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

html body #main section#shortlink .info .content .details .right .tag-list .tag {
  margin-right: 0.5rem;
  padding: 0.4rem 0.8rem;
  background-color: #CCCCCC;
  border-radius: 6px;
  text-decoration: none;
  opacity: 0.6;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

html body #main section#shortlink .info .content .details .right .tag-list .tag:hover {
  opacity: 1;
}

html body #main section#shortlink .info .content .details #qr {
  width: 80px;
  height: 80px;
  overflow: hidden;
  opacity: 0;
  margin-right: 10px;
}

html body #main section#shortlink .info .content .details #qr.active {
  opacity: 1;
}

html body #main section#shortlink .info .content .details #qr canvas {
  width: 80px;
  height: 80px;
  overflow: hidden;
}

html body #main section#shortlink .info .content .details #qr a {
  margin: 0;
  padding: 0;
  text-decoration: none;
  border: none;
  width: 80px;
  height: 80px;
  overflow: hidden;
}

html body #main section#shortlink .info .content .details #qr a img {
  width: 80px;
  height: 80px;
  border: none;
  cursor: pointer;
}

html body #main section#shortlink .info .content .details #qr-svg-link {
  text-decoration: underline;
  cursor: pointer;
}

html body #main section#shortlink .info .content .details #qr-svg-wrapper {
  display: none;
  width: 80px;
  height: 80px;
}

html body #main section#shortlink .info .action-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

html body #main section#shortlink .info .action-links a {
  display: block;
  padding: 1rem;
  text-decoration: none;
  color: black;
  opacity: 0.6;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

html body #main section#shortlink .info .action-links a:hover {
  opacity: 1;
}

html body #main section#shortlink .info .action-links a.button {
  color: #FFFFFF;
  background-color: #39a6c7;
  padding: 0.8rem 1.2rem;
  font-size: 1.2rem;
  font-weight: 700;
  opacity: 0.75;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  margin-left: 1rem;
}

html body #main section#shortlink .info .action-links a.button:hover {
  opacity: 1;
}

html body #main section#shortlink .analytics {
  padding: 2rem 4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-content: flex-start;
      -ms-flex-line-pack: start;
          align-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}

html body #main section#create-shortlink {
  padding: 2rem 4rem;
}

html body #main section#create-shortlink h1.title {
  font-size: 3rem;
  line-height: 4rem;
  margin-bottom: 2rem;
}

html body #main section#create-shortlink form {
  width: 60rem;
  max-width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}

html body #main section#create-shortlink form .line {
  width: 100%;
  margin-bottom: 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-content: flex-start;
      -ms-flex-line-pack: start;
          align-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

html body #main section#create-shortlink form .formfield {
  width: 100%;
  margin-right: 2rem;
}

html body #main section#create-shortlink form select {
  width: 100%;
  font-size: 1.1rem;
  padding: 0.8rem 1rem;
  background-color: #FFFFFF;
  border: 1px solid #DDDDDD;
  border-radius: 3px;
  outline: none;
}

html body #main section#create-shortlink form input {
  width: 100%;
  font-size: 1.1rem;
  padding: 0.8rem 1rem;
  border: 1px solid #DDDDDD;
  border-radius: 3px;
  outline: none;
}

html body #main section#create-shortlink form button {
  margin-top: 0.5rem;
  color: #FFFFFF;
  background-color: #92C739;
  border: none;
  padding: 0.8rem 2rem;
  font-size: 1.2rem;
  font-weight: 700;
  opacity: 0.75;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
}

html body #main section#create-shortlink form button:hover {
  opacity: 1;
}

html body #main section#create-shortlink .error-message {
  margin-top: 1rem;
  color: red;
}

html body #main section#edit-shortlink {
  padding: 2rem 4rem;
}

html body #main section#edit-shortlink h1.title {
  font-size: 3rem;
  line-height: 4rem;
  margin-bottom: 2rem;
}

html body #main section#edit-shortlink form {
  width: 60rem;
  max-width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}

html body #main section#edit-shortlink form .line {
  width: 100%;
  margin-bottom: 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-content: flex-start;
      -ms-flex-line-pack: start;
          align-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

html body #main section#edit-shortlink form .formfield {
  width: 100%;
  margin-right: 2rem;
}

html body #main section#edit-shortlink form select {
  width: 100%;
  font-size: 1.1rem;
  padding: 0.8rem 1rem;
  background-color: #FFFFFF;
  border: 1px solid #DDDDDD;
  border-radius: 3px;
  outline: none;
}

html body #main section#edit-shortlink form input {
  width: 100%;
  font-size: 1.1rem;
  padding: 0.8rem 1rem;
  border: 1px solid #DDDDDD;
  border-radius: 3px;
  outline: none;
}

html body #main section#edit-shortlink form input.disabled {
  color: #777777;
  cursor: default;
}

html body #main section#edit-shortlink form button {
  margin-top: 0.5rem;
  color: #FFFFFF;
  background-color: #92C739;
  border: none;
  padding: 0.8rem 2rem;
  font-size: 1.2rem;
  font-weight: 700;
  opacity: 0.75;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
}

html body #main section#edit-shortlink form button:hover {
  opacity: 1;
}

html body #main section#edit-shortlink .error-message {
  margin-top: 1rem;
  color: red;
}

html body #main section#edit-shortlink .backlink {
  margin-top: 2rem;
}

html body #main section#edit-shortlink .backlink a {
  display: block;
  padding: 1rem;
  text-decoration: none;
  color: black;
  opacity: 0.6;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

html body #main section#edit-shortlink .backlink a:hover {
  opacity: 1;
}

html body #main section#imports {
  padding: 2rem 4rem;
}

html body #main section#imports h1 {
  font-size: 2rem;
  line-height: 2rem;
  margin-bottom: 2rem;
}

html body #main section#imports .action-bar {
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  z-index: 20;
}

html body #main section#imports .action-bar .left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}

html body #main section#imports .action-bar .right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}

html body #main section#imports .action-bar .right .create-button {
  color: #FFFFFF;
  background-color: #92C739;
  padding: 0.8rem 1.2rem;
  font-size: 1.2rem;
  font-weight: 700;
  opacity: 0.75;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

html body #main section#imports .action-bar .right .create-button:hover {
  opacity: 1;
}

html body #main section#imports table.import-list {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid black;
}

html body #main section#imports table.import-list thead tr {
  background-color: #CCCCCC;
}

html body #main section#imports table.import-list thead th {
  padding: 0.5rem 1rem;
  border: 1px solid black;
  text-align: center;
  vertical-align: middle;
}

html body #main section#imports table.import-list tbody tr {
  background-color: #FFFFFF;
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}

html body #main section#imports table.import-list tbody tr:hover {
  background-color: #F6F6F6;
}

html body #main section#imports table.import-list tbody td {
  padding: 0.5rem 1rem;
  border: 1px solid black;
  text-align: center;
  vertical-align: middle;
}

html body #main section#imports table.import-list tbody td .tag-list {
  padding: 0.25rem 0;
}

html body #main section#imports table.import-list tbody td .tag-list .tag {
  display: inline-block;
  margin-right: 0.5rem;
  padding: 0.4rem 0.8rem;
  background-color: #CCCCCC;
  border-radius: 6px;
  font-size: 1.1rem;
  line-height: 1.2rem;
  text-decoration: none;
  opacity: 0.6;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

html body #main section#imports table.import-list tbody td .tag-list .tag:hover {
  opacity: 1;
}

html body #main section#create-import {
  padding: 2rem 4rem;
}

html body #main section#create-import h1 {
  font-size: 2rem;
  line-height: 2rem;
  margin-bottom: 2rem;
}

html body #main section#create-import form {
  width: 60rem;
  max-width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}

html body #main section#create-import form .line {
  width: 100%;
  margin-bottom: 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-content: flex-start;
      -ms-flex-line-pack: start;
          align-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

html body #main section#create-import form .formfield {
  width: 100%;
  margin-right: 2rem;
}

html body #main section#create-import form select {
  width: 100%;
  font-size: 1.1rem;
  padding: 0.8rem 1rem;
  background-color: #FFFFFF;
  border: 1px solid #DDDDDD;
  border-radius: 3px;
  outline: none;
}

html body #main section#create-import form input {
  width: 100%;
  font-size: 1.1rem;
  padding: 0.8rem 1rem;
  border: 1px solid #DDDDDD;
  border-radius: 3px;
  outline: none;
}

html body #main section#create-import form button {
  margin-top: 0.5rem;
  color: #FFFFFF;
  background-color: #92C739;
  border: none;
  padding: 0.8rem 2rem;
  font-size: 1.2rem;
  font-weight: 700;
  opacity: 0.75;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
}

html body #main section#create-import form button:hover {
  opacity: 1;
}

html body #main section#create-import .error-message {
  margin-top: 1rem;
  color: red;
}

html body #main section#create-import .info {
  margin-top: 4rem;
}

html body #main section#analytics {
  padding: 2rem 4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-content: flex-start;
      -ms-flex-line-pack: start;
          align-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}

html body #main section#analytics h1 {
  font-size: 2rem;
  line-height: 2rem;
  margin-bottom: 2rem;
}

html body #main section#settings {
  padding: 2rem 4rem;
}

html body #main section#settings h1 {
  font-size: 2rem;
  line-height: 2rem;
  margin-bottom: 2rem;
}

html body #main section#settings .settings-list {
  margin-left: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-content: flex-start;
      -ms-flex-line-pack: start;
          align-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}

html body #main section#settings .settings-list a.settings-link {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  line-height: 1.3rem;
  text-decoration: none;
  opacity: 0.6;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

html body #main section#settings .settings-list a.settings-link:hover {
  opacity: 1;
}

html body #main section#settings-domains {
  width: 50%;
  padding: 2rem 4rem;
}

html body #main section#settings-domains h1 {
  font-size: 2rem;
  line-height: 2rem;
  margin-bottom: 2rem;
}

html body #main section#settings-domains h2 {
  font-size: 1.5rem;
  line-height: 1.5rem;
  margin-bottom: 1rem;
}

html body #main section#settings-domains .action-bar {
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  z-index: 20;
}

html body #main section#settings-domains .action-bar .left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}

html body #main section#settings-domains .action-bar .right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}

html body #main section#settings-domains .action-bar .right .create-button {
  color: #FFFFFF;
  background-color: #92C739;
  padding: 0.8rem 1.2rem;
  font-size: 1.2rem;
  font-weight: 700;
  opacity: 0.75;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

html body #main section#settings-domains .action-bar .right .create-button:hover {
  opacity: 1;
}

html body #main section#settings-domains .action-bar .right .delete-button {
  color: #FFFFFF;
  background-color: #C0392B;
  padding: 0.8rem 1.2rem;
  font-size: 1.2rem;
  font-weight: 700;
  opacity: 0.75;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

html body #main section#settings-domains .action-bar .right .delete-button:hover {
  opacity: 1;
}

html body #main section#settings-domains a.back-link {
  display: block;
  margin-top: 2rem;
  font-size: 1.2rem;
  line-height: 1.2rem;
  text-decoration: none;
  opacity: 0.6;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

html body #main section#settings-domains a.back-link:hover {
  opacity: 1;
}

html body #main section#settings-domains table.domain-list {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid black;
}

html body #main section#settings-domains table.domain-list thead tr {
  background-color: #CCCCCC;
}

html body #main section#settings-domains table.domain-list thead th {
  padding: 0.5rem 1rem;
  border: 1px solid black;
  text-align: center;
  vertical-align: middle;
}

html body #main section#settings-domains table.domain-list tbody tr {
  background-color: #FFFFFF;
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}

html body #main section#settings-domains table.domain-list tbody tr:hover {
  background-color: #F6F6F6;
}

html body #main section#settings-domains table.domain-list tbody td {
  padding: 0.5rem 1rem;
  border: 1px solid black;
  text-align: center;
  vertical-align: middle;
}

html body #main section#settings-domains table.domain-info tbody tr td {
  padding: 0.5rem;
}

html body #main section#settings-domains table.domain-info tbody tr td.label {
  text-align: right;
  text-decoration: underline;
}

html body #main section#settings-domains table.domain-info tbody tr td.value {
  text-align: left;
}

html body #main section#settings-domains table.domain-info tbody tr td.value a {
  font-size: 1rem;
  line-height: 1rem;
  text-decoration: none;
  opacity: 0.4;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

html body #main section#settings-domains table.domain-info tbody tr td.value a:hover {
  opacity: 1;
}

html body #main section#settings-domains form {
  width: 60rem;
  max-width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}

html body #main section#settings-domains form .line {
  width: 100%;
  margin-bottom: 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-content: flex-start;
      -ms-flex-line-pack: start;
          align-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

html body #main section#settings-domains form .formfield {
  width: 100%;
  margin-right: 2rem;
}

html body #main section#settings-domains form .formfield.last {
  width: unset;
}

html body #main section#settings-domains form select {
  width: 100%;
  font-size: 1.1rem;
  padding: 0.8rem 1rem;
  background-color: #FFFFFF;
  border: 1px solid #DDDDDD;
  border-radius: 3px;
  outline: none;
}

html body #main section#settings-domains form input {
  width: 100%;
  font-size: 1.1rem;
  padding: 0.8rem 1rem;
  border: 1px solid #DDDDDD;
  border-radius: 3px;
  outline: none;
}

html body #main section#settings-domains form button {
  margin-top: 0.5rem;
  color: #FFFFFF;
  background-color: #92C739;
  border: none;
  padding: 0.8rem 2rem;
  font-size: 1.2rem;
  font-weight: 700;
  opacity: 0.75;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
}

html body #main section#settings-domains form button:hover {
  opacity: 1;
}

html body #main section#settings-domains .error-message {
  margin-top: 1rem;
  color: red;
}

html body #main section#settings-teams {
  padding: 2rem 4rem;
}

html body #main section#settings-teams h1 {
  font-size: 2rem;
  line-height: 2rem;
  margin-bottom: 2rem;
}

html body #main section#settings-teams h2 {
  font-size: 1.5rem;
  line-height: 1.5rem;
  margin-bottom: 1rem;
}

html body #main section#settings-teams .action-bar {
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  z-index: 20;
}

html body #main section#settings-teams .action-bar .left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}

html body #main section#settings-teams .action-bar .right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}

html body #main section#settings-teams .action-bar .right .create-button {
  color: #FFFFFF;
  background-color: #92C739;
  padding: 0.8rem 1.2rem;
  font-size: 1.2rem;
  font-weight: 700;
  opacity: 0.75;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

html body #main section#settings-teams .action-bar .right .create-button:hover {
  opacity: 1;
}

html body #main section#settings-teams .action-bar .right .delete-button {
  color: #FFFFFF;
  background-color: #C0392B;
  padding: 0.8rem 1.2rem;
  font-size: 1.2rem;
  font-weight: 700;
  opacity: 0.75;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

html body #main section#settings-teams .action-bar .right .delete-button:hover {
  opacity: 1;
}

html body #main section#settings-teams a.back-link {
  display: block;
  margin-top: 2rem;
  font-size: 1.2rem;
  line-height: 1.2rem;
  text-decoration: none;
  opacity: 0.6;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

html body #main section#settings-teams a.back-link:hover {
  opacity: 1;
}

html body #main section#settings-teams table.team-list {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid black;
}

html body #main section#settings-teams table.team-list thead tr {
  background-color: #CCCCCC;
}

html body #main section#settings-teams table.team-list thead th {
  padding: 0.5rem 1rem;
  border: 1px solid black;
  text-align: center;
  vertical-align: middle;
}

html body #main section#settings-teams table.team-list tbody tr {
  background-color: #FFFFFF;
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}

html body #main section#settings-teams table.team-list tbody tr:hover {
  background-color: #F6F6F6;
}

html body #main section#settings-teams table.team-list tbody td {
  padding: 0.5rem 1rem;
  border: 1px solid black;
  text-align: center;
  vertical-align: middle;
}

html body #main section#settings-teams table.team-list tbody td .domain-list {
  padding: 0.25rem 0;
}

html body #main section#settings-teams table.team-list tbody td .domain-list .domain {
  display: inline-block;
  margin-right: 0.5rem;
  padding: 0.4rem 0.8rem;
  background-color: #CCCCCC;
  border-radius: 6px;
  font-size: 1.1rem;
  line-height: 1.2rem;
  text-decoration: none;
  opacity: 1;
}

html body #main section#settings-teams table.team-info tbody tr td {
  padding: 0.5rem;
}

html body #main section#settings-teams table.team-info tbody tr td.label {
  text-align: right;
  text-decoration: underline;
}

html body #main section#settings-teams table.team-info tbody tr td.value {
  text-align: left;
}

html body #main section#settings-teams table.team-info tbody tr td.value a {
  font-size: 1rem;
  line-height: 1rem;
  text-decoration: none;
  opacity: 0.4;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

html body #main section#settings-teams table.team-info tbody tr td.value a:hover {
  opacity: 1;
}

html body #main section#settings-teams form {
  width: 60rem;
  max-width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}

html body #main section#settings-teams form .line {
  width: 100%;
  margin-bottom: 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-content: flex-start;
      -ms-flex-line-pack: start;
          align-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

html body #main section#settings-teams form .formfield {
  width: 100%;
  margin-right: 2rem;
}

html body #main section#settings-teams form .formfield.last {
  width: unset;
}

html body #main section#settings-teams form select {
  width: 100%;
  font-size: 1.1rem;
  padding: 0.8rem 1rem;
  background-color: #FFFFFF;
  border: 1px solid #DDDDDD;
  border-radius: 3px;
  outline: none;
}

html body #main section#settings-teams form input {
  width: 100%;
  font-size: 1.1rem;
  padding: 0.8rem 1rem;
  border: 1px solid #DDDDDD;
  border-radius: 3px;
  outline: none;
}

html body #main section#settings-teams form .domain-list {
  margin-left: 1rem;
}

html body #main section#settings-teams form .domain-list label {
  display: block;
  margin-top: 0.5rem;
  cursor: pointer;
}

html body #main section#settings-teams form .domain-list label input {
  width: unset;
}

html body #main section#settings-teams form button {
  margin-top: 0.5rem;
  color: #FFFFFF;
  background-color: #92C739;
  border: none;
  padding: 0.8rem 2rem;
  font-size: 1.2rem;
  font-weight: 700;
  opacity: 0.75;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
}

html body #main section#settings-teams form button:hover {
  opacity: 1;
}

html body #main section#settings-teams .error-message {
  margin-top: 1rem;
  color: red;
}

html body #main section#settings-users {
  padding: 2rem 4rem;
}

html body #main section#settings-users h1 {
  font-size: 2rem;
  line-height: 2rem;
  margin-bottom: 2rem;
}

html body #main section#settings-users h2 {
  font-size: 1.5rem;
  line-height: 1.5rem;
  margin-bottom: 1rem;
}

html body #main section#settings-users .action-bar {
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  z-index: 20;
}

html body #main section#settings-users .action-bar .left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}

html body #main section#settings-users .action-bar .right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}

html body #main section#settings-users .action-bar .right .create-button {
  color: #FFFFFF;
  background-color: #92C739;
  padding: 0.8rem 1.2rem;
  font-size: 1.2rem;
  font-weight: 700;
  opacity: 0.75;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

html body #main section#settings-users .action-bar .right .create-button:hover {
  opacity: 1;
}

html body #main section#settings-users .action-bar .right .delete-button {
  color: #FFFFFF;
  background-color: #C0392B;
  padding: 0.8rem 1.2rem;
  font-size: 1.2rem;
  font-weight: 700;
  opacity: 0.75;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

html body #main section#settings-users .action-bar .right .delete-button:hover {
  opacity: 1;
}

html body #main section#settings-users a.back-link {
  display: block;
  margin-top: 2rem;
  font-size: 1.2rem;
  line-height: 1.2rem;
  text-decoration: none;
  opacity: 0.6;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

html body #main section#settings-users a.back-link:hover {
  opacity: 1;
}

html body #main section#settings-users table.user-list {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid black;
}

html body #main section#settings-users table.user-list thead tr {
  background-color: #CCCCCC;
}

html body #main section#settings-users table.user-list thead th {
  padding: 0.5rem 1rem;
  border: 1px solid black;
  text-align: center;
  vertical-align: middle;
}

html body #main section#settings-users table.user-list tbody tr {
  background-color: #FFFFFF;
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}

html body #main section#settings-users table.user-list tbody tr:hover {
  background-color: #F6F6F6;
}

html body #main section#settings-users table.user-list tbody td {
  padding: 0.5rem 1rem;
  border: 1px solid black;
  text-align: center;
  vertical-align: middle;
}

html body #main section#settings-users table.user-list tbody td .team-list {
  padding: 0.25rem 0;
}

html body #main section#settings-users table.user-list tbody td .team-list .team {
  display: inline-block;
  margin-right: 0.5rem;
  padding: 0.4rem 0.8rem;
  background-color: #CCCCCC;
  border-radius: 6px;
  font-size: 1.1rem;
  line-height: 1.2rem;
  text-decoration: none;
  opacity: 1;
}

html body #main section#settings-users table.user-info tbody tr td {
  padding: 0.5rem;
}

html body #main section#settings-users table.user-info tbody tr td.label {
  text-align: right;
  text-decoration: underline;
}

html body #main section#settings-users table.user-info tbody tr td.value {
  text-align: left;
}

html body #main section#settings-users table.user-info tbody tr td.value a {
  font-size: 1rem;
  line-height: 1rem;
  text-decoration: none;
  opacity: 0.4;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

html body #main section#settings-users table.user-info tbody tr td.value a:hover {
  opacity: 1;
}

html body #main section#settings-users form {
  width: 60rem;
  max-width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}

html body #main section#settings-users form .line {
  width: 100%;
  margin-bottom: 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-content: flex-start;
      -ms-flex-line-pack: start;
          align-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

html body #main section#settings-users form .formfield {
  width: 100%;
  margin-right: 2rem;
}

html body #main section#settings-users form .formfield.last {
  width: unset;
}

html body #main section#settings-users form select {
  width: 100%;
  font-size: 1.1rem;
  padding: 0.8rem 1rem;
  background-color: #FFFFFF;
  border: 1px solid #DDDDDD;
  border-radius: 3px;
  outline: none;
}

html body #main section#settings-users form input {
  width: 100%;
  font-size: 1.1rem;
  padding: 0.8rem 1rem;
  border: 1px solid #DDDDDD;
  border-radius: 3px;
  outline: none;
}

html body #main section#settings-users form .team-list {
  margin-left: 1rem;
}

html body #main section#settings-users form .team-list label {
  display: block;
  margin-top: 0.5rem;
  cursor: pointer;
}

html body #main section#settings-users form .team-list label input {
  width: unset;
}

html body #main section#settings-users form button {
  margin-top: 0.5rem;
  color: #FFFFFF;
  background-color: #92C739;
  border: none;
  padding: 0.8rem 2rem;
  font-size: 1.2rem;
  font-weight: 700;
  opacity: 0.75;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
}

html body #main section#settings-users form button:hover {
  opacity: 1;
}

html body #main section#settings-users .error-message {
  margin-top: 1rem;
  color: red;
}

html body #main section#settings-utms {
  width: 80%;
  padding: 2rem 4rem;
}

html body #main section#settings-utms .columns {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

html body #main section#settings-utms .columns > div {
  width: 45%;
  min-width: 400px;
}

html body #main section#settings-utms h1 {
  font-size: 2rem;
  line-height: 2rem;
  margin-bottom: 2rem;
}

html body #main section#settings-utms h2 {
  font-size: 1.5rem;
  line-height: 1.5rem;
  margin-bottom: 1rem;
}

html body #main section#settings-utms .action-bar {
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  z-index: 20;
}

html body #main section#settings-utms .action-bar .left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}

html body #main section#settings-utms .action-bar .right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}

html body #main section#settings-utms .action-bar .right .create-button {
  color: #FFFFFF;
  background-color: #92C739;
  padding: 0.8rem 1.2rem;
  font-size: 1.2rem;
  font-weight: 700;
  opacity: 0.75;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

html body #main section#settings-utms .action-bar .right .create-button:hover {
  opacity: 1;
}

html body #main section#settings-utms .action-bar .right .delete-button {
  color: #FFFFFF;
  background-color: #C0392B;
  padding: 0.8rem 1.2rem;
  font-size: 1.2rem;
  font-weight: 700;
  opacity: 0.75;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

html body #main section#settings-utms .action-bar .right .delete-button:hover {
  opacity: 1;
}

html body #main section#settings-utms a.back-link {
  display: block;
  margin-top: 2rem;
  font-size: 1.2rem;
  line-height: 1.2rem;
  text-decoration: none;
  opacity: 0.6;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

html body #main section#settings-utms a.back-link:hover {
  opacity: 1;
}

html body #main section#settings-utms table.utm-list {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid black;
  margin-bottom: 4rem;
}

html body #main section#settings-utms table.utm-list thead tr {
  background-color: #CCCCCC;
}

html body #main section#settings-utms table.utm-list thead th {
  padding: 0.5rem 1rem;
  border: 1px solid black;
  text-align: center;
  vertical-align: middle;
}

html body #main section#settings-utms table.utm-list tbody tr {
  background-color: #FFFFFF;
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}

html body #main section#settings-utms table.utm-list tbody tr:hover {
  background-color: #F6F6F6;
}

html body #main section#settings-utms table.utm-list tbody td {
  padding: 0.5rem 1rem;
  border: 1px solid black;
  text-align: center;
  vertical-align: middle;
}

html body #main section#settings-utms table.utm-info tbody tr td {
  padding: 0.5rem;
}

html body #main section#settings-utms table.utm-info tbody tr td.label {
  text-align: right;
  text-decoration: underline;
}

html body #main section#settings-utms table.utm-info tbody tr td.value {
  text-align: left;
}

html body #main section#settings-utms table.utm-info tbody tr td.value a {
  font-size: 1rem;
  line-height: 1rem;
  text-decoration: none;
  opacity: 0.4;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

html body #main section#settings-utms table.utm-info tbody tr td.value a:hover {
  opacity: 1;
}

html body #main section#settings-utms .delete-button {
  margin-left: 1rem;
}

html body #main section#settings-utms form {
  width: 60rem;
  max-width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}

html body #main section#settings-utms form .line {
  width: 100%;
  margin-bottom: 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-content: flex-start;
      -ms-flex-line-pack: start;
          align-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

html body #main section#settings-utms form .formfield {
  width: 100%;
  margin-right: 2rem;
}

html body #main section#settings-utms form .formfield.last {
  width: unset;
}

html body #main section#settings-utms form select {
  width: 100%;
  font-size: 1.1rem;
  padding: 0.8rem 1rem;
  background-color: #FFFFFF;
  border: 1px solid #DDDDDD;
  border-radius: 3px;
  outline: none;
}

html body #main section#settings-utms form input {
  width: 100%;
  font-size: 1.1rem;
  padding: 0.8rem 1rem;
  border: 1px solid #DDDDDD;
  border-radius: 3px;
  outline: none;
}

html body #main section#settings-utms form button {
  margin-top: 0.5rem;
  color: #FFFFFF;
  background-color: #92C739;
  border: none;
  padding: 0.8rem 2rem;
  font-size: 1.2rem;
  font-weight: 700;
  opacity: 0.75;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
}

html body #main section#settings-utms form button:hover {
  opacity: 1;
}

html body #main section#settings-utms .error-message {
  margin-top: 1rem;
  color: red;
}

html body #main section#help {
  padding: 2rem 4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-content: flex-start;
      -ms-flex-line-pack: start;
          align-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}

html body #main section#help h1 {
  font-size: 2rem;
  line-height: 2rem;
  margin-bottom: 2rem;
}

html body #main section#help h2 {
  font-size: 1.5rem;
  line-height: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

html body #main section#help h3 {
  font-size: 1.25rem;
  line-height: 1.25rem;
  margin-bottom: 0.5rem;
}

html body #main section#help hr {
  margin-bottom: 2rem;
}

html body #main section#help .links ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

html body #main section#help .links ul li {
  margin-bottom: 0.25rem;
}

html body #main section#help .links ul li a {
  font-size: 1.2rem;
  text-decoration: none;
  color: darkblue;
  opacity: 0.6;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

html body #main section#help .links ul li a:hover {
  opacity: 1;
}

html body #main section#help ol.steps {
  margin-left: 2rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

html body #main section#help ol.steps li {
  margin-bottom: 3rem;
}

html body #main section#help ol.steps li .step-title {
  font-size: 1.2rem;
  line-height: 1.2rem;
}

html body #main section#help ol.steps li ul {
  margin-left: 2rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

html body #main section#help ol.steps li ul li {
  margin-bottom: 0.5rem;
}

html body #main section#help ol.steps li ul li ol {
  margin-left: 2rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

html body #main section#help ol.steps li ul li ol li {
  margin-bottom: 0.5rem;
}

html body #main section#help ol.steps li img {
  margin-top: 1rem;
  border: 1px solid lightgray;
}

html body #main section#help ol.steps li figcaption {
  margin-top: 0.2rem;
}

html body #main .help-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

html body #main .help-icon a {
  display: block;
  border: none;
}

html body #main .help-icon a img {
  width: 20px;
  height: 20px;
  opacity: 0.6;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

html body #main .help-icon:hover a img {
  opacity: 1;
}

html body #main section#error {
  padding: 2rem 4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-content: flex-start;
      -ms-flex-line-pack: start;
          align-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}

html body #main section#error h1 {
  font-size: 2rem;
  line-height: 2rem;
  margin-bottom: 2rem;
}

html body #main section#error a.backlink {
  margin-top: 2rem;
}

html body section#login {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

html body section#login .login-box {
  margin-top: 10rem;
  padding: 4rem 8rem;
  background-color: #CCCCCC;
  border-radius: 0.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

html body section#login .login-box h1.title {
  font-size: 3rem;
  line-height: 4rem;
  margin-bottom: 1rem;
}

html body section#login .login-box h2 {
  font-size: 2rem;
  line-height: 3rem;
  margin-bottom: 1rem;
}

html body section#login .login-box form {
  margin-top: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

html body section#login .login-box form input {
  width: 25rem;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border: 1px solid #777777;
  border-radius: 3px;
  outline: none;
  margin-bottom: 0.5rem;
}

html body section#login .login-box form input:focus {
  border-color: #53bced;
}

html body section#login .login-box form button {
  color: #FFFFFF;
  background-color: #92C739;
  border: none;
  padding: 0.8rem 2rem;
  font-size: 1.2rem;
  font-weight: 700;
  opacity: 0.75;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
}

html body section#login .login-box form button:hover {
  opacity: 1;
}

html body section#login .login-box .error-message {
  margin-top: 1rem;
  color: red;
}

html body #left-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 20rem;
  height: 100%;
  text-align: center;
  color: #FFFFFF;
  background: #000000;
  z-index: 20;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

html body #left-menu h2 {
  width: calc(100% - 4rem);
  padding: 4rem 0;
  font-size: 2.5rem;
  line-height: 2.5rem;
  font-weight: 700;
  color: #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
}

html body #left-menu ul {
  width: calc(100% - 4rem);
  padding: 4rem 0;
  list-style: none;
  border-bottom: 1px solid #FFFFFF;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

html body #left-menu ul li {
  position: relative;
  margin-bottom: 0.5rem;
  padding-left: 3rem;
  opacity: 0.5;
  -webkit-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
}

html body #left-menu ul li.shortlinks::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  padding: 4px 0;
  width: 16px;
  height: 16px;
  background-image: url("../images/icons/list-white.svg");
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: center;
}

html body #left-menu ul li.analytics::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  padding: 2px 0;
  width: 20px;
  height: 20px;
  background-image: url("../images/icons/pulse-white.svg");
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center;
}

html body #left-menu ul li a {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 500;
  color: #FFFFFF;
  text-decoration: none;
}

html body #left-menu ul li.active {
  opacity: 1;
}

html body #left-menu ul li:hover {
  opacity: 1;
}

html body #left-menu ul.teams li {
  margin-bottom: 0;
}

html body #left-menu ul.teams li a {
  font-size: 1.2rem;
  line-height: 2.2rem;
}

html body #left-menu ul.teams li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  padding: 2px 0;
  width: 20px;
  height: 20px;
  background-image: url("../images/icons/star.svg");
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center;
}

html body #left-menu ul.teams li.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  padding: 2px 0;
  width: 20px;
  height: 20px;
  background-image: url("../images/icons/star-active.svg");
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center;
}

html body #left-menu ul.settings-list li {
  margin-bottom: 0;
}

html body #left-menu ul.settings-list li a {
  font-size: 1.2rem;
  line-height: 2.2rem;
}

html body #left-menu a.help-link {
  color: white;
  position: absolute;
  bottom: 2rem;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.5;
  -webkit-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
}

html body #left-menu a.help-link.active {
  opacity: 1;
}

html body #left-menu a.help-link:hover {
  opacity: 1;
}

html body #top-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: calc(100% - 20rem);
  height: 3rem;
  text-align: right;
  color: white;
  background: #444;
  z-index: 10;
}

html body #top-menu ul {
  margin-right: 1rem;
  list-style: none;
}

html body #top-menu ul li {
  display: inline-block;
  color: white;
}

html body #top-menu ul li a {
  display: block;
  padding: 1rem 0.75rem;
  font-size: 1rem;
  line-height: 1rem;
  font-weight: 500;
  color: white;
  text-decoration: none;
  opacity: 0.5;
  -webkit-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
}

html body #top-menu ul li.active a {
  opacity: 1;
}

html body #top-menu ul li:hover a {
  opacity: 1;
}
