@charset "UTF-8";

@import "root.css";

/* card general styles */
article.\\view\\card {
  display: grid;
  grid-template-columns: 360px;
  grid-template-rows: 80px 150px 212px 41px 30px;
  font-family: 'Roboto Condensed', sans-serif;
  width: 360px;
  height: 485px;
  box-sizing: border-box;
  border: 1px solid #4b636e;
  outline: rgba(255,208,138,0) solid 10px; /* #ff5622 */
  background-color: #ffffff;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.1);
  margin: 20px;
}

article.\\view\\card > div {
  box-sizing: border-box;
  grid-column-start: 1;
  grid-column-end: 2;
  justify-self: stretch;
}

/* card header styles */
/* 525 - 100 = 425 */
article.\\view\\card > .header {
  background: linear-gradient(225deg, var(--bg-color-header2) 0%, var(--bg-color-header1) 100%);
  grid-row-start: 1;
  grid-row-end: 2;
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: minmax(0, 1fr) 15px;
  padding: 10px;
}
article.\\view\\card > .header > h2 {
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 24px;
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 1;
  grid-row-end: 2;
}
article.\\view\\card > .header > h2 > a {
  color: #ffffff;
  text-decoration: none;
}
article.\\view\\card > .header > h2 > a:focus,
article.\\view\\card > .header > h2 > a:hover,
article.\\view\\card > .header > h2 > a:active,
article.\\view\\card > .header > h2 > a:focus-within {
  text-decoration: underline !important;
}
article.\\view\\card > .header > h3 {
  color: #ffffff;
  font-size: 12px;
  font-weight: normal;
  letter-spacing: 0;
  line-height: 15px;
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 2;
  grid-row-end: 3;
}

/* card stat styles */
/* 525 - 100 = 425 */
article.\\view\\card > .stats {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  padding: 15px 30px 15px;
  grid-row-start: 2;
  grid-row-end: 3;
}
article.\\view\\card > .stats > .left,
article.\\view\\card > .stats > .right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
}
article.\\view\\card > .stats > .left > h3,
article.\\view\\card > .stats > .right > h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: bold;
  line-height: 19px;
  padding-bottom: 5px;
  text-align: center;
}
article.\\view\\card > .stats > .divider {
  width: 1px;
  border-left: 1px solid #4b636e;
  margin: 0 15px 0 14px;
}
article.\\view\\card > .stats > .left > h3 > sup,
article.\\view\\card > .stats > .right > h3 > sup {
  margin-left: 0.2em;
}
article.\\view\\card > .stats .column {
  display: flex;
  width: 145px;
}
article.\\view\\card > .stats .column > .stat {
  width: 80px;
}
article.\\view\\card > .stats .column > .stat > .circle {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  border-radius: 50%;
  width: 80px;
  height: 80px;
}
article.\\view\\card > .stats .column > .stat > .circle > p {
  white-space: nowrap;
  color: white;
  font-size: 20px;
  line-height: 20px;
  font-weight: bold;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
article.\\view\\card > .stats .column > .symbol {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 65px;
  height: 65px;
  background-size: 65px 65px;
}
article.\\view\\card > .stats .column > .stat > h4 {
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  line-height: 13px;
  text-transform: uppercase;
  width: 80px;
  padding-top: 5px;
  font-weight: bold;
  text-align: center;
}
article.\\view\\card > .stats > .right > .column {
  justify-content: center;
}
article.\\view\\card > .stats > .right > .column > .symbol {
  display: none;
}

/* card copy styles */
article.\\view\\card > .copy {
  padding: 0 20px;
  grid-row-start: 3;
  grid-row-end: 4;
}
article.\\view\\card > .copy > .date-release {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: 14px 14px;
  column-gap: 5px;
  grid-row-gap: 3px;
  margin-bottom: 10px;
}
article.\\view\\card > .copy > .date-release > span {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  line-height: 20px;
  white-space: nowrap;
}
article.\\view\\card > .copy > .date-release > span:nth-child(odd) {
  grid-column-start: 1;
  grid-column-end: 2;
  justify-self: start;
}
article.\\view\\card > .copy > .date-release > span:nth-child(even) {
  grid-column-start: 2;
  grid-column-end: 3;
  justify-self: stretch;
}
article.\\view\\card > .copy > .date-release > span:nth-child(-n+2) {
  grid-row-start: 1;
  grid-row-end: 2;
}
article.\\view\\card > .copy > .date-release > span:nth-child(n+3) {
  grid-row-start: 2;
  grid-row-end: 3;
}
article.\\view\\card > .copy > .text {
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 18px;
  max-height: 140px;
}
article.\\view\\card > .copy .press-release {
  display: inline-block;
  height: 30px;
  color: var(--color-link);
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 30px;
  vertical-align: center;
  text-decoration: none;
  padding: 0 5px;
}
article.\\view\\card > .copy .press-release:focus,
article.\\view\\card > .copy .press-release:hover,
article.\\view\\card > .copy .press-release:active,
article.\\view\\card > .copy .press-release:focus-within {
  text-decoration: underline !important;
}

article.\\view\\card > .copy .press-release > .simple-line-icons {
  margin-right: 0.2em;
}

/* card button styles */
article.\\view\\card > .button {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 0 15px 2px;
  grid-row-start: 4;
  grid-row-end: 5;
}
article.\\view\\card > .button > button {
  display: flex;
  justify-content: space-between;
  height: 36px;
  width: 138px;
  border-radius: 5px;
  padding: 0 15px;
  margin-bottom: 2px;
}
article.\\view\\card > .button > button:focus,
article.\\view\\card > .button > button:hover,
article.\\view\\card > .button > button:active,
article.\\view\\card > .button > button:focus-within {
  background: var(--bg-hover-button);
}
article.\\view\\card > .button > button > p,
article.\\view\\card > .button > button > span {
  color: white;
  font-size: 14px;
  font-weight: bold;
  line-height: 36px;
}
article.\\view\\card > .return {
  grid-row-start: 5;
  grid-row-end: 6;
  border-radius: 15px;
  height: 0px;
}
article.\\view\\card > .return:focus-within {
  height: auto;
  z-index: 10;
}
article.\\view\\card > .return > a {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  grid-template-rows: 30px;
  justify-items: stretch;
  outline: 0 !important;
  text-decoration-line: none;
}
article.\\view\\card > .return > a:focus,
article.\\view\\card > .return > a:active {
  text-decoration: none;
}
article.\\view\\card > .return > a > span {
  color: white;
  grid-row-start: 1;
  grid-row-end: 2;
  line-height: 22px !important;
  padding: 4px;
}
article.\\view\\card > .return > a > span:nth-child(1) {
  grid-column-start: 1;
  grid-column-end: 2;
  font-size: 22px;
}
article.\\view\\card > .return > a > span:nth-child(2) {
  grid-column-start: 2;
  grid-column-end: 3;
  text-align: center;
}