﻿

.dialog-head {
  font-weight: 900;
  font-size: 19px;
  background-color: #51677d;
  color: #ffffff;
  height: 40px;
  line-height: 40px;
  width: 100%;
}

.dialog-icon-container {
  border-radius: 50%;
  background-color: #ffffff;
  width: 30px;
  height: 30px;
  margin-top: 5px;
  line-height: 30px;
}

.dialog-icon {
  font-size: 22px;
  /*color: #51677d;*/
  margin-top: 4px;
}


.dialog-error-color {
  color: red;
}

.dialog-validation-color {
  color: orange;
}

.dialog-success-color {
  color: green;
}

.dialog-content {
  word-wrap: break-word;
}


/*MODAL NEW*/
* {
  box-sizing: border-box;
}

.Modal-backdrop {
  position: fixed;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  background: #000;
  z-index: 1999;
  opacity: 0.5;
}

.Modal-holder {
  position: fixed;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  background: transparent;
  z-index: 2000;
  padding: 30px 15px;
}

.Modal-box {
  width: 65%;
  background: #fff;
  padding: 4px;
  border: #51677d 5px solid;
  border-radius: 4px;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

@media screen and (min-width: 992px) {
  .Modal-box {
    width: 50%;
    /*padding: 30px;*/
  }
}
