.airship-alert {
  height: 254px;
  margin-left: calc(50vw - 304px);
  margin-top: calc(50vh - 184px);
  max-width: 608px !important;
  z-index: 2147483643;
}

@media only screen and (max-width: 450px) {
  .airship-alert {
    height: 368px;
    margin-left: calc(50vw - 130px);
    margin-top: calc(50vh - 184px);
    min-width: 260px !important;
    top: 0 !important;
    width: 260px;
  }
}

.airship-alert::before {
  background: rgba(34,34,34,0.8);
  content: '';
  backdrop-filter: blur(2px);
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 2147483642;
}

.airship-alert[style]::before {
  content: none;
}

.airship-alert-powered,
.airship-alert-body,
.airship-alert-buttons {
  position: relative;
  z-index: 2147483644;
}

.airship-alert-body {
  align-items: center;
  background: #fff url('./push-notification-desktop.png') 32px center no-repeat;
  background-size: 138px;
  border-radius: 4px 4px 0 0;
  display: flex;
  height: 197px;
  padding-left: 198px;
  padding-right: 117px;
}

@media only screen and (max-width: 450px) {
  .airship-alert-body {
    background-image: url('./push-notification-mobile.png');
    background-position: 46px 16px;
    background-size: 168px;
    border-radius: 4px;
    display: block;
    height: 168px;
    padding: 200px 22px 0;
  }
}

.airship-alert-title {
  font-family: 'Independent Serif', serif;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 8px;
}

@media only screen and (max-width: 450px) {
  .airship-alert-title {
    font-size: 20px;
    text-align: center;
  }
}

.airship-alert-message {
  color: #222;
  font-family: 'Independent Sans',sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 25px;
}

@media only screen and (max-width: 450px) {
  .airship-alert-message {
    font-size: 13px;
    line-height: 18px;
    text-align: center;
  }
}

.airship-alert-message strong {
  font-weight: 400;
}

.airship-btn-deny  {
 background: #fff;
}

.airship-alert-buttons {
  margin-top: 0;
  position: relative;
  z-index: 2147483644;
}

@media only screen and (max-width: 450px) {
  .airship-alert-buttons {
    bottom: 0;
    flex-direction: column;
    height: 88px;
    left: 18px;
    position: absolute;
    width: 224px;
  }
}

.airship-btn {
  font-weight: 700;
  margin: 0;
}

@media only screen and (max-width: 450px) {
  .airship-btn {
    border-radius: 6px !important;
    font-size: 14px;
    font-weight: 600;
    height: 40px;
    padding: 0;
    position: absolute;
    width: 100%;
  }
}

.airship-btn:first-child {
  border-radius: 0 0 0 4px;
  color: #646464;
}

@media only screen and (max-width: 450px) {
  .airship-btn:first-child {
    border: 0;
    bottom: 8px;
    text-decoration: underline;
  }
}

.airship-btn:last-child {
  border-radius: 0 0 4px 0;
}

.airship-btn:last-child:hover {
  background: #A51220;
}

@media only screen and (max-width: 450px) {
  .airship-btn:last-child {
    border-radius: 6px !important;
    box-shadow: none;
    top: 0;
  }
}

.airship-btn-accept {
  background: #EC1A2E;
}