* {
  box-sizing: border-box;
}

#header {
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}

.logo {
  padding: 18px 0 12px 0;
}

.row {
  display: flex;
}

.col {
  flex: 1;
}

.menu-button {
  display: block;
  width: 40px;
  height: 40px;
  padding: 5px;
  cursor: pointer;
}

.menu-button svg {
  width: 30px;
  height: 30px;
  fill: #684dd1;
  transition: fill .5s linear;
}

.menu-button:hover svg {
  fill: #444;
}

.sub-heading {
  color: #FF0083;
  font-size: 1.25rem;
  text-transform: uppercase;
  margin-bottom: 0;
  margin-top: 0;
}

#global-nav {
  height: calc(100vh - 60px);
  overflow: hidden;
  background: white;
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  z-index: 100;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;

  transition: height .5s ease;
}

#global-nav.hidden {
  height: 0px;
}

#global-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#global-nav ul li a {
  display: block;
  padding: 1rem;
  font-weight: 800;
  font-size: 1.7rem;
  color: #684dd1;
  text-decoration: none;
}

html {
   height: 100%;
}

body {
  padding-bottom: 80px;
  position: relative;
  min-height: 100%;
}

footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 80px;
}

html {
  font-size: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica,
    Arial, sans-serif;
  margin: 0;
  border-top: 6px solid #684dd1;
}

@media (max-width: 600px) {
  html {
    font-size: 80%;
  }
}

p {
  line-height: 1.3rem;
}

a {
  color: #0c5dfd;
}

h1 {
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 2.6rem;
  
}

h2 {
  font-weight: 800;
  font-size: 2rem;
  line-height: 2.5rem;
}

.lead {
  font-weight: 200;
  font-family: "PT Serif", Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  line-height: 1.75rem;
}

.column {
  width: 100%;
  max-width: 600px;
  margin: auto;
  padding: 1.5rem 1rem;
}

  .column.no-padding {
    padding: 0 1rem;
  }
  

footer {
  color: #ac9dfd;
  padding: 2rem 1rem 2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .9rem;
  background-color: #453196;
}

  footer a {
    color: #ac9dfd;
	text-decoration: none;
  }

  .footer-links a {
    padding-right: 1.5rem;
  }


@media (max-width: 600px) {
  body {
    padding-bottom: 280px;
  }

  footer {
    display: block;
    font-size: 1rem;
    height: 280px;
  }

  .footer-links {
    padding: 1rem 0;
  }

  .footer-links a {
    display: block;
    margin: 15px 0;
  }
}

.promo {
  background: #684dd1;
  color: white;
}

  .promo h1 {
    margin-top: 0;
  }

  .promo a {
    color: white;
  }

  .promo p.lead {
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    margin-top: 0;
  }

  .promo p.lead strong {
    color: #FECB7F;
  }

.cve-detail .description {
  word-break: break-word;
}

.cve-detail .badge {
  font-family: sans-serif;
  text-transform: uppercase;
  font-weight: 800;
  font-size: .9rem;
  padding: .25rem .35rem;
  vertical-align: middle;
  letter-spacing: .5px;
  float: left;
  margin-right: 5px;
  margin-top: 2px;
  line-height: 1rem;
}

  .cve-detail .badge.Moderate { 
    background-color: #FDA809;
  }

  .cve-detail .badge.Critical {
    background-color: #FB0006;
    color: white;
  }

  .cve-detail .badge.Severe {
    background-color: #000;
    color: white;
  }

  .cve-detail .badge.Low {
    background-color: #EEE;
  }

.cve-detail .affected {
  font-size: 1.3rem;
}

.cve-detail li {
  margin: .5rem 0;
}

.cve-detail .reference ul {
  padding-left: 1.5rem;
  font-weight: 700;
}

.cve-detail .reference a {
  word-break: break-all;
}

.cve-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cve {
  margin: 1.5rem 0;
  padding: 0;
}

.cve .description {
  word-break: break-word;
  line-height: 1.4rem;
  margin-top: .5rem;
}

.cve .software {
  word-break: break-word;
  background: #d8cbff;
  color: #684dd1;
  padding: 0.5rem;
  display: inline-block;
  line-height: 1rem;
  font-weight: 500;

  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.cve a {
  font-weight: 700;
}

.cve .severity {
  font-size: 22px;
  line-height: 0;
}

.cve .severity.critical {
  color: #FB0006;
}

.cve .severity.severe {
  color: #000;
}

.cve .severity.moderate {
  color: #FDA809;
}

.cve .severity.low {
  color: #999;
}

.embed {
  border-top: 5px solid #ddd;
  border-bottom: 5px solid #ddd;
  padding-bottom: 1rem;
  padding-top: 1rem;
}

.category-link {
  text-transform: uppercase;
  display: inline-block;
  letter-spacing: .2rem;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  color: #666;
  border-bottom: 3px solid #eee;
  padding-bottom: .5rem;
  transition: border-bottom-color linear .5s;
}

.category-link:hover {
  border-bottom-color: #684dd1;
}

article address {
  display: inline;
  font-style: normal;
}

article blockquote {
  font-style: italic;
}

.byline {
  font-weight: 200;
  font-family: "PT Serif", Georgia, "Times New Roman", serif;
  line-height: 1.75rem;
  color: #666;
}

figure {
  padding: 0;
  margin: 0;
}

figure img {
  max-width: 100%;
  width: 100%;
}

@media (max-width: 375px) {
  figure {
    margin: 0 -1rem;
  }
}

.sh {
  float: right;
  display: flex;
  align-content: center;
}

.sh label {

}

.sh ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sh li {
  display: inline;
}

.sh a {
  margin-left: .5rem;
  width: 40px;
  height: 40px;
  text-align: center;
}

.sh img {
  width: 24px;
  height: 24px;
}


@media (max-width: 375px) {
  .sh {
    float: none;
    margin-top: 1rem;
  }

  .sh label {
    display: none;
  }

  .sh a {
    margin-left: 0;
    margin-right: 10px;
    text-align: left;
  }
}

article {
  font-size: 1.1rem;
  font-weight: 400;
}

article p {
  line-height: 1.8rem;
  margin-block-start: 1.6rem;
  margin-block-end: 1.6rem;
  text-align: justify;
  font-family: "PT Serif", Georgia, "Times New Roman", serif;
}


.collection {
  list-style: none;
  margin: 0;
  padding: 0;
}

.collection h2 {
  margin-bottom: 0;
}

.collection h2 a {
  color: black;
}

.collection .teaser {
  font-size: 1rem;
  line-height: 1.4rem;
  text-align: justify;
}

.collection .meta {
  font-weight: 200;
  font-family: Georgia, "Times New Roman", serif;
}

.collection li {
  border-bottom: 3px solid #f9f9f9;
}

.collection li:last-child {
  border-bottom: 0;
}

.other-news h2 {
  font-size: 1.4rem;
  color: #333;
}

.other-news ul {
  margin: 0;
  padding: 0 0 0 1.2rem;
}

.other-news li {
  margin: 1rem 0;
}

.other-news li a {
  font-size: 1.2rem;
  line-height: 1.6rem;
  color: black;
  font-weight: 600;
}

.other-news .badge {
  display: inline-block;
  vertical-align: bottom;
  padding: .2rem .5rem;
  line-height: 1.1rem;
  font-size: .9rem;
  font-weight: 600;
  text-transform: uppercase;
  background-color: #444;
  color: white;
  margin-left: .2rem;
}

.software-tiles {
  background-image: url('/assets/images/bg-tile.png');
  background-repeat: repeat-x;
  background-position-y: bottom;
  padding-bottom: 5rem;
}


.browser-frame {
  border-left: 2px solid #dddbe4;
  border-right: 2px solid #dddbe4;
  border-bottom: 2px solid #dddbe4;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  min-height: 260px;

  position: relative;
}

.browser-frame-header {
  background: #dddbe4;
  height: 25px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;

  position: relative;
}

  .browser-frame-header:before {
    content: "";
    height: 10px;
    width: 10px;
    border-radius: 5px;
    background-color: #cc5252;
    position: absolute;
    left: 5px;
    top: 7px;
  }

  .browser-frame-header:after {
    content: "";
    height: 10px;
    width: 10px;
    border-radius: 5px;
    background-color: #7fbb83;
    position: absolute;
    left: 20px;
    top: 7px;
  }

.browser-frame-content {
  position: absolute;
  top: 25px;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}

  .browser-frame-content img {
    width: 100%;
    display: block;
    transform: translateY(0%);
    animation: browser-scroll 20s linear infinite alternate;
    animation-delay: 1s;
    will-change: transform;
  }

@keyframes browser-scroll {
  from { transform: translateY(0%); }
  to { transform: translateY(calc(-100% + 260px)); }
}

@keyframes pulse-fade {
  from { opacity: 1; }
  to { opacity: 0.4 }
}


.promo-para {
  border: 1px solid #684dd1;
  border-left: 0;
  border-right: 0;
  padding: .5rem 0;
  font-size: 1rem;
}

.promo-para a {
  color: #684dd1;
}

.grecaptcha-badge { 
    visibility: hidden;
}