  .bp-popup {
    position: fixed;
    display: flex;
    flex-direction: column;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 999999;
  }

  .bp-popup:before {
    height: 100%;
    width: 100%;
    /* #293236 */
    background: rgba(41, 50, 54, 0.95);
    position: fixed;
    content: '';
    left: 0;
    top: 0;
    z-index: -1;
  }

  .bp-popup__header {
    display: flex;
  }

  .bp-popup__close-button {
    margin-left: auto;
    margin-top: 10px;
    margin-right: 30px;
  }

  .bp-popup__body {
    padding: 0;
    width: 100%;
    flex-grow: 1;
  }

  @media (min-width: 800px) {
    .bp-popup__body {
      padding: 0px 80px 30px;
    }
  }

  .bp-popup__body iframe {
    width: 100%;
    height: 100%;
  }

  /* loader */

  .bp-popup .lds-dual-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
  }

  .lds-dual-ring {
    display: inline-block;
    width: 80px;
    height: 80px;
  }

  .lds-dual-ring:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    border: 6px solid #fff;
    border-color: #fff transparent #fff transparent;
    animation: lds-dual-ring 1.2s linear infinite;
  }

  @keyframes lds-dual-ring {
    0% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(360deg);
    }
  }
