.webPushBell {
  height: 3.75rem;
  width: 3.75rem;
  min-height: 42px;
  min-width: 42px;
  background: #FFFFFF;
  box-shadow: 0 0 1.0625rem rgba(0, 0, 0, 0.3019607843);
  border-radius: 100%;
  position: fixed;
  z-index: 21;
  bottom: 10px;
  right: 10px;
  cursor: pointer;
}

.webPushBell--go_up_is_active {
  right: 80px;
}

.webPushBell__icon {
  max-width: 45% !important;
  max-height: 45% !important;
}

.webPushBell__popupLink {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.webPushBell__info {
  position: absolute;
  bottom: 100%;
  right: 0;
  min-width: 18.125rem;
  margin-bottom: 15px;
  background: #FFFFFF;
  padding: 12px 15px;
  color: #3D3D3D;
  border-radius: 3px;
  line-height: 1.1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-out;
}
.webPushBell__info.-active {
  opacity: 1;
  visibility: visible;
}
.webPushBell__info a {
  text-decoration: underline;
}
.webPushBell__info a:hover {
  text-decoration: none;
}
.webPushBell__info::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  border: 7px solid transparent;
  border-top-color: #FFFFFF;
  position: absolute;
  right: 8%;
  top: 100%;
  margin-top: -1px;
}

.webPushMessage {
  position: fixed;
  top: 20px;
  right: 5vw;
  background: #FFFFFF;
  padding: 20px;
  color: #3D3D3D;
  box-shadow: 0 0 1.0625rem rgba(0, 0, 0, 0.3019607843);
  z-index: 40;
  border-radius: 4px;
  max-width: 250px;
  opacity: 0;
  visibility: hidden;
}
.webPushMessage.-active {
  animation: successMessage 3s ease-out forwards;
}

.webPushMessage__icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 8%;
}

@keyframes successMessage {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  10% {
    opacity: 1;
    visibility: visible;
  }
  90% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@media (max-width: 767px) {
  .webPushBell--menu_mobile_bottom_is_active {
    z-index: 31;
    transition: bottom ease-out 0.3s;
    bottom: 65px;
  }
  .webPushMessage {
    font-size: 90%;
    padding: 15px;
  }
  .webPushMessage__icon {
    width: 30px;
    height: 30px;
  }
}
@media (min-width: 768px) {
  .webPushBell {
    bottom: 1.25rem;
    right: 3vw;
  }
  .webPushBell--go_up_is_active {
    right: 7rem;
  }
}/*# sourceMappingURL=webpush.css.map */
