/*===========Politicial Parties intro card=================*/

.political-parties-intro-card {
    padding: 24px 32px;
    border-radius: 12px;
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    margin: 32px 0px;
}

.political-parties-intro-card__title {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.political-parties-intro-card__content {
    font-size: 18px;
    color: #374151;
    line-height: 1.7;
}


.political-parties-intro-card__text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.political-parties-intro-card__text.is-expanded {
    -webkit-line-clamp: unset;
}

.political-parties-intro-card__toggle {
    margin-top: 12px;
    background: none;
    border: none;
    padding: 0;
    font-size: 16px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: color 0.2s ease;
}

.political-parties-intro-card__toggle:hover {
    color: #111827;
}


/*===========filter dropdown grid=================*/
.filter-dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 32px 0px;
}

.filter-dropdown {
    position: relative;
}

.filter-dropdown__button {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.filter-dropdown__button:hover {
    border-color: #9ca3af;
}

.filter-dropdown__label {
    color: #6b7280;
    font-size: 16px;
}

.filter-dropdown__icon {
    width: 20px;
    height: 20px;
    color: #9ca3af;
    transition: transform 0.2s ease;
}

.filter-dropdown.is-open .filter-dropdown__icon {
    transform: rotate(180deg);
}

.filter-dropdown__wrapper {
    position: absolute;
    /* bottom: 0px; */
    left: 0;
    right: 0;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    list-style: none;
    display: none;
    z-index: 10;
    margin-top: 16px;
}

.filter-dropdown.is-open .filter-dropdown__wrapper {
    display: block;
}

.search-input-wrapper {
    position: relative;
    width: 100%;
    padding: 10px 16px;
    box-sizing: border-box;
    border-bottom: 1px solid #e5e7eb;

}

.search-input-icon {
    position: absolute;
    left: 26px;
    top: 50%;
    width: 16px;
    height: 16px;
    color: #9ca3af;
    transform: translateY(-50%);
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 12px 16px 12px 35px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.search-input::placeholder {
    color: #9ca3af;
}

.search-input:focus {
    border-color: transparent;
    box-shadow: 0 0 0 2px #003332;
}


.filter-dropdown__menu {
    overflow-y: scroll;
    height: 240px;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.filter-dropdown__menu::-webkit-scrollbar {
    display: none;
}

.filter-dropdown__menu li {
    padding: 10px 16px;
    font-size: 15px;
    color: #374151;
    cursor: pointer;
}

.filter-dropdown__menu li:hover {
    background-color: #f3f4f6;
}

/*=====================political parties lists container===================*/

.political-parties-lists-container {
    margin: 32px 0px;
}

.political-parties-subheading h2 {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.political-parties-desc {
    font-size: 16px;
    color: #374151;
    line-height: 1.5;
}

/*=====================party table===================*/

.party-table-wrapper {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    overflow: hidden;
    margin-top: 24px;
}

.party-table {
    width: 100%;
    border-collapse: collapse;
}

/* Header */
.party-table thead {
    background-color: #f3f4f6;
    border-bottom: 1px solid #e5e7eb;
}

.party-table th {
    padding: 12px 16px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

/* Body rows */
.party-table tbody tr {
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #e5e7eb;
}

.party-table tbody tr:hover {
    background-color: #f9fafb;
}

.party-table tbody tr.alt-row {
    background-color: #f9fafb;
}

/* Cells */
.party-table td {
    padding: 16px;
    font-size: 14px;
    color: #374151;
}

.party-name a {
    font-weight: 500;
    color: #111827;
}

/* Flag image */
.party-flag {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.party-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*=====================State Wise Party List===================*/

.state-party-card {
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin: 32px 0;
}

.state-party-card__header {
    padding: 16px 24px;
    border-bottom: 1px solid #e5e7eb;
}

.state-party-card__title {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.state-party-card__subtitle {
    font-size: 16px;
    color: #4b5563;
    margin-top: 4px;
}

.state-party-card__body {
    padding: 24px;
}

.state-party-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.state-party-link {
    font-size: 14px;
    font-weight: 400;
    color: #111827;
    text-decoration: none;
    transition: color 0.2s ease;
}

.state-party-link:hover {
    color: #0000ff;
}


/*====================political common right list=============*/

.political-common-rg-card {
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin: 32px 0;
}


.political-common-rg-card__title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    padding: 12px 16px;
    border-bottom: 1px solid #e5e7eb;
    margin: 0;
}


.political-common-rg-list {
    display: flex;
    flex-direction: column;
}

.political-common-rg-item a {
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.political-common-rg-item:last-child {
    border-bottom: none;
}

.political-common-rg-item:hover {
    background-color: #f9fafb;
}

.political-common-rg-item__left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.political-common-rg-item__content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.political-common-rg-item__image {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #e5e7eb;
    flex-shrink: 0;
}

.political-common-rg-item__text {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.result-year {
    font-size: 12px;
    font-weight: 400;
    color: #4b5563;
}

.political-party-result-item .political-common-rg-item__arrow {
    align-self: flex-start;
}

.political-common-rg-item__arrow {
    color: #9ca3af;
    transition: color 0.2s ease;
}

.political-common-rg-item:hover .political-common-rg-item__arrow {
    color: #4b5563;
}


.db-ele-live {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.big-article-live {
    padding: 6px 8px !important;
    margin: 0 !important;
    border-radius: 4px !important;
    position: relative;
    top: -10px;
}

.political-parties-intro-card__title {
    font-size: 26px !important;
}

.big-article-live span {
    font-size: 14px;
    line-height: unset !important;
    font-weight: 600;
}

.political-parties-intro-card__toggle {
    font-weight: 600;
}

.ele-db-menu {
    min-width: max-content;
    margin-top: 16px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ele-db-menu ul {
    display: flex;
    align-items: center;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    scroll-behavior: smooth;
    gap: 8px;
    width: 560px;
    margin: 0 auto;
}

/* .ele-db-menu ul li{margin: 0px 8px;} */
.ele-db-menu ul li a {
    padding: 8px 16px;
    display: block;
    white-space: nowrap;
    border-radius: 8px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #374151;
    background: #fff;
    border: 1px solid #e5e7eb;
}

.ele-db-menu ul li:first-child {
    margin-left: 0px;
}

.ele-db-menu ul li a.active {
    background: #003332;
    color: #fff;
}

.ele-db-menu ul li a:hover {
    background: #f3f4f6;
}

.ele-db-menu ul li a.active:hover {
    background: #003332;
    color: #fff;
}

.db-common-h2-style {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.political-common-rg-card__title {
    line-height: 28px;
}

.political-common-rg-item__text {
    line-height: 20px;
}

.oi-liveblog-icon:before {
    animation: pulsate 2s ease-out infinite !important;
}

.political-common-rg-card {
    margin: 40px 0px !important;
}

.ad-container {
    border-radius: 8px;
    text-align: center;
    overflow: hidden;
    min-height: 250px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 16px;
    background: #f7f7f7;
    margin: 40px 0px;
}

.ad-label {
    width: 100%;
    display: block;
    text-align: center;
    font-weight: 500;
    letter-spacing: .05em;
    text-transform: uppercase;
    line-height: 26px;
    margin-bottom: 1.5rem;
    color: #111111;
    font-size: 12px;
}

.ad-placeholder {
    width: 300px;
    height: 250px;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-ad {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    color: #666;
    font-size: .875rem;
}

.db-common-elections-container {
    margin: 40px 0px;
}

.db-recent-elections-container {
    padding: 32px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    margin-top: 24px;
}

.db-recent-elections--headflex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.db-recent-elections--headflex h3 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
}

.bd-partyele-state {
    padding: 24px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.bd-partyele-state-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    color: #374151;
}

.bd-partyele-state-grid a {
    color: #3b82f6;
}

.font-semibold {
    font-weight: 600;
}

.election-db-vmlink {
    border: none;
    background: none;
    display: flex;
    align-items: center;
    color: #3b82f6;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    gap: 4px;
}

.viewmore-text {
    color: #3b82f6;
}

.viewmore-right-icon {
    width: 20px;
    height: 20px;
    transform: rotate(-90deg);
}

.keyleaders-container {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.db-keyleader {
    text-align: center;
}

.db-keyleader img {
    -o-object-fit: cover;
    object-fit: cover;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    width: 100%;
    aspect-ratio: 302 / 402;
    margin-bottom: 8px;
}

.db-keyleader-logo img {
    aspect-ratio: 1 / 1 !important;
}

.db-keyleader-name {
    color: #111827;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}

.election-db-leaders,
.assambly-ele {
    margin-bottom: 32px;
}

.elections-details-btn {
    text-align: center;
    margin-bottom: 32px;
}

.elections-details-btn button {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    padding: 12px 32px;
    background: #003332;
    border-radius: 8px;
    border: none;
    transition-duration: .15s;
    cursor: pointer;
}

.elections-details-btn button:hover {
    background: #004443;
}

.political-parties-subheading {
    margin-bottom: 24px;
}

.political-parties-subheading p {
    color: #374151;
    font-weight: 500;
    margin-bottom: 16px;
}

.db-loksabha-ele-dtls {
    padding: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    gap: 16px;
    background-image: linear-gradient(to right, #eff6ff, #fef7ee);
}

.flex-1 {
    flex: 1 1 0%;
}

.db-loksabha-ele-parties-flex {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.db-loksabha-ele-parties-flex:last-child {
    margin-bottom: 0px;
}

.loksabha-ele-party-bar {
    width: 3px;
    height: 32px;
    margin-right: 12px;
}

.orange {
    border-left: 4px solid #f97316;
}

.india {
    border-left: 4px solid #2563eb;
}

.others {
    border-left: 4px solid #6b7280;
}

.loksabha-ele-party-count {
    color: #111827;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
}

.parties-flex-shadow .loksabha-ele-party-count {
    font-size: 24px;
    line-height: 32px;
}

.db-loksabha-ele-cand {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    padding: 16px;
    border-radius: 8px;
    padding: 16px;
    background: #fff;
    gap: 12px;
    align-items: center;
    display: flex;
}

.db-loksabha-ele-cand img {
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    width: 80px;
    height: 96px;
}

.loksab-posname {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: #111827;
}

.loksab-candname {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: #111827;
}

.loksab-candname a {
    color: #3b82f6;
}

.loksab-partyname {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    white-space: nowrap;
    color: #111827;
}

.db-loksabha-ele-container {
    margin: 40px 0px;
}

.db-loksabha-ele-gridparties {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    height: 100%;
}

.db-loksabha-ele-gridparties .db-loksabha-ele-parties-flex {
    margin-bottom: 0px;
}

.parties-flex-shadow {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    padding: 16px;
    border-radius: 8px;
    max-height: 120px;
    flex-direction: column;
    background: #fff;
    justify-content: center;
}

.loksabha-ele-party-name {
    color: #4b5563;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 4px;
}

.db-loksabha-ele-news-block {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition-duration: .15s;
}

.db-loksabha-ele-news-thumb {
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.db-loksabha-ele-news-thumb img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.db-loksabha-ele-news-dtls {
    padding: 16px;
}

.db-loksabha-ele-news-dtls h3 {
    color: #111827;
    font-weight: 700;
    overflow: hidden;
    margin-bottom: 8px;
    text-overflow: ellipsis;
    font-size: 16px;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.db-loksabha-ele-news-dtls p {
    color: #4b5563;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    line-height: 20px;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.db-loksabha-ele-news {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.db-loksabha-ele-news-blocks {
    position: relative;
    width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    scrollbar-width: none;
    white-space: nowrap;
    transition: all 0.2s;
    user-select: none;
    cursor: pointer;
}

.db-loksabha-ele-news-block {
    display: inline-block;
    vertical-align: top;
    position: relative;
    margin-right: 17px;
    width: calc(33.333% - 16px);
}

.db-loksabha-ele-news-block:last-child {
    margin-right: 0px;
}

.db-loksabha-nav {
    width: 100px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.db-btn-prev-nav,
.db-btn-next-nav {
    border-radius: 50%;
    background-color: #ffffff;
    width: 38px;
    height: 38px;
    cursor: pointer;
    margin: auto;
    text-indent: -9999px;
    border: 1px solid #d1d5db;
    position: relative;
}

.db-btn-prev-nav svg,
.db-btn-next-nav svg {
    position: absolute;
    content: '';
    left: 9px;
    top: 9px;
    color: #374151;
    width: 20px;
    height: 20px;
}

.db-loksabha-ele-news-block:hover {
    box-shadow: 0px 2px 6px rgba(60, 64, 67, 0.16);
}

/* Election-bihar-page-style */

.db-election-container {
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 16px;
    background: #ffffff;
    margin: 40px 0px;
}

.db-election-common-title {
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.street-assembly-results {}

.street-assembly-results-title {
    color: #374151;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 8px;
}

.street-assembly-results ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 4px;
    column-gap: 24px;
}

.street-assembly-results ul li {
    list-style-type: disc;
    margin-left: 17px;
}

.street-assembly-results ul li::marker {
    color: #9ca3af;
}

.street-assembly-results ul li span {
    color: #2563eb;
    font-size: 14px;
    line-height: 20px;
    cursor: pointer;
}

.street-candidates-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.street-candidates-party-block {
    padding: 12px;
    background: #f9fafb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 8px;
}

.street-candidates-party-block:hover {
    background: #f3f4f6;
}

.street-candidates-party {
    background: #ffedd5;
    border-radius: 8px;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    display: flex;
    width: 56px;
    height: 56px;
}

.street-candidates-party img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.street-candidates-name-block {
    text-align: center;
}

.street-candidates-name {
    color: #111827;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
}

.street-candidates-partyname {
    color: #4b5563;
    font-size: 12px;
    line-height: 16px;
    margin-top: 2px;
}

.street-candidates-party-block.winner {
    border: 2px solid #22c55e;
    background: #f0fdf4;
    position: relative;
}

.street-candidates-party-block.winner:hover {
    background: #f0fdf4;
}

.winner-text {
    position: absolute;
    border-radius: 9999px;
    top: -8px;
    right: -8px;
    color: #fff;
    background: #22c55e;
    padding: 4px 8px;
    font-size: 12px;
    line-height: 16px;
    font-weight: 700;
}

.db-election-browse-section {
    margin-bottom: 24px;
}

.browseyear-text {
    color: #374151;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 12px;
}

.election-year {
    color: #374151;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    padding: 8px 16px;
    background: #f3f4f6;
    border-radius: 8px;
    white-space: nowrap;
    cursor: pointer;
    border: none;
}

.election-year.active {
    background: #003332;
    color: #fff;
}

.election-year:hover {
    background: #e5e7eb;
}

.election-year.active:hover {
    background: #003332;
    color: #fff;
}

.browseyear-arrow svg {
    color: #374151;
    width: 16px;
    height: 16px;
}

.browseyear-arrow {
    display: flex;
    background: #f3f4f6;
    border-radius: 9999px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    cursor: pointer;
    position: absolute;
    z-index: 10;
    border: none;
}

.browseyear-menu {
    display: flex;
    align-items: center;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    scroll-behavior: smooth;
    gap: 8px;
    width: 525px;
    margin: 0 auto;
}

.browseyear-menu-scroll {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.leftarrow {
    left: 0;
}

.rightarrow {
    right: 0;
}

.browseyear-arrow:hover {
    background: #e5e7eb;
}

.db-ele-street-results-tabcontainer {}

.street-results-year {
    color: #111827;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 16px;
}

.street-results-year-table {
    overflow-x: auto;
}

.street-results-year-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.street-results-year-table table tr:hover {
    background: #f9fafb;
}

.street-results-year-table table tr:nth-child(even) {
    background: #f9fafb;
}

.street-results-year-table table tr.winnet-tr:hover {
    background: #f0fdf4;
}

.street-results-year-table table th {
    background: #f3f4f6;
    border-bottom: 1px solid #e5e7eb;
    color: #111827;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    text-align: left;
    padding: 12px 16px;
    white-space: nowrap;
}

.text-right {
    text-align: right !important;
}

.street-results-year-table table td {
    padding: 16px;
    border-bottom: 1px solid #e5e7eb;
    color: #111827;
    font-size: 14px;
}

.winnet-tr {
    background: #f0fdf4;
}

.winner-text-td {
    display: flex;
    gap: 5px;
    align-items: flex-start !important;
    flex-direction: column;
}

.winner-text-td span {
    font-weight: 700;
    color: #111827;
    font-size: 14px;
    line-height: 20px;
}

.winner-text-td .winner {
    color: #ffffff;
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    padding: 2px 8px;
    background: #22c55e;
    border-radius: 4px;
}

.street-results-year-table table td:nth-child(2) {
    font-weight: 500;
}

.viewall-btn-block {
    text-align: center;
    margin-top: 24px;
}

.viewall-btn {
    padding: 10px 24px;
    background: #003332;
    border-radius: 8px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    border: none;
}

.viewall-btn:hover {
    background: #004443;
}

.lead {
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    color: #16a34a;
}

.total {
    font-weight: 600;
}

.tab-content.active {
    display: block;
}

.tab-content {
    display: none;
}

.db-ele-strikerate {
    border-radius: 8px;
    overflow: hidden;
    height: 8px;
    display: flex;
}

.inc {
    background: #3b82f6;
}

.jds {
    background: #22c55e;
}

.db-ele-strikerate-dtls {
    display: flex;
    margin-top: 8px;
}

.strikerate-perc {
    color: #111827;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
}

.strikerate-wontext {
    font-size: 16px;
    line-height: 24px;
    color: #111827;
}

.db-ele-street-pastresults {}

.db-ele-street-pastresults {
    overflow-x: auto;
}

.db-ele-street-pastresults table {
    width: 100%;
    border-collapse: collapse;
}

.db-ele-street-pastresults table th {
    background: #f3f4f6;
    border-bottom: 1px solid #e5e7eb;
    color: #111827;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    text-align: left;
    padding: 12px 16px;
    white-space: nowrap;
}

.db-ele-street-pastresults table td {
    padding: 16px;
    border-bottom: 1px solid #e5e7eb;
    color: #111827;
    font-size: 14px;
}

.db-ele-street-pastresults table td:last-child {
    text-align: right;
}

.db-ele-street-pastresults table tr:hover {
    background: #f9fafb;
}

.db-ele-street-pastresults table tr:nth-child(even) {
    background: #f9fafb;
}

.street-pastresults-topline {
    color: #111827;
    font-weight: 600;
}

.pastresults-lead {
    color: #4b5563;
    font-weight: 500;
    white-space: nowrap;
}

.db-election-assmb-stateconsti {
    padding: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.db-election-assmb-stateconsti p {
    color: #4b5563;
    font-size: 14px;
    line-height: 20px;
    margin-top: 4px;
}

.db-state-sublist {
    padding: 16px;
}

.db-state-sublist-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    row-gap: 4px;
    column-gap: 16px;
}

.db-state-sublist-grid a {
    color: #003332;
    font-size: 14px;
    line-height: 20px;
    padding: 4px 0px;
    transition-duration: .15s;
}

.db-state-sublist-grid a:hover {
    color: #111827;
    text-decoration-line: underline;
}

.db-ele-stateFAQ {
    padding: 16px;
}

.stateFAQ {
    padding: 16px 0px;
    border-bottom: 1px solid #e5e7eb;
}

.stateFAQ-ques {
    color: #111827;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.stateFAQ-ans {
    color: #374151;
    font-size: 14px;
    line-height: 26px;
}

.stateFAQ:first-child {
    padding-top: 0px;
}

.stateFAQ:last-child {
    padding-bottom: 0px;
    border-bottom: 0px;
}

.disclaimer-head {
    color: #111827;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 12px;
}

.disclaimer-desc {
    font-size: 14px;
    line-height: 26px;
    color: #374151;
}

.disclaimer-desc a {
    text-decoration: underline;
    color: #003332;
}

.disclaimer-desc a:hover {
    color: #111827;
}


/* Election-biharAssembly-page-style */

.year-partys-results-count {
    padding: 16px;
    background-image: linear-gradient(to right, #eff6ff, #fef7ee);
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.year-partys-results-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.year-partys-result {
    padding: 12px;
    text-align: center;
    border-radius: .5rem;
}

.bjp-bg {
    background: #ffedd5!important;
}

.jdu-bg {
    background: #dcfce7!important;
}

.rjd-bg {
    background: #dbeafe !important;
}

.oth-bg {
    background: #f3f4f6!important;
}

.bjp-color {
    color: #c2410c!important;
}

.jdu-color {
    color: #15803d!important;
}

.rjd-color {
    color: #15803d!important;
}

.oth-color {
    color: #15803d!important;
}

.year-result-party {
    margin-bottom: .25rem;
    color: #374151;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}

.year-result-count {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
}

.db-elec-phases-container {
    padding: 16px;
}

.db-phases-block {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    gap: 8px;
}

.db-phases-block button {
    transition-duration: .15s;
    color: #374151;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    padding: 10px 24px;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    background: #f3f4f6;
}

.phase-btn.active {
    color: #fff;
    background: #003332;
}

.db-phases-block button:hover {
    background: #e5e7eb;
}

.db-phases-block button.active:hover {
    color: #fff;
    background: #003332;
}

.constituencies-text {
    color: #374151;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 12px;
}

.constituencies-menu-scroll {
    margin-bottom: 24px;
}

.constituencies-menu-scroll {
    display: flex;
    align-items: center;
    position: relative;
    gap: 8px;
}

.pill {
    color: #374151;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    padding: 8px 16px;
    background: #f3f4f6;
    border-radius: 8px;
    white-space: nowrap;
    cursor: pointer;
    border: none;
}

.ele-timeline-text {
    color: #374151;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 16px;
}

.timeline-container {
    scrollbar-width: none;
    padding: 0px 8px;
    overflow-x: auto;
    margin: 0px -8px;
}

.timeline-block {
    position: relative;
    padding-top: 24px;
    padding-bottom: 8px;
}

.timeline-line {
    position: absolute;
    left: 0;
    right: 0;
    top: 32px;
    height: 2px;
    background: #e5e7eb;
}

.timeline-blocks-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.timeline-content {
    position: relative;
    text-align: center;
}

.timeline-dot {
    background: #003332;
    border: 4px solid #fff;
    border-radius: 9999px;
    width: 8px;
    height: 8px;
    z-index: 10;
    top: 0;
    left: 50%;
    position: absolute;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.timeline-bottomcontent {
    margin-top: 32px;
}

.timeline-notif {
    color: #111827;
    font-size: 12px;
    line-height: 20px;
}

.timeline-date {
    color: #111827;
    font-size: 14px;
    line-height: 20px;
    margin-top: 4px;
    font-weight: 600;
}

.phase-active {
    display: block !important;
}

.tab-phase-contant {
    display: none;
}

.state-assmbly-dropdown {
    position: relative;
}

.assmbly-dropdown-btn {
    text-align: left;
    transition-duration: .15s;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid #d1d5db;
    width: 100%;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.assmbly-dropdown-btn:hover {
    border: 1px solid #9ca3af;
}

.selectedText {
    color: #6b7280;
}

.assmbly-arrow {
    width: 20px;
    height: 20px;
}

.assmbly-dropdown-btn .assmbly-arrow svg {
    color: #9ca3af;
    width: 20px;
    height: 20px;
}

.assmbly-dropdown-menu {
    display: none;
    position: absolute;
    background: #fff;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    border-radius: 8px;
    width: 100%;
    max-height: 400px;
    z-index: 100;
    margin-top: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.assmbly-search-box {
    padding: 12px;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
}

.sub-filtersearch {
    padding: 8px 16px 8px 40px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
    font-size: 16px;
    color: #9ca3af;
}

.ele-search-icon {
    position: absolute;
    width: 16px;
    height: 16px;
    top: 37%;
    left: 25px;
    color: #9ca3af;
}

#list {
    overflow-y: auto;
    max-height: 320px;
    overflow-x: inherit;
}

#list li {
    padding: 12px 16px;
    border-bottom: 1px solid #f3f4f6;
    color: #111827;
    font-size: 14px;
    line-height: 20px;
}

#list li:hover {
    background: #f9fafb;
}

.assmbly-dropdown-menu.active {
    display: block !important;
}

.assmbly-dropdown-btn.active .assmbly-arrow svg {
    transform: rotate(-180deg);
}

#selectedText {
    color: #6b7280;
    font-size: 16px;
}

.election-loksabha-phases-det-states {
    height: 155px;
    overflow-y: auto;
    direction: ltr;
    scrollbar-width: thin;
    margin: 0px;
    padding: 0;
    margin-bottom: 8px;
}

.election-loksabha-phases-det-states ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.election-loksabha-phases-det-states ul li {
    position: relative;
}

.election-loksabha-phases-det-states ul li a {
    color: #374151;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    padding: 8px 16px;
    background: #f3f4f6;
    border-radius: 8px;
    white-space: nowrap;
    cursor: pointer;
    border: none;
    display: block;
}

.phase-content.active {
    display: block;
}

.phase-content {
    display: none;
}



/* political-parties-style */

.db-political-parties-fliter-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.dropdown {
    position: relative;
    width: 100%;
}

.dropdown-btn {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    cursor: pointer;
    box-sizing: border-box;
}

.pp-arrow {
    font-size: 14px;
    width: 20px;
    height: 20px;
}

.pp-arrow svg {
    width: 20px;
    height: 20px;
    color: #9ca3af;
}

/* Menu */
.dropdown-menu {
    position: absolute;
    top: 118%;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    border: 1px solid #d1d5db;
    display: none;
    z-index: 100;
}

.dropdown-menu.active {
    display: block;
}

/* Search */
.search-box {
    padding: 12px;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 8px 16px 8px 40px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    font-size: 16px;
    box-sizing: border-box;
}

/* List */
.dropdown-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 260px;
    overflow-y: auto;
}

.dropdown-menu li {
    padding: 8px 16px;
    cursor: pointer;
    color: #111827;
    font-size: 16px;
    line-height: 24px;
}

.dropdown-menu li:hover {
    background: #f3f4f6;
}

.dropdown-btn.active .pp-arrow svg {
    transform: rotate(-180deg);
}

.dropdown-btn .pp-arrow {}

/* Rotate when open */
.dropdown.open .pp-arrow {
    transform: rotate(180deg);
}

.db-ele-politician-party-table {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 32px;
}

.db-ele-politician-party-table table {
    width: 100%;
    border-collapse: collapse;
}

.db-ele-politician-party-table table th {
    color: #111827;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    text-align: left;
    padding: 12px 16px;
    background: #f3f4f6;
    white-space: nowrap;
}

.db-ele-politician-party-table table td {
    color: #111827;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-align: left;
    padding: 16px;
}

.db-ele-politician-party-table table tr {
    border-bottom: 1px solid #e5e7eb;
}

.db-ele-politician-party-table table tr:hover {
    background: #f9fafb;
}

.db-ele-politician-party-table table tr:last-child {
    border-bottom: none;
}

.pp-logo {
    border: 1px solid #e5e7eb;
    overflow: hidden;
    border-radius: 8px;
    width: 64px;
    height: 64px;
}

.pp-logo img {
    width: 100%;
    height: 100%;
    display: block;
}

.db-ele-politician-party-table table tr:nth-child(even) {
    background: #f9fafb;
}


.theme-light {
    --breakingnews-bg-color: #f2f5f5;
    --breaking-news-title-color: #013332;
    --breaking-news-font-color: #141a20;
    --oi-ele-thispage-link-color: #f4f4f4;
}

.theme-dark {
    --breakingnews-bg-color: #141a20;
    --breaking-news-title-color: #ffffff;
    --breaking-news-font-color: #ededed;
    --oi-ele-thispage-link-color: #f4f4f4;
}

.oi-breakingnews-wrapper {
    padding: 24px 16px;
    margin-bottom: 24px;
    background: var(--breakingnews-bg-color);
    border-radius: 12px;
}

.oi-breakingnews-title {
    padding: 4px 8px 0 0px;
    font-size: 22px;
    font-weight: bold;
    color: var(--breaking-news-title-color);
    line-height: 28px;
    margin: 0 0px 0 0px;
    font-family: "Epilogue", Times, Arial, Helvetica, sans-serif;
}

.oi-breakingnews-slide {
    padding: 0;
    position: relative;
    margin: 6px 0;
}

.oi-breakingnews-slide ul {
    white-space: nowrap;
    width: 100%;
    overflow-x: auto;
    padding: 0;
}

.oi-breakingnews-slide ul::-webkit-scrollbar {
    display: none;
}

.oi-breakingnews-slide ul li {
    font-size: 15px;
    color: var(--breaking-news-font-color);
    vertical-align: top;
    display: inline-block;
    position: relative;
    padding: 12px 40px 12px 0;
    line-height: 26px;
    font-weight: bold;
    white-space: normal;
}

.breakingSlides {
    display: none;
}

.oi-breakingnews-slide ul li a {
    color: var(--breaking-news-font-color);
    text-decoration: none;
}

.oi-breaking-next-arrow {
    background: #28313a;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    box-shadow: 0px 1.6px 4.8px 0px #00000029;
    position: absolute;
    right: 5px;
    top: 6px;
    cursor: pointer;
}

.oi-breaking-next-arrow i {
    background: url(images/darkmode/next-arrow-white.svg) no-repeat 0 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 16px;
    height: 16px;
}


.ds-breadcrumb {
    font-size: 14px;
    color: #4B5563;
    line-height: 20px;
    display: flex;
    align-items: center;
}

.ds-breadcrumb a {
    color: #4B5563;
}

.ds-breadcrumb-label {
    font-size: 14px;
    color: #111827;
    line-height: 20px;
}

.ds-breadcrumb-arrow {
    margin: 0 8px;
    display: inline-block;
    background: url(https://images.gizbot.com/images/breadcrumb-arrow-1765189228597.svg) no-repeat 0 0;
    width: 6px;
    height: 10px;
}

.db-ele-eci-source {
    text-align: right;
    color: #111827;
    font-size: 14px;

}

.mb16 {

    margin-bottom: 16px;
}

.anirc-bg {
    background: #d4c1417d !important;
}

.dmk-bg {
    background: #f2c20787 !important;
}

.ind-bg {
    background: #81060687;
}

.oth-bg {
    background: #05574d85!important;
}

.cpm-bg {
    background: #9800008c!important;
}

.inc-bg {
    background: #00cc338c!important;
}

.cpi-bg {
    background: #de000087!important;
}

.dmk-bg {
    background: #f2c2078a!important;
}

.aiadmk-bg {
    background: #33ad4991!important;
}

.aitc-bg {
    background: #00137f85!important;
}

.bjp-bg {
    background: #f6822087!important;
}

.aiudf-bg {
    background: #00f7008f!important;
}

.jdu-color {
    color: #003332!important;
}

.jds-bg {

    background-color: #007de78c!important;
}

.brs-bg {

    background-color: #809fff8c!important;
}

.ainrc-bg {

    background-color: #D4C1418C!important;
}

.rsmp-bg {
    background-color: #C628288C!important;
}

.sp-bg {

    background: #e700008c!important;
}

.jd-bg {
 background:#00ffff8c!important;

}
.telugudesam-bg{

    background:#8106068C!important;
}
.jsp-bg{
    background:#D72A2C8C!important;
}
.ysrcp-bg{
    background:#0066CC8C!important;
}
.shs-bg{
    background: #FEB8378C!important;
}
.ncp-bg{
    background: #d2013b8C!important;
}