.eventsstatussection {
    overflow-x: hidden;
}

.eventsstatussection.active {
    overflow-x: scroll;
    scrollbar-width: none;
}

.eventsstatussection .challengesCards {
    padding-inline: 85px;
}

.eventsstatussection .challengesCards .subtitleContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.eventsstatussection .challengesCards .subtitleContainer .subtitle {
    color: #4b4a4a;
    font-family: "Metropolis Semi Bold";
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.36px;
}

.eventsstatussection .challengesCards .description {
    color: #4b4a4a;
    font-family: "Metropolis Regular";
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0.2px;
}

.eventsstatussection .challengesCards .subtitleContainer .arrowContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
}

.eventsstatussection .challengesCards .subtitleContainer .arrowContainer .arrowText {
    color: #4b4a4a;
    font-family: "Metropolis Regular";
    font-size: 20px;
    line-height: 18px;
    letter-spacing: 0.2px;
}

.eventsstatussection .challengesCards .subtitleContainer .arrowContainer .arrowIcon {
    width: 32px;
    height: 32px;
    background-image: url(https://d1gq9jzbezk7fw.cloudfront.net/p/en_US/gv/i/arrow_see-more_blue_icon.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.eventsstatussection .challengesCards .cardsContainer.hide,
.eventsstatussection .challengesCards .emptyMessage.hide,
.eventsstatussection .challengesCards .subtitleContainer .arrowContainer.hide {
    display: none;
}

.eventsstatussection .challengesCards .cardsContainer {
    display: flex;
    align-items: center;
    width: 100%;
    margin-block: 14px 36px;
    overflow-x: scroll;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}
/* Hide scrollbar for Chrome, Safari and Opera */
.eventsstatussection .challengesCards .cardsContainer::-webkit-scrollbar {
    display: none;
}

.eventsstatussection .challengesCards .cardsContainer.displayGrid {
    flex-wrap: wrap;
}

.eventsstatussection .challengesCards .emptyMessage {
    display: flex;
    align-items: center;
    height: 100px;
    background-color: transparent;
    text-align: left;
    font-family: "Metropolis Regular";
    font-size: 24px;
    letter-spacing: 0.24px;
    color: black;
}

/* IPAD */
@media only screen and (max-width: 1024px) {
    .eventsstatussection .challengesCards {
        padding-inline: 40px;
    }
}

/* MOIBLE */
@media only screen and (max-width: 768px) {
    .eventsstatussection .challengesCards {
        padding-inline: 16px;
    }

    .eventsstatussection .challengesCards .subtitleContainer .subtitle {
        font-family: "Metropolis Semi Bold";
        font-size: 18px;
        line-height: 32px;
        letter-spacing: 0.27px;
    }

    .eventsstatussection .challengesCards .description {
        font-family: "Metropolis Regular";
        font-size: 16px;
        line-height: 16px;
        letter-spacing: 0.2px;
    }

    .challengecard .join-container .join-icon {
        width: 30px;
        height: 30px;
    }

    .challengecard
        .challengecard-card
        .challengecard-head
        .progressbar-container
        .circular-progress {
        height: 70px;
        width: 70px;
    }

    .challengecard .challengecard-card .challengecard-head .progressbar-container .entity-icon {
        width: 60px;
        height: 60px;
    }

    .challengecard .entity-name {
        font-size: 16px;
        line-height: 16px;
        letter-spacing: 0.16px;
    }

    .challengecard .metric-container .goal {
        font-size: 14px;
        line-height: 14px;
        letter-spacing: 0.14px;
    }

    .challengecard .dates {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0.14px;
    }
}

/* DARK MODE */
.dark .eventsstatussection .challengesCards .subtitle,
.dark .eventsstatussection .challengesCards .emptyMessage,
.dark .eventsstatussection .challengesCards .description,
.dark .eventsstatussection .challengesCards .subtitleContainer .arrowText {
    color: rgba(255, 255, 255, 0.87);
}

