@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/Inter-Light.ttf)
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    src: url(../fonts/Inter-Regular.ttf)
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 600;
    src: url(../fonts/Inter-Medium.ttf)
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 800;
    src: url(../fonts/Inter-Black.ttf)
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box
}
/*
* {
    scrollbar-width: thin;
    scrollbar-color: #cdcdcd #f0f0f0
}*/

*::-webkit-scrollbar {
    width: 8px
}

*::-webkit-scrollbar-track {
    background: #f0f0f0
}

*::-webkit-scrollbar-thumb {
    background-color: #cdcdcd
}

html,
body {
    min-height: 100%;
    width: 100%
}

html {
    font-family: Inter;
    font-size: 16px;
    min-height: 100vh;
    scroll-behavior: smooth
}

input,
textarea,
select {
    font-family: Inter;
    font-size: 1.5rem
}

body {
    line-height: 1.5;
    background-size: cover;
    padding-bottom: 30px
}

body.theme-progress {
    background: url(../assets/images/ui/fon-zapasnoy.png);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover
}

body.theme-gray {
    background: url(../assets/images/ui/gray-bg.png);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

.container {
    max-width: 1920px;
    margin-right: auto;
    margin-left: auto;
    --margin: 40px;
    width: calc(100vw - var(--margin)*2)
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2
}

.eom-header {
    padding-top: 3.125rem;
    padding-bottom: 1.25rem
}

.eom-header__title {
    text-align: center;
    color: #fff;
    font-size: 1.875rem;
    font-weight: 600
}

.eom-header__subtitle {
    text-align: center;
    color: #fff;
    font-weight: normal;
    font-size: 1.5rem;
    margin-top: 5px
}

.dd .done-caption,
.dd .im-block,
.dd .done-img,
.td-text-1 .div-block {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.eom-card {
    background: #fff;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 2px 6px 8px 0px rgba(34, 60, 80, .2)
}

.eom-card__header {
    padding: .75rem 1.25rem
}

.eom-card__header h5 {
    text-align: center;
    font-size: 1.5rem
}

.eom-card__body {
    padding: 1.25rem
}

.eom-btn {
    outline: none;
    display: inline-block;
    font-size: 1.3rem;
    font-family: Inter, sans-serif;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    line-height: 1.5;
    border-radius: .375rem;
    cursor: pointer;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

.eom-btn__primary {
    background: linear-gradient(to right, #0c6ed6, #60B9A6);
    color: #fff
}

.eom-btn__primary:disabled {
    background-color: #c5eca9;
    opacity: 1
}

.eom-btn__primary:hover {
    background-color: #7caa5b
}

.eom-btn__outline-primary {
    border-color: #3F8CFF;
    color: #3F8CFF;
    background-color: #fff
}

.eom-btn__outline-primary:hover {
    border-color: #60B9A6;
    color: #60B9A6
}

.eom-btn__outline-info {
    border-color: #fff;
    color: #fff;
    background-color: transparent
}

.eom-btn__outline-info:hover {
    background-color: #60B9A6
}

.eom-btn__default {
    color: #fff;
    background-color: #c4c4c4
}

.eom-btn__secondary {
    color: #fff;
    background-color: #f6ba42
}

.eom-btn__secondary:hover {
    background-color: #ffbd42
}

.eom-btn:disabled {
    cursor: default;
    pointer-events: none;
    opacity: .5
}

.eom-check {
    display: block;
    font-size: 2rem;
    line-height: 2rem;
    position: relative;
    cursor: pointer;
    padding-bottom: 1rem
}

.eom-check input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0
}

.eom-check__checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 26px;
    width: 26px;
    background-color: #fff;
    border: 2px solid #ccc;
    border-radius: 4px
}

.eom-check__checkmark::after {
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid #ccc;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.eom-check:hover input:not(:checked) ~ .eom-check__checkmark {
    background-color: #f9f9f9
}

input:checked ~ .eom-check__checkmark:after {
    display: block
}

.eom-check__content {
    margin-left: 40px;
    display: block
}

input[type=radio] ~ .eom-check__checkmark {
    border-radius: 100%
}

input[type=radio] ~ .eom-check__checkmark::after {
    content: "";
    position: absolute;
    left: 3px;
    top: 3px;
    width: 16px;
    height: 16px;
    border: 0;
    border-radius: 10px;
    background-color: #ccc
}

.eom-select {
    border: 1px solid #ced4da;
    padding: .375rem 2.25rem .375rem .75rem;
    background: #fff;
    border-radius: .25rem
}

.eom-select:focus {
    outline: none
}

.eom-input {
    display: block;
    line-height: 1.5;
    font-size: 1rem;
    color: #495057;
    padding: .375rem .75rem;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: .25rem
}

.eom-input:focus {
    outline: none
}

span.arrow-right,
span.arrow-left {
    height: .875rem;
    width: 3.5rem;
    content: "";
    display: inline-block;
    background: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 id=%27layer1%27 width=%2730.502%27 height=%277.374%27 data-name=%27layer1%27 version=%271.1%27%3E%3Cdefs id=%27defs4%27/%3E%3Cpath id=%27path10%27 fill=%27%23fff%27 d=%27M0 4.187h30v-1H0Zm30.35-.15a.48.48 0 0 0 0-.7L27.17.147a.502.502 0 0 0-.71.71l2.83 2.83-2.83 2.83a.502.502 0 0 0 .71.71z%27/%3E%3C/svg%3E") no-repeat;
    background-size: 3.5rem .875rem
}

span.arrow-right {
    transform: rotateZ(-180deg)
}

body #root {
    height: 100%
}

body #root .oem-btn {
    height: 2rem;
    margin: .1rem;
    background-color: #fff;
    border-radius: .7rem;
    border: 2px solid gray;
    cursor: pointer
}

body #root .oem-btn-primary {
    color: #7952af;
    border-color: #7952af
}

body #root .oem-btn-primary.active {
    background-color: #7952af;
    color: #fff
}

@media screen and (max-width: 1400px) {
    html {
        font-size: 16px
    }
}

@media screen and (max-width: 1200px) {
    html {
        font-size: 14px
    }
}

@media screen and (max-width: 992px) {
    html {
        font-size: 12px
    }
}

@media screen and (max-width: 768px) {
    html {
        font-size: 10px
    }
}

body.type-crossword.glightbox-open .gprev.gbtn,
body.type-crossword.glightbox-open .gnext.gbtn {
    display: none
}

html.glightbox-open,
body.glightbox-open {
    overflow: inherit;
    height: inherit
}

#glightbox-body .goverlay {
    background: rgba(0, 0, 0, .6)
}

.glightbox-clean .gslide-media {
    box-shadow: none !important
}

a.glightbox {
    position: relative;
    box-shadow: 9px 9px 20px rgba(0, 0, 0, .2);
    display: inline-block;
    border-radius: 20px;
    overflow: hidden;
    border-top-right-radius: 0;
    width: 300px;
    height: 200px;
    margin: 20px auto;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 32px;
    border-bottom-right-radius: 0;
    box-shadow: 15px 15px 40px rgba(0, 0, 0, .2)
}

a.glightbox img {
    height: 200px;
    width: auto
}

a.glightbox:after {
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    background: url(../assets/images/ui/zoom.svg);
    background-size: cover;
    opacity: .8;
    position: absolute;
    bottom: 10px;
    left: 10px
}

.crossword-wrapper .eom-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    grid-template-areas: "task crossword""clues crossword";
    grid-gap: 15px
}

.crossword-wrapper .eom-content .crossword {
    display: contents !important;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%
}

.crossword-wrapper .eom-content .crossword .grid {
    grid-area: crossword;
    max-width: 100% !important;
    display: flex;
    justify-content: center;
    align-items: flex-start
}

.crossword-wrapper .eom-content .crossword .grid > div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    background-color: #fff;
    border-radius: 30px;
    border-color: #0c6ed6; /* Цвет границы */
    border-style: solid; /* Стиль границы */
    border-width: 20px;
    box-shadow: 4px 4px 15px 4px rgba(34, 60, 80, .2)
}

.crossword-wrapper .eom-content .crossword .grid svg {
    max-width: 100%;
    user-select: none
}

.crossword-wrapper .eom-content .crossword .clues {
    grid-column: task;
    padding: 0;
    margin-top: .5rem
}

.crossword-wrapper .eom-content .crossword .clues .direction {
    margin-bottom: 1.5rem
}

.crossword-wrapper .eom-content .crossword .clues .direction > div:nth-child(1) .num {
    background: #b1b1ac
}

.crossword-wrapper .eom-content .crossword .clues .direction > div:nth-child(2) .num {
    background: #668c4a
}

.crossword-wrapper .eom-content .crossword .clues .direction > div:nth-child(3) .num {
    background: #a6bf4a
}

.crossword-wrapper .eom-content .crossword .clues .direction > div:nth-child(4) .num {
    background: #25a7ce
}

.crossword-wrapper .eom-content .crossword .clues .direction > div:nth-child(5) .num {
    background: #f19a4f
}

.crossword-wrapper .eom-content .crossword .clues .direction > div:nth-child(6) .num {
    background: #f1b581
}

.crossword-wrapper .eom-content .crossword .clues .direction > div:nth-child(7) .num {
    background: #f2c53d
}

.crossword-wrapper .eom-content .crossword .clues .direction > div:nth-child(8) .num {
    background: #cc3535
}

.crossword-wrapper .eom-content .crossword .clues .direction > div:nth-child(9) .num {
    background: #b43c55
}

.crossword-wrapper .eom-content .crossword .clues .direction > div:nth-child(10) .num {
    background: #b1b1ac
}

.crossword-wrapper .eom-content .crossword .clues .direction > div:nth-child(11) .num {
    background: #668c4a
}

.crossword-wrapper .eom-content .crossword .clues .direction > div:nth-child(12) .num {
    background: #a6bf4a
}

.crossword-wrapper .eom-content .crossword .clues .direction > div:nth-child(13) .num {
    background: #25a7ce
}

.crossword-wrapper .eom-content .crossword .clues .direction > div:nth-child(14) .num {
    background: #f19a4f
}

.crossword-wrapper .eom-content .crossword .clues .direction > div:nth-child(15) .num {
    background: #f1b581
}

.crossword-wrapper .eom-content .crossword .clues .direction > div:nth-child(16) .num {
    background: #f2c53d
}

.crossword-wrapper .eom-content .crossword .clues .direction > div:nth-child(17) .num {
    background: #cc3535
}

.crossword-wrapper .eom-content .crossword .clues .direction > div:nth-child(18) .num {
    background: #b43c55
}

.crossword-wrapper .eom-content .crossword .clues .direction > div:nth-child(19) .num {
    background: #b1b1ac
}

.crossword-wrapper .eom-content .crossword .clues .direction > div:nth-child(20) .num {
    background: #b1b1ac
}

.crossword-wrapper .eom-content .crossword .clues .direction .header + div {
    margin-top: 1rem
}

.crossword-wrapper .eom-content .crossword .clues .clue {
    display: flex;
    justify-content: stretch;
    font-size: 1.3rem;
    cursor: pointer;
    margin-top: 0;
    margin-bottom: .3rem;
    color: #363636;
    border-radius: 1.25rem;
    line-height: 1.7rem
}

.crossword-wrapper .eom-content .crossword .clues .clue.active {
    background-color: #b6b6ae2e
}

.crossword-wrapper .eom-content .crossword .clues .clue .num {
    flex: 2.5rem 0 0;
    color: #fff;
    content: "";
    width: 2.5rem;
    height: 2.5rem;
    position: relative;
    top: 0px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 0;
    border-radius: 0 0 2rem 0;
    font-size: 1.375rem;
    font-weight: 600 !important;
    margin-right: .94rem
}

.crossword-wrapper .eom-content .crossword .clues .clue .num ~ p {
    display: inline;
    padding-top: .25rem;
    padding-bottom: .3125rem;
    flex-basis: 100%;
    padding-right: 10px
}

.crossword-wrapper .eom-content .crossword .cell {
    stroke: #585b66;
    stroke-width: .3
}

.crossword-wrapper .eom-content .crossword .cell.cell-highlight {
    fill: #fff3c4;
    stroke: #afb2c3
}

.crossword-wrapper .eom-content .crossword .cell.guess-text-correct {
    fill: #3F8CFF
}

.crossword-wrapper .eom-content .crossword .cell.guess-text-incorrect {
    fill: #ff574e
}

.crossword-wrapper .eom-content .crossword .cell.guess-text-incorrect.cell-focus,
.crossword-wrapper .eom-content .crossword .cell.guess-text-correct.cell-focus {
    opacity: .8
}

.crossword-wrapper .eom-content .crossword .cell.guess-text-incorrect ~ text,
.crossword-wrapper .eom-content .crossword .cell.guess-text-correct ~ text {
    fill: #fff !important;
    font-weight: 600
}

.crossword-wrapper .eom-content .crossword .cell-focus {
    fill: #f5c771;
    stroke: #afb2c3
}

.crossword-wrapper .eom-content .crossword .cell-bg {
    fill: #afb2c3
}

.crossword-wrapper .eom-content .crossword .cell-num-bg {
    fill: #e7e7ef
}

.crossword-wrapper .eom-content .crossword .cell-num {
    text-anchor: middle;
    fill: #1a3b59 !important;
    font-weight: 600
}

.crossword-wrapper .eom-content .crossword input {
    outline: none
}

.crossword-wrapper .eom-content .clue {
    font-size: 1.5rem;
    font-weight: 500
}

.crossword-wrapper .eom-content .clue.correct {
    color: #58b533;
    font-weight: 600
}

.crossword-wrapper .eom-content .direction .header {
    color: #363636;
    font-size: 1.75rem;
    text-transform: uppercase;
    font-weight: 600;
    margin-left: 2.5rem;
    padding-right: 0rem;
    border-bottom: 1px solid #363636;
    display: inline
}

@keyframes moving {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(10px)
    }

    100% {
        transform: translateY(0)
    }
}

.crossword-wrapper .eom-content .crossword .hint {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    background-color: #60B9A6;
    font-size: 1.6rem;
    font-weight: 600;
    text-align: center;
    color: #fff;
    height: 50px;
    margin-bottom: 5px;
    margin-top: -30px;
    transition: all .3s;
    position: relative;
    bottom: -10px;
    margin-right: -50%;
    border-radius: 20px;
    transform: translate(-50%, 0)
}

.crossword-wrapper .eom-content .crossword .hint.with-image:before {
    content: "";
    display: block;
    width: 212px;
    height: 212px;
    background: url(../assets/images/ui/blue-cat-happy.png);
    background-size: cover;
    position: absolute;
    left: -85px;
    top: -150px;
    animation: moving 3s infinite
}

.crossword-wrapper .eom-content .crossword .hint.enter-done {
    opacity: 1;
    pointer-events: visible
}

.crossword-wrapper .eom-content .crossword .hint.modal.exit {
    opacity: 0
}

.crossword-wrapper .eom-content .completed {
    pointer-events: none
}

.crossword-wrapper:not(.checked) .crossword .cell.guess-text-correct,
.crossword-wrapper:not(.checked) .crossword .cell.guess-text-incorrect {
    fill: #fff
}

.crossword-wrapper:not(.checked) .crossword .cell.guess-text-correct ~ text,
.crossword-wrapper:not(.checked) .crossword .cell.guess-text-incorrect ~ text {
    font-weight: 400 !important;
    fill: #000 !important
}

.crossword-wrapper:not(.checked) .crossword .cell.guess-text-correct.cell-highlight,
.crossword-wrapper:not(.checked) .crossword .cell.guess-text-incorrect.cell-highlight {
    fill: #fff3c4 !important
}

.crossword-wrapper:not(.checked) .crossword .cell.guess-text-correct.cell-focus,
.crossword-wrapper:not(.checked) .crossword .cell.guess-text-incorrect.cell-focus {
    fill: #f5c771 !important
}

.crossword-wrapper:not(.checked) .crossword .clues .clue .num ~ p {
    font-weight: 500
}

.crossword-wrapper.checked .crossword svg {
    pointer-events: none
}

.crossword-wrapper.checked .crossword .cell:not(.guess-text-correct) {
    fill: #ff574e
}

.crossword-wrapper.checked .crossword .cell:not(.guess-text-correct) ~ text {
    fill: #fff !important;
    font-weight: 600
}

.crossword-wrapper .crossword {
    display: contents !important;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%
}

.crossword-wrapper .crossword [aria-label=crossword-input] {
    pointer-events: none
}

.crossword-wrapper .crossword .grid {
    grid-area: crossword;
    max-width: 100% !important;
    display: flex;
    justify-content: center;
    align-items: flex-start
}

.crossword-wrapper .crossword .grid > div {
    display: flex;
    justify-content: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 4px 4px 15px 4px rgba(34, 60, 80, .2)
}

.crossword-wrapper .crossword .grid svg {
    max-width: 100%;
    user-select: none
}

.crossword-wrapper .crossword .clues {
    grid-column: task;
    padding: 0;
    margin-top: .5rem
}

.crossword-wrapper .crossword .clues .direction {
    margin-bottom: 1.5rem
}

.crossword-wrapper .crossword .clues .direction > div:nth-child(1) .num {
    background: #b1b1ac
}

.crossword-wrapper .crossword .clues .direction > div:nth-child(2) .num {
    background: #668c4a
}

.crossword-wrapper .crossword .clues .direction > div:nth-child(3) .num {
    background: #a6bf4a
}

.crossword-wrapper .crossword .clues .direction > div:nth-child(4) .num {
    background: #25a7ce
}

.crossword-wrapper .crossword .clues .direction > div:nth-child(5) .num {
    background: #f19a4f
}

.crossword-wrapper .crossword .clues .direction > div:nth-child(6) .num {
    background: #f1b581
}

.crossword-wrapper .crossword .clues .direction > div:nth-child(7) .num {
    background: #f2c53d
}

.crossword-wrapper .crossword .clues .direction > div:nth-child(8) .num {
    background: #cc3535
}

.crossword-wrapper .crossword .clues .direction > div:nth-child(9) .num {
    background: #b43c55
}

.crossword-wrapper .crossword .clues .direction > div:nth-child(10) .num {
    background: #b1b1ac
}

.crossword-wrapper .crossword .clues .direction > div:nth-child(11) .num {
    background: #668c4a
}

.crossword-wrapper .crossword .clues .direction > div:nth-child(12) .num {
    background: #a6bf4a
}

.crossword-wrapper .crossword .clues .direction > div:nth-child(13) .num {
    background: #25a7ce
}

.crossword-wrapper .crossword .clues .direction > div:nth-child(14) .num {
    background: #f19a4f
}

.crossword-wrapper .crossword .clues .direction > div:nth-child(15) .num {
    background: #f1b581
}

.crossword-wrapper .crossword .clues .direction > div:nth-child(16) .num {
    background: #f2c53d
}

.crossword-wrapper .crossword .clues .direction > div:nth-child(17) .num {
    background: #cc3535
}

.crossword-wrapper .crossword .clues .direction > div:nth-child(18) .num {
    background: #b43c55
}

.crossword-wrapper .crossword .clues .direction > div:nth-child(19) .num {
    background: #b1b1ac
}

.crossword-wrapper .crossword .clues .direction > div:nth-child(20) .num {
    background: #b1b1ac
}

.crossword-wrapper .crossword .clues .direction .header + div {
    margin-top: 1rem
}

.crossword-wrapper .crossword .clues .clue {
    display: flex;
    justify-content: stretch;
    font-size: 2rem;
    cursor: pointer;
    margin-top: 0;
    margin-bottom: .3rem;
    color: #363636;
    border-radius: 1.25rem;
    line-height: 2.2rem
}

.crossword-wrapper .crossword .clues .clue.active {
    background-color: #b6b6ae2e
}

.crossword-wrapper .crossword .clues .clue .num {
    flex: 2.5rem 0 0;
    color: #fff;
    content: "";
    width: 2.5rem;
    height: 2.5rem;
    position: relative;
    top: 0px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 0;
    border-radius: 2.5rem 2.5rem 0px 2.5rem;
    font-size: 1.375rem;
    font-weight: bold;
    margin-right: .94rem
}

.crossword-wrapper .crossword .clues .clue .num ~ p {
    display: inline;
    padding-top: .25rem;
    padding-bottom: .3125rem;
    flex-basis: 100%;
    padding-right: 10px
}

.crossword-wrapper .crossword .cell {
    stroke: #585b66;
    stroke-width: .3
}

.crossword-wrapper .crossword .cell.cell-highlight {
    fill: #ebfbd6;
    stroke: #afb2c3
}

.crossword-wrapper .crossword .cell.guess-text-correct {
    fill: #58b533
}

.crossword-wrapper .crossword .cell.guess-text-incorrect {
    fill: #ff574e
}

.crossword-wrapper .crossword .cell.guess-text-incorrect.cell-focus,
.crossword-wrapper .crossword .cell.guess-text-correct.cell-focus {
    opacity: .8
}

.crossword-wrapper .crossword .cell.guess-text-incorrect ~ text,
.crossword-wrapper .crossword .cell.guess-text-correct ~ text {
    fill: #fff !important;
    font-weight: 600
}

.crossword-wrapper .crossword .cell-focus {
    fill: #f5c771;
    stroke: #afb2c3
}

.crossword-wrapper .crossword .cell-bg {
    fill: #afb2c3
}

.crossword-wrapper .crossword .cell-num-bg {
    fill: #e7e7ef
}

.crossword-wrapper .crossword .cell-num {
    text-anchor: middle;
    fill: #1a3b59 !important;
    font-weight: 600
}

.crossword-wrapper .crossword input {
    outline: none
}

.crossword-wrapper .clue {
    font-size: 1rem;
    font-weight: 500
}

.crossword-wrapper .clue.correct {
    color: #58b533;
    font-weight: 600
}

.crossword-wrapper .direction .header {
    color: #0c6ed6;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    margin-left: 2.5rem;
    padding-right: 3.5rem;
    border-bottom: 1px solid #0c6ed6;
    display: inline
}

.crossword-wrapper .crossword .crossword-controls {
    margin-top: -0.625rem
}

.crossword-wrapper .crossword .crossword-controls button {
    margin: 0 5px
}

body.type-crossword.theme-progress .crossword-wrapper .eom-content .direction .clue {
    color: #000000 !important

}

body.type-crossword.theme-progress .crossword-wrapper .eom-content .direction .header {
    border-bottom-color: #0c6ed6;
    color: #0c6ed6 !important
}

body.type-crossword.theme-progress .crossword-wrapper .eom-content .direction .clue .num {
        background: linear-gradient(to right, #60B9A6, #0c6ed6) !important
}

body.type-crossword.theme-progress .crossword-wrapper .eom-content .direction .clue.active {
    background: #ffffff21
}

body.type-crossword.theme-progress .crossword-wrapper .eom-content .direction .clue:nth-child(1) .num {
    color: #ffffff !important
}

body.type-crossword.theme-progress .crossword-wrapper .eom-content .direction .clue:nth-child(2) .num {
    color: #ffffff !important
}

body.type-crossword.theme-progress .crossword-wrapper .eom-content .direction .clue:nth-child(3) .num {
    color: #ffffff !important
}

body.type-crossword.theme-progress .crossword-wrapper .eom-content .direction .clue:nth-child(4) .num {
    color: #ffffff !important
}

body.type-crossword.theme-progress .crossword-wrapper .eom-content .direction .clue:nth-child(5) .num {
    color: #ffffff !important
}

body.type-crossword.theme-progress .crossword-wrapper .eom-content .direction .clue:nth-child(6) .num {
    color: #ffffff !important
}

body.type-crossword.theme-progress .crossword-wrapper .eom-content .direction .clue:nth-child(7) .num {
    color: #ffffff !important
}

body.type-crossword.theme-progress .crossword-wrapper .eom-content .direction .clue:nth-child(8) .num {
    color: #ffffff !important
}

body.type-crossword.theme-progress .crossword-wrapper .eom-content .direction .clue:nth-child(9) .num {
    color: #ffffff !important
}

body.type-crossword.theme-progress .crossword-wrapper .eom-content .direction .clue:nth-child(10) .num {
    color: #ffffff !important
}

body.type-crossword.theme-progress .crossword-wrapper .eom-content .direction .clue:nth-child(11) .num {
    color: #ffffff !important
}

body.type-crossword.theme-progress .crossword-wrapper .eom-content .direction .clue:nth-child(12) .num {
    color: #ffffff !important
}

body.type-crossword.theme-progress .crossword-wrapper .eom-content .direction .clue:nth-child(13) .num {
    color: #ffffff !important
}

body.type-crossword.theme-progress .crossword-wrapper .eom-content .direction .clue:nth-child(14) .num {
    color: #ffffff !important
}

body.type-crossword.theme-progress .crossword-wrapper .eom-content .direction .clue:nth-child(15) .num {
    color: #ffffff !important
}

body.type-crossword.theme-progress .crossword-wrapper .eom-content .direction .clue:nth-child(16) .num {
    color: #ffffff !important
}

body.type-crossword.theme-progress .crossword-wrapper .eom-content .direction .clue:nth-child(17) .num {
    color: #ffffff !important
}

body.type-crossword.theme-progress .crossword-wrapper .eom-content .direction .clue:nth-child(18) .num {
    color: #ffffff !important
}

body.type-crossword.theme-progress .crossword-wrapper .eom-content .direction .clue:nth-child(19) .num {
    color: #ffffff !important
}

body.type-crossword.theme-progress .crossword-wrapper .eom-content .direction .clue:nth-child(20) .num {
    color: #ffffff !important
}

@media only screen and (max-width: 992px) {
    .crossword-wrapper .eom-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        grid-template-areas: "task""crossword""clues"
    }
}

@media screen and (min-width: 992px) {
    .crossword-wrapper .crossword-inner {
        position: sticky !important;
        top: 20px
    }
}

.eom-wrapper {
    padding-top: 1.5rem
}

.eom-wrapper .eom-title {
    background: linear-gradient(to right, #0c6ed6, #60B9A6);
    color: #fff;
    text-transform: uppercase;
    display: inline-block;
    font-size: 2rem;
    text-align: left;
    padding-top: .8rem;
    padding-bottom: .7rem;
    margin-bottom: 1rem;
    padding-left: 3.125rem;
    padding-right: 3.1251rem;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    font-weight: 600
}

.eom-task {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
    color: #000000 !important;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.5rem;
    background: url(../assets/images/ui/task-icon-progress.png);
    background-repeat: no-repeat;
    background-size: 3rem;
    padding-top: .3rem;
    padding-left: 9rem;
    padding-bottom: 2rem
}
.eom-task>p:first-line {
               color: #0c6ed6 !important; /* Красный цвет текста */
               font-weight: 600; /* Жирное начертание */
               font-size: 1.7rem;
               line-height: 3rem;
              }

body.theme-progress .eom-task {
    color: #000000;
    background: url(../assets/images/ui/pers.png);
    background-repeat: no-repeat;
    background-size: 8rem
}
