/** Shopify CDN: Minification failed

Line 450:15 Expected ":"
Line 452:45 Expected ":"
Line 454:45 Expected ":"
Line 456:49 Expected ":"
Line 458:41 Expected ":"
Line 460:47 Expected ":"
Line 462:55 Expected ":"
Line 468:37 Expected ":"
Line 470:43 Expected ":"
Line 472:39 Expected ":"
... and 303 more hidden warnings

**/
:root {
  --liv-navy: #003f6a;
  --liv-teal: #00cdc6;
  --liv-border: #e5e5e5;
  --liv-bg: #fdfbf7;
  --liv-cream: #fdfcf7;
  --liv-text-dark: #003F6A;
}

.liv-main-search {
  padding: 80px 60px;
  min-height: 60vh;
  background-color: #FDFCF7;
}

.liv-main-search__header {
  margin-bottom: 40px;
  text-align: left;
}

.liv-main-search__title {
  font-family: 'Chromatic Pro Bold';
    font-weight: 700;
    font-size: 48px;
    line-height: 100%;
    letter-spacing: 4%;
    vertical-align: middle;
    text-transform: uppercase;
      color: #696863;
      margin: 0;
      letter-spacing: 1px;
}

.liv-main-search__term {
  color: #003F6A;
  font-weight: 800;
  text-transform: uppercase;
}

.liv-main-search__tabs {
  display: flex;
  gap: 30px;
  /* border-bottom: 1px solid var(--liv-border); */
  margin-bottom: 0px;
  padding-bottom: 14px;
}

.liv-main-search__tab {
  background: none;
  border: none;
  font-family: 'Chromatic Pro Bold';
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: 4%;
  text-transform: uppercase;
  color: #757575;
  cursor: pointer;
  padding: 0;
  transition: color 0.3s ease;
  position: relative;
}

.liv-main-search__tab.is-active {
  color: var(--liv-navy);
   font-family: 'Chromatic Pro Bold';
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 4%;
    vertical-align: middle;
    text-transform: uppercase;
}

.liv-main-search__tab.is-active::after {
  content: '';
  position: absolute;
  bottom: -11px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--liv-teal);
}

.liv-main-search__tab-content {
  display: none;
}

.liv-main-search__tab-content.is-active {
  display: block;
}

.liv-main-search__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 40px;
}

/* Custom Product Card */
.liv-search-result-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  height: 100%;
}

.liv-search-result-card__image-wrapper {
  aspect-ratio: 1 / 1;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 15px;
  flex-shrink: 0;
}

.liv-search-result-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.liv-search-result-card:hover .liv-search-result-card__image {
  transform: scale(1.05);
}

.liv-search-result-card__info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.liv-search-result-card__title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4px;
}

.liv-search-result-card__title {
  margin: 0;
  font-family: 'Chromatic Pro Bold', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--liv-navy);
  flex: 1;
  padding-right: 10px;
}

.liv-search-result-card__title a {
  text-decoration: none;
  color: inherit;
}

.liv-search-result-card__price {
  font-family: 'Chromatic Pro Bold', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--liv-navy);
}

.liv-search-result-card__subtitle {
  margin: 0 0 15px 0;
  font-family: 'Chromatic Pro', sans-serif;
  font-size: 12px;
  color: var(--liv-navy);
  opacity: 0.8;
  text-transform: uppercase;
  font-weight: 600;
}

.liv-search-result-card__actions {
  margin-top: auto;
}

.liv-search-result-card__button {
  width: 100%;
  background-color: var(--liv-teal);
  color: var(--liv-navy);
  border: none;
  padding: 15px 0;
  font-family: 'Chromatic Pro Bold', sans-serif;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.liv-search-result-card__button:hover {
  background-color: var(--liv-navy);
  color: white;
}

.liv-search-result-card__button:disabled {
  background-color: #eee;
  color: #999;
  cursor: not-allowed;
}

.liv-main-search__no-results {
  font-family: 'Chromatic Pro', sans-serif;
  font-size: 18px;
  color: var(--liv-navy);
  text-align: center;
  padding: 40px 0;
}

/* Collections and Pages */
.liv-main-search__collection-card {
  text-align: center;
}

.liv-main-search__collection-link {
  text-decoration: none;
  display: block;
  color: inherit;
}

.placeholder-svg {
  background-color: #f0f0f0;
}

.liv-main-search__collection-image-wrapper {
  aspect-ratio: 1/1;
  overflow: hidden;
  margin-bottom: 15px;
}

.liv-main-search__collection-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.liv-main-search__collection-card:hover img {
  transform: scale(1.05);
}

.liv-main-search__collection-title {
  font-family: 'Chromatic Pro Bold', sans-serif;
  font-size: 16px;
  color: var(--liv-navy);
  text-transform: uppercase;
  margin-top: 10px;
}

h3.liv-main-search__collection-title-clt {
    color: var(--brand-dark-blue-small-tex, #1C4D6D);
    font-family: "Chromatic Pro bold";
    text-align: left;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-top: 10px;
}

h3.liv-main-search__collection-title-clt a {
    text-decoration: none;
    color:#1C4D6D;
       
}

span.liv-search__item-subtitle-coll {
    color: var(--Color-Brand-Subdued, #757575);
    font-family: "Chromatic Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.16px;
}

.liv-main-search__page-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 20px;
}

.liv-main-search__page-item {
  border-bottom: 1px solid var(--liv-border);
}

.liv-main-search__page-item:first-child {
  border-top: 1px solid var(--liv-border);;
}

.liv-main-search__page-link {
  display: flex;
  align-items: center;
  padding: 20px 0;
  text-decoration: none;
  color: var(--liv-navy);
  font-family: 'Chromatic Pro Bold', sans-serif;
  font-size: 24px;
  font-weight: 800;
  transition: all 0.3s ease;
}

.liv-main-search__page-icon {
  margin-right: 15px;
  display: flex;
  align-items: center;
}

/* .liv-main-search__page-link:hover {
  color: var(--liv-teal);
  padding-left: 10px;
} */

/* Responsive */
@media (max-width: 1024px) {
  .liv-main-search__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .liv-main-search {
    padding: 60px 30px;
    
  }
  .liv-main-search .page-width {
    padding: 0px;
}

  .liv-main-search__title {
       font-family: 'Chromatic Pro Bold';
        font-weight: 700;
        font-size: 36px;
        line-height: 100%;
        letter-spacing: 4%;
        text-transform: uppercase;
  }

  .liv-main-search__tabs {
    gap: 15px;
    margin-bottom: 30px;
    /* border-bottom: 1px solid #eee; */
    padding-bottom: 10px;
    display: flex;
    justify-content: flex-start;
  }

  .liv-main-search__tab {
    font-size: 12px;
    font-weight: 800;
      font-family: 'Chromatic Pro Bold';
        font-weight: 700;
        font-size: 18px;
        line-height: 120%;
        letter-spacing: 4%;
        text-transform: uppercase;
        color:#757575;
  }

  .liv-main-search__tab.is-active {
    color: var(--liv-navy);
    font-family: 'Chromatic Pro Bold';
        font-weight: 700;
        font-size: 18px;
        line-height: 120%;
        letter-spacing: 4%;
        text-transform: uppercase;
  }

  .liv-main-search__header{
    margin-bottom: 30px;
  }

  .liv-main-search__tab.is-active::after {
    bottom: -11px;
    height: 2px;
  }

  .liv-main-search__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .liv-main-search__page-link {
    padding: 25px 0;
    font-size: 24px;
    line-height: 1.3;
  }

  .liv-main-search__page-icon {
    margin-right: 12px;
  }

  .liv-main-search__page-icon svg {
    width: 22px;
    height: 22px;
  }

  .liv-search-result-card__title {
    font-size: 18px;
  }
  
  .liv-search-result-card__price {
    font-size: 16px;
  }

  .liv-search-result-card__subtitle {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .liv-search-result-card__button {
    padding: 18px 0;
    font-size: 14px;
    border-radius: 50px;
  }
  
  .liv-main-search__collection-title {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .liv-main-search__grid {
    grid-template-columns: repeat(1, 1fr);
    padding: 0;
  }
}: r o o t   {  
     - - l i v - n a v y :   # 0 0 3 f 6 a ;  
     - - l i v - t e a l :   # 0 0 c d c 6 ;  
     - - l i v - b o r d e r :   # e 5 e 5 e 5 ;  
     - - l i v - b g :   # f d f b f 7 ;  
     - - l i v - c r e a m :   # f d f c f 7 ;  
     - - l i v - t e x t - d a r k :   # 0 0 3 F 6 A ;  
 }  
  
 . l i v - m a i n - s e a r c h   {  
     p a d d i n g :   8 0 p x   6 0 p x ;  
     m i n - h e i g h t :   6 0 v h ;  
     b a c k g r o u n d - c o l o r :   # F D F C F 7 ;  
 }  
  
 . l i v - m a i n - s e a r c h _ _ h e a d e r   {  
     m a r g i n - b o t t o m :   4 0 p x ;  
     t e x t - a l i g n :   l e f t ;  
 }  
  
 . l i v - m a i n - s e a r c h _ _ t i t l e   {  
     f o n t - f a m i l y :   ' C h r o m a t i c   P r o   B o l d ' ;  
         f o n t - w e i g h t :   7 0 0 ;  
         f o n t - s i z e :   4 8 p x ;  
         l i n e - h e i g h t :   1 0 0 % ;  
         l e t t e r - s p a c i n g :   4 % ;  
         v e r t i c a l - a l i g n :   m i d d l e ;  
         t e x t - t r a n s f o r m :   u p p e r c a s e ;  
             c o l o r :   # 6 9 6 8 6 3 ;  
             m a r g i n :   0 ;  
             l e t t e r - s p a c i n g :   1 p x ;  
 }  
  
 . l i v - m a i n - s e a r c h _ _ t e r m   {  
     c o l o r :   # 0 0 3 F 6 A ;  
     f o n t - w e i g h t :   8 0 0 ;  
     t e x t - t r a n s f o r m :   u p p e r c a s e ;  
 }  
  
 . l i v - m a i n - s e a r c h _ _ t a b s   {  
     d i s p l a y :   f l e x ;  
     g a p :   3 0 p x ;  
     / *   b o r d e r - b o t t o m :   1 p x   s o l i d   v a r ( - - l i v - b o r d e r ) ;   * /  
     m a r g i n - b o t t o m :   0 p x ;  
     p a d d i n g - b o t t o m :   1 4 p x ;  
 }  
  
 . l i v - m a i n - s e a r c h _ _ t a b   {  
     b a c k g r o u n d :   n o n e ;  
     b o r d e r :   n o n e ;  
     f o n t - f a m i l y :   ' C h r o m a t i c   P r o   B o l d ' ;  
     f o n t - w e i g h t :   7 0 0 ;  
     f o n t - s i z e :   2 4 p x ;  
     l i n e - h e i g h t :   1 2 0 % ;  
     l e t t e r - s p a c i n g :   4 % ;  
     t e x t - t r a n s f o r m :   u p p e r c a s e ;  
     c o l o r :   # 7 5 7 5 7 5 ;  
     c u r s o r :   p o i n t e r ;  
     p a d d i n g :   0 ;  
     t r a n s i t i o n :   c o l o r   0 . 3 s   e a s e ;  
     p o s i t i o n :   r e l a t i v e ;  
 }  
  
 . l i v - m a i n - s e a r c h _ _ t a b . i s - a c t i v e   {  
     c o l o r :   v a r ( - - l i v - n a v y ) ;  
       f o n t - f a m i l y :   ' C h r o m a t i c   P r o   B o l d ' ;  
         f o n t - w e i g h t :   7 0 0 ;  
         f o n t - s i z e :   2 4 p x ;  
         l i n e - h e i g h t :   1 2 0 % ;  
         l e t t e r - s p a c i n g :   4 % ;  
         v e r t i c a l - a l i g n :   m i d d l e ;  
         t e x t - t r a n s f o r m :   u p p e r c a s e ;  
 }  
  
 . l i v - m a i n - s e a r c h _ _ t a b . i s - a c t i v e : : a f t e r   {  
     c o n t e n t :   ' ' ;  
     p o s i t i o n :   a b s o l u t e ;  
     b o t t o m :   - 1 1 p x ;  
     l e f t :   0 ;  
     w i d t h :   1 0 0 % ;  
     h e i g h t :   2 p x ;  
     b a c k g r o u n d - c o l o r :   v a r ( - - l i v - t e a l ) ;  
 }  
  
 . l i v - m a i n - s e a r c h _ _ t a b - c o n t e n t   {  
     d i s p l a y :   n o n e ;  
 }  
  
 . l i v - m a i n - s e a r c h _ _ t a b - c o n t e n t . i s - a c t i v e   {  
     d i s p l a y :   b l o c k ;  
 }  
  
 . l i v - m a i n - s e a r c h _ _ g r i d   {  
     d i s p l a y :   g r i d ;  
     g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 4 ,   1 f r ) ;  
     g a p :   2 0 p x ;  
     p a d d i n g - t o p :   4 0 p x ;  
 }  
  
 / *   C u s t o m   P r o d u c t   C a r d   * /  
 . l i v - s e a r c h - r e s u l t - c a r d   {  
     d i s p l a y :   f l e x ;  
     f l e x - d i r e c t i o n :   c o l u m n ;  
     b a c k g r o u n d :   t r a n s p a r e n t ;  
     h e i g h t :   1 0 0 % ;  
 }  
  
 . l i v - s e a r c h - r e s u l t - c a r d _ _ i m a g e - w r a p p e r   {  
     a s p e c t - r a t i o :   1   /   1 ;  
     b a c k g r o u n d - c o l o r :   t r a n s p a r e n t ;  
     d i s p l a y :   f l e x ;  
     a l i g n - i t e m s :   c e n t e r ;  
     j u s t i f y - c o n t e n t :   c e n t e r ;  
     o v e r f l o w :   h i d d e n ;  
     m a r g i n - b o t t o m :   1 5 p x ;  
     f l e x - s h r i n k :   0 ;  
 }  
  
 . l i v - s e a r c h - r e s u l t - c a r d _ _ i m a g e   {  
     w i d t h :   1 0 0 % ;  
     h e i g h t :   1 0 0 % ;  
     o b j e c t - f i t :   c o n t a i n ;  
     t r a n s i t i o n :   t r a n s f o r m   0 . 5 s   e a s e ;  
 }  
  
 . l i v - s e a r c h - r e s u l t - c a r d : h o v e r   . l i v - s e a r c h - r e s u l t - c a r d _ _ i m a g e   {  
     t r a n s f o r m :   s c a l e ( 1 . 0 5 ) ;  
 }  
  
 . l i v - s e a r c h - r e s u l t - c a r d _ _ i n f o   {  
     d i s p l a y :   f l e x ;  
     f l e x - d i r e c t i o n :   c o l u m n ;  
     f l e x - g r o w :   1 ;  
 }  
  
 . l i v - s e a r c h - r e s u l t - c a r d _ _ t i t l e - r o w   {  
     d i s p l a y :   f l e x ;  
     j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ;  
     a l i g n - i t e m s :   f l e x - s t a r t ;  
     m a r g i n - b o t t o m :   4 p x ;  
 }  
  
 . l i v - s e a r c h - r e s u l t - c a r d _ _ t i t l e   {  
     m a r g i n :   0 ;  
     f o n t - f a m i l y :   ' C h r o m a t i c   P r o   B o l d ' ,   s a n s - s e r i f ;  
     f o n t - s i z e :   1 6 p x ;  
     f o n t - w e i g h t :   8 0 0 ;  
     c o l o r :   v a r ( - - l i v - n a v y ) ;  
     f l e x :   1 ;  
     p a d d i n g - r i g h t :   1 0 p x ;  
 }  
  
 . l i v - s e a r c h - r e s u l t - c a r d _ _ t i t l e   a   {  
     t e x t - d e c o r a t i o n :   n o n e ;  
     c o l o r :   i n h e r i t ;  
 }  
  
 . l i v - s e a r c h - r e s u l t - c a r d _ _ p r i c e   {  
     f o n t - f a m i l y :   ' C h r o m a t i c   P r o   B o l d ' ,   s a n s - s e r i f ;  
     f o n t - s i z e :   1 4 p x ;  
     f o n t - w e i g h t :   7 0 0 ;  
     c o l o r :   v a r ( - - l i v - n a v y ) ;  
 }  
  
 . l i v - s e a r c h - r e s u l t - c a r d _ _ s u b t i t l e   {  
     m a r g i n :   0   0   1 5 p x   0 ;  
     f o n t - f a m i l y :   ' C h r o m a t i c   P r o ' ,   s a n s - s e r i f ;  
     f o n t - s i z e :   1 2 p x ;  
     c o l o r :   v a r ( - - l i v - n a v y ) ;  
     o p a c i t y :   0 . 8 ;  
     t e x t - t r a n s f o r m :   u p p e r c a s e ;  
     f o n t - w e i g h t :   6 0 0 ;  
 }  
  
 . l i v - s e a r c h - r e s u l t - c a r d _ _ a c t i o n s   {  
     m a r g i n - t o p :   a u t o ;  
 }  
  
 . l i v - s e a r c h - r e s u l t - c a r d _ _ b u t t o n   {  
     w i d t h :   1 0 0 % ;  
     b a c k g r o u n d - c o l o r :   v a r ( - - l i v - t e a l ) ;  
     c o l o r :   v a r ( - - l i v - n a v y ) ;  
     b o r d e r :   n o n e ;  
     p a d d i n g :   1 5 p x   0 ;  
     f o n t - f a m i l y :   ' C h r o m a t i c   P r o   B o l d ' ,   s a n s - s e r i f ;  
     f o n t - s i z e :   1 4 p x ;  
     f o n t - w e i g h t :   8 0 0 ;  
     c u r s o r :   p o i n t e r ;  
     b o r d e r - r a d i u s :   5 0 p x ;  
     t r a n s i t i o n :   a l l   0 . 3 s   e a s e ;  
     t e x t - t r a n s f o r m :   u p p e r c a s e ;  
     l e t t e r - s p a c i n g :   1 p x ;  
 }  
  
 . l i v - s e a r c h - r e s u l t - c a r d _ _ b u t t o n : h o v e r   {  
     b a c k g r o u n d - c o l o r :   v a r ( - - l i v - n a v y ) ;  
     c o l o r :   w h i t e ;  
 }  
  
 . l i v - s e a r c h - r e s u l t - c a r d _ _ b u t t o n : d i s a b l e d   {  
     b a c k g r o u n d - c o l o r :   # e e e ;  
     c o l o r :   # 9 9 9 ;  
     c u r s o r :   n o t - a l l o w e d ;  
 }  
  
 . l i v - m a i n - s e a r c h _ _ n o - r e s u l t s   {  
     f o n t - f a m i l y :   ' C h r o m a t i c   P r o ' ,   s a n s - s e r i f ;  
     f o n t - s i z e :   1 8 p x ;  
     c o l o r :   v a r ( - - l i v - n a v y ) ;  
     t e x t - a l i g n :   c e n t e r ;  
     p a d d i n g :   4 0 p x   0 ;  
 }  
  
 / *   C o l l e c t i o n s   a n d   P a g e s   * /  
 . l i v - m a i n - s e a r c h _ _ c o l l e c t i o n - c a r d   {  
     t e x t - a l i g n :   c e n t e r ;  
 }  
  
 . l i v - m a i n - s e a r c h _ _ c o l l e c t i o n - l i n k   {  
     t e x t - d e c o r a t i o n :   n o n e ;  
     d i s p l a y :   b l o c k ;  
     c o l o r :   i n h e r i t ;  
 }  
  
 . p l a c e h o l d e r - s v g   {  
     b a c k g r o u n d - c o l o r :   # f 0 f 0 f 0 ;  
 }  
  
 . l i v - m a i n - s e a r c h _ _ c o l l e c t i o n - i m a g e - w r a p p e r   {  
     a s p e c t - r a t i o :   1 / 1 ;  
     o v e r f l o w :   h i d d e n ;  
     m a r g i n - b o t t o m :   1 5 p x ;  
 }  
  
 . l i v - m a i n - s e a r c h _ _ c o l l e c t i o n - i m a g e - w r a p p e r   i m g   {  
     w i d t h :   1 0 0 % ;  
     h e i g h t :   1 0 0 % ;  
     o b j e c t - f i t :   c o v e r ;  
     t r a n s i t i o n :   t r a n s f o r m   0 . 5 s   e a s e ;  
 }  
  
 . l i v - m a i n - s e a r c h _ _ c o l l e c t i o n - c a r d : h o v e r   i m g   {  
     t r a n s f o r m :   s c a l e ( 1 . 0 5 ) ;  
 }  
  
 . l i v - m a i n - s e a r c h _ _ c o l l e c t i o n - t i t l e   {  
     f o n t - f a m i l y :   ' C h r o m a t i c   P r o   B o l d ' ,   s a n s - s e r i f ;  
     f o n t - s i z e :   1 6 p x ;  
     c o l o r :   v a r ( - - l i v - n a v y ) ;  
     t e x t - t r a n s f o r m :   u p p e r c a s e ;  
     m a r g i n - t o p :   1 0 p x ;  
 }  
  
 h 3 . l i v - m a i n - s e a r c h _ _ c o l l e c t i o n - t i t l e - c l t   {  
         c o l o r :   v a r ( - - b r a n d - d a r k - b l u e - s m a l l - t e x ,   # 1 C 4 D 6 D ) ;  
         f o n t - f a m i l y :   " C h r o m a t i c   P r o   b o l d " ;  
         t e x t - a l i g n :   l e f t ;  
         f o n t - s i z e :   2 0 p x ;  
         f o n t - s t y l e :   n o r m a l ;  
         f o n t - w e i g h t :   7 0 0 ;  
         l i n e - h e i g h t :   1 2 0 % ;  
         l e t t e r - s p a c i n g :   0 . 8 p x ;  
         t e x t - t r a n s f o r m :   u p p e r c a s e ;  
         m a r g i n - t o p :   1 0 p x ;  
 }  
  
 h 3 . l i v - m a i n - s e a r c h _ _ c o l l e c t i o n - t i t l e - c l t   a   {  
         t e x t - d e c o r a t i o n :   n o n e ;  
         c o l o r : # 1 C 4 D 6 D ;  
                
 }  
  
 s p a n . l i v - s e a r c h _ _ i t e m - s u b t i t l e - c o l l   {  
         c o l o r :   v a r ( - - C o l o r - B r a n d - S u b d u e d ,   # 7 5 7 5 7 5 ) ;  
         f o n t - f a m i l y :   " C h r o m a t i c   P r o " ;  
         f o n t - s i z e :   1 6 p x ;  
         f o n t - s t y l e :   n o r m a l ;  
         f o n t - w e i g h t :   4 0 0 ;  
         l i n e - h e i g h t :   1 4 0 % ;  
         l e t t e r - s p a c i n g :   - 0 . 1 6 p x ;  
 }  
  
 . l i v - m a i n - s e a r c h _ _ p a g e - l i s t   {  
     l i s t - s t y l e :   n o n e ;  
     p a d d i n g :   0 ;  
     m a r g i n :   0 ;  
     m a r g i n - t o p :   2 0 p x ;  
 }  
  
 . l i v - m a i n - s e a r c h _ _ p a g e - i t e m   {  
     b o r d e r - b o t t o m :   1 p x   s o l i d   v a r ( - - l i v - b o r d e r ) ;  
 }  
  
 . l i v - m a i n - s e a r c h _ _ p a g e - i t e m : f i r s t - c h i l d   {  
     b o r d e r - t o p :   1 p x   s o l i d   v a r ( - - l i v - b o r d e r ) ; ;  
 }  
  
 . l i v - m a i n - s e a r c h _ _ p a g e - l i n k   {  
     d i s p l a y :   f l e x ;  
     a l i g n - i t e m s :   c e n t e r ;  
     p a d d i n g :   2 0 p x   0 ;  
     t e x t - d e c o r a t i o n :   n o n e ;  
     c o l o r :   v a r ( - - l i v - n a v y ) ;  
     f o n t - f a m i l y :   ' C h r o m a t i c   P r o   B o l d ' ,   s a n s - s e r i f ;  
     f o n t - s i z e :   2 4 p x ;  
     f o n t - w e i g h t :   8 0 0 ;  
     t r a n s i t i o n :   a l l   0 . 3 s   e a s e ;  
 }  
  
 . l i v - m a i n - s e a r c h _ _ p a g e - i c o n   {  
     m a r g i n - r i g h t :   1 5 p x ;  
     d i s p l a y :   f l e x ;  
     a l i g n - i t e m s :   c e n t e r ;  
 }  
  
 / *   . l i v - m a i n - s e a r c h _ _ p a g e - l i n k : h o v e r   {  
     c o l o r :   v a r ( - - l i v - t e a l ) ;  
     p a d d i n g - l e f t :   1 0 p x ;  
 }   * /  
  
 / *   R e s p o n s i v e   * /  
 @ m e d i a   ( m a x - w i d t h :   1 0 2 4 p x )   {  
     . l i v - m a i n - s e a r c h _ _ g r i d   {  
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 3 ,   1 f r ) ;  
     }  
 }  
  
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   {  
     . l i v - m a i n - s e a r c h   {  
         p a d d i n g :   6 0 p x   3 0 p x ;  
          
     }  
     . l i v - m a i n - s e a r c h   . p a g e - w i d t h   {  
         p a d d i n g :   0 p x ;  
 }  
  
     . l i v - m a i n - s e a r c h _ _ t i t l e   {  
               f o n t - f a m i l y :   ' C h r o m a t i c   P r o   B o l d ' ;  
                 f o n t - w e i g h t :   7 0 0 ;  
                 f o n t - s i z e :   3 6 p x ;  
                 l i n e - h e i g h t :   1 0 0 % ;  
                 l e t t e r - s p a c i n g :   4 % ;  
                 t e x t - t r a n s f o r m :   u p p e r c a s e ;  
     }  
  
     . l i v - m a i n - s e a r c h _ _ t a b s   {  
         g a p :   1 5 p x ;  
         m a r g i n - b o t t o m :   3 0 p x ;  
         / *   b o r d e r - b o t t o m :   1 p x   s o l i d   # e e e ;   * /  
         p a d d i n g - b o t t o m :   1 0 p x ;  
         d i s p l a y :   f l e x ;  
         j u s t i f y - c o n t e n t :   f l e x - s t a r t ;  
     }  
  
     . l i v - m a i n - s e a r c h _ _ t a b   {  
         f o n t - s i z e :   1 2 p x ;  
         f o n t - w e i g h t :   8 0 0 ;  
             f o n t - f a m i l y :   ' C h r o m a t i c   P r o   B o l d ' ;  
                 f o n t - w e i g h t :   7 0 0 ;  
                 f o n t - s i z e :   1 8 p x ;  
                 l i n e - h e i g h t :   1 2 0 % ;  
                 l e t t e r - s p a c i n g :   4 % ;  
                 t e x t - t r a n s f o r m :   u p p e r c a s e ;  
                 c o l o r : # 7 5 7 5 7 5 ;  
     }  
  
     . l i v - m a i n - s e a r c h _ _ t a b . i s - a c t i v e   {  
         c o l o r :   v a r ( - - l i v - n a v y ) ;  
         f o n t - f a m i l y :   ' C h r o m a t i c   P r o   B o l d ' ;  
                 f o n t - w e i g h t :   7 0 0 ;  
                 f o n t - s i z e :   1 8 p x ;  
                 l i n e - h e i g h t :   1 2 0 % ;  
                 l e t t e r - s p a c i n g :   4 % ;  
                 t e x t - t r a n s f o r m :   u p p e r c a s e ;  
     }  
  
     . l i v - m a i n - s e a r c h _ _ h e a d e r {  
         m a r g i n - b o t t o m :   3 0 p x ;  
     }  
  
     . l i v - m a i n - s e a r c h _ _ t a b . i s - a c t i v e : : a f t e r   {  
         b o t t o m :   - 1 1 p x ;  
         h e i g h t :   2 p x ;  
     }  
  
     . l i v - m a i n - s e a r c h _ _ g r i d   {  
         g r i d - t e m p l a t e - c o l u m n s :   1 f r ;  
         g a p :   4 0 p x ;  
     }  
  
     . l i v - m a i n - s e a r c h _ _ p a g e - l i n k   {  
         p a d d i n g :   2 5 p x   0 ;  
         f o n t - s i z e :   2 4 p x ;  
         l i n e - h e i g h t :   1 . 3 ;  
     }  
  
     . l i v - m a i n - s e a r c h _ _ p a g e - i c o n   {  
         m a r g i n - r i g h t :   1 2 p x ;  
     }  
  
     . l i v - m a i n - s e a r c h _ _ p a g e - i c o n   s v g   {  
         w i d t h :   2 2 p x ;  
         h e i g h t :   2 2 p x ;  
     }  
  
     . l i v - s e a r c h - r e s u l t - c a r d _ _ t i t l e   {  
         f o n t - s i z e :   1 8 p x ;  
     }  
      
     . l i v - s e a r c h - r e s u l t - c a r d _ _ p r i c e   {  
         f o n t - s i z e :   1 6 p x ;  
     }  
  
     . l i v - s e a r c h - r e s u l t - c a r d _ _ s u b t i t l e   {  
         f o n t - s i z e :   1 3 p x ;  
         m a r g i n - b o t t o m :   2 0 p x ;  
     }  
  
     . l i v - s e a r c h - r e s u l t - c a r d _ _ b u t t o n   {  
         p a d d i n g :   1 8 p x   0 ;  
         f o n t - s i z e :   1 4 p x ;  
         b o r d e r - r a d i u s :   5 0 p x ;  
     }  
      
     . l i v - m a i n - s e a r c h _ _ c o l l e c t i o n - t i t l e   {  
         f o n t - s i z e :   1 8 p x ;  
     }  
 }  
  
 @ m e d i a   ( m a x - w i d t h :   4 8 0 p x )   {  
     . l i v - m a i n - s e a r c h _ _ g r i d   {  
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 1 ,   1 f r ) ;  
         p a d d i n g :   0 ;  
     }  
 }  
  
 