.msgdlg-show {
  height: 100%;
  overflow: hidden;
}
.msgdlg-modal {
  color: #000;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999999999999;
  background-color: rgba(0, 0, 0, 0.5);
  display: table;
  opacity: 0;
}
.msgdlg-container {
  height: 100%;
  width: 100%;
  vertical-align: middle;
  display: table-cell;
}
.msgdlg-wrapper {
  background: #fff;
  width: 0;
}
@media (min-width: 1440px) {
  .msgdlg-conteudo {
    width: 50%;
    max-width: 960px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .msgdlg-conteudo {
    width: 60%;
    max-width: 864px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .msgdlg-conteudo {
    width: 70%;
    max-width: 896px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .msgdlg-conteudo {
    width: 80%;
    max-width: 820px;
  }
}
@media (max-width: 767px) {
  .msgdlg-conteudo {
    width: 80%;
    max-width: 614px;
  }
}
.msgdlg-conteudo {
  min-width: 480px;
  margin: 0 auto;
  padding-top: 30px;
  padding-bottom: 20px;
  font-family: 'Segoe UI', Verdana;
  opacity: 0;
}
.msgdlg-conteudo .titulo {
  font-size: 26pt;
  width: 100%;
}
.msgdlg-conteudo .mensagem {
  font-size: 14pt;
  padding-top: 30px;
  padding-bottom: 30px;
  word-wrap: break-word;
  max-height: 250px;
  overflow-y: auto;
}
.msgdlg-conteudo .botoes {
  width: 100%;
  text-align: right;
  height: 35px;
  overflow: hidden;
  padding: 5px;
}
.msgdlg-conteudo .botoes .botao {
  background-color: #202020;
  color: #fff;
  display: inline-block;
  margin-left: 20px;
  height: 35px;
  min-width: 80px;
  font-size: 14pt;
  padding-left: 15px;
  padding-right: 15px;
  font-family: 'Segoe UI';
  outline: 0;
}
.msgdlg-conteudo .botoes .botao:active {
  background-color: #060606;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4) !important;
}
.msgdlg-conteudo .botoes .botao:focus {
  background-color: #535353;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4) !important;
}
.msgdlg-conteudo .botoes.final {
  overflow: auto;
  height: auto;
}
.msgdlg-conteudo .botoes.final .botao.display-pequeno {
  display: block;
  width: 75%;
  float: right;
}
