.mainForm {
    border-radius: 5px;
    padding: 10px;
    max-width: 500px;
   
  }
  .mainForm input[type="radio"]{
   height: 10px !important
   
  }
  /* Button used to open the chat form - fixed at the bottom of the page */
  .open-button {
    background-color: #555;
    color: white;
    padding: 16px 20px;
    border: none;
    cursor: pointer;
    opacity: 0.8;
    position: fixed;
    bottom: 23px;
    right: 28px;
    width: 280px;
  }


  /* The popup chat - hidden by default */



  /* Add styles to the form container */
  .form-container {
    /* max-width: 300px; */
    padding: 1px;
    background-color: #fff0;
  }

  /* Add some hover effects to buttons */
  .form-container .btn:hover,
  .open-button:hover {
    opacity: 1;
  }


  .assist-button {
    right: 7px;
    bottom: 15px;
    position: fixed;
    width: 86px;
    height: 86px;
    cursor: pointer;
  }

  .assist-icon {
    width: 100%;
    height: 100%;
    border-radius: 100px;
    display: flex;
    position: absolute;
    box-shadow: 0 0px 8px 0 rgb(0 0 0 / 20%);
    transition: background 0.1s cubic-bezier(0.4, 0, 0.2, 1);
    background: #087972 url(./livechat_icon.png) no-repeat center center;
    background-size: 65%;
  }

  /*toolbar style*/
  .header-content {
    list-style-type: none;
    position: fixed;
    background-color: #fff;
    padding: 0;
    transition: all .15s linear;
    height: 106px;
    width: 100%;
    z-index: 100;
  
  }

  .header-content-box {
    padding-left: 15px;
    padding-right: 15px;
    min-height: 106px;
    background-color: #087972;
    margin: auto;
    position: relative;
  }

  .img-logo {
    height: 70px;
    float: left;
    margin-top: 20px;
    position: absolute;
  }

  .home-banner {
    width: 100%;
    height: 106px;
    background-size: cover;
    background-position: top;
  }

  .v-enter-active,
  .v-leave-active {
    transition: opacity 0.3s
  }

  .v-enter,
  .v-leave-to {
    opacity: 0
  }

  .v-enter-to,
  .v-leave {
    opacity: 1
  }