    /* The modal_o_mobile (background) */
    .modal_o_mobile {
      display: none; /* Hidden by default */
      position: fixed; /* Stay in place */
      z-index: 1; /* Sit on top */
      padding-top: 100px; /* Location of the box */
      left: 0;
      top: 0;
      z-index: 100000;
      width: 100%; /* Full width */
      height: 100%; /* Full height */
      overflow: auto; /* Enable scroll if needed */
      background-color: rgb(0,0,0); /* Fallback color */
      background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    }

    /* modal_o_mobile Content */
    .modal_o_mobile-content {
      background-color: #fefefe;
      margin: auto;
      padding: 20px;
      border: 1px solid #888;
      width: 80%;
      position:relative;
    }

    /* The Close Button */
    .modal_o_mobile .close {
      color: #aaaaaa;
      font-size: 28px;
      font-weight: bold;
      position:absolute;
      top:10px;
      right:10px;
      z-index:10000;
    }

    .modal_o_mobile .close:hover,
    .modal_o_mobile .close:focus {
      color: #000;
      text-decoration: none;
      cursor: pointer;
    }

    @media(max-width:350px){
        .modal_o_mobile-content p{
            line-height: 19px !important;
        }

        .modal_o_mobile-content h1{
            font-size: 20px;
        }
    }