/**
 * SGD Konfi Bus - Frontend Styles
 * 
 * Features:
 * - Responsive Grid (1-3 Spalten)
 * - Mobile-First
 * - Accessibility (Focus States, ARIA)
 * - Error/Success States
 * - Loading States
 * - Multistep Progress Bar
 */

/* ==========================================
   BASE STYLES
   ========================================== */

   .sgd-konfi-bus-form-wrapper {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0px;
}

.sgd-konfi-bus-form {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* ==========================================
   SUCCESS MODAL
   ========================================== */

.sgd-success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.sgd-success-modal-content {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: sgd-modal-fade-in 0.3s ease-out;
    margin-top:-200px;
}

@keyframes sgd-modal-fade-in {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.sgd-success-modal-header {
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid #e0e0e0;
	position:relative;
}

.sgd-success-modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.sgd-success-modal-body {
    padding: 1.5rem;
}

.sgd-success-message {
    margin: 0;
    color: #374151;
    line-height: 1.6;
}

.sgd-success-modal-footer {
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid #e0e0e0;
    text-align: right;
}

.sgd-success-modal-close {
	position: absolute;
    right: 10px;
    top:8px;
    background: #f3f4f6;
    border: none;
    font-size: 22px;
    color: #6b7280;
    cursor: pointer;
    padding: 0;
    width: 27px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.sgd-success-modal-close:hover {
  background: #bd1d1d;
  color: #fff;
}

.sgd-success-btn-close:focus {
    outline: opx;
    outline-offset: 2px;
}

.sgd-success-modal-btn {
  background: #4AA7AD;
  color: #fff;
  border: 2px solid #4AA7AD;
  padding: 8px 10px;
  font-size: 16px;
  border-radius: 3px;
}

.sgd-success-modal-btn:hover {
    background: #52BFC6;
}


/* ==========================================
   DROPZONE MODAL
   ========================================== */

.sgd-dropzone-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;  
}

.sgd-dropzone-modal-content {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: sgd-modal-fade-in 0.3s ease-out;
	margin-top: -175px;
}

.sgd-dropzone-modal-header {
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sgd-dropzone-modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.sgd-dropzone-modal-close {
    background: #f3f4f6;
    border: none;
    font-size: 22px;
    color: #6b7280;
    cursor: pointer;
    padding: 0;
    width: 27px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.sgd-dropzone-modal-close:hover {
  background: #bd1d1d;
  color: #fff;
}

.sgd-dropzone-modal-body {
    padding: 1.5rem;
}

.sgd-dropzone {
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    background: #f9fafb;
    transition: border-color 0.2s ease;
}

.sgd-dropzone:hover {
    border-color: #9ca3af;
}

.sgd-dropzone.dz-drag-hover {
    border-color: #3b82f6;
    background: #eff6ff;
}

.sgd-dropzone-message {
    pointer-events: none;
}

.sgd-dropzone-message p {
    pointer-events: none;
}

.sgd-dropzone-files-list {
    margin-top: 1rem;
}

/* Dropzone Thumbnails verstecken für bessere Mobile UX */
.sgd-dropzone-previews {
    display: none !important;
}

/* WICHTIG: Alle Dropzone-Previews komplett ausschalten */
.dz-preview,
.dz-preview.dz-file-preview,
.dz-preview.dz-image-preview,
.dz-preview.dz-processing,
.dz-preview.dz-success,
.dz-preview.dz-complete,
.sgd-dropzone .dz-preview,
.sgd-dropzone-previews .dz-preview,
.sgd-dropzone-previews .dz-image,
.sgd-dropzone-previews .dz-image-preview {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}
.sgd-dropzone-file-item {
    display: flex;
    flex-direction: column;
    padding: 0.75rem;
    background: #f3f4f6;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    position: relative;
}

.sgd-dropzone-file-name {
    font-weight: 500;
    color: #296476;
    margin-bottom: 0.25rem;
    padding-right: 2rem; /* Platz für Remove-Button */
}

.sgd-dropzone-file-details {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.sgd-dropzone-file-size {
    color: #87888a;
}

.sgd-dropzone-file-status.upload-success {
  color: #fff;
  font-weight: 500;
  background: #1dbcc3;
  width: 23px;
  height: 23px;
  border-radius: 100%;
  text-align: center;
}

.sgd-dropzone-file-status.upload-error {
    color: #dc2626;
}

.sgd-dropzone-file-status.upload-progress {
    color: #d97706;
}

.sgd-dropzone-file-progress {
    width: 100%;
    height: 4px;
    background: #d7d7d7;
    border-radius: 2px;
    margin-top: 0.5rem;
    overflow: hidden;
}

.sgd-dropzone-file-progress-bar {
    height: 100%;
    background: #4AA7AD;
    border-radius: 2px;
    transition: width 0.3s ease;
    width: 0%;
}

.sgd-dropzone-file-remove {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: #b81b1b;
  color: #fff;
  border: none;
  border-radius: 15px;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 26px;
  text-align:center;
  transition: background-color 0.2s ease;
}

.sgd-dropzone-file-remove:hover {
    background: #dc2626;
}

.sgd-dropzone-modal-footer {
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

.sgd-dropzone-btn-cancel,
.sgd-dropzone-btn-confirm {
    padding: 8px 10px;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border: none;
}

.sgd-dropzone-btn-cancel {
    background: #6b7280;
    color: #fff;
}

.sgd-dropzone-btn-cancel:hover {
    background: #4b5563;
}

.sgd-dropzone-btn-confirm {
    background: #4AA7AD;
    color: #fff;
}

.sgd-dropzone-btn-confirm:hover {
    background: #52BFC6;
}

/* ==========================================
   FILE UPLOAD BUTTON
   ========================================== */

.sgd-konfi-bus-file-upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 10px;
    background: #f3f4f6;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    color: #374151;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    justify-content: center;
}
:where(.wp-site-blocks :focus) {
  outline-width: 0px !important;
}
.sgd-konfi-bus-file-upload-btn:hover {
    background: #e5e7eb;
    border-color: #9ca3af;
}

.sgd-konfi-bus-file-icon {
    font-size: 1.25rem;
    display: none; /* Klammer-Symbole entfernen */
}

.sgd-konfi-bus-selected-files {
    margin-top: 0.75rem;
}

.sgd-upload-summary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 6px;
    color: #0c4a6e;
    font-weight: 500;
}

.sgd-upload-icon {
    font-size: 1.25rem;
}

.sgd-upload-text {
    font-size: 0.9rem;
}

/* ==========================================
   MESSAGES
   ========================================== */

.sgd-konfi-bus-messages {
    margin: 1rem 0;
}

.sgd-konfi-bus-error,
.sgd-konfi-bus-warning,
.sgd-konfi-bus-success {
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    border-left: 4px solid;
}

.sgd-konfi-bus-error {
    background: #ffe5e5;
    border-color: #d63638;
    color: #d63638;
}

.sgd-konfi-bus-warning {
    background: #fff8e5;
    border-color: #f0b429;
    color: #8f6c00;
}

.sgd-konfi-bus-success {
    background: #e5f5e5;
    border-color: #00a32a;
    color: #00a32a;
}

/* ==========================================
   ROWS & COLUMNS (RESPONSIVE GRID)
   ========================================== */

.sgd-konfi-bus-row {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/* 1 Spalte (Mobile Default) */
.sgd-konfi-bus-row {
    grid-template-columns: 1fr;
}

/* 2 Spalten (ab Tablet) */
@media (min-width: 768px) {
    .sgd-konfi-bus-cols-2,
    .sgd-konfi-bus-cols-2.sgd-konfi-bus-step {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sgd-konfi-bus-cols-3,
	.sgd-konfi-bus-cols-3.sgd-konfi-bus-step {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 3 Spalten (ab Desktop) */
@media (min-width: 1024px) {
    .sgd-konfi-bus-cols-3,
    .sgd-konfi-bus-cols-3.sgd-konfi-bus-step {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================
   FIELDS (BASE)
   ========================================== */

.sgd-konfi-bus-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
   margin-top:10px;
}
.sgd-konfi-bus-label {
  margin-bottom: 0px;
  height: 20px;
}
.sgd-konfi-bus-label {
   font-weight: 600;
   font-size: 13px;
   margin-bottom: -3px;
   color: #00375A;
}

.sgd-konfi-bus-required {
    color: #d63638;
    margin-left: 0.25rem;
}

/* ==========================================
   CUSTOM SELECT DROPDOWN (STYLABLE)
   ========================================== */

.sgd-custom-select {
    position: relative;
    width: 100%;
}

.sgd-custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s,box-shadow 0.2s;
  user-select: none;
}

.sgd-custom-select-trigger:hover {
    border-color: #3D9297;
}

.sgd-custom-select-trigger:focus {
    outline: none;
    border-color: #3D9297;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}

.sgd-custom-select.open .sgd-custom-select-trigger {
    border-color: #3D9297;
    box-shadow:  0 0 0 1px rgba(9, 175, 175, 0.1);
}

.sgd-custom-select-value {
    flex: 1;
    color: #00375A;
}

.sgd-custom-select-arrow {
    margin-left: 0.5rem;
    font-size: 0.75rem;
    color: #666;
    transition: transform 0.2s;
}

.sgd-custom-select.open .sgd-custom-select-arrow {
    transform: rotate(180deg);
}

.sgd-custom-select-options {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    max-height: 150px;
    overflow-y: auto;
    z-index: 1000;
}

.sgd-custom-select-option {
    padding: 0.75rem;
    cursor: pointer;
    transition: background 0.15s;
    color: #00375A;
}

.sgd-custom-select-option:hover {
    background: #f0f0f0;
}

.sgd-custom-select-option.selected {
    background: #4AA7AD;
    color: #F1F3F4;
    font-weight: 600;
}

.sgd-custom-select-option.selected:hover {
    background: #3D9297;
}

/* Error State */
.sgd-konfi-bus-field.has-error .sgd-custom-select-trigger,
.sgd-custom-select.has-error .sgd-custom-select-trigger {
    border-color: #d63638;
    background-color: #fff8f8;
}

.sgd-konfi-bus-field.has-error .sgd-custom-select-trigger:focus,
.sgd-custom-select.has-error .sgd-custom-select-trigger:focus {
    box-shadow: 0 0 0 3px rgba(214, 54, 56, 0.1);
}

/* ==========================================
   INPUT FIELDS (LEGACY)
   ========================================== */

#sgd-konfi-bus-form .sgd-konfi-bus-input.form-control,
#sgd-konfi-bus-form .sgd-konfi-bus-textarea.form-control,
#sgd-konfi-bus-form .sgd-konfi-bus-select.form-control {
    width: auto;
    max-width:100%;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}

#sgd-konfi-bus-form .sgd-konfi-bus-input.form-control:focus,
#sgd-konfi-bus-form .sgd-konfi-bus-textarea.form-control:focus,
#sgd-konfi-bus-form .sgd-konfi-bus-select.form-control:focus {
    outline: none;
    border-color: #4AA7AD;
    box-shadow: 0 0 0 1px rgba(0, 170, 170, 0.1);
}

.sgd-konfi-bus-textarea {
    resize: vertical;
    min-height: 100px;
}

#sgd-konfi-bus-form input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
  accent-color: #4AA7AD;
}

/* Error State */
.sgd-konfi-bus-field.has-error .sgd-konfi-bus-input.form-control,
.sgd-konfi-bus-field.has-error .sgd-konfi-bus-textarea.form-control,
.sgd-konfi-bus-field.has-error .sgd-konfi-bus-select.form-control {
    border-color: #d63638;
}

.sgd-konfi-bus-field-error {
    color: #fff;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: #d63638;
    border: 1px solid #d63638;
    border-radius: 4px;
    position: relative;
    box-shadow: 0 2px 8px rgba(214, 54, 56, 0.15);
}

.sgd-konfi-bus-field-error:before {
    content: '';
    position: absolute;
    top: -6px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #d63638;
}

.sgd-konfi-bus-field-error:after {
    content: '';
    position: absolute;
    top: -5px;
    left: 21px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #d63638;
}

/* ==========================================
   CHECKBOX & RADIO
   ========================================== */

.sgd-konfi-bus-checkbox-label,
.sgd-konfi-bus-radio-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.5rem 0;
}

.sgd-konfi-bus-checkbox-input,
.sgd-konfi-bus-radio-input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
}

.sgd-konfi-bus-checkbox-text,
.sgd-konfi-bus-radio-text {
    flex: 1;
    color:#00375A;
}
.sgd-konfi-bus-checkbox-text,
.sgd-konfi-bus-checkbox-text a{
  font-size: 14px;
}
.sgd-konfi-bus-radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* ==========================================
   FILE UPLOAD
   ========================================== */

.sgd-konfi-bus-file-upload-wrapper {
    position: relative;
}

.sgd-konfi-bus-file-input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    overflow: hidden;
}

.sgd-konfi-bus-file-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #f0f0f0;
    border: 2px dashed #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.sgd-konfi-bus-file-label:hover {
    background: #e5e5e5;
    border-color: #0073aa;
}

.sgd-konfi-bus-file-icon {
    font-size: 1.25rem;
    display: none; /* Klammer-Symbole entfernen */
}

.sgd-konfi-bus-file-name {
    display: inline-block;
    margin-left: 0.5rem;
    color: #666;
    font-size: 0.875rem;
}

.sgd-konfi-bus-file-info {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #666;
}

/* ==========================================
   BUTTONS
   ========================================== */

.sgd-konfi-bus-btn {
    padding: 0.875rem 2rem;
    color: #fff;
    border:2px solid;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}


.sgd-konfi-bus-btn:active:not(:disabled) {
    transform: translateY(1px);
}

.sgd-konfi-bus-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.sgd-konfi-bus-btn-submit {
    width: 100%;
    margin-top: 1rem;
}

/* Loading Spinner */
.sgd-konfi-bus-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: sgd-spin 0.8s linear infinite;
}

@keyframes sgd-spin {
    to { transform: rotate(360deg); }
}

/* ==========================================
   MULTISTEP
   ========================================== */

/* Step Container */
.sgd-konfi-bus-step-hidden {
    display: none !important;
}

/* Progress Bar */
.sgd-konfi-bus-progress {
    margin-bottom: 2rem;
}

.sgd-konfi-bus-progress-bar {
    height: 8px;
    background: #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.sgd-konfi-bus-progress-fill {
    height: 100%;
    background: #4AA7AD;
    transition: width 0.3s ease;
}

.sgd-konfi-bus-progress-steps {
    display: flex;
    justify-content: space-between;
}

.sgd-konfi-bus-progress-step {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e5e5e5;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s;
}

.sgd-konfi-bus-progress-step.active {
    background: #3D9297;
    color: #fff;
    transform: scale(1.15);
}

.sgd-konfi-bus-progress-step.completed {
  background: #004b69;
  color: #fff;
  text-indent:-999px;
  position:relative;
  overflow:hidden;
}
.sgd-konfi-bus-progress-step.completed:after {
  content: "\f147";
  display: block;
  font-size: 20px;
  position: absolute;
  z-index: 9999;
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="UTF-8" standalone="no"%3F><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 448 512" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;"><path d="M438.6,105.4C451.1,117.9 451.1,138.2 438.6,150.7L182.6,406.7C170.1,419.2 149.8,419.2 137.3,406.7L9.3,278.7C-3.2,266.2 -3.2,245.9 9.3,233.4C21.8,220.9 42.1,220.9 54.6,233.4L160,338.7L393.4,105.4C405.9,92.9 426.2,92.9 438.7,105.4L438.6,105.4Z" style="fill:white;fill-rule:nonzero;"/></svg>');
  background-repeat:no-repeat;
  background-size:contain;
  background-position:center center;
  margin-left: 3px;
  color: #fff;
  width: 15px;
  height: 15px;
}

/* Step Navigation */
.sgd-konfi-bus-step-nav {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.sgd-konfi-bus-btn-prev {
    background: #f0f0f0;
    color: #23282d;
}

.sgd-konfi-bus-btn-prev:hover:not(:disabled) {
    background: #e5e5e5;
}

.sgd-konfi-bus-btn-next {
  margin-left: auto;
  background: #4AA7AD;
}

/* ==========================================
   HONEYPOT (versteckt)
   ========================================== */

.sgd-konfi-bus-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

/* ==========================================
   CAPTCHA
   ========================================== */

.sgd-konfi-bus-captcha-placeholder {
    padding: 1rem;
    background: #fff8e5;
    border: 1px solid #f0b429;
    border-radius: 4px;
    color: #8f6c00;
}

/* ==========================================
   ACCESSIBILITY
   ========================================== */

/* Focus Visible (moderne Browser) */
*:focus-visible {
    outline: 2px solid #0073aa;
    outline-offset: 2px;
}

/* Screen Reader Only */
.sgd-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================
   RESPONSIVE ADJUSTMENTS
   ========================================== */

@media (max-width: 767px) {
    .sgd-konfi-bus-form {
        padding: 1.5rem;
    }
    
    .sgd-konfi-bus-btn {
        padding: 0.75rem 1.5rem;
    }
    
    .sgd-konfi-bus-step-nav {
        flex-direction: column;
    }
    
    .sgd-konfi-bus-btn-next {
        margin-left: 0;
    }
}

/* ==========================================
   DATE INPUT - BROWSER KALENDER VERSTECKEN
   ========================================== */

.sgd-konfi-bus-date-input::-webkit-calendar-picker-indicator {
    display: none;
}

.sgd-konfi-bus-date-input::-webkit-inner-spin-button,
.sgd-konfi-bus-date-input::-webkit-outer-spin-button {
    display: none;
}

.sgd-konfi-bus-date-input::-webkit-input-placeholder {
    color: #999;
}

.sgd-konfi-bus-date-input::-moz-placeholder {
    color: #999;
}

.sgd-konfi-bus-date-input:-ms-input-placeholder {
    color: #999;
}
