:root {
  --lightblue: #1B284B;
  --darkblue: #10162D;
  --orange: #FF785A;
  --offwhite: #F5F5F5;
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

.paddingy-15 {
  padding-top: 15px;
  padding-bottom: 15px;
}

.paddingy-5 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.site-container {
  display: block;
}

.header-container {
  display: block;
}

.content-container {
  min-height: calc(100vh - 78px - 157px);
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.quests-container {
  display: block;
  min-height: 300px;
}

.footer-container {
  display: block;  
}

.results-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

body {
  font-family: "Rubik";
  font-size: 16px;
  background-color: var(--darkblue);
  min-height: 100vh;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

/* Baiscs */

h1 {
  color: var(--offwhite);
  font-size: larger;
  font-weight: 800;
}

h2 {
  color: var(--offwhite);
  font-size: large;
  font-weight: 600;
}

h3 {
  color: var(--offwhite);
}

h4 {
  color: var(--offwhite);
}

a {
  text-decoration: none;
  color: black
}

.body-wrapper {
  width: 100%;
  margin: 2rem auto;
}

.primaryBackgroundColor {
  background-color: #eb3434;
}

.primaryTextColor {
  background-color: white;
}

/* Small Product Card */

@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700');

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}



.product-card {
  width: 20rem;
  position: relative;
  /*box-shadow: 0 2px 7px #dfdfdf;*/ 
  background: var(--offwhite);
  margin: 1rem;
  border-radius: 15px;
}

.product-tumb {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 18rem;
  padding: 2rem;
  border-radius: 18px 18px 0px 0px;
  background: #ffffff;
}

.product-tumb img {
  max-width: 100%;
  max-height: 100%;
}

.product-details {
  padding: 1.5rem;
}

.product-catagory {
  display: block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgb(131, 131, 131);
  margin-bottom: 8px;
}

.product-details h4 {
  font-weight: 700;
  display: block;
  font-size: 14px;
  margin-bottom: 18px;
  text-transform: uppercase;
  color: #363636;
  text-decoration: none;
}


.product-details p {
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 8px;
  color: rgb(20, 20, 20);
}

.product-bottom-details {
  overflow: hidden;
  border-top: 2px solid rgb(255, 255, 255);
  padding-top: 1rem;
  display: flex;
  gap: 0.5rem;
}

.product-bottom-details div {
  width: 50%;
  display: flex;
  gap: 1rem;
}

.product-price {
  font-size: 18px;
  color: var(--orange);
  font-weight: 600;
  max-width: 5rem;
}

.product-price small {
  font-size: 80%;
  font-weight: 400;
  text-decoration: line-through;
  display: inline-block;
  margin-right: 5px;
}


.product-links {
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  height: 2rem;
  border: 2px solid black;
  border-radius: 12px;
  padding-left: 5px;
  padding-right: 5px;
}

.product-links a {
  display: inline-block;
  color: #4b4b4b;
  transition: 0.3s;
  font-size: 14px;
}

.product-links a:hover {
  color: var(--orange);
}

.product-buttons {
  margin-left: auto;
  margin-right: auto;
}


/* FOOTER */

footer {
  bottom: 0 ;
  width: 100%;
  margin-top: auto;
}

.footer-background {
  
  background-color: var(--lightblue);
  padding-bottom: 1.5rem;
  padding-top: 1.5rem;
}

.footer-copyright {
  text-align: center;
}


.footer-copyright a {
  color: var(--offwhite);
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
}

.footer-links-list {
  display: flex;
  justify-content: center;
  flex-direction: row;
  gap: 2rem;
  margin-bottom: 1rem;
}

.footer-links {
  color: var(--offwhite);
  text-align: left;
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
}

.footer-links:hover {
  color: var(--orange);
  transition-duration: 150ms;
}

.footer-icons {
  fill:var(--orange);
}

.footer-icons:hover {
  fill: var(--offwhite);
  transition-duration: 150ms;
}


/* NAVBAR */

.navbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-around;
  align-items: center;
  min-height: 8vh;
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
  background-color: var(--lightblue);
}

.navbar-logo {
  font-weight: 700;
  font-family: "Rubik";
  font-size: 30px;
  color: var(--offwhite);
  letter-spacing: 3px;
}

.navbar-links {
  display: flex;
  justify-content: space-around;
  width: 25%
}

.navbar-links li {
  list-style: none;
}

.navbar-links a {
  color: var(--offwhite);
  font-size: 14px;
  letter-spacing: 3px;
}

.burger {
  display: none;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: var(--offwhite);
  margin: 5px;
  transition: all 0.3s ease;
}

@media screen and (max-width:1024px) {
  .navbar-links {
    width: 50%
  }
}

@media screen and (max-width:768px) {
  body {
    overflow-x: hidden;
  }

  .navbar-links {
    position: absolute;
    right: 0px;
    height: 92vh;
    top: 8vh;
    background-color: var(--lightblue);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 44%;
    transform: translateX(100%);
    transition: transform 0.5s ease-in;
  }

  .navbar-links li {
    opacity: 0;
    padding-bottom: 5vh;
  }

  .burger {
    display: block;
  }
}

.navbar-active {
  transform: translateX(0%)
}

@keyframes navbarLinksFade {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

.toggle .burger-line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .burger-line2 {
  opacity: 0;
}

.toggle .burger-line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Single-Monitor-Page */

.content-container-single-monitor {
  width: 80%;
  display: block;
  margin: auto;
}

@media screen and (max-width:768px) {
  .content-container-single-monitor {
    width: 95%;
  }
}

.single-monitor-row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  color: var(--offwhite);
  margin-bottom:  1rem;
}

.single-monitor-left { 
  width: 50%;
  min-width: 360px;
  position: relative;
  flex-wrap: wrap;
}

.single-monitor-right {
  width: 50%; 
  flex-wrap: wrap;
}

@media screen and (max-width:1024px) {
  .single-monitor-right {
    width: 100%
  }

  .single-monitor-left {
    width: 100%
  }
}

.monitor-specs-overview {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 20px;
}

.deteiled-specs-container {
  width: 100%;
}

.monitor-specs-col {
  width: 50%;
  padding-right: 2rem;
}

.monitor-specs-row {
  padding: 0.5rem;
}

.detailed-specs-header {
  color: var(--offwhite);
  margin-left: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--offwhite);
}

.single-monitor-modell {
  margin-top: 3rem;
}

/* detailed specs tabelle */

table.detailed-specs {
  display: table;
  box-sizing: border-box;
  border-spacing: 0.5rem;
  color: var(--offwhite);
  border-color: var(--offwhite);
  border-collapse: collapse;
  margin-left: 1rem;
  margin-bottom: 1rem;
  width: 100%;
  table-layout: fixed;
}

@media screen and (max-width:768px) {
  table.detailed-specs {
    margin-left: 0;
  }

}

table.detailed-specs tbody {
  display: table-row-group;
  vertical-align: middle;
  border-color: inherit;
}

table.detailed-specs tr {
  display: table-row;
  vertical-align: inherit;
  border-color: inherit;
  border-bottom: 1px solid;
}

table.detailed-specs tr:last-child {
  border-bottom: 0px solid;
}

table.detailed-specs td {
  width: 50%;
  padding: 1rem;
  border-color: inherit;
}

table.detailed-specs td:first-child {
  border-right: 1px solid var(--offwhite);
}

.detailed-specs-infotext {
  font-size: 12px;
  font-style: italic;
  margin-top: 0.5rem;
  color: #b5b5b5 ;
}

.toggleButton {
  display: flex;
  justify-content: center;
  border-color: var(--offwhite);
  border-radius: 1rem;
  border-width: 2px;
  border-style: solid;
}

.toggleButton a {
  color: var(--offwhite);
  padding: 0.5rem;
  font-size: 18px;
}

#details {
  display: none;
}

/* gallery */

.gallery-container {
	margin: auto;
	max-width: 500px;
	max-height: 80vh;
	background-color: white;
}

.xy-center {
	position: absolute; 
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.gallery-transition {
	transition: all 250ms ease-out;
}

.r-3-2 {
	width: 100%;
	padding-bottom: 66.667%;
	background-color: white;
}



.image-holder {
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
}

/* Main Styles */
.gallery-wrapper {
	position: relative;
	overflow: hidden;
}

.gallery {
	position: relative;
	white-space: nowrap;
	font-size: 0;
}

.item-wrapper {
	cursor: pointer;
	width: 25%; 
	display: inline-block;
	background-color: white;
}

.gallery-item { opacity: 0.5; }
.gallery-item.active { opacity: 1; }

/* specs tooltip 

.icon {
  margin: 0 2px;
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  
  z-index: 2;
  transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.icon span {
  margin: 0 2px;
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 2;
  transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon span i {
  line-height: 15px;
  font-size: 12px;
}

.icon .tooltip {
  position: absolute;
  top: 0;
  z-index: 1;
  background: #fff;
  color: var(--darkblue);
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 12px;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0px 10px 10px rgba(0,0,0,0.1);
  transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.icon:hover .tooltip {
  top: -70px;
  opacity: 1;
  pointer-events: auto;
}

.icon .tooltip:before{
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  background: #fff;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%) rotate(45deg);
  transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.icon:hover span{
  color: #fff;
}

.icon:hover span,
.icon:hover .tooltip{
  text-shadow: 0px -1px 0px rgba(0,0,0,0.4);
}  */
 
/* Breadcrumps */

.breadcrumbs {
  width: 80%;
  margin: auto;
  padding: 1rem 0rem 1rem 0rem;
}

li.breadcrumbs a {
  color: var(--offwhite);
}

ul.breadcrumbs  {
  list-style: none;
}

ul.breadcrumbs li {
  display: inline;
}

.breadcrumbs-current {
  color: var(--orange);
}


/* colors */

.color-container {
  margin-left: auto;
 
  width: 80%;
}

.color-options {
  width: 40%;
  margin: 0 auto;
  margin-top: 1rem;
}


/* FRONT PAGE */

/* NEW HIGHLIGHT*/

.new-highlight-wrap {
  display: block;
  border-radius: 1rem;
  border-style: solid;
  border-color: #eb3434;
  margin: 0.5rem;
}

.new-highlight-row {
  display: flex;
  width: 100%;
}

.new-highlight-col {
  display: flex;
  width: 30%;
  gap: 1rem
}

/* NEW MONITORS*/

.new-monitors {
  display: flex;
  flex-direction: row;
  width: 45%;
}

.new-monitors-desc {
  margin-top: 2rem;
}

