.app-banner-sidebar img {
  max-width: 100%;
  height: auto;
}

.app-banner-sidebar video {
  max-width: 100%;
  height: auto;
}

.app-banner-main img {
  max-width: 100%;
  height: auto;
}

.app-banner-main video {
  max-width: 100%;
  height: auto;
}

.close-banner {
  display: none;
  position: absolute;
}

@media (max-width: 991.98px) {
  .close-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    top: -25px;
    left: 5px;
    background-color: #193341;
    border-radius: 50%;
    width: 20px;
    height: 20px;
  }
}

@media (min-width: 500px) and (max-width: 991.98px) {
  .app-banner-main {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9999999;
    width: 50%;
    display: none;
  }

  .app-banner-main.visible {
      display: block;
  }
}

@media (max-width: 500px) {
  .app-banner-main {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9999999;
    width: 100%;
    display: none;
  }

  .app-banner-main.visible {
      display: block;
  }    
}