.m-share-bar__content__wrapper {
    padding: 1rem 0;
        width:100%;
      display:flex;
      justify-content:center;
  }
  
  .m-share-bar {
    display: grid;
    width: 100%;
    max-width: var(--banner-width);
      grid-template-columns: 1fr;
    }
  
  .m-share-bar a {
    text-decoration: none;
    
    font-size: var(--font-large);
  }
  
  .m-share-bar__menu {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    flex-direction: row;
    align-items: center;
  }
  
  .m-share-bar__menu ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .m-share-bar .hs_cos_wrapper_type_simple_menu{
    width: 100%;
  }
  
  .m-share-bar__social {
    display: flex;
    justify-content: center;
    width: 100%;
    flex-direction: row;
    min-width: 500px;
  }

  .m-share-bar__social img {
    height: 1.5rem;
    filter: var(--white-filter);
    
  }

  .m-share-bar__social span {
    font-weight: 600;
    margin-bottom: 5px;
  }
  
  .m-share-bar__social a{
    font-size: var(--font-xl);
    transition: transform var(--transition-duration) ease-in-out;
  }

  .m-share-bar__social a:hover{
    transform: scale(1.2);
  }
  
  
  
  .m-share-bar__social__sites {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-end;
    width: 100%;
    flex-direction: row;
    text-decoration: none;
    max-width:320px;
    padding-right: 1rem;
    border-right: 1px solid #ffffff70;
  }
  
  .m-share-bar__social__print {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-end;
    width: 100%;
    flex-direction: row;
    text-decoration: none;
    max-width: 200px;
  }
  
  /* Copy Notification */

  .m-share-bar__copy-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gray);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: var(--base-font);
    font-weight: bolder;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
    z-index: 9999;
  }
  
  .m-share-bar__copy-popup.show {
    opacity: 1;
    visibility: visible;
  }
  
  
      
    @media only screen and (max-width: 1600px) {
      .m-share-bar{
        padding: 0 3rem;
      }
      .m-share-bar__social {
        min-width: calc(300px + 4vw);
      }
  
    }
    @media only screen and (max-width: 1200px) {
      .m-share-bar .dropdown {
      display: block;
      }
      .m-share-bar__menu {
        display: none;
      }
      #myDropdown .menu-mobile {
        display: flex;min-width: 300px;
      }
      .m-share-bar__menu ul {
        flex-direction: column;
      }
      .m-share-bar__menu ul li {
        width: 100%;
        height: auto;
      }
  
  
    }
    @media only screen and (min-width: 1025px) and (max-width: 1599px) {
  
    }
    @media only screen and (min-width: 768px) and (max-width: 1024px) {
  
    }
    
    
  @media only screen and (max-width: 767px) {
    .m-share-bar{
      padding: 0;
    }
    .m-share-bar__social__print {
      display: none;
    }
    .m-share-bar__social__sites {
      padding-right: 0;
      border-right: none;
    }


    }
    
   
  
  
    
  
  
  
  
  
  
  
  /*
    
    .links-bar-menu ul {
      list-style: none;
      display: flex;
      justify-content: space-between;
      margin: 0;
      padding: 0.2% 10%;
    }
    
    .links-bar-menu ul .hs-menu-depth-1 {
      padding: 1%;
      font-weight: 600;
      font-size: 18px;
    
    }
    .links-bar-menu ul .hs-menu-depth-1 a{
      text-decoration: none;
      color: #5b656e;
    
    }
    @media screen and (max-width: 1150px) {
      .links-bar-menu .hs-menu-wrapper {
        flex-direction: column;
        height: 100%;
        width: 100%;
      }
      .links-bar-menu ul {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        width: 100%;
        justify-content: space-evenly;
      }
      .links-bar-menu ul .hs-menu-depth-1 {
        padding: 10%;
        width: 100%;
      }
    }
    @media screen and (max-width: 762px) {
    
        .links-bar-menu ul {
            grid-template-columns: 1fr 1fr;
            text-align:center;
    
        }
    }
  