#store_pickup_selected .errorsmall{
    position:relative;
    padding-left:15px;
    margin-top:5px
}

#store_pickup_selected .errorsmall:before{
    font-family:'Font Awesome 5 Free';
    font-weight:900;
    content: "\f077";
    position:absolute;
    left:0;
    top:50%;
    width:20px;
    height:20px;
    margin-top:-10px;
    animation: checkout_arrowup .5s alternate infinite;
}

@keyframes checkout_arrowup {
    0% { transform: translateY(0); }
    100% { transform: translateY(20%); }
}

#store_pickup_selected select{
    width:100%;
}

#pickup_waitstore{
    padding:10px;
    background:#FF0000;
    color:#FFF;
    margin-bottom:10px;
    animation: waitstore_flash .7s alternate infinite;
}

@keyframes waitstore_flash {
    0% { opacity:0.3 }
    100% { opacity:1 }
}
