.dhp-sticky-widget-container {
    display: none;
  }
  .dhp-sticky-widget {
    background-color: #2a4f8a;
    color: white;
    box-sizing: border-box;
    width: 100%;
    margin: 0 auto;
    z-index: 1000000;
  }
  .dhp-sticky-widget--fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }
  
  .dhp-sticky-widget--fixed .dhp-sticky-widget__inner {
    padding: 10px 80px 10px 20px;
  }
  .dhp-sticky-widget__inner {
    position: relative;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 960px;
    padding: 20px 80px 20px 20px;
    box-sizing: border-box;
  }
  .dhp-sticky-widget__text {
    font-weight: lighter;
    font-size: 18px;
  }
  .dhp-sticky-widget__link {
    text-decoration: none;
    font-weight: lighter;
    font-size: 16px;
    display: block;
    border: 1px solid white;
    border-radius: 4px;
    padding: 10px 30px;
    color: white;
    margin-top: 10px;
    text-align: center;
  }
  .dhp-sticky-widget__link:hover {
    background-color: #146cdc;
  }
  .dhp-sticky-widget__close-button {
    position: absolute;
    right: 12px;
    top: 50%;
    margin-top: -18px;
    cursor: pointer;
    font-size: 32px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
  }
  .dhp-sticky-widget__close-button:hover {
    background-color: #146cdc;
  }

  .dhp-sticky-widget__icon {
    padding-right: 10px;
  }
  .dhp-sticky-widget__icon-img {
      max-height: 60px;
  }
  
  @media screen and (min-width: 600px) {
    .dhp-sticky-widget__inner {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }
    .dhp-sticky-widget__link {
      margin-left: 10px;
      margin-top: 0;
    }
  }