﻿@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Oswald:wght@300;400;500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: #fff;
    width: 100%;
    margin: 0;
}

.fixed-header,
.top-banner {
    width: 100%;
    left: 0;
}
/* Fixed Header */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    height: 86px;
    z-index: 1000;
}

    .fixed-header img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Top Banner */
.top-banner {
    position: fixed;
    top: 86px;
    left: 0;
    height: 86px;
    background: #FF0000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.banner-content {
    text-align: center;
}

.banner-text {
    font-family: 'Lato';
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.contest-dropdown #idcontest {
    font-weight: 400;
}

.banner-contact {
    font-family: 'Lato';
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
}

.banner-link {
    color: #FFFFFF;
    text-decoration: underline;
}

/* Main Content */
.main-content {
    margin-top: 172px;
    background-image: url('https://c.animaapp.com/mj6v8quyWRYaSV/img/main.png');
    background-size: cover;
    padding: 24px 0 52px;
}
/*
.container {
    width: 1140px;
    margin: 0 auto;
}*/

/* Navigation Tabs */
.nav-tabs {
    display: flex;
    gap: 16px;
    background: #EFEFEF;
    border: 1px solid #767676;
    border-radius: 10px;
    padding: 5px 6px;
    margin-bottom: 10px;
    width: 50%;
}

.tab-button {
    flex: 1;
    height: 29px;
    background: transparent;
    font-family: 'Lato';
    font-size: 16px;
    line-height: 19px;
    color: #6F825F;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s;
    border: 1px solid #6F825F;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .tab-button.active {
        background: #E5E0BF;
        color: #111111;
    }

/* Contest Dropdown */
.contest-dropdown {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #EFEFEF;
    border: 1px solid #767676;
    border-radius: 10px;
    padding: 10px 16px;
    height: 40px;
    margin-bottom: 10px;
    cursor: pointer;
}

.dropdown-text {
    font-family: 'Lato';
    font-size: 16px;
    line-height: 19px;
    color: #655D5B;
}

/* Leaderboard Section */
.leaderboard-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.leaderboard-section {
    background: linear-gradient(180deg, #000000 0%, #222222 100%);
    border-radius: 14px;
    padding: 30px 90px;
    margin-bottom: 20px;
}

.leaderboard-table th, td {
    border: none;
    background: transparent;
    font-weight: 400;
}

.leaderboard-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    color: #FFFFFF;
    text-align: left;
    margin: 0px;
}

/* Podium */
.podium-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0;
    height: 380px;
}

.podium-position {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
    position: relative;
}

    .podium-position.first {
        order: 2;
    }

    .podium-position.second {
        order: 1;
    }

    .podium-position.third {
        order: 3;
    }

.crown {
    width: 40px;
    height: 32px;
    margin-bottom: 8px;
}

.podium-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #FFFFFF;
    margin-bottom: 10px;
}

.podium-name {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.podium-points {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 20px;
}

    .podium-points.gold {
        color: #FFD700;
    }

    .podium-points.silver {
        color: #C0C0C0;
    }

    .podium-points.bronze {
        color: #CD7F32;
    }

.podium-stand {
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.stand-gold {
    height: 180px;
    background: linear-gradient(180deg, #D4AF37 0%, #B8941F 100%);
}

.stand-silver {
    height: 120px;
    background: linear-gradient(180deg, #C0C0C0 0%, #A8A8A8 100%);
}

.stand-bronze {
    height: 80px;
    background: linear-gradient(180deg, #CD7F32 0%, #B87333 100%);
}

.stand-number {
    font-weight: 700;
    text-align: center;
}

.stand-gold .stand-number {
    font-size: 80px;
    color: #4B3900;
}

.stand-silver .stand-number,
.stand-bronze .stand-number {
    font-size: 60px;
}

.stand-silver .stand-number {
    color: #004E29;
}

.stand-bronze .stand-number {
    color: #04557A;
}

/* Leaderboard Table */
.leaderboard-table {
    border: 1px solid #525252;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
}

.table-header {
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid #525252;
    padding: 12px 24px;
    height: 44px;
    align-items: center;
}

.table-row {
    border-bottom: 0.77px solid rgba(49, 65, 87, 0.5);
    padding: 12px 24px;
    height: 54px;
    align-items: center;
}

    .table-row:last-child {
        border-bottom: none;
    }

.col-rank {
    font-size: 16px;
    color: #FFFFFF;
}

.col-user {
    font-size: 16px;
    color: #FFFFFF;
}

.avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.col-points {
    font-size: 16px;
    color: #FFFFFF;
}

/* Load More Button */
.load-more {
    width: 154px;
    height: 49px;
    background: #E5E0BF;
    border: none;
    font-size: 16px;
    color: #000000;
    cursor: pointer;
    display: block;
    margin: 0 auto 20px;
}

/* Notes */
.notes {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

    .notes p {
        font-size: 14px;
        color: #FFFFFF;
        margin-bottom: 0px;
    }

.red {
    color: #FF0000;
}

/* Contest Details */
.contest-details {
    background: #FFFFFF;
    border-radius: 14px;
    overflow: hidden;
}

.contest-header {
    background: #000000;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .contest-header h2 {
        font-size: 24px;
        color: #FA2B36;
    }

.contest-image {
    width: 100%;
    display: block;
}

/* Newsletter */
.newsletter {
    background: #FF0000;
    padding: 30px 0;
}

.newsletter-container {
    width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

.newsletter-content {
    flex: 1;
}

.newsletter-title {
    font-family: 'Oswald';
    font-weight: 500;
    font-size: 30px;
    line-height: 36px;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.newsletter-text {
    font-family: 'Lato';
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
}

.newsletter-form {
    width: 372px;
    position: relative;
}

.newsletter-input {
    width: 100%;
    height: 47px;
    padding: 13px 125px 14px 15px;
    border: none;
    border-radius: 5px;
    font-family: 'Lato';
    font-size: 16px;
    color: #888888;
}

    .newsletter-input::placeholder {
        color: #888888;
    }

.newsletter-btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 108px;
    height: 47px;
    background: #000000;
    border: none;
    border-radius: 0 5px 5px 0;
    font-family: 'Oswald';
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0.5px;
    color: #FFFFFF;
    cursor: pointer;
}

/* Footer */
.footer {
    background-image: url('https://c.animaapp.com/mj6v8quyWRYaSV/img/footer.png');
    background-size: cover;
    padding: 25px 0;
}

.footer-links {
    background: #2F2D24;
    padding: 26px 0 22px;
    margin-bottom: 25px;
}

.footer-links-container {
    width: 1170px;
    margin: 0 auto;
    display: flex;
    gap: 0;
}

.footer-col {
    width: 292.5px;
    padding: 0 15px 12px;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

    .footer-col:nth-child(2) {
        width: 195px;
    }

    .footer-col h3 {
        font-family: 'Oswald';
        font-weight: 300;
        font-size: 18px;
        line-height: 22px;
        color: #FFFFFF;
        text-transform: uppercase;
    }

    .footer-col a {
        font-family: 'Lato';
        font-weight: 700;
        font-size: 16px;
        line-height: 20px;
        color: #E5E0BF;
        text-decoration: none;
    }

        .footer-col a:hover {
            text-decoration: underline;
        }

.footer-bottom {
    width: 585px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 27px;
}

.footer-logo {
    width: 100%;
}

.footer-legal {
    border: 4px solid #FFFFFF;
    padding: 17px 30px 13px;
}

    .footer-legal p {
        font-family: 'Lato';
        font-size: 16px;
        line-height: 20px;
        color: #FFFFFF;
        text-align: center;
    }

    .footer-legal a {
        color: #FFFFFF;
        text-decoration: none;
    }

        .footer-legal a:hover {
            text-decoration: underline;
        }

.copyright {
    font-family: 'Lato';
    font-size: 14px;
    line-height: 18px;
    color: #FFFFFF;
    text-align: center;
    padding-bottom: 10px;
}


.frame-4 {
    display: flex;
    flex-direction: column;
    width: 946px;
    align-items: center;
    position: relative;
    flex: 0 0 auto;
    margin-left: -3.00px;
    margin-right: -3.00px;
    margin-bottom: 2px;
}

.group {
    position: relative;
    width: 600px;
    height: 253px;
}


.frame-5 {
    display: flex;
    flex-direction: column;
    width: 117px;
    align-items: center;
    gap: 8.32px;
    position: absolute;
    top: 84px;
    left: 431px;
}

.img {
    position: relative;
    width: 125.7px;
    height: 41.62px;
    margin-left: -4.58px;
    margin-right: -4.58px;
}

.rectangle {
    position: relative;
    width: 41.62px;
    height: 41.62px;
    border-radius: 2rem;
    border: 1px solid white;
}

.text-wrapper-9 {
    position: relative;
    align-self: stretch;
    font-weight: 400;
    color: #ffffff;
    font-size: 14px;
    text-align: center;
    letter-spacing: 0;
    line-height: 14px;
}

.text-wrapper-10 {
    position: relative;
    width: fit-content;
    font-weight: 700;
    color: #4eb2e1;
    font-size: 14px;
    text-align: center;
    letter-spacing: 0;
    line-height: 14px;
    white-space: nowrap;
}

.frame-6 {
    display: flex;
    flex-direction: column;
    width: 117px;
    height: 134px;
    align-items: center;
    gap: 8.32px;
    position: absolute;
    top: 57px;
    left: 57px;
}

.text-wrapper-11 {
    position: relative;
    width: fit-content;
    margin-bottom: -2.07px;
    font-weight: 700;
    color: #43d7a8;
    font-size: 14px;
    text-align: center;
    letter-spacing: 0;
    line-height: 14px;
    white-space: nowrap;
}

.frame-7 {
    display: flex;
    flex-direction: column;
    width: 117px;
    height: 87px;
    align-items: center;
    gap: 8.32px;
    position: absolute;
    top: 0;
    left: 242px;
}

.rectangle-2 {
    position: relative;
    width: 41.62px;
    height: 41.62px;
    object-fit: cover;
    border-radius: 2rem;
    border: 1px solid white;
}

.text-wrapper-12 {
    position: relative;
    width: fit-content;
    font-weight: 700;
    color: #eabb26;
    font-size: 14px;
    text-align: center;
    letter-spacing: 0;
    line-height: 14px;
    white-space: nowrap;
}

.image {
    position: absolute;
    top: -16px;
    left: calc(50.00% - 12px);
    width: 24px;
    height: 19px;
}


.podium {
    position: absolute;
    top: calc(50.00% - 74px);
    left: calc(50.00% - 300px);
    width: 600px;
    height: 201px;
    box-shadow: 0px 41.62px 33.3px #79603612;
}

.bronze-top {
    top: 139px;
    height: 30px;
    position: absolute;
    left: 393px;
    width: 201px;
}

.bronze-front {
    top: 156px;
    height: 52px;
    position: absolute;
    left: 393px;
    width: 200px;
}

.text-wrapper-13 {
    position: absolute;
    top: 155px;
    left: 489px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0px 0px 8.32px #00000080;
    font-weight: 700;
    color: #04557a;
    font-size: 40px;
    text-align: center;
    letter-spacing: 0;
    line-height: 40px;
    white-space: nowrap;
}

.silver-top {
    top: 115px;
    width: 201px;
    height: 17px;
    position: absolute;
    left: 0;
}


.silver-front {
    top: 127px;
    width: 208px;
    height: 80px;
    position: absolute;
    left: 0;
}


.text-wrapper-14 {
    position: absolute;
    top: 142px;
    left: 89px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0px 0px 8.32px #00000080;
    font-weight: 700;
    color: #004e29;
    font-size: 40px;
    text-align: center;
    letter-spacing: 0;
    line-height: 40px;
    white-space: nowrap;
}

.gold-top {
    top: 47px;
    height: 15px;
    position: absolute;
    left: 200px;
    width: 200px;
}

.gold-front {
    top: 62px;
    height: 140px;
    position: absolute;
    left: 200px;
    width: 200px;
}

.text-wrapper-15 {
    position: absolute;
    top: 84px;
    left: calc(50.00% - 16px);
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0px 0px 11.65px #00000080;
    font-weight: 700;
    color: #4b3900;
    font-size: 60px;
    text-align: center;
    letter-spacing: 0;
    line-height: 60px;
    white-space: nowrap;
}

.shadow-right {
    left: 400px;
    width: 19px;
    height: 80px;
    position: absolute;
    top: 122px;
}

.shadow-left {
    left: 176px;
    width: 25px;
    height: 79px;
    position: absolute;
    top: 122px;
}

#contest {
    background: transparent !important;
}

.contest-dropdown {
    position: relative;
    width: 40%;
    height: 40px;
    background: #EFEFEF;
    border: 1px solid #767676;
    border-radius: 10px;
}

.tabbing-in-oneline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

#idcontest {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 40px 0 16px;
    background: transparent;
    border: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-family: 'Lato';
    font-size: 16px;
    color: #655D5B;
    cursor: pointer;
    z-index: 2; /* IMPORTANT */
}


/* Custom arrow */
.contest-dropdown::after {
    content: "▼";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #655D5B;
    pointer-events: none; /* VERY IMPORTANT */
    z-index: 1;
}


.contest-section.scoring-card {
    /*max-width: 720px;*/
    margin: 0 auto 20px;
    padding: 2rem 2.5rem;
    border-radius: 20px;
    background: radial-gradient(circle at top left, #2e2f3a, #111218);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    color: #f5f7ff;
}

    .contest-section.scoring-card .section-title {
        color: white !important;
        font-size: 2rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        margin-bottom: 0.6rem;
    }

    .contest-section.scoring-card p {
        font-size: 1.2rem;
    }

.scoring-intro {
    font-size: 0.9rem;
    color: #b5b9d6;
    margin-bottom: 1.5rem;
}

/* Table base */

.scoring-table {
    width: 100%;
    border-collapse: collapse; /* modern, tight look */
    [web:3][web:9] font-size: 0.9rem;
}

    .scoring-table thead {
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
    }

        .scoring-table thead th {
            padding: 0.75rem 1rem;
            text-align: left;
            font-weight: 600;
            color: #e6e8ff;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            text-transform: uppercase;
            letter-spacing: 0.06em;
            font-size: 11px;
        }

    /* Rows */

    .scoring-table tbody tr {
        transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
    }

        .scoring-table tbody tr:not(.note-row):hover {
            background: rgba(255, 255, 255, 0.04);
            transform: translateY(-1px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
        }

    .scoring-table td {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        font-size: 1.2rem;
    }

/* Zebra striping for readability */ [web:3][web:9]

.scoring-table tbody tr:nth-child(even):not(.note-row) {
    background: rgba(255, 255, 255, 0.02);
}

/* Badge styles */

.site-rules-bonus-site,
.default-multiplier {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.site-rules-bonus-site {
    background: linear-gradient(90deg, #ffb547, #ff6b3d);
    color: #1a0f08;
    box-shadow: 0 0 0 1px rgba(255, 181, 71, 0.4);
}

.default-multiplier {
    background: rgba(255, 255, 255, 0.06);
    color: #e1e4ff;
}

/* Blocked row */

.blocked-row td {
    color: #ff8a9c;
}

.site-rules-blocked-site {
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 99, 132, 0.5);
    color: #ffcfd7;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Bots note row */

.note-row td {
    border-bottom: none;
    padding-top: 1rem;
    font-size: 1.1rem;
    color: #f6b8c0;
    display: flex;
    align-items: anchor-center;
    gap: 0.45rem;
}

.note-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #ff4e6a;
    color: #fff;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.forallresponsive-cls tbody .table-row td {
    border-bottom: 1px solid rgb(49 65 88 / 50%);
    /*text-align: center;*/
}

.how-it-works {
    background: linear-gradient(180deg, #000000 0%, #222222 100%);
    border-radius: 14px;
    padding: 30px 100px;
    margin-bottom: 20px;
    color: white;
}
/* Mobile */

.forallresponsive-cls thead .table-header .col-rank {
    padding-left: 15px;
}

.forallresponsive-cls tbody .col-rank {
    padding-left: 15px;
}

.new-leader-img-cls-adding img {
    width: 100%;
}

.new-how-it-cls-adding img {
    width: 100%;
}

.how-it-works-list.ui-corner-all {
    padding-left: 15px;
}

@media (max-width: 600px) {
    .contest-section.scoring-card {
        padding: 1.5rem 1.2rem;
        border-radius: 16px;
    }

    .scoring-table thead {
        display: none;
    }

    .scoring-table,
    .scoring-table tbody,
    .scoring-table tr,
    .scoring-table td {
        display: block;
        width: 100%;
    }

        .scoring-table tr {
            margin-bottom: 0.9rem;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.02);
            overflow: hidden;
        }

        .scoring-table td {
            border: none;
            padding: 0.45rem 0.9rem;
        }

            .scoring-table td:first-child {
                font-weight: 600;
                font-size: 0.9rem;
            }

            .scoring-table td:nth-child(2) {
                text-align: right;
            }

    .note-row td {
        margin-top: 0.5rem;
        background: transparent;
    }
}

@media only screen and (max-width: 1024px) {
    .leaderboard-section {
        padding: 30px 50px;
    }

        .leaderboard-section h2 {
            margin-bottom: 20px !important;
        }


    .frame-4 {
        width: 100%;
        margin: 0;
    }

    .contest-info {
        margin-top: 30px !important;
    }

    .new-leader-img-cls-adding img {
        width: 100%;
    }

    .contest-dropdown {
        width: 30%;
    }

    .nav-tabs {
        width: 70%;
        gap: 9px;
    }
}

@media only screen and (max-width: 767px) {
    .leaderboard-title {
        font-size: 26px;
        line-height: 30px;
    }

    .leaderboard-section {
        padding: 30px 15px;
    }

    .frame-7 {
        width: 74px;
        left: -37px;
        justify-content: center;
        top: 89px;
        gap: 4px;
    }

    .frame-6 {
        width: auto;
        left: -121px;
        justify-content: center;
        top: 90px;
        gap: 4px;
    }

    .frame-5 {
        width: auto;
        left: 47px;
        justify-content: center;
        gap: 4px;
        top: 130px;
    }

    .gold-front {
        height: 60px;
        width: 100px;
        left: 248px;
        top: 140px;
    }

    .gold-top {
        width: 101px;
        left: 247px;
        top: 126px;
    }

    .bronze-top {
        width: 89px;
        left: 344px;
        top: 153px;
    }

    .bronze-front {
        width: 88px;
        left: 344px;
        top: 172px;
        height: 32px;
    }

    .silver-top {
        width: 85px;
        left: 164px;
        top: 149px;
    }

    .silver-front {
        width: 88px;
        left: 164px;
        top: 163px;
        height: 40px;
    }

    .podium {
        width: auto;
    }

    .group {
        width: auto;
    }

    .forallresponsive-cls {
        border: none;
        margin-bottom: 15px !important;
    }

    .leaderboard-table {
        margin-bottom: 8px;
    }

    .rectangle {
        width: 31px;
        height: 31px;
    }

    .rectangle-2 {
        width: 31px;
        height: 31px;
    }

    .text-wrapper-9 {
        font-size: 12px;
        word-wrap: break-word;
        max-width: 79px;
    }

    .text-wrapper-11 {
        font-size: 12px;
    }

    .contest-info {
        margin-top: -45px !important;
    }

    .leaderboard-table .table-header th, .leaderboard-table .table-row td {
        font-size: 12px;
        line-height: 16px;
    }

    .table-responsive.forallresponsive-cls .table-row {
        height: 40px;
    }

    .image {
        top: -10px;
    }

    .tab-button {
        font-size: 12px;
        line-height: 16px;
        padding: 0 2px;
    }

    .nav-tabs {
        padding: 9px 5px;
        gap: 6px;
    }

    .tabbing-in-oneline {
        width: 100%;
        flex-direction: column-reverse;
        flex-wrap: wrap;
        gap: 0px;
    }

    .contest-dropdown {
        width: 100%;
    }

    .nav-tabs {
        width: 100%;
    }

    .new-work-it-cls-adding {
        padding: 20px 30px;
    }

    .new-how-it-cls-adding {
        padding: 20px 30px;
    }

    .how-it-works .terms li {
        padding-bottom: 12px;
    }

    .new-how-it-cls-adding img {
        width: 100%;
    }

    .no-data {
        margin-top: 20px !important;
    }
}

.contest-end-date-div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contest-end-timer {
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #c7c7c7;
}

.contest-ended {
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: red !important;
    padding-top: 5px;
}

.enddate-value {
    color: #E5E0BF !important;
}

.timer-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #c7c7c7;
    margin-bottom: 2px;
}

.timer-value {
    font-size: 15px;
    font-weight: 700;
    font-family: 'Segoe UI', monospace;
    color: #E5E0BF;
    letter-spacing: 0px;
}

    .timer-value .days {
        margin-right: 4px;
    }

    .timer-value .time {
        font-variant-numeric: tabular-nums;
    }

.ending-soon .timer-value {
    color: #ff4d4f;
}

@media(max-width: 560px) {
    .contest-end-date-div {
        display: block;
    }

    .contest-end-timer, contest-ended {
        padding-top: 7px;
        font-size: 14px;
    }
}