/**
 * Campaign Engine V6.3 - Multi-Step Forms Frontend CSS
 * 
 * Styles for wizard-style forms with progress indicators.
 * Supports: default, minimal, dark variants.
 */

/* ==========================================================================
   Progress Bar
   ========================================================================== */

.ce-msf-progress {
    margin-bottom: 32px;
}

.ce-msf-progress__bar {
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 16px;
}

.ce-msf-progress__fill {
    height: 100%;
    background: var(--brand-primary, #4F46E5);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.ce-msf-progress__steps {
    display: flex;
    justify-content: space-between;
}

.ce-msf-progress__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
}

.ce-msf-progress__dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

.ce-msf-progress__step.is-active .ce-msf-progress__dot,
.ce-msf-progress__step.is-complete .ce-msf-progress__dot {
    background: var(--brand-primary, #4F46E5);
    color: var(--brand-text, #1a1a1a);
}

.ce-msf-progress__step.is-complete .ce-msf-progress__dot::after {
    content: '✓';
}

.ce-msf-progress__label {
    font-size: 12px;
    color: #6b7280;
    text-align: center;
    max-width: 80px;
    line-height: 1.3;
}

.ce-msf-progress__step.is-active .ce-msf-progress__label {
    color: var(--brand-text, #1a1a1a);
    font-weight: 600;
}

/* Hide labels on mobile */
@media (max-width: 480px) {
    .ce-msf-progress__label {
        display: none;
    }
    
    .ce-msf-progress__dot {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}


/* ==========================================================================
   Steps Container
   ========================================================================== */

.ce-msf-step {
    display: none;
    animation: ceMsfFadeIn 0.3s ease;
}

.ce-msf-step.is-active {
    display: block;
}

@keyframes ceMsfFadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.ce-msf-step__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: var(--brand-text, #1a1a1a);
}

.ce-msf-step__desc {
    color: #6b7280;
    margin: 0 0 24px 0;
    font-size: 1rem;
}


/* ==========================================================================
   Fields
   ========================================================================== */

.ce-msf-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.ce-msf-field {
    position: relative;
}

.ce-msf-field--hidden {
    display: none;
}

.ce-msf-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--brand-text, #1a1a1a);
}

.ce-msf-required {
    color: #dc2626;
    margin-left: 2px;
}

.ce-msf-input,
.ce-msf-textarea,
.ce-msf-select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: white;
    color: var(--brand-text, #1a1a1a);
}

.ce-msf-input:focus,
.ce-msf-textarea:focus,
.ce-msf-select:focus {
    outline: none;
    border-color: var(--brand-primary, #4F46E5);
    box-shadow: 0 0 0 3px var(--brand-focus, rgba(79, 70, 229, 0.2));
}

.ce-msf-input::placeholder,
.ce-msf-textarea::placeholder {
    color: #9ca3af;
}

.ce-msf-textarea {
    min-height: 100px;
    resize: vertical;
}

.ce-msf-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

/* Validation error state */
.ce-msf-field.has-error .ce-msf-input,
.ce-msf-field.has-error .ce-msf-textarea,
.ce-msf-field.has-error .ce-msf-select {
    border-color: #dc2626;
}

.ce-msf-error {
    display: none;
    color: #dc2626;
    font-size: 0.85rem;
    margin-top: 6px;
}

.ce-msf-field.has-error .ce-msf-error {
    display: block;
}


/* ==========================================================================
   Radio & Checkbox
   ========================================================================== */

.ce-msf-radio-group,
.ce-msf-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ce-msf-radio,
.ce-msf-checkbox {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.ce-msf-radio:hover,
.ce-msf-checkbox:hover {
    border-color: var(--brand-primary, #4F46E5);
    background: rgba(79, 70, 229, 0.02);
}

.ce-msf-radio input,
.ce-msf-checkbox input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.ce-msf-radio__mark,
.ce-msf-checkbox__mark {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    background: white;
    flex-shrink: 0;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.ce-msf-radio__mark {
    border-radius: 50%;
}

.ce-msf-checkbox__mark {
    border-radius: 4px;
}

.ce-msf-radio input:checked + .ce-msf-radio__mark,
.ce-msf-checkbox input:checked + .ce-msf-checkbox__mark {
    border-color: var(--brand-primary, #4F46E5);
    background: var(--brand-primary, #4F46E5);
}

.ce-msf-radio input:checked + .ce-msf-radio__mark::after {
    content: '';
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.ce-msf-checkbox input:checked + .ce-msf-checkbox__mark::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.ce-msf-radio__text,
.ce-msf-checkbox__text {
    font-size: 0.95rem;
    color: var(--brand-text, #1a1a1a);
    line-height: 1.4;
}


/* ==========================================================================
   Navigation Buttons
   ========================================================================== */

.ce-msf-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.ce-msf-btn {
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ce-msf-btn--back {
    background: #f3f4f6;
    color: #374151;
}

.ce-msf-btn--back:hover {
    background: #e5e7eb;
}

.ce-msf-btn--next,
.ce-msf-btn--submit {
    background: var(--brand-primary, #4F46E5);
    color: var(--brand-text, #1a1a1a);
}

.ce-msf-btn--next:hover,
.ce-msf-btn--submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.ce-msf-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.ce-msf-btn--submit .btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ce-msf-btn--submit .btn-loading svg {
    animation: ceMsfSpin 1s linear infinite;
}

@keyframes ceMsfSpin {
    to { transform: rotate(360deg); }
}


/* ==========================================================================
   Messages
   ========================================================================== */

.ce-msf-message {
    padding: 16px 20px;
    border-radius: 8px;
    margin-top: 24px;
    font-size: 0.95rem;
}

.ce-msf-message--success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.ce-msf-message--error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}


/* ==========================================================================
   Style Variants
   ========================================================================== */

/* Minimal Style */
.ce-multistep-form--minimal .ce-msf-input,
.ce-multistep-form--minimal .ce-msf-textarea,
.ce-multistep-form--minimal .ce-msf-select {
    border: none;
    border-bottom: 2px solid #e5e7eb;
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
}

.ce-multistep-form--minimal .ce-msf-input:focus,
.ce-multistep-form--minimal .ce-msf-textarea:focus,
.ce-multistep-form--minimal .ce-msf-select:focus {
    box-shadow: none;
    border-bottom-color: var(--brand-primary, #4F46E5);
}

.ce-multistep-form--minimal .ce-msf-select {
    background-position: right 0 center;
    padding-right: 24px;
}

.ce-multistep-form--minimal .ce-msf-radio,
.ce-multistep-form--minimal .ce-msf-checkbox {
    border: none;
    border-bottom: 1px solid #e5e7eb;
    border-radius: 0;
    padding-left: 0;
}

/* Dark Style */
.ce-multistep-form--dark {
    background: var(--brand-secondary, #1e1b4b);
    padding: 32px;
    border-radius: 12px;
}

.ce-multistep-form--dark .ce-msf-progress__bar {
    background: rgba(255, 255, 255, 0.2);
}

.ce-multistep-form--dark .ce-msf-progress__dot {
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
}

.ce-multistep-form--dark .ce-msf-progress__step.is-active .ce-msf-progress__dot,
.ce-multistep-form--dark .ce-msf-progress__step.is-complete .ce-msf-progress__dot {
    background: var(--brand-primary, #4F46E5);
    color: var(--brand-secondary, #1e1b4b);
}

.ce-multistep-form--dark .ce-msf-progress__label {
    color: rgba(255, 255, 255, 0.6);
}

.ce-multistep-form--dark .ce-msf-progress__step.is-active .ce-msf-progress__label {
    color: white;
}

.ce-multistep-form--dark .ce-msf-step__title {
    color: white;
}

.ce-multistep-form--dark .ce-msf-step__desc {
    color: rgba(255, 255, 255, 0.7);
}

.ce-multistep-form--dark .ce-msf-label {
    color: rgba(255, 255, 255, 0.9);
}

.ce-multistep-form--dark .ce-msf-input,
.ce-multistep-form--dark .ce-msf-textarea,
.ce-multistep-form--dark .ce-msf-select {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.ce-multistep-form--dark .ce-msf-input:focus,
.ce-multistep-form--dark .ce-msf-textarea:focus,
.ce-multistep-form--dark .ce-msf-select:focus {
    border-color: var(--brand-primary, #4F46E5);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.3);
}

.ce-multistep-form--dark .ce-msf-input::placeholder,
.ce-multistep-form--dark .ce-msf-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.ce-multistep-form--dark .ce-msf-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
}

.ce-multistep-form--dark .ce-msf-radio,
.ce-multistep-form--dark .ce-msf-checkbox {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.ce-multistep-form--dark .ce-msf-radio:hover,
.ce-multistep-form--dark .ce-msf-checkbox:hover {
    border-color: var(--brand-primary, #4F46E5);
    background: rgba(255, 255, 255, 0.1);
}

.ce-multistep-form--dark .ce-msf-radio__mark,
.ce-multistep-form--dark .ce-msf-checkbox__mark {
    border-color: rgba(255, 255, 255, 0.4);
    background: transparent;
}

.ce-multistep-form--dark .ce-msf-radio__text,
.ce-multistep-form--dark .ce-msf-checkbox__text {
    color: white;
}

.ce-multistep-form--dark .ce-msf-nav {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.ce-multistep-form--dark .ce-msf-btn--back {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.ce-multistep-form--dark .ce-msf-btn--back:hover {
    background: rgba(255, 255, 255, 0.2);
}

.ce-multistep-form--dark .ce-msf-message--success {
    background: rgba(34, 197, 94, 0.2);
    color: #86efac;
    border-color: rgba(34, 197, 94, 0.3);
}

.ce-multistep-form--dark .ce-msf-message--error {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    border-color: rgba(239, 68, 68, 0.3);
}


/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 640px) {
    .ce-msf-nav {
        flex-direction: column-reverse;
        gap: 12px;
    }
    
    .ce-msf-btn {
        width: 100%;
        justify-content: center;
    }
    
    .ce-multistep-form--dark {
        padding: 24px 16px;
    }
}


/* ==========================================================================
   Reduced Motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    .ce-msf-step,
    .ce-msf-progress__fill,
    .ce-msf-progress__dot,
    .ce-msf-btn,
    .ce-msf-input,
    .ce-msf-textarea,
    .ce-msf-select,
    .ce-msf-radio,
    .ce-msf-checkbox {
        transition: none;
        animation: none;
    }
}


/* ==========================================================================
   V6.4.0 - Half Width Fields (2-Column Layout)
   ========================================================================== */

.ce-msf-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.ce-msf-field {
    width: 100%;
    flex: 0 0 100%;
}

.ce-msf-field--half {
    flex: 0 0 calc(50% - 10px);
    width: calc(50% - 10px);
}

@media (max-width: 640px) {
    .ce-msf-field--half {
        flex: 0 0 100%;
        width: 100%;
    }
}


/* ==========================================================================
   V6.4.0 - File Upload Field
   ========================================================================== */

.ce-msf-file-upload {
    width: 100%;
}

.ce-msf-file-dropzone {
    position: relative;
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    padding: 32px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fafafa;
}

.ce-msf-file-dropzone:hover,
.ce-msf-file-dropzone.is-dragover {
    border-color: var(--brand-primary, #4F46E5);
    background: rgba(79, 70, 229, 0.04);
}

.ce-msf-file-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.ce-msf-file-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    pointer-events: none;
}

.ce-msf-file-placeholder svg {
    color: #9ca3af;
    margin-bottom: 8px;
}

.ce-msf-file-placeholder span {
    font-size: 0.95rem;
}

.ce-msf-file-placeholder strong {
    color: var(--brand-primary, #4F46E5);
}

.ce-msf-file-placeholder small {
    font-size: 0.8rem;
    color: #9ca3af;
}

.ce-msf-file-list {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ce-msf-file-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: #f3f4f6;
    border-radius: 8px;
    font-size: 0.9rem;
}

.ce-msf-file-item__icon {
    font-size: 1.2rem;
}

.ce-msf-file-item__name {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ce-msf-file-item__size {
    color: #6b7280;
    font-size: 0.8rem;
}

.ce-msf-file-item__remove {
    background: none;
    border: none;
    color: #dc2626;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    font-size: 1rem;
    line-height: 1;
}

.ce-msf-file-item__remove:hover {
    background: #fee2e2;
}

/* File upload in dark mode */
.ce-multistep-form--dark .ce-msf-file-dropzone {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.ce-multistep-form--dark .ce-msf-file-dropzone:hover {
    border-color: var(--brand-primary, #4F46E5);
    background: rgba(79, 70, 229, 0.1);
}

.ce-multistep-form--dark .ce-msf-file-placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.ce-multistep-form--dark .ce-msf-file-placeholder svg {
    color: rgba(255, 255, 255, 0.5);
}

.ce-multistep-form--dark .ce-msf-file-item {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}


/* ==========================================================================
   V6.4.0 - Star Rating Field
   ========================================================================== */

.ce-msf-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.ce-msf-rating__star {
    cursor: pointer;
    padding: 4px;
    transition: transform 0.15s ease;
}

.ce-msf-rating__star:hover {
    transform: scale(1.15);
}

.ce-msf-rating__star input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.ce-msf-rating__star svg {
    display: block;
    color: #d1d5db;
    fill: #d1d5db;
    transition: all 0.2s ease;
}

.ce-msf-rating__star.is-active svg,
.ce-msf-rating__star:hover svg {
    color: #f59e0b;
    fill: #f59e0b;
}

.ce-msf-rating__star.is-hovered svg {
    color: #fbbf24;
    fill: #fbbf24;
}

.ce-msf-rating__label {
    margin-left: 12px;
    font-size: 0.9rem;
    color: #6b7280;
    min-width: 80px;
}

/* Dark mode ratings */
.ce-multistep-form--dark .ce-msf-rating__star svg {
    color: rgba(255, 255, 255, 0.3);
    fill: rgba(255, 255, 255, 0.3);
}

.ce-multistep-form--dark .ce-msf-rating__label {
    color: rgba(255, 255, 255, 0.7);
}


/* ==========================================================================
   V6.4.0 - Range Slider Field
   ========================================================================== */

.ce-msf-range {
    padding: 8px 0;
}

.ce-msf-range__values {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #6b7280;
}

.ce-msf-range__current {
    font-weight: 700;
    color: var(--brand-primary, #4F46E5);
    font-size: 1.1rem;
}

.ce-msf-range__input {
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    appearance: none;
    background: #e5e7eb;
    border-radius: 4px;
    cursor: pointer;
    outline: none;
}

.ce-msf-range__input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: var(--brand-primary, #4F46E5);
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.15s ease;
}

.ce-msf-range__input::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.ce-msf-range__input::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: var(--brand-primary, #4F46E5);
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.ce-msf-range__input:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.2), 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Dark mode range */
.ce-multistep-form--dark .ce-msf-range__values {
    color: rgba(255, 255, 255, 0.7);
}

.ce-multistep-form--dark .ce-msf-range__current {
    color: var(--brand-primary, #4F46E5);
}

.ce-multistep-form--dark .ce-msf-range__input {
    background: rgba(255, 255, 255, 0.2);
}


/* ==========================================================================
   V6.4.0 - Calculation Field
   ========================================================================== */

.ce-msf-calculation {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid #86efac;
    border-radius: 12px;
    padding: 20px 24px;
    text-align: center;
}

.ce-msf-calculation .ce-msf-label {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #166534;
}

.ce-msf-calculation__display {
    font-size: 2rem;
    font-weight: 700;
    color: #166534;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.ce-msf-calculation__prefix,
.ce-msf-calculation__suffix {
    font-size: 1.2rem;
    opacity: 0.7;
}

.ce-msf-calculation__value {
    transition: transform 0.2s ease;
}

.ce-msf-calculation__value.is-updating {
    transform: scale(1.05);
}

/* Dark mode calculation */
.ce-multistep-form--dark .ce-msf-calculation {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(34, 197, 94, 0.25) 100%);
    border-color: rgba(34, 197, 94, 0.4);
}

.ce-multistep-form--dark .ce-msf-calculation .ce-msf-label {
    color: #86efac;
}

.ce-multistep-form--dark .ce-msf-calculation__display {
    color: #86efac;
}


/* ==========================================================================
   V6.4.0 - Modern Style Variant
   ========================================================================== */

.ce-multistep-form--modern {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 40px;
}

.ce-multistep-form--modern .ce-msf-progress__bar {
    height: 6px;
    border-radius: 3px;
}

.ce-multistep-form--modern .ce-msf-progress__dot {
    width: 36px;
    height: 36px;
    font-size: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.ce-multistep-form--modern .ce-msf-input,
.ce-multistep-form--modern .ce-msf-textarea,
.ce-multistep-form--modern .ce-msf-select {
    border-radius: 10px;
    border-width: 1px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.ce-multistep-form--modern .ce-msf-radio,
.ce-multistep-form--modern .ce-msf-checkbox {
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.ce-multistep-form--modern .ce-msf-btn {
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.ce-multistep-form--modern .ce-msf-btn--next,
.ce-multistep-form--modern .ce-msf-btn--submit {
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

@media (max-width: 640px) {
    .ce-multistep-form--modern {
        padding: 24px 20px;
        border-radius: 12px;
    }
}


/* ==========================================================================
   V6.4.0 - Time Input Styling
   ========================================================================== */

.ce-msf-field--time .ce-msf-input {
    padding-right: 12px;
}
