@charset "UTF-8";
/**
 * Forms
 * Form controls, layouts, and styling
 */
/**
 * Design Variables
 * Szín paletta és alap definíciók
 */
.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: rgb(229.5, 229.5, 229.5);
  font-size: 1rem;
}
.form-group.required > label.control-label:after {
  content: " * kötelező";
  color: rgba(255, 99, 132, 0.9);
  font-weight: 600;
}
.form-group .help-block {
  color: rgba(255, 99, 132, 0.9);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}
.form-group .hint-block {
  color: rgb(196.35, 196.35, 196.35);
  font-size: 0.875rem;
}

.form-control,
.form-select {
  padding: 1rem;
  border: 1px solid rgba(173, 216, 230, 0.3);
  border-radius: 0.375rem;
  font-size: 1rem;
  transition: background-color, border-color 0.3s ease-in-out;
  background: rgba(255, 255, 255, 0.15);
  color: rgb(229.5, 229.5, 229.5);
  backdrop-filter: blur(5px);
  box-shadow: none !important;
}
.form-control:focus,
.form-select:focus {
  border-color: rgba(173, 216, 230, 0.7);
  outline: none;
  background: rgba(255, 255, 255, 0.2);
}
.form-control::-moz-placeholder, .form-select::-moz-placeholder {
  color: rgb(127.5, 127.5, 127.5);
}
.form-control::placeholder,
.form-select::placeholder {
  color: rgb(127.5, 127.5, 127.5);
}

.invalid-feedback,
.valid-feedback {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.9em;
}
.invalid-feedback.d-block,
.valid-feedback.d-block {
  display: block !important;
}

.invalid-feedback {
  color: rgba(255, 99, 132, 0.9);
}

.valid-feedback {
  color: rgba(75, 192, 192, 0.9);
}

.form-control.is-invalid {
  border-color: rgba(255, 99, 132, 0.7);
}
.form-control.is-invalid:focus {
  border-color: rgba(255, 99, 132, 0.7);
}
.form-control.is-valid {
  border-color: rgba(75, 192, 192, 0.7);
}
.form-control.is-valid:focus {
  border-color: rgba(75, 192, 192, 0.7);
}

.form-check {
  margin-bottom: 1rem;
  text-align: left;
}
.form-check .form-check-input {
  margin-top: 0.3em;
  width: 1.25em;
  height: 1.25em;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(173, 216, 230, 0.3);
}
.form-check .form-check-input:checked {
  background-color: rgba(173, 216, 230, 0.6);
  border-color: rgba(173, 216, 230, 0.7);
}
.form-check .form-check-input:focus {
  border-color: rgba(173, 216, 230, 0.7);
  box-shadow: 0 0 0 0.2rem rgba(173, 216, 230, 0.25);
}
.form-check .form-check-label {
  color: rgb(229.5, 229.5, 229.5);
  font-size: 1rem;
  margin-left: 0.5rem;
  cursor: pointer;
}

button,
.btn {
  font-weight: 600;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: box-shadow background-color 0.3s ease-in-out;
  font-size: 1rem;
}
button:hover,
.btn:hover {
  box-shadow: 0 0 8px #303030;
}
button:active,
.btn:active {
  transform: translateY(0);
}
button:disabled,
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
button:disabled:hover,
.btn:disabled:hover {
  transform: none;
  box-shadow: none;
}

.form-control:focus,
.form-select:focus {
  box-shadow: 0 0 0 0.2rem rgba(218, 227, 236, 0.25);
}

.btn-primary {
  background-color: rgba(173, 216, 230, 0.7);
  color: #181818;
  border: 1px solid rgba(173, 216, 230, 0.8);
}
.btn-primary:hover {
  background-color: rgba(173, 216, 230, 0.9);
  border-color: rgba(173, 216, 230, 0.9);
  color: inherit;
}
.btn-primary:active {
  background-color: rgba(173, 216, 230, 0.85);
  border-color: rgba(173, 216, 230, 0.85);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgb(229.5, 229.5, 229.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}
.btn-secondary:active {
  background-color: rgba(255, 255, 255, 0.12);
}

.form-text {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #999999;
}

.helper-text {
  font-size: 0.9em;
  color: rgb(196.35, 196.35, 196.35);
  line-height: 1.6;
  margin: 1.5rem 0;
}

.text-muted {
  color: #999999;
}

a {
  color: rgba(173, 216, 230, 0.9);
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
a:hover {
  color: #ADD8E6;
  text-decoration: underline;
}

.alert {
  padding: 1rem;
  border-radius: 0.375rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(5px);
}
.alert.alert-success {
  background: rgba(75, 192, 192, 0.2);
  border: 1px solid rgba(75, 192, 192, 0.5);
  color: rgba(75, 255, 192, 0.95);
}
.alert.alert-danger {
  background: rgba(255, 99, 132, 0.2);
  border: 1px solid rgba(255, 99, 132, 0.5);
  color: rgba(255, 150, 170, 0.95);
}
.alert.alert-info {
  background: rgba(173, 216, 230, 0.2);
  border: 1px solid rgba(173, 216, 230, 0.5);
  color: rgba(173, 216, 230, 0.95);
}
.alert.alert-warning {
  background: rgba(255, 193, 7, 0.2);
  border: 1px solid rgba(255, 193, 7, 0.5);
  color: rgba(255, 220, 100, 0.95);
}
.alert .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
  opacity: 0.7;
}
.alert .btn-close:hover {
  opacity: 1;
}

.select2-container--bootstrap {
  width: 100% !important;
}
.select2-container--bootstrap .select2-selection {
  padding: 1rem;
  border: 1px solid rgba(173, 216, 230, 0.3);
  border-radius: 0.375rem;
  font-size: 1rem;
  transition: background-color, border-color 0.3s ease-in-out;
  background: rgba(255, 255, 255, 0.15) !important;
  color: rgb(229.5, 229.5, 229.5);
  box-shadow: none !important;
  min-height: 2.5rem;
  height: auto;
  padding: 0.5rem 0.25rem;
}
.select2-container--bootstrap .select2-selection:focus, .select2-container--bootstrap .select2-selection:focus-within {
  border-color: rgba(173, 216, 230, 0.7) !important;
  outline: none;
  background: rgba(255, 255, 255, 0.2) !important;
}
.select2-container--bootstrap .select2-selection .select2-selection__rendered {
  color: rgb(229.5, 229.5, 229.5);
  padding: 0.25rem 0;
  line-height: 2;
}
.select2-container--bootstrap .select2-selection .select2-selection__placeholder {
  color: rgb(127.5, 127.5, 127.5);
  padding: 0;
}
.select2-container--bootstrap .select2-selection .select2-selection__arrow {
  height: 100%;
  top: 0;
  right: 0.5rem;
  width: auto;
  padding: 0;
}
.select2-container--bootstrap .select2-selection .select2-selection__arrow b {
  border-color: rgb(229.5, 229.5, 229.5) transparent transparent transparent;
}
.select2-container--bootstrap .select2-selection .select2-selection__clear {
  color: rgb(196.35, 196.35, 196.35);
  margin-right: 0.5rem;
  margin-left: 0.5rem;
  padding: 0;
}
.select2-container--bootstrap .select2-selection .select2-selection__clear:hover {
  color: rgb(229.5, 229.5, 229.5);
}
.select2-container--bootstrap.select2-container--focus .select2-selection {
  border-color: rgba(173, 216, 230, 0.7) !important;
  background: rgba(255, 255, 255, 0.2) !important;
}

.select2-dropdown {
  background: #5a6268;
  border: 1px solid rgba(173, 216, 230, 0.3);
  border-radius: 0.375rem;
}
.select2-dropdown .select2-search__field {
  padding: 0.5rem;
  border: 1px solid rgba(173, 216, 230, 0.3);
  border-radius: 0.375rem;
  background: rgba(8, 8, 8, 0.3);
  color: rgb(229.5, 229.5, 229.5);
}
.select2-dropdown .select2-search__field:focus {
  outline: none;
  border-color: rgba(173, 216, 230, 0.7);
}
.select2-dropdown .select2-search__field::-moz-placeholder {
  color: rgb(127.5, 127.5, 127.5);
}
.select2-dropdown .select2-search__field::placeholder {
  color: rgb(127.5, 127.5, 127.5);
}
.select2-dropdown .select2-results__option {
  padding: 0.5rem 0.1em;
  color: rgb(229.5, 229.5, 229.5);
}
.select2-dropdown .select2-results__option[aria-selected=true] {
  background: rgba(173, 216, 230, 0);
  color: rgb(229.5, 229.5, 229.5);
}
.select2-dropdown .select2-results__option--highlighted {
  background: rgba(173, 216, 230, 0.2) !important;
  color: rgb(229.5, 229.5, 229.5) !important;
}
.select2-dropdown .select2-results__message {
  color: rgb(196.35, 196.35, 196.35);
}

.select2-container--bootstrap .select2-selection--multiple {
  padding: 0.5rem !important;
  min-height: 2rem;
}
.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice {
  background: rgba(173, 216, 230, 0.4);
  border: 1px solid rgba(173, 216, 230, 0.3);
  color: rgb(229.5, 229.5, 229.5);
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  margin: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.6;
}
.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove {
  color: rgb(196.35, 196.35, 196.35);
  margin-right: 0.25rem;
  padding-right: 0.25rem;
}
.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove:hover {
  color: rgb(229.5, 229.5, 229.5);
}
.select2-container--bootstrap .select2-selection--multiple .select2-search__field {
  padding: 0.25rem 0.5rem !important;
  margin: 0 !important;
  min-height: 1.8rem;
}

.grid-view .table thead .select2-selection {
  min-height: 1.5rem;
  padding: 0.2rem 0.4rem;
}
.grid-view .table thead .select2-selection .select2-selection__rendered {
  line-height: 1.5rem;
}
.grid-view .table thead .select2-selection__rendered {
  padding: 0;
}
.grid-view .table thead .select2-selection__arrow {
  right: 0.35rem;
}

.file-upload-container .drop-area {
  border: 2px dashed rgba(173, 216, 230, 0.3);
  background: rgba(255, 255, 255, 0.15);
  transition: opacity 0.3s ease-in-out;
  cursor: pointer;
}
.file-upload-container .drop-area.drag-over {
  border-color: #0d6efd;
  background: rgba(13, 110, 253, 0.05);
}
.file-upload-container .drop-area.drag-over i {
  transform: scale(1.1);
  color: #0d6efd !important;
}
.file-upload-container .drop-area.file-selected {
  border-color: #28a745;
  background: rgba(40, 167, 69, 0.05);
}
.file-upload-container .drop-area.file-selected i {
  color: #28a745 !important;
}
.file-upload-container .drop-area.file-error {
  border-color: #dc3545;
  background: rgba(220, 53, 69, 0.05);
}
.file-upload-container .drop-area.file-error i {
  color: #dc3545 !important;
}
.file-upload-container .drop-area p {
  margin: 0;
}
.file-upload-container .file-info {
  position: relative;
}
.file-upload-container .file-separator {
  max-width: 600px;
  margin: auto;
}
.file-upload-container .btn-close-file {
  position: absolute;
  top: 0;
  right: 0;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: rgb(196.35, 196.35, 196.35);
  transition: color 0.3s ease-in-out;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
}
.file-upload-container .btn-close-file:hover {
  color: #dc3545;
}
.file-upload-container .btn-close-file i {
  margin: 0;
}
.file-upload-container .file-input {
  display: none;
}/*# sourceMappingURL=forms.css.map */