:root {
    --titleContainer-color:rgba(21, 28, 45, 0.70);
    --container-color:rgba(21, 28, 45, 0.85);
    --sky-color: rgb(38, 99, 182);
    --text-color: rgb(255, 255, 220);
    --bg-color:  #181818;
    --br-color:  #545454;
    --border-dark: #292929c0;
    --hr-color: rgba(33, 33, 33, 0.349);
    --logo-color: rgb(29, 98, 162);
    --connect-color: rgb(210, 110, 23);
  }
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif, sans-serif;
    font-size: 20px;
    color: #4B4B4B;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1;
    background-image: url("../assets/sprites/background.jpg");
    background-repeat: repeat;
}
body::-webkit-scrollbar {
  display: none;
}

h7 {
    font-size: 2vw;
    line-height: 1.25;
    margin-top: 1vw;
    margin-left: 0px;
    color: black;
}
.headerContainer{
    top:0;
    margin-top: 0px;
    position: fixed;
    height: 60px;
    width:100%;
    background-image: url("../assets/sprites/header.png");
    background-color: #2c2c2cef;/*#2c2c2c34*/
   
    border: solid 1px var(--br-color);
    border-width: 0px 0px 1px 0px;
    z-index: 2000;
}
.headerInner{
    width: 100%;
    height:100%;

}
.logo{
    position:absolute;
    top:10px;
    left: 7vw;
    background-image: url("../assets/sprites/logo.png");
    height: 40px;
    width: 40px;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 2001;
    /*
    background-size: 60% 60%;
    background-position: 40% 40%;
    */
}

.shoppingCartButton{
    position:absolute;
    top:0;
    right: 0;
    height: 60px;
    width: 60px;
    background-image: url("../assets/sprites/cart.png");
    background-size: 60% 60%;
    background-repeat: no-repeat;
    background-position: 40% 40%;
    z-index: 2001;
    cursor: pointer;
}

.shoppingCartValueContainer{
    position:fixed;
    top: 30px;
    right: 28px;
    height: 20px;
    width: auto;
    min-width: 20px;
    border-radius: 50%;
    z-index: 2001;
    visibility: hidden;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    color:gainsboro;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
    background: linear-gradient(550deg, rgb(155, 126, 0), transparent) rgb(168, 109, 0);
}

.cartItemContainer{
    position: relative;
    height: calc(100% - 130px);
    width: 100%;
    overflow-y: scroll;
    border: solid 1px var(--border-dark);
    border-width: 0px 0px 1px 0px;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
/* Hide scrollbar for Chrome, Safari and Opera */
.cartItemContainer::-webkit-scrollbar {
    display: none;
  }
  

.shoppingCart{
    position: fixed;
    top:60px;
    right:0;
    max-width: 400px;
    width: 100%;
    height:  calc(100% - 60px);
    border: solid 1px var(--border-dark);
    border-width: 0px 0px 0px 1px;
    background-color: var(--hr-color);
    z-index: 1000;
    visibility: hidden;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 1);

}


.shoppingCartItemFrame{
    position: relative;
    height: 100px;
    width:93%;
    margin-left: 3%;
    background-color: var(--hr-color);
    border:solid 1px var(--border-dark);
    border-radius: 5px;
    margin-top: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 1);
    margin-bottom: 10px;

}
.shoppingCartItemImage{
    height: 100px;
    width: 100px;
    position:absolute;
    left:0px;
    top:0px;
    background-size: cover;
    border-radius: 5px;
}
.shoppingCartBin{
    position: absolute;
    right: 10px;
    top:10px;
    height:16px;
    width:16px;
    background-image: url("../assets/sprites/binClose.png");
    background-size: cover;
    cursor: pointer;
}
.shoppingCartBin:hover {
    background-image: url("../assets/sprites/binOpen.png");
}
.shoppingCartItemTitle{
    position:absolute;
    left:110px;
    top:10px;
    color: gainsboro;
    font-size: 18px;
    font-weight: 600;
}

.shoppingCartItemTotal{
    position:absolute;
    right:10px;
    bottom:14px;
    color: gainsboro;
    font-size: 16px;
    font-weight: 600;
}

.shoppingCartTotal{
    position: absolute;
    width:90%;
    height:50px;
    text-align: right;
    font-size: 18px;
    font-weight: 600;
    line-height: 50px;
    left:3%;
    bottom: 75px;
    color:gainsboro;
    user-select: none;
}

.itemCount{
    position: absolute;
    width:50px;
    height:25px;
    left: 135px;
    bottom:10px;
    text-align: center;
    color: gainsboro;
    font-size: 16px;
    line-height: 25px;
    user-select: none;
}
.card{
    position:relative;
    margin-left: auto;
    margin-right: auto;
    width: 96%;
    max-width: 800px;
    height:200px;
    background-color: var(--hr-color);
    margin-top: 15px;
    border-radius: 5px;
    border: solid 1px var(--border-dark);
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 1);
   margin-bottom: 10px;
}


.itemImage{
    height: 180px;
    width: 180px;
    position:absolute;
    left:10px;
    top:10px;
    background-size: cover;
}

.itemLabel{
    position:absolute;
    flex-grow: 1;
    left: 200px;
    font-size: 14px;
    font-weight: 600;
    color: gainsboro;
    padding : 4px 4px 4px 4px;
}
.titleLabel{
    font-size : 18px;
    font-weight : 800;
}

.cardContainer{
    margin-top: 70px;
    min-width: 360px;
    overflow: scroll;
    height: 100%;
}
.cardContainer::-webkit-scrollbar {
    display: none;
  }
.cardContainerOpenCart{
    margin-top: 85px;
    min-width: 360px;
}

.itemToggle{
    position: absolute;
    width:25px;
    height:25px;
    border-radius: 5px;
    color: gainsboro;
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    line-height: 22px;
    cursor: pointer;
    user-select: none;background: linear-gradient(55deg, #18181823, transparent) #ffc13c21;
    transition: background-color 1s, border-color 1s;
    border: solid 1px #181818;
    color: gainsboro;
    border-color:  linear-gradient(-550deg, #181818, transparent) #afafafbb;
  }
  .itemToggle:hover, .itemToggle:focus {
    background: linear-gradient(550deg, #ffd92f3f, transparent) #ffa60046;
    color: gainsboro;
    border-color:  linear-gradient(-550deg, #181818, transparent) #afafafbb;
  }
.checkoutButton{
    position: absolute;
    bottom: 15px;
    left:5%;
    width:90%;
    height:50px;
    border-radius: 5px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    line-height: 50px;
    cursor: pointer;
    user-select: none;
    background: linear-gradient(550deg, #ffd92f3f, transparent) #ffa60046;
    transition: background-color 1s, border-color 1s;
    border: solid 1px #181818;
    color: gainsboro;
    border-color:  linear-gradient(-550deg, #181818, transparent) #afafafbb;
}


.checkoutButton:hover, .checkoutButton:focus {
    background: linear-gradient(550deg, #ffd92f3f, transparent) #ffa60096;
    color: gainsboro;
    border-color:  linear-gradient(-550deg, #181818, transparent) #afafafbb;
  }

.connectButton{
    position: absolute;
    bottom: 12px;
    right:80px;
    width:120px;
    height:36px;
    line-height: 36px;
    background-color: var(--connect-color);
    border-radius: 5px;
    text-align: center;
    color: gainsboro;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
    background: linear-gradient(550deg, #ffd92f3f, transparent) #ffa60046;
    transition: background-color 1s, border-color 1s;
    border: solid 1px #181818;
    color: gainsboro;
    border-color:  linear-gradient(-550deg, #181818, transparent) #afafafbb;
}

.connectButton:hover, .connectButton:focus {
    background: linear-gradient(550deg, #ffd92f3f, transparent) #ffa60096;
    color: gainsboro;
    border-color:  linear-gradient(-550deg, #181818, transparent) #afafafbb;
  }

.addToCartButton {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 100px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 5px;
    font-size: 12px;
    color:  gainsboro;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
    background: linear-gradient(55deg, #18181823, transparent) #ffc13c21;
    transition: background-color 1s, border-color 1s;
    border: solid 1px #181818;
    color: gainsboro;
    border-color:  linear-gradient(-550deg, #181818, transparent) #afafafbb;
  }
  .addToCartButton:hover, .addToCartButton:focus {
    background: linear-gradient(550deg, #ffd92f3f, transparent) #ffa60046;
    color: gainsboro;
    border-color:  linear-gradient(-550deg, #181818, transparent) #afafafbb;
  }

  .claimButton {
      position: absolute;
      right: 10px;
      top: 20px;
      width: 100px;
      height: 30px;
      line-height: 30px;
      text-align: center;
      border-radius: 5px;
      font-size: 12px;
      color:  gainsboro;
      font-weight: 600;
      cursor: pointer;
      user-select: none;
      background: linear-gradient(55deg, #18181823, transparent) #ffc13c21;
      transition: background-color 1s, border-color 1s;
      border: solid 1px #181818;
      color: gainsboro;
      border-color:  linear-gradient(-550deg, #181818, transparent) #afafafbb;
    }
    .claimButton:hover, .claimButton:focus {
      background: linear-gradient(550deg, #ffd92f3f, transparent) #ffa60046;
      color: gainsboro;
      border-color:  linear-gradient(-550deg, #181818, transparent) #afafafbb;
    }


@media (max-width:740px) {
  
}
@media (max-width:1625px) {
  .cardContainerOpenCart{
    margin-right: 410px;
  }
}

@media (min-width:1040px) {
   
}