﻿/* Floating Social Media Sidebar */
.social-sidebar {
    position: fixed;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    /* Social Media Icons */
    .social-sidebar a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50px; /* Default Size */
        height: 50px;
        font-size: 24px;
        color: white;
        border-radius: 50%;
        transition: all 0.3s ease-in-out;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    }

/* Make Icons Smaller on Mobile */
@media (max-width: 768px) {
    .social-sidebar {
        right: 5px; /* Keep it closer to the screen edge */
        gap: 8px; /* Reduce spacing */
    }

        .social-sidebar a {
            width: 40px; /* Smaller icons */
            height: 40px;
            font-size: 20px; /* Adjust icon size */
        }
}

/* Facebook */
.social-sidebar a[href*="facebook.com"] {
    background: #3b5998;
}

    .social-sidebar a[href*="facebook.com"]:hover {
        background: #2d4373;
        transform: scale(1.1);
    }

/* Instagram */
.social-sidebar a[href*="instagram.com"] {
    background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
}

    .social-sidebar a[href*="instagram.com"]:hover {
        transform: scale(1.1);
    }

/* Twitter */
.social-sidebar a[href*="twitter.com"] {
    background: #1da1f2;
}

    .social-sidebar a[href*="twitter.com"]:hover {
        background: #0d8ddb;
        transform: scale(1.1);
    }

/* YouTube */
.social-sidebar a[href*="youtube.com"] {
    background: #ff0000;
}

    .social-sidebar a[href*="youtube.com"]:hover {
        background: #cc0000;
        transform: scale(1.1);
    }


.ThemeFontColorGreen {
    color: #1FB57A !important;
}

.ThemeFontColorBlue {
    color: #202E54 !important;
}

.ThemeBackgroundColorGreen {
    background-color: #1FB57A !important;
}

.ThemeBackgroundColorBlue {
    background-color: #202E54 !important;
}

.TakmeeliIcon {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

/* Delhivery Tracking */

.timeline {
    position: relative;
    margin-top: 20px;
    padding-left: 30px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    position: relative;
    margin-bottom: 20px;
}

.timeline-left {
    display: flex;
    flex-direction: column;
    text-align: right;
    font-weight: bold;
    color: #333;
    min-width: 80px;
}

.timeline-middle {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.timeline-dot {
    width: 15px;
    height: 15px;
    background: #1FB57A;
    border-radius: 50%;
    border: 3px solid #202E54;
    box-shadow: 0 0 5px #202E54 !important;
    position: relative;
    z-index: 2;
}

.timeline-line {
    width: 2px;
    background: #ccc;
    height: calc(100% + 100px); /* Adjust this value if needed */
    position: absolute;
    top: 14px; /* Align with the dot */
    left: 6px; /* Align with the dot */
    z-index: 1;
}

.timeline-item:last-child .timeline-line {
    display: none; /* Hide the line for the last item */
}

.timeline-content {
    flex: 1;
    padding: 10px;
    font-size: 14px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 0 5px #202E54 !important;
    margin-bottom: 10px !important;
}

/*@media (max-width: 600px) {
    .timeline-item {
        flex-direction: row;
        align-items: flex-start;
    }

    .timeline-left {
        text-align: left;
        min-width: 60px;
    }

    .timeline-middle {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
    }

    .timeline-line {
        width: 2px;
        background: #ccc;
        height: calc(100% + 100px);*/ /* Adjust this value if needed */
/*position: absolute;
        top: 14px;*/ /* Align with the dot */
/*left: 6px;*/ /* Align with the dot */
/*z-index: 1;
    }

    .timeline-content {
        flex: 1;
        padding: 10px;
        font-size: 14px;
        background: #f9f9f9;
        border-radius: 8px;
        box-shadow: 0 0 5px #202E54 !important;
        margin-bottom: 10px !important;
    }
}*/


/* shadow some more overlapped CSS Green Color : 1FB57A   Blue Color : #202E54 */
.shadow {
    border-radius: 9px !important;
    box-shadow: 0 0 5px #1FB57A !important;
}
