@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;700&display=swap");
/* stylelint-disable order/properties-alphabetical-order */
/* stylelint-enable */
:root {
  --font-family: "DM Sans", sans-serif;
  --font-family--heading: var(--font-family);
  --font-weight--thin: 100;
  --font-weight--extra-light: 200;
  --font-weight--light: 300;
  --font-weight--normal: 400;
  --font-weight--medium: 500;
  --font-weight--semi-bold: 600;
  --font-weight--bold: 700;
  --font-weight--extra-bold: 800;
  --font-weight--black: 900;
  --line-height: 1.5;
  --line-height--heading: 1.2;
  --border-radius: 0.1875rem;
  --spacing: 1.5rem;
  --spacing--small: 0.75rem;
  --border-width: 0.0625rem;
  --border: var(--border-width) solid currentColor;
  --focus-outline-width: 0.1875rem;
  --focus-outline-offset: 0.125rem;
  --focus-outline: var(--focus-outline-width) solid #1565c0;
  --duration: 150ms;
  --timing: ease;
}

button,
[type=button],
[type=reset],
[type=submit] {
  appearance: none;
  background-color: #1565c0;
  border: 0;
  border-radius: var(--border-radius);
  color: inherit;
  cursor: pointer;
  display: inline-block;
  font-family: var(--font-family-base);
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  font-weight: 600;
  line-height: 1;
  padding: var(--spacing--small) var(--spacing);
  text-align: center;
  text-decoration: none;
  transition: background-color var(--duration) var(--timing);
  user-select: none;
  vertical-align: middle;
  white-space: nowrap;
}
button:hover,
[type=button]:hover,
[type=reset]:hover,
[type=submit]:hover {
  background-color: #3b83d5;
}
button:focus,
[type=button]:focus,
[type=reset]:focus,
[type=submit]:focus {
  outline: var(--focus-outline);
  outline-offset: var(--focus-outline-offset);
}
button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

:root {
  --form-box-shadow: inset 0 --border-width 0.1875rem rgba(#000, 0.06);
  --form-box-shadow-focus: var(--form-box-shadow), 0 0 0.3125rem #1565c0;
}

fieldset {
  background-color: transparent;
  border: 0;
  margin: 0;
  padding: 0;
}

legend {
  font-weight: 600;
  margin-bottom: var(--spacing--small);
  padding: 0;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--spacing--small);
}

input,
select,
textarea {
  display: block;
  font-family: var(--font-family);
  font-size: 1rem;
}

[type=color],
[type=date],
[type=datetime],
[type=datetime-local],
[type=email],
[type=month],
[type=number],
[type=password],
[type=search],
[type=tel],
[type=text],
[type=time],
[type=url],
[type=week],
input:not([type]),
textarea {
  appearance: none;
  background-color: transparent;
  border: var(--border);
  border-radius: var(--border-radius);
  box-shadow: var(--form-box-shadow);
  box-sizing: border-box;
  margin-bottom: var(--spacing--small);
  padding: calc(var(--spacing) / 3);
  transition: border-color var(--duration) var(--timing);
  width: 100%;
}
[type=color]:focus,
[type=date]:focus,
[type=datetime]:focus,
[type=datetime-local]:focus,
[type=email]:focus,
[type=month]:focus,
[type=number]:focus,
[type=password]:focus,
[type=search]:focus,
[type=tel]:focus,
[type=text]:focus,
[type=time]:focus,
[type=url]:focus,
[type=week]:focus,
input:not([type]):focus,
textarea:focus {
  box-shadow: var(--form-box-shadow-focus);
}
[type=color]:disabled,
[type=date]:disabled,
[type=datetime]:disabled,
[type=datetime-local]:disabled,
[type=email]:disabled,
[type=month]:disabled,
[type=number]:disabled,
[type=password]:disabled,
[type=search]:disabled,
[type=tel]:disabled,
[type=text]:disabled,
[type=time]:disabled,
[type=url]:disabled,
[type=week]:disabled,
input:not([type]):disabled,
textarea:disabled {
  cursor: not-allowed;
}
[type=color]:disabled:hover,
[type=date]:disabled:hover,
[type=datetime]:disabled:hover,
[type=datetime-local]:disabled:hover,
[type=email]:disabled:hover,
[type=month]:disabled:hover,
[type=number]:disabled:hover,
[type=password]:disabled:hover,
[type=search]:disabled:hover,
[type=tel]:disabled:hover,
[type=text]:disabled:hover,
[type=time]:disabled:hover,
[type=url]:disabled:hover,
[type=week]:disabled:hover,
input:not([type]):disabled:hover,
textarea:disabled:hover {
  border: var(--border);
}
[type=color]::placeholder,
[type=date]::placeholder,
[type=datetime]::placeholder,
[type=datetime-local]::placeholder,
[type=email]::placeholder,
[type=month]::placeholder,
[type=number]::placeholder,
[type=password]::placeholder,
[type=search]::placeholder,
[type=tel]::placeholder,
[type=text]::placeholder,
[type=time]::placeholder,
[type=url]::placeholder,
[type=week]::placeholder,
input:not([type])::placeholder,
textarea::placeholder {
  color: #333;
  opacity: 0.25;
}

[type=search] {
  -webkit-appearance: textfield;
}

textarea {
  resize: vertical;
}

[type=checkbox],
[type=radio] {
  display: inline;
  margin-right: var(--spacing--small);
}

[type=file] {
  margin-bottom: var(--spacing--small);
  width: 100%;
}

select {
  margin-bottom: var(--spacing--small);
  width: 100%;
}

[type=checkbox]:focus,
[type=radio]:focus,
[type=file]:focus,
select:focus {
  outline: var(--focus-outline);
  outline-offset: var(--focus-outline-offset);
}

html {
  background-color: #fff;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
}

ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

dl {
  margin: 0;
}

dt {
  font-weight: 600;
  margin: 0;
}

dd {
  margin: 0;
}

figure {
  margin: 0;
}

img,
picture {
  margin: 0;
  max-width: 100%;
}

table {
  margin: var(--spacing) 0;
  text-align: left;
  width: 100% !important;
}

thead {
  line-height: var(--line-height--heading);
  vertical-align: bottom;
}

tbody {
  vertical-align: top;
}

th {
  font-weight: 600;
}

th,
td {
  padding: var(--spacing--small) var(--spacing--small) var(--spacing--small) 0;
}

html {
  color: #333;
  font-family: var(--font-family);
  font-size: 100%;
  line-height: var(--line-height);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family--heading);
  font-size: 1.25em;
  line-height: var(--line-height--heading);
  margin: 0 0 var(--spacing--small);
}

p {
  margin: 0 0 var(--spacing--small);
}

a {
  color: #1565c0;
  text-decoration-skip: ink;
  transition: color var(--duration) var(--timing);
}
a:hover {
  color: #3b83d5;
}
a:focus {
  outline: var(--focus-outline);
  outline-offset: var(--focus-outline-offset);
}

hr {
  border-bottom: var(--border);
  border-left: 0;
  border-right: 0;
  border-top: 0;
  margin: var(--spacing) 0;
}

.wrapper {
  max-width: 1100px;
  margin: auto;
}

.key {
  max-width: 700px;
  margin-bottom: 40px;
}
.key .table {
  border-top: 1px solid #FF5A63;
}
@media screen and (min-width: 701px) {
  .key .table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 700px;
  }
  .key .table .row:nth-child(even) .icon {
    margin-left: 10px;
  }
  .key .table .row:nth-last-child(1) .score, .key .table .row:nth-last-child(2) .score {
    border-bottom: 1px solid #FF5A63;
  }
}
.key .table .row {
  display: flex;
}
.key .table .row div {
  flex: 1;
  padding: 5px 10px 5px 0;
  border-bottom: 1px solid #FF5A63;
  align-items: center;
}
.key .table .row div.score {
  flex: none;
  display: flex;
  width: 55px;
  padding: 0 10px;
  background-color: #FF5A63;
  color: #fff;
  border-bottom: 1px solid #fff;
}
.key .table .row div.title {
  display: flex;
  align-items: center;
}
.key .table .row div.title .icon {
  width: 30px;
  display: flex;
  margin-right: 10px;
}
.key .table .row div.title .icon img {
  width: 100%;
}

.table_wrap {
  max-width: 1100px;
  width: 100%;
  margin: auto;
  font-size: 13px;
}
.table_wrap table {
  border: 0 !important;
}
.table_wrap table.collapsed tbody td.dtr-control {
  padding-left: 30px !important;
}
.table_wrap table tr td, .table_wrap table tr th {
  border: 0 !important;
  padding: 10px 5px !important;
}
.table_wrap table tr td:nth-child(1), .table_wrap table tr th:nth-child(1) {
  padding-left: 10px !important;
}
.table_wrap table thead {
  color: #fff;
  background-image: linear-gradient(to right, #FF5A63, #520861);
}
.table_wrap table thead .sorting {
  background-image: url(../img/sort_both.png) !important;
}
.table_wrap table thead .sorting_asc {
  background-image: url(../img/sort_asc.png) !important;
}
.table_wrap table thead .sorting_desc {
  background-image: url(../img/sort_desc.png) !important;
}
.table_wrap table thead tr th {
  padding: 5px 15px 10px 5px !important;
  font-weight: var(--font-weight--bold);
  position: relative;
}
.table_wrap table thead tr th:nth-child(1) {
  border-radius: 10px 0 0 0;
}
.table_wrap table thead tr th:nth-last-child(1) {
  border-radius: 0 10px 0 0;
}
.table_wrap table thead tr th:after {
  content: "";
  position: absolute;
  width: calc(100% - 10px);
  margin: 0 0 0 5px;
  left: 0;
  bottom: 5px;
  height: 0;
  border-bottom: 1px solid #fff;
}
.table_wrap table tbody {
  color: #270737;
  font-weight: var(--font-weight--bold);
}
.table_wrap table tbody tr {
  border: 0 !important;
}
.table_wrap table tbody tr.odd {
  background-color: #E6E6F6 !important;
}
.table_wrap table tbody tr.odd > .sorting_1 {
  background-color: #d6d6e5 !important;
}
.table_wrap table tbody tr > td:nth-last-child(1) {
  color: #FF5A63;
  font-weight: var(--font-weight--bold);
}
@media screen and (max-width: 767px) {
  .table_wrap table tbody tr > td:nth-last-child(1) {
    text-align: right;
  }
}
.table_wrap table tbody tr > td:nth-child(1) {
  font-weight: var(--font-weight--normal) !important;
}
.table_wrap table tbody td.child {
  padding: 5px 15px 5px 30px !important;
}
@media screen and (max-width: 767px) {
  .table_wrap table tbody td.child {
    padding: 5px 5px 5px 30px !important;
  }
}
.table_wrap table tbody td.child ul {
  width: 100%;
}
.table_wrap table tbody td.child li {
  display: flex;
  justify-content: space-between;
  text-align: left;
  color: #270737;
}
.table_wrap table tbody td.child li span.dtr-title {
  font-weight: 400;
}
.table_wrap table tbody td.child li span:nth-last-child(1) {
  font-weight: var(--font-weight--bold);
}
