body{
    min-height: 100vh;
    -webkit-tap-highlight-color: transparent;
    /* background: linear-gradient(0deg, rgb(255, 238, 0) 0%, rgb(255, 119, 0) 30%, rgb(255, 0, 0) 100%); */
    background: rgb(40, 40, 40);
    background-image: url(../../../assets/circuitBG.svg);
}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: white;
    opacity: 1; /* Firefox */
  }
::-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:hover{
    color: cyan;
}
.nav-link:hover{
    color: cyan;
}
#content-wrapper{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    color: white;
    width: 100%;
    height: 100%;
    padding: 1rem;
    margin-top: 5rem;
}
#picker-wrapper{
    width: 60%;
    padding: 1rem;
}
#parts-reciept{
    position: -webkit-sticky;
    position: sticky;
    top: 96px;
    height: 100%;
    width: 200px;
    background-color: rgba(0, 0, 0, .5);
    padding: 1rem;
    border: 1px solid white;
}
#list-name{
    width: 100%;
    border-radius: 10px;
    border: 2px solid white;
    color: white;
    padding: 1rem;
}
#parts-reciept button{
    width: 100%;
    border-radius: 10px;
    border: 2px solid white;
    color: white;
    padding: 1rem;
}
#parts-reciept select{
    width: 100%;
    border-radius: 10px;
    border: 2px solid white;
    color: white;
    padding: 1rem;
}
.addItemButton{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgb(36, 69, 255);
    width: 100%;
    color: white;
    border: 1px solid white;
    border-radius: 7.5px;
    box-shadow: 0px 0px 5px white;
    padding: 1rem;
    transition: all .5s;
    
}
.addItemButton:hover .productImage{
    padding: .75rem;
    transition: all .25s;
}
.reciept-input{
    margin-bottom: .5rem;
    background-color: rgb(94, 118, 255);
    transition: all .5s;
}
.reciept-input:hover{
    box-shadow: 0px 0px 5px white;
    font-size: 1.05rem;
    transition: all .5s;
}
.addItemButton:hover{
    box-shadow: 0px 0px 10px white;
    font-size: 1.05rem;
    transition: all .5s;
}
#content-wrapper h2{
    margin-bottom: 3rem;
    align-self: center;
    text-align: center;
}
#products-wrapper{
    display: flex;
    position: fixed;
    top: 3rem;
    left: 2rem;
    right: 2rem;
    max-height: 70vh;
    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;
}
#products-list{
    overflow-y: scroll;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    border-radius: 10px;
}
#products-header h4 {
    color: white;
    padding-top: .75rem;
    margin-left: .75rem;
    /* padding-right: 80%; */
}
#products-header button{
    display: flex;
    justify-content: center;
    color: white;
    margin-top: .25rem;
    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: .25rem;
    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;
}
.productImage{
    transition: all .25s;
    padding: .5rem;
    width: 90%;
    max-width: 150px;
}
.hidden{
    display: none;
}
.product:hover{
    border: 1px solid cyan;
    color: cyan;
    cursor: pointer;
    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;
    margin: 1rem;
    margin-top: 0rem;
}
.part-selection{
    border-bottom: 1px solid white;
    margin-bottom: 1rem;
}
.component-price{
    margin-top: .5rem;
    text-align: end;
}
#total-price{
    text-align: end;
}