/** Shopify CDN: Minification failed

Line 201:1 Expected "}" to go with "{"

**/
.stellaria-promo{
    padding-top: var(--promo-padding-top);
    padding-bottom: var(--promo-padding-bottom);
}

.stellaria-promo__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px; }

.stellaria-promo__card{
    position:relative;
    border-radius:var(--promo-radius);
    overflow:hidden;
    height:var(--promo-height);
}

.stellaria-promo__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stellaria-promo__overlay {
  position: absolute;
  left: 32px;
  bottom: 32px;
  top: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 90%;
}

.stellaria-promo__logo img{
    display:block;
    width:100%;
    height:auto;
    margin-bottom:10px;
}


.stellaria-promo__overlay h3{
    font-size:var(--promo-heading-size);
    color:var(--promo-heading-color);
    font-weight:600;
    line-height:1.2;
    margin:0 0 18px;
     max-width:100%;
}
.stellaria-btn--sm {
  padding: 10px 22px;
  font-size: 12px;
  width: fit-content;
}


.stellaria-promo-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    width:200px;
    height:44px;

    background:#fff;
    color:#111;

    border-radius:999px;
    text-decoration:none;
    overflow:hidden;

    transition:.45s ease;
}

.stellaria-promo-btn .btn-text{
    
    overflow:hidden;
    white-space:nowrap;

    font-size:13px;
    font-weight:600;
    letter-spacing:.08em;
    transition:.4s;
}
.button_right_part{
  display:flex;
  align-items:center;
    justify-content: end;
}

.stellaria-promo-btn .btn-icon{
    
     margin-right: -7px;
    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;
}
.stellaria-promo-btn .btn-icon svg{
  width:26px;height:26px;
}
.stellaria-promo-btn:hover{

    width:200px;

}

.stellaria-promo-btn:hover .btn-text{

    width:auto;
    opacity:1;

}

.stellaria-promo__description{
  font-size: 15px;
  color: var(--promo-description-color, #ffffff);
  line-height: 1.4;
  margin: 6px 0 12px;
  max-width:380px;
}
.stellaria-promo__description p{
   
  color: var(--promo-description-color, #ffffff); 
}
.stellaria-promo__img--mobile{
  display: none;
}
 

@media (max-width: 991px) {
  .stellaria-promo__grid { grid-template-columns: 1fr; }

}

@media (max-width: 749px) { 

  .stellaria-promo__description{
        font-size: 13px;
       
         
      } 



  .stellaria-promo__overlay { max-width: 90%; left: 20px; }


  .stellaria-promo__overlay h3{
    font-size:var(--promo-mobile-heading-size);

    .stellaria-promo-btn{
  
    width:32px;
    height:32px; 
  }
  .stellaria-promo-btn .btn-icon svg{
    width:20px;height:20px;
  }


    
    .stellaria-promo__logo img{
        width:var(--mobile-logo-width);
    }


    .stellaria-promo{
        padding-top: var(--promo-mobile-padding-top);
        padding-bottom: var(--promo-mobile-padding-bottom);
    }

    .stellaria-promo__card{
        height: var(--promo-mobile-height);
        
    }

    
      .stellaria-promo__img--desktop{
        display: none;
      }
      .stellaria-promo__img--mobile{
        display: block;
      }
    
      


}



 