@import url(https://fonts.googleapis.com/css?family=Lato:100,400);



/* ---------------------------------------------- /*
 * Darkmode
/* ---------------------------------------------- */



body.dark {
  background: #202225;
  color: #ffffff;
}

.darkmode {
  font-size: 2rem;
  position: fixed;
  z-index: 999;
  bottom: 3.5em;
  right: 1.4em;
  background-color: rgba(135, 135, 135, 0.5);
  display: none;
  width: 35px;
  height: 35px;
  text-align: center;
  color: #fff;
  line-height: 35px;
}

.dark .darkmode .light,
body:not(.dark) .darkmode .dark {
  display: none;
  font-color: #fff !important;
  color: #fff !important;
}

.dark h2,
.dark h3,
.dark h4,
.dark h1 {
  color: #fff !important;
}

.dark #preloader {
  background: #333 !important;
}

.dark .navbar-custom,
.dark .navbar-custom .dropdown-menu {
  background: #333 !important;
  padding: 0;
}

.dark .header {
  background-color: #000 !important;
}

.dark .form-control {
  background: #333 !important;
  color: #fff !important;
}

.darkmode:hover {
  background-color: rgba(235, 235, 235, 0.8) !important;
  color: #e7746f;
}

.dark .popup {
  background-color: #333 !important;
  font-color: #fff !important;
}

.dark .timeline-date {
  color: #fff !important;
}

.dark .navbar-custom .nav li a:hover {
  background: none;
  outline: 0;
  color: #000;
  font-size: 12px;
  font-family: Raleway, sans-serif;
}

.dark .navbar-custom .navbar-brand,
.dark .navbar-custom .navbar-nav > li > a,
.dark .navbar-custom .navbar-nav .dropdown-menu > li > a {
  font-size: 10px;
  letter-spacing: 3px;
  color: #fff !important;
}

.dark .navbar-custom .navbar-nav > li.active a {
  background: none;
  outline: 0;
  color: #e7746f !important;
  font-size: 12px;
  font-family: Raleway, sans-serif;
  font-weight: bold;
}

.dark .timeline-dates::before {
  left: 0;
  background: linear-gradient(
    to right,
    hsl(240, 7%, 14%),
    hsla(240, 7%, 14%, 0)
  );
}

.dark .timeline-dates::after {
  right: 0;
  background: linear-gradient(
    to left,
    hsl(240, 7%, 14%),
    hsla(240, 7%, 14%, 0)
  );
}

.dark .calltoaction-btn > .btn {
  background: #666;
  color: #111;
  margin-top: 5px;
  margin-bottom: 5px;
}

.dark .calltoaction-btn > .btn:hover {
  background: #555;
}



/* ---------------------------------------------- /*
 * Scroll Up
/* ---------------------------------------------- */



.scroll-up {
  position: fixed;
  display: none;
  z-index: 998;
  bottom: 2em;
  right: 2em;
}

.scroll-up a {
  background-color: rgba(135, 135, 135, 0.5);
  display: block;
  width: 35px;
  height: 35px;
  text-align: center;
  color: #fff;
  font-size: 15px;
  line-height: 30px;
}

.scroll-up a:hover,
.scroll-up a:active {
  background-color: rgba(235, 235, 235, 0.8);
  color: #e7746f;
}



/* ---------------------------------------------- /*
 *Scroll Down
/* ---------------------------------------------- */



.scroll-down {
  position: absolute;
  left: 50%;
  bottom: 40px;
  border: 2px solid #fff;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  margin-left: -15px;
  display: block;
  z-index: 10;
  text-align: center;
}

.scroll-down span {
  position: relative;
  color: #fff;
  -webkit-animation-name: drop;
  -webkit-animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-play-state: running;
  animation-name: drop;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-play-state: running;
}

.scroll-down a {
  color: #fff !important;
}

@-webkit-keyframes drop {
  0% {
    top: 0px;
    opacity: 0;
  }
  30% {
    top: 10px;
    opacity: 1;
  }
  100% {
    top: 25px;
    opacity: 0;
  }
}

@keyframes drop {
  0% {
    top: 0px;
    opacity: 0;
  }
  30% {
    top: 10px;
    opacity: 1;
  }
  100% {
    top: 25px;
    opacity: 0;
  }
}



/* ---------------------------------------------- /*
 * Timeline
/* ---------------------------------------------- */



.timeline-container *,
.timeline-events * {
  outline: 0;
}

.timeline-container,
.timeline-events {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline-navigation-container ul,
.timeline-navigation-container li,
.timeline-events ol,
.timeline-events li,
.timeline-line ol,
.timeline-line li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.timeline {
  opacity: 0;
  transition: opacity 0.2s;
  font-family: sans-serif;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  margin-bottom: 100px;
  padding: 20px;
}

.timeline--loaded {
  opacity: 1;
}

.timeline-container {
  height: 100px;
}

.timeline-dates {
  position: relative;
  height: 100%;
  margin: 0 40px;
  overflow: hidden;
}

.timeline-dates::after,
.timeline-dates::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  height: 100%;
  width: 50px;
}

.timeline-dates::before {
  left: 0;
  background: linear-gradient(to right, hsl(0, 0%, 100%), hsla(0, 0%, 100%, 0));
}

.timeline-dates::after {
  right: 0;
  background: linear-gradient(to left, hsl(0, 0%, 100%), hsla(0, 0%, 100%, 0));
}

.timeline-line {
  position: absolute;
  z-index: 1;
  left: -20px;
  top: 49px;
  height: 2px;
  background-color: #e7746f;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}

.timeline-filling-line {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #000;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.timeline-date {
  position: absolute;
  bottom: 0;
  z-index: 2;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  padding-bottom: 1.5rem;
  color: #000;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-decoration: none;
}

.timeline-date:hover {
  font-weight: 600;
}

.timeline-date::after,
.timeline-date::before {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -8px;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  border-width: 2px;
  border-style: solid;
  border-color: #e7746f;
  background-color: #ededed;
  transition: background-color 0.3s, border-color 0.3s, top 0.3s;
}

.timeline-date::before {
  bottom: -3px;
  height: 9px;
  width: 9px;
  border-width: 0px;
  border-color: transparent;
  background-color: transparent;
}

.timeline-date:hover::before,
.timeline-date:hover::after {
  transition: background-color 0.3s, border-color 0.3s, top 0.3s;
}

.timeline-date:hover::after {
  background-color: #ededed;
  border-color: #e7746f;
}

.timeline-date--selected {
  pointer-events: none;
  text-color: #e7746f;
}

.timeline-date--selected::after {
  background-color: #ededed;
  border-color: #e7746f;
}

.timeline-date--selected::before {
  background-color: #e7746f;
}

.timeline-date--older-event::after {
  background-color: #e7746f;
  border-color: #e7746f;
}

.timeline-navigation {
  font-size: 0;
  position: absolute;
  z-index: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 34px;
  width: 34px;
  border-radius: 50%;
  border-width: 2px;
  border-style: solid;
  border-color: #ededed;
  transition: border-color 0.3s;
}

.timeline-navigation::after {
  content: "";
  position: absolute;
  height: 16px;
  width: 16px;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAgCAYAAAAbifjMAAABQUlEQVRIS9XUwWrCQBAG4JnEhiRHBQut+AY+gEq8tLSvUuih9Ek8iL5K0YMEvPkEHjwo2lYQek2IMdOJJ7tuki5LDnoKyHzZnZn8CJo/1KwHKfB299iMKcHh93Rd9IIL4OX2qX5j0QwRLTpG3uDT3+YhF8B747kaY+Iz0OLCVRxE7dHe32Uh0iucI0SwhIPZGew+9jIks4l/EIAFRGZPhuROQUQqCXb72/HP+UnKA7SuoNVEsfgYRp7SGF/vH2qmacwB0CjagbSZmat8AINGX5ON8ioXFYj/l/M1qpyinBMEQdBMG+w4jnoeEFE9DMMZAxY/e67rquUBF1UZ8Bk45YFt223OBrU8EJAlIx1G1PJAQBaM9GRI7hQkSJeR/+eBFqB1Ba0mSoo9pTEyUOM94DwAo2gHMvMgXWWGiLfwCvLgF1jY2yHNUya7AAAAAElFTkSuQmCC)
    no-repeat 0 0;
}

.timeline-navigation:hover {
  border-color: #e7746f;
}

.timeline-navigation--prev {
  left: 0;
  -webkit-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.timeline-navigation--next {
  right: 0;
}

.timeline-navigation--inactive {
  cursor: not-allowed;
}

.timeline-navigation--inactive::after {
  background-position: 0 -16px;
}

.timeline-navigation--inactive:hover {
  border-color: #ededed;
}

.timeline-events {
  overflow: hidden;
  transition: height 0.4s;
  padding-top: 1rem;
  padding-bottom: 3rem;
}

.timeline-event {
  position: absolute;
  z-index: 1;
  width: 100%;
  left: 0;
  top: 1rem;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  padding: 1px 5%;
  opacity: 0;
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

.timeline-event-content {
  max-width: 900px;
  margin: 2rem auto 0;
  padding: 2rem;
  border: 1px solid #ededed;
  border-radius: 5px;
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.1);
}

.timeline-event-description {
  font-size: 12px;
}

.timeline-event--selected {
  position: relative;
  top: 0;
  z-index: 2;
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.timeline-event--enter-right,
.timeline-event--leave-right {
  -webkit-animation-name: cd-enter-right;
  animation-name: cd-enter-right;
}

.timeline-event--enter-left,
.timeline-event--leave-left {
  -webkit-animation-name: cd-enter-left;
  animation-name: cd-enter-left;
}

.timeline-event--leave-right,
.timeline-event--leave-left {
  animation-direction: reverse;
}

.timeline-event-title {
  color: #000;
  font-size: 3rem;
  font-weight: 600;
}

.timeline-event-date {
  display: block;
  font-style: italic;
  margin: 0.5rem auto;
  margin: 1rem auto;
}

.timeline-event-date::before {
  content: "- ";
}

@-webkit-keyframes cd-enter-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes cd-enter-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@-webkit-keyframes cd-enter-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes cd-enter-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

.timeline-date::after,
.timeline-date::before {
  background-color: #e7746f;
}

.timeline-date--selected::after {
  background-color: #ededed;
  border-color: #e7746f;
}

.timeline-date--older-event::after {
  background-color: #e7746f;
  border-color: #e7746f;
}

.timeline-line li:nth-child(even) .timeline-date {
  bottom: -48px;
}

.timeline-line li .timeline-date--selected::after,
.timeline-line li .timeline-date:hover::after {
  width: 20px;
  height: 20px;
  bottom: -11px;
  background-color: #e7746f;
  border-color: #e7746f;
}

.timeline-line li:nth-child(even) .timeline-date::after {
  bottom: 40px;
}

.timeline-line li:nth-child(even) .timeline-date:hover::after,
.timeline-line li:nth-child(even) .timeline-date--selected::after {
  bottom: 37px;
}

.timeline-line li:nth-child(even) .timeline-date::before {
  bottom: 45px;
}

.timeline-line li:nth-child(odd) .timeline-date:hover::before,
.timeline-line li:nth-child(odd) .timeline-date--selected::before {
  bottom: -3px;
}



/* ---------------------------------------------- /*
 * Server
/* ---------------------------------------------- */



.loader {
  margin: auto;
  margin-top: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.loader .status {
  padding-top: 4px;
  font-size: 14px;
  color: #33cc33;
}

.loader .servertitle {
  padding-top: 4px;
  font-size: 14px;
}

#loader {
  overflow: visible;
}

.laptop {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

.dots-container {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

.server {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

.signal-1,
.signal-2,
.signal-3,
.signal-4 {
  -webkit-animation: blink 0.6s infinite;
  animation: blink 0.6s infinite;
}

.signal-2 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.signal-4 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.signal-5 {
  -webkit-animation: blink 0.6s infinite;
  animation: blink 0.6s infinite;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(10px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(10px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes blink {
  50% {
    opacity: 0.1;
  }
}
@keyframes blink {
  50% {
    opacity: 0.1;
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-10px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-10px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

#graph-1 {
  stroke: url(#gradient-1);
  stroke-width: 1.5;
  fill: transparent;
  stroke-linecap: round;
  stroke-linejoin: round;
  -moz-animation: lineani 13s linear forwards;
  -webkit-animation: lineani 13s linear forwards;
  animation: lineani 13s linear forwards;
}

#graph-2 {
  stroke: url(#gradient-2);
  stroke-width: 1.5;
  fill: transparent;
  stroke-linecap: round;
  stroke-linejoin: round;
  -moz-animation: lineani 13s linear forwards;
  -webkit-animation: lineani 13s linear forwards;
  animation: lineani 13s linear forwards;
}

#poly-1 {
  fill: url(#gradient-3);
}

#poly-2 {
  fill: url(#gradient-4);
}

@-moz-keyframes lineani {
  to {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes lineani {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes lineani {
  to {
    stroke-dashoffset: 0;
  }
}

.underlay {
  stroke-width: 5;
  fill: transparent;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #24303a;
}

#circle-graph-1 {
  stroke: url(#gradient-1);
  stroke-width: 5;
  fill: transparent;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chart-circle {
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

#circle-graph-2 {
  stroke: url(#gradient-2);
  stroke-width: 5;
  fill: transparent;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.charts-container {
  padding-left: 50px;
}
@media (max-width: 767px) {
  .charts-container {
    padding-left: 30px !important;
  }
}
@media (max-width: 420px) {
  .charts-container {
    padding-left: 20px !important;
  }
}

.chart {
  color: #4a667a;
  width: 48%;
  position: relative;
  display: inline-grid;
  float: center;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: -100px;
  padding: 0px 0px 0px 0px;
}

.chart.circle2 {
  padding: 15px 0px 250px 20px;
}

@media (max-width: 767px) {
  .chart {
    width: calc(100% - 20px);
  }
}

.title {
  font-size: 22px;
  margin-bottom: 24px;
}

.title-circle {
  font-size: 22px;
  margin-bottom: 24px;
}

.title-status {
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .title-status {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 1200px) {
  .title-status {
    margin-bottom: 24px !important;
  }
}

.chart-circle {
  display: inline-block;
  position: relative;
}

.chart-svg {
  position: relative;
}

.circle-percentage {
  position: absolute;
  color: #333;
  font-size: 36px;
  left: 50%;
  top: 45%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .circle-percentage {
    font-size: 24px !important;
  }
}

.align-center {
  text-align: center;
}

.chart-line {
  width: 80%;
}

.valueX {
  font-size: 14px;
}

.main .main_info {
  text-align: center;
  padding-top: 100px;
  opacity: 0;
}

.chart-values {
  text-align: right;
  font-size: 18px;
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 15px;
}

.h-value {
  -moz-transition: ease-in-out 700ms;
  -o-transition: ease-in-out 700ms;
  -webkit-transition: ease-in-out 700ms;
  transition: ease-in-out 700ms;
  opacity: 0;
}
.h-value.visible {
  opacity: 1;
}

.percentage-value {
  -moz-transition: ease-in-out 700ms;
  -o-transition: ease-in-out 700ms;
  -webkit-transition: ease-in-out 700ms;
  transition: ease-in-out 700ms;
  color: #48c15e;
  margin-top: 2px;
  opacity: 0;
}

.percentage-value.negative {
  color: #ef6670;
}

.percentage-value.visible {
  opacity: 1;
}

.total-gain {
  color: white;
  font-size: 48px;
}

.triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 28px 0 0 28px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.triangle.red {
  border-color: transparent transparent transparent #ef6670;
}

.triangle.green {
  border-color: transparent transparent transparent #48c15e;
}

.horizontal,
.vertical {
  stroke-width: 0.1;
  stroke: #4a667a;
}

.cf:before,
.cf:after {
  content: " ";
  display: table;
}

.cf:after {
  clear: both;
}

.cf {
  *zoom: 1;
}
