.essp-modal {
  display: none;
  position: fixed;
  z-index: 99;
  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.4);
}

.essp-modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
  border-radius: 6px;
  min-width: 400px;
  max-width: 740px;
  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
}

@-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}
}

.essp-close {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.essp-close:hover,
.essp-close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.essp-modal-header {
  padding: 2px 16px;
  background: #ea4a2e;
  border-top-right-radius: 6px;
 border-top-left-radius: 6px;
  color: white;
}

.essp-modal-header-title {
  color: white;
  font-size: 16px;
}
.essp-modal-body {padding: 2px 16px;}

.essp-modal-footer {
  padding: 2px 16px;
  background-color: #5cb85c;
  color: white;
}

.essp-block {
    display: flex;
    flex-flow: row;
    justify-content: center;
}
    
.essp-wrap {
        display: block;
}

.essp-padd-10 {
    padding: 10px 0px;
}

.essp-padd-20 {
    padding: 20px 0px;
}

.essp-left {
    justify-content: left;
}