body{
    min-height: 100vh;
    -webkit-tap-highlight-color: transparent;
    background: rgb(40, 40, 40);
    background-image: url(../../../assets/circuitBG.svg);
}
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.25);
}
::-webkit-scrollbar-thumb{
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.75);
}
::-webkit-scrollbar-thumb:hover{
  	background: rgba(255, 255, 255, 1);
}
::-webkit-scrollbar-thumb:active{
  	background: rgba(255, 255, 255, 1);
}
  
.navbar-brand svg{
    height: 1.5rem;
    width: 1.5rem;
    margin: .5rem;
}
.navbar-brand{
    color: white;
    transition: all .25s;
}
.navbar-brand:hover{
    color: cyan;
    transition: all .25s;
}
.nav-link:hover{
    color: cyan;
    transition: all .25s;
}
#content-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
    color: white;
    width: 100%;
    height: 100%;
    padding: 2rem;
    margin-top: 1.2rem;
}
#content-wrapper h2{
    margin-top: 3rem;
    align-self: center;
    text-align: center;
}
#content-wrapper p{
    margin-top: 1rem;
    align-self: center;
    text-align: center;
}
#content-wrapper a{
    align-self: center;
}

.products-wrapper{
    display: flex;
    position: relative;
    height: 20%;
    flex-direction: column;
    margin-top: 3rem;
    background: rgba(46, 53, 61, 0.98);
    border: 1px solid white;
    border-radius: 12px;
}
.products-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.products-list{
    /* overflow-y: scroll; */
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    border-radius: 10px;
    transition: all .5s;
}
.products-header h4 {
    color: white;
    padding-top:.25rem;
    margin-left: .75rem;
    /* padding-right: 80%; */
}
.products-header button{
    display: flex;
    justify-content: center;
    color: white;
    margin-top: .0rem;
    margin-right: .25rem;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    background: transparent;
    height: 30px;
    width: 30px;
}
.products-header button:hover{
    display: flex;
    justify-content: center;
    color: black;
    margin-top: .0rem;
    margin-right: .25rem;
    border-radius: 50px;
    background: white;
    height: 30px;
    width: 30px;
    transition: all .25s;
}
.product{
    display: flex;
    flex-direction: column;
    color: white;
    border: 1px solid rgb(149, 149, 149);
    margin: .5rem;
    padding: .5rem;
    width: 12rem;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all .25s;
}
.product:hover{
    border: 1px solid cyan;
    color: cyan;
    padding-left: 1rem;
    padding-right: 1rem;
    transition: all .25s;
}
.productPrice{
    font-weight: 700;
    text-shadow: 0 0 2px rgb(21, 21, 255), 0 0 1px white;
    color: cyan;
    align-self: flex-end !important;
    margin: 1rem;
    margin-top: 0rem;
}
.hidden{
    display: none;
    transition: all .5s;
}
.productImage{
    max-width: 90%;
}