.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;
}