:root {
  --eth-nsp-primary-color: #1f59d6;
  --eth-nsp-primary-color-light: #1f59d6d4;
  --white: #fff;
  --transition: all .2s ease-in-out;
}

#eth_nsp_popup {
  position: fixed;
  width: 90%;
  right: 5%;
  bottom: 3%;
  padding: 0;
  z-index: 99999999;
  background: #fff;
  visibility: hidden;
  opacity: 0;
  transition: all .2s ease-in-out;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .5);
  transform: translateY(100px);
}

#eth_nsp_popup.show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

#eth_nsp_close {
  position: absolute;
  top: -20px;
  right: -10px;
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 100%;
  line-height: 0;
  border: 0;
  box-shadow: 0 2px 7px rgba(0, 0, 0, .25);
  color: #777;
  transition: all .2s ease-in-out;
}

#eth_nsp_close:hover {
  background-color: var(--eth-nsp-primary-color);
  color: #fff;
}

#eth_nsp_close:hover img {
  filter: brightness(0) invert(1);
}

.eth_nsp_image {
  width: 100%;
  height: 100%;
}

@media only screen and (min-width: 768px) {
  #eth_nsp_popup {
    width: 30%;
    max-width: 800px;
  }
}