@charset "UTF-8";
/*
* Copyright (c) 2023 EVERONESOFT. All rights reserved.
* 
* This software is the confidential and proprietary information of EVERONESOFT.
* You shall not disclose such Confidential Information and shall use it only in
* accordance with the terms of the license agreement you entered into with EVERONESOFT.
* 
* 본 소스는 (주)에버원소프트의 자산입니다, 
* 무단 복제 배포시 정보통신법에 의해 제제를 받을수 있습니다.
* 
* file path : public\css\cupid-lms.css
* author : yoonn
* date : 2024.05.10
* version : 1.0
* desc : lms app custom css
*/

/* ------- choice.js CSS START ------- */
.choices::after {
  top: 55% !important;
}
/* focus시 border color */
.choices.is-focused[data-type*=select-one] .choices__inner, .choices.is-focused[data-type*=select-multiple] .choices__inner {
  border-color: #066ac9 !important;
}
/* bootstrap input 높이랑 맞추기 */
.choices .choices__inner{
  padding: 0.4rem 2.25rem 0.4rem 1rem !important;
}
.choices .choices__list {
  white-space: nowrap;
}
/* formCmp disabled */
.form-control:disabled {
  background-color: #eaeaea !important;
  border: 1px solid var(--bs-gray-300) !important;
  opacity: 1 !important;
}
/* disabled인경우 background 우선처리 */
.formInput .choices.is-disabled .choices__inner,
.formInput.required .choices.is-disabled .choices__inner{
  background-color: #eaeaea !important;
}
.formInput.required input[type=text]:disabled,
.formInput.required input[type=password]:disabled,
.formInput.required textarea:disabled {
  background-color: #eaeaea !important;
}
.choices[data-type*=select-one]:after {
  margin-top: 0 !important;
}
/* ------- choice.js CSS END ------- */
