* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-size: 14px;
}

.general-card {
  position: relative;
  border: none;
  border-radius: 4px;
  transition: box-shadow 0.2s cubic-bezier(0, 0, 1, 1);

  .card-head {
    height: auto;
    padding: 20px;
    color: #333;
    font-size: 16px;
    border: none;
  }
}

::-webkit-scrollbar-track {
  background: transparent !important;
}
