@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css);
* {
  padding: 0;
  margin: 0;
  border: 0;
}
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
:focus,
:active {
  outline: none;
}
a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  /* font-size: 16px; */
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}
button {
  cursor: pointer;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
a,
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
ul li {
  list-style: none;
}
img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

/* :root {
  --width: 300px;
} */

body {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: #fff;
}

/* Main App Style */

.app {
  max-width: 100vw;
  min-height: 100vh;
  display: grid;
  grid-template-areas:
    'header header header'
    'main main main'
    'footer footer footer';
  grid-row-gap: 1em;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 1fr 1fr 1fr;
  background-color: #121c1e;
}

.header {
  grid-area: header;
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 1em;
}

/* Navigation Styles */

.header__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__nav .header__nav__btn {
  display: block;
  color: whitesmoke;
}
.header__nav > * + * {
  margin: 0 1em;
}

/* Search Input Styles */

/* Style the input container */

/* Style the input field inside the navbar */
.search-container .search-container__input {
  padding: 6px;
  font-size: 17px;
  border: none;
  border-radius: 5px;
}

.search-container button:hover {
  background: #ccc;
}

.notfound {
  position: absolute;
  right: 40%;
}

/* Basket Styles */

.basket__notification {
  display: inline-block;
  background-color: #01aa6d;
  color: white;
  text-decoration: none;
  padding: 1em 1.5em;
  position: relative;
  border-radius: 5px;
}

.basket__notification:hover {
  background: #3e8e41;
}

.basket__notification .basket__badge {
  position: absolute;
  bottom: -10px;
  left: -10px;
  padding: 5px 8px;
  border-radius: 50%;
  background: red;
  color: white;
}

/* Basket Full Pop up */

/* Popup container - can be anything you want */
.popup {
  --timeout: 0.6s;
  /* position: relative; */
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 90%;
  height: 90%;
  visibility: hidden;
  /* visibility: visible; */
}

/* The actual popup */
.popup .popuptext {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgb(91, 180, 32);
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10;
  top: 0;
  left: 0;
}

/* Toggle this class - hide and show the popup */
.popup.show {
  visibility: visible;
  -webkit-animation: fadeIn var(--timeout);
  animation: fadeIn var(--timeout);
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Main container styles */

.main {
  grid-area: main;
  height: 100%;
  max-width: 100%;
  margin: 0 1em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url(../assets/bg.jpg);
  background-size: cover;
  background-attachment: fixed;
}

/* Main Welcome */

.main__main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 70%;
}

.main__welcome {
  width: 600px;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  border: 3px solid #278d9f;
  border-radius: 25px;
  background-color: rgba(31, 112, 127, 0.3);
  backdrop-filter: blur(6px);
}

.main__welcome__heading {
  font-size: 2.5em;
}

.main__start.btn {
  width: 320px;
  height: 60px;
  border: 3px solid #278d9f;
  border-radius: 25px;
  background-color: rgba(31, 112, 127, 0.3);
  backdrop-filter: blur(6px);
  font-weight: 300;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
}

/* Settings */

.main__settings {
  width: 100%;
  height: 100%;
  display: grid;
  row-gap: 1em;
  align-items: start;
}

.controls {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-items: stretch;
  grid-column-gap: 1em;
  height: max-content;
}

.controls .filter {
  background-color: darkolivegreen;
  height: 250px;
  border-radius: 5px;
  padding: 10px;

  border-radius: 10px;
  background-color: rgba(31, 112, 127, 0.3);
  backdrop-filter: blur(6px);
}

/* individual divs filters */
.filter {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.filter .filter__btns {
  align-self: flex-start;
}

.controls__filter-heading {
  font-size: 1.1em;
  margin: 0.5em 0.25em;
}

.filter-btns__header {
  font-size: 0.9em;
  margin: 0.5em 0.25em;
}

.filter__btns {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
}
.filter__btns > * + * {
  margin: 0.5em;
}

.filter__btns .btn {
  width: 30px;
  height: 30px;
  background-color: transparent;
}

/* Shape Buttons Styles */

.filter__btns_shape .btn:nth-child(2) {
  background-image: url(../assets/svg/ball.svg);
  background-size: 25px;
}
.filter__btns_shape .btn:nth-child(3) {
  background-image: url(../assets/svg/bell.svg);
  background-size: 25px;
}
.filter__btns_shape .btn:nth-child(4) {
  background-image: url(../assets/svg/cone.svg);
  background-size: 25px;
}
.filter__btns_shape .btn:nth-child(5) {
  background-image: url(../assets/svg/snowflake.svg);
  background-size: 25px;
}
.filter__btns_shape .btn:nth-child(6) {
  background-image: url(../assets/svg/toy.svg);
  background-size: 25px;
}

/* Color Buttons Styles */
.filter__btns_color .btn:nth-child(2) {
  background-color: white;
}
.filter__btns_color .btn:nth-child(3) {
  background-color: yellow;
}
.filter__btns_color .btn:nth-child(4) {
  background-color: red;
}
.filter__btns_color .btn:nth-child(5) {
  background-color: blue;
}
.filter__btns_color .btn:nth-child(6) {
  background-color: green;
}

/* Size Buttons Styles */
.filter__btns_size .btn:nth-child(2) {
  /* width: 35px;
  height: 35px; */
  background-image: url(../assets/svg/ball.svg);
  background-size: 30px;
}
.filter__btns_size .btn:nth-child(3) {
  /* width: 25px;
  height: 25px; */
  background-image: url(../assets/svg/ball.svg);
  background-size: 25px;
}
.filter__btns_size .btn:nth-child(4) {
  /* width: 20px;
  height: 20px; */
  background-image: url(../assets/svg/ball.svg);
  background-size: 20px;
}

.filter__btns .btn {
  background-position: center;
  background-repeat: no-repeat;
}

.filter__btns .btn.active {
  border-radius: 5px;
  border: 1px solid lightgreen;
}

/* Favourite Checkbox Styles */

.filter__btns_favorite .input {
  width: 25px;
  height: 25px;
}

/* Settings - Slider Styles */

.controls__filter-by-range.filter {
  justify-content: flex-start;
  align-items: center;
}

.slider.controls__slider {
  /* align-self: flex-start; */
  margin-top: 50px;
}

.slider {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.slider .controls__filter-heading {
  font-size: 0.9em;
}

.slider__inputs {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.slider__rail {
  width: 250px;
  height: 5px;
  background-color: lightgreen;
  margin: 0 5px;
  padding: 0 15px;
}

.slider__input__output {
  margin: 0 5px;
}

/* Select dropdown styles */

:root {
  --select-border: #777;
  --select-focus: rgb(7, 139, 51);
  --select-arrow: var(--select-border);
}

/* reset styles */
select {
  appearance: none;
  background-color: transparent;
  border: none;
  padding: 0 1em 0 0;
  margin: 0;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  cursor: inherit;
  line-height: inherit;
  outline: none;
}

select::-ms-expand {
  display: none;
}

.select {
  display: grid;
  grid-template-areas: 'select';
  align-items: center;
  position: relative;
  min-width: 15ch;
  max-width: 30ch;
  border: 1px solid var(--select-border);
  border-radius: 0.25em;
  padding: 0.25em 0.5em;
  /* font-size: 1.25rem; */
  cursor: pointer;
  line-height: 1.1;
  background-color: #fff;
  background-image: linear-gradient(to top, #f9f9f9, #fff 33%);
}

.select::after {
  content: '';
  width: 0.8em;
  height: 0.5em;
  background-color: var(--select-arrow);
  clip-path: polygon(100% 0%, 0 0%, 50% 100%);
  display: grid;
  grid-template-areas: 'select';
  justify-self: end;
}

select,
.select:after {
  grid-area: select;
}

select:focus + .focus {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border: 2px solid var(--select-focus);
  border-radius: inherit;
}

select[multiple] {
  padding-right: 0;
  /*
   * Safari will not reveal an option
   * unless the select height has room to 
   * show all of it
   * Firefox and Chrome allow showing 
   * a partial option
   */
  height: 6rem;
  /* 
   * Experimental - styling of selected options
   * in the multiselect
   * Not supported crossbrowser
   */
}
select[multiple] option {
  white-space: normal;
  outline-color: var(--select-focus);
}

/* Reset Buttons Styles */

.controls__filter-by-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.controls__filter-by-name .btn {
  padding: 1em;
  font-size: 1em;
  text-align: center;
  cursor: pointer;
  outline: none;
  color: #fff;
  background-color: #04aa6d;
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px #999;
}

.controls__filter-by-name .btn:hover {
  background-color: #3e8e41;
}

.controls__filter-by-name .btn:active {
  background-color: #3e8e41;
  box-shadow: 0 3px #666;
  transform: translateY(4px);
}

/* Cards styles */

.cards {
  display: grid;
  gap: 0.5em;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: 1em;
  justify-content: center;
  align-items: center;
}

.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 280px;
  background-color: lightcyan;
  border-radius: 5px;
  position: relative;
}

.card {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #278d9f;
  background-color: rgba(31, 112, 127, 0.3);
  backdrop-filter: blur(6px);
  cursor: pointer;
  color: lightcyan;
}

.card .card__description__property {
  margin: 0.3em 0;
}

.card__img {
  width: 90px;
  height: 112px;
  object-fit: contain;
  pointer-events: none;
}

.cards {
  /* color: #121c1e; */
}

.card.active {
  background-color: rgba(23, 154, 206, 0.678);
}

/*** Footer Styles ***/

.footer {
  grid-area: footer;
  height: 50px;
  display: flex;
  justify-content: center;
}

.footer__content {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.footer__item a {
  color: whitesmoke;
}

.footer__item__icon-git {
  height: 1.5em;
}

.footer__item__icon-rss {
  height: 3em;
}

/*** Game Page Styles ***/

.main__game {
  height: 100%;
  width: 100%;
  display: grid;
  grid-template-areas: 'left center right';
  grid-column-gap: 0.5em;
  grid-template-columns: 1fr 2fr 1fr;
}

.game-main__left {
  grid-area: left;
  height: 100%;
  width: 100%;
  background-color: #3e8e4180;
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.game-main__center {
  grid-area: center;
  height: 100%;
  width: 100%;
  background-color: #71f87580;
  backdrop-filter: blur(6px);
}
.game-main__right {
  grid-area: right;
  height: 100%;
  width: 100%;
  background-color: #0b1f0b7c;
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.main__game .section {
  padding: 5px;
}

.main__game .section > * + * {
  margin: 10px 0; /* space between top level blocks in section block */
}

.main__game .section > * > * {
  margin: 5px 0; /* space between inner top level blocks */
}

/** Game Page Styles - Left Section Styles **/

.btn.active {
  border: 1px solid #26aa01a3;
  border-radius: 5px;
  background-color: #102b1140;
}

.bg-settings .btn {
  height: 45px;
  width: 45px;
}

.bg-settings {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Audio */

.bg-settings__audio__btn {
  background-image: url(../assets/audio/audio.png);
  background-size: contain;
  background-color: transparent;
}

/* Snow */

.bg-settings__snow__btn {
  background-image: url(../assets/snow/snow.png);
  background-size: contain;
  background-color: transparent;
}

/* Choose tree */
.game-main__left__choose-tree {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.game-main__left__choose-tree .choose-tree {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}

.choose-tree__card {
  background-color: rgba(173, 216, 230, 0.719);
  width: 115px;
  height: 115px;
  cursor: pointer;
  border-radius: 5px;
}

/* Choose Background */
.game-main__left__choose-bg {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.game-main__left__choose-bg .choose-bg {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 5px;
}

.choose-bg__card {
  background-color: rgba(173, 216, 230, 0.719);
  width: 65px;
  height: 65px;
  cursor: pointer;
  border-radius: 3px;
}

/* .choose-bg__card:nth-child(1) {
  background-image: url('./assets/bg/1.jpg');
  background-size: cover;
} */

/* Choose Lights */

.game-main__left__choose-lights {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.game-main__left__choose-lights .choose-lights {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 5px;
  width: 100%;
}

.choose-lights .choose-lights__btn {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.choose-lights .choose-lights__btn:nth-child(1) {
  position: relative;
  background-color: red;
  border: 5px solid rgb(30, 218, 13);
  outline: 5px solid rgb(0, 70, 150);
  outline-offset: 0px;
}
.choose-lights .choose-lights__btn:nth-child(1).btn::after {
  /* content: ''; */
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgb(3, 32, 194);
  top: 4px;
  right: 4px;
}
.choose-lights .choose-lights__btn:nth-child(2) {
  position: relative;
  background-color: rgb(14, 17, 214);
}

.choose-lights .choose-lights__btn:nth-child(3) {
  position: relative;
  background-color: rgb(47, 214, 14);
}

.choose-lights .choose-lights__btn:nth-child(4) {
  position: relative;
  background-color: rgb(246, 250, 24);
}

.choose-lights .choose-lights__btn:nth-child(5) {
  position: relative;
  background-color: rgb(194, 11, 35);
}

/* Toggle switch */

.choose-lights__label {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 25px;
}

/* Hide default HTML checkbox */
.choose-lights__label input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.choose-lights .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.choose-lights .slider:before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.choose-lights__input:checked + .slider {
  background-color: #2196f3;
}

.choose-lights__input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}

.choose-lights__input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.choose-lights .slider.round {
  border-radius: 34px;
}

.choose-lights .slider.round:before {
  border-radius: 50%;
}

/** Game Page Styles - Center Section Styles **/

.game-main__center.section {
  width: 100%;
  height: 100%;
}

.game-main__center__bg {
  --game-center-bg: url(../assets/bg/1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  background-color: #0c42744f;
  background-image: var(--game-center-bg);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  overflow: hidden;
  z-index: 5;
}

.game-main__center .game-main__center__tree {
  --game-center-tree: url(../assets/tree/1.png);
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
  width: 350px;
  height: 500px;
  /* background-color: #278d9f; */
  margin-bottom: 0;
  background-image: var(--game-center-tree);
  z-index: 10;
  position: absolute;
}

.game-main__center__dragNdrop-area {
  width: 350px;
  height: 500px;
  /* background-color: #278d9f; */
  margin-bottom: 0;
  z-index: 15;
  position: relative;
}

/* adjust toy size for dnd area */
.game-main__center__dragNdrop-area .toy__card__img {
  height: 68px;
  width: 68px;
}

/* showflake styles */

.flake {
  position: absolute;
  top: -40px;
  color: rgb(247, 252, 243);
  font-size: 1rem;
  padding: 1rem;
  animation: fall 2s linear forwards infinite;
  animation-delay: 1s;
}

@keyframes fall {
  from {
    transform: translateY(-10vh);
  }
  to {
    transform: translateY(100vh);
  }
}

/* Tree Lights */

/* Center Lights */
.game-main__center__light-bulbs__container {
  position: absolute;
  bottom: 0;
  width: 65%;
  min-width: 350px;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  z-index: 12;
}

.game-main__center__light-bulbs {
  --theme-color-one: #025ba0;
  --theme-color-two: #9bc72b;
  --theme-color-three: #f0c517;
  --theme-color-four: #bf1724;
  --theme-color-five: #5cc9f4;
  --white: #fff;
  --black: #000;
  --grey: #999;
  display: flex;
  justify-content: space-between;
  padding: 20px;
  margin: 0 auto;
  width: 100%;
}

.game-main__center__light-bulbs .light-bulb {
  border-radius: 50%;
  height: 20px;
  width: 20px;
  position: relative;
}

.light-bulb:last-of-type::after {
  border: none;
}

.light-bulb.theme-color-one {
  background: var(--theme-color-one);
}

.light-bulb.theme-color-two {
  background: var(--theme-color-two);
}

.light-bulb.theme-color-three {
  background: var(--theme-color-three);
}

.light-bulb.theme-color-four {
  background: var(--theme-color-four);
}

.light-bulb.theme-color-five {
  background: var(--theme-color-five);
}

.light-bulb {
  animation-duration: 1.1s;
  animation-iteration-count: infinite;
}

.game-main__center__light-bulbs.on .light-bulb.theme-color-one {
  animation-name: light-up-theme-color-one;
}

.game-main__center__light-bulbs.on .light-bulb.theme-color-two {
  animation-name: light-up-theme-color-two;
}

.game-main__center__light-bulbs.on .light-bulb.theme-color-three {
  animation-name: light-up-theme-color-three;
}

.game-main__center__light-bulbs.on .light-bulb.theme-color-four {
  animation-name: light-up-theme-color-four;
}

.game-main__center__light-bulbs.on .light-bulb.theme-color-five {
  animation-name: light-up-theme-color-five;
}

@keyframes light-up-theme-color-one {
  0% {
    box-shadow: 0 1px 10px 5px var(--theme-color-one);
  }
  25% {
    box-shadow: 0 1px 15px 5px var(--theme-color-one);
  }
  50% {
    box-shadow: 0 1px 20px 5px var(--theme-color-one);
  }
  75% {
    box-shadow: 0 1px 25px 5px var(--theme-color-one);
  }
  100% {
    box-shadow: none;
  }
}

@keyframes light-up-theme-color-two {
  0% {
    box-shadow: 0 1px 10px 5px var(--theme-color-two);
  }
  25% {
    box-shadow: 0 1px 15px 5px var(--theme-color-two);
  }
  50% {
    box-shadow: 0 1px 20px 5px var(--theme-color-two);
  }
  75% {
    box-shadow: 0 1px 25px 5px var(--theme-color-two);
  }
  100% {
    box-shadow: none;
  }
}

@keyframes light-up-theme-color-three {
  0% {
    box-shadow: 0 1px 10px 5px var(--theme-color-three);
  }
  25% {
    box-shadow: 0 1px 15px 5px var(--theme-color-three);
  }
  50% {
    box-shadow: 0 1px 20px 5px var(--theme-color-three);
  }
  75% {
    box-shadow: 0 1px 25px 5px var(--theme-color-three);
  }
  100% {
    box-shadow: none;
  }
}

@keyframes light-up-theme-color-four {
  0% {
    box-shadow: 0 1px 10px 5px var(--theme-color-four);
  }
  25% {
    box-shadow: 0 1px 15px 5px var(--theme-color-four);
  }
  50% {
    box-shadow: 0 1px 20px 5px var(--theme-color-four);
  }
  75% {
    box-shadow: 0 1px 25px 5px var(--theme-color-four);
  }
  100% {
    box-shadow: none;
  }
}

@keyframes light-up-theme-color-five {
  0% {
    box-shadow: 0 1px 10px 5px var(--theme-color-five);
  }
  25% {
    box-shadow: 0 1px 15px 5px var(--theme-color-five);
  }
  50% {
    box-shadow: 0 1px 20px 5px var(--theme-color-five);
  }
  75% {
    box-shadow: 0 1px 25px 5px var(--theme-color-five);
  }
  100% {
    box-shadow: none;
  }
}
.game-main__center__light-bulbs .light-bulb:nth-child(1) {
  margin-bottom: 40px;
}
.game-main__center__light-bulbs .light-bulb:nth-child(2) {
  margin-top: 10px;
}
.game-main__center__light-bulbs .light-bulb:nth-child(3) {
  margin-top: 20px;
}
.game-main__center__light-bulbs .light-bulb:nth-child(4) {
  margin-top: 30px;
}
.game-main__center__light-bulbs .light-bulb:nth-last-child(2) {
  margin-top: 10px;
}
.game-main__center__light-bulbs .light-bulb:nth-last-child(3) {
  margin-top: 20px;
}
.game-main__center__light-bulbs .light-bulb:nth-last-child(4) {
  margin-top: 30px;
}
.game-main__center__light-bulbs .light-bulb:nth-last-child(5) {
  margin-top: 40px;
}

/* first layer of lights styles */
.game-main__center__light-bulbs:nth-child(1) {
  width: 25%;
}
.game-main__center__light-bulbs:nth-child(1) .light-bulb {
  height: 5px;
  width: 5px;
}
.game-main__center__light-bulbs:nth-child(1) .light-bulb:nth-child(1) {
  display: none;
}
.game-main__center__light-bulbs:nth-child(1) .light-bulb:nth-child(2) {
  display: none;
}
.game-main__center__light-bulbs:nth-child(1) .light-bulb:nth-last-child(1) {
  display: none;
}
.game-main__center__light-bulbs:nth-child(1) .light-bulb:nth-last-child(2) {
  display: none;
}
/* 2nd layer of lights styles */
.game-main__center__light-bulbs:nth-child(2) {
  width: 40%;
}
.game-main__center__light-bulbs:nth-child(2) .light-bulb {
  height: 7px;
  width: 7px;
}
/* 3rd layer of lights styles */
.game-main__center__light-bulbs:nth-child(3) {
  width: 55%;
}
.game-main__center__light-bulbs:nth-child(3) .light-bulb {
  height: 10px;
  width: 10px;
}

/* 4th layer of lights styles */
.game-main__center__light-bulbs:nth-child(4) {
  width: 70%;
}
.game-main__center__light-bulbs:nth-child(4) .light-bulb {
  height: 15px;
  width: 15px;
}

/* 4th layer of lights styles */
.game-main__center__light-bulbs:nth-child(4) {
  width: 75%;
}
.game-main__center__light-bulbs:nth-child(4) .light-bulb {
  height: 15px;
  width: 15px;
}

/* 5th layer of lights styles */
.game-main__center__light-bulbs:nth-child(5) {
  width: 90%;
}

/** Game Page Styles - Right Section Styles **/

.game-main__right .section {
}

.game-main__right__toys {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.game-main__right__toys .toy__card {
  height: 80px;
  background-color: rgba(211, 211, 211, 0.39);
}

.game-main__right__toys .toys__cards {
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(auto-fill, minmax(80px, 80px));
  justify-content: center;
  align-items: center;
  width: 100%;
}

.toy__card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 5px;
}

.toy__card__img {
  width: 85%;
  position: absolute;
  cursor: pointer;
  display: inline-block;
}

.toy__card__qty {
  bottom: 0;
  right: 0;
  position: absolute;
  background-color: #01aa6d;
  border-radius: 50%;
  width: 1.5em;
  height: 1.5em;
  display: grid;
  place-content: center;
}

/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.noUi-target {
  position: relative;
}
.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
/* Wrapper for all connect elements.
 */
.noUi-connects {
  overflow: hidden;
  z-index: 0;
}
.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  transform-style: flat;
}
/* Offset direction
 */
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto;
}
/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements.
 */
.noUi-vertical .noUi-origin {
  top: -100%;
  width: 0;
}
.noUi-horizontal .noUi-origin {
  height: 0;
}
.noUi-handle {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
}
.noUi-touch-area {
  height: 100%;
  width: 100%;
}
.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  -webkit-transition: transform 0.3s;
  transition: transform 0.3s;
}
.noUi-state-drag * {
  cursor: inherit !important;
}
/* Slider size and handle placement;
 */
.noUi-horizontal {
  height: 18px;
}
.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  right: -17px;
  top: -6px;
}
.noUi-vertical {
  width: 18px;
}
.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  right: -6px;
  bottom: -17px;
}
.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -17px;
  right: auto;
}
/* Styling;
 * Giving the connect element a border radius causes issues with using transform: scale
 */
.noUi-target {
  background: #FAFAFA;
  border-radius: 4px;
  border: 1px solid #D3D3D3;
  box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
}
.noUi-connects {
  border-radius: 3px;
}
.noUi-connect {
  background: #3FB8AF;
}
/* Handles and cursors;
 */
.noUi-draggable {
  cursor: ew-resize;
}
.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}
.noUi-handle {
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #FFF;
  cursor: default;
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;
}
.noUi-active {
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
}
/* Handle stripes;
 */
.noUi-handle:before,
.noUi-handle:after {
  content: "";
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #E8E7E6;
  left: 14px;
  top: 6px;
}
.noUi-handle:after {
  left: 17px;
}
.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}
.noUi-vertical .noUi-handle:after {
  top: 17px;
}
/* Disabled state;
 */
[disabled] .noUi-connect {
  background: #B8B8B8;
}
[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed;
}
/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.noUi-pips {
  position: absolute;
  color: #999;
}
/* Values;
 *
 */
.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}
.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}
/* Markings;
 *
 */
.noUi-marker {
  position: absolute;
  background: #CCC;
}
.noUi-marker-sub {
  background: #AAA;
}
.noUi-marker-large {
  background: #AAA;
}
/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}
.noUi-value-horizontal {
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}
.noUi-rtl .noUi-value-horizontal {
  -webkit-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
}
.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}
.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}
.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}
/* Vertical layout;
 *
 */
.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}
.noUi-value-vertical {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding-left: 25px;
}
.noUi-rtl .noUi-value-vertical {
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
}
.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}
.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}
.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}
.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}
.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}
.noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}
.noUi-horizontal .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(50%, 0);
  transform: translate(50%, 0);
  left: auto;
  bottom: 10px;
}
.noUi-vertical .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(0, -18px);
  transform: translate(0, -18px);
  top: auto;
  right: 28px;
}

