/** Shopify CDN: Minification failed

Line 24:10 Expected identifier but found whitespace
Line 24:12 Unexpected "{"
Line 24:19 Expected ":"
Line 30:10 Expected identifier but found whitespace
Line 30:12 Unexpected "{"
Line 30:19 Expected ":"
Line 39:10 Expected identifier but found whitespace
Line 39:12 Unexpected "{"
Line 39:19 Expected ":"

**/
.countdown__display {
    display: inline-flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    font-family: var(--typeHeaderPrimary), var(--typeHeaderFallback);
  }

  .countdown__number {
    font-size: 18px;
    color: {{ block.settings.color }};
    font-weight: 700;
  }

  .countdown__separator {
    font-size: 18px;
    color: {{ block.settings.color }};
    margin: 0;
    font-weight: 700;
  }

  .countdown__timer-message {
    margin-top: 8px;
    text-align: center;
    font-size: 18px;
    color: {{ block.settings.color }};
  }

  .countdown__display--visible {
    margin-right: 10px;
  }

  .product-countdown__header {
    display: inline;
    font-size: 16px;
    font-weight: 700;
    margin-right: 5px;
  }

  .product-countdown__display-block {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    padding: 0;
    border: none;
  }

  .product-countdown__text {
  }

  .product-countdown__code {
    display: inline-flex;
    border-radius: 10px;
    background: #fff;
    color: #000;
    padding: 6px 8px;
    max-width: 350px;
    font-size: 14px;
    gap: 10px;
    align-items: flex-end;
    cursor: pointer;
    position: relative;
    margin: 6px 0px;
    margin-right: 10px
  }

  .product-countdown__code-code {
    font-weight: 700;
    font-size: 16px;
    line-height: normal;
  }

  .product-countdown__code-copy {
    width: 22px;
    height: 22px;
  }

  .product-countdown__code-copy svg {
    display: block;
    width: 100%;
    height: auto;
  }

  /* TOOLTIP */
  .product-countdown__tooltip {
    visibility: hidden;
    background-color: #fff;
    color: #333;
    border: 1px solid #bebcbc;
    border-radius: 4px;
    padding: 5px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s;
    text-align: left;
    width: 100%;
    bottom: calc(100% + 13px);
  }

  .product-countdown__tooltip::after {
    content: "";
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
  }

  .product-countdown__tooltip.visible {
    visibility: visible;
    opacity: 1;
  }
  .product-countdown__salepercent {
    font-size: 16px;
  }
  .product-countdown__only {
    display: inline;
    margin-right: 5px;
  }
  .product-countdown__bottom{
    display:flex;
    justify-content:space-between;
    position:relative;
  }
  .product-countdown__more{
    position:relative; 
    cursor:pointer;
    font-size: 12px;
    padding-top: 5px;
   
  }

  .product-countdown__tooltip-more{
    max-width: 300px;
    text-align: left;
    right: 0;
    left: auto;
    transform: none;
  }

  .product-countdown__tooltip::after {
    content: "";
    display:none;
    /* position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: #333 transparent transparent transparent; */
  }

  