.edsPWA_installPromt {
  position: fixed;
  z-index: 99999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.5);
}
.edsPWA_installPromt > div {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  overflow: auto;
}
@media (orientation: landscape) {
  .edsPWA_installPromt > div {
    align-items: start;
    top: 1rem;
  }
}
.edsPWA_installPromt .eds__pwa_installPrompt_content {
  background-color: #fff;
  box-shadow: 0 0 27px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 480px;
  margin-right: auto;
  margin-left: auto;
  border-radius: 0.5rem;
  overflow: hidden;
}
.edsPWA_installPromt .edsPWA_header {
  background-color: #1976d2;
  padding: 0.7rem 1rem;
  text-align: left;
  font-size: 1rem;
  color: #fff;
  line-height: 1.2;
}
.edsPWA_installPromt .edsPWA_content {
  display: flex;
  padding: 1rem;
}
.edsPWA_installPromt .edsPWA_content .edsPWA_icon {
  text-align: center;
  flex: 0 0 30%;
}
.edsPWA_installPromt .edsPWA_content .edsPWA_icon img {
  max-width: 100%;
  height: auto;
}
.edsPWA_installPromt .edsPWA_content .edsPWA_text {
  font-size: 0.8rem;
  line-height: 1.2;
  padding-left: 1rem;
  text-align: left;
  color: #626262;
}
.edsPWA_installPromt .edsPWA_content .edsPWA_text .edsPWA_appTitle {
  text-transform: uppercase;
  color: #000;
  line-height: 1.1;
  font-size: 1rem;
  margin: 0 0 0.5rem;
}
.edsPWA_installPromt .edsPWA_content .edsPWA_text p {
  padding: 0;
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.2;
  text-align: left;
  color: #626262;
}
.edsPWA_installPromt .edsPWA_instructions {
  padding: 1rem 1rem 0;
  font-size: 0.9rem;
  line-height: 1.2;
  color: #626262;
  text-align: center;
}
.edsPWA_installPromt .edsPWA_bg img {
  max-width: 100%;
  height: auto;
}
.edsPWA_installPromt .edsPWA_actions {
  padding: 0.5rem 1rem 2rem;
  display: flex;
  justify-content: center;
}
.edsPWA_installPromt .edsPWA_actions button {
  border: none;
  outline: none;
  box-shadow: none;
  background-color: #1976d2;
  padding: 0.8rem;
  border-radius: 0.3rem;
  color: #fff;
  font-size: 1rem;
  line-height: 1.1;
  font-weight: normal;
  text-transform: uppercase;
  width: 50%;
  display: inline-block;
  margin: 0 0.5rem;
  text-align: center;
}
.edsPWA_installPromt .edsPWA_actions button:hover {
  background-color: #1764e2;
}
.edsPWA_installPromt .edsPWA_actions button > span {
  color: inherit;
  vertical-align: middle;
}
.edsPWA_installPromt .edsPWA_actions button::before {
  display: inline-block;
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 1.5rem;
  margin-right: 0.5rem;
  vertical-align: middle;
}
.edsPWA_installPromt .edsPWA_actions button.edsPWA_approval::before {
  background-image: url("../images/check.svg");
}
.edsPWA_installPromt .edsPWA_actions button.edsPWA_cancel {
  background-color: #dedede;
  color: #5b5b5b;
}
.edsPWA_installPromt .edsPWA_actions button.edsPWA_cancel:hover {
  background-color: #c5c5c5;
}
.edsPWA_installPromt .edsPWA_actions button.edsPWA_cancel::before {
  background-size: 1.2rem;
  background-image: url("../images/close.svg");
}

.edsPWA_isIphone .edsPWA_actions,
.edsPWA_isFf .edsPWA_actions {
  padding: 1rem;
}

.edsPWA_installButtonStandalone {
  display: inline-block;
  height: 68px;
  background: #4081ec url("../images/mobil_pwa_icon.svg") 24px center no-repeat;
  background-size: 29px;
  color: #fff;
  border: none;
  border-radius: 34px;
  font-size: 16px;
  line-height: 18px;
  padding-right: 20px;
  padding-left: 62px;
  text-transform: uppercase;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.4);
  margin: 1rem 0;
  text-align: left;
  white-space: nowrap;
}
.edsPWA_installButtonStandalone:hover {
  background-color: #1764e2;
}
.edsPWA_installButtonStandalone.edsPWA_buttonStyle2 {
  height: 104px;
  text-align: center;
  padding: 65px 15px 15px 15px;
  border-radius: 50% 50% 50% 50%/30% 30% 30% 30%;
  background-position: center 20px;
  font-size: 12px;
}

.edsPWA_buttonFloat {
  position: fixed;
  z-index: 9999;
  display: flex;
  flex-flow: column;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
  width: 190px;
}
.edsPWA_buttonFloat.edsPWA_buttonTop {
  top: 10%;
}
@media (orientation: landscape) {
  .edsPWA_buttonFloat.edsPWA_buttonTop {
    top: 20%;
  }
}
.edsPWA_buttonFloat.edsPWA_buttonRight {
  right: 1rem;
}
.edsPWA_buttonFloat.edsPWA_buttonBottom {
  bottom: 0;
}
.edsPWA_buttonFloat.edsPWA_buttonLeft {
  left: 1rem;
}
.edsPWA_buttonFloat .edsPWA_buttonMessage {
  text-align: center;
  font-size: 9px;
  line-height: 11px;
  background-color: #e6e6e6;
  padding: 0.5rem 1rem;
  border-radius: 34px;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
  color: #363636;
  width: 190px;
}
.edsPWA_buttonFloat .edsPWA_buttonMessage .edsPWA_dismiss {
  margin-top: 0.2rem;
  display: inline-block;
  border-bottom: solid 2px #bfbfbf;
  transition: all 300ms;
  font-weight: 700;
  cursor: pointer;
  color: #1f1f1f;
  font-size: 10px;
  line-height: 12px;
}
.edsPWA_buttonFloat .edsPWA_buttonMessage .edsPWA_dismiss:hover {
  border-bottom-color: transparent;
}

.edsPWA_buttonEmbed {
  display: flex;
  flex-flow: row wrap;
}
.edsPWA_buttonEmbed .edsPWA_installButtonStandalone {
  order: 1;
}
.edsPWA_buttonEmbed .edsPWA_buttonMessage {
  font-size: 1.2rem;
  font-weight: 700;
  width: 100%;
  flex: 0 0 100%;
}
.edsPWA_buttonEmbed .edsPWA_buttonMessage .edsPWA_dismiss {
  display: none;
}

.edsPWA_ButtonCenter {
  justify-content: center;
}
.edsPWA_ButtonCenter .edsPWA_buttonMessage {
  text-align: center;
}

.edsPWA_ButtonRight {
  justify-content: end;
}
.edsPWA_ButtonRight .edsPWA_buttonMessage {
  text-align: right;
}

.edsPWA_notificationPopupContainer {
  position: fixed;
  z-index: 99999;
  left: 0;
  right: 0;
  visibility: hidden;
}
.edsPWA_notificationPopupContainer.edsPWA_popupActive {
  top: 0;
  visibility: visible;
}
@media (max-width: 576px) {
  .edsPWA_notificationPopupContainer.edsPWA_popupActive {
    top: auto;
    bottom: 0;
  }
}

.edsPWA_notificationPopup {
  box-sizing: border-box;
  max-width: 100%;
  margin: 0 auto;
  box-shadow: 0 1px 6px rgba(5, 27, 44, 0.06), 0 2px 32px rgba(5, 27, 44, 0.16) !important;
  background: #fff !important;
  color: #051b2c;
  padding: 1.5em;
  border-bottom-left-radius: 0.5em;
  border-bottom-right-radius: 0.5em;
  width: 500px;
  -webkit-animation-name: slideDownEnter;
          animation-name: slideDownEnter;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@media (max-width: 576px) {
  .edsPWA_notificationPopup {
    border-top-right-radius: 0.5em;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0.5em;
    -webkit-animation-name: slideUpEnter;
            animation-name: slideUpEnter;
    -webkit-animation-iteration-count: 1;
            animation-iteration-count: 1;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    -webkit-animation-duration: 400ms;
            animation-duration: 400ms;
    -webkit-animation-fill-mode: backwards;
            animation-fill-mode: backwards;
  }
}

.edsPWA_popupContent .edsPWA_popupBody {
  overflow: hidden;
}
.edsPWA_popupContent .edsPWA_popupBody .edsPWA_popupIcon {
  box-sizing: border-box;
  float: left;
  width: 80px;
  height: 80px;
  position: relative;
}
.edsPWA_popupContent .edsPWA_popupBody .edsPWA_popupIcon img {
  width: 100%;
  height: 100%;
}
.edsPWA_popupContent .edsPWA_popupBody .edsPWA_popupMessage {
  padding: 0 0 0 1em;
  float: left;
  width: calc(100% - 80px);
  line-height: 1.45em;
  font-size: 1.3rem;
}
.edsPWA_popupContent .edsPWA_popupFooter {
  display: flex;
  justify-content: flex-end;
}
.edsPWA_popupContent .edsPWA_popupFooter .edsPWA_popupButton,
.edsPWA_popupContent .edsPWA_popupFooter .edsPWA_popupLink {
  box-sizing: border-box;
  display: inline-block;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  letter-spacing: 0.05em;
  margin: 0;
  padding: 0.75em 1.5em;
  font-size: 1em;
  border-radius: 0.25em;
  font-weight: 400;
  box-shadow: unset;
  display: flex;
  background: #0078d1;
  color: #fff;
  transition: 75ms linear;
}
.edsPWA_popupContent .edsPWA_popupFooter .edsPWA_popupButton:hover,
.edsPWA_popupContent .edsPWA_popupFooter .edsPWA_popupLink:hover {
  background: #0062ab;
}
.edsPWA_popupContent .edsPWA_popupFooter .edsPWA_popupButton {
  margin-left: 1rem;
}
.edsPWA_popupContent .edsPWA_popupFooter .edsPWA_popupLink {
  text-decoration: none;
  background: transparent;
  border: none;
  box-shadow: none;
  color: #0078d1;
}
.edsPWA_popupContent .edsPWA_popupFooter .edsPWA_popupLink:hover {
  background: transparent;
}
.edsPWA_popupContent .edsPWA_popupFooter .edsPWA_popupLink:hover {
  color: #0062ab;
}

@-webkit-keyframes slideDownEnter {
  0% {
    transform: translateY(-150%);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes slideDownEnter {
  0% {
    transform: translateY(-150%);
  }
  100% {
    transform: translateY(0);
  }
}
@-webkit-keyframes slideUpEnter {
  0% {
    transform: translateY(150%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slideUpEnter {
  0% {
    transform: translateY(150%);
  }
  100% {
    transform: translateY(0);
  }
}