/* Popup */
  .popup {
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
    transition: all .3s;
  }

  .popup__content {
    width: 100%;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .2);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(.25);
    opacity: 0;
    transition: all .5s .1s;
  }

  .popup__header h1 {
    font-size: 30px;
  }

  .popup__header p {
    font-size: 15px;
    margin-bottom: 15px;
  }

  .popup__header h2 {
    font-size: 20px;
  }

  .popup__text {
    padding: 0 36px;
    line-height: 1.4;
  }

  .popup__text p:not(last-child) {
    margin-bottom: 16px;
  }

  #popup:target {
    opacity: 1;
    visibility: visible;
  }

  #popup:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  .popup__close:link,
  .popup__close:visited {
    margin-right: 10px;
    position: flex;
    top: 12px;
    right: 20px;
    text-decoration: none;
    color: #555;
    font-size: 30px;
    display: inline-block;
    line-height: 1;
    transition: all .3s;
  }

  .popup__close:hover,
  .popup__close:active {
    color: #f00;
  }

  .adainfo {
    position: fixed;
    left: 13px;
    bottom: 122px;
    z-index: 100;
  }

  .attention-component:target .inner-info {
    transform: translate(-50%, -50%);
    max-width: 540px;
    min-height: 10%;
    top: 50%;
    left: 50%;
    display: block;
    position: fixed;
    width: 90%;
    height: 70%;
  }

  .head-inner {
    padding: 3px;
    background: linear-gradient(#df2a2a, #be0a0a) !important;
    box-shadow: #df2a2a 0px 0px 5px 2px inset, #be0a0a 0px 0px 4px 3px inset !important;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  }

  .head-inner h2 {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1.5em;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin: 10px 0;
    -webkit-font-smoothing: antialiased;
  }

  .inner-body {
    max-height: calc(100% - 40px);
    height: 100%;
    background: #000;
  }

  .inner-close {
    color: transparent;
    position: absolute;
    right: 7px;
    width: 6%;
    top: 9px;
  }

  /* Then style the iframe to fit in the container div with full height and width */
  .responsive-iframe {
    position: relative;
    width: 100%;
    height: 550px;
  }

  .inner-info {
    border-radius: 8px;
    z-index: 100;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen, Ubuntu, Cantarell, sans-serif !important;
    border: 2px solid #df2a2a !important;
  }

  .inner-body iframe {
    max-width: 100%;
    border: 0px;
    width: 100%;
    padding: 0px;
    margin: 0px;
  }