.wau-auto-width{
  width: auto !important;
  padding: 10px 0px;
}

/* The Modal (background) */
.wau-modal {
  display: none; 		/* Hidden by default */
  position: fixed; 	/* Stay in place */
  z-index: 999; 		/* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; 		/* Full width */
  height: 100%; 		/* Full height */
  overflow: auto; 	/* Enable scroll if needed */
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
}

/* Modal Content */
.wau-modal-contents {
  position: relative;
  background-color: #fff;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
  width: 70%;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
  border-radius: 10px;
  text-align: center;
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {top:-300px; opacity:0} 
    to {top:0; opacity:1}
}

@keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

/* Modal Header Section */
.wau-header {
    padding: 4px;
    /*background-color: #5cb85c;
    color: white;*/
}

.wau-header-title {
	width: 90%;
	float: left;
	text-align: center;
}

.wau-header-title h1 {
	padding-left: 20px;
}

/* The Close Button */
.wau-header-close {
	text-align: center;
	cursor: pointer;
	width: 10%;
	float: right;
}

.wau-header-close::before {
	font-size: 23px;
    font-family: dashicons;
    line-height: 53px;
    speak: none;
    -webkit-font-smoothing: antialiased;
    content: "\f335";
}

.wau-header-close:hover,
.wau-header-close:focus {
    color: #888;
    text-decoration: none;
    cursor: pointer;
}

/*.modal-body {padding: 2px 16px;}*/

.modal-footer {
    padding: 4px;
    /*background-color: #5cb85c;
    color: white;*/
}

.wau_modal_button_class {
	margin: 5px 10px;
}

.file-container {
  text-align: center;
  margin-bottom: 10px;
}

.delete-button {
  display: inline-block;
  padding: 5px 10px;
  background-color: red;
  color: white;
  border: none;
  cursor: pointer;
  margin-top: 5px;
}

@media (max-width: 600px) {
	.wau-modal-contents {
		width: 100%;
	}	
}

@media (min-width: 601px) and (max-width: 767px) {
	.wau-modal-contents {
		width: 80%;
	}	
}

.wau-mb-2 {
  margin: 1rem 0;
}