
@media (min-width: 200px) and (max-width: 768px) {
    #dlg-box { display: none; }
}

@media (min-width: 768px) {
    
  #dlg-box { display: none; }
  
  #dlg-box {
        position: fixed;
        top: 20px;
        z-index: 9;
        background-color: transparent;
        background: transparent;
        left: calc(50vw);
        display: none;
    }

    #dlg-top {
        width: 100%;
        display: flex;
        flex-direction: row;
        z-index: 11;
        border-radius: 1rem;
        font-size: .9rem;
    }



     #dlg-box-header:hover {
      background:#333;
      transition: all ease-in-out .5s;
      color: white;
    }
    
  
    #dlg-box-header {
        padding: 10px;
        cursor: move;
        z-index: 10;
        background-color: #222;
        color: #fff;
        width: 33vw;
    }

    .dlg-box-content {
        background-color: #f1f1f1;
        z-index: 19;
        border: 1px solid #d1d1d1;
    }
    
    .dlg-footer {
        padding: 10px;
        cursor: default;
        z-index: 10;
        background-color: #222;
        color: #fff;
        width: 100%;
        border-bottom-left-radius: .5rem;
        border-bottom-right-radius: .5rem;
        text-align: center;
    }
    
    .dlg-footer {
        font-size: .8rem;
    }
    

    .dlg-btn {
    text-align: center;
    font-size: 12px;
    text-decoration: none;
    padding: 2px;
    background: #666;
    color: #fff;
    padding: 10px;
    cursor: pointer;
    color: white;
    -webkit-flex: 1 0 auto;
    flex: 1 0 auto;
    width: 2rem;
}

   .dlg-btn:hover {
      background:#999;
      transition: all ease-in-out .1s;
      color: white;
    }
    

    .dlg-box-content {
        background: rgba(244,244,244,.975);
        border: 1px solid #d1d1d1;
        font-size: 13px;
        padding-left: 2rem;
        min-height: calc(50vh);
        min-width:  calc(50vw);
    }
    .dlg-box-content p {
        font-size: .85rem;
        line-height: 1.25rem;
        /* margin-top: .5rem; */
        margin-bottom: .5rem;
    }


    .dlg-box-header {
        padding-left: 2rem;
        text-align: center;
    }
    .dlg-box-content {
        padding-left: 2rem;

    }
    .dlg-box-footer {
       text-align: center;
        
    }


    .dlg-box-content .container input[type="text"] {
    font-size: 1rem;
    padding: .25rem;
    padding-left: 1rem;
    border: 1px rgb(2, 109, 187);
    border-radius: .25rem;
    outline: none;
    }
    
    .dlg-box-content .container .btn-default {
    border: 1px rgb(2, 109, 187);
    background: #fff;
    border-radius: .25rem;
    outline: none;
    }
    .dlg-box-content .container .btn-default:hover {
    border: 1px rgb(2, 109, 199);
    background: #eee;
    border-radius: .25rem;
    outline: none;
    }
    
    
    .dlg-box-content .container .btn-submit {
    background: rgba(2, 109, 187,.85);
    color: white;
    }
     .dlg-box-content .container .btn-submit:hover {
    background: rgba(2, 109, 187,1);
    color: white;
    }
     .dlg-box-content .container .email { color: #0069d9;}
    
    
 .modal-header { background: #d1d1d1;}

}

