@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
:root {
    --vh: 1vh;
    --vw: 1vw;
    --background: linear-gradient(180deg, #5B57BD 0%, #2E265A 100%);
    --min-body-width: 1024px;
    --max-body-width: 1600px;
    --default-border-radius: 16px;
    --header-transform-speed: 0.2s ;
}

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(29, 29, 29, 0);
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
    display: block;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.425;
    color: #1D1D1D;
    text-align: left;
}

[tabindex="-1"]:focus:not(:focus-visible) {
    outline: 0 !important;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 1.2em;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
    text-decoration: underline;
    text-decoration: underline dotted;
    cursor: help;
    border-bottom: 0;
    text-decoration-skip-ink: none;
}

address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit;
}

ol,
ul,
dl {
    margin-top: 0;
    margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
    margin-bottom: 0;
}

dt {
    font-weight: 700;
}

dd {
    margin-bottom: 0.5rem;
    margin-left: 0;
}

blockquote {
    margin: 0 0 1rem;
}

b,
strong {
    font-weight: bolder;
}

small {
    font-size: 0.8em;
}

sub,
sup {
    position: relative;
    font-size: 0.75em;
    line-height: 0;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

a {
    color: inherit;
    text-decoration: none;
    background-color: transparent;
    line-height: 1.2;
    border-bottom: 1.5px solid #1D1D1D;
}

a:not([href]):not([class]) {
    color: inherit;
    text-decoration: none;
}
a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none;
}

pre,
code,
kbd,
samp {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 1em;
}

pre {
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
    -ms-overflow-style: scrollbar;
}

figure {
    margin: 0 0 1rem;
}

img {
    vertical-align: middle;
    border-style: none;
}

svg {
    overflow: hidden;
    vertical-align: middle;
}

table {
    border-collapse: collapse;
}

caption {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    color: #6c757d;
    text-align: left;
    caption-side: bottom;
}

th {
    text-align: inherit;
    text-align: -webkit-match-parent;
}

label {
    display: inline-block;
    margin-bottom: 0.5rem;
}

button {
    border-radius: 0;
}

button:focus {
    outline: 1px dotted;
    outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

[role=button] {
    cursor: pointer;
}

select {
    word-wrap: normal;
}

button,
[type=button],
[type=reset],
[type=submit] {
    -webkit-appearance: button;
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
    cursor: pointer;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
    padding: 0;
    border-style: none;
}

input[type=radio],
input[type=checkbox] {
    box-sizing: border-box;
    padding: 0;
}

textarea {
    overflow: auto;
    resize: vertical;
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}

legend {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    line-height: inherit;
    color: inherit;
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto;
}

[type=search] {
    outline-offset: -2px;
    -webkit-appearance: none;
}

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

::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button;
}

output {
    display: inline-block;
}

summary {
    display: list-item;
    cursor: pointer;
}

template {
    display: none;
}

[hidden] {
    display: none !important;
}

body {
    min-height: 500px;
    position: relative;
}
body:after {
    content: "";
    background: var(--background);
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    position: fixed;
}

main {
    position: relative;
    min-width: var(--min-body-width);
    max-width: var(--max-body-width);
    margin: 0 auto;
    height: calc(var(--vh, 1vh) * 100);
    min-height: 500px;
}

.group:before,
.group:after {
    content: "";
    display: table;
}

.group:after {
    clear: both;
}

.group {
    zoom: 1;
}

.submit::-moz-focus-inner {
    border: 0;
    padding: 0;
}

.clear {
    height: 0;
    overflow: hidden;
    clear: both;
}

.nowrap {
    white-space: nowrap;
}

.show {
    display: block;
}

.hide {
    display: none;
}

p {
    margin: 0 0 1em 0;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    margin-bottom: 1.2em;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #1D1D1D;
}

h1, .h1 {
    font-size: 32px;
}

h2, .h2 {
    font-size: 25px;
}

h3, .h3 {
    font-size: 23px;
}

h4, .h4 {
    font-size: 20px;
}

h5, .h5 {
    font-size: 18px;
}

h6, .h6 {
    font-size: 16px;
}

.table {
    display: table;
    width: 100%;
    height: 100%;
}
.table .tr, .table th {
    display: table-row;
}
.table .td {
    display: table-cell;
    vertical-align: middle;
}
.table .table-head {
    display: table-header-group;
}
.table .table-body {
    display: table-row-group;
}

.hidden {
    display: none !important;
}

.opacity-10 {
    opacity: 0.1;
}

.opacity-20 {
    opacity: 0.2;
}

.opacity-30 {
    opacity: 0.3;
}

.opacity-40 {
    opacity: 0.4;
}

.opacity-50 {
    opacity: 0.5;
}

.opacity-60 {
    opacity: 0.6;
}

.opacity-70 {
    opacity: 0.7;
}

.opacity-80 {
    opacity: 0.8;
}

.opacity-90 {
    opacity: 0.9;
}

.scrollable {
    overflow-y: scroll;
}

.width-50 {
    width: 50%;
}

.align-center {
    text-align: center;
}

#console {
    position: fixed;
    top: 5px;
    right: 5px;
    padding: 5px 10px;
    background: #ffffff;
    font-size: 14px;
    border-radius: 5px;
    z-index: 15;
}

section, footer, header {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
}

.scrollable-x {
    max-width: 100%;
    overflow-x: scroll;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
}
.scrollable-x::-webkit-scrollbar {
    display: none;
}

.footer-switcher {
    position: fixed;
    z-index: 2;
    bottom: 17px;
    left: 50%;
    background: white;
    border-radius: 8px;
    transform: translateX(-50%);
    width: 150px;
    height: 16px;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}
.footer-switcher:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 4px;
    background-color: black;
    border-radius: 4px;
    width: 138px;
}

.overlay {
    position: fixed;
    top: 0;
    height: 100%;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(91, 87, 189, 0.9) 0%, rgba(46, 38, 90, 0.9) 100%);
    z-index: 3;
}

footer {
    position: fixed;
    bottom: -150px;
    background-color: white;
    padding: 15px 20px 40px;
    z-index: 4;
    width: 100%;
    min-width: 1024px;
    transition: all 0.2s;
}
footer.opened {
    bottom: 0;
}
footer .grid {
    display: flex;
    justify-content: space-between;
    align-items: start;
}
footer .grid .left a {
    font-size: 16px;
    font-weight: bold;
}
footer .grid .right {
    text-align: right;
}
footer .grid .right a {
    font-size: 16px;
    font-weight: bold;
}
footer .grid .middle {
    padding-top: 40px;
    display: flex;
    column-gap: 48px;
    font-size: 16px;
}
footer .grid .middle a {
    border-bottom: none;
    display: flex;
    column-gap: 12px;
    align-items: center;
    opacity: 0.5;
    width: 150px;
    position: relative;
}
footer .grid .middle a i {
    font-size: 28px;
    color: white;
    border-radius: 32px;
    width: 32px;
    flex-basis: 32px;
    flex-shrink: 0;
    text-align: center;
    height: 32px;
    font-style: normal;
    background-color: black;
}
footer .grid .middle a.active {
    font-weight: 600;
    opacity: 1;
}
footer .grid .middle a.active i {
    background: linear-gradient(180deg, #615CF0 0%, #2E265A 100%);
}
footer .grid .middle a.active:after {
    content: "";
    position: absolute;
    height: 7px;
    width: 100%;
    background: linear-gradient(270deg, #615CF0 0%, #2E265A 100%);
    bottom: -15px;
    border-radius: 4px;
}
footer .switcher {
    position: absolute;
    top: 10px;
    left: 50%;
    background: white;
    border-radius: 8px;
    transform: translateX(-50%);
    width: 150px;
    height: 16px;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}
footer .switcher:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 4px;
    background-color: black;
    border-radius: 4px;
    width: 138px;
}

:root {
    --select-border: #777;
    --select-focus: blue;
    --select-arrow: var(--select-border);
    --section-padding-top: 217px;
    --section-padding-top-after-scroll: 180px;
    --review-grid-right-column-width: 250px;
    --default-gap: 24px;
}

.section {
    background-color: white;
    position: relative;
    padding-top: var(--section-padding-top);
    transition: padding-top 0.3s;
}
.section header.header {
    padding: 37px 24px 0;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #dee2e6;
    position: fixed;
    background: white;
    top: 0;
    z-index: 2;
    transition: all var(--header-transform-speed);
    min-width: var(--min-body-width);
    max-width: var(--max-body-width);
}
.section header.header .top {
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding-bottom: 16px;
}
.section header.header .top .left {
    display: flex;
    flex-direction: column;
}
.section header.header .top .left .title {
    font-size: 36px;
    font-weight: 600;
    line-height: 36px;
    display: flex;
    align-items: start;
    column-gap: 10px;
    transition: all var(--header-transform-speed);
}
.section header.header .top .left .date {
    font-size: 24px;
    font-weight: 600;
    transition: all var(--header-transform-speed);
}
.section header.header .top .right {
    display: flex;
    column-gap: 32px;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    transition: all var(--header-transform-speed);
}
.section header.header .top .right a, .section header.header .top .right span {
    display: block;
    position: relative;
    border-bottom: none;
}
.section header.header .top .right a i, .section header.header .top .right span i {
    font-style: normal;
}
.section header.header .top .right a svg, .section header.header .top .right a img, .section header.header .top .right span svg, .section header.header .top .right span img {
    position: relative;
    top: -10px;
}
.section header.header .top .right span {
    color: rgb(97, 92, 240);
}
.section header.header .top .right a i {
    border-bottom: 1.5px solid #1D1D1D;
}
.section header.header .top .additional {
    font-size: 16px;
    display: none;
    justify-content: end;
    line-height: 1.2;
    column-gap: 16px;
    font-weight: 600;
}
.section header.header .top .additional span {
    color: rgb(97, 92, 240);
}
.section header.header .middle {
    border-top: 1px solid #dee2e6;
    font-size: 16px;
    padding: 10px 0;
    display: flex;
    justify-content: end;
    line-height: 1.2;
    column-gap: 16px;
    font-weight: 600;
}
.section header.header .middle span {
    color: rgb(97, 92, 240);
}
.section header.header .bottom {
    border-top: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    line-height: 1.2;
    padding: 8px 0;
    min-height: 52px;
    align-items: center;
}
.section header.header .bottom .left {
    display: flex;
    column-gap: 16px;
}
.section header.header .bottom .left span {
    color: rgb(97, 92, 240);
    font-weight: 600;
}
.section header.header .bottom .right {
    display: flex;
    justify-content: end;
    column-gap: 16px;
}
.section header.header .bottom .right span {
    font-weight: 600;
}
.section header.header .bottom .right a span {
    color: black;
}
.section header.header .bottom .right a span.blue {
    color: rgb(97, 92, 240);
    border-bottom: 1.5px solid rgb(97, 92, 240);
}
.section header.header .bottom .right a span.red {
    color: rgb(255, 0, 0);
    border-bottom: 1.5px solid rgb(255, 0, 0);
}
.section header.header .bottom .right a span.yellow {
    color: rgb(255, 184, 0);
    border-bottom: 1.5px solid rgb(255, 184, 0);
}
.section header.header .bottom .right a span.green {
    color: rgb(0, 172, 59);
    border-bottom: 1.5px solid rgb(0, 172, 59);
}
.section header.header.compact {
    padding-top: 17px;
}
.section header.header.compact .middle {
    display: none;
}
.section header.header.compact .top {
    padding-bottom: 20px;
}
.section header.header.compact .top .left .title {
    font-size: 24px;
}
.section header.header.compact .top .left .date {
    font-size: 14px;
}
.section header.header.compact .top .right {
    font-size: 18px;
}
.section header.header.compact .top .additional {
    display: flex;
}
.section header.header.compact .bottom {
    min-height: 46px;
}
.section header.header .select {
    width: 100%;
    min-width: 300px;
    max-width: 400px;
    padding: 8px 16px;
    font-size: 16px;
    cursor: pointer;
    line-height: 1.1;
    background-color: rgb(242, 242, 242);
    border-radius: 15px;
    position: relative;
}
.section header.header .select select {
    appearance: none;
    background-color: transparent;
    border: none;
    padding: 0 1em 0 0;
    margin: 0;
    width: 100%;
    font-family: inherit;
    font-size: inherit;
    cursor: inherit;
    line-height: inherit;
    outline: none;
}
.section header.header .select select::-ms-expand {
    display: none;
}
.section header.header .select svg {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}
.section .icon {
    display: inline-flex;
    column-gap: 4px;
    align-items: start;
}
.section .icon svg {
    flex-shrink: 0;
    top: 2px;
    position: relative;
    min-width: 20px;
}
.section .icon i {
    font-style: normal;
}
.section.compact {
    padding-top: var(--section-padding-top-after-scroll);
}
.section.login {
    width: 500px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: var(--default-border-radius);
    padding: 50px 40px 60px 40px;
    background-color: white;
}
.section.login h1 {
    font-size: 36px;
    margin: 0 0 50px;
    font-weight: 500;
}
.section.login form {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}
.section.login form input {
    padding: 6px 12px;
    border-radius: var(--default-border-radius);
    border: none;
    background-color: rgb(235, 235, 235);
}
.section.login form input[type=submit] {
    background-color: rgb(97, 92, 240);
    color: white;
}
.section.content-set-list {
    width: 80%;
    height: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: var(--default-border-radius);
    padding: 40px 40px 60px 40px;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
}
.section.content-set-list header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 50px;
}
.section.content-set-list header h1 {
    font-size: 36px;
    font-weight: 500;
    margin: 0;
}
.section.content-set-list header .tabs {
    display: flex;
    column-gap: 32px;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
}
.section.content-set-list header .tabs span {
    color: rgb(97, 92, 240);
    display: block;
}
.section.content-set-list header .tabs a {
    text-decoration: none;
}
.section.content-set-list .pseudo-table {
    display: flex;
    flex-direction: column;
    height: calc(100% - 50px - 44px);
}
.section.content-set-list .pseudo-table .th {
    display: flex;
    justify-content: stretch;
    align-items: center;
    border-bottom: 1px solid rgb(235, 235, 235);
}
.section.content-set-list .pseudo-table .th .td {
    padding: 16px 0;
    font-size: 12px;
    text-transform: uppercase;
}
.section.content-set-list .pseudo-table .th .td.align-right {
    text-align: right;
}
.section.content-set-list .pseudo-table .th .td:nth-child(1) {
    width: 30%;
}
.section.content-set-list .pseudo-table .th .td:nth-child(2) {
    width: 20%;
}
.section.content-set-list .pseudo-table .th .td:nth-child(3) {
    width: 25%;
}
.section.content-set-list .pseudo-table .th .td:nth-child(4) {
    width: 25%;
}
.section.content-set-list .pseudo-table .table-body {
    overflow-y: scroll;
    height: 100%;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}
.section.content-set-list .pseudo-table .table-body::-webkit-scrollbar {
    display: none;
}
.section.content-set-list .pseudo-table .table-body .tr {
    display: flex;
    justify-content: stretch;
    align-items: center;
    border-bottom: 1px solid rgb(235, 235, 235);
}
.section.content-set-list .pseudo-table .table-body .tr .td {
    padding: 16px 0;
    font-size: 14px;
    text-transform: uppercase;
}
.section.content-set-list .pseudo-table .table-body .tr .td a {
    font-weight: 600;
}
.section.content-set-list .pseudo-table .table-body .tr .td.align-right {
    text-align: right;
}
.section.content-set-list .pseudo-table .table-body .tr .td:nth-child(1) {
    width: 30%;
    font-size: 18px;
}
.section.content-set-list .pseudo-table .table-body .tr .td:nth-child(2) {
    width: 20%;
}
.section.content-set-list .pseudo-table .table-body .tr .td:nth-child(3) {
    width: 25%;
}
.section.content-set-list .pseudo-table .table-body .tr .td:nth-child(4) {
    width: 25%;
}
.section.candidates-list .rows {
    display: table;
    width: 100%;
}
.section.candidates-list .rows .row {
    display: table-row-group;
    font-size: 14px;
}
.section.candidates-list .rows .row[data-status=good] {
    background-color: rgb(244, 255, 242);
}
.section.candidates-list .rows .row[data-status=bad] {
    background-color: rgb(255, 244, 244);
}
.section.candidates-list .rows .row[data-status=passable] {
    background-color: rgb(255, 251, 230);
}
.section.candidates-list .rows .row .column {
    display: table-cell;
    padding: 16px 12px;
    vertical-align: top;
    border-bottom: 1px solid rgb(235, 235, 235);
}
.section.candidates-list .rows .row .column.img {
    padding-left: 24px;
    width: 89px;
    text-align: center;
}
.section.candidates-list .rows .row .column.img img {
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 8px;
}
.section.candidates-list .rows .row .column.name {
    text-align: left;
    width: 33%;
}
.section.candidates-list .rows .row .column.name .icon {
    margin-right: 16px;
}
.section.candidates-list .rows .row .column.info {
    width: 33%;
}
.section.candidates-list .rows .row .column.rating {
    width: 33%;
}
.section.candidates-list .rows .row .column.actions {
    padding-right: 24px;
    text-align: right;
    width: 60px;
}
.section.candidates-list .rows .row .column.actions .flex-column {
    display: inline-flex;
}
.section.candidates-list .rows .row .column.actions .flex-column a {
    border-bottom: none;
}
.section.candidates-list .rows .row .column.actions .flex-column a.active .good path {
    fill: rgb(12, 157, 52);
}
.section.candidates-list .rows .row .column.actions .flex-column a.active .passable path {
    fill: rgb(255, 199, 0);
}
.section.candidates-list .rows .row .column.actions .flex-column a.active .bad path {
    fill: rgb(255, 0, 0);
}
.section.candidates-list .rows .row .column .flex-column {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    align-self: start;
}
.section.candidates-list .rows .row .column .title {
    font-size: 18px;
    display: block;
    font-weight: 600;
    margin-bottom: 16px;
    border-bottom: none;
}
.section.candidates-list .rows .row .column .subtitle {
    display: block;
    margin-top: -10px;
    margin-bottom: 16px;
}
.section.candidates-list .rows .row .column .db {
    display: flex;
    column-gap: 8px;
    row-gap: 8px;
    flex-wrap: wrap;
    margin-top: 16px;
    align-items: center;
}
.section.candidates-list .rows .row .column .db .item {
    display: flex;
    column-gap: 4px;
    align-items: center;
}
.section.candidates-list .albums {
    padding: 24px;
    display: flex;
    flex-wrap: wrap;
    row-gap: 16px;
    column-gap: 16px;
}
.section.candidates-list .albums .album {
    width: calc(25% - 12px);
    display: flex;
    flex-direction: column;
    border-radius: 0px 0px 8px 8px;
    row-gap: 8px;
    background-color: rgb(250, 250, 250);
}
.section.candidates-list .albums .album[data-status=good] {
    background-color: rgb(244, 255, 242);
}
.section.candidates-list .albums .album[data-status=bad] {
    background-color: rgb(255, 244, 244);
}
.section.candidates-list .albums .album[data-status=passable] {
    background-color: rgb(255, 251, 230);
}
.section.candidates-list .albums .album .img {
    position: relative;
}
.section.candidates-list .albums .album .img img {
    width: 100%;
}
.section.candidates-list .albums .album .img .icon {
    position: absolute;
    top: 11px;
    right: 11px;
    border-radius: 8px 8px 0px 0px;
}
.section.candidates-list .albums .album .icons {
    text-align: center;
}
.section.candidates-list .albums .album .content {
    padding: 0 16px 16px;
    display: flex;
    flex-direction: column;
    row-gap: 12px;
    flex-grow: 1;
}
.section.candidates-list .albums .album .content a {
    font-size: 18px;
    border: none;
    font-weight: 600;
}
.section.candidates-list .albums .album .content p {
    margin: 0;
}
.section.candidates-list .albums .album .content .actions {
    flex-grow: 1;
    display: flex;
    column-gap: 14px;
    align-items: end;
    padding-top: 24px;
}
.section.candidates-list .albums .album .content .actions a {
    border-bottom: none;
}
.section.candidates-list .albums .album .content .actions a.active .good path {
    fill: rgb(12, 157, 52);
}
.section.candidates-list .albums .album .content .actions a.active .passable path {
    fill: rgb(255, 199, 0);
}
.section.candidates-list .albums .album .content .actions a.active .bad path {
    fill: rgb(255, 0, 0);
}
.section.review {
    height: 100%;
    padding-top: 200px;
}
.section.review.compact {
    padding-top: 170px;
}
.section.review.empty {
    padding-top: 124px;
}
.section.review .grid {
    height: 100%;
    display: flex;
}
.section.review .grid .column {
    height: 100%;
    overflow-y: scroll;
    padding: 0 calc(var(--default-gap) / 2);
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}
.section.review .grid .column::-webkit-scrollbar {
    display: none;
}
.section.review .grid .column.left {
    width: calc(45% - (var(--review-grid-right-column-width) + var(--default-gap)) / 2);
    padding-left: var(--default-gap);
    border-right: 1px solid rgb(235, 235, 235);
}
.section.review .grid .column.middle {
    width: calc(55% - (var(--review-grid-right-column-width) + var(--default-gap)) / 2);
    border-right: 1px solid rgb(235, 235, 235);
}
.section.review .grid .column.right {
    width: calc(var(--review-grid-right-column-width) + var(--default-gap));
    padding-right: var(--default-gap);
    padding-left: calc(var(--default-gap) / 2);
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    font-size: 14px;
}
.section.review .grid .column.right img {
    width: 100%;
    border-radius: 8px;
}
.section.review .grid .column.right .title {
    font-weight: 600;
    font-size: 22px;
}
.section.review .grid .column .expandable {
    margin-bottom: 1.5em;
}
.section.review .grid .column .expandable .toggle {
    display: flex;
    align-items: center;
    border-color: rgb(235, 235, 235);
    column-gap: 10px;
    font-size: 12px;
    text-transform: uppercase;
    color: rgb(97, 92, 240);
    font-weight: 600;
    padding: 6px 0;
}
.section.review .grid .column .expandable .toggle svg {
    transition: all 0.3s;
}
.section.review .grid .column .expandable .expandable-content {
    display: none;
}
.section.review .grid .column .expandable.opened .toggle svg {
    transform: rotate(180deg);
}
.section.review .grid .column .expandable.opened .expandable-content {
    display: block;
}
.section.review .grid .column .approve-list .item, .section.review .grid .column .approve-list .subitem {
    display: flex;
    padding: 8px 16px;
    align-items: center;
    column-gap: 8px;
    font-size: 16px;
    position: relative;
}
.section.review .grid .column .approve-list .item .toggle, .section.review .grid .column .approve-list .subitem .toggle {
    position: absolute;
    left: 16px;
    top: 26px;
    transition: all 0.3s;
}
.section.review .grid .column .approve-list .item span, .section.review .grid .column .approve-list .subitem span {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.section.review .grid .column .approve-list .item span i, .section.review .grid .column .approve-list .subitem span i {
    color: rgb(132, 132, 132);
    font-style: normal;
}
.section.review .grid .column .approve-list .item span b, .section.review .grid .column .approve-list .subitem span b {
    font-weight: 400;
}
.section.review .grid .column .approve-list .item a, .section.review .grid .column .approve-list .subitem a {
    border: none;
}
.section.review .grid .column .approve-list .item a.active .good path, .section.review .grid .column .approve-list .subitem a.active .good path {
    fill: rgb(12, 157, 52);
}
.section.review .grid .column .approve-list .item a.active .passable path, .section.review .grid .column .approve-list .subitem a.active .passable path {
    fill: rgb(255, 199, 0);
}
.section.review .grid .column .approve-list .item a.active .bad path, .section.review .grid .column .approve-list .subitem a.active .bad path {
    fill: rgb(255, 0, 0);
}
.section.review .grid .column .approve-list .item .item-content, .section.review .grid .column .approve-list .subitem .item-content {
    flex-direction: column;
    width: 100%;
    padding: 8px 0 10px 20px;
    color: rgb(132, 132, 132);
}
.section.review .grid .column .approve-list .item .item-content .track-row, .section.review .grid .column .approve-list .subitem .item-content .track-row {
    display: flex;
    padding: 3px 0;
    border-bottom: 1px solid rgb(235, 235, 235);
    font-size: 14px;
    align-items: center;
}
.section.review .grid .column .approve-list .item .item-content .track-row em, .section.review .grid .column .approve-list .subitem .item-content .track-row em {
    font-style: normal;
}
.section.review .grid .column .approve-list .item .item-content .track-row span i, .section.review .grid .column .approve-list .subitem .item-content .track-row span i {
    color: rgb(132, 132, 132);
    font-style: normal;
}
.section.review .grid .column .approve-list .item .item-content .track-row span b, .section.review .grid .column .approve-list .subitem .item-content .track-row span b {
    font-weight: 400;
    color: black;
}
.section.review .grid .column .approve-list .item .item-content.compilation .track-row, .section.review .grid .column .approve-list .subitem .item-content.compilation .track-row {
    padding: 6px 0;
}
.section.review .grid .column .approve-list .item .item-content.compilation .track-row em, .section.review .grid .column .approve-list .subitem .item-content.compilation .track-row em {
    color: black;
}
.section.review .grid .column .approve-list .item.active, .section.review .grid .column .approve-list .subitem.active {
    background-color: rgb(97, 92, 240);
    border-radius: 24px;
    color: white;
}
.section.review .grid .column .approve-list .item.active svg path, .section.review .grid .column .approve-list .subitem.active svg path {
    fill: white;
}
.section.review .grid .column .approve-list .item.active span i, .section.review .grid .column .approve-list .subitem.active span i {
    color: white;
}
.section.review .grid .column .approve-list .item.disabled, .section.review .grid .column .approve-list .subitem.disabled {
    color: rgba(0, 0, 0, 0.5);
}
.section.review .grid .column .approve-list .item.disabled a, .section.review .grid .column .approve-list .subitem.disabled a {
    display: none;
}
.section.review .grid .column .approve-list .item.opened, .section.review .grid .column .approve-list .subitem.opened {
    flex-wrap: wrap;
}
.section.review .grid .column .approve-list .item.opened .toggle, .section.review .grid .column .approve-list .subitem.opened .toggle {
    transform: rotate(180deg);
}
.section.review .grid .column .approve-list .item.opened .item-content, .section.review .grid .column .approve-list .subitem.opened .item-content {
    display: flex;
}
.section.review .grid .column .approve-list .subitem {
    padding: 0 16px;
}
.section.review .grid .column .approve-list.albums .item {
    padding: 8px 16px 8px 40px;
    border-radius: 30px;
}
.section.review .grid .column .approve-list.albums .subitem {
    padding: 0 16px 0 40px;
}
.section.review .grid .column .approve-list.hidden .item-content {
    display: none;
}
.section.review .message {
    position: relative;
    height: 100%;
    background-image: url(./stubs/ant.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right top;
}
.section.review .message p {
    font-size: 36px;
    font-weight: 600;
    padding-left: 60px;
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    max-width: 450px;
}
.section.review .message p span {
    color: rgb(97, 92, 240);
}
.section.status {
    padding: 180px 0 var(--default-gap) 0;
    height: 100%;
}
.section.status .grid {
    height: 100%;
    display: flex;
    column-gap: 48px;
    padding: 0 var(--default-gap);
}
.section.status .grid .sep {
    width: 1px;
    flex-shrink: 0;
    flex-grow: 0;
    background-color: rgb(235, 235, 235);
}
.section.status .grid .column {
    height: 100%;
    width: calc(33.33% - 64.6666666667px);
    flex-shrink: 0;
    overflow-y: scroll;
    padding: 0;
    position: relative;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}
.section.status .grid .column::-webkit-scrollbar {
    display: none;
}
.section.status .grid .column h2 {
    font-size: 24px;
    font-weight: 500;
    color: rgb(47, 39, 92);
    margin: 0 0 var(--default-gap);
}
.section.status .grid .column h3 {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 var(--default-gap);
}
.section.status .grid .column .circular-progress {
    margin: 0 0 var(--default-gap);
}
.section.status .grid .column dl {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    row-gap: 2px;
}
.section.status .grid .column dl dt {
    width: 100%;
    font-weight: 400;
    display: flex;
    column-gap: 10px;
    align-items: center;
}
.section.status .grid .column dl dt .bar {
    flex-grow: 1;
    display: block;
    width: 100%;
    background-color: rgba(235, 235, 235, 0.9);
    height: 20px;
}
.section.status .grid .column dl dt .bar span {
    display: block;
    height: 20px;
}
.section.status .grid .column dl dt .bar.blue span {
    background: linear-gradient(270deg, rgba(91, 87, 189, 0.9) 0%, rgba(46, 38, 90, 0.9) 100%);
}
.section.status .grid .column dl dt .bar.orange span {
    background: linear-gradient(270deg, rgba(255, 199, 0, 0.9) 0%, rgba(200, 84, 0, 0.9) 100%);
}
.section.status .grid .column dl dt i {
    width: 30px;
    flex-shrink: 0;
    font-style: normal;
}
.section.status .grid .column dl dd {
    width: 100%;
    font-weight: 400;
    padding: 0;
    font-size: 15px;
}
.section.status .grid .column ul {
    margin: var(--default-gap) 0 0;
    padding: 0;
    list-style: none;
    width: 100%;
    border-top: 1px solid rgb(235, 235, 235);
}
.section.status .grid .column ul li {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 8px 0;
    border-bottom: 1px solid rgb(235, 235, 235);
    column-gap: 16px;
}
.section.status .grid .column ul li i {
    width: 30px;
    flex-shrink: 0;
    font-style: normal;
}
.section.status .grid .column ul li span {
    flex-grow: 1;
}
.section.status .grid .column ul li span i {
    width: auto;
    display: block;
    font-size: 12px;
    color: rgb(132, 132, 132);
}
.section.status .grid .column ul li.done svg path {
    fill: rgb(97, 92, 240);
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 40px 50px;
    background-color: white;
    z-index: 5;
    font-size: 14px;
    border-radius: 16px;
}
.modal .header {
    font-size: 24px;
    font-weight: 600;
}
.modal.question {
    width: 480px;
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}
.modal.question p {
    margin: 0;
}
.modal.question .buttons {
    padding-top: 24px;
    font-size: 16px;
    display: flex;
    column-gap: 32px;
}
.modal.question .buttons .active {
    color: rgb(97, 92, 240);
    border-color: rgb(97, 92, 240);
}
.modal.candidate, .modal.messages {
    width: 70%;
    min-width: 750px;
    max-width: 950px;
    height: 80%;
    position: fixed;
    padding-bottom: 0;
}
.modal.candidate .header, .modal.messages .header {
    font-size: 36px;
    font-weight: 600;
}
.modal.candidate .subheader, .modal.messages .subheader {
    font-size: 16px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.6);
}
.modal.candidate .favorite, .modal.messages .favorite {
    position: absolute;
    top: 32px;
    right: 32px;
}
.modal.candidate .close, .modal.messages .close {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 18px;
    font-weight: 600;
    border: none;
    display: flex;
    align-items: center;
    column-gap: 8px;
}
.modal.candidate .modal-wrapper, .modal.messages .modal-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-height: 100%;
    position: relative;
}
.modal.candidate .modal-wrapper .resolve, .modal.messages .modal-wrapper .resolve {
    position: absolute;
    right: 0;
    top: 20px;
    font-size: 16px;
    display: flex;
    column-gap: 8px;
    align-items: center;
    border: none;
    color: rgb(132, 132, 132);
}
.modal.candidate .modal-wrapper .resolve svg path, .modal.messages .modal-wrapper .resolve svg path {
    fill: #848484;
}
.modal.candidate .modal-wrapper .resolve.active, .modal.messages .modal-wrapper .resolve.active {
    color: rgb(97, 92, 240);
}
.modal.candidate .modal-wrapper .resolve.active svg path, .modal.messages .modal-wrapper .resolve.active svg path {
    fill: rgb(97, 92, 240);
}
.modal.candidate .icon, .modal.messages .icon {
    display: flex;
    column-gap: 4px;
    align-items: start;
}
.modal.candidate .icon svg, .modal.messages .icon svg {
    flex-shrink: 0;
    top: 2px;
    position: relative;
    min-width: 20px;
}
.modal.candidate .icon i, .modal.messages .icon i {
    font-style: normal;
}
.modal.candidate .grid, .modal.messages .grid {
    display: flex;
    column-gap: 50px;
    margin-top: 20px;
    flex-grow: 1;
    height: 100%;
    overflow-y: scroll;
}
.modal.candidate .grid .poster, .modal.messages .grid .poster {
    width: 300px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.modal.candidate .grid .poster img, .modal.messages .grid .poster img {
    width: 100%;
    border-radius: 16px;
}
.modal.candidate .grid .poster .watch, .modal.messages .grid .poster .watch {
    display: flex;
    justify-content: center;
    column-gap: 10px;
    border: none;
    align-items: center;
}
.modal.candidate .grid .poster .watch span, .modal.messages .grid .poster .watch span {
    border-bottom: 1.5px solid black;
}
.modal.candidate .grid .content, .modal.messages .grid .content {
    height: 100%;
    overflow-y: scroll;
    padding-bottom: 24px;
    flex-grow: 1;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
}
.modal.candidate .grid .content::-webkit-scrollbar, .modal.messages .grid .content::-webkit-scrollbar {
    display: none;
}
.modal.candidate .grid .content .text-info, .modal.messages .grid .content .text-info {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}
.modal.candidate .grid .content .text-info .row, .modal.messages .grid .content .text-info .row {
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.modal.candidate .grid .content .text-info .row.simple, .modal.messages .grid .content .text-info .row.simple {
    display: block;
}
.modal.candidate .grid .content .album-info, .modal.messages .grid .content .album-info {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}
.modal.candidate .grid .content .album-info .row, .modal.messages .grid .content .album-info .row {
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.modal.candidate .grid .content .album-info .row.simple, .modal.messages .grid .content .album-info .row.simple {
    display: block;
}
.modal.candidate .grid .content .album-info .tracks, .modal.messages .grid .content .album-info .tracks {
    width: 100%;
}
.modal.candidate .grid .content .album-info .tracks .track, .modal.messages .grid .content .album-info .tracks .track {
    display: flex;
    border-top: 1px solid rgb(235, 235, 235);
    padding: 8px 0;
    align-items: center;
}
.modal.candidate .grid .content .album-info .tracks .track span, .modal.candidate .grid .content .album-info .tracks .track a, .modal.messages .grid .content .album-info .tracks .track span, .modal.messages .grid .content .album-info .tracks .track a {
    padding: 0 4px;
}
.modal.candidate .grid .content .album-info .tracks .track span:nth-child(1), .modal.candidate .grid .content .album-info .tracks .track a:nth-child(1), .modal.messages .grid .content .album-info .tracks .track span:nth-child(1), .modal.messages .grid .content .album-info .tracks .track a:nth-child(1) {
    width: 25px;
    padding: 0;
}
.modal.candidate .grid .content .album-info .tracks .track span:nth-child(2), .modal.candidate .grid .content .album-info .tracks .track a:nth-child(2), .modal.messages .grid .content .album-info .tracks .track span:nth-child(2), .modal.messages .grid .content .album-info .tracks .track a:nth-child(2) {
    flex-grow: 1;
}
.modal.candidate .grid .content .album-info .tracks .track span i, .modal.candidate .grid .content .album-info .tracks .track a i, .modal.messages .grid .content .album-info .tracks .track span i, .modal.messages .grid .content .album-info .tracks .track a i {
    display: block;
    font-style: normal;
    font-size: 12px;
    color: rgb(132, 132, 132);
}
.modal.candidate .grid .content .album-info .tracks .track span b, .modal.candidate .grid .content .album-info .tracks .track a b, .modal.messages .grid .content .album-info .tracks .track span b, .modal.messages .grid .content .album-info .tracks .track a b {
    display: block;
    font-weight: 400;
}
.modal.candidate .grid .content .album-info .tracks .track a, .modal.messages .grid .content .album-info .tracks .track a {
    border: none;
}
.modal.candidate .grid .content .album-info .tracks .track a.active .good path, .modal.messages .grid .content .album-info .tracks .track a.active .good path {
    fill: rgb(12, 157, 52);
}
.modal.candidate .grid .content .album-info .tracks .track a.active .passable path, .modal.messages .grid .content .album-info .tracks .track a.active .passable path {
    fill: rgb(255, 199, 0);
}
.modal.candidate .grid .content .album-info .tracks .track a.active .bad path, .modal.messages .grid .content .album-info .tracks .track a.active .bad path {
    fill: rgb(255, 0, 0);
}
.modal.candidate .grid .content .album-info .tracks .track:last-child, .modal.messages .grid .content .album-info .tracks .track:last-child {
    border-bottom: 1px solid rgb(235, 235, 235);
}
.modal.candidate .center, .modal.messages .center {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 15px;
    overflow-y: scroll;
    text-align: center;
}
.modal.candidate .center svg, .modal.messages .center svg {
    flex-shrink: 0;
}
.modal.candidate .center p, .modal.messages .center p {
    margin: 0 auto;
    padding: 20px 0 0;
    font-size: 18px;
    font-weight: 500;
    width: 260px;
    text-align: center;
}
.modal.candidate .center form, .modal.messages .center form {
    width: 400px;
    margin: 0 auto;
    border-top: 1px solid rgb(235, 235, 235);
    padding-top: 15px;
    display: flex;
    column-gap: calc(var(--default-gap) / 3 * 2);
}
.modal.candidate .center form .fields, .modal.messages .center form .fields {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    row-gap: calc(var(--default-gap) / 3 * 2);
}
.modal.candidate .center form .fields .row, .modal.messages .center form .fields .row {
    line-height: 1em;
}
.modal.candidate .center form .button, .modal.messages .center form .button {
    align-self: end;
    padding-right: calc(var(--default-gap) / 3);
}
.modal.candidate .center form .button button, .modal.messages .center form .button button {
    border: none;
    padding: 0;
    margin: 0;
    background-color: transparent;
}
.modal.candidate .center.without-scroll, .modal.messages .center.without-scroll {
    overflow-y: hidden;
}
.modal.candidate .messages-wrapper, .modal.messages .messages-wrapper {
    flex-grow: 1;
    display: flex;
    border-top: 1px solid rgb(235, 235, 235);
    padding-top: 20px;
    padding-bottom: 32px;
    margin-top: 20px;
    height: 100%;
    overflow-y: hidden;
}
.modal.candidate .messages-wrapper .themes-column, .modal.messages .messages-wrapper .themes-column {
    display: flex;
    flex-direction: column;
    width: 50%;
    border-right: 1px solid rgb(235, 235, 235);
    padding-right: calc(var(--default-gap));
    height: 100%;
}
.modal.candidate .messages-wrapper .themes-column .themes, .modal.messages .messages-wrapper .themes-column .themes {
    flex-grow: 1;
    overflow-y: scroll;
    height: 100%;
    display: flex;
    flex-direction: column;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
}
.modal.candidate .messages-wrapper .themes-column .themes::-webkit-scrollbar, .modal.messages .messages-wrapper .themes-column .themes::-webkit-scrollbar {
    display: none;
}
.modal.candidate .messages-wrapper .themes-column .themes .item, .modal.messages .messages-wrapper .themes-column .themes .item {
    font-size: 15px;
    padding: 8px 12px;
    position: relative;
    flex-shrink: 0;
    border-radius: var(--default-border-radius);
}
.modal.candidate .messages-wrapper .themes-column .themes .item span, .modal.messages .messages-wrapper .themes-column .themes .item span {
    font-size: 12px;
    display: block;
    margin-top: calc(var(--default-gap) / 6);
}
.modal.candidate .messages-wrapper .themes-column .themes .item a, .modal.messages .messages-wrapper .themes-column .themes .item a {
    font-weight: 500;
    border: none;
}
.modal.candidate .messages-wrapper .themes-column .themes .item.with-icon, .modal.messages .messages-wrapper .themes-column .themes .item.with-icon {
    padding-right: 44px;
}
.modal.candidate .messages-wrapper .themes-column .themes .item.with-icon svg, .modal.messages .messages-wrapper .themes-column .themes .item.with-icon svg {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
}
.modal.candidate .messages-wrapper .themes-column .themes .item.active, .modal.messages .messages-wrapper .themes-column .themes .item.active {
    background-color: rgb(97, 92, 240);
    color: white;
}
.modal.candidate .messages-wrapper .themes-column .themes .item .done path, .modal.messages .messages-wrapper .themes-column .themes .item .done path {
    fill: rgb(0, 172, 59);
}
.modal.candidate .messages-wrapper .themes-column .input-wrapper, .modal.messages .messages-wrapper .themes-column .input-wrapper {
    display: flex;
    column-gap: calc(var(--default-gap) / 3 * 2);
    align-items: center;
    padding-top: calc(var(--default-gap) / 2);
    border-top: 1px solid rgb(235, 235, 235);
}
.modal.candidate .messages-wrapper .themes-column .input-wrapper button, .modal.messages .messages-wrapper .themes-column .input-wrapper button {
    border: none;
    background-color: transparent;
    padding: 0 calc(var(--default-gap) / 3) 0 0;
    margin: 0;
}
.modal.candidate .messages-wrapper .messages-column, .modal.messages .messages-wrapper .messages-column {
    width: 50%;
    padding-left: calc(var(--default-gap));
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}
.modal.candidate .messages-wrapper .messages-column.center p, .modal.messages .messages-wrapper .messages-column.center p {
    color: rgba(0, 0, 0, 0.5);
}
.modal.candidate .messages-wrapper .messages-column .messages-items, .modal.messages .messages-wrapper .messages-column .messages-items {
    flex-grow: 1;
    overflow-y: scroll;
    height: 100%;
    display: flex;
    flex-direction: column;
    row-gap: var(--default-gap);
    padding-bottom: calc(var(--default-gap) / 3);
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    flex-direction: column-reverse;
    overflow-anchor: auto !important;
}
.modal.candidate .messages-wrapper .messages-column .messages-items::-webkit-scrollbar, .modal.messages .messages-wrapper .messages-column .messages-items::-webkit-scrollbar {
    display: none;
}
.modal.candidate .messages-wrapper .messages-column .messages-items.with-popup .item:last-child, .modal.messages .messages-wrapper .messages-column .messages-items.with-popup .item:last-child {
    padding-top: 70px;
}
.modal.candidate .messages-wrapper .messages-column .messages-items .item, .modal.messages .messages-wrapper .messages-column .messages-items .item {
    display: flex;
    column-gap: calc(var(--default-gap) / 2);
    font-size: 14px;
    transform: translateZ(0);
}
.modal.candidate .messages-wrapper .messages-column .messages-items .item span, .modal.messages .messages-wrapper .messages-column .messages-items .item span {
    width: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(270deg, #DC6CE5 0%, #9A5BEB 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    font-size: 14px;
    font-weight: 600;
}
.modal.candidate .messages-wrapper .messages-column .messages-items .item span.somebody, .modal.messages .messages-wrapper .messages-column .messages-items .item span.somebody {
    background: linear-gradient(270deg, #6CE5E5 0%, #D6EB5B 100%);
}
.modal.candidate .messages-wrapper .messages-column .messages-items .item p, .modal.messages .messages-wrapper .messages-column .messages-items .item p {
    margin: 0;
}
.modal.candidate .messages-wrapper .messages-column .messages-items .item p i, .modal.messages .messages-wrapper .messages-column .messages-items .item p i {
    font-style: normal;
    display: block;
    font-size: 12px;
    text-align: right;
    color: rgb(135, 135, 135);
    margin-top: calc(var(--default-gap) / 6);
}
.modal.candidate .messages-wrapper .messages-column .input-wrapper, .modal.messages .messages-wrapper .messages-column .input-wrapper {
    display: flex;
    column-gap: calc(var(--default-gap) / 3 * 2);
    align-items: center;
    padding-top: calc(var(--default-gap) / 2);
    border-top: 1px solid rgb(235, 235, 235);
}
.modal.candidate .messages-wrapper .messages-column .input-wrapper span, .modal.messages .messages-wrapper .messages-column .input-wrapper span {
    width: 33px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(270deg, #DC6CE5 0%, #9A5BEB 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 33px;
    font-size: 14px;
    font-weight: 600;
}
.modal.candidate .messages-wrapper .messages-column .input-wrapper button, .modal.messages .messages-wrapper .messages-column .input-wrapper button {
    border: none;
    background-color: transparent;
    padding: 0 calc(var(--default-gap) / 3) 0 0;
    margin: 0;
}
.modal.candidate .messages-wrapper .messages-column .resolve-popup, .modal.messages .messages-wrapper .messages-column .resolve-popup {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    padding-bottom: calc(var(--default-gap) / 3 * 2);
    padding-left: var(--default-gap);
    display: flex;
    column-gap: 10px;
    align-items: center;
}
.modal.candidate .messages-wrapper .messages-column .resolve-popup a, .modal.messages .messages-wrapper .messages-column .resolve-popup a {
    border: none;
}
.modal.candidate .messages-wrapper .messages-column .resolve-popup a.active svg path, .modal.messages .messages-wrapper .messages-column .resolve-popup a.active svg path {
    fill: rgb(0, 172, 59);
}
.modal.candidate .messages-wrapper .messages-column .resolve-popup span, .modal.messages .messages-wrapper .messages-column .resolve-popup span {
    width: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(270deg, #DC6CE5 0%, #9A5BEB 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    font-size: 14px;
    font-weight: 600;
}
.modal.candidate .messages-wrapper .messages-column .resolve-popup span.somebody, .modal.messages .messages-wrapper .messages-column .resolve-popup span.somebody {
    background: linear-gradient(270deg, #6CE5E5 0%, #D6EB5B 100%);
}
.modal.candidate .messages-wrapper .messages-column .resolve-popup p, .modal.messages .messages-wrapper .messages-column .resolve-popup p {
    margin: 0;
    text-align: center;
    font-size: 14px;
    flex-grow: 1;
}
.modal.candidate .messages-wrapper .messages-column .resolve-popup p i, .modal.messages .messages-wrapper .messages-column .resolve-popup p i {
    font-size: 12px;
    color: rgb(135, 135, 135);
    display: block;
    text-align: center;
    font-style: normal;
}
.modal.wide {
    width: 80%;
    min-width: 840px;
    max-width: 1050px;
}

form input {
    padding: 6px 12px;
    border-radius: var(--default-border-radius);
    border: none;
    background-color: rgb(235, 235, 235);
    width: 100%;
}
form textarea {
    padding: 6px 12px;
    border-radius: var(--default-border-radius);
    border: none;
    background-color: rgb(235, 235, 235);
    height: 86px;
    width: 100%;
    resize: none;
}

:root {
    --progress: 60;
}

.circular-progress {
    --size: 250px;
    --half-size: calc(var(--size) / 2);
    --stroke-width: 28px;
    --radius: calc((var(--size) - var(--stroke-width)) / 2);
    --circumference: calc(var(--radius) * pi * 2);
    --dash: calc((var(--progress) * var(--circumference)) / 100);
    max-width: 100%;
    width: 100%;
    max-height: 400px;
}

.circular-progress circle {
    cx: var(--half-size);
    cy: var(--half-size);
    r: var(--radius);
    stroke-width: var(--stroke-width);
    fill: none;
}

.circular-progress circle.bg {
    stroke: rgba(235, 235, 235, 0.9);
}

.circular-progress circle.fg {
    transform: rotate(-90deg);
    transform-origin: var(--half-size) var(--half-size);
    stroke-dasharray: var(--dash) calc(var(--circumference) - var(--dash));
    transition: stroke-dasharray 0.3s linear 0s;
}

.circular-progress text.circle-progress-text {
    text-anchor: middle;
    font-weight: 500;
    fill: #2F275C;
    dominant-baseline: middle;
    font-size: 56px;
    font-family: Inter;
}
.circular-progress text.circle-progress-text .circle-progress-text-value {
    transform: translate(-50%, -50%);
}
