*,
*::after,
*::before {
	margin: 0;
	padding: 0;
	box-sizing: boder-box;
}

.custom-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-list li {
  position: relative;
  padding-left: 1.5em; /* space for the custom bullet */
}

.custom-list li::before {
  content: "•"; /* Can be any character or icon */
  position: absolute;
  left: 0;
  /* top: 0.5em; */
  font-size: 1.2em;
  color: #333;
}
@font-face {
    font-display: swap;
    font-family: 'SamsungSSHead';
    font-style: normal;
    font-weight: bold;
    src: local('SamsungSSHead'),url('fonts/SamsungSSHead-Bold.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'SamsungSSHead';
    font-style: normal;
    font-weight: normal;
    src: local('SamsungSSHead'),url('fonts/SamsungSSHead-Bold.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'SamsungSSBody';
    font-style: normal;
    font-weight: bold;
    src: local('SamsungSSBody'),url('fonts/SamsungSSBody-Bold.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'SamsungSSBody';
    font-style: normal;
    font-weight: normal;
    src: local('SamsungSSBody'),url('fonts/SamsungSSBody-Regular.woff2') format('woff2');
}
body {
    font-family: SamsungSSBody, Arial, sans-serif;
	font-style: normal;
    font-weight: normal;
}

h1 {
	font-family: 'SamsungSSHead';
    font-style: normal;
    font-weight: bold;
    margin-bottom: 20px;
}
p {
	font-family: 'SamsungSSBody';
    font-style: normal;
    font-weight: normal;
  font-size: 1.15rem;
}

.p {
  font-size: 1.15rem;  
}

.samsung-h4 {
  font-family: SamsungSSHead, sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
}

a {
	font-family: 'SamsungSSBody';
    font-style: normal;
    font-weight: normal;
  color: #009ED8;
}
a:hover {
  color: #0070BF;
  text-decoration: none;
}

.samsung-h1 {
  font-family: SamsungSSHead, sans-serif;
  font-size: 38px;
  font-weight: bold;
  line-height: 1.2;
}
.samsung-h2 {
  font-family: SamsungSSBody, sans-serif;
  font-size: 18px;
  line-height: 1.33;
}
.samsung-h3 {
  font-family: SamsungSSHead, sans-serif;
  font-size: 1.5em;
  font-weight: 700;
  font-weight: bold;
}
.samsung-disclaimer{
  font-family: SamsungSSBody, sans-serif;

  font-size: 0.95rem;
  line-height: 1.7rem;
}

@media only screen and (min-width: 768px) and (max-width:1440px) {
  .samsung-h1 {
    font-size: 2.63888889vw;
  }
  .samsung-h2 {
    font-size: 1.25vw;
  }
  .samsung-h3 {
    font-size: 2.25vw;
  }

}

.selector-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3em;
  /* margin-bottom: 2em; */
  margin-top: 2em;
}
#selectorWrapper {
  position: sticky;
  top: 0;
  background: white; /* Match your page background */
  z-index: 1000;
  padding: 1em 0;
}


.selector-wrapper select:nth-child(3) {
  display: none;
}

@media (min-width: 768px) {
  .selector-wrapper {
      grid-template-columns: repeat(3, 1fr);
  }

  .selector-wrapper select:nth-child(3) {
      display: block;
  }
}


select {
  padding: 10px;
  font-size: 14px;
}

.comparison-grid {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.row {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 3em;
}

@media (min-width: 768px) {
.row {
  grid-template-columns: repeat(3, 1fr);
}
}

.cell {
  display: flex;
  flex-direction: column;
  gap: 1em;
  align-items: center;
  font-family: SamsungOne, sans-serif;
  text-align: center;
}

.cell.label {
  font-weight: bold;
}

.color-radio {
  display: inline-block;
  position: relative;
  margin: 4px;
  cursor: pointer;
}

.color-radio input[type="radio"] {
  display: none;
}

.color-radio .swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  /* border: 2px solid #ccc; */
  display: inline-block;
  transition: transform 0.2s ease;
}

.color-radio input[type="radio"]:checked + .swatch {
  border: 1px solid #333;
  transform: scale(1.2);
}


.color-radio:hover {
  opacity: 0.8;
}

/* Apply border-bottom starting from the 3rd row, every 2nd row after that, but not the last row */
.comparison-grid .row:nth-of-type(n+3):nth-of-type(2n+1):not(:last-of-type) .cell.features {
  border-bottom: 1px solid #8a8a8a;
  padding-bottom: 2em;
}
.comparison-grid .row .label {
  padding-top: 2em;
}

/* Custom Dropdown Styling */
.custom-dropdown {
  border: none; /* Remove default borders */
  border-bottom: 1px solid #8a8a8a; /* Add bottom border */
  background-color: transparent; /* Transparent background */
  padding: 8px 0 8px 8px; /* Adjust padding */
  font-size: 1em; /* Font size */
  font-family: SamsungOne, sans-serif;
  color: #333; /* Text color */
  
  outline: none; /* Remove outline on focus */
  position: relative; /* Ensure arrow is positioned correctly */
  transition: border-color 0.3s ease; /* Smooth transition for border */
}


.button{
font-family: "Circular Pro" !important;
			padding: 12px 25px !important;
			border-radius: 24px !important;
			background-color: #008cce !important;
			color: #fff !important;
			font-style: normal !important;
			font-weight: bold !important;
			font-size: 16px !important;
			line-height: 24px !important;
			text-align: center !important;
			border: none !important;
			text-decoration: none !important;
			display: inline-block !important;
}

@media only screen and (max-width: 768px) {
  .custom-dropdown {
      font-size: 2.5vw;
  }
  .button{
      font-size: 13px;
      padding: 8px 20px;
  }
}