.new-web {
  position: fixed;
  right: 0;
  top: 30%;
  width: 140px;
  padding: 20px;
  height: auto;
  border-radius: 16px 0 0 16px;
  background-color: #fff;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  border: 2px solid #E3E6ED;
  border-right: unset;
}

.new-web div {
  text-align: center;
}

.new-web div span:first-child {
  font-size: 16px;
  font-weight: 500;
  display: block;
  color: #0074FF;
}

.new-web div span:last-child {
  font-size: 14px;
  color: #0074FF;
  display: block;
  line-height: 20px;
  margin-bottom: 16px;
}

.new-web a {
  font-size: 14px;
  padding: 8px 16px;
  border: unset;
  background-color: blue;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(107deg, #46A5FD 7%, #2ACBEB 100%);
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.1);
  transition: .3s ease-in-out;
}

.new-web a:hover {
  scale: 1.1;
}