body {
    font-family: 'Roboto', sans-serif;
    overflow: hidden;
}

.ui {
    position: absolute;
    bottom: 0px;
    width: 100vw;
    height: 60px;
    background-color: whitesmoke;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .6);

    display: flex;
}

.transform-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 350px;
    height: 100%;
}

.done-container {
    display: flex;
    margin-left:auto;
    margin-right:0;
    flex-direction: row;
    align-items: center;
    width: 100px;
    height: 100%;
}

.btn {
    position: relative;
    margin: 10px;
    padding: 0;
  
    overflow: hidden;
  
    border-width: 0;
    outline: none;
    border-radius: 2px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .6);
    
    background-color: #5C427B;
    color: #ecf0f1;
    
    transition: background-color .3s;
  }
  
  .btn:hover, .btn:focus {
    background-color: #47335f;
  }
  
  .btn > * {
    position: relative;
  }
  
  .btn span {
    display: block;
    padding: 12px 24px;
  }
  
  .btn:before {
    content: "";
    
    position: absolute;
    top: 50%;
    left: 50%;
    
    display: block;
    width: 0;
    padding-top: 0;
      
    border-radius: 100%;
    
    background-color: rgba(236, 240, 241, .3);
    
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  
  .btn:active:before {
    width: 120%;
    padding-top: 120%;
    
    transition: width .2s ease-out, padding-top .2s ease-out;
  }
  
  /* Styles, not important */
  *, *:before, *:after {
    box-sizing: border-box;
  }
  
  h2 {
    font-weight: normal;
  }
  
  .btn.done {
    background-color: #5db665;
  }
  
  .btn.done:hover, .btn.done:focus {
    background-color: #4b9451;
  }

  .btn.reset {
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: #c04343;
  }
  
  .btn.reset:hover, .btn.reset:focus {
    background-color: #9c3636;
  }