.el-skeleton {
    --el-skeleton-color: var(--el-color-primary-light-5) !important;
    --el-skeleton-to-color: var(--el-color-primary-light-7) !important;
}


.customCheckBoxContainer {
    width:100%;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  .customCheckBoxContainer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  .checkmark {
    position: absolute;
    top: 0;
    right: 0;
    z-index:3;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 5px;
  }
  
  /* On mouse-over, add a grey background color */
  .customCheckBoxContainer:hover input ~ .checkmark {
    background-color: #ccc;
  }
  
  /* When the checkbox is checked, add a blue background */
  .customCheckBoxContainer input:checked ~ .checkmark {
    background-color: #2196f3;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: '';
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .customCheckBoxContainer input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
  .customCheckBoxContainer .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }






/*
  .el-select {
    background-color: rgb(27, 27, 41) !important;
    width: 100% !important;
    line-height: 60px !important;
    height: 60px !important;
  }
  
  .el-input__wrapper {
    box-shadow: none !important;
  }
  
  .el-input__inner::placeholder {
    color: transparent !important;
  }
  
  .el-select .el-input.is-focus .el-input__wrapper {
    box-shadow: none !important;
  }
  
  .el-select:hover:not(.el-select--disabled) .el-input__wrapper {
    box-shadow: none !important;
  }
  
  .el-select__tags {
    padding-top: 15px !important;
  }
  
  .el-input__wrapper:hover {
    box-shadow: none !important;
  }
  
  .el-input__suffix {
    display: none !important;
  }*/