/** Variables to insert into the remainder of the stylesheet */
* {
  --primary-color: #4630a8;
  --text-color: #010101;
}

/** do not sell */
.do-not-sell-explainer-interface .switch.label {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  text-align: left;
  padding: 10px;
  border-radius: 10px;
}

/** When switch is checked */
.do-not-sell-explainer-interface .label:has(.switch-checkbox:checked) {
  background: #f3f1ff;
}

/** do not sell status */
.do-not-sell-explainer-interface p[role="status"] {
  display: none;
  font-size: 12px;
  margin-top: 10px;
  text-align: center;
}

/** do not sell */
.do-not-sell-explainer-interface .switch.switch-background {
  flex: 0 0 auto;
  min-width: max-content;
  margin-left: auto;
}

/** custom buttons */
.consent-bottom-buttons {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding: 0;
  box-sizing: border-box;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

/** custom buttons */
.consent-bottom-buttons button {
  border: none;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  padding: 10px 28px;
}

/** Accept All */
.consent-bottom-buttons button:first-child {
  background: #5430d8;
  color: #fff;
}

/** Accept All */
.consent-bottom-buttons button:first-child:hover {
  background: #4c2aba;
}

/** Accept All */
.consent-bottom-buttons button:first-child:active {
  background: #361b93;
}

/** links */
.modal-container a {
  color: #5430d8;
  font-weight: 600;
}

/** links */
.modal-container a:hover {
  color: #4c2aba;
}

/** links */
.modal-container a:active {
  color: #361b93;
}

/** Save Preferences */
.consent-bottom-buttons button:last-child {
  background: #f6f5f2;
  color: #000;
}

/** Save Preferences */
.consent-bottom-buttons button:last-child:hover {
  background: #f3f2ed;
  color: #000;
}

/** Save Preferences */
.consent-bottom-buttons button:last-child:active {
  background: #e4e3db;
  color: #000;
}

/** custom buttons */
.modal-container:has(.consent-bottom-buttons) .modal-container-inner {
  padding-bottom: 80px;
}

/** fix relative position */
.modal-container .modal-container-inner {
  position: relative;
}

/** wrapper */
.complete-options-toggle-interface > span {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 24px;
  padding: 10px;
  border-radius: 10px;
}

/** When switch is checked */
.complete-options-toggle-interface > span:has(.switch.switch-checkbox:checked) {
  background: #f3f1ff;
}

/** Make the label's text behave like the title */
.complete-options-toggle-interface .label {
  display: contents;
}

/** Put the switch on the right, spanning both text rows */
.complete-options-toggle-interface .switch-background {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
}

/** Description */
.complete-options-toggle-interface .complete-options-toggle-description {
  grid-column: 1;
  grid-row: 2;
  margin: 0 0 0;
  font-size: 12px
}

/** Message wrapper */
.consent-message-wrapper {
  display: flex;
  align-items: center;
  gap: 18px;
}

/** Consent message */
.consent-message {
  flex: 1 1 auto;
}

/** Cookie icon wrapper */
.consent-cookie-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #efeafc;
  display: flex;
  align-items: center;
  justify-content: center;
}

/** Cookie icon */
.consent-cookie-icon::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background: url('data:image/svg+xml,%3Csvg width="22" height="22" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M12 2a10 10 0 1 0 10 10c0-.6-.05-1.18-.15-1.74a3 3 0 0 1-3.6-3.6A10 10 0 0 0 12 2Z" fill="%234630A8"/%3E%3Ccircle cx="9" cy="9" r="1.2" fill="%23fff"/%3E%3Ccircle cx="13" cy="13" r="1.2" fill="%23fff"/%3E%3Ccircle cx="8" cy="14" r="1" fill="%23fff"/%3E%3Ccircle cx="15" cy="8" r="1" fill="%23fff"/%3E%3C/svg%3E') center / contain no-repeat;
}

/** Button row styles for AcceptOrRejectAll view state */
.accept-or-reject-all-button-row {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/** Container that is wrapped around the modal */
.modal-container {
  overflow-y: auto;
  position: fixed;
  overscroll-behavior: none;
  bottom: 10px;
  left: 5px;
  right: 5px;
  margin: 0 auto;
  width: calc(100% - 10px);
  box-sizing: border-box;
  border-radius: 25px;
  border: 0.5px solid #d8d8d8;
  background-color: rgba(255, 255, 255, 1.0);
  padding: 15px;
  font-family: "Proxima Nova", "Helvetica Neue", Helvetica, sans-serif;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  animation: fadeIn 150ms;
  max-height: 95%;
  transition: width 150ms, height 150ms;
}

/** Buttons displayed throughout the consent UI */
.button {
  border-radius: 500px;
  background-color: #512dcb;
  opacity: 1.0;
  border: 1px solid #512dcb;
  box-sizing: border-box;
  cursor: pointer;
  filter: brightness(100%);
  flex-shrink: 0;
  font-family: inherit;
  text-align: center;
  padding: 5px 18px;
  transition: filter 150ms, background-color 150ms;
}

/** On button hover */
.button:hover {
  background-color: #4c2aba;
  border: 1px solid #4c2aba;
}

/** On button active */
.button:active {
  background-color: #361b93;
  border: 1px solid #361b93;
}

/** Base styles applied to button text */
.button-base-text {
  color: white;
  display: block;
  font-style: normal;
  text-align: center;
  transition: color 150ms;
}

/** Button focus */
button:focus {
  outline: 0px ;
}

/** Styles for button of X marker in top right corner */
.complete-options-toggle-close, .do-not-sell-explainer-close {
  transition: background-color 0.2s ease;
  border-radius: 10px;
  width: 32px;
  height: 32px;
  padding: 0 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='m7.414 6 4.242-4.242a.998.998 0 0 0 0-1.415.998.998 0 0 0-1.414 0L6 4.587 1.758.344a.998.998 0 0 0-1.415 0 .998.998 0 0 0 0 1.414L4.587 6 .344 10.242a.998.998 0 0 0 0 1.415.998.998 0 0 0 1.414 0L6 7.413l4.242 4.242a.998.998 0 0 0 1.415 0 .998.998 0 0 0 0-1.414L7.413 6z' fill='%23512dcb' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
  border: 0;
  cursor: pointer;
  text-indent: -9999px;
  overflow: hidden;
  background-color: white;
  position: absolute;
  top: 0px;
  right: 0px;
}

/** hover state */
.complete-options-toggle-close:hover, .do-not-sell-explainer-close:hover {
  background-color: #f6f5f2;
}

/** active state */
.complete-options-toggle-close:active, .do-not-sell-explainer-close:active {
  background-color: #e4e3db;
}

/** Menu item styles for the BottomMenu */
.bottom-menu-item {
  background: unset;
  border: unset;
  width: unset;
  padding: unset;
  margin: unset;
  margin: 0 auto;
  display: block;
  min-width: fit-content;
  width: auto;
  text-align: center;
  line-height: 1.5em;
  font-family: inherit;
  font-size: 10px;
  font-weight: 500;
  color: #512dcb;
  text-decoration: none;
}

/** Hover state for items in the bottom menu */
.bottom-menu-item:hover {
  cursor: pointer;
  color: #4c2aba;
  text-decoration: none;
  text-decoration-color: rgba(1, 1, 1, 1);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

/** Active state for items in the bottom menu */
.bottom-menu-item:active {
  cursor: pointer;
  color: #361b93;
  text-decoration: none;
  text-decoration-color: rgba(1, 1, 1, 1);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

/** Anchor focus */
a:focus {
  outline: 0px;
}

/** Styles applied to the main contents of the consent modal (does not include footer) */
.column-content {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  animation: fadeIn 150ms;
}

/** Outer styles wrapped around entire bottom menu */
.footer-container {
  display: none;
  position: absolute;
  bottom: 21px;
  width: calc(100% - 21px * 2);
  height: 17px;
}

/** Inner contents wrapper for modal content */
.modal-container-inner {
  height: calc(100% - 38px);
  width: 100%;
}

/** Styles applied to "primary" button text */
.button-primary-text {
  font-size: 14px;
  font-weight: 700;
}

/** Paragraph text styles */
.paragraph {
  color: var(--text-color);
  font-size: 14px;
  margin: 0 0 15px 0;
}

/** Remove title  */
.modal-container:has(.accept-or-reject-all-button-row) .text-title,
.modal-container .text-title {
  margin: 0;
}

/** Styles for secondary button */
.accept-or-reject-all-button-row button:not(:first-of-type) {
  background: #f6f5f2;
  border-color: #f6f5f2;
}

/** Styles for secondary button */
.accept-or-reject-all-button-row button:not(:first-of-type):hover {
  background: #f3f2ed;
  border-color: #f3f2ed;
}

/** Styles for secondary button */
.accept-or-reject-all-button-row button:not(:first-of-type):active {
  background: #e4e3db;
  border-color: #e4e3db;
}

/** Styles for secondary button */
.accept-or-reject-all-button-row button:not(:first-of-type) .button-base-text {
  color: #000;
}

/** Do not sell switch interface */
.margin-tops > * {
  margin-top: 10px;
}

/** Outline for do not sell explainer */
.complete-options-toggle-interface, .do-not-sell-explainer-interface {
  margin-top: 10px;
}

/** Styles for complete options toggle description */
.complete-options-toggle-description {
  padding-bottom: 0;
}

/** The label that wraps the switch */
.switch.label {
  font-weight: 600;
  font-size: 14px;
  height: 16px;
  vertical-align: baseline;
  text-shadow: none;
  white-space: nowrap;
  padding: 0 5px;
}

/** Style applied to the checkbox toggle box */
.toggle-label input:focus + span {
  outline: 0;
  outline-offset: 1px;
}

/** When switch is focused */
.switch.switch-checkbox:focus + .switch.switch-background .switch.switch-button {
  outline: 0;
  outline-offset: 1px;
  outline-width: 0px;
}

/** Switch label */
.switch.switch-background {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: 0;
  cursor: pointer;
  width: calc(var(--switchHeight) * 2 - 2px);
  height: var(--switchHeight);
  background: #7e8793;
  border-radius: var(--switchHeight);
  position: relative;
  transition: background-color 150ms;
}

/** Not the last button in a list of buttons */
.button:not(:last-of-type) {
  margin-bottom: 8px;
}

/** Inner text on button hover */
.button:hover span {
  color: #ffffff;
}

/** Styles applied to "secondary" button text */
.button-secondary-text {
  font-size: 9px;
  font-weight: 400;
}

/** Screen reader styles */
.screen-reader {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/** Modal title text styles */
.text-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-color);
  margin: 0 0 18px 0;
  text-align: center;
}

/** Styles applied to `CompleteOptions` view state body  */
.complete-options-form {
  height: 100%;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto 2px auto;
  justify-content: space-between;
  align-items: center;
}

/** Container for rendering checkbox toggles */
.toggles-container {
  height: 100%;
  display: flex;
  margin: 20px;
  flex-direction: column;
  align-content: center;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
}

/** Container around `CompleteOptions` view state */
.complete-options-container {
  height: inherit;
  animation: fadeIn 200ms ease-in;
}

/** Style applied to each label text for each checkbox toggle and switch */
.toggle-label {
  position: relative;
  margin: 0 10px 15px 10px;
  font-size: 12px;
  font-weight: 500;
  height: 16px;
  vertical-align: baseline;
  color: var(--text-color);
  text-shadow: none;
  padding-left: 25px;
  word-wrap: break-word;
}

/** Style applied to create custom checkmark */
.toggle-checkmark {
  display: inline-block;
  width: 16px;
  height: 16px;
  box-sizing: border-box;
  border-radius: 4px;
  margin-right: 5px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #d8d8d8;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 150ms ease, background 300ms ease;
  cursor: pointer;
}

/** Style applied to create custom checkmark ::after */
.toggle-checkmark::after {
  opacity: 0;
  transform-origin: bottom center;
  transform: rotate(45deg) scale(0);
  content: '';
  position: absolute;
  left: 1px;
  top: 0;
  width: 3px;
  height: 8px;
  border: solid #ffffff;
  border-width: 0px 2px 2px 0px;
  transition: all 150ms cubic-bezier(0.41, 0.94, 0.71, 1.41), opacity 150ms ease;
}

/** Style applied to checkbox input */
.toggle-input {
  position: absolute;
  margin: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

/** Style applied to checkbox input when disabled */
.toggle-input:disabled {
  cursor: not-allowed;
}

/** Style applied to checkbox input span when checked */
.toggle-input:checked + span {
  background: var(--primary-color);
  border-color: transparent;
}

/** Style applied to checkbox input when checked and hovering */
.toggle-input:checked + span,
.toggle-input:hover + span {
  filter: brightness(0.9);
}

/** Style applied to checkbox input when checked and after */
.toggle-input:checked + span::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}

/** Style applied to toggle input when focused */
.toggle-input:hover:enabled + span,
.toggle-input:focus-visible + span {
  border-color: var(--primary-color);
}

/** Style applied to checkbox input span when disabled */
.toggle-input:disabled + span {
  background-color: #ececec;
  cursor: not-allowed;
}

/** Style applied to checkbox input span when disabled and hover */
.toggle-input:disabled + span,
.toggle-input:hover + span {
  filter: none;
  border-color: transparent;
}

/** Style applied to checkbox input span when disabled */
.toggle-input:disabled + span::after {
  border-color: #d8d8d8;
}

/** Styles applied around the language container */
.language-options-container {
  width: 100%;
  height: 100%;
  animation: fadeIn 200ms ease-in;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 auto;
  justify-content: space-evenly;
}

/** Styles applied around each language selection */
.language-item-container {
  padding: 12px;
}

/** Styles applied to the language button */
.language-button {
  background: unset;
  border: unset;
  width: unset;
  padding: unset;
  margin: unset;
  width: 17px;
  height: 17px;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  right: 0;
  cursor: pointer;
}

/** Styles to apply when language svg select button is hovered on */
.language-button-inactive svg {
  fill: var(--text-color);
  transition: fill 150ms;
}

/** Styles to apply when actively labeled */
.language-button-active svg {
  fill: var(--primary-color);
  transition: fill 150ms;
}

/** Styles to apply when language svg select button is hovered on */
.language-button svg:hover {
  fill: var(--primary-color);
}

/** Styles to apply when language svg select button is active */
.language-button svg:active {
  fill: var(--primary-color);
}

/** Styles applied to bottom menu */
.bottom-menu-container {
  width: calc(100% - 60px);
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  margin: 0 auto;
}

/** Styles applied to each item of bottom menu */
.bottom-menu-item-container {
  width: auto;
}

/** Styles for the collapsed square logo  */
.collapsed-square-logo-svg {
  width: 20px;
  height: 20px;
  padding: 6px;
  flex-shrink: 0;
}

/** Styles for the collapsed square logo path */
.collapsed-square-logo-svg path {
  fill: var(--text-color);
  transition: fill 150ms;
}

/** The wrapper around the entire collapsed hovering consent icon */
.collapsed-container {
  position: fixed;
  bottom: 100px;
  right: 5px;
  width: 32px;
  height: 32px;
  box-sizing: border-box;
  border: none;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.95);
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir,
  helvetica neue, helvetica, 'sans-serif';
  box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4px) saturate(5);
  transition: width 150ms ease-in 500ms, background-color 150ms ease-in-out,
  box-shadow 150ms ease-in-out;
}

/** Styles applied to consent icon when actively selected */
.collapsed-container:active {
  background-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0px 0.5px 5px 1.5px rgba(0, 0, 0, 0.12);
}

/** Styles applied to consent icon on hover */
.collapsed-container:hover {
  width: 132px;
  transition-delay: 0ms;
}

/** Styles applied to consent icon SVG contents */
.collapsed-container:hover path {
  fill: var(--primary-color);
}

/** Styles applied to consent icon paragraph text */
.collapsed-container p {
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  color: var(--text-color);
  opacity: 0;
  transition: opacity 150ms ease-in 500ms;
}

/** Styles applied to consent icon paragraph text on hover */
.collapsed-container:hover p {
  opacity: 1;
  transition-delay: 0ms;
}

/** Styles that wrap the text container of the modal content. Excludes footer */
.inner-container {
  overflow-y: auto;
}

/** Animation for fading in, used throughout the stylesheet */
@keyframes fadeIn {
  0% {
  opacity: 0;
  }
  100% {
  opacity: 1;
  }
}

/** Outline for do not sell explainer */
.do-not-sell-explainer-interface {
  margin-top: 2em;
}

/** Styles for button of X marker in top right corner */
.accept-all-reject-all-toggle-close {
  --squareDimension: 25px;
  padding: 4px;
  position: absolute;
  top: 21px;
  right: 21px;
  border: none;
  cursor: pointer;
  background-color: #f2f2f2;
  border-radius: 5px;
  height: var(--squareDimension);
  width: var(--squareDimension);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 150ms;
}

/** Styles for button of X marker in top right corner on hover */
.accept-all-reject-all-toggle-close:hover, .accept-all-reject-all-toggle-close:focus {
  background-color: #e2e2e2;
}

/** Styles for button of X marker in top right corner */
.privacy-policy-notice-with-close-button-close {
  --squareDimension: 25px;
  padding: 4px;
  position: absolute;
  top: 21px;
  right: 21px;
  border: none;
  cursor: pointer;
  background-color: #f2f2f2;
  border-radius: 5px;
  height: var(--squareDimension);
  width: var(--squareDimension);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 150ms;
}

/** Styles for button of X marker in top right corner on hover */
.privacy-policy-notice-with-close-button-close:hover, .privacy-policy-notice-with-close-button-close:focus {
  background-color: #e2e2e2;
}

/** GPC outer styles */
.gpc-setting {
  display: flex;
  align-items: center;
  margin: 9px 0;
  width: 100%;
}

/** GPC svg styles */
.gpc-setting svg {
  flex-shrink: 0;
}

/** GPC paragraph text */
.gpc-setting p {
  margin: 0 0 0 6px;
  font-size: 14px;
  color: var(--text-color);
}

/** Styles for the switch */
.switch {
  --switchHeight: 20px;
  --switchGutter: 2px;
  --switchButtonDiameter: calc(var(--switchHeight) - var(--switchGutter) * 2);
}

/** Button for switch */
.switch.switch-background .switch.switch-button {
  content: '';
  position: absolute;
  top: var(--switchGutter);
  left: var(--switchGutter);
  width: var(--switchButtonDiameter);
  height: var(--switchButtonDiameter);
  border-radius: var(--switchButtonDiameter);
  transition: 150ms;
  background: #fff;
}

/** Disabled switch */
.switch.switch-disabled {
  opacity: 0.6;
}

/** When switch is checked */
.switch.switch-checkbox:checked + .switch.switch-background .switch.switch-button {
  left: calc(100% - var(--switchGutter));
  transform: translateX(-100%);
}

/** When switch background is checked */
.switch.switch-checkbox:checked + .switch.switch-background {
  background-color: var(--primary-color);
}

/** Switch button when active */
.switch.switch-background:active .switch.switch-button {
  width: calc(var(--switchButtonDiameter) * 1.2);
}

/** Container around the Transcend logo in the bottom left hand side of the modal */
.transcend-logo-container {
  width: 17px;
  height: 17px;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
}

/** Styles applied to the Transcend svg logo in the bottom left hand side of the modal */
.transcend-logo-svg {
  width: 64px;
  height: 17px;
}

/** Styles applied to the Transcend svg logo path in the bottom left hand side of the modal */
.transcend-logo-svg path {
  fill: var(--text-color);
  transition: fill 150ms;
}

/** Styles applied to the Transcend svg wordmark in the bottom left hand side of the modal */
.transcend-logo-svg .transcend-wordmark {
  fill-opacity: 0;
  transition: fill 150ms, fill-opacity 150ms;
}

/** At least tablet */
@media (min-width: 640px) {
  .consent-bottom-buttons {
    flex-direction: row-reverse;
    padding: 0;
    gap: 12px;
  }
  .consent-bottom-buttons button {
    font-size: 14px;
    width: auto;
  }
  .consent-bottom-buttons button:first-child {
    order: 1;
  }
  .consent-bottom-buttons button:last-child {
    order: 2;
  }
  .modal-container:has(.consent-bottom-buttons) .modal-container-inner {
    padding-bottom: 60px;
    position: relative;
  }
  .accept-or-reject-all-button-row {
    flex-direction: row-reverse;
    flex-shrink: 0;
    width:auto;
  }
  .modal-container {
    padding: 25px;
    bottom: 5px;
    max-width: 600px;
    bottom: 22px;
  }
  .bottom-menu-item {
    font-size: 12px;
  }
  .column-content {
    flex-direction: row;
  }
  .paragraph {
    margin: 0;
  }
  .modal-container:has(.accept-or-reject-all-button-row) {
    max-width: 730px;
    border-radius: 20px;
    padding: 15px;
  }
  .accept-or-reject-all-button-row button:not(:last-of-type) {
    margin-left: 10px;
  }
  .text-title-left {
    margin: 20px 0 18px 0;
    text-align: left;
  }
  .button:not(:last-of-type) {
    margin-bottom: 0;
  }
  .toggles-container {
    flex-direction: row;
  }
  .bottom-menu-container {
    width: calc(100% - 150px);
    justify-content: space-evenly;
  }
  .transcend-logo-container {
    width: 64px;
  }
  .text-title-center {
    margin: 0 0 18px 0;
    text-align: center;
  }
  .transcend-logo-svg:hover .transcend-wordmark,
  .transcend-logo-container:focus .transcend-wordmark {
    fill-opacity: 1;
  }
  .transcend-logo-svg:hover path, .transcend-logo-container:focus path {
    fill: var(--primary-color);
  }
  
}
