.subscriptionPopup {
  font-family: sans-serif;
  display: none;
  padding: 20px;
  width: 500px;
  box-sizing: border-box;
  /*box-shadow: 3px 3px 3px #cccccc;*/
  position: fixed;
  /*right: -500px;*/
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid #dddddd;
  border-radius: 5px;
  text-align: center;
  z-index: 1000;
  background-color: white;
}

.subscriptionPopup.show {
  display: block;
  overflow: hidden;
  top: -5px;
  /*right: calc(50vw - 250px);*/
}

.subscriptionPopup p {
  padding: 10px 20px 20px 20px;
  margin: 0 0 20px 0;
  border-bottom: 1px solid #cccccc;
  font-size: 1.5em;
  line-height: 1.3;
  /*text-align: center;*/
}

.subscriptionPopup button {
  /*margin: 0 10px;*/
  padding: .75em 1.5em;
  border: 0;
  background-color: white;
  color: #0078d1;
  font-size: 1em;
  border-radius: 7px;
  cursor: pointer;
}

.subscriptionPopup button.subscriptionAccepted {
  background-color: #0078d1;
  color: white;
}

.bellPopup {
  font-family: sans-serif;
  display: flex;
  align-items: center;
  position: fixed;
  /*width: 70px;*/
  z-index: 1000;
}

.bellPopup svg {
  padding: 5px;
  width: 70px;
  box-sizing: border-box;
  background-color: rgba(255,255,255,1);
  border-radius: 50%;
  border: 1px solid #d3202e;
  cursor: pointer;
}

.bellPopup.subscribed svg {
  width: 40px;
  opacity: 0.8;
}

.bellPopup.right {
  right: 20px;
  bottom: 30px;
}

.bellPopup.left {
  left: 20px;
  bottom: 30px;
}

.subscriptionPopup .bellPopup {
  position: relative;
  display: inline-block;
  /*float: left;*/
  /*margin-right: 20px;*/
  width: 100px;
  left: auto;
  bottom: auto;
  padding: 0;
}
.subscriptionPopup a {
  text-decoration: underline;
}
.buttonsContainer {
  /*padding: 20px 0;*/
}

#bellOption {
  margin-left: 5px;
  padding: 5px 10px;
  background-color: #d3202e;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}