
#navbar{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    background-color: white;
    position: fixed;
    top: 0;
}
#logo{
    width: 25%;
    cursor: pointer;
}
#navbar > div{
    width: 30%;
    font-size: 13px;
    display: flex;
    justify-content: space-evenly;
}
#navbar > div p{
    cursor: pointer;
}
#assist{
    position: relative;
    right: 0;
    bottom: 0;
}
#liveassist{
    position: fixed;
    right: 0;
    bottom: 0;
    margin-right: 5%;
    margin-bottom: 2%;
    font-size: 12px;
    border-bottom: 1px solid black;
    cursor: pointer;
}
#liveIntro{
    position: fixed;
    right: 0;
    bottom: 0;
    margin-right: 5%;
    margin-bottom: 2%;
    width: 315px;
    background-color: white;
    border: 1px solid black;
    display: none;
}
#liveIntro>div:nth-child(1){
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding-top: 3%;
    padding-bottom: 3%;
    padding-left: 2%;
    padding-right: 2%;
    border: 1px solid black;
}
#liveIntro>div:nth-child(2){
    padding-left: 2%;
}
#liveIntro>div:nth-child(2)>label, #liveIntro>div:nth-child(2)>input{
    display: block;
    padding-right: 140px;
}
#textarea{
    height: 200px;
}
#sendButton{
    background-color: black;
    color: white;
    text-align: center;
    padding: 10px 145px 10px 135px;
    font-size: 12px;
}
#product{
    display: flex;

}
#product>div{
    height:100%;
    width: 30%;
}
#product>div:nth-child(1){
    margin-left: 10%;
    font-size: 11px;
    padding-top: 15%;
    padding-bottom: calc((100vh - 70%));
    box-sizing: border-box;
    padding-right: 10%;
    position: sticky;
    top: 0;
    left: 0;

}

#product>div:nth-child(2){
    margin-top: 5%;
    margin-left: 0%;
}
#product>div:nth-child(2)>div>img{
   margin-left:40%;
   
}
#product>div:nth-child(3){
    margin-left: 70%;
    padding-top: 15%;
    padding-bottom: calc((100vh - 30%));
    position: sticky;
    top: 40;
    right: 40;
}
#changedToCheckout{
    background-color: black;
    color: white;
    border: none;
    margin-top: 2%;
    font-size: 12px;
    padding: 10px 40px 10px 40px;
}
#selectSize{
    padding: 10px 180px 10px 15px;
    display: block;
}
#sizeErr{
    position: fixed;
    top: 40;
    background-color: rgb(208, 34, 34);
    color: white;
    text-align: center;
    white-space:nowrap;
    padding: 10px 695px 10px 695px;
    display: none;
    
}
#wishSuccess{
    position: fixed;
    top: 40;
    background-color: black;
    color: white;
    text-align: center;
    white-space:nowrap;
    padding: 10px 695px 10px 695px;
    display: none;

}
#wishRemSuccess{
    position: fixed;
    top: 40;
    background-color: black;
    color: white;
    text-align: center;
    white-space:nowrap;
    padding: 10px 695px 10px 695px;
    display: none;
}
#bag{
    background-color: black;
    color: white;
    border: none;
    margin-top: 2%;
    padding: 10px 70px 10px 70px;
}
#wishlist{
    border: none;
    background-color: white;
}
#buy>p{
    color: grey;
}
#recommend{
    display: flex;
    overflow-x: scroll;
    gap: 40px;
    margin-top: 5%;
    width: 100vw;

}

@media all and (min-width:414px) and (max-width:896px) {
   #logo{
    text-align: center;
    width: 100%;
    cursor: pointer;
    margin: auto;
    margin-top: 5%;
    padding: 10px;
}
#navbar > div:nth-child(1){
    display: none;
}
#navbar > div:nth-child(3){
    display: none;
}
}