/**
 * Стили для ленты (feed)
 */

/* Forum Topics */
.forum-topics {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.forum-topic-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    padding: 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.forum-topic-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--primary-hover));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.forum-topic-item:hover {
    transform: translateY(-4px) translateX(4px);
    box-shadow: 0 12px 24px -4px rgba(0, 0, 0, 0.12), 0 8px 16px -4px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
}

.forum-topic-item:hover::before {
    opacity: 1;
}

.forum-topic-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.forum-topic-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1C1D1F;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.forum-topic-item:hover .forum-topic-title {
    color: var(--primary-color);
}

.forum-topic-meta {
    display: flex;
    gap: 1.25rem;
    font-size: 0.875rem;
    color: #64748b;
    flex-wrap: wrap;
    align-items: center;
}

.forum-topic-category {
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.forum-topic-item:hover .forum-topic-category {
    background: rgba(37, 99, 235, 0.15);
    transform: scale(1.05);
}

.forum-topic-author {
    font-weight: 500;
    color: #475569;
}

.forum-topic-date {
    color: #94a3b8;
}

.forum-topic-stats {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.forum-topic-comments {
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 24px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #475569;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.forum-topic-item:hover .forum-topic-comments {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: white;
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Улучшенные стили для секции форума на главной странице */
.section-forum {
    position: relative;
    overflow: hidden;
}

.section-forum::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.02) 0%, rgba(118, 75, 162, 0.02) 100%);
    pointer-events: none;
}

.section-forum .container {
    position: relative;
    z-index: 1;
}

/* Пустое состояние форума */
.forum-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.forum-empty-icon {
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.forum-empty h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1C1D1F;
    margin-bottom: 0.75rem;
}

.forum-empty p {
    font-size: 1rem;
    color: #6A6F73;
    margin-bottom: 2rem;
}

.forum-empty .btn {
    margin-top: 1rem;
}

/* Стили для сайдбара с популярными новостями */
.feed-sidebar {
    width: 100%;
    min-width: 0;
}

.feed-sidebar .related-projects-section {
    width: 100%;
    min-width: 0;
}

.feed-sidebar .related-projects-list {
    width: 100%;
    min-width: 0;
}

.feed-sidebar .related-project-card {
    width: 100%;
    min-width: 0;
    max-width: 100%;
}

.feed-sidebar .related-project-content {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.feed-sidebar .related-project-content h3 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.feed-sidebar .related-project-content p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.feed-sidebar .related-project-image {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.feed-sidebar .related-project-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .forum-topic-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .forum-topic-item:hover {
        transform: translateY(-2px);
    }
    
    .forum-topic-title {
        font-size: 1.125rem;
    }
    
    .forum-topic-meta {
        gap: 0.75rem;
        font-size: 0.8125rem;
    }
    
    .forum-topic-stats {
        width: 100%;
        justify-content: flex-start;
    }
    
    .forum-topic-comments {
        padding: 0.5rem 1rem;
    }
}

 . f e e d - w r a p p e r   {  
         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 :   1 f r   3 2 0 p x ;  
         g a p :   2 r e m ;  
         p a d d i n g - b o t t o m :   1 0 0 p x ;   / *              %   $% W%               %     % W%       %  * /  
         a l i g n - i t e m s :   s t a r t ;  
 }  
  
 . f e e d - m a i n   {  
         m i n - w i d t h :   0 ;  
         m a x - w i d t h :   6 8 0 p x ;  
         m a r g i n :   0   a u t o ;  
 }  
  
 . b r e a d c r u m b s   {  
         m a r g i n - b o t t o m :   1 . 5 r e m ;  
         f o n t - s i z e :   0 . 8 7 5 r e m ;  
         c o l o r :   # 6 4 7 4 8 b ;  
 }  
  
 . b r e a d c r u m b s   a   {  
         c o l o r :   # 5 6 2 4 D 0 ;  
         t e x t - d e c o r a t i o n :   n o n e ;  
 }  
  
 . b r e a d c r u m b s   a : h o v e r   {  
         t e x t - d e c o r a t i o n :   u n d e r l i n e ;  
 }  
  
 . b r e a d c r u m b s   s p a n   {  
         c o l o r :   # 1 e 2 9 3 b ;  
 }  
  
 / *          ]% %         $% %         %       %  * /  
 . f e e d - c r e a t e - p o s t   {  
         b a c k g r o u n d :   t r a n s p a r e n t ;  
         b o r d e r :   n o n e ;  
         b o r d e r - r a d i u s :   0 ;  
         p a d d i n g :   0 ;  
         m a r g i n - b o t t o m :   1 . 5 r e m ;  
         b o x - s h a d o w :   n o n e ;  
         t r a n s i t i o n :   b o x - s h a d o w   0 . 2 s   e a s e ;  
 }  
  
 . f e e d - c r e a t e - p o s t : h o v e r   {  
         b o x - s h a d o w :   n o n e ;  
 }  
  
 . f e e d - c r e a t e - p o s t - h e a d e r   {  
         m a r g i n - b o t t o m :   1 . 2 5 r e m ;  
         p a d d i n g - b o t t o m :   1 r e m ;  
         b o r d e r - b o t t o m :   1 p x   s o l i d   # f 1 f 5 f 9 ;  
 }  
  
 . f e e d - p o s t - a u t h o r   {  
         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 ;  
         g a p :   0 . 7 5 r e m ;  
 }  
  
 . f e e d - p o s t - a v a t a r   {  
         w i d t h :   4 8 p x ;  
         h e i g h t :   4 8 p x ;  
         b o r d e r - r a d i u s :   5 0 % ;  
         o b j e c t - f i t :   c o v e r ;  
         f l e x - s h r i n k :   0 ;  
 }  
  
 . f e e d - p o s t - a v a t a r - i n i t i a l   {  
         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 ;  
         b a c k g r o u n d :   # 5 6 2 4 D 0 ;  
         c o l o r :   # f f f ;  
         f o n t - w e i g h t :   6 0 0 ;  
         f o n t - s i z e :   1 . 2 5 r e m ;  
 }  
  
 . f e e d - p o s t - a u t h o r - n a m e   {  
         f o n t - w e i g h t :   6 0 0 ;  
         c o l o r :   # 1 e 2 9 3 b ;  
         f o n t - s i z e :   0 . 9 3 7 5 r e m ;  
         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 ;  
         g a p :   0 . 5 r e m ;  
 }  
  
 . f e e d - p o s t - a u t h o r - m e t a ,  
 . f e e d - p o s t - t i m e   {  
         f o n t - s i z e :   0 . 8 1 2 5 r e m ;  
         c o l o r :   # 9 4 a 3 b 8 ;  
         m a r g i n - t o p :   0 . 1 2 5 r e m ;  
 }  
  
 . f e e d - c r e a t e - p o s t - f o r m   {  
         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 ;  
         g a p :   1 r e m ;  
 }  
  
 . f e e d - i n p u t - c o n t a i n e r   {  
         p o s i t i o n :   r e l a t i v e ;  
 }  
  
 . f e e d - t e x t a r e a - w r a p p e r   {  
         p o s i t i o n :   r e l a t i v e ;  
         d i s p l a y :   f l e x ;  
         f l e x - d i r e c t i o n :   r o w ;  
         a l i g n - i t e m s :   c e n t e r ;  
         g a p :   0 . 5 r e m ;  
         b o r d e r :   2 p x   s o l i d   # e 2 e 8 f 0 ;  
         b o r d e r - r a d i u s :   2 4 p x ;  
         b a c k g r o u n d :   t r a n s p a r e n t ;  
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ;  
         p a d d i n g :   0 . 5 r e m   0 . 7 5 r e m ;  
         m i n - h e i g h t :   4 0 p x ;  
 }  
  
 . f e e d - t e x t a r e a - w r a p p e r : h o v e r   {  
         b o r d e r - c o l o r :   # c b d 5 e 1 ;  
 }  
  
 . f e e d - t e x t a r e a - w r a p p e r : f o c u s - w i t h i n   {  
         b o r d e r - c o l o r :   # 5 6 2 4 D 0 ;  
         b o x - s h a d o w :   0   0   0   3 p x   r g b a ( 8 6 ,   3 6 ,   2 0 8 ,   0 . 1 ) ;  
 }  
  
 . f e e d - t e x t a r e a - a u t h o r   {  
         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 ;  
         g a p :   0 . 7 5 r e m ;  
         f l e x - s h r i n k :   0 ;  
         p a d d i n g :   0 ;  
         b o r d e r :   n o n e ;  
 }  
  
 . f e e d - t e x t a r e a - a u t h o r   . f e e d - p o s t - a v a t a r   {  
         w i d t h :   2 8 p x ;  
         h e i g h t :   2 8 p x ;  
         f l e x - s h r i n k :   0 ;  
         b o r d e r - r a d i u s :   5 0 % ;  
         o b j e c t - f i t :   c o v e r ;  
 }  
  
 . f e e d - t e x t a r e a - a u t h o r   . f e e d - p o s t - a v a t a r - i n i t i a l   {  
         w i d t h :   2 8 p x ;  
         h e i g h t :   2 8 p x ;  
         f o n t - s i z e :   0 . 8 1 2 5 r e m ;  
         f l e x - s h r i n k :   0 ;  
 }  
  
 . f e e d - t e x t a r e a - a u t h o r   . f e e d - p o s t - a u t h o r - n a m e   {  
         f o n t - s i z e :   0 . 8 7 5 r e m ;  
         f o n t - w e i g h t :   6 0 0 ;  
         c o l o r :   # 1 e 2 9 3 b ;  
         m a r g i n :   0 ;  
         l i n e - h e i g h t :   1 . 4 ;  
         w h i t e - s p a c e :   n o w r a p ;  
 }  
  
 . f e e d - t e x t a r e a - d i v i d e r   {  
         w i d t h :   1 p x ;  
         h e i g h t :   2 0 p x ;  
         b a c k g r o u n d :   # e 2 e 8 f 0 ;  
         m a r g i n :   0 ;  
         f l e x - s h r i n k :   0 ;  
 }  
  
 . f e e d - p o s t - i n p u t ,  
 . f e e d - p o s t - t e x t a r e a   {  
         f l e x :   1 ;  
         p a d d i n g :   0 ;  
         b o r d e r :   n o n e ;  
         b o r d e r - r a d i u s :   0 ;  
         f o n t - s i z e :   0 . 9 3 7 5 r e m ;  
         f o n t - f a m i l y :   i n h e r i t ;  
         r e s i z e :   n o n e ;  
         t r a n s i t i o n :   n o n e ;  
         b a c k g r o u n d :   t r a n s p a r e n t ;  
         l i n e - h e i g h t :   1 . 4 ;  
         m i n - h e i g h t :   2 0 p x ;  
         m a x - h e i g h t :   1 2 0 p x ;  
         o v e r f l o w - y :   a u t o ;  
         m a r g i n :   0 ;  
         v e r t i c a l - a l i g n :   m i d d l e ;  
 }  
  
 . f e e d - p o s t - i n p u t : f o c u s ,  
 . f e e d - p o s t - t e x t a r e a : f o c u s   {  
         o u t l i n e :   n o n e ;  
         p a d d i n g - r i g h t :   0 . 5 r e m ;  
 }  
  
 . f e e d - p o s t - t e x t a r e a : : p l a c e h o l d e r   {  
         c o l o r :   # 9 4 a 3 b 8 ;  
 }  
  
 . f e e d - t e x t a r e a - a c t i o n s   {  
         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 ;  
         g a p :   0 . 5 r e m ;  
         f l e x - s h r i n k :   0 ;  
         m a r g i n - l e f t :   a u t o ;  
 }  
  
 . f e e d - p o s t - a c t i o n s   {  
         d i s p l a y :   f l e x ;  
         g a p :   0 . 5 r e m ;  
 }  
  
 . f e e d - f o r m - f o o t e r   {  
         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 :   c e n t e r ;  
         p a d d i n g - t o p :   0 . 5 r e m ;  
         b o r d e r - t o p :   1 p x   s o l i d   # f 1 f 5 f 9 ;  
 }  
  
 . f e e d - p o s t - a c t i o n - b t n   {  
         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 ;  
         w i d t h :   3 6 p x ;  
         h e i g h t :   3 6 p x ;  
         b o r d e r :   n o n e ;  
         b a c k g r o u n d :   t r a n s p a r e n t ;  
         b o r d e r - r a d i u s :   5 0 % ;  
         c u r s o r :   p o i n t e r ;  
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ;  
         p o s i t i o n :   r e l a t i v e ;  
         o v e r f l o w :   h i d d e n ;  
         f l e x - s h r i n k :   0 ;  
 }  
  
 . f e e d - p o s t - a c t i o n - b t n   s v g   {  
         w i d t h :   2 0 p x ;  
         h e i g h t :   2 0 p x ;  
         f l e x - s h r i n k :   0 ;  
         p o i n t e r - e v e n t s :   n o n e ;  
 }  
  
 / *      %     $% %   ]%    ,            %     %             ]%                 %   %   %           %             Q%     % Q%    * /  
 . f e e d - p o s t - a c t i o n - b t n   i m g ,  
 . f e e d - p o s t - a c t i o n - b t n   . i m a g e - p r e v i e w - i t e m   {  
         d i s p l a y :   n o n e   ! i m p o r t a n t ;  
 }  
  
 . f e e d - p o s t - a c t i o n - b t n : h o v e r   {  
         b a c k g r o u n d :   # f 1 f 5 f 9 ;  
         t r a n s f o r m :   s c a l e ( 1 . 0 5 ) ;  
 }  
  
 . f e e d - p o s t - a c t i o n - b t n : a c t i v e   {  
         t r a n s f o r m :   s c a l e ( 0 . 9 5 ) ;  
 }  
  
 . f e e d - e m o j i - b t n   {  
         f o n t - s i z e :   1 . 2 5 r e m ;  
         l i n e - h e i g h t :   1 ;  
 }  
  
 . f e e d - t e x t a r e a - w r a p p e r   {  
         p o s i t i o n :   r e l a t i v e ;  
 }  
  
 . e m o j i - p i c k e r   {  
         p o s i t i o n :   a b s o l u t e ;  
         t o p :   c a l c ( 1 0 0 %   +   0 . 5 r e m ) ;  
         l e f t :   0 ;  
         r i g h t :   0 ;  
         w i d t h :   1 0 0 % ;  
         b a c k g r o u n d :   # f f f ;  
         b o r d e r :   1 p x   s o l i d   # e 2 e 8 f 0 ;  
         b o r d e r - r a d i u s :   1 2 p x ;  
         b o x - s h a d o w :   0   4 p x   1 2 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 5 ) ;  
         p a d d i n g :   0 . 7 5 r e m ;  
         m a x - h e i g h t :   2 5 0 p x ;  
         o v e r f l o w - y :   a u t o ;  
         z - i n d e x :   1 0 0 0 ;  
         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 ( 8 ,   1 f r ) ;  
         g a p :   0 . 2 5 r e m ;  
         m a r g i n - t o p :   0 . 5 r e m ;  
 }  
  
 . f e e d - t e x t a r e a - a c t i o n s   {  
         p o s i t i o n :   r e l a t i v e ;  
 }  
  
 . e m o j i - p i c k e r - i t e m   {  
         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 ;  
         w i d t h :   3 2 p x ;  
         h e i g h t :   3 2 p x ;  
         f o n t - s i z e :   1 . 5 r e m ;  
         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 :   6 p x ;  
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ;  
         u s e r - s e l e c t :   n o n e ;  
 }  
  
 . e m o j i - p i c k e r - i t e m : h o v e r   {  
         b a c k g r o u n d :   # f 1 f 5 f 9 ;  
         t r a n s f o r m :   s c a l e ( 1 . 2 ) ;  
 }  
  
 . f e e d - p o s t - s u b m i t - b t n - i n l i n e   {  
         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 ;  
         w i d t h :   3 6 p x ;  
         h e i g h t :   3 6 p x ;  
         p a d d i n g :   0 ;  
         b a c k g r o u n d :   # 5 6 2 4 D 0 ;  
         c o l o r :   # f f f ;  
         b o r d e r :   n o n e ;  
         b o r d e r - r a d i u s :   5 0 % ;  
         c u r s o r :   p o i n t e r ;  
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ;  
         b o x - s h a d o w :   0   2 p x   4 p x   r g b a ( 8 6 ,   3 6 ,   2 0 8 ,   0 . 2 ) ;  
         f l e x - s h r i n k :   0 ;  
 }  
  
 . f e e d - p o s t - s u b m i t - b t n - i n l i n e   s v g   {  
         w i d t h :   1 8 p x ;  
         h e i g h t :   1 8 p x ;  
         f l e x - s h r i n k :   0 ;  
 }  
  
 . f e e d - p o s t - s u b m i t - b t n - i n l i n e : h o v e r   {  
         b a c k g r o u n d :   # 4 0 1 B 9 C ;  
         t r a n s f o r m :   s c a l e ( 1 . 0 5 ) ;  
         b o x - s h a d o w :   0   4 p x   8 p x   r g b a ( 8 6 ,   3 6 ,   2 0 8 ,   0 . 3 ) ;  
 }  
  
 . f e e d - p o s t - s u b m i t - b t n - i n l i n e : a c t i v e   {  
         t r a n s f o r m :   s c a l e ( 0 . 9 5 ) ;  
         b o x - s h a d o w :   0   2 p x   4 p x   r g b a ( 8 6 ,   3 6 ,   2 0 8 ,   0 . 2 ) ;  
 }  
  
 . f e e d - p o s t - s u b m i t - b t n - i n l i n e : d i s a b l e d   {  
         o p a c i t y :   0 . 6 ;  
         c u r s o r :   n o t - a l l o w e d ;  
         t r a n s f o r m :   n o n e ;  
 }  
  
 . f e e d - p o s t - s u b m i t - b t n   {  
         p a d d i n g :   0 . 7 5 r e m   1 . 7 5 r e m ;  
         b a c k g r o u n d :   # 5 6 2 4 D 0 ;  
         c o l o r :   # f f f ;  
         b o r d e r :   n o n e ;  
         b o r d e r - r a d i u s :   1 0 p x ;  
         f o n t - s i z e :   0 . 9 3 7 5 r e m ;  
         f o n t - w e i g h t :   6 0 0 ;  
         c u r s o r :   p o i n t e r ;  
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ;  
         b o x - s h a d o w :   0   2 p x   4 p x   r g b a ( 8 6 ,   3 6 ,   2 0 8 ,   0 . 2 ) ;  
 }  
  
 . f e e d - p o s t - s u b m i t - b t n : h o v e r   {  
         b a c k g r o u n d :   # 4 0 1 B 9 C ;  
         t r a n s f o r m :   t r a n s l a t e Y ( - 1 p x ) ;  
         b o x - s h a d o w :   0   4 p x   8 p x   r g b a ( 8 6 ,   3 6 ,   2 0 8 ,   0 . 3 ) ;  
 }  
  
 . f e e d - p o s t - s u b m i t - b t n : a c t i v e   {  
         t r a n s f o r m :   t r a n s l a t e Y ( 0 ) ;  
         b o x - s h a d o w :   0   2 p x   4 p x   r g b a ( 8 6 ,   3 6 ,   2 0 8 ,   0 . 2 ) ;  
 }  
  
 . f e e d - p o s t - s u b m i t - b t n : d i s a b l e d   {  
         o p a c i t y :   0 . 6 ;  
         c u r s o r :   n o t - a l l o w e d ;  
         t r a n s f o r m :   n o n e ;  
 }  
  
 . f e e d - f o r m - e r r o r   {  
         p a d d i n g :   0 . 7 5 r e m ;  
         b a c k g r o u n d :   # f e e 2 e 2 ;  
         b o r d e r :   1 p x   s o l i d   # f c a 5 a 5 ;  
         b o r d e r - r a d i u s :   8 p x ;  
         c o l o r :   # d c 2 6 2 6 ;  
         f o n t - s i z e :   0 . 8 7 5 r e m ;  
 }  
  
 / *             %   W%          * /  
 . f e e d - p o s t   {  
         b a c k g r o u n d :   # f f f ;  
         b o r d e r :   1 p x   s o l i d   # e 2 e 8 f 0 ;  
         b o r d e r - r a d i u s :   1 2 p x ;  
         m a r g i n - b o t t o m :   1 . 5 r e m ;  
         o v e r f l o w :   h i d d e n ;  
         b o x - s h a d o w :   0   1 p x   3 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 0 5 ) ;  
         t r a n s i t i o n :   b o x - s h a d o w   0 . 2 s   e a s e ;  
 }  
  
 . f e e d - p o s t : h o v e r   {  
         b o x - s h a d o w :   0   2 p x   8 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 ) ;  
 }  
  
 . f e e d - p o s t - h e a d e r   {  
         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 ;  
         p a d d i n g :   1 r e m   1 . 5 r e m ;  
         b o r d e r - b o t t o m :   1 p x   s o l i d   # f 1 f 5 f 9 ;  
 }  
  
 . f e e d - p o s t - m e n u   {  
         p o s i t i o n :   r e l a t i v e ;  
         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 ;  
 }  
  
 . f e e d - p o s t - m e n u - b t n   {  
         b a c k g r o u n d :   t r a n s p a r e n t ;  
         b o r d e r :   n o n e ;  
         f o n t - s i z e :   1 . 5 r e m ;  
         c o l o r :   # 9 4 a 3 b 8 ;  
         c u r s o r :   p o i n t e r ;  
         p a d d i n g :   0 . 2 5 r e m   0 . 5 r e m ;  
         l i n e - h e i g h t :   1 ;  
         t r a n s i t i o n :   a l l   0 . 2 s ;  
         b o r d e r - r a d i u s :   6 p x ;  
         f l e x - s h r i n k :   0 ;  
 }  
  
 . f e e d - p o s t - m e n u - b t n : h o v e r   {  
         b a c k g r o u n d :   # f 1 f 5 f 9 ;  
         c o l o r :   # 1 e 2 9 3 b ;  
 }  
  
 . f e e d - p o s t - m e n u - d r o p d o w n   {  
         p o s i t i o n :   a b s o l u t e ;  
         t o p :   5 0 % ;  
         r i g h t :   c a l c ( 1 0 0 %   +   0 . 5 r e m ) ;  
         t r a n s f o r m :   t r a n s l a t e Y ( - 5 0 % ) ;  
         b a c k g r o u n d :   t r a n s p a r e n t ;  
         b o r d e r :   n o n e ;  
         b o r d e r - r a d i u s :   0 ;  
         b o x - s h a d o w :   n o n e ;  
         d i s p l a y :   n o n e ;  
         f l e x - d i r e c t i o n :   r o w ;  
         a l i g n - i t e m s :   c e n t e r ;  
         g a p :   0 . 5 r e m ;  
         z - i n d e x :   1 0 0 ;  
         p a d d i n g :   0 ;  
         w h i t e - s p a c e :   n o w r a p ;  
         f l e x - w r a p :   n o w r a p ;  
 }  
  
 . f e e d - p o s t - m e n u - d r o p d o w n [ s t y l e * = " f l e x " ]   {  
         d i s p l a y :   f l e x   ! i m p o r t a n t ;  
 }  
  
 . m e n u - i t e m   {  
         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 ;  
         w i d t h :   3 2 p x ;  
         h e i g h t :   3 2 p x ;  
         p a d d i n g :   0 ;  
         b a c k g r o u n d :   t r a n s p a r e n t ;  
         b o r d e r :   n o n e ;  
         c o l o r :   # 6 4 7 4 8 b ;  
         c u r s o r :   p o i n t e r ;  
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ;  
         b o r d e r - r a d i u s :   5 0 % ;  
         f l e x - s h r i n k :   0 ;  
 }  
  
 . m e n u - i t e m : h o v e r   {  
         b a c k g r o u n d :   # f 1 f 5 f 9 ;  
         c o l o r :   # 1 e 2 9 3 b ;  
         t r a n s f o r m :   s c a l e ( 1 . 1 ) ;  
 }  
  
 . m e n u - i t e m   s v g   {  
         w i d t h :   1 8 p x ;  
         h e i g h t :   1 8 p x ;  
 }  
  
 . m e n u - i t e m - d a n g e r   {  
         c o l o r :   # e f 4 4 4 4 ;  
 }  
  
 . m e n u - i t e m - d a n g e r : h o v e r   {  
         b a c k g r o u n d :   # f e e 2 e 2 ;  
         c o l o r :   # d c 2 6 2 6 ;  
 }  
  
 . m e n u - d i v i d e r   {  
         d i s p l a y :   n o n e ;  
 }  
  
 / *          ]% %       $% % Q%         % %         %       %  * /  
 . p o s t - e d i t - f o r m   {  
         m a r g i n - t o p :   0 . 5 r e m ;  
 }  
  
 . p o s t - e d i t - t e x t a r e a   {  
         w i d t h :   1 0 0 % ;  
         m i n - h e i g h t :   1 0 0 p x ;  
         p a d d i n g :   0 . 7 5 r e m ;  
         b o r d e r :   1 p x   s o l i d   # e 2 e 8 f 0 ;  
         b o r d e r - r a d i u s :   8 p x ;  
         f o n t - s i z e :   0 . 9 3 7 5 r e m ;  
         f o n t - f a m i l y :   i n h e r i t ;  
         r e s i z e :   v e r t i c a l ;  
 }  
  
 . p o s t - e d i t - t e x t a r e a : f o c u s   {  
         o u t l i n e :   n o n e ;  
         b o r d e r - c o l o r :   # 5 6 2 4 D 0 ;  
 }  
  
 . p o s t - e d i t - a c t i o n s   {  
         d i s p l a y :   f l e x ;  
         g a p :   0 . 5 r e m ;  
         m a r g i n - t o p :   0 . 7 5 r e m ;  
 }  
  
 . b t n - s a v e ,  
 . b t n - c a n c e l   {  
         p a d d i n g :   0 . 5 r e m   1 r e m ;  
         b o r d e r :   n o n e ;  
         b o r d e r - r a d i u s :   6 p x ;  
         f o n t - s i z e :   0 . 8 7 5 r e m ;  
         f o n t - w e i g h t :   5 0 0 ;  
         c u r s o r :   p o i n t e r ;  
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ;  
 }  
  
 . b t n - s a v e   {  
         b a c k g r o u n d :   # 5 6 2 4 D 0 ;  
         c o l o r :   # f f f ;  
 }  
  
 . b t n - s a v e : h o v e r   {  
         b a c k g r o u n d :   # 4 0 1 B 9 C ;  
 }  
  
 . b t n - c a n c e l   {  
         b a c k g r o u n d :   # f 1 f 5 f 9 ;  
         c o l o r :   # 6 4 7 4 8 b ;  
 }  
  
 . b t n - c a n c e l : h o v e r   {  
         b a c k g r o u n d :   # e 2 e 8 f 0 ;  
 }  
  
 . f e e d - p o s t - c o n t e n t   {  
         p a d d i n g :   0 . 7 5 r e m   1 . 5 r e m ;  
         t e x t - a l i g n :   l e f t   ! i m p o r t a n t ;  
         d i r e c t i o n :   l t r ;  
 }  
  
 . f e e d - p o s t - c o n t e n t   *   {  
         t e x t - a l i g n :   l e f t   ! i m p o r t a n t ;  
         d i r e c t i o n :   l t r ;  
 }  
  
 . f e e d - p o s t - c o n t e n t : f i r s t - c h i l d   {  
         p a d d i n g - t o p :   0 . 7 5 r e m ;  
 }  
  
 / *      %     %   ]%  p a d d i n g ,        W%     Q%               %         c%  * /  
 . f e e d - p o s t - c o n t e n t : e m p t y   {  
         p a d d i n g :   0 ;  
         d i s p l a y :   n o n e ;  
 }  
  
 . f e e d - p o s t - t e x t   {  
         c o l o r :   # 1 e 2 9 3 b ;  
         f o n t - s i z e :   0 . 9 3 7 5 r e m ;  
         l i n e - h e i g h t :   1 . 6 ;  
         w h i t e - s p a c e :   p r e - w r a p ;  
         w o r d - w r a p :   b r e a k - w o r d ;  
         m a r g i n - b o t t o m :   0 ;  
         t e x t - a l i g n :   l e f t   ! i m p o r t a n t ;  
         d i s p l a y :   b l o c k ;  
         d i r e c t i o n :   l t r ;  
 }  
  
 . f e e d - p o s t - t e x t   *   {  
         t e x t - a l i g n :   l e f t   ! i m p o r t a n t ;  
         d i r e c t i o n :   l t r ;  
 }  
  
 . f e e d - p o s t - t e x t : n o t ( : e m p t y ) : n o t ( : h a s ( b r : o n l y - c h i l d ) )   {  
         m a r g i n - b o t t o m :   1 r e m ;  
 }  
  
 / *      %     %   ]%             %     $% W%     %                 Q%       %       % W%   Q%   %  * /  
 . f e e d - p o s t - t e x t : e m p t y   {  
         d i s p l a y :   n o n e ;  
 }  
  
 / *      %     %   ]%             %  ,        W%         Q%                           W%   Q%           %     %   W%   %     W%     %               %           Q%  * /  
 . f e e d - p o s t - t e x t : h a s ( b r : o n l y - c h i l d )   {  
         d i s p l a y :   n o n e ;  
 }  
  
 . f e e d - p o s t - i m a g e s   {  
         m a r g i n - t o p :   1 r e m ;  
 }  
  
 . f e e d - p o s t - i m a g e s - 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 ( a u t o - f i t ,   m i n m a x ( 1 5 0 p x ,   1 f r ) ) ;  
         g a p :   0 . 5 r e m ;  
 }  
  
 . f e e d - p o s t - i m a g e   {  
         w i d t h :   1 0 0 % ;  
         b o r d e r - r a d i u s :   8 p x ;  
         o v e r f l o w :   h i d d e n ;  
         b a c k g r o u n d :   # f 8 f a f c ;  
         p o s i t i o n :   r e l a t i v e ;  
 }  
  
 . f e e d - p o s t - a u d i o   {  
         m a r g i n - t o p :   1 r e m ;  
         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 ;  
         g a p :   1 r e m ;  
 }  
  
 . f e e d - p o s t - a u d i o - i t e m   {  
         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 ;  
         g a p :   0 . 5 r e m ;  
 }  
  
 . c u s t o m - a u d i o - p l a y e r   {  
         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 ;  
         g a p :   1 r e m ;  
         p a d d i n g :   1 r e m ;  
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 6 6 7 e e a   0 % ,   # 7 6 4 b a 2   1 0 0 % ) ;  
         b o r d e r - r a d i u s :   1 6 p x ;  
         b o x - s h a d o w :   0   4 p x   1 2 p x   r g b a ( 1 0 2 ,   1 2 6 ,   2 3 4 ,   0 . 3 ) ;  
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ;  
         p o s i t i o n :   r e l a t i v e ;  
         o v e r f l o w :   h i d d e n ;  
 }  
  
 . c u s t o m - a u d i o - p l a y e r : : b e f o r e   {  
         c o n t e n t :   ' ' ;  
         p o s i t i o n :   a b s o l u t e ;  
         t o p :   0 ;  
         l e f t :   0 ;  
         r i g h t :   0 ;  
         b o t t o m :   0 ;  
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 1 )   0 % ,   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 5 )   1 0 0 % ) ;  
         p o i n t e r - e v e n t s :   n o n e ;  
 }  
  
 . c u s t o m - a u d i o - p l a y e r . p l a y i n g   {  
         b o x - s h a d o w :   0   6 p x   2 0 p x   r g b a ( 1 0 2 ,   1 2 6 ,   2 3 4 ,   0 . 4 ) ;  
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ;  
 }  
  
 . a u d i o - p l a y - b t n   {  
         w i d t h :   4 8 p x ;  
         h e i g h t :   4 8 p x ;  
         b o r d e r - r a d i u s :   5 0 % ;  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 2 ) ;  
         b a c k d r o p - f i l t e r :   b l u r ( 1 0 p x ) ;  
         b o r d e r :   2 p x   s o l i d   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 3 ) ;  
         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 ;  
         c u r s o r :   p o i n t e r ;  
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ;  
         f l e x - s h r i n k :   0 ;  
         p o s i t i o n :   r e l a t i v e ;  
         z - i n d e x :   1 ;  
 }  
  
 . a u d i o - p l a y - b t n : h o v e r   {  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 3 ) ;  
         t r a n s f o r m :   s c a l e ( 1 . 1 ) ;  
 }  
  
 . a u d i o - p l a y - b t n : a c t i v e   {  
         t r a n s f o r m :   s c a l e ( 0 . 9 5 ) ;  
 }  
  
 . a u d i o - p l a y - i c o n ,  
 . a u d i o - p a u s e - i c o n   {  
         w i d t h :   2 4 p x ;  
         h e i g h t :   2 4 p x ;  
         c o l o r :   # f f f ;  
         s t r o k e - w i d t h :   3 ;  
 }  
  
 . a u d i o - i n f o   {  
         f l e x :   1 ;  
         m i n - w i d t h :   0 ;  
         p o s i t i o n :   r e l a t i v e ;  
         z - i n d e x :   1 ;  
 }  
  
 . a u d i o - n a m e   {  
         f o n t - s i z e :   0 . 9 3 7 5 r e m ;  
         f o n t - w e i g h t :   6 0 0 ;  
         c o l o r :   # f f f ;  
         m a r g i n - b o t t o m :   0 . 5 r e m ;  
         w h i t e - s p a c e :   n o w r a p ;  
         o v e r f l o w :   h i d d e n ;  
         t e x t - o v e r f l o w :   e l l i p s i s ;  
 }  
  
 . a u d i o - c o n t r o l s   {  
         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 ;  
         g a p :   0 . 7 5 r e m ;  
 }  
  
 . a u d i o - t i m e   {  
         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 ;  
         g a p :   0 . 2 5 r e m ;  
         f o n t - s i z e :   0 . 8 1 2 5 r e m ;  
         c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 9 ) ;  
         f o n t - w e i g h t :   5 0 0 ;  
         m i n - w i d t h :   8 0 p x ;  
         f l e x - s h r i n k :   0 ;  
 }  
  
 . a u d i o - s e p a r a t o r   {  
         o p a c i t y :   0 . 6 ;  
 }  
  
 . a u d i o - p r o g r e s s - w r a p p e r   {  
         f l e x :   1 ;  
         m i n - w i d t h :   0 ;  
 }  
  
 . a u d i o - p r o g r e s s - b a r   {  
         h e i g h t :   6 p x ;  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 2 ) ;  
         b o r d e r - r a d i u s :   3 p x ;  
         p o s i t i o n :   r e l a t i v e ;  
         c u r s o r :   p o i n t e r ;  
         o v e r f l o w :   h i d d e n ;  
 }  
  
 . a u d i o - p r o g r e s s - f i l l   {  
         h e i g h t :   1 0 0 % ;  
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 9 0 d e g ,   # f f f   0 % ,   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 8 )   1 0 0 % ) ;  
         b o r d e r - r a d i u s :   3 p x ;  
         w i d t h :   0 % ;  
         t r a n s i t i o n :   w i d t h   0 . 1 s   l i n e a r ;  
         p o s i t i o n :   r e l a t i v e ;  
 }  
  
 . a u d i o - p r o g r e s s - h a n d l e   {  
         p o s i t i o n :   a b s o l u t e ;  
         t o p :   5 0 % ;  
         l e f t :   0 % ;  
         w i d t h :   1 4 p x ;  
         h e i g h t :   1 4 p x ;  
         b a c k g r o u n d :   # f f f ;  
         b o r d e r - r a d i u s :   5 0 % ;  
         t r a n s f o r m :   t r a n s l a t e ( - 5 0 % ,   - 5 0 % ) ;  
         b o x - s h a d o w :   0   2 p x   4 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 2 ) ;  
         o p a c i t y :   0 ;  
         t r a n s i t i o n :   o p a c i t y   0 . 2 s   e a s e ;  
 }  
  
 . a u d i o - p r o g r e s s - b a r : h o v e r   . a u d i o - p r o g r e s s - h a n d l e   {  
         o p a c i t y :   1 ;  
 }  
  
 . a u d i o - w a v e f o r m   {  
         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 ;  
         g a p :   3 p x ;  
         h e i g h t :   3 2 p x ;  
         f l e x - s h r i n k :   0 ;  
         p o s i t i o n :   r e l a t i v e ;  
         z - i n d e x :   1 ;  
 }  
  
 . w a v e f o r m - b a r   {  
         w i d t h :   4 p x ;  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 4 ) ;  
         b o r d e r - r a d i u s :   2 p x ;  
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ;  
         a n i m a t i o n :   w a v e f o r m - i d l e   1 . 5 s   e a s e - i n - o u t   i n f i n i t e ;  
 }  
  
 . w a v e f o r m - b a r : n t h - c h i l d ( 1 )   {   h e i g h t :   8 p x ;   a n i m a t i o n - d e l a y :   0 s ;   }  
 . w a v e f o r m - b a r : n t h - c h i l d ( 2 )   {   h e i g h t :   1 6 p x ;   a n i m a t i o n - d e l a y :   0 . 1 s ;   }  
 . w a v e f o r m - b a r : n t h - c h i l d ( 3 )   {   h e i g h t :   2 4 p x ;   a n i m a t i o n - d e l a y :   0 . 2 s ;   }  
 . w a v e f o r m - b a r : n t h - c h i l d ( 4 )   {   h e i g h t :   1 6 p x ;   a n i m a t i o n - d e l a y :   0 . 3 s ;   }  
 . w a v e f o r m - b a r : n t h - c h i l d ( 5 )   {   h e i g h t :   8 p x ;   a n i m a t i o n - d e l a y :   0 . 4 s ;   }  
  
 . c u s t o m - a u d i o - p l a y e r . p l a y i n g   . w a v e f o r m - b a r   {  
         a n i m a t i o n :   w a v e f o r m - p l a y i n g   0 . 8 s   e a s e - i n - o u t   i n f i n i t e ;  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 8 ) ;  
 }  
  
 @ k e y f r a m e s   w a v e f o r m - i d l e   {  
         0 % ,   1 0 0 %   {   t r a n s f o r m :   s c a l e Y ( 0 . 5 ) ;   }  
         5 0 %   {   t r a n s f o r m :   s c a l e Y ( 1 ) ;   }  
 }  
  
 @ k e y f r a m e s   w a v e f o r m - p l a y i n g   {  
         0 % ,   1 0 0 %   {   t r a n s f o r m :   s c a l e Y ( 0 . 3 ) ;   }  
         5 0 %   {   t r a n s f o r m :   s c a l e Y ( 1 . 2 ) ;   }  
 }  
  
 . f e e d - p o s t - i m a g e   i m g   {  
         w i d t h :   1 0 0 % ;  
         h e i g h t :   a u t o ;  
         d i s p l a y :   b l o c k ;  
         c u r s o r :   p o i n t e r ;  
         t r a n s i t i o n :   t r a n s f o r m   0 . 2 s   e a s e ;  
 }  
  
 . f e e d - p o s t - i m a g e   i m g : h o v e r   {  
         t r a n s f o r m :   s c a l e ( 1 . 0 2 ) ;  
 }  
  
 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  
                  c%       Q%         % %       c%   %   $%       % W%       
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * /  
 . g l o b a l - a u d i o - p l a y e r   {  
         p o s i t i o n :   f i x e d ;  
         l e f t :   0 ;  
         r i g h t :   0 ;  
         b o t t o m :   0 ;  
         w i d t h :   1 0 0 % ;  
         b a c k g r o u n d :   # 5 6 2 4 D 0 ;  
         b o x - s h a d o w :   0   - 2 p x   1 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 ) ;  
         z - i n d e x :   1 0 0 0 ;  
         p a d d i n g :   0 ;  
         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 ;  
 }  
  
 / *         %        -  % %       %   %           c%   %   %          * /  
 . g l o b a l - p r o g r e s s - b a r - t o p   {  
         p o s i t i o n :   a b s o l u t e ;  
         t o p :   0 ;  
         l e f t :   0 ;  
         r i g h t :   0 ;  
         w i d t h :   1 0 0 % ;  
         h e i g h t :   4 p x ;  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   6 8 ,   6 8 ,   0 . 2 ) ;  
         c u r s o r :   p o i n t e r ;  
         o v e r f l o w :   v i s i b l e ;  
         z - i n d e x :   1 0 ;  
 }  
  
 . g l o b a l - p r o g r e s s - b u f f e r e d - t o p   {  
         p o s i t i o n :   a b s o l u t e ;  
         t o p :   0 ;  
         l e f t :   0 ;  
         h e i g h t :   1 0 0 % ;  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   6 8 ,   6 8 ,   0 . 3 ) ;  
         w i d t h :   0 % ;  
         t r a n s i t i o n :   w i d t h   0 . 2 s   l i n e a r ;  
         z - i n d e x :   1 ;  
 }  
  
 . g l o b a l - p r o g r e s s - f i l l - t o p   {  
         p o s i t i o n :   a b s o l u t e ;  
         t o p :   0 ;  
         l e f t :   0 ;  
         h e i g h t :   1 0 0 % ;  
         b a c k g r o u n d :   # f f 4 4 4 4 ;  
         w i d t h :   0 % ;  
         t r a n s i t i o n :   w i d t h   0 . 1 s   l i n e a r ;  
         z - i n d e x :   2 ;  
 }  
  
 . g l o b a l - p r o g r e s s - h a n d l e - t o p   {  
         p o s i t i o n :   a b s o l u t e ;  
         t o p :   5 0 % ;  
         l e f t :   0 % ;  
         w i d t h :   1 4 p x ;  
         h e i g h t :   1 4 p x ;  
         b a c k g r o u n d :   # f f 4 4 4 4 ;  
         b o r d e r - r a d i u s :   5 0 % ;  
         t r a n s f o r m :   t r a n s l a t e ( - 5 0 % ,   - 5 0 % ) ;  
         b o x - s h a d o w :   0   2 p x   4 p x   r g b a ( 2 5 5 ,   6 8 ,   6 8 ,   0 . 4 ) ;  
         o p a c i t y :   0 ;  
         t r a n s i t i o n :   o p a c i t y   0 . 2 s   e a s e ;  
         z - i n d e x :   3 ;  
 }  
  
 . g l o b a l - p r o g r e s s - b a r - t o p : h o v e r   . g l o b a l - p r o g r e s s - h a n d l e - t o p   {  
         o p a c i t y :   1 ;  
 }  
  
 . g l o b a l - p l a y e r - c o n t a i n e r   {  
         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 :   s p a c e - b e t w e e n ;  
         g a p :   1 r e m ;  
         p a d d i n g :   0 . 7 5 r e m   1 . 5 r e m ;  
         p a d d i n g - t o p :   c a l c ( 0 . 7 5 r e m   +   4 p x ) ;  
         m a x - w i d t h :   1 4 0 0 p x ;  
         m a r g i n :   0   a u t o ;  
         h e i g h t :   1 0 0 % ;  
         m i n - h e i g h t :   7 2 p x ;  
         p o s i t i o n :   r e l a t i v e ;  
 }  
  
 / *        % %       %        -      ]%           Q% %       %     ]%    * /  
 . g l o b a l - p l a y e r - l e f t   {  
         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 ;  
         a l i g n - i t e m s :   f l e x - s t a r t ;  
         g a p :   0 . 2 5 r e m ;  
         a l i g n - s e l f :   c e n t e r ;  
         f l e x :   1 ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         m i n - w i d t h :   0 ;  
         p a d d i n g - r i g h t :   1 r e m ;  
 }  
  
 / *               -           ]%     Q% %     %   % $%,   P l a y / P a u s e ,           ]%     Q% %   % %       $%  * /  
 . g l o b a l - p l a y e r - c e n t e r   {  
         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 ;  
         a l i g n - s e l f :   c e n t e r ;  
         g a p :   0 . 7 5 r e m ;  
         p o s i t i o n :   a b s o l u t e ;  
         l e f t :   5 0 % ;  
         t r a n s f o r m :   t r a n s l a t e X ( - 5 0 % ) ;  
         f l e x - s h r i n k :   0 ;  
 }  
  
 . g l o b a l - b t n - p l a y   {  
         w i d t h :   5 6 p x ;  
         h e i g h t :   5 6 p x ;  
         b o r d e r - r a d i u s :   5 0 % ;  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   6 8 ,   6 8 ,   0 . 2 ) ;  
         b o r d e r :   2 p x   s o l i d   r g b a ( 2 5 5 ,   6 8 ,   6 8 ,   0 . 4 ) ;  
         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 ;  
         c u r s o r :   p o i n t e r ;  
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ;  
         f l e x - s h r i n k :   0 ;  
 }  
  
 . g l o b a l - b t n - p l a y : h o v e r   {  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   6 8 ,   6 8 ,   0 . 3 ) ;  
         b o r d e r - c o l o r :   r g b a ( 2 5 5 ,   6 8 ,   6 8 ,   0 . 6 ) ;  
         t r a n s f o r m :   s c a l e ( 1 . 0 5 ) ;  
 }  
  
 . g l o b a l - b t n - p l a y : a c t i v e   {  
         t r a n s f o r m :   s c a l e ( 0 . 9 5 ) ;  
 }  
  
 . g l o b a l - p l a y - i c o n ,  
 . g l o b a l - p a u s e - i c o n   {  
         w i d t h :   2 8 p x ;  
         h e i g h t :   2 8 p x ;  
         c o l o r :   # f f 4 4 4 4 ;  
         s t r o k e - w i d t h :   2 . 5 ;  
 }  
  
 / *       % % %       %        -          ]% Q%          * /  
 . g l o b a l - p l a y e r - r i g h 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 ;  
         g a p :   0 . 5 r e m ;  
         a l i g n - s e l f :   c e n t e r ;  
         f l e x :   1 ;  
         j u s t i f y - c o n t e n t :   f l e x - e n d ;  
 }  
  
 / *                            Q%    * /  
 . g l o b a l - p l a y e r - m e n u - w r a p p e r   {  
         p o s i t i o n :   r e l a t i v e ;  
 }  
  
 . g l o b a l - p l a y e r - m e n u   {  
         p o s i t i o n :   a b s o l u t e ;  
         b o t t o m :   c a l c ( 1 0 0 %   +   8 p x ) ;  
         r i g h t :   0 ;  
         b a c k g r o u n d :   r g b a ( 0 ,   0 ,   0 ,   0 . 9 ) ;  
         b a c k d r o p - f i l t e r :   b l u r ( 1 0 p x ) ;  
         b o r d e r - r a d i u s :   8 p x ;  
         p a d d i n g :   0 . 5 r e m ;  
         m i n - w i d t h :   1 8 0 p x ;  
         o p a c i t y :   0 ;  
         v i s i b i l i t y :   h i d d e n ;  
         t r a n s f o r m :   t r a n s l a t e Y ( 1 0 p x ) ;  
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ;  
         z - i n d e x :   1 0 0 1 ;  
         b o x - s h a d o w :   0   4 p x   1 2 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 3 ) ;  
 }  
  
 . g l o b a l - p l a y e r - m e n u - w r a p p e r : h o v e r   . g l o b a l - p l a y e r - m e n u   {  
         o p a c i t y :   1 ;  
         v i s i b i l i t y :   v i s i b l e ;  
         t r a n s f o r m :   t r a n s l a t e Y ( 0 ) ;  
 }  
  
 . g l o b a l - m e n u - i t e m   {  
         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 ;  
         g a p :   0 . 7 5 r e m ;  
         w i d t h :   1 0 0 % ;  
         p a d d i n g :   0 . 7 5 r e m   1 r e m ;  
         b a c k g r o u n d :   t r a n s p a r e n t ;  
         b o r d e r :   n o n e ;  
         c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 9 ) ;  
         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 :   6 p x ;  
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ;  
         f o n t - s i z e :   0 . 8 7 5 r e m ;  
         t e x t - a l i g n :   l e f t ;  
 }  
  
 . g l o b a l - m e n u - i t e m : h o v e r   {  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 1 ) ;  
         c o l o r :   # f f f ;  
 }  
  
 . g l o b a l - m e n u - i t e m   s v g   {  
         w i d t h :   1 8 p x ;  
         h e i g h t :   1 8 p x ;  
         s t r o k e :   c u r r e n t C o l o r ;  
         f l e x - s h r i n k :   0 ;  
 }  
  
 . g l o b a l - m e n u - i t e m   s p a n   {  
         f l e x :   1 ;  
 }  
  
 . g l o b a l - m e n u - i t e m . a c t i v e   {  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   6 8 ,   6 8 ,   0 . 1 5 ) ;  
         c o l o r :   # f f 4 4 4 4 ;  
 }  
  
 / *          % Q%       %   % % W%          * /  
 . g l o b a l - p l a y e r - b t n   {  
         w i d t h :   4 0 p x ;  
         h e i g h t :   4 0 p x ;  
         b o r d e r :   n o n e ;  
         b a c k g r o u n d :   t r a n s p a r e n t ;  
         c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 9 5 ) ;  
         c u r s o r :   p o i n t e r ;  
         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 ;  
         b o r d e r - r a d i u s :   5 0 % ;  
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ;  
         f l e x - s h r i n k :   0 ;  
         p a d d i n g :   0 ;  
 }  
  
 . g l o b a l - p l a y e r - b t n   s v g   {  
         w i d t h :   2 0 p x ;  
         h e i g h t :   2 0 p x ;  
         s t r o k e :   c u r r e n t C o l o r ;  
 }  
  
 . g l o b a l - p l a y e r - b t n : h o v e r   {  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   6 8 ,   6 8 ,   0 . 1 5 ) ;  
         c o l o r :   # f f 4 4 4 4 ;  
 }  
  
 . g l o b a l - p l a y e r - b t n : a c t i v e   {  
         t r a n s f o r m :   s c a l e ( 0 . 9 ) ;  
 }  
  
 / *              ]% %                   Q%    * /  
 . g l o b a l - p l a y e r - i n f o   {  
         f l e x :   1 ;  
         m i n - w i d t h :   0 ;  
         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 ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         g a p :   0 . 5 r e m ;  
         m a r g i n :   0   1 r e m ;  
 }  
  
 . g l o b a l - t r a c k - t i t l e - r o w   {  
         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 ;  
         h e i g h t :   2 4 p x ;  
         m a r g i n :   0 ;  
         p a d d i n g :   0 ;  
 }  
  
 . g l o b a l - t r a c k - t i t l e   {  
         f o n t - s i z e :   0 . 9 3 7 5 r e m ;  
         f o n t - w e i g h t :   6 0 0 ;  
         c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 9 5 ) ;  
         w h i t e - s p a c e :   n o w r a p ;  
         o v e r f l o w :   h i d d e n ;  
         t e x t - o v e r f l o w :   e l l i p s i s ;  
         l i n e - h e i g h t :   1 . 2 ;  
         m a r g i n :   0 ;  
         p a d d i n g :   0 ;  
         w i d t h :   1 0 0 % ;  
 }  
  
 . g l o b a l - p l a y e r - p r o g r e s s - w r a p p e r   {  
         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 ;  
         g a p :   0 . 7 5 r e m ;  
         m a r g i n :   0 ;  
         p a d d i n g :   0 ;  
 }  
  
 . g l o b a l - p l a y e r - t i m e   {  
         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 ;  
         g a p :   0 . 2 5 r e m ;  
         f o n t - s i z e :   0 . 7 5 r e m ;  
         c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 8 ) ;  
         f o n t - w e i g h t :   4 0 0 ;  
         l i n e - h e i g h t :   1 ;  
         m a r g i n :   0 ;  
         p a d d i n g :   0 ;  
 }  
  
 . g l o b a l - t i m e - s e p a r a t o r   {  
         o p a c i t y :   0 . 6 ;  
 }  
  
 . g l o b a l - p r o g r e s s - b a r   {  
         f l e x :   1 ;  
         h e i g h t :   6 p x ;  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   6 8 ,   6 8 ,   0 . 2 ) ;  
         b o r d e r - r a d i u s :   3 p x ;  
         p o s i t i o n :   r e l a t i v e ;  
         c u r s o r :   p o i n t e r ;  
         o v e r f l o w :   v i s i b l e ;  
 }  
  
 . g l o b a l - p r o g r e s s - b u f f e r e d   {  
         p o s i t i o n :   a b s o l u t e ;  
         t o p :   0 ;  
         l e f t :   0 ;  
         h e i g h t :   1 0 0 % ;  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   6 8 ,   6 8 ,   0 . 3 ) ;  
         b o r d e r - r a d i u s :   3 p x ;  
         w i d t h :   0 % ;  
         t r a n s i t i o n :   w i d t h   0 . 2 s   l i n e a r ;  
         z - i n d e x :   1 ;  
 }  
  
 . g l o b a l - p r o g r e s s - f i l l   {  
         p o s i t i o n :   r e l a t i v e ;  
         h e i g h t :   1 0 0 % ;  
         b a c k g r o u n d :   # f f 4 4 4 4 ;  
         b o r d e r - r a d i u s :   3 p x ;  
         w i d t h :   0 % ;  
         t r a n s i t i o n :   w i d t h   0 . 1 s   l i n e a r ;  
         z - i n d e x :   2 ;  
 }  
  
 . g l o b a l - p r o g r e s s - h a n d l e   {  
         p o s i t i o n :   a b s o l u t e ;  
         t o p :   5 0 % ;  
         l e f t :   0 % ;  
         w i d t h :   1 4 p x ;  
         h e i g h t :   1 4 p x ;  
         b a c k g r o u n d :   # f f 4 4 4 4 ;  
         b o r d e r - r a d i u s :   5 0 % ;  
         t r a n s f o r m :   t r a n s l a t e ( - 5 0 % ,   - 5 0 % ) ;  
         b o x - s h a d o w :   0   2 p x   4 p x   r g b a ( 2 5 5 ,   6 8 ,   6 8 ,   0 . 4 ) ;  
         o p a c i t y :   0 ;  
         t r a n s i t i o n :   o p a c i t y   0 . 2 s   e a s e ;  
 }  
  
 . g l o b a l - p r o g r e s s - b a r : h o v e r   . g l o b a l - p r o g r e s s - h a n d l e   {  
         o p a c i t y :   1 ;  
 }  
  
 / *        %   W%         W%                 Q%        -      $% % W%      ,        %         %   ]%        * /  
  
 . g l o b a l - v o l u m e - c o n t r o l   {  
         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 ;  
         g a p :   0 . 5 r e m ;  
 }  
  
 . g l o b a l - v o l u m e - s l i d e r   {  
         w i d t h :   8 0 p x ;  
         h e i g h t :   4 p x ;  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   6 8 ,   6 8 ,   0 . 2 ) ;  
         b o r d e r - r a d i u s :   2 p x ;  
         o u t l i n e :   n o n e ;  
         - w e b k i t - a p p e a r a n c e :   n o n e ;  
         a p p e a r a n c e :   n o n e ;  
 }  
  
 . g l o b a l - v o l u m e - s l i d e r : : - w e b k i t - s l i d e r - t h u m b   {  
         - w e b k i t - a p p e a r a n c e :   n o n e ;  
         a p p e a r a n c e :   n o n e ;  
         w i d t h :   1 2 p x ;  
         h e i g h t :   1 2 p x ;  
         b a c k g r o u n d :   # f f 4 4 4 4 ;  
         b o r d e r - r a d i u s :   5 0 % ;  
         c u r s o r :   p o i n t e r ;  
 }  
  
 . g l o b a l - v o l u m e - s l i d e r : : - m o z - r a n g e - t h u m b   {  
         w i d t h :   1 2 p x ;  
         h e i g h t :   1 2 p x ;  
         b a c k g r o u n d :   # f f 4 4 4 4 ;  
         b o r d e r - r a d i u s :   5 0 % ;  
         c u r s o r :   p o i n t e r ;  
         b o r d e r :   n o n e ;  
 }  
  
 . g l o b a l - b t n - s p e e d   {  
         m i n - w i d t h :   4 0 p x ;  
         f o n t - s i z e :   0 . 8 1 2 5 r e m ;  
         f o n t - w e i g h t :   6 0 0 ;  
 }  
  
 . g l o b a l - s p e e d - t e x t   {  
         c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 9 5 ) ;  
 }  
  
 / *      Q%     Q%    R e p e a t       S h u f f l e   * /  
 . r e p e a t - i c o n ,  
 . s h u f f l e - i c o n   {  
         w i d t h :   2 0 p x ;  
         h e i g h t :   2 0 p x ;  
         s t r o k e :   c u r r e n t C o l o r ;  
         t r a n s i t i o n :   o p a c i t y   0 . 2 s   e a s e ;  
 }  
  
 . g l o b a l - b t n - r e p e a t . a c t i v e ,  
 . g l o b a l - b t n - s h u f f l e . a c t i v e   {  
         o p a c i t y :   1 ;  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   6 8 ,   6 8 ,   0 . 1 5 ) ;  
         c o l o r :   # f f 4 4 4 4 ;  
 }  
  
 . g l o b a l - v o l u m e - i c o n   {  
         w i d t h :   2 0 p x ;  
         h e i g h t :   2 0 p x ;  
         s t r o k e :   c u r r e n t C o l o r ;  
 }  
  
 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  
            ]% % % Q%       c%   % W%         $% W%     %   W%             Q%   %     %  (            c%   W%   %   c%     %   W%)  
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * /  
 . c o m p a c t - a u d i o - p l a y e r   {  
         p o s i t i o n :   f i x e d ;  
         l e f t :   2 0 p x ;  
         b o t t o m :   2 0 p x ;  
         w i d t h :   3 2 0 p x ;  
         b a c k g r o u n d :   # f f f ;  
         b o r d e r - r a d i u s :   1 2 p x ;  
         b o x - s h a d o w :   0   4 p x   2 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 5 ) ;  
         z - i n d e x :   9 9 9 ;  
         d i s p l a y :   n o n e ;  
         o v e r f l o w :   v i s i b l e ;  
 }  
  
 @ m e d i a   ( m i n - w i d t h :   1 0 2 4 p x )   {  
         . g l o b a l - a u d i o - p l a y e r   {  
                 d i s p l a y :   n o n e   ! i m p o r t a n t ;  
                 v i s i b i l i t y :   h i d d e n   ! i m p o r t a n t ;  
         }  
 }  
  
 @ m e d i a   ( m a x - w i d t h :   1 0 2 3 p x )   {  
         . c o m p a c t - a u d i o - p l a y e r   {  
                 d i s p l a y :   n o n e   ! i m p o r t a n t ;  
                 v i s i b i l i t y :   h i d d e n   ! i m p o r t a n t ;  
         }  
 }  
  
 . c o m p a c t - p l a y e r - i m a g e - w r a p p e r   {  
         p o s i t i o n :   r e l a t i v e ;  
         w i d t h :   1 0 0 % ;  
         h e i g h t :   1 8 0 p x ;  
 }  
  
 . c o m p a c t - p l a y e r - 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 v e r ;  
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 6 6 7 e e a   0 % ,   # 7 6 4 b a 2   1 0 0 % ) ;  
         d i s p l a y :   b l o c k ;  
 }  
  
 . c o m p a c t - e q u a l i z e r - c a n v a s   {  
         p o s i t i o n :   a b s o l u t e ;  
         b o t t o m :   0 ;  
         l e f t :   0 ;  
         w i d t h :   1 0 0 % ;  
         h e i g h t :   1 0 0 % ;  
         p o i n t e r - e v e n t s :   n o n e ;  
         z - i n d e x :   2 ;  
         o p a c i t y :   1 ;  
 }  
  
 . c o m p a c t - p l a y e r - c l o s e   {  
         p o s i t i o n :   a b s o l u t e ;  
         t o p :   8 p x ;  
         r i g h t :   8 p x ;  
         w i d t h :   3 2 p x ;  
         h e i g h t :   3 2 p x ;  
         b o r d e r :   n o n e ;  
         b a c k g r o u n d :   r g b a ( 0 ,   0 ,   0 ,   0 . 5 ) ;  
         b a c k d r o p - f i l t e r :   b l u r ( 4 p x ) ;  
         c o l o r :   # f f f ;  
         c u r s o r :   p o i n t e r ;  
         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 ;  
         b o r d e r - r a d i u s :   5 0 % ;  
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ;  
         z - i n d e x :   1 0 ;  
         p a d d i n g :   0 ;  
 }  
  
 . c o m p a c t - p l a y e r - c l o s e : h o v e r   {  
         b a c k g r o u n d :   r g b a ( 0 ,   0 ,   0 ,   0 . 7 ) ;  
         t r a n s f o r m :   s c a l e ( 1 . 1 ) ;  
 }  
  
 . c o m p a c t - p l a y e r - c l o s e : a c t i v e   {  
         t r a n s f o r m :   s c a l e ( 0 . 9 5 ) ;  
 }  
  
 . c o m p a c t - p l a y e r - c l o s e   s v g   {  
         w i d t h :   1 8 p x ;  
         h e i g h t :   1 8 p x ;  
         s t r o k e :   c u r r e n t C o l o r ;  
         s t r o k e - w i d t h :   2 . 5 ;  
 }  
  
 . c o m p a c t - p l a y e r - p r o g r e s s   {  
         p a d d i n g :   0 . 7 5 r e m   1 r e m ;  
         b o r d e r - b o t t o m :   1 p x   s o l i d   # e 2 e 8 f 0 ;  
 }  
  
 . c o m p a c t - p l a y e r - a c t i o n s   {  
         p a d d i n g :   0 . 7 5 r e m   1 r e m ;  
         b o r d e r - b o t t o m :   1 p x   s o l i d   # e 2 e 8 f 0 ;  
         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 ;  
         g a p :   0 . 7 5 r e m ;  
         f l e x - w r a p :   w r a p ;  
         p o s i t i o n :   r e l a t i v e ;  
         o v e r f l o w :   v i s i b l e ;  
 }  
  
 . c o m p a c t - a c t i o n - b t n   {  
         w i d t h :   3 6 p x ;  
         h e i g h t :   3 6 p x ;  
         b o r d e r :   n o n e ;  
         b a c k g r o u n d :   t r a n s p a r e n t ;  
         c o l o r :   # 6 4 7 4 8 b ;  
         c u r s o r :   p o i n t e r ;  
         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 ;  
         b o r d e r - r a d i u s :   6 p x ;  
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ;  
         p a d d i n g :   0 ;  
 }  
  
 . c o m p a c t - a c t i o n - b t n : h o v e r   {  
         b a c k g r o u n d :   # f 1 f 5 f 9 ;  
         c o l o r :   # 1 e 2 9 3 b ;  
 }  
  
 . c o m p a c t - a c t i o n - b t n . a c t i v e   {  
         c o l o r :   # 5 6 2 4 D 0 ;  
         b a c k g r o u n d :   # e d e 9 f e ;  
 }  
  
 . c o m p a c t - a c t i o n - b t n   s v g   {  
         w i d t h :   2 0 p x ;  
         h e i g h t :   2 0 p x ;  
         s t r o k e :   c u r r e n t C o l o r ;  
 }  
  
 . c o m p a c t - a c t i o n - b t n   . c o m p a c t - s p e e d - t e x t   {  
         f o n t - s i z e :   0 . 7 5 r e m ;  
         f o n t - w e i g h t :   6 0 0 ;  
 }  
  
 . c o m p a c t - e q u a l i z e r - m o d e - w r a p p e r   {  
         p o s i t i o n :   r e l a t i v e ;  
 }  
  
 . c o m p a c t - e q u a l i z e r - m o d e - m e n u   {  
         p o s i t i o n :   a b s o l u t e ;  
         b o t t o m :   c a l c ( 1 0 0 %   +   8 p x ) ;  
         r i g h t :   0 ;  
         t r a n s f o r m :   t r a n s l a t e Y ( 1 0 p x ) ;  
         b a c k g r o u n d :   # f f f ;  
         b o r d e r :   1 p x   s o l i d   # e 2 e 8 f 0 ;  
         b o r d e r - r a d i u s :   8 p x ;  
         b o x - s h a d o w :   0   4 p x   1 2 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 5 ) ;  
         p a d d i n g :   0 . 5 r e m ;  
         m i n - w i d t h :   1 4 0 p x ;  
         m a x - w i d t h :   2 0 0 p x ;  
         m a x - h e i g h t :   3 0 0 p x ;  
         o v e r f l o w - y :   a u t o ;  
         o p a c i t y :   0 ;  
         v i s i b i l i t y :   h i d d e n ;  
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ;  
         z - i n d e x :   1 0 0 1 ;  
         w h i t e - s p a c e :   n o w r a p ;  
 }  
  
 . c o m p a c t - e q u a l i z e r - m o d e - w r a p p e r : h o v e r   . c o m p a c t - e q u a l i z e r - m o d e - m e n u   {  
         o p a c i t y :   1 ;  
         v i s i b i l i t y :   v i s i b l e ;  
         t r a n s f o r m :   t r a n s l a t e Y ( 0 ) ;  
 }  
  
 . c o m p a c t - m o d e - i t e m   {  
         d i s p l a y :   b l o c k ;  
         w i d t h :   1 0 0 % ;  
         p a d d i n g :   0 . 6 2 5 r e m   0 . 7 5 r e m ;  
         b a c k g r o u n d :   t r a n s p a r e n t ;  
         b o r d e r :   n o n e ;  
         c o l o r :   # 1 e 2 9 3 b ;  
         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 :   6 p x ;  
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ;  
         f o n t - s i z e :   0 . 8 7 5 r e m ;  
         t e x t - a l i g n :   l e f t ;  
 }  
  
 . c o m p a c t - m o d e - i t e m : h o v e r   {  
         b a c k g r o u n d :   # f 1 f 5 f 9 ;  
         c o l o r :   # 5 6 2 4 D 0 ;  
 }  
  
 . c o m p a c t - m o d e - i t e m . a c t i v e   {  
         b a c k g r o u n d :   # e d e 9 f e ;  
         c o l o r :   # 5 6 2 4 D 0 ;  
         f o n t - w e i g h t :   6 0 0 ;  
 }  
  
 . c o m p a c t - p l a y e r - c o n t r o l s   {  
         p a d d i n g :   1 r e m ;  
         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 :   s p a c e - b e t w e e n ;  
         g a p :   0 . 5 r e m ;  
 }  
  
 . c o m p a c t - p r o g r e s s - b a r   {  
         w i d t h :   1 0 0 % ;  
         h e i g h t :   4 p x ;  
         b a c k g r o u n d :   # e 2 e 8 f 0 ;  
         b o r d e r - r a d i u s :   2 p x ;  
         p o s i t i o n :   r e l a t i v e ;  
         c u r s o r :   p o i n t e r ;  
         m a r g i n - b o t t o m :   0 . 5 r e m ;  
 }  
  
 . c o m p a c t - p r o g r e s s - f i l l   {  
         h e i g h t :   1 0 0 % ;  
         b a c k g r o u n d :   # 5 6 2 4 D 0 ;  
         b o r d e r - r a d i u s :   2 p x ;  
         w i d t h :   0 % ;  
         t r a n s i t i o n :   w i d t h   0 . 1 s   l i n e a r ;  
 }  
  
 . c o m p a c t - p r o g r e s s - t i m e   {  
         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 ;  
         f o n t - s i z e :   0 . 7 5 r e m ;  
         c o l o r :   # 6 4 7 4 8 b ;  
 }  
  
 . c o m p a c t - p l a y - b t n   {  
         w i d t h :   4 8 p x ;  
         h e i g h t :   4 8 p x ;  
         b o r d e r - r a d i u s :   5 0 % ;  
         b a c k g r o u n d :   # f 1 f 5 f 9 ;  
         b o r d e r :   n o n e ;  
         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 ;  
         c u r s o r :   p o i n t e r ;  
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ;  
         f l e x - s h r i n k :   0 ;  
         c o l o r :   # 1 e 2 9 3 b ;  
 }  
  
 . c o m p a c t - p l a y - b t n : h o v e r   {  
         b a c k g r o u n d :   # e 2 e 8 f 0 ;  
         t r a n s f o r m :   s c a l e ( 1 . 0 5 ) ;  
 }  
  
 . c o m p a c t - p l a y - b t n   s v g   {  
         w i d t h :   2 4 p x ;  
         h e i g h t :   2 4 p x ;  
 }  
  
 . c o m p a c t - p l a y e r - i n f o   {  
         f l e x :   1 ;  
         m i n - w i d t h :   0 ;  
         p a d d i n g :   0   0 . 7 5 r e m ;  
 }  
  
 . c o m p a c t - t r a c k - t i t l e   {  
         f o n t - s i z e :   0 . 9 3 7 5 r e m ;  
         f o n t - w e i g h t :   6 0 0 ;  
         c o l o r :   # 1 e 2 9 3 b ;  
         m a r g i n - b o t t o m :   0 . 2 5 r e m ;  
         w h i t e - s p a c e :   n o w r a p ;  
         o v e r f l o w :   h i d d e n ;  
         t e x t - o v e r f l o w :   e l l i p s i s ;  
 }  
  
 . c o m p a c t - t r a c k - a r t i s t   {  
         f o n t - s i z e :   0 . 8 1 2 5 r e m ;  
         c o l o r :   # 6 4 7 4 8 b ;  
         w h i t e - s p a c e :   n o w r a p ;  
         o v e r f l o w :   h i d d e n ;  
         t e x t - o v e r f l o w :   e l l i p s i s ;  
 }  
  
 . c o m p a c t - v o l u m e - c o n t r o l   {  
         p o s i t i o n :   r e l a t i v e ;  
         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 ;  
 }  
  
 . c o m p a c t - v o l u m e - b t n   {  
         w i d t h :   3 2 p x ;  
         h e i g h t :   3 2 p x ;  
         b o r d e r :   n o n e ;  
         b a c k g r o u n d :   t r a n s p a r e n t ;  
         c u r s o r :   p o i n t e r ;  
         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 ;  
         c o l o r :   # 6 4 7 4 8 b ;  
         t r a n s i t i o n :   c o l o r   0 . 2 s   e a s e ;  
         p a d d i n g :   0 ;  
         f l e x - s h r i n k :   0 ;  
 }  
  
 . c o m p a c t - v o l u m e - b t n : h o v e r   {  
         c o l o r :   # 5 6 2 4 D 0 ;  
 }  
  
 . c o m p a c t - v o l u m e - i c o n   {  
         w i d t h :   1 8 p x ;  
         h e i g h t :   1 8 p x ;  
         s t r o k e :   c u r r e n t C o l o r ;  
 }  
  
 . c o m p a c t - v o l u m e - s l i d e r - w r a p p e r   {  
         p o s i t i o n :   a b s o l u t e ;  
         b o t t o m :   1 0 0 % ;  
         l e f t :   5 0 % ;  
         t r a n s f o r m :   t r a n s l a t e X ( - 5 0 % ) ;  
         m a r g i n - b o t t o m :   0 . 5 r e m ;  
         p a d d i n g :   0 . 7 5 r e m   0 . 5 r e m ;  
         b a c k g r o u n d :   # f f f ;  
         b o r d e r :   1 p x   s o l i d   # e 2 e 8 f 0 ;  
         b o r d e r - r a d i u s :   8 p x ;  
         b o x - s h a d o w :   0   4 p x   1 2 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 5 ) ;  
         o p a c i t y :   0 ;  
         v i s i b i l i t y :   h i d d e n ;  
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ;  
         p o i n t e r - e v e n t s :   n o n e ;  
         z - i n d e x :   1 0 0 0 ;  
 }  
  
 . c o m p a c t - v o l u m e - c o n t r o l : h o v e r   . c o m p a c t - v o l u m e - s l i d e r - w r a p p e r   {  
         o p a c i t y :   1 ;  
         v i s i b i l i t y :   v i s i b l e ;  
         p o i n t e r - e v e n t s :   a l l ;  
 }  
  
 . c o m p a c t - v o l u m e - s l i d e r   {  
         w i d t h :   7 0 p x ;  
         h e i g h t :   4 p x ;  
         b a c k g r o u n d :   r g b a ( 9 8 ,   3 6 ,   2 0 8 ,   0 . 2 ) ;  
         b o r d e r - r a d i u s :   2 p x ;  
         o u t l i n e :   n o n e ;  
         - w e b k i t - a p p e a r a n c e :   n o n e ;  
         a p p e a r a n c e :   n o n e ;  
         c u r s o r :   p o i n t e r ;  
         d i s p l a y :   b l o c k ;  
 }  
  
 . c o m p a c t - v o l u m e - s l i d e r : : - w e b k i t - s l i d e r - t h u m b   {  
         - w e b k i t - a p p e a r a n c e :   n o n e ;  
         a p p e a r a n c e :   n o n e ;  
         w i d t h :   1 2 p x ;  
         h e i g h t :   1 2 p x ;  
         b a c k g r o u n d :   # 5 6 2 4 D 0 ;  
         b o r d e r - r a d i u s :   5 0 % ;  
         c u r s o r :   p o i n t e r ;  
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ;  
 }  
  
 . c o m p a c t - v o l u m e - s l i d e r : : - w e b k i t - s l i d e r - t h u m b : h o v e r   {  
         b a c k g r o u n d :   # 4 5 1 7 b 0 ;  
         t r a n s f o r m :   s c a l e ( 1 . 2 ) ;  
 }  
  
 . c o m p a c t - v o l u m e - s l i d e r : : - m o z - r a n g e - t h u m b   {  
         w i d t h :   1 2 p x ;  
         h e i g h t :   1 2 p x ;  
         b a c k g r o u n d :   # 5 6 2 4 D 0 ;  
         b o r d e r - r a d i u s :   5 0 % ;  
         b o r d e r :   n o n e ;  
         c u r s o r :   p o i n t e r ;  
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ;  
 }  
  
 . c o m p a c t - v o l u m e - s l i d e r : : - m o z - r a n g e - t h u m b : h o v e r   {  
         b a c k g r o u n d :   # 4 5 1 7 b 0 ;  
         t r a n s f o r m :   s c a l e ( 1 . 2 ) ;  
 }  
  
 . c o m p a c t - p l a y e r - n a v   {  
         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 ;  
         g a p :   0 . 5 r e m ;  
 }  
  
 . c o m p a c t - n a v - b t n   {  
         w i d t h :   3 2 p x ;  
         h e i g h t :   3 2 p x ;  
         b o r d e r :   n o n e ;  
         b a c k g r o u n d :   t r a n s p a r e n t ;  
         c o l o r :   # 6 4 7 4 8 b ;  
         c u r s o r :   p o i n t e r ;  
         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 ;  
         b o r d e r - r a d i u s :   6 p x ;  
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ;  
         p a d d i n g :   0 ;  
 }  
  
 . c o m p a c t - n a v - b t n : h o v e r   {  
         b a c k g r o u n d :   # f 1 f 5 f 9 ;  
         c o l o r :   # 1 e 2 9 3 b ;  
 }  
  
 . c o m p a c t - n a v - b t n   s v g   {  
         w i d t h :   1 8 p x ;  
         h e i g h t :   1 8 p x ;  
 }  
  
 . c o m p a c t - n a v - b t n . a c t i v e   {  
         c o l o r :   # 5 6 2 4 D 0 ;  
         b a c k g r o u n d :   # e d e 9 f e ;  
 }  
  
 / *      $% % %     %             $% W%               %     % W%       %  * /  
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   {  
         . g l o b a l - p l a y e r - c o n t a i n e r   {  
                 p a d d i n g :   0 . 7 5 r e m   1 r e m ;  
                 g a p :   0 . 5 r e m ;  
         }  
          
         . g l o b a l - b t n - p l a y   {  
                 w i d t h :   4 8 p x ;  
                 h e i g h t :   4 8 p x ;  
         }  
          
         . g l o b a l - p l a y - i c o n ,  
         . g l o b a l - p a u s e - i c o n   {  
                 w i d t h :   2 4 p x ;  
                 h e i g h t :   2 4 p x ;  
         }  
          
         . g l o b a l - p l a y e r - b t n   {  
                 w i d t h :   3 6 p x ;  
                 h e i g h t :   3 6 p x ;  
         }  
          
         . g l o b a l - p l a y e r - b t n   s v g   {  
                 w i d t h :   1 8 p x ;  
                 h e i g h t :   1 8 p x ;  
         }  
          
         . g l o b a l - p l a y e r - i n f o   {  
                 m a r g i n :   0   0 . 5 r e m ;  
         }  
          
         . g l o b a l - t r a c k - t i t l e   {  
                 f o n t - s i z e :   0 . 8 7 5 r e m ;  
         }  
          
         . g l o b a l - p l a y e r - t i m e   {  
                 f o n t - s i z e :   0 . 7 5 r e m ;  
                 m i n - w i d t h :   7 0 p x ;  
         }  
          
         . g l o b a l - v o l u m e - c o n t r o l   {  
                 d i s p l a y :   n o n e ;   / *      Q%     % %   ]%   %     ]% Q%             %   ]%   %   W%          * /  
         }  
          
         . g l o b a l - b t n - s p e e d   {  
                 m i n - w i d t h :   3 6 p x ;  
                 f o n t - s i z e :   0 . 7 5 r e m ;  
         }  
 }  
  
 / *           -  % W%         %   %          (    %     % W%         c%         W%  )   * /  
 . f e e d - p o s t - a u d i o - i t e m   {  
         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 ;  
         g a p :   0 . 5 r e m ;  
         m a r g i n - t o p :   0 . 7 5 r e m ;  
 }  
  
 . m i n i - a u d i o - p l a y e r   {  
         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 ;  
         g a p :   0 . 7 5 r e m ;  
         p a d d i n g :   0 . 7 5 r e m ;  
         b a c k g r o u n d :   # f 8 f a f c ;  
         b o r d e r :   1 p x   s o l i d   # e 2 e 8 f 0 ;  
         b o r d e r - r a d i u s :   1 2 p x ;  
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ;  
         c u r s o r :   p o i n t e r ;  
 }  
  
 . m i n i - a u d i o - p l a y e r : h o v e r   {  
         b a c k g r o u n d :   # f 1 f 5 f 9 ;  
         b o r d e r - c o l o r :   # c b d 5 e 1 ;  
 }  
  
 . m i n i - a u d i o - p l a y e r . p l a y i n g   {  
         b a c k g r o u n d :   # e d e 9 f e ;  
         b o r d e r - c o l o r :   # 5 6 2 4 D 0 ;  
 }  
  
 . m i n i - p l a y - b t n   {  
         w i d t h :   4 0 p x ;  
         h e i g h t :   4 0 p x ;  
         b o r d e r - r a d i u s :   5 0 % ;  
         b a c k g r o u n d :   # 5 6 2 4 D 0 ;  
         b o r d e r :   n o n e ;  
         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 ;  
         c u r s o r :   p o i n t e r ;  
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ;  
         f l e x - s h r i n k :   0 ;  
         c o l o r :   # f f f ;  
 }  
  
 . m i n i - p l a y - b t n : h o v e r   {  
         b a c k g r o u n d :   # 4 c 1 f b 8 ;  
         t r a n s f o r m :   s c a l e ( 1 . 0 5 ) ;  
 }  
  
 . m i n i - p l a y - b t n : a c t i v e   {  
         t r a n s f o r m :   s c a l e ( 0 . 9 5 ) ;  
 }  
  
 . m i n i - p l a y - i c o n ,  
 . m i n i - p a u s e - i c o n   {  
         w i d t h :   2 0 p x ;  
         h e i g h t :   2 0 p x ;  
         s t r o k e - w i d t h :   2 . 5 ;  
 }  
  
 . m i n i - p a u s e - i c o n   {  
         d i s p l a y :   n o n e ;  
 }  
  
 . m i n i - a u d i o - p l a y e r . p l a y i n g   . m i n i - p l a y - i c o n   {  
         d i s p l a y :   n o n e ;  
 }  
  
 . m i n i - a u d i o - p l a y e r . p l a y i n g   . m i n i - p a u s e - i c o n   {  
         d i s p l a y :   b l o c k ;  
 }  
  
 . m i n i - a u d i o - i n f o   {  
         f l e x :   1 ;  
         m i n - w i d t h :   0 ;  
 }  
  
 . m i n i - t r a c k - t i t l e   {  
         f o n t - s i z e :   0 . 8 7 5 r e m ;  
         f o n t - w e i g h t :   6 0 0 ;  
         c o l o r :   # 1 e 2 9 3 b ;  
         m a r g i n - b o t t o m :   0 . 1 2 5 r e m ;  
         w h i t e - s p a c e :   n o w r a p ;  
         o v e r f l o w :   h i d d e n ;  
         t e x t - o v e r f l o w :   e l l i p s i s ;  
         t e x t - a l i g n :   l e f t ;  
 }  
  
 . m i n i - t r a c k - a r t i s t   {  
         f o n t - s i z e :   0 . 8 1 2 5 r e m ;  
         f o n t - w e i g h t :   4 0 0 ;  
         c o l o r :   # 6 4 7 4 8 b ;  
         m a r g i n - b o t t o m :   0 . 2 5 r e m ;  
         w h i t e - s p a c e :   n o w r a p ;  
         o v e r f l o w :   h i d d e n ;  
         t e x t - o v e r f l o w :   e l l i p s i s ;  
         t e x t - a l i g n :   l e f t ;  
 }  
  
 . m i n i - a u d i o - t i m e   {  
         f o n t - s i z e :   0 . 7 5 r e m ;  
         c o l o r :   # 6 4 7 4 8 b ;  
         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 ;  
         g a p :   0 . 2 5 r e m ;  
 }  
  
 . m i n i - t i m e - s e p a r a t o r   {  
         o p a c i t y :   0 . 6 ;  
 }  
  
 / *          W%     $% W%     %     %         % %       Q%    * /  
 . i m a g e - p r e v i e w - c o n t a i n e r   {  
         m a r g i n - t o p :   1 r e m ;  
         p a d d i n g - t o p :   1 r e m ;  
         b o r d e r - t o p :   1 p x   s o l i d   # f 1 f 5 f 9 ;  
 }  
  
 . i m a g e - p r e v i e w - l i s t   {  
         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 ( a u t o - f i l l ,   m i n m a x ( 1 2 0 p x ,   1 f r ) ) ;  
         g a p :   0 . 7 5 r e m ;  
 }  
  
 . a u d i o - p r e v i e w - c o n t a i n e r   {  
         m a r g i n - t o p :   1 r e m ;  
         p a d d i n g - t o p :   1 r e m ;  
         b o r d e r - t o p :   1 p x   s o l i d   # f 1 f 5 f 9 ;  
 }  
  
 . a u d i o - p r e v i e w - l i s t   {  
         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 ;  
         g a p :   0 . 7 5 r e m ;  
 }  
  
 . a u d i o - p r e v i e w - i t e m   {  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   f l e x - s t a r t ;  
         g a p :   0 . 7 5 r e m ;  
         p a d d i n g :   0 . 7 5 r e m ;  
         b a c k g r o u n d :   # f 8 f a f c ;  
         b o r d e r :   1 p x   s o l i d   # e 2 e 8 f 0 ;  
         b o r d e r - r a d i u s :   8 p x ;  
         p o s i t i o n :   r e l a t i v e ;  
 }  
  
 . a u d i o - p r e v i e w - i c o n   {  
         f o n t - s i z e :   1 . 5 r e m ;  
         f l e x - s h r i n k :   0 ;  
 }  
  
 . a u d i o - p r e v i e w - i n f o   {  
         f l e x :   1 ;  
         m i n - w i d t h :   0 ;  
         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 ;  
         g a p :   0 . 5 r e m ;  
 }  
  
 . a u d i o - p r e v i e w - n a m e   {  
         f o n t - s i z e :   0 . 8 7 5 r e m ;  
         f o n t - w e i g h t :   5 0 0 ;  
         c o l o r :   # 1 e 2 9 3 b ;  
         w h i t e - s p a c e :   n o w r a p ;  
         o v e r f l o w :   h i d d e n ;  
         t e x t - o v e r f l o w :   e l l i p s i s ;  
 }  
  
 . a u d i o - p r e v i e w - s i z e   {  
         f o n t - s i z e :   0 . 7 5 r e m ;  
         c o l o r :   # 6 4 7 4 8 b ;  
         m a r g i n - t o p :   0 . 2 5 r e m ;  
 }  
  
 . a u d i o - p r e v i e w - r e m o v e   {  
         p o s i t i o n :   a b s o l u t e ;  
         t o p :   0 . 5 r e m ;  
         r i g h t :   0 . 5 r e m ;  
         w i d t h :   2 4 p x ;  
         h e i g h t :   2 4 p x ;  
         b o r d e r :   n o n e ;  
         b a c k g r o u n d :   r g b a ( 2 3 9 ,   6 8 ,   6 8 ,   0 . 1 ) ;  
         c o l o r :   # e f 4 4 4 4 ;  
         b o r d e r - r a d i u s :   5 0 % ;  
         c u r s o r :   p o i n t e r ;  
         f o n t - s i z e :   1 . 2 5 r e m ;  
         l i n e - h e i g h t :   1 ;  
         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 ;  
         t r a n s i t i o n :   a l l   0 . 2 s ;  
         f l e x - s h r i n k :   0 ;  
 }  
  
 . a u d i o - p r e v i e w - r e m o v e : h o v e r   {  
         b a c k g r o u n d :   # e f 4 4 4 4 ;  
         c o l o r :   # f f f ;  
 }  
  
 . i m a g e - p r e v i e w - i t e m   {  
         p o s i t i o n :   r e l a t i v e ;  
         w i d t h :   1 0 0 % ;  
         b o r d e r - r a d i u s :   8 p x ;  
         o v e r f l o w :   h i d d e n ;  
         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 :   # f f f ;  
         b o r d e r :   1 p x   s o l i d   # e 2 e 8 f 0 ;  
 }  
  
 . i m a g e - p r e v i e w - m e t a   {  
         p a d d i n g :   0 . 5 r e m ;  
         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 ;  
         g a p :   0 . 5 r e m ;  
 }  
  
 . i m a g e - m e t a - t i t l e ,  
 . i m a g e - m e t a - d e s c r i p t i o n   {  
         w i d t h :   1 0 0 % ;  
         p a d d i n g :   0 . 5 r e m ;  
         b o r d e r :   1 p x   s o l i d   # e 2 e 8 f 0 ;  
         b o r d e r - r a d i u s :   6 p x ;  
         f o n t - s i z e :   0 . 8 7 5 r e m ;  
         f o n t - f a m i l y :   i n h e r i t ;  
         r e s i z e :   n o n e ;  
 }  
  
 . i m a g e - m e t a - t i t l e : f o c u s ,  
 . i m a g e - m e t a - d e s c r i p t i o n : f o c u s   {  
         o u t l i n e :   n o n e ;  
         b o r d e r - c o l o r :   # 5 6 2 4 D 0 ;  
 }  
  
 . a u d i o - p r e v i e w - m e t a   {  
         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 ;  
         g a p :   0 . 5 r e m ;  
         f l e x :   1 ;  
         a l i g n - i t e m s :   f l e x - s t a r t ;  
         t e x t - a l i g n :   l e f t ;  
 }  
  
 . a u d i o - m e t a - a r t i s t ,  
 . a u d i o - m e t a - a u t h o r ,  
 . a u d i o - m e t a - t i t l e   {  
         w i d t h :   1 0 0 % ;  
         p a d d i n g :   0 . 5 r e m ;  
         b o r d e r :   1 p x   s o l i d   # e 2 e 8 f 0 ;  
         b o r d e r - r a d i u s :   6 p x ;  
         f o n t - s i z e :   0 . 8 7 5 r e m ;  
         f o n t - f a m i l y :   i n h e r i t ;  
 }  
  
 . a u d i o - m e t a - a r t i s t : f o c u s ,  
 . a u d i o - m e t a - a u t h o r : f o c u s ,  
 . a u d i o - m e t a - t i t l e : f o c u s   {  
         o u t l i n e :   n o n e ;  
         b o r d e r - c o l o r :   # 5 6 2 4 D 0 ;  
 }  
         b a c k g r o u n d :   # f 8 f a f c ;  
         b o r d e r :   2 p x   s o l i d   # e 2 e 8 f 0 ;  
         a s p e c t - r a t i o :   1 ;  
         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 ;  
 }  
  
 . i m a g e - p r e v i e w - i t e m   i m g   {  
         w i d t h :   1 0 0 % ;  
         h e i g h t :   1 0 0 % ;  
         d i s p l a y :   b l o c k ;  
         o b j e c t - f i t :   c o v e r ;  
 }  
  
 . i m a g e - p r e v i e w - r e m o v e   {  
         p o s i t i o n :   a b s o l u t e ;  
         t o p :   0 . 5 r e m ;  
         r i g h t :   0 . 5 r e m ;  
         w i d t h :   3 2 p x ;  
         h e i g h t :   3 2 p x ;  
         b o r d e r - r a d i u s :   5 0 % ;  
         b a c k g r o u n d :   r g b a ( 2 2 0 ,   3 8 ,   3 8 ,   0 . 9 5 ) ;  
         c o l o r :   # f f f ;  
         b o r d e r :   2 p x   s o l i d   # f f f ;  
         c u r s o r :   p o i n t e r ;  
         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 ;  
         f o n t - s i z e :   1 . 2 5 r e m ;  
         f o n t - w e i g h t :   b o l d ;  
         l i n e - h e i g h t :   1 ;  
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ;  
         z - i n d e x :   1 0 ;  
         b o x - s h a d o w :   0   2 p x   8 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 3 ) ;  
 }  
  
 . i m a g e - p r e v i e w - r e m o v e : h o v e r   {  
         b a c k g r o u n d :   r g b a ( 2 2 0 ,   3 8 ,   3 8 ,   1 ) ;  
         t r a n s f o r m :   s c a l e ( 1 . 1 ) ;  
         b o x - s h a d o w :   0   4 p x   1 2 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 4 ) ;  
 }  
  
 . f e e d - p o s t - f o o t e r   {  
         b o r d e r - t o p :   1 p x   s o l i d   # f 1 f 5 f 9 ;  
         p a d d i n g :   0 . 7 5 r e m   1 . 5 r e m ;  
         b a c k g r o u n d :   # f a f b f c ;  
 }  
  
 . f e e d - p o s t - a c t i o n s - b a r   {  
         d i s p l a y :   f l e x ;  
         g a p :   1 . 5 r e m ;  
         a l i g n - i t e m s :   c e n t e r ;  
 }  
  
 . f e e d - a c t i o n - b t n   {  
         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 ;  
         g a p :   0 . 5 r e m ;  
         p a d d i n g :   0 . 5 r e m   0 . 7 5 r e m ;  
         b a c k g r o u n d :   t r a n s p a r e n t ;  
         b o r d e r :   n o n e ;  
         b o r d e r - r a d i u s :   8 p x ;  
         c o l o r :   # 6 4 7 4 8 b ;  
         f o n t - s i z e :   0 . 8 7 5 r e m ;  
         c u r s o r :   p o i n t e r ;  
         t e x t - d e c o r a t i o n :   n o n e ;  
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ;  
 }  
  
 . f e e d - a c t i o n - b t n : h o v e r   {  
         b a c k g r o u n d :   # f 1 f 5 f 9 ;  
         c o l o r :   # 5 6 2 4 D 0 ;  
 }  
  
 . f e e d - a c t i o n - b t n . a c t i v e   {  
         c o l o r :   # 5 6 2 4 D 0 ;  
         b a c k g r o u n d :   # e d e 9 f e ;  
 }  
  
 . f e e d - a c t i o n - b t n . a c t i v e [ d a t a - a c t i o n = " l i k e " ] ,  
 . f e e d - a c t i o n - b t n . b t n - l i k e . a c t i v e   {  
         c o l o r :   # e f 4 4 4 4 ;  
 }  
  
 . f e e d - a c t i o n - b t n . a c t i v e [ d a t a - a c t i o n = " d i s l i k e " ] ,  
 . f e e d - a c t i o n - b t n . b t n - d i s l i k e . a c t i v e   {  
         c o l o r :   # 6 4 7 4 8 b ;  
 }  
  
 / *      $%       c%         W%     $% W%     W% % c% Q%   %/  $%     W% % c% Q%   %   Q% % Q%     %           ]%         %       Q%   %    * /  
 . f e e d - a c t i o n - b t n . b t n - l i k e   s v g ,  
 . f e e d - a c t i o n - b t n . b t n - d i s l i k e   . d i s l i k e - i c o n   {  
         m a r g i n - r i g h t :   0 . 2 5 r e m ;  
 }  
  
 . f e e d - a c t i o n - b t n . b t n - l i k e . a c t i v e   s v g   {  
         f i l l :   # e f 4 4 4 4 ;  
         s t r o k e :   # e f 4 4 4 4 ;  
 }  
  
 . f e e d - a c t i o n - b t n . b t n - d i s l i k e . a c t i v e   {  
         o p a c i t y :   0 . 8 ;  
 }  
  
 . f e e d - a c t i o n - c o u n t   {  
         f o n t - w e i g h t :   5 0 0 ;  
 }  
  
 . f e e d - c o p y - l i n k - b t n   . c o p y - l i n k - t e x t   {  
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ;  
 }  
  
 . b a d g e   {  
         d i s p l a y :   i n l i n e - b l o c k ;  
         p a d d i n g :   0 . 2 5 r e m   0 . 5 r e m ;  
         b o r d e r - r a d i u s :   4 p x ;  
         f o n t - s i z e :   0 . 7 5 r e m ;  
         f o n t - w e i g h t :   5 0 0 ;  
 }  
  
 . b a d g e - s u c c e s s   {  
         b a c k g r o u n d :   # 1 0 b 9 8 1 ;  
         c o l o r :   # f f f ;  
 }  
  
 / *       % % %     Q%   W%     Q% %  * /  
 . f e e d - s i d e b a r   {  
         p o s i t i o n :   s t i c k y ;  
         t o p :   1 0 0 p x ;  
         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 ;  
         g a p :   1 . 5 r e m ;  
 }  
  
 . f e e d - s i d e b a r - s e c t i o n   {  
         b a c k g r o u n d :   t r a n s p a r e n t ;  
         b o r d e r :   n o n e ;  
         b o r d e r - r a d i u s :   0 ;  
         p a d d i n g :   0 ;  
         b o x - s h a d o w :   n o n e ;  
         m a r g i n - b o t t o m :   1 . 5 r e m ;  
 }  
  
 . f e e d - s i d e b a r - t i t l e   {  
         m a r g i n :   0   0   1 . 5 r e m   0 ;  
         f o n t - s i z e :   1 . 2 5 r e m ;  
         f o n t - w e i g h t :   7 0 0 ;  
         c o l o r :   # 1 e 2 9 3 b ;  
         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 ;  
         g a p :   0 . 5 r e m ;  
 }  
  
 . f e e d - s i d e b a r - l i s t   {  
         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 ;  
         g a p :   1 r e m ;  
 }  
  
 . f e e d - s i d e b a r - i t e m   {  
         d i s p l a y :   f l e x ;  
         g a p :   0 . 7 5 r e m ;  
         p a d d i n g :   0 . 7 5 r e m ;  
         b o r d e r - r a d i u s :   8 p x ;  
         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 ;  
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ;  
         b o r d e r :   1 p x   s o l i d   t r a n s p a r e n t ;  
 }  
  
 . f e e d - s i d e b a r - i t e m : h o v e r   {  
         b a c k g r o u n d :   # f 8 f a f c ;  
         b o r d e r - c o l o r :   # e 2 e 8 f 0 ;  
 }  
  
 . f e e d - s i d e b a r - i m a g e   {  
         f l e x - s h r i n k :   0 ;  
         w i d t h :   8 0 p x ;  
         h e i g h t :   6 0 p x ;  
         b o r d e r - r a d i u s :   6 p x ;  
         o v e r f l o w :   h i d d e n ;  
         b a c k g r o u n d :   # f 8 f a f c ;  
 }  
  
 . f e e d - s i d e b a r - i m a g e   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 ;  
 }  
  
 . f e e d - s i d e b a r - c o n t e n t   {  
         f l e x :   1 ;  
         m i n - w i d t h :   0 ;  
 }  
  
 . f e e d - s i d e b a r - c o n t e n t   h 4   {  
         m a r g i n :   0   0   0 . 2 5 r e m   0 ;  
         f o n t - s i z e :   0 . 8 7 5 r e m ;  
         f o n t - w e i g h t :   6 0 0 ;  
         c o l o r :   # 1 e 2 9 3 b ;  
         l i n e - h e i g h t :   1 . 4 ;  
 }  
  
 . f e e d - s i d e b a r - i t e m : h o v e r   . f e e d - s i d e b a r - c o n t e n t   h 4   {  
         c o l o r :   # 5 6 2 4 D 0 ;  
 }  
  
 . f e e d - s i d e b a r - m e t a   {  
         d i s p l a y :   f l e x ;  
         f l e x - w r a p :   w r a p ;  
         g a p :   0 . 2 5 r e m ;  
         f o n t - s i z e :   0 . 7 5 r e m ;  
         c o l o r :   # 9 4 a 3 b 8 ;  
 }  
  
 . f e e d - s i d e b a r - c a r d s   {  
         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 ;  
         g a p :   1 . 5 r e m ;  
 }  
  
 . f e e d - s i d e b a r - s e c t i o n   . r e l a t e d - p r o j e c t - c a r d   {  
         b a c k g r o u n d :   t r a n s p a r e n t ;  
         b o r d e r - r a d i u s :   1 2 p x ;  
         o v e r f l o w :   h i d d e n ;  
         b o r d e r :   1 p x   s o l i d   # e 2 e 8 f 0 ;  
         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 ;  
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ;  
         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 ;  
         w i d t h :   1 0 0 % ;  
         m i n - w i d t h :   0 ;  
         m a x - w i d t h :   1 0 0 % ;  
 }  
  
 . f e e d - s i d e b a r - s e c t i o n   . r e l a t e d - p r o j e c t - c a r d : h o v e r   {  
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ;  
         b o x - s h a d o w :   0   4 p x   1 2 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 ) ;  
         b o r d e r - c o l o r :   # 5 6 2 4 D 0 ;  
 }  
  
 . f e e d - s i d e b a r - s e c t i o n   . r e l a t e d - p r o j e c t - i m a g e   {  
         w i d t h :   1 0 0 % ;  
         m a x - w i d t h :   1 0 0 % ;  
         h e i g h t :   1 4 0 p x ;  
         o v e r f l o w :   h i d d e n ;  
         b a c k g r o u n d :   # f 8 f a f c ;  
         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 ;  
         b o x - s i z i n g :   b o r d e r - b o x ;  
 }  
  
 . f e e d - s i d e b a r - s e c t i o n   . r e l a t e d - p r o j e c t - i m a g e   i m g   {  
         w i d t h :   1 0 0 % ;  
         m a x - 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 . 3 s   e a s e ;  
         b o x - s i z i n g :   b o r d e r - b o x ;  
 }  
  
 . f e e d - s i d e b a r - s e c t i o n   . r e l a t e d - p r o j e c t - c a r d : h o v e r   . r e l a t e d - p r o j e c t - i m a g e   i m g   {  
         t r a n s f o r m :   s c a l e ( 1 . 0 5 ) ;  
 }  
  
 . f e e d - s i d e b a r - s e c t i o n   . r e l a t e d - p r o j e c t - i m a g e - p l a c e h o l d e r   {  
         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 ;  
         b a c k g r o u n d :   # f 8 f a f c ;  
         h e i g h t :   1 4 0 p x ;  
 }  
  
 . f e e d - s i d e b a r - s e c t i o n   . r e l a t e d - p r o j e c t - i m a g e - p l a c e h o l d e r   s v g   {  
         w i d t h :   4 8 p x ;  
         h e i g h t :   4 8 p x ;  
         o p a c i t y :   0 . 3 ;  
 }  
  
 . f e e d - s i d e b a r - s e c t i o n   . r e l a t e d - p r o j e c t - c o n t e n t   {  
         p a d d i n g :   1 r e m ;  
         f l e x :   1 ;  
         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 ;  
         w i d t h :   1 0 0 % ;  
         m i n - w i d t h :   0 ;  
         b o x - s i z i n g :   b o r d e r - b o x ;  
 }  
  
 . f e e d - s i d e b a r - s e c t i o n   . r e l a t e d - p r o j e c t - c o n t e n t   h 3   {  
         f o n t - s i z e :   1 r e m ;  
         m a r g i n :   0   0   0 . 5 r e m   0 ;  
         c o l o r :   # 1 e 2 9 3 b ;  
         f o n t - w e i g h t :   6 0 0 ;  
         l i n e - h e i g h t :   1 . 3 ;  
         w o r d - w r a p :   b r e a k - w o r d ;  
         o v e r f l o w - w r a p :   b r e a k - w o r d ;  
         h y p h e n s :   a u t o ;  
 }  
  
 . f e e d - s i d e b a r - s e c t i o n   . r e l a t e d - p r o j e c t - c o n t e n t   p   {  
         c o l o r :   # 6 4 7 4 8 b ;  
         f o n t - s i z e :   0 . 8 7 5 r e m ;  
         l i n e - h e i g h t :   1 . 5 ;  
         m a r g i n :   0   0   0 . 7 5 r e m   0 ;  
         f l e x :   1 ;  
         w o r d - w r a p :   b r e a k - w o r d ;  
         o v e r f l o w - w r a p :   b r e a k - w o r d ;  
         d i s p l a y :   b l o c k ;  
         o v e r f l o w :   v i s i b l e ;  
         h y p h e n s :   a u t o ;  
 }  
  
 . f e e d - s i d e b a r - s e c t i o n   . r e l a t e d - p r o j e c t - d a t e   {  
         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 ;  
         g a p :   0 . 5 r e m ;  
         f o n t - s i z e :   0 . 8 1 2 5 r e m ;  
         c o l o r :   # 6 4 7 4 8 b ;  
         m a r g i n - t o p :   a u t o ;  
 }  
  
 . f e e d - s i d e b a r - s e c t i o n   . r e l a t e d - p r o j e c t - d a t e   s v g   {  
         w i d t h :   1 4 p x ;  
         h e i g h t :   1 4 p x ;  
         o p a c i t y :   0 . 6 ;  
 }  
  
 . f e e d - e m p t y - s t a t e   {  
         t e x t - a l i g n :   c e n t e r ;  
         p a d d i n g :   4 r e m   2 r e m ;  
         b a c k g r o u n d :   # F 7 F 9 F A ;  
         b o r d e r - r a d i u s :   1 2 p x ;  
 }  
  
 . f e e d - e m p t y - i c o n   {  
         m a r g i n - b o t t o m :   1 . 5 r e m ;  
         o p a c i t y :   0 . 5 ;  
         f o n t - s i z e :   4 r e m ;  
 }  
  
 . f e e d - e m p t y - s t a t e   h 2   {  
         f o n t - s i z e :   1 . 7 5 r e m ;  
         f o n t - w e i g h t :   7 0 0 ;  
         c o l o r :   # 1 C 1 D 1 F ;  
         m a r g i n - b o t t o m :   0 . 7 5 r e m ;  
 }  
  
 . f e e d - e m p t y - s t a t e   p   {  
         f o n t - s i z e :   1 r e m ;  
         c o l o r :   # 6 A 6 F 7 3 ;  
 }  
  
 . f e e d - p a g i n a t i o n   {  
         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 :   c e n t e r ;  
         a l i g n - i t e m s :   c e n t e r ;  
         g a p :   0 . 5 r e m ;  
         m a r g i n - t o p :   3 r e m ;  
         p a d d i n g - t o p :   2 r e m ;  
         b o r d e r - t o p :   1 p x   s o l i d   # e 2 e 8 f 0 ;  
 }  
  
 . p a g i n a t i o n - l i n k   {  
         p a d d i n g :   0 . 5 r e m   1 r e m ;  
         b a c k g r o u n d :   # f f f ;  
         b o r d e r :   1 p x   s o l i d   # e 2 e 8 f 0 ;  
         b o r d e r - r a d i u s :   6 p x ;  
         c o l o r :   # 5 6 2 4 D 0 ;  
         t e x t - d e c o r a t i o n :   n o n e ;  
         f o n t - s i z e :   0 . 8 7 5 r e m ;  
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ;  
 }  
  
 . p a g i n a t i o n - l i n k : h o v e r   {  
         b a c k g r o u n d :   # 5 6 2 4 D 0 ;  
         c o l o r :   # f f f ;  
         b o r d e r - c o l o r :   # 5 6 2 4 D 0 ;  
 }  
  
 . p a g i n a t i o n - c u r r e n t   {  
         p a d d i n g :   0 . 5 r e m   1 r e m ;  
         b a c k g r o u n d :   # 5 6 2 4 D 0 ;  
         b o r d e r :   1 p x   s o l i d   # 5 6 2 4 D 0 ;  
         b o r d e r - r a d i u s :   6 p x ;  
         c o l o r :   # f f f ;  
         f o n t - s i z e :   0 . 8 7 5 r e m ;  
         f o n t - w e i g h t :   6 0 0 ;  
 }  
  
 @ m e d i a   ( m a x - w i d t h :   1 0 2 4 p x )   {  
         . f e e d - w r a p p e r   {  
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ;  
         }  
          
         . f e e d - s i d e b a r   {  
                 p o s i t i o n :   s t a t i c ;  
                 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 ( a u t o - f i t ,   m i n m a x ( 2 5 0 p x ,   1 f r ) ) ;  
                 g a p :   1 . 5 r e m ;  
         }  
          
         . f e e d - m a i n   {  
                 m a x - w i d t h :   1 0 0 % ;  
         }  
 }  
  
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   {  
         . f e e d - p a g i n a t i o n   {  
                 f l e x - w r a p :   w r a p ;  
         }  
          
         . f e e d - s i d e b a r   {  
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ;  
         }  
 }  
 < / s t y l e >  
 