 .sticky {
            position: fixed;
            z-index: 9999;
            top: 0;
            width: 100%;
        }
        .dropbtn {
            color: #1f1f1f !important;
            font-size: 14px !important;
            line-height: 20px !important;
            font-weight: 600 !important
        }

        #topSection a span {
            height: 10px;
            width: 2px;
            color: #fff;
            display: inline-block;
            background: #fff;
            margin: 0 15px;
        }

        .dropbtn {
            background-color: #fff;
            font-size: 14px;
            font-weight: bold;
            border: none;
            cursor: pointer;
            _padding: 2px 9px;
            _border: 1px solid #ccc;
            _border-radius: 5px;
            _margin-right: 8px;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background-color: #fff;
            min-width: 160px;
            overflow: auto;
            box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
            z-index: 99999;
        }

        .dropdown-content a {
            color: black;
            padding: 8px 16px;
            text-decoration: none;
            display: block;
            border-bottom: 1px solid #ccc;
        }

        .show {
            display: block !important;
        }

        .head-part {
            border-bottom: 1px solid #ccc;
            _padding-top: 3px;
        }

        #top-nav {
            margin-top: 5px;
        }

        .nobojatra span {
            color: red;
            font-size: 16px;
            font-weight: bold;
        }

        #top-quick-links li:hover .nobojatra span {
            color: #008000;
        }

        .round-icon-ec {
            position: relative;
            display: block;
        }

        .border-ec {
            width: 20px;
            height: 20px;
            border: 1px solid red;
            border-radius: 50%;
            animation: blink 1s infinite alternate;
            overflow: hidden;
            float: left;
            margin-right: 7px;
        }

        .image-ec {
            width: 100%;
            height: 100%;
          
            background-size: cover;
            background-position: center;
        }

        .text-ec {
            margin-left: 5px;
            font-size: 16px;
            width: 100px;
        }

        .text-ec a {
            color: red !important;
            text-decoration: none;
        }

        .text-ec a:hover {
            color: green !important;
        }

        @keyframes blink {
            0% {
                border-color: red;
            }

            100% {
                border-color: green;
            }
        }



/* Item preview */
.link-preview-popup {
    position: fixed;
    z-index: 99999;
    width: 320px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    padding: 12px;
    display: none;
    pointer-events: auto;
}

.link-preview-popup img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 8px;
}

.link-preview-popup h4 {
    font-size: 14px;
    margin: 6px 0;
}

.link-preview-popup p {
    font-size: 13px;
    color: #555;
    line-height: 1.4;
}

/* loader */
.preview-loader span {
    display: block;
    height: 10px;
    background: linear-gradient(90deg,#eee,#ddd,#eee);
    border-radius: 5px;
    margin-bottom: 8px;
    animation: shimmer 1.2s infinite;
}

.preview-loader span:nth-child(1) { width: 100%; height: 160px; }
.preview-loader span:nth-child(2) { width: 80%; }
.preview-loader span:nth-child(3) { width: 60%; }

@keyframes shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: 200px 0; }
}










