body {
  color: #484848;
  ::-webkit-scrollbar {
    display: none;
  }
}

/* 커스텀 체크박스,라디오 버튼 */

.custom-checkbox {
  -webkit-appearance: none;
  position: relative;
  cursor: pointer;
  outline: none !important;
  border: 2px solid #c6c6c6;
  border-radius: 2px;
  background: #fff;
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.custom-checkbox::before {
  content: 'v';
  position: absolute;
  top: 50%;
  left: 50%;
  overflow: hidden;
  transform: scale(0) translate(-50%, -50%);
  line-height: 1;
}

.custom-checkbox:checked {
  background-color: #7100e2;
  border-color: #7100e2;
  color: white;
  zoom: 1.45;
}

.custom-checkbox:checked::before {
  border-radius: 2px;
  transform: scale(1) translate(-50%, -50%);
}

.css-wphp2i-MuiButtonBase-root-MuiButton-root {
  box-shadow: none;
}

.css-6hp17o-MuiList-root-MuiMenu-list {
  padding: 0;
  top: 10;
}
