/* Highlights Widget */

.stat-widget {
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    padding: 2.5rem 0;
}

@media (max-width: 767px) {
    .stat-widget {
        justify-content: space-around;
    }
}

.stat-widget .panel-box {
    position: relative;
    width: 300px;
    padding: 20px 0px;
    margin-bottom: 40px;
    height: 110px;
}

@media (max-width: 767px) {

    .stat-widget .panel-box {
        width: 300px;
        padding: 20px 0px;
        margin: 40px 0px;
    }
}

@media (max-width: 475px) {

    .stat-widget .panel-box {
        width: 300px;
        padding: 20px 0px;
        margin: 40px 0px;
    }
}

.stat-widget .panel {
    color: #fff;
    display: grid;
    -ms-grid-rows: 60px 50px 52px;
    grid-template-rows: 60px 50px 52px;
    -ms-grid-columns: 75px auto;
    grid-template-columns: 75px auto;
    grid-row-gap: 2px;
    grid-column-gap: 12px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: initial;
    margin: initial;
    border: none;
    box-shadow: initial;
}

.stat-widget .panel-icon {
    width: 100%;
    height: 100%;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1 / 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / 2;
}

.stat-widget .panel-header {
    font-family: 'BigNoodleTitling';
    font-size: 1.8rem;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    font-weight: 100;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1 / 2;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / 3;
    text-align: left;
    opacity: 1;
}

.stat-widget .panel-data {
    font-size: 2.5rem;
    font-weight: 700;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2 / 3;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / 3;
    display: flex;
    align-content: flex-start;
    text-align: left;
    opacity: 1;
}

.stat-widget .measure {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0px 0.5rem;
    transform: translateY(7px);
    opacity: 0.8;
}

.stat-widget .value {
    color: #b54d2c;
}

.stat-widget .panel-desc {
    font-size: 1rem;
    line-height: 1.1;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3 / 4;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / 3;
    text-align: left;
    opacity: 0.8;
}


/* Animations */

.stat-widget #first {
    animation: first 1s ease;
}

.stat-widget #second {
    animation: second 1s 1s ease;
    animation-fill-mode: backwards;
}

.stat-widget #third {
    animation: third 1s 2s ease;
    animation-fill-mode: backwards;
}

.stat-widget #arrow {
    animation: arrow 2s ease;
}

.stat-widget .offAnimation {
    animation-name: none;
}

@keyframes first {
    from {
        transform: translateY(80px);
    }

    to {
        transform: translateY(0px);
    }
}

@keyframes second {
    from {
        transform: translateY(120px);
    }

    to {
        transform: translateY(0px);
    }
}

@keyframes third {
    from {
        transform: translateY(160px);
    }

    to {
        transform: translateY(0px);
    }
}

@keyframes arrow {
    from {
        transform: translateY(-40px);
    }

    to {
        transform: translateY(0px);
    }
}

/* SEA Ads */

.stat-widget #ad-text {
    animation: adText 1s ease;
    animation-fill-mode: forwards;
    opacity: 0;
    animation-delay: 0.2s
}

@keyframes adText {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.stat-widget #ad-first-star {
    animation: adFirstStar 1s ease;
    animation-fill-mode: forwards;
    opacity: 0;
    animation-delay: 1s
}

@keyframes adFirstStar {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.stat-widget #ad-second-star {
    animation: adSecondStar 1s ease;
    opacity: 0;
    animation-fill-mode: forwards;
    animation-delay: 1.5s
}

@keyframes adSecondStar {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.stat-widget #ad-third-star {
    animation: adThirdStar 1s ease;
    opacity: 0;
    animation-fill-mode: forwards;
    animation-delay: 2s
}

@keyframes adThirdStar {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* E-Commerce */

.stat-widget #ec-first-star {
    animation: adFirstStar 1s ease;
    animation-fill-mode: forwards;
    opacity: 0;
    animation-delay: 1.5s
}

.stat-widget #ec-second-star {
    animation: adSecondStar 1s ease;
    opacity: 0;
    animation-fill-mode: forwards;
    animation-delay: 2.5s
}

.stat-widget #ec-third-star {
    animation: adThirdStar 1s ease;
    opacity: 0;
    animation-fill-mode: forwards;
    animation-delay: 3s
}

.stat-widget #ec-dollar {
    animation: ecDollar 1s ease;
    animation-fill-mode: forwards;
}

@keyframes ecDollar {
    from {
        transform: translateY(80px);
    }

    to {
        transform: translateY(0px);
    }
}

.stat-widget #ec-euro {
    animation: ecEuro 1s ease;
    animation-fill-mode: forwards;
}

.stat-widget #ec-epaper {
    animation: ecEuro 1s ease;
    animation-fill-mode: forwards;
}

@keyframes ecEuro {
    from {
        transform: translateX(80px);
    }

    to {
        transform: translateX(0px);
    }
}

/* Social Media */

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.stat-widget .sm-first-circle {
    animation: fadeIn 0.5s ease;
    opacity: 0;
    animation-fill-mode: forwards;
    animation-delay: 1s
}

.stat-widget .sm-second-circle {
    animation: fadeIn 0.5s ease;
    opacity: 0;
    animation-fill-mode: forwards;
    animation-delay: 1.5s
}

.stat-widget .sm-third-circle {
    animation: fadeIn 0.5s ease;
    opacity: 0;
    animation-fill-mode: forwards;
    animation-delay: 2s
}

.stat-widget .sm-fourth-circle {
    animation: fadeIn 0.5s ease;
    opacity: 0;
    animation-fill-mode: forwards;
    animation-delay: 2.5s
}

.stat-widget .sm-fifth-circle {
    animation: fadeIn 0.5s ease;
    opacity: 0;
    animation-fill-mode: forwards;
    animation-delay: 3s
}

/* Social Media */

@keyframes blinkElement {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    40% {
        opacity: 0;
    }

    60% {
        opacity: 1;
    }

    80% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

}

.stat-widget .brand-line {
    animation: blinkElement 2s ease;
    opacity: 0;
    animation-fill-mode: forwards;
    animation-delay: 0.2s
}

.stat-widget .check {
    animation: fadeIn 1s ease;
    opacity: 0;
    animation-fill-mode: forwards;
    animation-delay: 2s
}