.five9-proactive {
  display: inline-block;
  width: 250px;
  z-index: 9999;
  border: none;
  border-radius: 10px;
  margin: 0;
  padding: 12px 15px 0px 15px;
  background: linear-gradient(#3396C6, #2281B8);
  color: white;
  font-size: 20px;
  font-weight: normal;
  box-shadow: 0px 2px rgba(0, 0, 0, 0.25);
}
.five9-proactive.five9-inverse {
  background: white;
  color: #2e3438;
  border: 2px solid #ecedee;
}
.five9-proactive.five9-notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
}
.five9-proactive.five9-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.five9-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9900;
  overflow-x: auto;
  overflow-y: scroll;
  background: rgba(0, 0, 0, 0.5);
}
.five9-proactive .five9-icon {
  display: inline-block;
  position: absolute;
  top: -2px;
  left: -2px;
  width: 82px;
  height: 82px;
  background-image: url('../png/chat-large.png');
  background-repeat: no-repeat;
  background-size: 82px 82px;
  background-position: center center;
  margin: 0;
  padding: 0;
}
.five9-proactive.five9-inverse .five9-icon {
  background-image: url('../png/chat-large-blue.png');
}
.five9-proactive .five9-exit {
  display: inline-block;
  position: absolute;
  top: 8px;
  right: 8px;
  width: 14px;
  height: 14px;
  background-image: url('../png/times-32-grey.png');
  background-repeat: no-repeat;
  background-size: 14px 14px;
  background-position: center center;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
.five9-proactive .five9-text {
  display: inline-block;
  min-height: 58px;
  margin: 0;
  padding: 0;
  padding-left: 64px;
  padding-right: 10px;
}
.five9-proactive.five9-inverse .five9-text {
  font-size: 14px;
}
.five9-proactive .five9-message-text {
  display: none;
}
.five9-proactive.five9-inverse .five9-message-text {
  display: block;
  border: 1px solid #ecedee;
  padding: 10px;
  font-size: 14px;
}
.five9-proactive .five9-agent-text {
  color: #515659;
  font-size: 12px;
  font-weight: bold;
}
.five9-proactive .five9-agent-text .display-time {
  font-weight: normal;
}
.five9-proactive .five9-start-button {
  margin: 23px 0 0 0;
  padding: 8px;
  border-radius: 5px;
  background: white;
  color: #3396C6;
  box-shadow: 0px 2px rgba(0, 0, 0, 0.15);
  text-align: center;
  cursor: pointer;
}
.five9-proactive.five9-inverse .five9-start-button {
  background: #3396C6;
  color: white;
}
.five9-proactive .five9-close-button {
  margin: 8px 0;
  padding: 0;
  text-align: center;
  font-size: 10px;
  cursor: pointer;
}
.five9-proactive .five9-close-button:hover {
  text-decoration: underline;
}
#five9-notification {
  opacity: 0;
  visibility: hidden;
}
#five9-notification.active {
  visibility: visible;
  opacity: 1;
  transition: opacity 1s linear;
}
#five9-modal {
  visibility: hidden;
}
#five9-modal.active {
  visibility: visible;
}
