.counter-div {
    display: flex;
    flex-direction: row;
    gap: 24px;
    justify-content: center;
}
.counter-element {
    width: fit-content;
    display: flex;
    flex-direction: column;
}
.number-div {
    background-color: #012a2f;
    border-radius: 11.957px;
    background: linear-gradient(90deg, #FF9811 -0.03%, #E08700 54.15%, #AA6A16 100%);
    border-radius: 5px;
    width: 40px;
    padding: 5px 0 3px 0;
    font-size: 20px;
    font-weight: 600;
    color: white;
    overflow: hidden;
    position: relative;
    margin-bottom: 5px;
}
.element-text {
    margin-bottom: 5px;
    /*font-size: 0.75rem;*/
    font-weight: 600;
    color: #012a2f;
}
.counter-animate {
    animation: slideInFromTop 0.5s ease-in-out;
}
.show {
    opacity: 1;
}
@media screen and (max-width: 450px) {
    .number-div {
        width: 60px;
    }
    .counter-div {
        gap: 5px;
    }
    .et-desktop {
        display: none;
    }
}
@media screen and (min-width: 451px) {
    .et-mobile {
        display: none;
    }
}

@keyframes slideInFromTop {
    from {
        transform: translateY(-80%);
        opacity: 0;
    }
    to {
        transform: translateY(0%);
        opacity: 1;
    }
}
