* {
    margin: 0;
}

:root {
  --gray: rgb(219, 219, 219);
  --black: #000;
  --white: #fff;
  --dirt: #88764C;
  --blackLight: #121212;
  --gold: #d4af37;
  --wallColor: #000;
  --transparent: rgba(0,0,0,0);
  --brandOrange: #EF822C;
  --brandBlue: #2D3C67;
  --overlayBlack: rgba(0,0,0,0.4);
}

body {
    font-family: "Open Sans", sans-serif;
    color: var(--brandOrange);
    font-size: 1.2rem;
}

.logo {
  z-index: 100;
  display: flex;
  justify-content: center;
  margin-top: 10px;
  padding: 5px;
  position: absolute;
  left: 50%;
  transform: translate(-50%,0);
  background-color: rgba(255,255,255,0.1);
  backdrop-filter: blur(3px);
  border-radius: 10px;
}

.switchSeries {
  width: 100vw;
  height: 100vh;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  background: linear-gradient(var(--overlayBlack), var(--overlayBlack)), url('./images/wall/3d-room-interior-with-classic-design-furniture (1).jpg') no-repeat center;
  background-size: cover;
  padding: 1rem;
  overflow: hidden;
  flex-direction: row;
}

.switchSeries .series {
  color: var(--white);
  background-color: var(--transparent);
  padding: 15px 40px;
  border-radius: 10px;
  border: 1px solid var(--white);
  transition: all 500ms ease;
  backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 70px;
}

.switchSeries .series:hover {
  background-color: var(--brandOrange);
  border: 1px solid var(--brandOrange);
  color: var(--white);
  cursor: pointer;
}

.switchSeries .series .seriesImg {
  width: 200px;
  height: 200px;
  position: absolute;
  transform: translate(0, 100%);
  scale: 0;
  transition: all 500ms ease;
  pointer-events: none;
}

.switchSeries .series:hover > .seriesImg {
  scale: 1;
}

.dashboardDisplay {
  background: linear-gradient(var(--overlayBlack), var(--overlayBlack)), url('./images/wall/3d-room-interior-with-classic-design-furniture (1).jpg') no-repeat center;
  background-size: cover;
  padding-top: 100px;
  /* overflow: hidden; */
}

.upper-bar, .upperSideBar {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    padding: 1rem;
    overflow-x: scroll;
    flex-wrap: nowrap;
    gap: 10px;
    scrollbar-width: thin;
}

.upper-bar .upper-bar-op, .upperSideBar .customSelectorUP{
    min-width: 120px;
    min-height: 100px;
    background-color: var(--transparent);
    border-radius: 10px;
    border: 1px solid var(--white);
    transition: all 500ms ease;
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    padding: 10px;
    gap: 10px;
    cursor: pointer;
}

.upper-bar .upper-bar-op label, .upperSideBar .customSelectorUP h4{
    color: #fff;
}

.upper-bar .upper-bar-op svg, .upperSideBar .customSelectorUP svg {
    width: 50px;
    height: 50px;
    fill: #fff;
}

.upper-bar .upper-bar-op:hover {
  background-color: var(--brandOrange);
  border: 1px solid var(--brandOrange);
}

.main-container{
    /* overflow: hidden; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
}

#dashboardsC{
    width: 60vw;
    /* height: 70vh; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.configurations {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px;
    height: 60vh;
    font-size: 1rem;
}

.config-card {
    text-align: center;
    border-radius: 10px;
}

.config-card img {
    width: auto;
    height: 30vh;
    border-radius: 10px;
}

.config-card.matte img {
    filter: brightness(0.85);
}

.config-card.shine img {
    background-image: conic-gradient(from 50deg, rgba(255,255,255,0), rgba(255,255,255,0.15));
}

#wallImageSelector {
  padding-left: 20px;
}

#wallImageSelector li {
  list-style: none;
  margin-bottom: 10px;
  color: var(--white);
  background-color: var(--transparent);
  padding: 15px 40px;
  border-radius: 10px;
  border: 1px solid var(--white);
  transition: all 500ms ease;
  backdrop-filter: blur(5px);
  max-width: 200px;
}

#wallImageSelector li:hover {
  cursor: pointer;
}

select {
  font-size: 1.2rem;
  color: var(--white);
  background-color: var(--transparent);
  padding: 15px 40px;
  border-radius: 10px;
  border: 1px solid var(--white);
  transition: all 500ms ease;
  backdrop-filter: blur(5px);
}

select option {
  color: var(--white);
  background-color: var(--dirt);
}

.allbuttons {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.allbuttons button {
  width: 300px;
  color: var(--white);
  background-color: var(--transparent);
  padding: 15px 40px;
  border-radius: 10px;
  border: 1px solid var(--white);
  transition: all 500ms ease;
  backdrop-filter: blur(5px);
}


.allbuttons button:hover {
  background-color: var(--brandOrange);
  border: 1px solid var(--brandOrange);
  color: var(--white);
  cursor: pointer;
}

.customDashboard {
  background: linear-gradient(var(--overlayBlack), var(--overlayBlack)), url('./images/wall/3d-room-interior-with-classic-design-furniture (1).jpg') no-repeat center;
  background-size: cover;
  padding-top: 100px;
}


@media only screen and (min-width:1024px) {
  .main-container {
    height: 70vh;
  }
}

@media only screen and (max-width:1024px) {
  .main-container {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    overflow: hidden;
    padding-top: 5rem;
  }

  .side-bar {
    width: 100dvw;
  }

  #dashboardsC {
    width: 100dvw;
  }

  .allbuttons {
    flex-direction: column;
  }
}


@media only screen and (max-width:768px) {
  .switchSeries {
    flex-direction: column;
    align-items: start;
  }

  .switchSeries .series {
    transform: translateX(20px);
  }
  
  .switchSeries .series .seriesImg {
    transform: translate(150%,0);
  }

  .selectors {
    width: 100%;
  }

  .config-card img {
    width: 60vw;
    height: auto;
    border-radius: 10px;
  }
}