@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;700;800&display=swap');

/* Component For BS3
/*------------------------------------------------------------*/
:root {
  --anchor: #1F81B9;
  --anchor-hover: #449DCF;
  --prompt-bg: #FFF;
  --prompt-text: #1f81b9;
  --prompt-divider: 1px solid #e9e9e9;
}

/* Background Overlay */
.bg-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 9999;
}

/* Prompt
/*------------------------------------------------------------*/
.prompt {
  font-family: 'Open Sans', 'Roboto', Arial, sans-serif;
  width: 100%;
  background-color: var(--prompt-bg);
  color: var( --prompt-text);
  padding: 1rem;
  z-index: 10000;
}

/* Prompt - Open with App */
.prompt--app {
  box-shadow: 0px -6px 12px 0px rgba(0,0,0,0.2);

  border-top-left-radius: 16px;
  border-top-right-radius: 16px;

  position: fixed;
  bottom: 0;
}

.prompt--app .prompt__heading {
  line-height: 1.4;
  text-align: center;
  border-bottom: var(--prompt-divider);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.prompt--app .btn {
  width: 136px;
  height: 36px;
  font-size: 14px;
}

.prompt--app .openwith {
  font-weight: bold;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.prompt--app .openwith:first-child {
  margin-bottom: 16px;
}

.prompt--app .openwith__icon {
  display: flex;
  align-items: center;
}

.prompt--app .openwith__icon img {
  margin-right: 8px;
}

/* Landscape */
@media screen and (orientation:landscape) {
  .prompt--app {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  .prompt--app .prompt__heading,
  .prompt--app .prompt__content {
    width: 60%;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 768px) {
  .bg-overlay,
  .prompt--app {
    display: none;
  }
}

