﻿.allow-push-notification-bar {
  display: none;
  position: fixed;
  top: 20px;
  z-index: 1050;
  width: 460px;
  max-width: calc(100% - 30px);
  height: auto;
  background: #fff;
  box-shadow: 0 6px 20px 5px rgba(0,0,0,.15);
  border-radius: 3px;
  background-color: #fff;
  padding: 15px;
  text-align: center;
  left: 50%;
  transform: translate(-50%,0);
  animation-name: fadeInDown;
  animation-duration: 1s;
}

.allow-push-notification-bar .content {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #eef3fa;
  padding-bottom: 20px;
  margin-bottom: 15px;
}
.allow-push-notification-bar .content .text {
    text-align: left;
    width: calc(100% - 40px);
    margin-left: 15px;
}
.allow-push-notification-bar .content .text h3 {
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    color: #001844;
    margin-bottom: 8px;
}
.allow-push-notification-bar .content .text p {
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: #565d69;
}
.allow-push-notification-bar button {
    min-width: 60px;
    margin: 5px 0 10px;
    border: none;
    background-color: #4ab2f1;
    padding: 8px 12px;
    font-size: 14px;
    color: #fff;
    line-height: 1;
}
.allow-push-notification-bar .button-1 {
    background: #0a6307;
    border-radius: 3px;
    width: 65px;
    height: 30px;
}
  .allow-push-notification-bar #close-push-notification {
    background: #d7d7db;
    border-radius: 3px;
    margin-left: 5px;
    color: #000;
  }

@media (min-width: 768px) {
  .bell-icon {
    display: inline-block;
    height: 36px;
    width: 25px;
    background: url(../images/bell.svg) no-repeat center center;
    background-size: cover;
  }
}

@keyframes fadeInDown {
  0% {
    transform: translate(-50%, -100%);
    opacity: 0;
  }

  100% {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}