input {
    border-radius: 0;
  }
  input[type="search"] {
    -webkit-appearance: none;
  }
.basket_container{
min-height: 65vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.basket_container h1{
    font-size: 4vh;
}
.empty_basket{
 text-align: center;
 display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.empty_basket p{
    text-align: center;
    font-size: 5vh;
   }

.count{
    display: flex;
}
.count p{
    margin: 0 5px;
}
.basket-form{
    margin-top: 5vh;
    text-align: center;
}
.basket-form input{
    width: 20vw;
    padding: 2px 0;
    margin-bottom: 2vh;
}
.basket-form  input[type=submit] {
    background-color: red;
    width: 15vw;
    color: white;
    padding: 1vh 0;
    margin-top: 5vh;
    margin: 1px auto;
    text-align: center;
    margin-top: 3vh;
    border: none;
}
.basket_button{
    background-color: red;
    font-size: 16px;
    margin-top: 3vh;
    
}
.basket_button a{
    color: white;
    padding: 2vh 3vw;
}
.basket_button a:hover{
    text-decoration: none;
}
.add_low{
padding: 1px 3px;
}
@media only screen and (min-width : 320px) and (max-width : 479px) {
.basket-form{
    width: 90vw;
}
.basket-form input{
    width: 60vw;
    border-radius: 0px;
}
.basket-form  input[type=submit] {
width: 30vw;
}
.basket_button a{
    color: white;
    font-size: 25px;
    padding: 10px 50px;
}
.add_low{
    padding: 1px 5px;
    background-color: grey;
    color: white;
}
.basket_container{
font-size: 17.5px;
}


}