.generic__popup {
  background: rgba(255, 255, 255, 0.8);
  position: fixed;
  z-index: 1000000;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }
  .generic__popup .modal__container {
    margin: auto;
    width: 80%;
    max-width: 700px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 40px 20px 40px 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    flex-grow: 1;
    flex-direction: column; }
    .generic__popup .modal__container .modal__container__header {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      border-radius: 10px 10px 0 0;
      width: 100%;
      height: 100px;
      background-image: -webkit-gradient(linear, left top, left bottom, from(#367186), to(#0be89a));
      background-image: linear-gradient(#367186, #0be89a);
      position: relative;
      overflow: hidden;
      padding: 45px;
      flex-direction: column;
      align-items: center; }
    .generic__popup .modal__container .modal__container__body {
      width: 100%;
      display: flex;
      flex-direction: column;
      padding: 45px;
      background-color: #0d0932;
      -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
      z-index: 9;
      border-radius: 0 0 10px 10px; }
    .generic__popup .modal__container #close_generic_popup {
      position: absolute;
      top: 20px;
      right: 0px;
      z-index: 1;
      background-color: #0d0932;
      width: 40px;
      height: 40px;
      border-radius: 40px;
      border: 1px solid #494949;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
  @media screen and (max-width: 769px) {
    .generic__popup .modal__container {
      width: 100%; } }

.showGenericPopup {
  display: flex; }
