.tws-article-introduction--read-more {
  display: none;
}
.tws-login-dialog {
  display: none;
}
.custom-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100svw;
  height: 100svh;
  background-color: rgba(0,0,0,.5);
  backdrop-filter: blur(5px);
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.custom-modal-item {
  width: auto;
  max-width: 1400px;
  max-height: 100%;
  background-color: #fff;
  border-radius: .5rem;
  padding: 2em 1em;
  display: flex;
  gap: 1rem;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.custom-modal-button-container {
  width: 100%;
  display: flex;
  justify-content: space-around;
      gap: 10px;
}
.custom-modal-button {
	background: transparent;
  padding: 1rem 2rem;
  border: 1px solid rgba(0,0,0,.5);
  border-radius: 4px;
}
.custom-modal-close-button {
  background: transparent;
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,.5);
  position: absolute;
  top: 1rem;
  right: 1rem;
}