body {
  background: #999;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  height: 100vh;
  width: 100vw;
  background-image: radial-gradient(circle, #E9E2D8, #AEA59D);
}

.cup {
  --rx-x: 0;
  --rx-y: 0;
  --rx-deg: 1;
  position: relative;
  width: 30vmin;
  height: 30vmin;
  background: #6E5443;
  border: 2vmin solid #fff;
  border-radius: 50%;
  box-shadow: inset calc(var(--rx-x) * 1px) calc(var(--rx-y) * 1px) 5px -5px rgba(0, 0, 0, 0.5), calc(var(--rx-x) * 1px) calc(var(--rx-y) * 1px) 30px -10px rgba(0, 0, 0, 0.5);
  background-image: -webkit-gradient(linear, left top, left bottom, from(calc(var(--rx-deg) * 1deg)), color-stop(25%, transparent), color-stop(50%, #6E5443)), radial-gradient(rgba(255, 255, 255, 0.4) 60%, transparent 65%), -webkit-gradient(linear, left top, left bottom, from(#6E5443), to(#6E5443));
  background-image: linear-gradient(calc(var(--rx-deg) * 1deg), transparent 25%, #6E5443 50%), radial-gradient(rgba(255, 255, 255, 0.4) 60%, transparent 65%), linear-gradient(#6E5443, #6E5443);
  background-position: 0 0, 0 0, 0 0;
}
.cup:after {
  position: absolute;
  top: 50%;
  left: 100%;
  z-index: 1;
  height: 15%;
  width: 30%;
  content: "";
  border-radius: 1vmin;
  background: #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.cup:before {
  content: "";
  position: absolute;
  box-sizing: border-box;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  z-index: -2;
  border-radius: 50%;
  border: 2vmin solid #fff;
  background: #F0B63D;
  box-shadow: inset calc(var(--rx-x) * 1px) calc(var(--rx-y) * 1px) 5px -5px rgba(0, 0, 0, 0.5), calc(var(--rx-x) * 1px) calc(var(--rx-y) * 1px) 20px -10px rgba(0, 0, 0, 0.5);
}