.simulatorBanner {
  padding: 50px 0px 50px 50px;
}

.simulatorBanner img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 0 80px 20px rgba(255, 255, 255, 0.2);
}

@media (min-width:992px) {
  .simulatorBanner {
    padding: 3.66vw 0 3.66vw 3.66vw;
  }

  .simulatorBanner img {
    border-radius: 2.196vw;
    box-shadow: 0 0 5.857vw 2.196vw rgba(255, 255, 255, 0.2);
  }
}

@media (max-width:991px) {
  .simulatorBanner {
    padding: 10px 0px 10px 10px;
  }

  .simulatorBanner img {
    border-radius: 20px;
    box-shadow: 0 0 50px 10px rgba(255, 255, 255, 0.2);
  }
}
@media (max-width:576px) {
  .simulatorBanner {
    padding: 0px;
  }

}

/*-----------------------------------------------------  */
.sim-card {
  background: linear-gradient(to bottom, rgba(38, 38, 38, 0) 0%, #262626 100%);
  border-radius: 30px;
  padding: 40px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
  height: 100%;
  transition: 0.3s ease;
}

.sim-card:hover {
  transform: translateY(-5px);
}

.simIcon {
  width: 180px;
  height: 180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.simIcon img {
  width: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(43%);
  opacity: 0.9;
}

@media (min-width:1200px) {
  .sim-card {
    padding: 2.928vw 2.196vw;
    border-radius: 2.196vw;
  }

  .simIcon {
    width: 13.177vw;
    height: 13.177vw;
  }
}

@media (max-width:576px) {
  .sim-card {
  padding: 20px 30px 40px;
}
}

/* ----------------------------------------------------------------- */
.simulator-linechart {
  width: 100%;
  padding: 30px 30px 0px;
  border-radius: 30px;
  background: linear-gradient(to bottom, rgba(38, 38, 38, 0) 0%, #262626 100%);
  color: white;

}

.chartHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0px;
}

.chartHead .pill {
  width: 100%;
  text-align: center;
}

@media (min-width:991px) {
  .chartHead .pill {
    max-width: 40%;
    text-align: center;
  }
}

.teal {
  background: linear-gradient(to bottom, rgba(38, 38, 38, 0) 0%, #005D61 100%);
  padding: 10px;
}

.orange {
  background: linear-gradient(to bottom, rgba(38, 38, 38, 0) 0%, #E3644B 100%);
  padding: 10px;
}

.teal h5,
.orange h5 {
  margin-bottom: 0;
}

.line-tabs {
  display: flex;
  gap: 8px;
}

.line-tab {
  position: relative;
  white-space: nowrap;
  background: transparent;
  color: #cfcfcf;
  border: 1px solid #2b2b2b;
  padding: 6px 18px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: all .2s ease;
}

.line-tab.active::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 6px;
  padding: 1px;
  background: linear-gradient(to bottom,
      #E3644B,
      #005D61);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.chart-wrap {
  margin-top: 20px;
  position: relative;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
}

.chart-wrap::-webkit-scrollbar {
  background: transparent;
}

.chart-wrap::-webkit-scrollbar-track {
  background: transparent;
}

.chart-wrap::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 10px;
}

.chart-inner {
  position: relative;
  height: 100%;
  min-width: 900px;
  min-height: 400px;
  max-height: 600px;
}

@media (max-width:576px) {
  .simulator-linechart {
    padding: 20px 20px 0px;
  }
}

@media (min-width:1200px) {
  .simulator-linechart {
    border-radius: 2.196vw;
    padding: 2.196vw 2.196vw 0;
  }

  .chartHead {
    padding: 0.732vw 0;
  }

  .orange,
  .teal {
    padding: 0.732vw;
  }

  .line-tabs {
    gap: 0.586vw;
  }

  .line-tab {
    border-radius: 0.586vw;
    padding: 0.439vw 1.318vw;
    font-size: 1.171vw;
  }

  .line-tab.active::before {
    border-radius: 0.439vw;
    padding: 0.073vw;
  }

  .chart-wrap {
    margin-top: 1.464vw;
  }

  .chart-inner {
    min-height: 29.283vw;
    max-height: 43.924vw;
    min-width: 65.886vw;
  }
}