@charset "ISO-8859-1";

 #UIBar {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 200px;
  pointer-events: none;
  touch-action: none;
  z-index: 1052;
}

#UIBar > * {
  pointer-events: auto;
}

#UIBar iframe {
  position: absolute !important;
  bottom: 20px;
  right: 20px;
}

#dragWidget {
  position: absolute;
  bottom: 0;
  left: 10px;
  display: flex;
  margin: 0px auto;
  justify-content: center;
  pointer-events: none;
  touch-action: none;
}

.widgetBar {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  margin: 0 auto;
  justify-content: center;
  padding-bottom: 20px;
  pointer-events: none;
  touch-action: none;
}

.widgetMenuContainer {
  position: absolute;
  bottom: 105px;
  display: flex;
  margin: 0 auto;
  justify-content: center;
  pointer-events: none;
  touch-action: none;
}

.widgetMenu {
  position: absolute;
  bottom: 0;
  left: 10px;
/*   display: none; Hidden by default */
 /* z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  cursor: pointer; /* Add a mouse pointer on hover */
  overflow: hidden;
  /* width: 25rem; */
  width: 0;
  max-height: 0;
  pointer-events: auto;
  transition: all .5s ease-in-out;
  white-space: nowrap;
  opacity: 0;
  padding: 0;
  margin: 0 auto;
}

.widgetMenu.show,
.widgetMenu:focus-within,
.widgetThumb:focus ~ .widgetMenu {
	width: 350px;
  max-width: 90vw;
  max-height:25rem;
  opacity: 1;
  z-index: 999;
  padding: 26px;
  background-color: rgba(255,255,255,.8);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  color: var(--tdk-font);
  border-radius: var(--tdk-border-radius);
  padding: 26px 26px;
  pointer-events: auto;
  touch-action: auto;
}

/*#compareUnitsContainer:hover #compareUnits {
	width: 25rem;
	max-width: 90vw;
	max-height:25rem;
	opacity: 1;
	z-index: 999;
}*/

.widgetThumb {
	position: relative;
	height: 72px;
	width: 72px;
	border-radius: 36px;
	background-color: var(--tdk-base);
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	z-index: 1000;
	transition: all .2s ease;
	margin-right: 10px;
	margin-left: 10px;
	pointer-events: auto;
	touch-action: auto;
	cursor: grab;
}

.widgetThumb:hover {
  opacity: .8;
  transform:scale(1.2);
}

.widgetThumb img,
.widgetThumb svg {
	margin: auto;
  position: absolute;
  left:0;
  right: 0;
  top: 0;
  bottom: 0;
}

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

.compareCounter {
	position: absolute;
	top: -5px;
	right: -5px;
  border-radius: 50%;
  width: 27px;
  height: 27px;
  background-color: var(--tdk-accent);
  border: 2px solid rgba(0,0,0,.125);
  color: #fff;
  text-align: center;
  box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
}

.widgetMenuHeader {
	color: var(--tdk-font);
}

.widgetMenuHeader h4 {
  display: block;
  width:100%;
  text-align:center;
}

#compareTableBody {
	box-shadow: 0 30px 40px rgba(0,0,0,.1);
}

.compareTable {
  width: 100%;
  margin-bottom: 10px;
}

.compareTable tr th:nth-child(1) {
  width: 30%;
}

.compareTable tr th:nth-child(2) {
  width: 60%;
}

.compareTable tr th:nth-child(3) {
  width: 10%;
}

#compareTableBody tr {
  height: 52px;
}

#compareTableBody tr button.deleteUnit {
  margin-bottom: 10px;
  color: var(--tdk-danger);
  height: 20px;
  width: 20px;
}

#compareTableBody tr:nth-child(odd){
	background-color: #eeeeee;
}

#compareTableBody tr:nth-child(even){
  background-color: #fff;
}

#compareTableBody tr:hover{
	transition:0.2s ease-in-out; /* transition for tr hover effects */
  transform: scale(1.02, 1.02); /*scales up rows on hover */
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px; /*adds shadow to row */
}

#compareTableBody tr:hover a, #compareTableBody tr:hover a:hover {
	opacity: .5; /*reduces opacity on hover */
  text-decoration: none; /* removes underline effect when hovering on link */
}

#compareTableBody a:focus {
  opacity: .5;
}

#compareTableBody td a {
  color: var(--tdk-accent);
	display: inline-block;
	overflow: hidden;
	text-overflow: ellipsis;
	text-align: center;
}

#myBtnDiv {
  pointer-events: none;
  touch-action: none;
}

#myBtnDiv > * {
  pointer-events: auto;
  touch-action: auto;
}

.bottom-scroller_container--blur {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to top, #fff, transparent);
  backdrop-filter: blur(4px);
  mask: gradient(linear, left 45%, left 0%, from(rgba(0, 0, 0, 1)), to(rgba(0, 0, 0, 0)));
  -webkit-mask: -webkit-gradient(linear, left 45%, left 0%, from(rgba(0, 0, 0, 1)), to(rgba(0, 0, 0, 0)));
  z-index: 1052;
}

.bottom-scroller_btn {
  background: none;
  border: none;
  display: block;
  width: 100%;
  padding: 2rem;
  font-size: 1.5rem;
  color: #0046ad;
  text-shadow: 0px 0px .5px #666666;
}

.contactWidgetMenu {
  position: absolute;
  display: flex;
  right: 10px;
  bottom: 10px;
}

.filter-bar {
	position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 200px;
  pointer-events: none;
  touch-action: none;
  z-index: 1052;
}

.uiWidgetThumb.uiWidgetThumb--bottom-left {
	position: absolute;
	bottom: 10px;
	left: 10px;
	z-index: 1052;
}

.uiWidgetThumb {
	position: relative;
  border: none;
  color: #fff;
  cursor: pointer;
  height: 50px;
  width: 50px;
  background-color: #0046ad;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 0;
  margin-left: 5px;
  pointer-events: auto;
}

.uiWidgetThumb i {
	position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: 0 auto;
}

@keyframes ring-pulse {
  0% {
    width: 30px;
    height: 30px;
    opacity: 1;
  }
  100% {
    width: 130px;
    height: 130px;
    opacity: 0;
  }
}

.no-visual-search {
  pointer-events: none;
}

h2#headingCompare table {
  margin: 0 auto;
}

@media only screen and (max-width:768px) {
  #dragWidget {
    left: 0;
    width: 100%;
  }

  .widgetBar {
    left: 0px;
    padding-bottom: 0;
    bottom: 20px;
    flex-direction: column;
    justify-content: left;
  }

  .widgetThumb {
    margin-top: 10px;
  }

  .widgetMenuContainer {
    bottom: 20px;
  }

  .widgetMenu.show {
    width: calc(90vw - 58px);
    margin-left: 58px;
  }

  .widgetThumb svg {
    pointer-events: none;

  }
}