body.has-edit-mode-menu #umdev-chat-wrapper {
  display: none !important;
}

#umdev-chat-wrapper {
  font-size: 14px;
  position: relative;
  z-index: 989 !important;
}

#umdev-chat-wrapper .hidden {
  display: none;
}

#umdev-chat-wrapper .wrap {
  width: 100%;
  max-width: 350px;
}

#umdev-chat-wrapper .chat-submit,
#umdev-chat-wrapper .chat-submit:hover,
#umdev-chat-wrapper .chat-submit:active {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  background-color: #00274c;
  padding: 10px;
  border-radius: 8px;
  display: block !important;
  width: 100% !important;
  margin-bottom: 1em;
  color: #fff !important;
}

#umdev-chat-wrapper .chat-submit:disabled {
  background-color: rgba(0, 39, 76, 0.8);
  cursor: not-allowed;
  pointer-events: all !important;
}

#umdev-chat-wrapper .chat-button {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  position: fixed;
  bottom: 0;
  right: 0px;
  left: auto;
  height: 48px;
  width: auto;
  border: 0;
  box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
  padding: 0 20px;
  transition: all 0.4s, bottom 0.8s ease-in-out;
  cursor: pointer;
  display: inline-block;
  margin: 0;
  border-radius: 8px 8px 0 0 !important;
  background-color: #ffd634;
  animation-name: umdevLoadTab;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
  animation-duration: .2s;
}

#umdev-chat-wrapper .chat-top-bar {
  background-color: #ffd634;
  color: #333333;
  border: none;
  font-weight: 900;
  padding: 15px 20px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  cursor: pointer;
}

#umdev-chat-wrapper .chat-top-bar button {
  background: transparent;
  border: none;
  cursor: pointer;
}

#umdev-chat-wrapper .chat-top-bar button svg {
  width: 15px;
  fill: #333333;
}

#umdev-chat-wrapper .chat-box {
  background: #fff;
  position: fixed;
  bottom: 0;
  right: 0px;
  color: #000;
  font-family: "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  z-index: 2147483646;
  zoom: 0;
  -webkit-font-smoothing: antialiased;
  height: 490px;
  width: inherit;
  max-width: inherit;
  border-radius: 10px 10px 0 0;
  top: inherit;
  transition: all 0.6s ease-in-out, width 0.2s ease-in-out, top 0.4s ease-in-out;
  border: 1px solid #efefef;
  opacity: 100;
}

#umdev-chat-wrapper .well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  box-shadow: inset 0 1px 1px black;
}

#umdev-chat-wrapper input,
#umdev-chat-wrapper textarea {
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  box-shadow: inset 0 1px 1px black;
}

#umdev-chat-wrapper ul {
  padding-inline-start: 0;
}

#umdev-chat-wrapper .form-row {
  display: flex;
  justify-content: flex-end;
  padding: .5em;
}

#umdev-chat-wrapper .form-row>label {
  padding: .5em 1em .5em 0;
  flex: 1;
}

#umdev-chat-wrapper .form-row>input,
#umdev-chat-wrapper .form-row>textarea {
  flex: 2;
}

#umdev-chat-wrapper .form-row>input,
#umdev-chat-wrapper .form-row>button {
  padding: .5em;
}

@media screen and (min-width: 768px) {

  #umdev-chat-wrapper .form-row>input,
  #umdev-chat-wrapper .form-row>textarea {
    flex: 3;
  }
}

@media screen and (min-width: 992px) {

  #umdev-chat-wrapper .form-row>input,
  #umdev-chat-wrapper .form-row>textarea {
    flex: 4;
  }
}

@media screen and (min-width: 1200px) {

  #umdev-chat-wrapper .form-row>input,
  #umdev-chat-wrapper .form-row>textarea {
    flex: 5;
  }
}

#umdev-chat-wrapper .chat-content {
  padding: 12px;
}

@-moz-keyframes umdevLoadTab {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@-webkit-keyframes umdevLoadTab {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@-o-keyframes umdevLoadTab {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes umdevLoadTab {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}