.fb-olympic-medal-counter {
    padding: 3rem 1rem;
    margin: 0;
    position: absolute !important;
    bottom: -200px;
    max-width: 1200px;
}
.fb-olympic-medal-counter__card {
    border-radius: 200px;
    background-color: #fff;
    padding: 4rem 8rem;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    min-height: 200px;
    box-shadow: 0px 1px 3px rgba(60, 0, 12, 0.11);
}
.fb-olympic-medal-counter__card h3.fb-olympic-medal-counter__card-title {
    font-size: clamp(1.375rem, 2.6rem, 2.625rem);
    font-family: 'GeoSlab', Arial, Helvetica, sans-serif;
    font-weight: 700;
    line-height: 1;
    color: #000;
    max-width: 400px;
}
.fb-olympic-medal-counter__card p.fb-olympic-medal-counter__updated {
    font-size: 0.95rem;
    font-family: 'Nunito Sans', 'Nunito', Arial, Helvetica, sans-serif;
    font-weight: 600;
    line-height: 1;
    color: #797979;
    margin-bottom: 0;
}
.fb-olympic-medal-counter__updated.mobile {
    display: none;
}
.fb-olympic-medal-counter__updated.desktop {
    display: block;
}
.fb-olympic-medal-counter__medals {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2rem;
    justify-content: space-between;
    align-items: center;    
}
.fb-olympic-medal-counter__medal-count {
    font-size: 2rem;
    font-family: 'Nunito Sans', 'Nunito', Arial, Helvetica, sans-serif;
    color: #676767;
    font-weight: bold;
}
.fb-olympic-medal-counter__medal-count-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 1.75rem 2rem;
    border-radius: 14px;
    background: linear-gradient(180deg, #F0F0F0 0%, #F7F7F7 100%);
    box-shadow: 0px 0px 1px 2px #00000010 inset;
}
.fb-olympic-medal-counter__medal-name {    
    display: flex;
    margin-top: 0.75rem;
    justify-content: center;
    align-items: center;
}
.fb-olympic-medal-counter__medals .fb-olympic-medal-counter__medal-name > span {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    display: block;
    margin-right: 0.5rem;
}
.fb-olympic-medal-counter__medals .fb-olympic-medal-counter__medal-name > p {
    margin: 0!important;
    align-self: center;
    line-height: 1;
    font-size: 0.875rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0;
}
.fb-olympic-medal-counter__medals .fb-olympic-medal-counter-gold > p {
    color: #CBA557;
}
.fb-olympic-medal-counter-gold > span {
    background: linear-gradient( 180deg, #EACA88 0%, #CBA557 100%);
}
.fb-olympic-medal-counter__medals .fb-olympic-medal-counter-silver > p {
    color: #959595;
}
.fb-olympic-medal-counter-silver > span {
    background: linear-gradient( 180deg, #DDDDDD 0%, #B9B9B9 100%);
}
.fb-olympic-medal-counter__medals .fb-olympic-medal-counter-bronze > p {
    color: #C98447;
}
.fb-olympic-medal-counter-bronze > span {
    background: linear-gradient( 180deg, #E59855 0%, #9F6532 100%);
}

@media screen and (max-width: 1440px) {
    
}
@media screen and (max-width: 1024px) { 

    .fb-olympic-medal-counter {
        padding: 0;
        position: relative !important;
        bottom: unset;
    }
    .fb-olympic-medal-counter__card {
        border-radius: 0;
        box-shadow: unset;
    }    
}
@media screen and (max-width: 891px) {
    .fb-olympic-medal-counter__card h3.fb-olympic-medal-counter__card-title {
        max-width: 100%;
        font-size: 1.375rem;
        margin-bottom: 2rem;
    }
    .fb-olympic-medal-counter__card {
        flex-direction: column;
        padding: 3rem 4rem;
    }
    .fb-olympic-medal-counter__card p.fb-olympic-medal-counter__updated {
        margin-top: 2rem;
    }
    .fb-olympic-medal-counter__updated.mobile {
        display: block;
    }
    .fb-olympic-medal-counter__updated.desktop {
        display: none;
    }
}