.page-submenu .mobile-menu-link {
    padding-right: 0px !important;
    vertical-align: baseline!important;
    line-height: 18px !important;
    padding-top: 21px !important;
    padding-bottom: 21px !important;
    text-align: center;
    line-height: 18px !important;
    font-size: 18px;
    /*font-family: 'Open Sans', Helvetica, sans-serif;*/
}
        
.tsc-sub-menu .page-submenu>div a.mobile-menu-link i {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  line-height: 18px;
  margin-top: 1px;
}
.tsc-sub-menu .page-submenu>div a.mobile-menu-link i::before {
  display: block;
  line-height: 16px;
}

#wpadminbar {
    overflow: hidden;
}
#wpadminbar:hover {
    overflow: visible;
}
#wpadminbar:focus-within {
    overflow: visible;
}
#wpadminbar a {
    background: black;
}

.tsc-richtext a { 
    text-decoration: none !important;
    position: relative;
    display: inline-block;
    color: inherit;
}

.tsc-richtext a::after {
    content: "";
    border-bottom: 1px solid var(--color-text);
    position: absolute;
    bottom: -.1em;
    width: 100%;
    display: block;
    transition: transform .4s cubic-bezier(.23,.46,.4,1);
    transform-origin: left;
    transform: scaleX(1);
}

.tsc-richtext a:hover::after {
    transform: scaleX(0);
    transform-origin: right;
}