.darkModeEnabled {
  --tdk-base: #444;
  --tdk-accent: #6690CE;
  --tdk-font: #fff;
  --alt-section-bg: #666666;
}

.darkModeEnabled .has-shadow {
  box-shadow: rgba(200, 200, 200, 0.5) 0px 2px 8px 0px;
}

.options_closeBtn {
	display: none;
}

.tab-button {
	padding: 5px 8px;
	background: #e5e7ea;
	border: rgba(0,0,0,.2) solid 1px;
	display: inline-block;
	color: #666666;
}
.tab-button[aria-selected='true'] {
	background: #f4f6f9;
	color: #0046ad;
}

.filters-list_container {
	display: flex;
	margin-bottom: .5rem;
	flex-wrap: wrap;
}
.filter-set_container {
	padding: 0 5px 5px;
}
.filter-set_title {
  text-align: center;
  border-bottom: rgba(0, 0, 0, .125) 1px solid;
}
.filter-set_btn-list {
	display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 5px 5px 1px;
  border-right: rgba(0, 0, 0, .125) 1px solid;
  border-left: rgba(0, 0, 0, .125) 1px solid;
}
.filters-list_btn {
	position: relative;
	border-radius: 1000px;
	background: #eee;
	border: 1px solid rgba(0,0,0,.125);
	padding: .6em 1em;
	padding-right: calc(.6em + 25px);
	font-size: .9em;
  padding: .3em .8em;
  padding-right: 25px;
}
.filters-list_btn::after {
	content: '\F62A';
	font-family: bootstrap-icons;
	border: none;
	background: none;
	border-left: rgba(0,0,0,.125);
	height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 100%;
}
.filter-set_title {
	font-size: .8em;
}

.sort-bar {
  position: relative;
  margin-left: 0;
  z-index: 1;
  padding: 5px;
  margin-bottom: .5rem;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  gap: 5px;
}

.sort-bar .flex-row {
	align-items: center;
}

.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1054;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

input[list]::-webkit-calendar-picker-indicator,
input[list]::-webkit-list-button {
    opacity: 0 !important
}

.testpage {
	margin: 0 auto;
	padding: 5rem;
	color: red;
	text-align: center;
}

.section-padding {
  padding: var(--section-padding);
}

.datasheetList {
  padding: 0;
  border-radius: 8px;
  position: absolute;
  max-height: 0;
  overflow: hidden;
  background-color: #fff;
}

li:hover .datasheetList,
li:focus-within .datasheetList {
	padding: 8px;
  max-height: 500px;
}

.datasheetItem a:focus strong,
.datasheetItem a:focus svg {
  color: #0046ad;
}

.bg-typeacdc img{
  /*background-color: #bd3333;*/
  filter: brightness(0) saturate(100%) invert(29%) sepia(67%) saturate(1586%) hue-rotate(332deg) brightness(86%) contrast(97%);
  box-shadow: 0px 0px 15px 3px #bd3333;
  border-radius: 25%;
}
.bg-typedcdc img{
  filter: brightness(0) saturate(100%) invert(54%) sepia(11%) saturate(2154%) hue-rotate(71deg) brightness(99%) contrast(87%);
  box-shadow: 0px 0px 15px 3px #4ea34e;
  border-radius: 25%;
}

span.glow.new {
  text-shadow: 0 0 7px #1472b7, 0 0 7px #1472b7, 0 0 7px #1472b7, 0 0 7px #1472b7, 0 0 7px #1472b7, 0 0 7px #1472b7;
  vertical-align: .4em;
}

span.glow {
  font-size: 11px!important;
  color: #fff!important;
  font-weight: 600;
  display: inline-block!important;
  text-transform: uppercase;
}

.txt-overflow-ellipsis {
    overflow:hidden;
    text-overflow:ellipsis;
    white-space: nowrap;
}

.disable-scrolling {
  overflow: hidden;
  height: 100vh;
}

body:has(.page-overlay.active),
body:has(.login-overlay.active) {
	overflow: hidden;
	height: 100%;
}

body:has(.page-overlay.active) footer,
body:has(.login-overlay.active) footer {
	z-index: -1;
}

.h90 {
	height: 90%;
}

a[data-href] {
	cursor: pointer;
}

.page {
	width: 100%;
  height: 100%;
}

nav.sticky-top {
  z-index: 5;
}

main {
	position: relative;
}

.backgroundLoader {
  background-color:rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 999999;
}

.backgroundLoader svg {
  margin: 0 auto;
}

.click-to-close {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}

.page-overlay,
.login-overlay {
	position: fixed;
	display: flex;
	z-index: 1055;
	visibility: hidden;
	opacity: 0;
	background-color: rgba(0,0,0,.7);
	padding: 2rem;
	overflow: hidden;
	height: 100vh;
	width: 100%;
	transition: .3s opacity;
	max-width: 100vw;
	justify-content: center;
  flex-wrap: wrap;
  top: 0;
}

.page-overlay.active,
.login-overlay.active {
	visibility: visible;
	opacity: 1;
	overflow: auto;
}

.page-overlay .content-card,
.login-overlay .content-card {
	position: relative;
	background-color: var(--tdk-base);
	transition: .5s all ease-in-out;
	transform: translate(0,-10vh);
	overflow: hidden;
	display: flex;
  flex-wrap: wrap;
  max-width: 100vw;
  height: fit-content;
  border-radius: 1rem;
}

.page-overlay .content-card:has(.loader.active),
.login-overlay .content-card:has(.loader.active) {
	width: 200px;
	height: 200px;
}

.page-overlay h2,
.login-overlay h2 {
	text-align: center;
}

.page-overlay model-viewer,
.login-overlay model-viewer {
	height: calc(80vh - 4rem - var(--tdk-header-height));
	min-width: 80vw;
}

.page-overlay.active .content-card,
.login-overlay.active .content-card {
	transform: translate(0,0vh);
}

.dynamic3dContainer {
	height: 100%;
}

.only-expanded {
	display: none;
}

.expanded-window .only-expanded {
	display: block;
}

#btn_AccountSettings {
  display: flex;
  text-align: left;
  align-items: center;
}

.flex-item:hover {
  z-index: 1;
}

.flex-item:nth-child(2n) .content-card .tooltiptext.right::after {
	top: 20px;
  left: 100%;
  right: auto;
  border-color: transparent transparent transparent #fff;
}
.flex-item:nth-child(2n) .content-card .tooltiptext.right::before {
	top: 20px;
  left: 100%;
  right: auto;
  border-color: transparent transparent transparent #ccc;
}

.flex-item:nth-child(2n) .content-card .tooltiptext.right {
  top: -5px;
  right: 105%;
  left: auto;
}

button {
  padding: 0;
}

.border-divider {
	height: 0;
	width: 100%;
	border-image: linear-gradient(to right, rgba(0,0,0,0),rgba(0,0,0,.1), rgba(0,0,0,0)) 30;
  border-width: 1px;
  border-style: solid;
}

.d-inline {
	display: inline !important;
}

.d-none {
	display: none !important;
}

.content-card {
  position: relative;
	background-color: var(--tdk-base);
  color: var(--tdk-font);
  margin: 10px;
  border-radius: var(--tdk-border-radius);
  padding: 26px 26px;
}

.content-card .input-voltage-group {
  flex-direction: column;
}

#auto-structure_content {
	margin-left: 0;
}

.flex-item .content-card {
    margin: 0 10px 10px 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

 .flex-item .content-card .content-card-header {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
 }

 .productSubHeader {
  width: 300px
 }

 .product-approx-match {
    position: absolute;
    top: 26px;
    right: 26px;
 }

 .circle-border {
  position: absolute;
  top: 13px;
  right: 13px;
  text-align: center;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  background: #fff;
}

 .circle {
  position: relative;
  text-align: center;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.circle-border svg {
  position: absolute;
}

.circle-border svg path {
  stroke-linecap: round;
  animation: progress 1s ease-out forwards;
}

.indicatorHeading {
  font-size: 20px;
}

.indicatorSub {
  font-size: 12px;
}

.flex-item .content-card .tab-content {
	flex-grow: 1;
	padding-top: 26px;
}

.content-card .content-card-row {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.content-card-row .content-card-col {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
ul.results, ul.results li {
	list-style: disc;
	font-size: .8rem;
	line-height: 200%;
}

.content-card-col > div {
	position: relative;
	display: flex;
  align-items: center;
  flex-direction: column;
}

.content-card-col.cta-col > div {
	align-items: start;
}

div[id^="linksDiv"] {
	display: flex;
	height: 100%;
	justify-content: center;
	padding-bottom: 95px;
}

div[id^="linksDiv"] > ul {
	display: flex;
  flex-direction: column;
  justify-content: center;
  list-style: none;
  gap: 5px;
}

.cta-group {
	display: flex;/*container to group primary and secondary CTA buttons */
	justify-content: right;
}

.content-card .cta-sub {
	display: flex;
	justify-content: right;
	padding: 5px 0;
}

.cta-btn {
	border-radius: var(--tdk-border-radius); /*CTA primary option button */
	border: 1px solid var(--tdk-accent);
	padding: 10px;
	font-weight: 400;
  text-align: center;
	transition: .2s opacity ease;
	background: linear-gradient(to bottom right, #0071ad, var(--tdk-accent));
	max-width: 389.797px;
	text-decoration: none;
	display: inline-block;
}

.cta-btn--primary {
	background: linear-gradient(to bottom right, #0071ad, var(--tdk-accent));
	color: var(--tdk-base);
	border-radius: var(--tdk-border-radius);
	text-align: center;
}
.cta-btn--secondary {
	background: #fff;
	color: #0046ad;
}

.cta-btn--danger {
	background: #dc3545;
	border: 1px solid rgba(0,0,0,.1);
	color: #fff;
}
.cta-btn--warning {
  background: #ffc107;
  border: 1px solid rgba(0,0,0,.1);
  color: #666666;
}

.cta-btn:hover,
.cta-btn:focus {
  opacity: var(--tdk-button-opacity);
}

a.cta-btn:hover,
a.cta-btn:focus {
	text-decoration: none !important;
}
a.cta-btn.cta-btn--primary:hover,
a.cta-btn.cta-btn--primary:focus {
  color: #fff;
}

.content-nav {
  min-height: 67px;
	position: relative; /*Nav bar at top of screen */
	display: flex;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 14px;
  flex-wrap: wrap;
  z-index: 2;
  border-radius: 0;
  justify-content: center;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.content-nav.content-card {
	margin: 0;
}

.nav-menu {
	position: relative; /*Nav menu on the right of navbar, holds navigation buttons and logout options */
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.account-image {
  display: flex;
  flex-direction: column;
  justify-content: center;
	position: relative;
	margin-left: 5px;
}

.account-sub {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.account-image ul {
	visibility: hidden;
	position:  absolute;
  top:  100%;
  border-radius: var(--tdk-border-radius);
  max-height: 0;
  overflow: hidden;
  background-color: var(--tdk-base);
  list-style-type: none;
  white-space: nowrap;
  padding: 0.25rem 0.75rem;
  min-width: 100%;
}

td.counters {
  padding: 0;
  text-align: center;
}
td.counters > a {
	width: 100%;
	height: 100%;
	display: block;
}

.link-button,
.button.link-button {
	color: var(--tdk-accent) !important;
}

.link-button:hover,
.button.link-button:hover {
	opacity: 1;
	text-decoration: underline;
}

.account-image ul:first-child {
	font-size: 1.2rem;
	padding-bottom: 5px;
}

.account-image:hover ul,
.account-image ul:hover,
.account-image:focus-within ul,
.account-image ul:focus-within {
	visibility: visible;
	max-height: 500px;
}

.content-main--sidebar {
	padding-left: 220px;
	width: 100%;
	overflow: auto;
}

.content-main--sidebar ~ * {
	clear: both;
}

.content-inner {
	padding: .5rem;
	width: 100%;
}

.overflow--hidden {
	overflow: hidden;
}

.container_advanced-options {
  padding:  5px;
  border: rgba(0,0,0,.125) 2px solid;
  border-radius:  8px;
  position:  relative;
}

.container_advanced-options span.legend {
  position: absolute;
  color: #666666;
  top: -.5rem;
  background: #fff;
  width: fit-content;
  padding: 0 8px;
  line-height: 1;
}

.content-sidebar {
	width: 220px;
  border-radius: 0;
  margin: 0;
  padding: 2rem 0.5rem;
  height: 100%;
  margin-right: 0;
  margin-left: -220px;
  float: left;
  padding-left: 0;
}

.content-sidebar > .fieldset_prod-type {
	margin-bottom: 2rem;
}

.content-sidebar .legend {
	float: none;
}

.content-sidebar select {
	margin-bottom: .5rem;
}

.content-sidebar label {
	display: inline;
}

.content-sidebar .tab-content {
  height: 100%;
}

.tab-container {
  padding-top: 10px;
  flex: 1;
}

.content-card .tab-pane {
	height: 100%;
}

.product-card_options {
	position: absolute;
  bottom: 8px;
  right: 0;
  font-size: .8em;
  background: #fff;
  border-radius: 8px;
  margin-right: 8px;
  word-break: break-word;
}

.product-card_options button,
.product-card_options a {
	padding: 5px;
	color: var(--tdk-font);
	transition: opacity .2s ease, color .2s ease;
}

.product-card_options button:hover,
.product-card_options a:hover {
	text-decoration: underline;
	color: var(--tdk-accent);
	opacity: 1;
}

.product-card_options .nav-group {
	border-bottom: 0;
}

.product-card_options li {
	border-right: 1px solid rgba(0,0,0,.1);
	text-align: center;
}

.product-card_options li:last-child {
	border-right: 0;
}

.outputsOptions label {
	font-size: 1rem;
}

.outputsOptions select {
	margin-bottom: 5px;
}

.product-card_options svg {
	width: 100%;
	height: 25px;
}

.content-sidebar ul {
	list-style-type: none;
	padding: 0;
}

input::placeholder {
  color: #666666;
}

input[type=text],
input[type=number],
input[type=password],
input[type=email],
input[type=email]:not([value]):invalid {
	background-color: #fff;
	border: 1px solid var(--tdk-outline);
	border-radius: var(--tdk-box-radius);
	transition: border .2s ease;
	font-weight: 400;
  line-height: 1.5;
  padding: 0.25rem 0 0.25rem 0.75rem;
  color: var(--tdk-font);
  width: 100%;
}

.contact-panel input {
  background-color: var(--tdk-base);
  color: var(--tdk-font);
}

.link {
	color: var(--tdk-accent);
}

#show_hide_password i {
	color: var(--tdk-accent);
}

/*QIT-590 - Do not apply the following rule to ui-datpicker-xxx class*/
select:not([class^="ui-datepicker-"], [class*=" ui-datepicker-"]) {
	cursor: pointer;
	padding: 0.25rem 2.25rem 0.25rem 0.75rem;
  background-color: var(--tdk-base);
  border-radius: var(--tdk-box-radius);
  border: 1px solid var(--tdk-outline);
  transition: border .2s ease;
  font-weight: 400;
  line-height: 1.5;
  width: 100%;
  color: var(--tdk-font);
}

.sort-bar select {
  border-radius: var(--tdk-capsule-radius);
}

select:hover,
select:focus {
	opacity: var(--tdk-button-opacity);
}

legend {
	font-size: 1rem;
	margin-bottom: 0;
}

#unitmeasurement {
	width: auto;
	padding: 0.375rem 0.75rem 0.375rem 0.75rem;
}

.channels-container {
	margin-bottom: .5rem;
}

.fieldset--b {
  position: relative;
  padding: .5em;
  margin-bottom: .3rem;
  border: 2px solid rgba(0, 0, 0, .125);
  border-radius: 8px;
  padding: 20px;
  margin-top: 1rem;
}

.fieldset--b > legend {
	position: absolute;
  color: #666666;
  top: -.5rem;
  background: #fff;
  width: fit-content;
  padding: 0 8px;
  line-height: 1;
}

.channel-outputs_input-row {
	display: flex;
	gap: 5px;
	flex-wrap: wrap;
	margin-right: 2rem;
}

.channel-outputs_btn-group {
	display: flex;
	flex-direction: column;
	position: absolute;
	top: .5rem;
	right: .5rem;
}

input.output_input-box {
	flex: 1;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	width: 100%;
}

.output_input-box-label {
	border: 1px solid rgba(0,0,0,.2);
	border-radius: var(--tdk-box-radius);
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	background: #eee;
	height: auto;
	display: flex;
  align-items: center;
  width: 10%;
  min-width: 1.2rem;
  padding: 2px;
  justify-content: center;
  color: #666666;
}

.input_container--b > input {
	width: auto;
}

.submitBtnRow {
  text-align: center;
}

.content-sidebar .submitBtnRow {
	display: none;
}

.enquirySubmitBtn {
	min-width: 120px;
}

.grid-col3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-col2 {
	display: grid;
  grid-template-columns: 1fr 1fr;
}

.flex-shrink {
	flex-shrink: 1;
}

.flex-col {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	text-align: center;
	height: 100%;
}

.flex-col-only {
  display: flex;
  flex-direction: column;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.flex-wrap {
	flex-wrap: wrap;
}

.flex-grow {
	flex: 1;
}
.flex-gap {gap:20px;}
.flex-gap--10 {
	gap: 10px;
}

.flex-gap--15 {
  gap: 15px;
}

.h_2p2rem {
	height: 2.2rem;
}

.min-h_2p2rem {
	min-height: 2.2rem;
}

.space-between {
	display: flex;
	justify-content: space-between;
}

.flex-start {
  display: flex;
  justify-content: start;
}

.flex-center {
	display: flex;
	justify-content: center;
}

.flex-end {
  display: flex;
  justify-content: end;
}

.nav-sub-menu .nav-item {
  height: 100%;
}

.nav-sub-menu .nav-item a {
  padding: 5px 10px 5px 10px;
  color: var(--tdk-font);
  font-size: 12px;
  transition: opacity .2s ease;
}

.nav-sub-menu .nav-item i {
	font-size: 20px;
}

.nav-sub-menu .nav-item a.active {
	color: var(--tdk-accent);
	border-bottom: 3px solid var(--tdk-accent);
}

.nav-sub-menu .nav-item a.Auth_Required {
	color: var(--tdk-disabled)
}

.Auth_Required.locked::after {
	content:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%230046ad' class='bi bi-shield-lock-fill' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M8 0c-.69 0-1.843.265-2.928.56-1.11.3-2.229.655-2.887.87a1.54 1.54 0 0 0-1.044 1.262c-.596 4.477.787 7.795 2.465 9.99a11.777 11.777 0 0 0 2.517 2.453c.386.273.744.482 1.048.625.28.132.581.24.829.24s.548-.108.829-.24a7.159 7.159 0 0 0 1.048-.625 11.775 11.775 0 0 0 2.517-2.453c1.678-2.195 3.061-5.513 2.465-9.99a1.541 1.541 0 0 0-1.044-1.263 62.467 62.467 0 0 0-2.887-.87C9.843.266 8.69 0 8 0zm0 5a1.5 1.5 0 0 1 .5 2.915l.385 1.99a.5.5 0 0 1-.491.595h-.788a.5.5 0 0 1-.49-.595l.384-1.99A1.5 1.5 0 0 1 8 5z'/></svg>");
  position: absolute;
  right: 25%;
}

#qpfLiveForm .section-label-sub {
	text-align: right;
}

.radio_container input[type=radio] {
    display: block;
    margin: 0 auto;
}

.radio_container input[type='radio']::after {
    width: 15px;
    height: 15px;
    border-radius: 15px;
    top: -2px;
    left: -1px;
    position: relative;
    background-color: #d1d3d1;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 2px solid white;
}

.radio_container input[type='radio']:checked::after {
    background-color: var(--tdk-accent);
}

a.button:hover, a.button:focus {
	text-decoration: none;
}

button.delete {
	color: var(--tdk-danger);
	margin-bottom: 5px;
	height: 20px;
	width: 20px;
}

button.delete:disabled {
	color: var(--tdk-disabled);
}

button.resetBtn {
	color: #0046ad;
	text-decoration: underline;
	margin-bottom: 5px;
	padding: 8px;
}

button.copyBtn {
  color: var(--tdk-accent);
  height: 20px;
  width: 20px;
  margin-bottom: 5px;
}

button.add-button {
  height: 30px;
  border-radius: var(--tdk-box-radius);
  margin-bottom: 5px;
  width: auto;
  color: var(--tdk-secondary-font);
  padding: 0 11px;
  background: linear-gradient(to bottom right, #0071ad, var(--tdk-accent));
}

#outputsNo {
	width: auto;
}

.content-sidebar_ul {
	margin-bottom: 0;
	font-size: .9em;
}

#MinUnitPowerId {
	margin-bottom: 5px;
}

.input-field {
  margin-bottom: 20px;
}

.input-field {
  position: relative;
}

.input-field label {
  width: 100%;
}

.input-field input {
  width: 100%;
  padding-right: 28px;
}

.expanded-window .input-field input {
  height: 40px;
}

.input-label {
  color: var(--tdk-font);
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  top: 0;
  right: 15px;
  font-size: 12px;
  border-radius: var(--tdk-capsule-radius);
  height: 100%;
  text-align: center;
  }

.input-label.bg {
  color: var(--tdk-base);
  text-shadow: .5px .5px 2px black;
  background: linear-gradient(to bottom right, #0071ad, var(--tdk-accent));
  width: 34px;
  right: 0;
}

.input-label svg {
  margin: 0 auto;
}

#sortOptions .input-label {
  pointer-events: none;
}

#sortOptions .input-field {
  height: 34px;
  margin-bottom: 0;
}

#sortOptions select {
  height: 100%;
}

.sort-bar .input-label {
  background: linear-gradient(to bottom right, #0071ad, var(--tdk-accent));
}

.sort-bar .button {
  height: 34px;
  width: 34px;
  border-radius: var(--tdk-capsule-radius);
  color: #fff;
  background: linear-gradient(to bottom right, #0071ad, var(--tdk-accent));
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: 10px;
  text-align: center;
  font-size: 24px;
}

.sort-bar label.button {
  background: linear-gradient(to bottom right, #d1d1d1, #ababab);
}

.sort-bar label.button:has(:checked) {
  background: linear-gradient(to bottom right, #0071ad, var(--tdk-accent));
}

.sort-bar svg {
  margin: 0 auto;
}

.sort-bar button:disabled,
.sort-bar a.disabled {
  background: var(--tdk-disabled);
  pointer-events: none;
  opacity: 1;
  box-shadow: none;
}

#liveResultsLoader .loader-inner{
	height: 200px;
}

.radiogroup_prodtype--vertical {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.btn_radio-list {
	position: relative;
	justify-content: center;
	align-items: center;
	border: 1px solid rgba(0,0,0,.2);
	border-radius: 1000px;
	color: #0046ad;
	padding: .25em .5em;
	background-color: #fff;
	cursor: pointer;
	margin-bottom: 5px;
	text-align: center;
	text-decoration: none;
}

.btn_radio-list.btn_radio-list--prodtype {
	width: 100%;
  display: block;
  margin-bottom: 0;
  padding: 10px 11px;
  font-weight: bold;
  font-size: .8rem;
  border-radius: 8px;
  text-align: left;
}

.btn_radio-list.btn_radio-list--prodtype::after {
	content: '\F28A';
	font-family: 'bootstrap-icons';
	position: absolute;
	right: 11px;
	border-radius: 100%;
	color: #ccc;
	top: 0;
  height: 100%;
  display: inline-flex;
  align-items: center;
  font-size: 1.3em;
}

input:checked ~ .btn_radio-list.btn_radio-list--prodtype::after {
	content: '\F270';
	color: #1CAC78;
	font-size: 1.5em;
}

.btn_radio-list span {transition: opacity .6s ease;}
.btn_radio-list:hover span, input:focus ~ .btn_radio-list > span, .btn_radio-list:focus > span {opacity: .5; text-decoration: none;}

.btn_radio-list i {
	font-size: 1.2em;
}

.btn_radio-list.btn_radio-list--space-between {
	justify-content: space-between;
}

input:checked ~ .btn_radio-list {
  color: #fff;
  background: linear-gradient(to bottom right, #0071ad, var(--tdk-accent));
}

a span {text-decoration: none;}
a:hover span {text-decoration: none;}
a .glow.new {text-decoration: none;}
a:hover .glow.new {text-decoration: none;}

.p-image--acsource {
  filter: hue-rotate(215deg);
}

.config-tab-label {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.config-tab {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 5px;
  padding-bottom: 0;
}

.config-tab > div {
  padding-bottom: 0;
  margin-bottom: 0;
}

.bg-alt {
	background: linear-gradient(180deg, rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, .57) 100%);
  color: #fff;
  padding: 1rem;
  border-radius: 1rem;
  backdrop-filter: blur(4px);
}

.graphicalProductInput {
	opacity: 0;
	position: absolute;
}

.graphical-product_row {
	margin-bottom: .5rem;
	display: flex;
	flex-wrap: wrap;
	gap: .3rem;
}

.graphicalProductType {
  position: relative;
  border-radius: 5px;
  transition: all .2s ease;
  font-size: 14px;
  padding: 2px;
  min-width: 50px;
  min-height: 50px;
  height: 80px;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  width: calc(33% - .15rem);
  display: inline-block;
  background: rgba(255, 255, 255, .1);
}

.graphicalProductType.active {
	display:block;
}

/* What to do with the graphical product buttons when active or hovered*/
.graphicalProductType:hover, .graphicalProductType:focus, .graphicalProductType.active {
  opacity: 1;
  color: #b8eeff;
  border-color: #b8eeff;
}

.graphicalProductType.active {
  font-weight: 700;
}

.graphicalProductType > div[class*="CaseId"] {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  transition: all 0.6s ease 0s;
  opacity: var(--tdk-button-opacity);
}

.graphicalProductType:hover > div[class*="CaseId"] {
  transform: scale(1.15);
  opacity: 1;
  -webkit-filter: blur(0px), drop-shadow(2px 2px 2px #BBB);
  -moz-filter: blur(0px), drop-shadow(2px 2px 2px #BBB);
  -ms-filter: blur(0px), drop-shadow(2px 2px 2px #BBB);
  filter:progid:DXImageTransform.Microsoft.Blur(PixelRadius='0'), drop-shadow(2px 2px 2px #BBB);
}

.graphicalProductType.active > div[class*="CaseId"] {
  opacity: 1;
}

/* enclosed */
.graphicalProductType > .CaseId_1.ACDC {
  background: url("/Images/s_get/buttonCaseEnclosedAcdc.png?mh=46&mw=70") no-repeat top left;
  background-position: 50% 75%;
}
.graphicalProductType > .CaseId_1.DCDC {
  background: url("/Images/s_get/buttonCaseEnclosedDcdc.png?mh=46&mw=70") no-repeat top left;
  background-position: 50% 75%;
}
/* chassis only */
.graphicalProductType >.CaseId_2 {
  background: url("/Images/s_get/buttonCaseChassis.png?mh=46&mw=70") no-repeat top left;
  background-position: 50% 75%;
}
/* open frame */
.graphicalProductType >.CaseId_3 {
  background: url("/Images/s_get/buttonCaseOpenFrame.png?mh=46&mw=70") no-repeat top left;
  background-position: 50% 75%;
}
/* DIN rail */
.graphicalProductType > .CaseId_4.ACDC {
  background: url("/Images/s_get/buttonCaseDinAcdc.png?mh=46&mw=70") no-repeat top left;
  background-position: 50% 75%;
}
.graphicalProductType > .CaseId_4.DCDC {
  background: url("/Images/s_get/buttonCaseDinDcdc.png?mh=46&mw=70") no-repeat top left;
  background-position: 50% 75%;
}
/* Adapter */
.graphicalProductType > .CaseId_5 {
  background: url("/Images/s_get/buttonCaseAdapter.png?mh=46&mw=70") no-repeat top left;
  background-position: 50% 75%;
}
/* PCB */
.graphicalProductType > .CaseId_6.ACDC {
  background: url("/Images/s_get/buttonCasePcbAcdc.png?mh=46&mw=70") no-repeat top left;
  background-position: 50% 75%;
}
.graphicalProductType > .CaseId_6.DCDC {
  background: url("/Images/s_get/buttonCasePcbDcdc.png?mh=46&mw=70") no-repeat top left;
  background-position: 50% 75%;
}

/* DPA - distributed power architecture */
.graphicalProductType > .CaseId_7 {
  background: url("/Images/s_get/buttonCaseDpa.png?mh=46&mw=70") no-repeat top left;
  background-position: 50% 75%;
}

.content-sidebar .infoBtn {
	color: var(--tdk-accent);
	text-align: left;
	z-index: 1;
	float: right;
}

 .expanded-window {
  margin-top: 20px;
	margin-left: 0;
	margin-bottom: 0;
	border: 1px solid rgba(0,0,0,.1);
	margin-right: 20px;
	padding: 11px;
	}
	
	.expanded-window a {
	 color: var(--tdk-accent);
	}

.inner.flex {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
 }

.inner.flex > div {
  width: 50%;
  display: flex;
  flex-direction: column;
 }

#liveResults .content-card {
	opacity: 0;
  transform: translate(0, 10vh);
  transition: all 1s;
  border-radius: 8px;
  padding: 0 0 15px;
	/*transform: translateY(20px);
	transition: opacity 1s ease-in-out, transform 1s ease-in-out;*/
}

.product-card_header--padding {
  padding: 13px 26px;
}
.product-card_content--padding {
	padding: 0 26px;
}
.inner.flex > .flex-item.product-card_container {
	width: 33%;
}
.product-card_img-container {
  position:  relative;
  padding-bottom: 2rem;
  padding-top:  26px;
  background:  #eee;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  transition: height .6s ease;
}
.product-card_img {
  height: 10.938rem;
}
.product-card_img-container a,
.product-card_img-container button {
  filter: drop-shadow(2px 4px 10px #fff);
  height: 100%;
  position: relative;
  display: flex;
  flex: shrink;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.product-card_img img {
	max-height: 100%;
}
.product-card_img model-viewer {
	display: inline-block;
  width: 100%;
  height: 100%;
}

#liveResults .content-card.visible {
	/*opacity: 1;
	transform: translateY(0);*/
	opacity: 1;
  transform: translate(0, 0);
}

model-viewer span {
  position: absolute;
  top:0;
  pointer-events: none;
  font-size: 0.8rem;
  z-index: -1;
  left: 8px;
}

.hideViewer { /* Sets styling for hideViewer class, used in 3d Viewer Modal and in 3d thumbnails */
  display: none !important;
  height: 0px !important;
}

.world_clock {
  position: relative;
  padding-top: 10%;
}

#clock {
    color: #ffffff;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 5%;
    transform: translate(-50%, 0);
    color: var(--tdk-accent);
    text-shadow: 0 0 20px rgba(0,51,204, .6),  0 0 20px rgba(0,51,204, 0);
    .time {
        letter-spacing: 0.05em;
        font-size: 50px;
        padding: 5px 0;
        margin-bottom: 0;
    }
    .date {
        letter-spacing: 0.1em;
        font-size: 16px;
        margin-bottom: 0.5rem;
    }
    .text {
        letter-spacing: 0.1em;
        font-size: 16px;
        padding: 0 0 0;
    }
}

.world_container {
  position: relative;
  height: 0;
  width: 100%;
  padding-top: 50.60%;
  overflow: hidden;
  margin-bottom: 10px;
}

.world_container::after {
  content: "";
  position: absolute;
  width: 300%;
  height: 100%;
  top: 0;
  transform: translateX(-30.5%);
  z-index: -1;
  background-repeat: repeat-x;
  background-image: url("/Images/s_get/top_world_img01_pc_w.webp");
  background-size: contain;
}

.world-pin {
  position: absolute;
  width: 20px;
  height: 20px;
  transition: all .2s ease-in-out;
  color: var(--tdk-accent);
  border: 1px solid rgba(0,0,0,.2);
  border-radius: 100%;
  cursor: pointer;
  box-shadow: 0 10px 5px rgba(0, 0, 0, .2);
  background: linear-gradient(to bottom right, #0071ad, var(--tdk-accent));
  .pin-text {
    font-size: 12px;
    position: absolute;
    top: 150%;
  }
}

.world-pin:hover {
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(0,51,204, .4), 0 0 10px rgba(0,51,204, 0);
}

#clock0_container {
  top: 44%;
  left: 16.5%;
}

#clock1_container {
  top: 45%;
  left: 22.5%;
}

#clock2_container {
  top: 36%;
  left: 32%;
}

#clock3_container {
  top: 29%;
  left: 48%;
}

#clock4_container {
  top: 36%;
  left: 50%;
}

#clock5_container {
  top: 47%;
  left: 57.5%;
}

#clock6_container {
  top: 49%;
  left: 78%;
}

#clock7_container {
  top: 60%;
  left: 76%;
}

#clock8_container {
  top: 44.5%;
  left: 85.5%;
}

.pricing {
  bottom: 0;
  font-size: 12px;
  width: 70%;
  z-index: 1;
}

@media only screen and (min-width: 1100px) {
	
	.output-inline {
    position: relative;
    min-width: 160px;
  }

  button.delete {
    margin-left: 0;
  }
}

@media only screen and (max-width: 1500px) {
	.inner.flex > .flex-item.product-card_container {
    width: 50%;
  }
  .pricing {
    width: 60%;
  }
}

@media only screen and (max-width: 1250px) {
	.flex-item .content-card .tooltiptext.right::after,
	.flex-item .content-card .tooltiptext.right::before {
	  top: 20px;
	  left: 100%;
	  right: auto;
  }
  .flex-item .content-card .tooltiptext.right::after {border-color: transparent transparent transparent #fff;}
  .flex-item .content-card .tooltiptext.right::before {border-color: transparent transparent transparent #ccc;}

  .flex-item .content-card .tooltiptext.right {
    top: -5px;
    right: 105%;
    left: auto;
  }
}

@media only screen and (max-width: 1200px) {

  .pricing {
    font-size: 10px;
  }

}

@media only screen and (max-width: 984px) {
	:root {
	 --tdk-header-height: 50px;
	}
	.content-sidebar {
	 padding-left: 10px;
	}
	
	.productSubHeader {
    width: 150px
  }
	
	#clock {
    top: 0;
    transform: translate(-50%, 0);
    .time {
      font-size: 30px;
      padding: 0 0;
      margin-bottom: 0;
    }
    .date {
      font-size: 14px;
      margin-bottom: 0;
    }
    .text {
      font-size: 12px;
      padding: 5px 0 0;
    }
  }
}

@media only screen and (max-width: 857px) {
  .pricing {
    max-width: 50%;
  }
  .inner.flex > .flex-item.product-card_container {
	  width: 100%;
	}
	.content-card .content-card-col {
	 width: 100%;
	}
	
	.content-card .content-card-row {
	   flex-direction: column;
	}
	.content-card .cta-container {
	 width: 100%;
	}
}

@media only screen and (min-width: 769px) {
  #login-overlay .content-card {
    max-width: 322px;
  }

  #changelogAccordion {
    width: 80vw;
  }
	.account-image {
	  margin-right: 15px;
	}
	
  #test-results_content {
    margin-left: 0;
    width: 100%;
  }

  #auto-structure_content {
    width: 100%;
  }

	.minimised-mobile {
	  max-height: auto;
	  transition: max-height .2s ease;
	}
	
	.only-mobile {
	 display: none !important;
	}

  .stick-to-top-lg {
    position: sticky; /*sticky class, used for the advanced filters */
    top: 20px;
    max-height: calc(100vh - var(--tdk-header-height));
  }
}
@media only screen and (max-width: 768px) {
	.page-heading_h1 {
	 font-size: 8vw;
	}
	.channel-outputs_input-row {
	 flex-direction: column;
	}
	.content-main--sidebar {
	  padding-left: 0;
	}
	.content-sidebar--admin {
	 float: none;
	}
	
	.content-sidebar--mobile {
	  position: fixed;
	  top: 50px;
	  bottom: 0;
	  left: 0;
	  overflow: auto;
	  z-index: 1053;
	  background: #fff;
	  width: 100%;
    padding: 2rem 10px 20px;
    margin: 0 auto;
    min-height: 100%;
	}
	
	.options_closeBtn {
	 display: inline-block;
	 position: absolute;
	 top: 10px;
	 right: 10px;
	 background: none;
	 border: none;
	}
	
	.options_closeBtn:hover {
	 color: red;
	}
	
	.content-sidebar--mobile.minimised-mobile {
	 overflow: hidden;
	 width: 0;
	 padding: 0;
	}

	.sort-bar {
	 margin-top: 0;
	 margin-right: 10px;
	 margin-left: 10px;
	}
	#liveResults {
	 margin-right: 0;
	}

  #login-overlay {
    top: 50px;
  }
  
  #login-overlay .content-card {
    max-width: 280px;
  }

  .sort-bar svg {
    width: 24.72px;
    height: 24.72px;
  }

  #sortOptions .input-field select,
  .sort-bar a,
  .sort-bar .button {
    width: 44.499382px;
    height: 44.499382px;
    padding: 0;
  }

  #sortOptions .input-field {
    height: 44.499382px;
  }

  #sortOptions .input-field .input-label {
    width: 44.499382px;
    font-size: 24.72px;
  }

  .circle-border {
    top: 9px;
    right: 9px;
  }

  .account-image svg {
	  width: 40px;
	  height: 40px;
  }

  .account-image ul {
    right: 0;
    font-size: 16px;
  }

  .account-image ul li {
    margin-bottom: 10px;
    width: 100%;
  }

  .no-mobile {
    display: none !important;
  }

  div[id^="specDiv2"] {
    padding-bottom: 115px;
  }

  #advOptions {
    max-height: 1000px;
    transition: max-height .2s ease-in-out;
  }

  .minimised-mobile {
    max-height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
  }

  .content-sidebar .stick-to-top {
    position: static;
  }

  .page-overlay,
  .login-overlay {
    padding: 0;
  }

  .content-card {
    padding-left: 9px;
    padding-right: 9px;
  }

  .flex-item .content-card {
    margin: 0 0 10px 0;
  }

  .content-sidebar {
    width: 100%;
    padding-bottom: 20px;
    margin: 0 auto;
    border-right: none;
    min-height: 100%;
    padding-left: 10px;
  }

    .inner.flex .flex-item {
    width: 100%;
  }

  #liveResults .flex-item {
    width: 100%;
  }

  .content-card .cta-container {
    left: 26px;
    width: auto;
  }

  .checkbox-select_dropdown > * {
    padding: 5px 0;
  }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-moz-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-webkit-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-o-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-ms-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.loader {
	display: none;
}

.loader.active {
	display: flex;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	justify-content: center;
	text-align: center;
	align-items: center;
	z-index: 2;
	border-radius: var(--tdk-border-radius);
	min-height: 30vh;
	min-width: 30vw;
}

.navBarLoader {
  height: 30px;
  width: 100%;
  justify-content: center;
  font-size: 4px;
}

.navBarLoader .spinner {
	top: 10px;
}

.TR_Loader__small {
  height: 5px;
  width: 100%;
}

.spinner.spinner__white {
  color: #fff;
}

.spinner {
	margin: 0 auto;
  color: var(--tdk-accent);
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  animation: spinner 1.3s infinite linear;
  -webkit-animation: spinner 1.3s infinite linear;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  z-index: 99999;
}

html-modal model-viewer {
	min-height: 70vh;
  min-width: 80vw;
}

html-modal .spinner {
	color: #0046ad;
}

@keyframes spinner {
  0%,
  100% {
    box-shadow: 0 -3em 0 0.2em,
    2em -2em 0 0em, 3em 0 0 -1em,
    2em 2em 0 -1em, 0 3em 0 -1em,
    -2em 2em 0 -1em, -3em 0 0 -1em,
    -2em -2em 0 0;
  }
  12.5% {
    box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em,
    3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em,
    -2em 2em 0 -1em, -3em 0 0 -1em,
    -2em -2em 0 -1em;
  }
  25% {
    box-shadow: 0 -3em 0 -0.5em,
    2em -2em 0 0, 3em 0 0 0.2em,
    2em 2em 0 0, 0 3em 0 -1em,
    -2em 2em 0 -1em, -3em 0 0 -1em,
    -2em -2em 0 -1em;
  }
  37.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em,
     3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em,
     -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  50% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em,
     3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em,
     -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  62.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em,
     3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0,
     -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
  }
  75% {
    box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em,
    3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em,
    -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
  }
  87.5% {
    box-shadow: 0em -3em 0 0, 2em -2em 0 -1em,
    3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em,
    -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
  }
}

@keyframes progress {
  0% {
    stroke-dasharray: 0 100;
  }
}

/* TEMPORARY BOOTSTRAP FIX */

#configureVegaForm .tab-pane.active {
  display: block;
}

.btn_tdk.arrow {
  padding-left: 21px;
  padding-right: 21px;
}
  