@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro&display=swap&css");
@import url(https://fonts.googleapis.com/css?family=Roboto);
@import url(https://fonts.googleapis.com/css?family=Material+Icons);
:root {
  --loading-gif: "/asset/images/loading.gif";
}

:host {
  flex: 1;
}

body, html, .wrapper {
  height: 100%;
  margin: 0;
  background-color: #ecf0f5;
}
body *:not(.fa):not(.far):not(.fas):not(.material-icons):not(pre), html *:not(.fa):not(.far):not(.fas):not(.material-icons):not(pre), .wrapper *:not(.fa):not(.far):not(.fas):not(.material-icons):not(pre) {
  font-family: "Source Sans Pro", sans-serif;
}
body :not(h1) strong, html :not(h1) strong, .wrapper :not(h1) strong {
  color: #fd7e14;
}
body h1, html h1, .wrapper h1 {
  font-size: 24px;
}
body h1 p, html h1 p, .wrapper h1 p {
  font-size: 12px;
  color: #3c8dbc;
}
body a, body .link, html a, html .link, .wrapper a, .wrapper .link {
  color: #3c8dbc;
}
body a:hover, body .link:hover, html a:hover, html .link:hover, .wrapper a:hover, .wrapper .link:hover {
  color: #5fa4cc;
  text-decoration: underline;
  cursor: pointer;
}
body .mft-good-result, html .mft-good-result, .wrapper .mft-good-result {
  color: green;
}
body .mft-bad-result, html .mft-bad-result, .wrapper .mft-bad-result {
  color: darkred;
}

.flex-container {
  height: 100%;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-container .flex-row {
  width: auto;
}
.flex-container .flex-row .flex-item {
  color: #333;
  font-weight: bold;
  font-size: 2em;
  text-align: center;
}

.body-content {
  border: 1px solid #cccccc;
  border-top: 3px solid #3c8dbc;
  border-bottom: 3px solid #cccccc;
  border-radius: 4px;
  padding: 8px 0;
  margin: 0;
  background: #fff;
}

.form-group label {
  width: 100%;
}

.table {
  width: 100%;
}

.btn {
  border-radius: 2px;
}

.btn-group-xs > .btn, .btn-xs {
  padding: 0.25rem 0.4rem;
  font-size: 0.875rem;
  line-height: 0.5;
  border-radius: 0.2rem;
}

.btn-default {
  color: #333;
  background-color: #fff;
  border-color: transparent;
}
.btn-default:hover {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}

.search-area .highlight {
  color: #3c8dbc;
  text-decoration: underline;
}
.search-area li:hover .highlight {
  color: #fff;
}

.btn-ripple {
  position: relative;
  z-index: 100;
}

.elevate-btn {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.8);
  animation: elevate-btn-anim 1s linear;
}
.elevate-btn:focus {
  box-shadow: none;
}

@keyframes elevate-btn-anim {
  100% {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
  }
}
.ripple {
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: scale(0);
  position: absolute;
  opacity: 1;
  z-index: 1000;
  background: red;
}

.rippleEffect {
  animation: rippleDrop 10s linear;
}

@keyframes rippleDrop {
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
@media only screen and (max-width: 600px) {
  /*body {
      background: red !important;
  }*/
}
todo {
  background: yellow;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: bold;
  padding: 0 5px;
  display: block;
}
todo::before {
  content: "TODO: ";
  font-size: 12px;
}
todo .description {
  display: none;
}
todo:hover {
  position: relative;
}
todo:hover .description {
  padding: 5px;
  display: block;
  position: absolute;
  top: 16px;
  left: 16px;
  width: 400px;
  background: #fff;
  color: #000;
  border: 1px solid #000;
}

.btn-dropdown {
  position: relative;
  padding-right: 25px;
  text-align: left;
  width: 100%;
}
.btn-dropdown::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  width: 0;
  height: 0;
  vertical-align: top;
  border-top: 4px solid #000;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  content: "";
}

router-outlet + * {
  width: 100%;
}

.team-logo {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border: 1px solid lightgray;
}

.tooltip strong {
  color: white;
}
.tooltip .tooltip-inner {
  background: #fd7e14;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
}
.tooltip.bs-tooltip-bottom .arrow::before {
  border-bottom-color: #fd7e14;
}
.tooltip.bs-tooltip-right .arrow::before {
  border-right-color: #fd7e14;
}
.tooltip.bs-tooltip-left .arrow::before {
  border-left-color: #fd7e14;
}
.tooltip.bs-tooltip-top .arrow::before {
  border-top-color: #fd7e14;
}

material-button.primary {
  background: #3c8dbc;
  color: #fff;
}
