/*
Theme Name: Beaver Builder Child Theme
Theme URI: http://www.wpbeaverbuilder.com
Version: 1.0
Description: An example child theme that can be used as a starting point for custom development.
Author: The Beaver Builder Team
Author URI: http://www.fastlinemedia.com
template: bb-theme
*/

/* Add your custom styles here... */ 




/* Pixel tracking */

/* ===============================
   BASE WRAPPER
================================ */
.pixl-track-container {
  max-width: 520px;
  background: #ffffff;
  padding: 20px;
  border-radius: 14px;
  box-sizing: border-box;
  margin: 0 auto;	
 box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;	
}
body sup {
	font-size: 9px !important;
}
h1 sup, h2 sup, h3 sup {
	top: -3em !important;
	font-size: 9px !important;
	line-height: 1;
}
h2 sup, h3 sup {
	top: -2em !important;
	font-size: 9px !important;
	line-height: 1;
}
h4 sup {
	top: -1.5em !important;
	font-size: 9px !important;
	line-height: 1;
}
 h5 sup {
	top: -1em !important;
	font-size: 9px !important;
	line-height: 1;
}
.pixl-track-container * {
  box-sizing: border-box;
}

/* ===============================
   TITLE
================================ */
.pixl-track-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #000;
}

/* ===============================
   SEARCH INPUT (GO INSIDE)
================================ */
.pixl-track-search {
  display: flex;
  align-items: center;
  background: #F5F5F5;
  border-radius: 12px;
  padding: 0 6px 0 12px;
  height: 56px;
  gap: 8px;
}
.location-img-pixl {
	position: relative;
	left: 0px;
	align-self: flex-start;
}
.location-img-pixl img{
	height: 22px;
	width: 22px;
}
.pixl-track-search-icon {
  width: 16px;
  height: 16px;
  opacity: 0.6;
}

.pixl-track-search input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
  color: #000;
}
.pixl-track-search input::placeholder {
	color: #000;
	opacity: 0.2;
}
.pixl-track-search button {
	height: 36px;
	padding: 0 18px;
	background: #D8D8D8;
	border-radius: 10px;
	border: none;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	color: #fff;
}
.pixl-track-search form {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin: 0;
}

/* ===============================
   DESCRIPTION
================================ */
.pixl-track-desc {
  font-size: 13px;
  color: #616161;
  margin: 16px 0;
  line-height: 1.5;
}

/* ===============================
   SUBTITLE
================================ */
.pixl-track-subtitle {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #000;
}

/* ===============================
   SKU / CRATE CARDS
================================ */
.pixl-track-cards {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.pixl-track-card {
	flex: 1;
	border-radius: 12px;
	padding: 12px;
	display: flex;
	gap: 10px;
	align-items: center;
	flex-direction: column;
	text-align: center;
}

.pixl-track-card-icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	background: #22BB9C14;
}

.pixl-track-card-icon img {
  width: 28px;
  height: 28px;
}

.pixl-track-card strong {
  font-size: 13px;
  font-weight: 600;
  color: #000;
}

.pixl-track-card p {
  font-size: 12px;
  margin-top: 2px;
  color: #616161;
}
.large-item-img {
	width: 40px;
	height: auto;
}
.pixl-shipping-process.large-item-sec {
	background: transparent;
}
.large-item-sec .pixl-steps-container::before{
	background: none;
}
.large-item-sec .pixl-steps-container {
	gap: 55px;
}
/* ===============================
   TIMELINE
================================ */
.pixl-track-timeline {
  position: relative;
}

/* each step */
.pixl-track-step {
  position: relative;
  display: flex;
  gap: 14px;
  padding-bottom: 26px;
}

/* dashed line (FIXED: BEHIND CIRCLE) */
.pixl-track-step::before {
  content: "";
  position: absolute;
  left: 10px;                  /* circle center se thoda left */
  top: 26px;
  width: 2px;
  height: 100%;
  border-left: 2px dashed #D6D6D6;
  z-index: 0;
}

.pixl-track-step:last-child::before {
  display: none;
}

/* circle outer */
.pixl-track-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #D6D6D6;
  background: #ffffff;         /* dashed line hide */
  position: relative;
  z-index: 2;                  /* circle above line */
  flex-shrink: 0;
}

/* inner dot */
.pixl-track-dot::after {
  content: "";
  width: 8px;
  height: 8px;
  background: #D6D6D6;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* completed & active */
.pixl-track-step.done .pixl-track-dot,
.pixl-track-step.active .pixl-track-dot {
  border-color: #22BB9C;
}

.pixl-track-step.done .pixl-track-dot::after,
.pixl-track-step.active .pixl-track-dot::after {
  background: #22BB9C;
}

/* text */
.pixl-track-step strong {
	font-size: 16px;
	font-weight: 500;
	color: #616161;
}

.pixl-track-step .time {
	font-size: 16px;
	color: #000;
	margin-top: 2px;
	font-weight: 600;
}



.ships-every-day .fl-col-content {
    position: relative;
    overflow: hidden;            
    border-radius: 16px;
    transition: transform 0.25s ease;
}

.ships-every-day .fl-col-content:hover {
    transform: translateY(-10px); 
}

.ships-every-day .fl-col-content::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: #22bb9c;
    transition: width 0.3s ease;
}

.ships-every-day .fl-col-content:hover::after {
    width: 100%;
}

.works-better-sec .fl-callout-icon-left .fl-icon {
	vertical-align: middle;
}



	.pixl-shipping-process {
            background: #ffffff;
            padding: 50px 20px;
            max-width: 1280px;
            margin: 0 auto;
        }

        /* Header */
        .pixl-process-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .pixl-process-header p {
            color: #6b7280;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Steps Container */
        .pixl-steps-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            position: relative;
        }

        /* Center Connector Line */
        .pixl-steps-container:before {
            content: '';
            position: absolute;
            top: 80px;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: calc(100% - 160px);
            background: linear-gradient(to bottom, 
                rgba(34, 187, 156, 0.1) 0%, 
                #22bb9c 20%, 
                #22bb9c 80%, 
                rgba(34, 187, 156, 0.1) 100%);
        }

        /* Individual Step */
        .pixl-step-item {
            position: relative;
            background: #ffffff;
            border-radius: 20px;
            padding: 50px 35px 35px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
            border: 1px solid #f3f4f6;
            transition: all 0.3s ease;
        }

        .pixl-step-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border-color: #e5e7eb;
        }

        /* Step Number */
        .pixl-step-number {
            position: absolute;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #22bb9c 0%, #1a9c82 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
			font-size: 30px;
            color: white;
            box-shadow: 0 10px 30px rgba(34, 187, 156, 0.3);
            z-index: 2;
            transition: all 0.3s ease;
        }

        .pixl-step-item:hover .pixl-step-number {
            transform: translateX(-50%) scale(1.1);
            box-shadow: 0 15px 35px rgba(34, 187, 156, 0.4);
        }

        /* Step Content */
        .pixl-step-content {
            position: relative;
            padding-top: 20px;
        }

        /* Step Title */
        .pixl-step-title {
            font-size: 22px;
            font-weight: 700;
            color: #111827;
            margin-bottom: 20px;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }

        .pixl-step-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background: #22bb9c;
            border-radius: 2px;
        }

        /* Step Description */
        .pixl-step-desc {
            color: #4b5563;
            line-height: 1.7;
            text-align: center;
            margin-bottom: 25px;
        }

        /* Step CTA */
        .pixl-step-cta {
            text-align: center;
        }

        .pixl-step-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #22bb9c !important;
            text-decoration: none;
            font-weight: 600;
            padding: 10px 20px;
            border-radius: 50px;
            background: rgba(34, 187, 156, 0.1);
            transition: all 0.3s ease;
			text-decoration: none !important;
        }

        .pixl-step-link:hover {
            background: #22bb9c;
            color: white !important;
        }

        /* Decorative Lines */
        .pixl-step-connector {
            position: absolute;
            top: 165px;
            left: 100%;
            width: 40px;
            height: 2px;
            background: #22bb9c;
            opacity: 0.3;
        }

        .pixl-step-item:last-child .pixl-step-connector {
            display: none;
        }

        /* Animation for steps */
        @keyframes stepFadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .pixl-step-item:nth-child(1) {
            animation: stepFadeIn 0.6s ease-out 0.1s both;
        }

        .pixl-step-item:nth-child(2) {
            animation: stepFadeIn 0.6s ease-out 0.3s both;
        }

        .pixl-step-item:nth-child(3) {
            animation: stepFadeIn 0.6s ease-out 0.5s both;
        }




/* location css start */
         .location-pixel-wrapper {
            max-width: 1100px;
            width: 100%;
            margin: 0 auto;
            animation: fadeIn 0.6s ease-out;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(15px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .location-pixel-card {
            background: white;
            border-radius: 24px;
            padding: 40px;
            box-shadow: 
                0 15px 40px rgba(34, 187, 156, 0.08),
                0 8px 20px rgba(34, 187, 156, 0.06);
            position: relative;
            overflow: hidden;
            border: 1px solid #e0f4f1;
            transition: all 0.3s ease;
        }
        
        .location-pixel-card:hover {
            box-shadow: 
                0 20px 50px rgba(34, 187, 156, 0.12),
                0 12px 30px rgba(34, 187, 156, 0.08);
        }
        
        .location-pixel-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #22bb9c, #1a9c82, #22bb9c);
            background-size: 200% 100%;
            animation: shimmer 3s infinite linear;
        }
        
        @keyframes shimmer {
            0% { background-position: -200% 0; }
            100% { background-position: 200% 0; }
        }
        
        .location-pixel-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .location-pixel-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #22bb9c 0%, #1a9c82 100%);
            color: white;
            padding: 10px 24px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 20px;
            box-shadow: 0 8px 20px rgba(34, 187, 156, 0.25);
            transition: all 0.3s ease;
        }
        
        .location-pixel-badge:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 25px rgba(34, 187, 156, 0.35);
        }
        
        .location-pixel-title {
            font-size: 36px;
            font-weight: 800;
            color: #1a1d2b;
            margin-bottom: 12px;
            line-height: 1.2;
        }
        
        .location-pixel-title span {
            color: #22bb9c;
            position: relative;
        }
        
        .location-pixel-tm {
            font-size: 22px;
            vertical-align: super;
            color: #22bb9c;
            font-weight: 600;
        }
        
        .location-pixel-description {
            font-size: 18px;
            color: #666;
            text-align: center;
            margin-bottom: 30px;
            line-height: 1.5;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 500;
        }
        
        .location-pixel-description span {
            color: #22bb9c;
            font-weight: 600;
        }
        
        /* Improved Cities Section with Better Responsive Arrow */
        .location-pixel-cities-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            margin: 40px 0;
            position: relative;
        }
        
        /* Desktop View - Horizontal Layout */
        .location-pixel-city-card {
            background: linear-gradient(135deg, #22bb9c 0%, #1a9c82 100%);
            color: white;
            padding: 24px 30px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            gap: 15px;
            transition: all 0.3s ease;
            flex: 1;
            max-width: 300px;
            position: relative;
            overflow: hidden;
            z-index: 1;
            box-shadow: 0 10px 25px rgba(34, 187, 156, 0.2);
        }
        
        .location-pixel-city-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
            transition: left 0.6s ease;
            z-index: -1;
        }
        
        .location-pixel-city-card:hover::before {
            left: 100%;
        }
        
        .location-pixel-city-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(34, 187, 156, 0.3);
        }
        
        .location-pixel-city-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #22bb9c;
            font-size: 24px;
            transition: all 0.4s ease;
            flex-shrink: 0;
        }
        
        .location-pixel-city-card:hover .location-pixel-city-icon {
            transform: rotate(360deg) scale(1.1);
            background: white;
        }
        
        .location-pixel-city-info {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        
        .location-pixel-city-name {
            font-size: 24px;
            font-weight: 700;
            letter-spacing: 0.3px;
        }
        
        .location-pixel-city-subtext {
            font-size: 13px;
            opacity: 0.9;
            font-weight: 500;
        }
        
        /* Improved Connection Section - Desktop Focus */
        .location-pixel-connection {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 20px;
            position: relative;
            flex: 0 0 auto;
        }
        
        .location-pixel-connection-line {
            width: 120px;
            height: 3px;
            background: linear-gradient(90deg, #22bb9c, #1a9c82);
            position: relative;
            border-radius: 2px;
            overflow: hidden;
        }
        
        .location-pixel-connection-line::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
            animation: routeShimmer 2s infinite linear;
        }
        
        @keyframes routeShimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }
        
        .location-pixel-connection-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            background: #22bb9c;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin: 0 20px;
            font-size: 24px;
            box-shadow: 0 8px 20px rgba(34, 187, 156, 0.3);
            transition: all 0.3s ease;
            animation: pulse 2s infinite ease-in-out;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }
        
        .location-pixel-connection-icon:hover {
            animation-play-state: paused;
            transform: scale(1.2) rotate(180deg);
        }
        
        /* Mobile View - Stack Vertically */
     @media (max-width: 1050px) {
            .location-pixel-cities-container {
                flex-direction: column;
                gap: 25px;
                align-items: center;
            }
            
            .location-pixel-city-card {
                max-width: 350px;
                width: 100%;
            }
            
           .location-pixel-connection {
	flex-direction: row;
	padding: 10px 0;
	width: 100%;
	max-width: 350px;
	transform: rotate(90deg) !important;
}
            
            .location-pixel-connection-line {
                width: 100px;
                height: 3px;
            }
        }
        
        @media (max-width: 768px) {
            .location-pixel-connection-line {
                width: 80px;
            }
            
            .location-pixel-connection-icon {
                width: 50px;
                height: 50px;
                font-size: 20px;
                margin: 0 15px;
            }
        }
        
        @media (max-width: 480px) {
            .location-pixel-connection {
                flex-direction: row;
            }
            
            .location-pixel-connection-line {
                width: 60px;
            }
        }
        
        /* Compact Services Grid (Without Prices) */
        .location-pixel-services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin: 40px 0 30px 0;
        }
        
        .location-pixel-service-card {
            background: #f8fffe;
            border-radius: 16px;
            padding: 25px 20px;
            text-align: center;
            border: 1px solid #e0f4f1;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .location-pixel-service-card:hover {
            transform: translateY(-5px);
            border-color: #22bb9c;
            background: white;
            box-shadow: 0 10px 25px rgba(34, 187, 156, 0.15);
        }
        
        .location-pixel-service-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #22bb9c 0%, #1a9c82 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            color: white;
            font-size: 20px;
            transition: all 0.4s ease;
        }
        
        .location-pixel-service-card:hover .location-pixel-service-icon {
            transform: rotate(360deg) scale(1.1);
        }
        
        .location-pixel-service-label {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            line-height: 1.3;
            transition: color 0.3s ease;
        }
        
        /* Compact Footer */
        .location-pixel-footer {
            text-align: center;
            padding: 30px 0 0 0;
            margin-top: 30px;
            border-top: 1px solid #e0f4f1;
        }
        
        .location-pixel-footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }
        
        .location-pixel-price-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            margin-bottom: 15px;
        }
        
        .location-pixel-price-label {
            font-size: 16px;
            color: #666;
            font-weight: 500;
        }
        
        .location-pixel-price {
            font-size: 42px;
            font-weight: 800;
            color: #22bb9c;
            position: relative;
            display: inline-block;
            animation: pricePulse 3s infinite ease-in-out;
        }
        
        @keyframes pricePulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        .location-pixel-price::before {
            content: '$';
            font-size: 28px;
            font-weight: 700;
            margin-right: 4px;
            vertical-align: 5px;
        }
        
        .location-pixel-features {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            flex-wrap: wrap;
        }
        
        .location-pixel-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 20px;
            background: rgba(34, 187, 156, 0.05);
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .location-pixel-feature:hover {
            background: rgba(34, 187, 156, 0.1);
            transform: translateY(-2px);
        }
        
        .location-pixel-feature-icon {
            width: 36px;
            height: 36px;
            background: #22bb9c;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 16px;
        }
        
        .location-pixel-feature-text {
            font-size: 15px;
            font-weight: 500;
            color: #444;
        }
        
        /* Responsive improvements */
        @media (max-width: 1100px) {
            .location-pixel-wrapper {
                max-width: 95%;
            }
            
            .location-pixel-services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
        }
        
        @media (max-width: 768px) {
            .location-pixel-card {
                padding: 30px 25px;
                border-radius: 20px;
            }
            
            .location-pixel-title {
                font-size: 30px;
            }
            
            .location-pixel-description {
                font-size: 16px;
                margin-bottom: 25px;
            }
            
            .location-pixel-city-card {
                padding: 20px 25px;
                max-width: 100%;
            }
            
            .location-pixel-city-name {
                font-size: 22px;
            }
            
            .location-pixel-city-icon {
                width: 45px;
                height: 45px;
                font-size: 20px;
            }
            
            .location-pixel-service-card {
                padding: 20px 15px;
            }
            
            .location-pixel-service-icon {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }
            
            .location-pixel-service-label {
                font-size: 15px;
            }
            
            .location-pixel-price {
                font-size: 36px;
            }
            
            .location-pixel-features {
                gap: 15px;
            }
            
            .location-pixel-feature {
                padding: 10px 16px;
            }
        }
        
        @media (max-width: 600px) {
            .location-pixel-services-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            
            .location-pixel-features {
                flex-direction: column;
                gap: 10px;
                align-items: stretch;
            }
            
            .location-pixel-feature {
                justify-content: center;
            }
            
            .location-pixel-city-card {
                max-width: 100%;
            }
        }
        
        @media (max-width: 480px) {
 
            .location-pixel-title {
                font-size: 26px;
            }
            
            .location-pixel-card {
                padding: 25px 20px;
            }
            
            .location-pixel-city-card {
                flex-direction: column;
                text-align: center;
                gap: 12px;
                padding: 20px;
            }
            
            .location-pixel-city-info {
                align-items: center;
            }
            
            .location-pixel-price {
                font-size: 32px;
            }
        }
        
        @media (max-width: 380px) {
            .location-pixel-title {
                font-size: 24px;
            }
            
            .location-pixel-description {
                font-size: 15px;
            }
            
            .location-pixel-city-name {
                font-size: 20px;
            }
            
            .location-pixel-badge {
                font-size: 13px;
                padding: 8px 20px;
            }
        }

/* location css end */








        
#pixl_track_popup_container .pixl-track-subtitle {
	color: #000 !important;
}
#pixl_track_popup_container small {
	color: #666 !important;
}
#pixl_track_popup_container .pixl-track-title {
	color: #000 !important;
}
#pixl_track_popup_container  .pixl-track-card strong {
	color: #000 !important;
}
#pixl_track_popup_container .pixl-track-step strong {
	color: #666 !important;
}
#pixl_track_popup_container .pixl-track-card p {
	color: #666 !important;
}
#pixl_track_popup_container .pixl-track-step .time {
	color: #000 !important;
}
#submit_traking_form {
	background: transparent;
	border: none;
}
#pixl_track_popup_container .pixl-close-container {
	color: #fff !important;
	background: #000;
	padding: 0px 12px 3px;
	border-radius: 10px;
	margin-top: 10px;
}

#home_traking_form .pixl-search-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

#home_traking_form .pixl-search-icon svg circle,
#home_traking_form .pixl-search-icon svg line {
  stroke: #666 !important;
  stroke-width: 2 !important;
  fill: none !important;
  opacity: 1 !important;
}

#home_traking_form .pixl-search-icon {
  background: transparent !important;
  border: none !important;
  padding: 0;
}


        /* Responsive */
        @media (max-width: 768px) {
h1 sup {
	top: -2em !important;
}
h2 sup, h3 sup {
	top: -1.5em !important;
}
			.pixl-operates-title{
				font-size: 24px;
			}
            .pixl-operates-content-text {
                font-size: 18px;
            }
            
            .pixl-operates-content-area {
                padding: 40px 20px;
            }
            
            .pixl-operates-header {
                padding: 20px;
            }
            
            .pixl-operates-location-visual {
                gap: 30px;
            }
            
            .pixl-operates-connector {
                max-width: 100px;
            }
        }
        
        @media (max-width: 480px) {
            
          
            
            .pixl-operates-connector {
                width: 3px;
                height: 40px;
                max-width: none;
            }
            
            .pixl-operates-connector::after {
                top: auto;
                bottom: -10px;
                right: -4px;
                border-left: 6px solid transparent;
                border-right: 6px solid transparent;
                border-top: 12px solid #22bb9c;
            }
        }








        /* Mobile Responsive */
        @media (max-width: 992px) {
.pixl-step-cta.home-step-btn {
	text-align: center;
}

.large-item-sec .pixl-step-number {
	position: absolute;
	top: -30px;
	left: 50%;
	transform: translateX(-50%);
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, #22bb9c 0%, #1a9c82 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 30px;
	color: white;
	box-shadow: 0 10px 30px rgba(34, 187, 156, 0.3);
	z-index: 2;
	transition: all 0.3s ease;
}
.large-item-sec .pixl-step-item:hover .pixl-step-number {
	transform: none !important;
}
.large-item-sec .pixl-step-item:hover {
	transform: none;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	border-color: #e5e7eb;
}
.large-item-sec .pixl-step-item {
	margin-left: 0;
}
.pixl-step-link {
	max-width: 300px;
	border-radius: 10px;
	padding: 10px;

}

            .pixl-shipping-process {
                padding: 60px 20px;
            }

            .pixl-steps-container {
                grid-template-columns: 1fr;
                gap: 50px;
                margin: 0 auto;
            }

            .pixl-steps-container:before {
                left: 40px;
                top: 0;
                height: 100%;
                width: 2px;
            }

            .pixl-step-item {
                padding: 40px 30px 30px;
                margin-left: 80px;
            }

            .pixl-step-number {
                left: -80px;
                top: 50%;
                transform: translateY(-50%);
            }

            .pixl-step-item:hover .pixl-step-number {
                transform: translateY(-50%) scale(1.1);
            }

            .pixl-step-title,
            .pixl-step-desc {
                text-align: left;
            }

            .pixl-step-title:after {
                left: 0;
                transform: none;
            }

            .pixl-step-cta {
                text-align: left;
            }

            .pixl-step-connector {
                display: none;
            }
			.marquee-content span {
				margin-right: 15px;
			}
        }

        @media (max-width: 576px) {
.pixl-shipping-process.large-item-sec {
	margin-top: 40px;
}
            .pixl-shipping-process {
                padding: 0px;
            }

            .pixl-process-header {
                margin-bottom: 60px;
            }

            .pixl-step-item {
                margin-left: 70px;
                padding: 35px 25px 25px;
            }

            .pixl-step-number {
                width: 60px;
                height: 60px;
                left: -65px;
            }
        }

        /* Extra Spacing Between Steps */
        .pixl-step-item + .pixl-step-item {
            margin-top: 0;
        }




/* ===============================
   MOBILE FIXES
================================ */
  /* SKU cards stack */

@media (max-width: 650px) {
  .pixl-operates-location-visual {
      flex-direction: column;
      gap: 40px;
}
.arrow-img img {
	max-width: 100%;
	transform: rotate(90deg);
	width: 80px;
}
} 

@media (max-width: 520px) {

.pixl-track-container {
  padding: 20px;
}
  /* SKU cards stack */
  .pixl-track-cards {
    flex-direction: column;
    gap: 12px;
  }

  .pixl-track-card {
    width: 100%;
  }

  /* search button adjust */
  .pixl-track-search button {
    padding: 0 14px;
    font-size: 13px;
  }

}