
.basket-container{
    padding: 40px;
    overflow-y: scroll;
}
.item{
    display:flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.basket-container img{
    width: 150px;
    height: 150px;
    object-fit: cover;
}
.product-infos{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap :15px;
}
.product-infos span{
    width: 150px;  
}
.p-name{
    font-family: "Oswald", sans-serif;
    font-size: large;
    font-weight: bolder;
}
.p-price{
    font-family: "Oswald", sans-serif;
    font-weight: 500;
}
.p-details{
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
}
.modify-sec button,input{
    display: inline-block;
}
button{
    font-size: 25px;
    padding: 5px;
    background-color: transparent;
    border: none;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
input{
    width:20px;
    border:none;
    text-align: center;
    font-size: larger;
    padding: 5px;
}
input:focus {
  outline: none;   /* removes the default focus outline */
  border: none;    /* removes the border when focused */
}
#remove{
    font-size: 15px;
    font-weight: 400;
    text-decoration: underline;
    font-family: "Oswald", sans-serif;
}
.total{
    margin-top: 20px;
    display: block;
    flex-direction: column;
}
.t-1{
    display: flex;
    justify-content: space-between;
    font-family: "Oswald", sans-serif;
    font-size: 20px;
    text-transform: uppercase;
}
.t-2{
    font-family: "Oswald", sans-serif;
    margin-bottom: 30px;
}
.t-3{
    font-size: small;
    font-family: "Oswald", sans-serif;
    color: red;
    margin-bottom: 20px;
}
.check-btn button{
    font-size: medium;
    padding: 15px;
    text-align: center;
    width:100%;
    color: white;
    background-color: black;
}
hr{
    border: 2px solid black;
}