/** Shopify CDN: Minification failed

Line 9:0 Unexpected "{"
Line 9:1 Expected identifier but found "%"
Line 105:0 Unexpected "{"
Line 105:1 Expected identifier but found "%"

**/
{% if settings.enable_entries %}

.entry-tracker .entry-badge {
     display: flex;
    align-items: center;
    background-color: #000;
    border: 2px solid #000000;
    border-radius: 5px;
    padding: 5px 10px;
    width: fit-content;
    gap: 10px;
    justify-content: center;
    margin: auto;
}
.product__info-wrapper .entry-tracker .entry-badge{
  margin:0;
}

.entry-tracker .entry-text {
    font-family: var(--barlow-font);
    font-weight: 700;
    font-size: 16px;
    line-height: normal;
    text-transform: uppercase;
    letter-spacing: normal;
    color: #ffffff;
}

.entry-tracker .entry-text small {
  font-family: var(--barlow-font);
  font-weight: 900;
  font-size: 16px;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: 0.36px;
}

.entry-tracker .multiplier-box {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  flex-shrink: 0;
  color: #fff;
  padding: 5px 10px;
  font-family: var(--barlow-font);
  font-weight: 900;
  font-size: 16px;
  background: #860119;
  border-radius: 5px;
  line-height: normal;
animation: flash 1s infinite;
}
.template-giveaway .entry-tracker .multiplier-box{ 
background: #ff002e;
}

.multiplier {
    background-color: red;
    color: white;
    padding: 5px 12px;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 3px;
    margin-left: 10px;    
}

@keyframes flash {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.entries-text {
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    margin-right: 10px;
}



@media (max-width: 767px) {
  .entry-tracker .entry-text{
    font-size: 20px;
  }
  .entry-tracker .entry-text small {    
    font-size: 14px;
}
  .entry-tracker .multiplier-box{
    padding: 5px 10px;
    font-size: 14px;
  }
}
{%- endif -%}