/* Details */
details.description summary::after {
transition: all .3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    transform-origin: left bottom;
  content: attr(data-open);
  opacity: 0;
}
details.description[open] summary::after {
  content: attr(data-open);
  opacity: 1;
float: left;
    padding-right: 10px;
}
details.description summary::before {
transition: all .3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    transform-origin: left bottom;
  content: attr(data-close);
  opacity: 0;
}
details.description:not([open]) summary::before {
  content: attr(data-close);
  opacity: 1;
}
.rmoreless {
font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    opacity: inherit;
    line-height: inherit;
}
/* Details end */
/* NOX embed */
.embed-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 420 / 220;
  overflow: hidden;
}

.embed-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* NOX embed end */
/* NOX Table responsive */
.nox table {
  border: 1px solid #ccc;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}
.nox table caption {
  font-size: 1.5em;
  margin: .5em 0 .75em;
}
.nox table tr {
  background-color: #0B1215;
  border: 1px solid #ddd;
  padding: .35em;
}
.nox table th,
.nox table td {
  padding: .425em;
  text-align: center;
}
.nox table th {
  font-size: .85em;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.nox table th:nth-child(1),
.nox table td:nth-child(1),
.nox table th:nth-child(2),
.nox table td:nth-child(2),
.nox table th:nth-child(3),
.nox table td:nth-child(3) {
  width: 15%;
}
.nox table th:nth-child(4),
.nox table td:nth-child(4) {
  width: 20%;
}
@media screen and (max-width: 768px) {
  .nox table {
    border: 0;
  }
.nox table caption {
    font-size: 1.3em;
  }
.nox table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
.nox table tr {
    border-bottom: 3px solid #ddd;
    display: block;
    margin-bottom: .625em;
  }
.nox table td {
    border-bottom: 1px solid #ddd;
    display: block;
    font-size: .8em;
    text-align: right;
  }
.nox table td::before {
    /*
    * aria-label has no advantage, it won't be read inside a table
    content: attr(aria-label);
    */
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }
.nox table td:last-child {
    border-bottom: 0;
  }
.nox table th:nth-child(1),
.nox table td:nth-child(1),
.nox table th:nth-child(2),
.nox table td:nth-child(2),
.nox table th:nth-child(3),
.nox table td:nth-child(3) {
  width: 100%;
}
.nox table th:nth-child(4),
.nox table td:nth-child(4) {
  width: 100%;
}
}
/* NOX Table end */