<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 *
 *  (Agents of ...)SHIELD
 *
 **/
#shield {
  display:  none;
  position: fixed;
  height:   100%;
  left:     0px;
  top:      0px;
  width:    100%;
  z-index:  666666;
}



/**
 *
 * MENU
 *
 **/
 
#nav {
  display:                      block;
  height:                       auto;
  left:                         0px;
  margin:                       0px;
  margin-top:                   -1px;
  max-height:                   400px;
  max-width:                    450px;
  overflow-y:                   scroll;
  padding:                      0px;
  position:                     absolute;
  top:                          auto;
  width:                        100%;
  z-index:                      777777;
  
  -webkit-backface-visibility:  hidden;
  
  box-shadow:                   0 1px 10px rgba(0,0,0,.3);
  -moz-box-shadow:              0 1px 10px rgba(0,0,0,.3);
  -webkit-box-shadow:           0 1px 10px rgba(0,0,0,.3);

  -webkit-overflow-scrolling:   touch;
  
  -webkit-perspective:          800;
  
  -webkit-transform-style:      flat;
  
  transform:                    translateY(-720px);
  -moz-transform:               translateY(-720px);
  -webkit-transform:            translateY(-720px);
  
  transition:                   transform 500ms ease;
  -moz-transition:              -moz-transform 500ms ease;
  -o-transition:                -o-transform 500ms ease;
  -webkit-transition:           -webkit-transform 500ms ease;
}


#nav::-webkit-scrollbar {
    -webkit-appearance: none;
    width:              6px;
    height:             10px;
}

#nav::-webkit-scrollbar-thumb {
    -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
    border-radius:      4px;
    background-color:   rgba(0, 0, 0, 0.5);
}


#nav[data-open="1"] {
  transform:          translateY(0px);
  -moz-transform:     translateY(0px);
  -ms-transform:      translateY(0px);
  -o-transform:       translateY(0px);
  -webkit-transform:  translateY(0px);
  
  transition:         transform 500ms ease;
  -moz-transition:    -moz-transform 500ms ease;
  -o-transition:      -o-transform 500ms ease;
  -webkit-transition: -webkit-transform 500ms ease;
}

#nav ul {
  list-style:           none;
  margin:               0px;
  padding:              20px;
  column-count:         1 !important;
  -webkit-column-count: 1 !important;
}

#nav ul li {
  border-top:       1px;
  display:          list-item;
  list-style-type:  none;
  margin:           0px;
  padding:          0px;
  text-align:       -webkit-match-parent;
  text-align:       left;
}

#nav ul li:hover, 
#nav ul li.over {
    opacity:    0.8;
}

#nav ul li:first-child {
  border-top-width: 0px;
}

#nav ul li a {
  color:            rgb(57, 57, 57);
  display:          block;
  font-size:        21px;
  padding:          16px 0px 16px 8px;
  position:         relative;
  text-decoration:  none; 
}




/**
 *
 * Apenas limitar altura mÃ¡xima do menu em mobile
 *
 */
@media all and (min-height:641px)
{
  
   #nav {
    max-height: 640px;
    overflow-y: auto;
  }

}
</pre></body></html>