.cc {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  padding: 30px 0 0;
  text-align: center;
  transition: all .3s cubic-bezier(0.175, 0.885, 0.595, 1.650);
  background-color: #fddd9b;

  &.empty {
    opacity: 0;
    transform: translate(0, 80px);
  }

  .desc {
    margin-bottom: 30px;
    color: darken(#d17700, 10%);
  }

  .sels {
    display: flex;
    padding: 0 20px;
    .sel {
      background-color: #d17700;
      color: white;
      flex: 1;
      margin: 0 20px 30px;
      padding: 15px;
      border-radius: 15px 40px;
      cursor: pointer;
    }
  }
}