* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
#cart_Message_Box{
  display:none;
}
#cart_Message {
  position: absolute;
  right: 0;
  top: 60px;
  max-width: 500px;
  width:100%;
  text-align:center;
  white-space: normal;
}
#cart_Message p {
  width:100%;
  color: #fff;
  background: #eb5505;
  font-size: 16px;
  padding: 10px 20px;
}
.cart_Message_arrow {
  border-color: transparent transparent #eb5505 transparent;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px;
  position: absolute;
  top: -25px;
  right: 17px;
}
@media (max-width: 979px){
  .cart_Message_arrow {
    right: 11px;
  }
}
@media (max-width: 499px){
  #cart_Message p {
    font-size: 14px;
    padding: 10px 15px;
  }
}
@media (max-width: 349px){
  #cart_Message p {
    font-size: 12px;
  }
}
.cart_message_fadeout {
  animation : fadeOut 0.7s;
  animation-fill-mode: both;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
