:root {
  --color-white: #fff;
  --color-black: #000;
  --color-light: #9da7aa;
  --color-dark: #171819;
  --color-darker: #131414;
  --color-blue: #2662f0;
  --color-blue-light: #8aabf8;
  --color-greenblue1: #34d1bf;
  --color-greenblue2: #27bead;
  --color-border-dark: #1d1f20;
  --color-border-dashed: #494d4e;
  --color-translucent: rgba(23, 24, 25, 0.6);
  --color-orange: #ff6e07;
  --color-lightgreen: #00ff43;
  --color-Redish: #ED202D;
  --color-DarkRedish: #d10916;
}

body {
  font-family: sans-serif;
  /*font-family: rubik;*/
  /* display: flex;
      min-height: 100vh;
      justify-content: center;
      align-items: center;
        background: hsl(230, 29%, 19%);
      color: hsl(184, 30%, 70%);   */
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: var(--color-Redish) !important;
}

h1 {
  font-size: 2.5rem;
  font-weight: normal;
}

h3 {
  font-size: 1.3rem;
  font-weight: normal;
}

h4 {
  font-weight: normal !important;
}


input::placeholder {
  color: #bcbcbc !important;
  opacity: 0.5;
  /* Firefox */
}

p {
  font-size: 1rem;
  margin-bottom: 0rem !important;
}

.position {
  margin-top: 20%;
}

.hrLine {
  width: 10%;
  size: 10%;
  margin-left: auto;
  margin-right: auto;
  opacity: 1;
  height: 6px !important;
}

.BGColor {
  background-color: var(--color-Redish);
}

.textColor {
  color: var(--color-Redish);
}

.leftBorder {
  border-left: 5px solid var(--color-Redish);
}

.dm-header-cont {
  height: 80px;
  position: relative;
}

.dm-branding {
  float: left;
  position: relative;
  left: 12px;
  top: 0px;
  height: 100%;
}

.dm-BrandingRight {

  float: Right;
  position: relative;
  Padding-left: 20px;
  padding-right: 50px;
  top: 20px;
  height: 100%;
}


.logo-scroll {
  max-height: 80px;
  max-width: 180px;
}

header {
  border-bottom: 1px solid;
  border-bottom-color: #bcbcbc;
}


.me-auto {
  float: right
}

/* */
/*  */
@import url("https://fonts.googleapis.com/css?family=IBM+Plex+Mono:300,400,600&display=swap");

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

/* center in the viewport */


/* cap the width of the visualization */
/* svg {
      width: 900vw;
      max-width: 900px;
  } */

/* svg text {
      font-family: "IBM Plex Mono", monospace;
      fill: currentColor;
      text-shadow: 0 0 1px hsla(0, 0%, 0%, 0.25);
      letter-spacing: 0.16px;
  } */

/* animation for the path elements included through the tooltip
! the offset needs to match the length of a dash and an empty space to avoid jumping from state to state
stroke-dasharray: 7 4; --> stroke-dashoffset: 11;
*/
@keyframes dashOffset {
  to {
    stroke-dashoffset: -11;
  }
}

.darker:focus {
  background-color: var(--color-DarkRedish);
}

.bold {
  font-weight: 500;
}

.bg-image {
  background-image: url('./Bg_Vector.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.iconSize {
  font-size: 2rem !important;
  color: var(--color-Redish) !important;

}

.dark:hover {
  color: var(--color-DarkRedish) !important;
}

#myInput {
  background-image: url('searchicon.png');
  background-position: 10px 10px;
  background-repeat: no-repeat;
  background-attachment: fixed;
  width: 100%;
  font-size: 16px;
  padding: 12px 20px 12px 40px;
  border: 1px solid #ddd;
  margin-bottom: 12px;
}

#marginbottom {
  margin-top: 0px;
  font-size: 14px;
}

.Name {
  font-size: 12px;
  letter-spacing: 0.8px
}

g.label text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px
}

.my-4 {
  margin-top: 0.5rem !important;
  margin-bottom: 0rem !important;
}

#overlayer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: #0e0c0c62;
}

.preloader #onload {
  position: absolute;
  top: 60%;
  left: 50%;
  margin-left: -45px;
  width: 120px;
  height: 90px;

  text-align: center;
  color: #fff;
  font-size: 24px;
  z-index: 3;
}

.loader {
  display: inline-block;
  width: 30px;
  height: 30px;
  position: absolute;
  z-index: 3;
  border: 4px solid #Fff;
  top: 50%;
  left: 50%;
  animation: loader 2s infinite ease;
}

.loader-inner {
  vertical-align: top;
  display: inline-block;
  width: 100%;
  background-color: #fff;
  animation: loader-inner 2s infinite ease-in;
}

@keyframes loader {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(180deg);
  }

  50% {
    transform: rotate(180deg);
  }

  75% {
    transform: rotate(360deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes loader {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(180deg);
  }

  50% {
    transform: rotate(180deg);
  }

  75% {
    transform: rotate(360deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes loader-inner {
  0% {
    height: 0%;
  }

  25% {
    height: 0%;
  }

  50% {
    height: 100%;
  }

  75% {
    height: 100%;
  }

  100% {
    height: 0%;
  }
}

@-webkit-keyframes loader-inner {
  0% {
    height: 0%;
  }

  25% {
    height: 0%;
  }

  50% {
    height: 100%;
  }

  75% {
    height: 100%;
  }

  100% {
    height: 0%;
  }
}

.heading {
  font-weight: 600;
  padding-right: 3px;
}

.tooltipText {
  padding: 2px;
}

/* .close {
  float: right;
}

.close :hover {
  color: red;
} */

.close {
  padding: 4px 9px;
  border: none;
  background-color: #ed222e;
  border-radius: 30px;
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: 5px;
  cursor: pointer;
  float: right;
}

.close:hover,
.close:active,
.close:focus,
.close.active {
  background: rgb(218, 1, 1);
  color: #ffffff;
}

.tooltip1 {
  position: absolute;
  padding: 10px;
  font-size: 12px;
  background: white;
  color: black;
  border-radius: 4px;
  opacity: 1;
  -webkit-filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, .3));
  filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, .25));

}

.topLabel {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.8px;
}

@media only screen and (max-width: 900px) {
  #marginbottom {
    font-size: 14px;
  }

  .Name {
    font-size: 12px;
    letter-spacing: 0.7px
  }

  g.label text {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px
  }

  .tooltip1 {
    padding: 8px;
    font-size: 12px;
  }

  .topLabel {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.7px;
  }

}

@media only screen and (max-width: 700px) {
  .tooltipText {
    padding: 0.5px;
  }

  #marginbottom {
    font-size: 12px;
  }

  .Name {
    font-size: 10px;
    letter-spacing: 0.5px
  }

  g.label text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.6px
  }

  .tooltip1 {
    padding: 6px;
    font-size: 11px;
  }

  .topLabel {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.6px;
  }

}

@media only screen and (max-width: 510px) {
  #marginbottom {
    font-size: 11px;
  }

  .Name {
    font-size: 9px;

  }

  g.label text {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.4px
  }

  .tooltip1 {
    padding: 4px;
    font-size: 10px;
  }

  .topLabel {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.5px;
  }

  .close {
    border: none;
    background-color: #ed222e;
    border-radius: 10px;
    color: white;
    font-size: 0.6rem;
    /* font-weight: 600; */
    margin-left: 5px;
    padding: 2px 5px;
  }

}

#cookiePopup {
  background: rgba(90, 89, 89, 0.418);
  width: 100%;
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  box-shadow: 10px 0px 15px #cccccc;
  padding: 5px 10px;
}

#cookiePopup p {
  text-align: center;
  font-size: 15px;
  color: #ffffff;
}

#cookiePopup button {

  float: center;
  width: 16%;
  border: navajowhite;
  background: #ffffff;
  padding: 5px;
  border-radius: 10px;
  color: 000000;
  margin: 0 0 0 42%
}

.hidden {
  display: none;
}

.size {
  width: 75%;
  height: 65%;
}

#menu li span svg,
#menu li a {
  display: inline;
}

ul li ul li a {
  display: block !important;
}

@media only screen and (max-width: 991px) {
  .fs-sm-10px {
    font-size: 10px
  }
}

@media only screen and (max-width: 991px) {
  .mt-xs-4 {
    margin-top: 1.5rem !important;
  }

  .py-xs-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
}

.position-label {
  width: 130px;
}

.position-dropdown {
  width: 200px;
  height: 30px;
  line-height: 16px;
}