@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
  
.dcmodal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  overflow-x: hidden;
  overflow-y: auto;
}

.dcmodal.hidden {
 display: none; 
}

.dcmodal * {  
  font-family: 'Open-Sans', sans-serif;  
}

.dcmodal-content {
  background-color: rgb(255 255 255);
  min-width: 30%;
  max-width: 50%;
  border-radius: 0.5rem;
  margin: 2rem auto;
  padding: 0;
}

.dcmodal-content .dcmodal-header {    
  min-height: 1.25rem;
  padding: 15px;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.dcmodal-content .dcmodal-header.hide-header {
  display: none;
}

.dcmodal-content .dcmodal-header.show-linestrip {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgb(229 229 229);
}

.dcmodal-content .dcmodal-header > button.close {
    float: right;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    text-shadow: 0 1px 0 #fff;
    outline: 0;
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;    
}

.dcmodal-content .dcmodal-header > button.close > span {
}

.dcmodal-content .dcmodal-header > h3 { 
  font-size: 1.25rem;
  margin: 0;
}

.dcmodal-content .dcmodal-body {
  padding: 15px;  
}

.dcmodal-content .dcmodal-footer {    
  min-height: 1.25rem;
  padding: 15px;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.dcmodal-content .dcmodal-footer.hide-footer {
  display: none;
}

.dcmodal-content .dcmodal-footer.show-linestrip {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(229 229 229);
}

.dcmodal-content .dcmodal-footer a.button {
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: .25rem;
  border: none;
  margin-bottom: 0;
  font-weight: normal;  
  outline: none;
}

.dcmodal-content .dcmodal-footer a.button:hover {
  filter: brightness(0.9);
}

.dcmodal.hidden + .dcbackdrop {
  display: none;
}

.dcbackdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
}