/* Styles moved from inline styles in header.php */

/* SVG styles for tracking icons */
.btn_track svg {
    fill: currentColor;
    width: 24px;
    height: 24px;
    vertical-align: middle;
}

.sticky-area .main-menu ul li.btn_track svg {
    width: 18px;
    height: 18px;
}

/* Preloader styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader img {
    max-width: 100px;
    animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }
    50% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0.95);
        opacity: 0.7;
    }
}

/* Specific address styling for mobile sidebar */
.sidebar__info-text span {
    font-size: 12px;
    line-height: 1.4;
    display: block;
} 