﻿div#popupBannerModal {
  animation: popup 0.25s forwards;
  position: fixed;
  padding: 0 !important;
  min-width: 100px !important;
  background-image: none;
  background-size: 30px;
  background-repeat: no-repeat;
  background-position: center center;
  align-items: center;
  justify-content: center;
  margin: auto;
  border-radius: 6px;
  z-index: 99999;
}


#popupBannerModal .modal-dialog {
  /*width: 100% !important;*/
  max-width: 100% !important;
  /*padding: 20px 160px;*/
}

#popupBannerModal .modal-content {
  background-color: transparent;
  border: 0;
}

#popupBannerModal .modal-content .modal-wrapper {
  /*margin-left: 0px !important;*/
  margin-left: auto ;
  margin-right: auto ;
  /*
  animation: slideLeft 0.5s forwards;
  animation-delay: 0.5s;
  */
}

#popupBannerModal .banner-wrapper {
  border: 25px solid #fff;
}

#popupBannerModal .banner-wrapper img {
  max-height: calc(100vh - 3.5rem);
}

#popupBannerModal .banner-wrapper img.mobile {
  display: none;
}


@keyframes popup {
  0% {
    transform: scale(0);
  }
  
  100% {
    transform: scale(1);
  }
}

@media (max-width: 992px) {
  #popupBannerModal .modal-dialog {
    /*padding: 20px 20px;*/
  }

  #popupBannerModal .banner-wrapper img.desktop {
    display: none;
  }

  #popupBannerModal .banner-wrapper img.mobile {
    display: block;
  }
}
