.mwsModal {
  text-align: right;
  direction: rtl;
  font-family: IRANSansWeb;
  font-size: 12px;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.8);
}

.mwsModal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
  border-radius: 8px;
  width: 350px;
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 1.0s;
}

@-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;
  }
}

.close {
  color: white;
  float: left;
  font-size: 30px;
  font-weight: bold;
  margin-top: -1px;
  margin-left: -5px;
}

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

.mwsModal-header {
  padding: 2px 16px;
  background-color: #000000;
  color: white;
  border-radius: 5px 5px 0 0;
  border-bottom: 3px solid #404040;
}

.mwsModal-body {
  padding: 2px 16px;
}

.mwsModal-footer {
  text-align: center;
  padding: 2px 16px;
  background-color: #404040;
  color: white;
  border-radius: 0 0 5px 5px;
}
