 /* The Modal (background) */
 
 .wcapog_modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99999;    
    transition: visibility 0s, opacity 0.5s linear;  
    display: flex;
    opacity: 0;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    min-height: 100vh;   
    visibility: hidden;
 }
 /* Modal Content/Box */
 
 .wcapog_modal-content {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    background: white;
    padding: 30px;
    border-radius: 4px;
    /* max-width: 80%; */
    height: 60vh;
    position: relative;
    min-height: 210px;
    width: 40%;
 }

 @media(max-width: 960px) {
   .wcapog_modal-content {
     max-width: 100%;
     width: 100%;
     height: 100vh;
   }
 }
 /* The Close Button */
 
 .wcapog_close {
    font-size: 28px;
    font-weight: bold;
    align-self: flex-end;
    text-decoration: none;
    color: white;
    position: absolute;
    top: -10px;
    right: -10px;
    background: #040404;
    padding: 10px;
    display: inline-block;
    line-height: 15px;
    border-radius: 50%;
 }
 
 .wcapog_close:hover,
 .wcapog_close:focus {
     color: #ed676d;
     text-decoration: none;
     cursor: pointer;
 }
 
 #wcapogDropzoneLink {
     cursor: pointer;
 }
 
 .dz-error-message {
     opacity: 1 !important;
 }
 
 .wcapogDropzonePlaceFile {
     margin-top: 10px;
 }

 #wcapogDropzoneLink {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
 }

 #success_message_text {
    border: 1px solid;
    padding: 10px;
    text-align: center;
    margin-top: 10px!important; 
 }
 #success_message_text .warning {
     color: red;
 }