h2 {
  text-align: center; }

body {
  background-color: #c9c9c9; }

.mx-message {
  position: fixed;
  right: 16px;
  height: 185px;
  width: 350px;
  transition: bottom 700ms; }
  .mx-message-text {
    background: #F3F0EE;
    border: 1px solid #F3F0EE;
    box-shadow: 0 2px 24px 0 rgba(45, 45, 45, 0.07), 0 4px 14px rgba(45, 45, 45, 0.07);
    color: #03363D;
    font-size: 16px;
    padding: 12px 18px;
    position: relative;
    margin-bottom: 0; }
    .mx-message-text-callout {
      font-family: 'SharpSans', Helvetica, Arial, sans-serif;
      font-size: 36px;
      font-weight: 600;
      margin: 0; }
    .mx-message-text-detail {
      font-family: 'ProximaNova', Helvetica, Arial, sans-serif;
      font-size: 17px;
      font-weight: 500;
      line-height: 1.3em;
      margin: 0; }
  .mx-message-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0; }
    .mx-message-nav ul li {
      margin: 12px 4px 0; }
      .mx-message-nav ul li a {
        background: #30AABC;
        box-shadow: 0 6px 11px 0 rgba(63, 49, 178, 0.04), 0 12px 22px 0 rgba(63, 49, 178, 0.08);
        display: flex;
        justify-content: center;
        align-items: center;
        font-family: 'SharpSans', Helvetica, Arial, sans-serif;
        font-weight: 600;
        height: 32px;
        width: 80px;
        color: white;
        text-decoration: none;
        text-align: center; }
  .mx-message-close-button {
    background: url(/static_assets/images/proactive-messaging/close.svg) no-repeat;
    background-size: contain;
    opacity: .1;
    position: absolute;
    top: 6px;
    right: 4px;
    height: 25px;
    width: 25px;
    transition: all ease-in-out 500ms;
    z-index: 1; }
  .mx-message.query, .mx-message.declined {
    bottom: -230px; }

.mx-message:hover .mx-message-close-button {
  opacity: .4; }
  .mx-message:hover .mx-message-close-button:hover {
    opacity: .55;
    cursor: pointer; }
