#PPEditAgentInfoDialog {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  overflow-y: overlay;
  overflow-x: hidden;
  z-index: 9997;
}

#info-photo {
  /* float: left; */
  width: 100px;
  height: 100px;
  margin: 10px auto 0 auto;
  position: relative;
}

#info-photo-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer; 
}

#info-photo-remove {
  position: absolute;
  top: 0;
  right: 0;
  width: 25px;
  height: 25px;
}

.agent-info-content {
  width: 100%;
  max-width: 450px;
  height: 600px;
  background-color: white;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.agent-info-header {
  top: 0;
  left: 0;
  height: 55px;
  width: 100%;
  background-color: #293655;
  position: absolute;
  line-height: 55px;
}

.agent-info-header-content {
  padding-left: 20px;
  font-size: 18px;
  color: white;
  height: 18px;
}

.agent-info-body {
  top: 55px;
  left: 0;
  width: 100%;
  background-color: white;
  position: absolute;
}

.agent-info-body-title {
  background-color: #e9ecf5;
  color: #858585;
  padding-left: 1em;
  height: 36px;
  line-height: 36px;
  font-size: 1em;
  margin: 0;
}

.agent-info-body-input-margin {
  width: 100%;
  padding-left: 1em;
  padding-right: 1em;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  box-sizing: border-box;
}

.agent-info-body-input-text {
  width: 100%;
  height: 36px;
  color: #494949;
  border: solid 1px #c2d3d3;
  padding-left: 0.5em;
  padding-top: 0.5em;
  box-sizing: border-box;
}

.agent-info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 70px;
  background-color:#f3f3f3;
}

.agent-responsive-indents {
  float: left;
  width: calc(100% - 180px);
}

.agent-info-bottom-box {
  width: 100%;
  -ms-transform: translateY(-3px);
  -webkit-transform:translateY(-3px);
  transform:translateY(-3px);
  height: 100%;
}

@media not all and (min-height: 600px) {

  #PPEditAgentInfoDialog {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: baseline;
    justify-content: center;
    overflow-y: overlay;
    overflow-x: hidden;
    z-index: 5;
  }

  .agent-info-content {
    width: 100%;
    height: 100%;
    min-width: 100px;
    min-height: auto;
    background-color: white;
    margin: auto;
    position: relative;
  }

  .agent-info-body {
    top: 55px;
    left: 0;
    width: 100%;
    height: calc(100% - 125px);
    overflow-y: auto;
    background-color: white;
    position: absolute;
  }
}

