.filters {
  width: 23%;
  padding: 24px;
}

.filters-header {
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.filters-header h3 {
  font-weight: 600;
  font-size: 22px;
  line-height: 34px;
  color: #121212;
}

h4.filter-heading {
  margin: 0 0 16px 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
}

.filters-list {
  margin-bottom: 40px;
}

.filters-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 250px;
  overflow-y: auto;
  scrollbar-width: none;
}

.filters-list ul::-webkit-scrollbar {
  width: 10px;
}

.filters-list ul::-webkit-scrollbar-thumb {
  background-color: #A7A7A7;
  border-radius: 5px;
}

.filters-list ul::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

.filters-list ul::-webkit-scrollbar-track {
  background-color: #f1f1f1;
  border-radius: 5px;
}

.filters-list ul {
  scrollbar-width: thin;
}

.filters-list ul::-webkit-scrollbar {
  display: block;
}

.filters-list ul li,
#favorites-filter h4 {
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  color: #807E7E;
  cursor: pointer;
}

.filters-list ul li:not(:last-child) {
  margin-bottom: 13px;
}

.filters-list ul li .filter-item .text,
#favorites-filter h4 {
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}

#favorites-filter h4 {
  display: inline-block;
}

.filters-list ul li.active .filter-item .text,
#favorites-filter.active h4,
.filters-list ul li:hover .text {
  color: #121212;
  border-bottom: 1px solid #121212;
  padding-bottom: 1px;
}

.filter-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}

#devices {
  display: flex;
  justify-content: space-between;
}

.filters {
  flex: 0 0 23%;
}

.content {
  flex: 0 0 70%;
}

#search-device {
  width: calc(100% - 40px);
  padding: 13px 16px 13px 40px;
  font-size: 16px;
  line-height: 26px;
  color: #3E3E59;
  border: 1px solid #CBCBCB;
  border-radius: 6px;
}

.row.search-device {
  margin-top: 16px;
  position: relative;
  width: 100%;
}

.row.search-device svg {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}

.row.devices-controller {
  margin-top: 16px;
  justify-content: space-between;
  align-items: center;
}

.row.devices-controller .row:not(.toolbar-selection.row) {
  gap: 32px;
}

.row.devices-controller button:not(.toolbar-selection button) {
  background-color: transparent;
  border: 0;
  display: flex;
  gap: 4px;
  align-items: center;
  font-size: 16px;
  color: #121212;
  line-height: 28px;
  font-weight: 500;
  padding: 0;
}

.toolbar-selection button {
  background-color: #fff;
  padding: 8px 11px;
  border: 1px solid #EAEAEA;
  margin: 0;
}

.toolbar-selection button.active {
  background-color: #F5F5F5;
}

.toolbar-selection button.active svg path {
  stroke: #000;
}

.row.devices-list {
  margin-top: 16px;
  flex-wrap: wrap;
  column-gap: 27px;
  row-gap: 40px;
}

.row.load-more {
  justify-content: center;
}

#load-more {
  background-color: #4eb7f8;
  border-radius: 24px;
  padding: 12px 24px 12px 24px;
  font-size: 16px;
  font-weight: 600;
  line-height: 19.79px;
  color: #fff;
  font-family: 'Open Sauce Sans';
  border: 0;
  margin-top: 40px;
}

.device-overview {
  flex-grow: 1;
  box-sizing: border-box;
}

.device-overview .device-meta {
  background-color: #F5F5F5;
}

.device-overview .device-thumbnail {
  max-width: 100%;
  width: 313px;
  height: 200px;
  padding-top: 32px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  object-fit: contain;
}

.device-overview .device-filters {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 16px;
}

.device-overview .price {
  height: 22px;
}

span.device-price {
  background-color: #4eb7f8;
  padding: 4px 8px;
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
}

.device-overview .filters-icon {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.device-overview .device-brief {
  margin-top: 16px;
}

.device-overview .device-brief .device-title {
  margin: 0;
  color: #121212;
  font-size: 14px;
  font-weight: 500;
  line-height: 28px;
}

.device-overview .device-brief .device-code {
  margin: 0;
  color: #807E7E;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
}

.validation-process {
  margin-top: 64px;
  background-color: #4eb7f8;
  padding: 40px;
  color: #fff;
}

.validation-process h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 29.6px;
}

.validation-process p {
  font-size: 14px;
  color: #000;
  line-height: 19px;
}

p.small {
  font-size: 12px;
}

.validation-process a {
  line-height: 17px;
  font-size: 14px;
  color: #000000;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

#close-filters {
  background: none;
  border: none;
}

.four-columns {
  flex-basis: calc((100% - 81px) / 4);
}

.three-columns {
  flex-basis: calc((100% - 54px) / 3);
}

.two-columns {
  flex-basis: calc((100% - 27px) / 2);
}

.single-column {
  flex-basis: 100%;
}

ul.swatches li {
  display: inline-block;
  border: 1px solid #CBCBCB;
  padding: 4px 15px;
}

.loader-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.loader {
  border: 4px solid rgba(0, 0, 0, 0.3);
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 2s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.loader-text {
  margin-top: 10px;
  text-align: center;
  color: #fff;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.sort-by-container,
.print-container {
  position: relative;
}

.sort-by-btn,
.print-btn {
  background-color: #3498db;
  color: #fff;
  padding: 8px 16px;
  border: none;
  cursor: pointer;
}

.sort-options,
.print-options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  z-index: 999;
  /*  */
  margin: 5px 0;
  box-shadow: 0px 8px 16px 0px #00000009;
  padding-top: 8px;
  padding-bottom: 8px;
  min-width: 150px;
  width: max-content;
}

.sort-option,
.print-option {
  cursor: pointer;
  margin: auto;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 400;
}

.sort-option:hover,
.print-option:hover {
  background-color: #ddd;
}

.select-print-opt {
  color: #807E7E;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0px;
  margin: auto;
  padding: 8px 16px;
}

.sort-option[data-sort-direction]::after {
  content: " (" attr(data-sort-direction) ")";
}

.sort-option[data-sort-direction="desc"]::after {
  transform: rotate(180deg);
}

.right-side-controllers {
  align-items: center;
}

.applied-filter {
  border: 1px solid #EAEAEA;
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 12px;
  line-height: 20px;
  color: #121212;
  font-weight: 600;
}

.filters-applied {
  margin-top: 16px;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  display: none;
}

.clear-filters {
  border: 1px solid transparent;
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 12px;
  line-height: 20px;
  color: #807E7E;
  font-weight: 600;
}

.applied-filter,
.clear-filters {
  display: flex;
  column-gap: 4px;
  flex-direction: row;
  flex-wrap: nowrap;
  cursor: pointer;
}

.applied-filter .icon,
.clear-filters .icon {
  align-items: center;
  display: flex;
}

.devices-list a {
  text-decoration: none;
}

@media screen and (max-width: 2000px) {
  .toolbar-selection>#four-columns {
    display: none;
  }
}

@media screen and (max-width: 1493px) {
  .toolbar-selection>#three-columns {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .filters {
    display: none;
    width: calc(100% - 48px);
    position: fixed;
    z-index: 999;
    top: 0;
    height: 100vh;
    overflow: auto;
    background-color: white;
  }

  .content {
    flex: 0 0 100%;
    width: 100%;
  }

  .toolbar-selection {
    display: none !important
  }

  .device-overview {
    flex-basis: auto;
    width: calc((100% - 27px) / 2);
  }

  .sort-options,
  .print-options {
    right: 0;
    left: auto;
  }
}

@media screen and (max-width: 1024px) {
  .filters {
    display: none;
    width: calc(100% - 48px);
    position: fixed;
    z-index: 999;
    top: 0;
    height: 100vh;
    overflow: auto;
    background-color: white;
  }

  .content {
    flex: 0 0 100%;
    width: 100%;
  }

  .toolbar-selection {
    display: none !important
  }

  .device-overview {
    flex-basis: auto;
    width: calc((100% - 27px) / 2);
  }

  .sort-options,
  .print-options {
    right: 0;
    left: auto;
  }
}

@media screen and (max-width: 640px) {
  .device-overview {
    flex-basis: 100%;
  }

  .devices-controller {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .devices-controller>p {
    margin: 0 0 5px 0;
  }

  .devices-controller>.right-side-controllers {
    width: 100%;
    justify-content: space-between;
  }

  .devices-controller>.right-side-controllers>.print-container {
    display: none !important;
  }

  #load-more {
    width: 100%;
    max-width: 360px;
  }
}

.banner-content,
.heading-content {
  position: relative;
}

.banner-content .heading-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.info-button {
  width: 30px;
  height: 30px;
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 18px;
  text-align: center;
  cursor: pointer;
  color: #fff;
}

.popup-content {
  display: none;
  color: #fff;
  max-width: 90%;
  text-align: center;
}

.popup-content p {
  color: #fff;
  font-weight: 600;
  margin: 0;
  line-height: 22px;
}

.header-disclaimer p {
  text-align: center;
}

#favorite-div {
  display: flex;
  margin-left: 87%;
  padding-top: 5%;
  align-items: end;
}

.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
  overflow: visible;
}

.tooltiptext {
  visibility: hidden;
  width: 310px;
  height:455px;
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  border-radius: 6px;
  padding: 15px;
  position: absolute;
  z-index: auto;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  overflow-y: visible;
}

  .tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
  }

.pr-3 {
  padding-right: 3px;
} 
