

/* Start:/local/components/kit/encoded.task/templates/task_list/style.css?172392502513181*/
.hello_world {
    margin: 20px auto;
    width: 1024px;
}
.hello_world h1 {
    font-size: 40px;
}
.hello_world .hello_world__all > .block_center {
    text-align: center;
    display: flex;
    justify-content: center;
}
#output {
    text-align: center;
    height: 80px;
    font-size: 22px;
}
#output span {
    font-size: 18px;
}
.cursor::after {
    content:'';
    display:inline-block;
    margin-left:3px;
    background-color:white;
    animation-name:blink;
    animation-duration:0.5s;
    animation-iteration-count: infinite;
}
p.cursor::after {
    height:24px;
    width:13px;
}
span.cursor::after {
    height:13px;
    width:6px;
}

@keyframes blink {
    0% {
        opacity:1;
    }
    49% {
        opacity:1;
    }
    50% {
        opacity:0;
    }
    100% {
        opacity:0;
    }
}

/* Категории */
.hello_world h2 {
    margin-bottom: 40px;
    font-size: 40px;
    text-align: center;
}
.hello_world .hello_world__all > p {
    margin-bottom: 40px;
    font-size: 22px;
    text-align: center;
}
.category {
    display: flex;
    flex-wrap: wrap;
}
.category__item img {
    width: 100%;
}
.caption span {
    margin: auto;
    font-size: 24px;
    font-weight: 300;
    animation: black 5s 750ms linear infinite;
}
.current_info__section {
    animation: black 5s 750ms linear infinite;
}
.light_theme .caption span {
    animation: light 5s 750ms linear infinite;
}
.light_theme .current_info__section {
    animation: light 5s 750ms linear infinite;
}
.category__item {
    width: 240px;
    padding: 12px 12px 4px 12px;
    border: 1px solid rgba(255, 255, 255, .2);
    margin: 0 10px 10px 0;
    cursor: pointer;
}
.category__item:nth-child(4n) {
    margin-right: 0;
}
.category__item:hover, .category__item:focus {
    border-color: #93f8bb;
}
.category__item:hover > .category__name {
    color: #93f8bb;
}
.category__item .category__name {
    font-family: 'SourceCodePro-Medium', monospace;
    font-size: calc(13px + 2 * (100vw - 1199px) / 721);
    line-height: normal;
    margin-bottom: 2px;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
}
/* END Категории */
/* Задания */
.current_info {
    display: flex;
    font-size: 21px;
    justify-content: space-between;
    height: 60px;
    align-items: center;
}

.current_info__progress {
    width: 400px;
}
progress:not(value) {

}

progress[value] {
    appearance: none;
    border: none;

    width: 100%; height: 20px;

    background-color: whiteSmoke;
    border-radius: 3px;
    box-shadow: 0 2px 3px rgba(0,0,0,.5) inset;

    color: royalblue;

    position: relative;
    margin: 0 0 12px;
}

progress[value]::-webkit-progress-bar {
    background-color: whiteSmoke;
    border-radius: 3px;
    box-shadow: 0 2px 3px rgba(0,0,0,.5) inset;
}

progress[value]::-webkit-progress-value {
    position: relative;

    background-size: 35px 20px, 100% 100%, 100% 100%;
    border-radius:3px;

    animation: animate-stripes 5s linear infinite;
}

@keyframes animate-stripes { 100% { background-position: -100px 0; } }

progress[value]::-webkit-progress-value:after {
    content: '';
    position: absolute;

    width:5px; height:5px;
    top:7px; right:7px;

    background-color: white;
    border-radius: 100%;
}

progress[value]::-moz-progress-bar {
    background-image:
        -moz-linear-gradient( 135deg,
        transparent,
        transparent 33%,
        rgba(0,0,0,.1) 33%,
        rgba(0,0,0,.1) 66%,
        transparent 66%),
        -moz-linear-gradient( top,
        rgba(255, 255, 255, .25),
        rgba(0,0,0,.2)),
        -moz-linear-gradient( left, #6aea20, #5d92b8);

    background-size: 35px 20px, 100% 100%, 100% 100%;
    border-radius:3px;
}

.progress-bar {
    background-color: whiteSmoke;
    border-radius: 3px;
    box-shadow: 0 2px 3px rgba(0,0,0,.5) inset;
    width: 100%; height:20px;
}

.progress-bar span {
    background-color: royalblue;
    border-radius: 3px;
    display: block;
    text-indent: -9999px;
}

p[data-value] {
    position: relative;
    font-size: 14px;
    white-space: nowrap;
}

p[data-value]:after {
    content: attr(data-value);
    position: absolute; right:0;
    bottom: -40px;
}

.count_task::-webkit-progress-value {
    background-image:
        -webkit-linear-gradient( 135deg,
        transparent,
        transparent 33%,
        rgba(0,0,0,.1) 33%,
        rgba(0,0,0,.1) 66%,
        transparent 66%),
        -webkit-linear-gradient( top,
        rgba(255, 255, 255, .25),
        rgba(0,0,0,.2)),
        -webkit-linear-gradient( left, #6aea20, #5d92b8);
}
.count_task::-moz-progress-bar {
    background-image:
        -moz-linear-gradient( 135deg,
        transparent,
        transparent 33%,
        rgba(0,0,0,.1) 33%,
        rgba(0,0,0,.1) 66%,
        transparent 66%),
        -moz-linear-gradient( top,
        rgba(255, 255, 255, .25),
        rgba(0,0,0,.2)),
        -moz-linear-gradient( left, #6aea20, #5d92b8);
}

.hello_world h3 {
    font-size: 26px;
    margin-top: 60px;
    font-family: 'SourceCodePro-Medium', monospace;
}
h3.task__name::before {
    content: "?";
    border-radius: 26px;
    padding: 3px 10px;
    font-size: 20px;
    margin-right: 10px;
    color: #020203;
    background: rgba(256,256,256,0.4);
    font-weight: bold;
}
.inline-label.form__checkbox {
    display: table;
    min-width: 330px;
}
.form__checkbox.winner {
    margin-top: 0;
}
.winner .form__checkbox_indicator {
    border: 3px #00ec5d solid;
}
.winner .form__checkbox_text {
    color: #00ec5d;
}
.incorrectly .form__checkbox_indicator {
    border: 3px #ec0000 solid;
}
.incorrectly .form__checkbox_text {
    color: #ec0000;
}
.answer_text, .need_answer {
    margin: 40px 20px;
    border-top: 1px solid #bac1bf;
    border-bottom: 1px solid #bac1bf;
    padding: 30px 0;
}
.need_answer b {
    color: #00ec5d;
}
.answer_text img {
    background: rgba(255,255,255,0.7);
}
.panel_btn {
    display: flex;
    justify-content: space-around;
}
.panel_btn .btn {
    font-size: calc(12px + 14 * (100vw - 1600px) / 950);
}
/* END Задания */
/* WIN */
.winner {
    font-size: 24px;
    margin-top: 30px;
}
.block_link {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    text-align: center;
}
.block_link .btn {
    width: 390px;
    font-size: 14px;
    height: calc(36px + 26 * (100vw - 1600px) / 950);
    margin: 10px auto 30px;
}
/* END WIN */

/* BLOCKQUOTE */
.close_chat {
    font-size: 20px;
    margin-top: 50px;
}
.light_theme .close_chat blockquote {
    border-color: #363636;
    box-shadow: 15px 15px 0 0 #363636;
}
.light_theme .close_chat blockquote cite {
    color: #363636;
}
.light_theme .close_chat a {
    color: #363636;
    border: 3px solid #363636;
}
.light_theme .close_chat a:hover {
    color: #363636;
    background: #3bdd8f;
}
.light_theme .close_chat a:hover span {
    color: #363636;
}
.close_chat blockquote {
    border: 2px solid #82DBA8;
    font-size: 16px;
    font-style: italic;
    margin: 16px 31px 31px 16px;
    padding: 16px 24px;
    position: relative;
    box-shadow: 15px 15px 0 0 #82DBA8;
}
.close_chat blockquote cite {
    color: #82DBA8;
    font-size: 15px;
    padding-top: 10px;
    display: block;
    text-align: right;
}
.close_chat a {
    color: #82DBA8;
    border-radius: 25px;
    border: 3px solid #82DBA8;
}
.close_chat a:hover {
    color: #fff;
    background: #82DBA8;
}
.close_chat a span {
    opacity: 0;
    padding-left: 5px;
    padding-right: 5px;
    font-weight: bold;
    transition: 0.4s ease-in-out;
}
.close_chat a:hover span {
    opacity: 1;
    padding-left: 10px;
    padding-right: 10px;
    color: #fff;
}
/* END BLOCKQUOTE*/

@media (max-width: 1199px) {
    .hello_world {
        margin-top: 30px;
        width: auto;
    }
    .block_link .btn {
        height: 40px;
    }
    .btn {
        font-size: 22px;
        height: 42px;
    }
}
@media (max-width: 886px) {
    .current_info {
        flex-direction: column;
    }
    .current_info__progress {
        margin-top: 20px;
    }
}
@media (max-width: 640px) {
    html body, body .form__checkbox_text {
        font-size: 16px;
    }
    .cr {
        font-size: 12px;
    }
    .current_info {
        height: 80px;
    }
    .answer_text img {
        width: 100%;
        height: 100%;
    }
    .panel_btn .btn {
        white-space: break-spaces;
    }
    .hello_world h2 {
        font-size: 26px;
        text-align: center;
    }
    .winner {
        font-size: 20px;
    }
    .hello_world h3 {
        font-size: 20px;
    }
    .btn {
        font-size: 20px;
        height: 40px;
    }
    .category__item {
        width: 49%;
        padding: 5px 5px 4px 5px;
        border: 1px solid rgba(255, 255, 255, .2);
        margin: 0 5px 5px 0;
        cursor: pointer;
    }
    .category__item:nth-child(2n) {
        margin-right: 0;
    }
    .category__item .category__name {
        font-size: 12px;
    }
    .current_info__category {
        text-align: center;
    }
    .current_info__section {
        display: block;
    }
    .hello_world h3 {
        margin-top: 94px;
    }
    .task__list .form__checkbox {
        padding: 16px 12px;
    }
    .panel_btn {
        display: flex;
        justify-content: unset;
        flex-direction: column;
    }
    .panel_btn .btn {
        font-size: 12px;
        margin-bottom: 30px;
    }

}
@media (max-width: 426px) {
    .block_link .btn {
        width: auto;
        font-size: 12px;
    }
    .hello_world h2 {
        font-size: 22px;
    }
    .hello_world .hello_world__all > p {
        font-size: 18px;
    }
    .current_info__progress {
        width: 100%;
    }
}

@keyframes black {
    0% {
        color: hsl(230, 40%, 80%);
        text-shadow:
            0 0 1em hsla(320, 100%, 50%, 0.2),
            0 0 0.125em hsla(320, 100%, 60%, 0.3),
            -1em -0.125em 0.5em hsla(40, 100%, 60%, 0),
            1em 0.125em 0.5em hsla(200, 100%, 60%, 0);
    }

    30% {
        color: hsl(230, 80%, 90%);
        text-shadow:
            0 0 1em hsla(320, 100%, 50%, 0.5),
            0 0 0.125em hsla(320, 100%, 60%, 0.5),
            -0.5em -0.125em 0.25em hsla(40, 100%, 60%, 0.2),
            0.5em 0.125em 0.25em hsla(200, 100%, 60%, 0.4);
    }

    40% {
        color: hsl(230, 100%, 95%);
        text-shadow:
            0 0 1em hsla(320, 100%, 50%, 0.5),
            0 0 0.125em hsla(320, 100%, 90%, 0.5),
            -0.25em -0.125em 0.125em hsla(40, 100%, 60%, 0.2),
            0.25em 0.125em 0.125em hsla(200, 100%, 60%, 0.4);
    }

    70% {
        color: hsl(230, 80%, 90%);
        text-shadow:
            0 0 1em hsla(320, 100%, 50%, 0.5),
            0 0 0.125em hsla(320, 100%, 60%, 0.5),
            0.5em -0.125em 0.25em hsla(40, 100%, 60%, 0.2),
            -0.5em 0.125em 0.25em hsla(200, 100%, 60%, 0.4);
    }

    100% {
        color: hsl(230, 40%, 80%);
        text-shadow:
            0 0 1em hsla(320, 100%, 50%, 0.2),
            0 0 0.125em hsla(320, 100%, 60%, 0.3),
            1em -0.125em 0.5em hsla(40, 100%, 60%, 0),
            -1em 0.125em 0.5em hsla(200, 100%, 60%, 0);
    }
}

@keyframes light {
    0% {
        color: hsl(0, 11%, 7%);
        text-shadow:
            0 0 1em hsla(320, 100%, 50%, 0.2),
            0 0 0.125em hsla(320, 100%, 60%, 0.3),
            -1em -0.125em 0.5em hsla(40, 100%, 60%, 0),
            1em 0.125em 0.5em hsla(200, 100%, 60%, 0);
    }

    30% {
        color: hsl(0, 11%, 7%);
        text-shadow:
            0 0 1em hsla(320, 100%, 50%, 0.5),
            0 0 0.125em hsla(320, 100%, 60%, 0.5),
            -0.5em -0.125em 0.25em hsla(40, 100%, 60%, 0.2),
            0.5em 0.125em 0.25em hsla(200, 100%, 60%, 0.4);
    }

    40% {
        color: hsl(0, 11%, 7%);
        text-shadow:
            0 0 1em hsla(320, 100%, 50%, 0.5),
            0 0 0.125em hsla(320, 100%, 90%, 0.5),
            -0.25em -0.125em 0.125em hsla(40, 100%, 60%, 0.2),
            0.25em 0.125em 0.125em hsla(200, 100%, 60%, 0.4);
    }

    70% {
        color: hsl(0, 11%, 7%);
        text-shadow:
            0 0 1em hsla(320, 100%, 50%, 0.5),
            0 0 0.125em hsla(320, 100%, 60%, 0.5),
            0.5em -0.125em 0.25em hsla(40, 100%, 60%, 0.2),
            -0.5em 0.125em 0.25em hsla(200, 100%, 60%, 0.4);
    }

    100% {
        color: hsl(0, 11%, 7%);
        text-shadow:
            0 0 1em hsla(320, 100%, 50%, 0.2),
            0 0 0.125em hsla(320, 100%, 60%, 0.3),
            1em -0.125em 0.5em hsla(40, 100%, 60%, 0),
            -1em 0.125em 0.5em hsla(200, 100%, 60%, 0);
    }
}

/* End */
/* /local/components/kit/encoded.task/templates/task_list/style.css?172392502513181 */
