.tab-custom--active, div.tabs-9152-tab-active {
  background-color: var(--action);
  color: var(--action-ultra-light);
  border-radius: var(--radius-xxl);
}
.tab-custom, .tabs-9152-tab {
  color: var(--base);
  border: solid 1px var(--shade-light);
  border-radius: var(--radius-xxl);
  padding: var(--btn-pad-y) var(--btn-pad-x);
  font-size: var(--text-s);
  white-space: nowrap;
  transition: 0.4s ease all;
}
.tabs-wrapper {
  overflow-y: scroll;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* Internet Explorer 10+ */
}
.tabs-wrapper::-webkit-scrollbar {
  /* WebKit */
  width: 0;
  height: 0;
}
.content--full-width * {
  max-width: 100%;
}
/*custom List styling*/
ul.list-marker--check {
  list-style: none;
  padding-left: 0;
}
ul.list-marker--check li {
  padding-left: 2em;
  margin-bottom: 0.5em;
  position: relative;
}
ul.list-marker--check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0rem;
  width: 1.5em;
  height: 1.5em;
  background-color: var(--action);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-image: url("data:image/svg+xml;utf8,<?xml version='1.0' encoding='utf-8'?><svg aria-hidden='true' focusable='false' data-prefix='fas' data-icon='check-circle' class='svg-inline--fa fa-check-circle fa-w-16' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'><path d='M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z'></path></svg>");
}
/*FX ICON TEXT*/
.fx--icon-left {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 5H4V19L13.2923 9.70649C13.6828 9.31595 14.3159 9.31591 14.7065 9.70641L20 15.0104V5ZM2 3.9934C2 3.44476 2.45531 3 2.9918 3H21.0082C21.556 3 22 3.44495 22 3.9934V20.0066C22 20.5552 21.5447 21 21.0082 21H2.9918C2.44405 21 2 20.5551 2 20.0066V3.9934ZM8 11C6.89543 11 6 10.1046 6 9C6 7.89543 6.89543 7 8 7C9.10457 7 10 7.89543 10 9C10 10.1046 9.10457 11 8 11Z'%3E%3C/path%3E%3C/svg%3E");
  --icon-size: 1.5em;
  --icon-space: 0.5em;
  --icon-color: currentColor;
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
}
.fx--icon-left::before {
  content: "";
  -webkit-mask-image: var(--icon);
  mask-image: var(--icon);
  -webkit-mask-repeat: no-repeat;
  width: var(--icon-size);
  height: var(--icon-size);
  background-color: var(--icon-color);
  margin-right: var(--icon-space);
}
input[type="submit"] {
  transition: 0.3s ease all;
}
