@import url("https://fonts.googleapis.com/css?family=Tajawal");
html, body {
  background-color: #282F38;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: Tajawal, serif; }

.coffeeType {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 400px;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s; }
  .coffeeType:hover {
    background-color: rgba(255, 255, 255, 0.05); }
  .coffeeType.showMode label, .coffeeType.showMode input, .coffeeType.showMode select {
    display: none; }
  .coffeeType.favorite:before {
    content: 'BEST';
    color: #ff5e5e;
    border: 5px solid;
    padding: 5px 3px;
    font-size: 30px;
    line-height: 0.9;
    position: absolute;
    -webkit-transform: translateX(-70px) rotate(-20deg);
    -ms-transform: translateX(-70px) rotate(-20deg);
    transform: translateX(-70px) rotate(-20deg); }

.num {
  font-size: 60px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: bold;
  margin-right: 30px; }

.cupContainer {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2; }

.control {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1; }

.cup {
  width: 70px;
  height: 50px;
  border: 4px solid white;
  border-top: none;
  border-radius: 0px 0px 50px 50px;
  margin: 10px;
  margin-right: 50px;
  padding-top: 5px;
  position: relative; }
  .cup:before {
    width: 15px;
    height: 20px;
    content: '';
    display: block;
    position: absolute;
    left: 100%;
    top: 40%;
    border: 4px solid white;
    border-left: none;
    border-radius: 0px 50px 50px 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }
  .cup.mock {
    width: 60px;
    height: 90px;
    border-radius: 0px; }
    .cup.mock .ingradients {
      border-radius: 0px; }
  .cup.small {
    width: 50px;
    height: 40px; }
  .cup.big {
    width: 80px;
    height: 50px; }
  .cup .ingradients {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 0 0 50px 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse; }
  .cup .coffee, .cup .milk, .cup .water, .cup .bubble {
    background-color: #fff;
    height: 10px; }
  .cup .coffee {
    background-color: #66491A; }
  .cup .milk {
    background-color: #f7d8bb; }
  .cup .water {
    background-color: #589bce; }
  .cup .bubble {
    background-color: #eee; }

.hiddenControl {
  position: fixed;
  right: 10px;
  top: 10px; }
