/** Shopify CDN: Minification failed

Line 12:0 Unexpected "{"
Line 12:1 Expected identifier but found "%"
Line 26:7 Expected ":"
Line 36:5 Expected ":"
Line 52:5 Expected ":"
Line 183:0 Unexpected "{"
Line 183:1 Expected identifier but found "%"

**/
{% if settings.enable_entries %}

.entry-tracker .entry-badge {
    display: flex;
    align-items: center;
    background-color: #000;
    border: 2px solid #e5e5e5;
    border-radius: 5px;
    padding: 5px 10px;
    justify-content: center;
    width: 100%;
}

.entry-tracker .entry-text {
    ㅤ
    font-weight: 700;
    font-size: 16px;
    line-height: normal;
    text-transform: uppercase;
    letter-spacing: normal;
    color: #ffffff;
}

.entry-tracker .entry-text small {
  ㅤ
  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-weight: 900;
  font-size: 16px;
  /* background: var(--red-clr); */
  line-height: normal;
}


.promo-container-collection {
    margin-top: 10px;
    text-align: left;
}

.collection-multiplier-box {
    display: flex;
    align-items: center;
    background-color: #000000;
    border: 2px solid #e5e5e5;
    border-radius: 5px 8px;
    padding: 5px;
    width: fit-content;
}

.shopify-section--featured-collection .product-card__info .collection-multiplier-box {
    
    width: 100%;
    justify-content: center;
}
.collection-multiplier {
    background: linear-gradient(186deg, #F30 4.74%, #FF6E2C 65.73%,#FF9000 115.67%);
    color: white;
    padding: 3px 8px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 3px;
    margin-left: 10px;
    animation: flash 1s infinite;
}

.collection-entries-text {
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    margin-right: 10px;
}

.banner__buttons {
    position: relative !important;
    top: 75% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 100 !important;
}

.button--secondary {
    background-color: black !important;
    color: white !important;
    font-size: 18px !important;
    padding: 10px 30px !important;
    border: 1px solid black !important;
    text-align: center !important;
    display: inline-block;
    line-height: 1.5 !important;
}
.promo-container {
    margin-top: 10px;
    text-align: left;
}

.promo-multiplier-box {
    display: flex;
    align-items: center;
    background-color: black;
    border: 2px solid #e5e5e5;
    border-radius: 5px;
    padding: 10px;
    width: fit-content;
}

.multiplier {
    background-color: red;
    color: white;
    padding: 5px 12px;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 3px;
    margin-left: 10px;
    animation: flash 1s infinite;
}

@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: 10px;
    }

    .button--secondary {
        font-size: 11px !important;
        padding: 0px 0px !important;
        min-height: 35px;
    }

}
{%- endif -%}