a {
  color: #62C5E8; }

.btn {
  color: white;
  background: linear-gradient(-90deg, #A6A6FF 0%, #49B6E8 100%);
  font-size: 14px;
  padding: 10px;
  min-width: 130px;
  text-transform: uppercase;
  text-align: center;
  border-radius: 5px;
  transition: all .2s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-weight: 600;
  box-shadow: 0 2px 2px 1px rgba(0, 0, 0, 0.15); }

.btn:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #96D9FF 0%, #49B6E8 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity .3s; }

.btn.min {
  min-width: 0;
  font-size: 13px;
  text-transform: none; }

.btn:hover:before {
  opacity: 1; }

.btn.disabled, .btn.disabled:hover {
  background: #C8C8C8;
  box-shadow: none;
  color: #EDEDED;
  cursor: default; }

.btn.disabled:before {
  display: none; }

/* Home */

h1 {
  margin: 0; }

h4 {
  font-size: 13px;
  text-transform: uppercase;
  margin: 20px 0; }

ul {
  padding: 0; }

.grid, .autogrid {
  grid-gap: 15px; }

body {
  font-family: 'Source Sans Pro', sans-serif;
  background-color: #F5F5F5;
  color: #666666;
  min-width: 1170px;
  font-size: 14px; }
.card {
  background-color: white;
  box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.03);
  border-radius: 10px;
  padding: 15px 30px; }

.tooltiped {
  position: relative; }

.tooltiped:before {
  opacity: 0;
  visibility: hidden;
  opacity: 0;
  top: -5px;
  left: 50%;
  background-color: #EDEDED;
  color: #666666;
  font-size: 12px;
  padding: 8px 10px;
  position: absolute;
  line-height: 1;
  font-family: 'Source Sans Pro', sans-serif;
  content: attr(data-tooltip);
  border-radius: 4px;
  box-shadow: 0 4px 10px 1px rgba(0, 0, 0, 0.35);
  transform: translate(-50%, -50%);
  transition: all .3s;
  transition-delay: .1s;
  white-space: nowrap;
  z-index: 9; }

.tooltiped:hover:before {
  transform: translate(-50%, -100%);
  visibility: visible;
  opacity: 1;
  transition-delay: .6s; }

.tabs {
  display: flex;
  border-bottom: 1px solid #FFA0B6;
  position: relative; }
  .tabs .tab {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    cursor: pointer;
    transition: all .3s;
    color: #C8C8C8; }
  .tabs .tab.active {
    color: #666666; }
  .tabs .tab:hover {
    background-color: #F5F5F5;
    color: #666666; }
  .tabs h4 {
    margin: 0; }

.tabs-body {
  padding: 20px 0; }

.tabs:before {
  content: '';
  width: 50%;
  height: 3px;
  background-color: #FFA0B6;
  position: absolute;
  bottom: 0;
  transition: left .3s; }

.tab1:before {
  left: 0; }

.tab2:before {
  left: 50%; }

.tab-content:not(.active) {
  display: none; }

#tab-history ul li {
  background-color: #F5F5F5;
  border-radius: 5px;
  padding: 5px;
  display: flex;
  width: 100%;
  align-items: center;
  font-size: 16px; }
  #tab-history ul li img {
    width: 25px;
    margin-right: 6px; }
  #tab-history ul li i {
    cursor: pointer;
    font-size: 1.5em;
    color: #FFA0B6;
    transition: color .2s; }
  #tab-history ul li i:hover {
    color: #ff7091; }

#tab-history ul li:not(:last-child) {
  margin-bottom: 10px; }

.model-stadistics {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: white;
  border-radius: 5px;
  overflow: hidden;
  padding: 3px 5px;
  font-weight: 500;
  text-align: center;
  max-width: calc(100% - 20px); }
  .model-stadistics .coord {
    color: #ff7091;
    grid-auto-rows: auto;
    grid-auto-flow: column;
    grid-gap: 10px;
    display: grid; }
    .model-stadistics .coord :first-child {
      color: #0F9DDD; }
    .model-stadistics .coord :last-child {
      color: #8C9BF4; }
  .model-stadistics .stadistics {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: auto;
    justify-content: flex-start;
    grid-gap: 5px;
    color: #8B8B8B; }


/*# sourceMappingURL=style.css.map */