.parcel-inquiry i {
  color: #fff!important;
}
.parcel-inquiry {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: fixed;
  bottom: 75px;
  right: 10px;
  width: 55px;
  height: 55px;
  transition: all 250ms ease-out;
  border-radius: 50%;
  opacity: 1;
  background-color: #ff5454;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-size: 18px;
}

.floating-chat {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 55px;
  height: 55px;
  transform: translateY(70px);
  transition: all 250ms ease-out;
  border-radius: 50%;
  opacity: 0;
  background-color: #B07C29;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-size: 18px;
}
.floating-chat.enter:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  opacity: 1;
}
.floating-chat.enter {
  transform: translateY(0);
  z-index: 5;
  opacity: 1;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.12), 0px 1px 2px rgba(0, 0, 0, 0.14);
}
.floating-chat.expand {
  width: 260px;
  max-height: 375px;
  height: 350px;
  border-radius: 5px;
  cursor: auto;
  opacity: 1;
}
.floating-chat :focus {
  outline: 0;
  box-shadow: unset;
  border-color: transparent;
}
.floating-chat button {
  background: transparent;
  border: 0;
  color: white;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
}
.floating-chat .chat {
  display: flex;
  flex-direction: column;
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  border-radius: 50%;
  transition: all 250ms ease-out;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.floating-chat .chat.enter {
  opacity: 1;
  border-radius: 0;
  margin: 10px;
  width: auto;
  height: auto;
}
.floating-chat .chat .flt-box-header {
  flex-shrink: 0;
  padding-bottom: 10px;
  display: flex;
  background: transparent;
  border-bottom: 1px solid #eee;
}
.floating-chat .chat .flt-box-header .title {
  flex-grow: 1;
  flex-shrink: 1;
  padding: 0 5px;
}
.floating-chat .chat .flt-box-header button {
  flex-shrink: 0;
}
.support-msg{
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.5px;
  margin: 10px 0 5px 0;
}
button#save_feedback:hover {
  background: black;
  transition: all 0.5s ease;
}
.payment-info {
  margin-top: 10px !important;
  text-align: center !important;
  text-decoration: underline;
  color: white;
}