@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap');
:root {
  --blue: #468FB2;
  --red: #F47A93;
  --green: #83D8C3;
  --white: #FFF3E3;
  --pink: #FAB7BB;
  --aero: #C1E6D3;
  --verdigris: #65B4BB;
  --purple: #6D7AA7;
}

html{
  background-color: var(--purple);
}

*{
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  scrollbar-color: var(--red) var(--white)
}


h1{
  margin-left: 1%;
  margin-right: 1%;
  color: var(--blue);
  font-size: 40px;
  font-weight: 600;
}

h2{
  margin-left: 1%;
  margin-right: 1%;
  color: var(--blue);
  font-size: 30px;
  font-weight: 600;
}

h3{
  margin-left: 1%;
  margin-right: 1%;
  color: var(--blue);
  font-size: 20px;
  font-weight: 500;
}

.title-centered{
  display: flex;
  justify-content: center;
  align-items: center;
}


p{
  margin-top: 0.5em;
  margin-left: 1%;
  margin-right: 1%;
  color: var(--blue);
  font-size: 18px; /*used to be 20px*/
  font-weight: 500;
}






/* Responsive Header */

header{
  position: fixed;
  top: 0;
  width: 100%;
  padding-left: 20px; /*used to be 2%*/
  padding-right: 20px; /*used to be 2%*/
  padding-top: 1em;
  padding-bottom: 1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--blue);
  z-index: 9;
  box-sizing: border-box;
}

.header-logo{
  position: relative;
  margin-left: 1em;
  margin-bottom: -0.5em;
  z-index: 99;
}

.logo-header-small{
  width: auto;
  height: 42.85px;
  transition: 300ms;
  fill: var(--white);
}

.logo-small{
  width: 50px;
  height: auto;
  transition: 300ms;
  fill: var(--white);
}

label{
  display: none;
} 
  
#check{
  z-index: 3;
  display: none;
}

.active-a{
  color: var(--red);
  text-decoration: none;
  border-radius: 50px;
  background-color: var(--white);
  padding: 2px 20px;
  letter-spacing: 1px;
  font-size: 30px;
  font-weight: 600;
  transition: 200ms cubic-bezier(.65,.05,.36,1);
  margin-left: 10px;
  margin-right: 10px;
}

.active-a:hover{
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  background-color: var(--red);
  padding: 2px 30px;
  letter-spacing: 1px;
  font-size: 30px;
  font-weight: 600;
  transition: 200ms cubic-bezier(.65,.05,.36,1);
  margin-left: 0px;
  margin-right: 0px;
}

.active-b{
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  background-color: var(--red);
  padding: 2px 20px;
  letter-spacing: 1px;
  font-size: 30px;
  font-weight: 600;
  transition: 200ms cubic-bezier(.65,.05,.36,1);
  margin-left: 10px;
  margin-right: 10px;
}

.active-b:hover{
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  background-color: var(--purple);
  padding: 2px 30px;
  letter-spacing: 1px;
  font-size: 30px;
  font-weight: 600;
  transition: 200ms cubic-bezier(.65,.05,.36,1);
  margin-left: 0px;
  margin-right: 0px;
}

.inactive-a{
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  padding: 2px 20px;
  letter-spacing: 1px;
  font-size: 30px;
  font-weight: 600;
  transition: 200ms cubic-bezier(.65,.05,.36,1);
  margin-left: 10px;
  margin-right: 10px;
}

.inactive-a:hover{
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  background-color: var(--red);
  padding: 2px 30px;
  letter-spacing: 1px;
  font-size: 30px;
  font-weight: 600;
  transition: 200ms cubic-bezier(.65,.05,.36,1);
  margin-left: 0px;
  margin-right: 0px;
}


@media (max-width: 960px){
  header .navigation{
    display: none;
  }

  label{
    display: block;
    margin-bottom: 1em;
    margin-right: 1em;
    padding-right: 20px; /*used to be 2%*/
    font-size: 45px;
    cursor: pointer;
    transition: 300ms;
    color: var(--white);
  }

  label:hover{
    color: var(--red);
  }

  label .close-btn{
    display: none;
  }

  #check:checked ~ header .navigation{
    z-index: 3;
    position: fixed;
    background: var(--blue);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: auto;
  }

  #check:checked ~ header .navigation a{
    margin-bottom: 50px;
  }

  #check:checked ~ header label .menu-btn{
    display: none;
  }

  #check:checked ~ header label .close-btn{
    z-index: 3;
    display: block;
    position: fixed;
  }

  label .menu-btn{
    position: fixed;
  }

}
/* END Responsive Header */







.white{
  color: var(--white) !important;
}

.red{
  color: var(--red) !important;
}

a{
  color: var(--red);
  text-decoration: none;
}

a:hover{
  color: var(--purple);
  text-decoration: underline;
}

.a-b{
  color: var(--white);
  text-decoration: none;
}

.a-b:hover{
  color: var(--green);
  text-decoration: underline;
}

.a-redir,
.a-redir-white{
  color: var(--blue);
  text-decoration: none;
  transition: 200ms cubic-bezier(.65,.05,.36,1);
}

.a-redir-white{
  color: var(--white) !important;
}

.a-redir:hover,
.a-redir-white:hover{
  color: var(--red);
  text-decoration: none;
  font-weight: 600 !important;
  letter-spacing: 1.5px;
  transition: 200ms cubic-bezier(.65,.05,.36,1);
}

.a-redir-white:hover{
  color: var(--aero) !important;
}

.a-redir::after,
.a-redir-white::after{
  content: " >";
  opacity: 0;
  transition: 200ms cubic-bezier(.65,.05,.36,1);
}

.a-redir:hover::after,
.a-redir-white:hover::after{
  opacity: 100;
  transition: 200ms cubic-bezier(.65,.05,.36,1);
}

button{
  scale: 100%;
  background-color: var(--red);
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  padding: 2px 20px;
  border-radius: 30px;
  border: none;
  transition: cubic-bezier(0.645, 0.045, 0.355, 1.000) 200ms;
}

button:hover{
  background-color: var(--purple);
  transition: cubic-bezier(0.645, 0.045, 0.355, 1.000) 200ms;
}

button:active{
  scale: 110% !important;
  transition: 2ms cubic-bezier(.65,.05,.36,1);
}

input[type="number"]{
  background-color: var(--blue);
  width: 50px;
  color: var(--white);
  font-size: 18px;
  border-radius: 30px;
  padding: 5px 20px;
  transition: cubic-bezier(0.645, 0.045, 0.355, 1.000) 200ms;
  border: none;
}

input[type="number"]:focus{
  background-color: var(--purple);
  transition: cubic-bezier(0.645, 0.045, 0.355, 1.000) 200ms;
}

input[type="number"]:focus-visible{
  outline: none;
}


.logo-small{
  width: 50px;
  height: auto;
  transition: 300ms;
  fill: var(--white);
}

.center{
  justify-content: center;
}

img.emoji{
  height: 40px !important;
  width: auto !important;
  pointer-events: none;
}

.active-a{
  color: var(--red);
  text-decoration: none;
  border-radius: 50px;
  background-color: var(--white);
  padding: 2px 20px;
  letter-spacing: 1px;
  font-size: 30px;
  font-weight: 600;
  transition: 200ms cubic-bezier(.65,.05,.36,1);
  margin-left: 10px;
  margin-right: 10px;
}

.active-a:hover{
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  background-color: var(--red);
  padding: 2px 30px;
  letter-spacing: 1px;
  font-size: 30px;
  font-weight: 600;
  transition: 200ms cubic-bezier(.65,.05,.36,1);
  margin-left: 0px;
  margin-right: 0px;
}

.active-b{
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  background-color: var(--red);
  padding: 2px 20px;
  letter-spacing: 1px;
  font-size: 30px;
  font-weight: 600;
  transition: 200ms cubic-bezier(.65,.05,.36,1);
  margin-left: 10px;
  margin-right: 10px;
}

.active-b:hover{
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  background-color: var(--purple);
  padding: 2px 30px;
  letter-spacing: 1px;
  font-size: 30px;
  font-weight: 600;
  transition: 200ms cubic-bezier(.65,.05,.36,1);
  margin-left: 0px;
  margin-right: 0px;
}

/* Main */

.container{
  display: flex;
  background-color: var(--green);
  padding: 1em;
}

.container-home-fs{
  min-height: 100vh;
  display: flex;
  background-color: var(--blue);
  position: relative;
}

.container-noflex{
  background-color: var(--green);
  padding: 1em;
}

.container-collection-h3{
  margin-left: 1%;
  border-left: 2px solid var(--red);
  padding-left: 5px;
}

.transition{
  position: absolute;
  width: 100%;
  height: auto;
  left: 0px;
  bottom: -1px;
}
  
.content{
  margin: 0 auto;
  padding: 20px; /*used to be 2%*/
  background-color: var(--white);
  width: 1200px;
  border-radius: 30px;
}

.content-important-scroll{
  margin: 0 auto;
  padding: 20px;
  background-color: var(--red);
  color: var(--white);
  width: 1200px;
  border-radius: 30px;
  overflow: hidden;
  font-size: 40px;
  font-weight: 600;
  height: 60px;
}

.grid-redir{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.grid-redir-container{
  margin: 10px;
  width: calc(50% - 20px);
}

.grid-redir-container.wide{
  width: 100% !important
}

.grid-redir-item{
  height: 150px;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  scale: 100%;
  transition: 200ms cubic-bezier(.65,.05,.36,1);
}

.grid-redir-item > h2{
  color: var(--white) !important;
  font-size: 30px;
  font-weight: 600;
  flex: 0 auto;
}

.grid-redir-container a:hover{
  text-decoration: none;
}

.grid-redir-item:hover{
  scale: 105%;
  transition: 200ms cubic-bezier(.65,.05,.36,1);
}

#img-newitems{
  background-color: var(--red);
}

#img-stickers{
  background-image: url(/img/shop/collections/collection-stickers.jpg);
  background-size: cover;
}

#img-keychains{
  background-image: url(/img/shop/collections/collection-keychains.jpg);
  background-size: cover;
}

@media (max-width: 767px){
  .grid-redir-container{
    width: 100% !important;
  }
}


.scrolling-text{
  white-space: nowrap;
  position: relative;
}

.item{
  display: inline-block;
  padding-right: 20px;
}


@keyframes infinite-scroll{
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.content-auto{
  margin: auto auto;
  width: 1200px;
}

.content-alert{
  margin-top: 1%;
  margin-bottom: 1%;
  padding: 1%;
  border-radius: 30px;
  background-color: var(--red) !important;
}

.content-alert > p{
  color: var(--white) !important;
  font-weight: 600;
}

/* Shop List */

.hide{
  display: none;
}

.show{
  display: block;
}

/*ul#shopList,
ul#shopFreeList{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1em;
  padding: 0;
  list-style: none;
}*/

#shopListAll,
#shopListNew,
#shopListCollection{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.shopItem{
  background-color: var(--white);
  max-width: 400px;
  box-sizing: border-box;
  border-radius: 30px;
  padding: 20px;
  margin: 0 auto;
}

.shopItem > button{
  width: 100%;
  padding: 10px !important;
  border-radius: 30px !important;
}

@media (max-width: 767px){
  ul#shopListAll,
  ul#shopListNew,
  ul#shopListCollection{
    grid-template-columns: 1fr;
  }
}

.title{
  font-size: 25px;
  font-weight: 600;
  color: var(--blue);
}

.price,
#total-price{
  font-size: 30px;
  font-weight: 600;
  color: var(--red);
}

#total-price{
  margin-left: 1%;
  margin-right: 1%;
}

.type,
.desc,
.stock{
  font-size: 18px;
  font-weight: 500;
  color: var(--blue);
}

.cardimage{
  width: 100% !important;
  height: auto;
  border-radius: 30px;
}

.imgcontainer{
  position: relative;
  display: flex;
  height: auto;
  width: 100% !important;
}

.alert{
  position: absolute;
  bottom: 0px;
  right: 0px;
  background-color: var(--red);
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  padding: 10px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 30px
}

.alert-true{
  display: block !important;
}

.alert-false{
  display: none !important;
}

.alert-medium{
  background-color: var(--white);
  color: var(--red);
}

.outstock-true{
  filter: grayscale();
}

.cart-item{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--aero);
}

.cart-item-left{
  display: flex;
  align-items: center;
  width: 350px;
}

.cart-item-image{
  height: 100px;
  border-radius: 30px;
  margin-right: 20px;
}

.cart-item-left > div > .title{
  font-size: 20px !important;
}

.cart-item > .price{
  width: 100px !important;
}

/*Footer Style*/
.site-footer
{
  background-color:var(--purple);
  padding: 20px; /*used to be 2%*/
  line-height: 24px;
  color:var(--white);
}

.container-footer > p{
  margin-left: 16px !important;
  color: var(--white) !important;
}