.offer-link {
  position: relative;
  background: #c60000;
  color: white !important;
  width: 100%;
  display: inline-block;
  padding: 15px;
  font-size: 20px;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
  transition: 0.3s all;
  margin-top: 20px;
  box-sizing: border-box;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  overflow: hidden;
}

.offer-link::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  animation: shine 2.5s infinite;
}
@keyframes shine {
  to {
    left: 125%;
  }
}
.tradingview-widget-container {
  margin-bottom: -56px;
  width: 100%;
  height: 46px;
}
.trader-stroke {
  user-select: none;
  box-sizing: border-box;
  display: block;
  height: 46px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .tradingview-widget-container {
    margin-bottom: -56px;
    width: 100%;
    height: 76px;
  }
  .trader-stroke {
    user-select: none;
    box-sizing: border-box;
    display: block;
    height: 76px;
    width: 100%;
  }
}
