.ccs-drawer {
  display: flex;
  flex-direction: column;

  &-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px 12px 0;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
  }

  &-content {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
  }

  &-buttons {
    z-index: 99;
    flex: 0 0 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    background: #fff;
    box-shadow: 0 -2px 4px 0 rgba(0, 0, 0, 0.05);
    opacity: 1;
  }
}

.dark-theme {
  .ccs-drawer {
    &-title {
      border-bottom: 1px solid @dark-border-color;
    }

    &-buttons {
      background: #1f1f1f;
      box-shadow: 0 -2px 4px 0 rgba(0, 0, 0, 0.6);
    }
  }
}
