@charset "UTF-8";
.monkee-comments, .mk-layer-wrap {
    --mk-color-font: #2a2e2e;
    --mk-color-deep: #2a2e2e;
    --mk-color-sub: #757575;
    --mk-color-grey: #747474;
    --mk-color-meta: #697182;
    --mk-color-border: #ddd;
    --mk-color-light: #4285f4;
    --mk-color-bg: #transparent;
    --mk-color-bg-transl: rgba(255, 255, 255, .94);
    --mk-color-bg-grey: #f3f4f5;
    --mk-color-bg-grey-transl: rgba(244, 244, 244, .75);
    --mk-color-bg-light: rgba(29, 161, 242, .1);
    --mk-color-main: #2d2d2d;
    --mk-color-red: #ff5652;
    --mk-color-pink: #fa5a57;
    --mk-color-yellow: #ff7c37;
    --mk-color-green: #4caf50;
    --mk-color-gradient: linear-gradient(180deg, transparent, rgba(255, 255, 255))
}

.monkee-comments.mk-dark-mode, .mk-layer-wrap.mk-dark-mode {
    --mk-color-font: #fff;
    --mk-color-deep: #e7e7e7;
    --mk-color-sub: #e7e7e7;
    --mk-color-grey: #fff;
    --mk-color-meta: #fff;
    --mk-color-border: #2d3235;
    --mk-color-light: #687a86;
    --mk-color-bg: #1e2224;
    --mk-color-bg-transl: rgba(30, 34, 36, .95);
    --mk-color-bg-grey: #46494e;
    --mk-color-bg-grey-transl: rgba(8, 8, 8, .95);
    --mk-color-bg-light: rgba(29, 161, 242, .1);
    --mk-color-main: #2d2d2d;
    --mk-color-red: #ff5652;
    --mk-color-pink: #fa5a57;
    --mk-color-yellow: #ff7c37;
    --mk-color-green: #4caf50;
    --mk-color-gradient: linear-gradient(180deg, transparent, rgba(30, 34, 36, 1))
}

.mk-comment-wrap {
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid transparent
}

.mk-comment-wrap.mk-flash-once {
    animation: mkFlashOnce 1s ease-in-out 0s
}

@keyframes mkFlashOnce {
    0% {
        background: var(--mk-color-bg-grey)
    }
    to {
        background: transparent
    }
}

.mk-comment-wrap.mk-unread:before {
    content: " ";
    position: absolute;
    left: 0;
    top: 10%;
    width: 3px;
    height: 80%;
    background: var(--mk-color-main)
}

.mk-comment-wrap.mk-openable {
    cursor: pointer
}

.mk-comment-wrap.mk-openable:hover {
    background: var(--mk-color-bg-grey)
}

.mk-comment-wrap.mk-openable .mk-height-limit:after {
    background: transparent !important
}

.mk-comment-wrap:last-child {
    border-bottom: none
}

.mk-comment {
    display: block;
    padding: 16px 10px
}

.mk-comment > .mk-avatar {
    display: block;
    padding: 2px 0;
    float: left
}

.mk-comment > .mk-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 3px
}

.mk-comment > .mk-main {
    display: block;
    margin-left: 63px
}

#comments .mk-comment > .mk-main > .mk-header {
    padding-top: 0;
    line-height: 1.5;
    font-size: 13px;
    margin-bottom: .5em;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center
}

.mk-comment > .mk-main > .mk-header .mk-item {
    display: flex;
    align-items: center;
    margin-top: 2px;
    margin-bottom: 2px;
    color: var(--mk-color-meta)
}

#comments .mk-header .js-reply {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-left: auto;
    padding: 2px 4px;
    border: 0;
    background: transparent;
    color: var(--accent-color);
    font: inherit;
    line-height: 1.5;
    white-space: nowrap;
    cursor: pointer;
}

#comments .mk-header .js-reply:hover {
    color: var(--accent-color);
    box-shadow: none;
}

@media (hover: hover) and (pointer: fine) {
    #comments .mk-header .js-reply {
        opacity: 0;
        pointer-events: none;
        transition: opacity 150ms ease;
    }

    #comments .comment:hover:not(:has(.comment:hover)) > .mk-comment > .mk-main > .mk-header > .js-reply,
    #comments .mk-header .js-reply:focus-visible {
        opacity: 1;
        pointer-events: auto;
    }
}

#comments .mk-header .js-reply:focus-visible {
    outline: 1px solid var(--mk-color-meta);
    outline-offset: 2px;
    border-radius: 3px;
}

@media (pointer: coarse) {
    #comments .mk-header {
        overflow: visible;
    }
    #comments .mk-header .js-reply::after {
        content: "";
        position: absolute;
        inset: 50% 0 auto;
        min-width: 44px;
        height: 44px;
        transform: translateY(-50%);
    }
}

.mk-comment > .mk-main > .mk-header .mk-item:not(:last-child) {
    margin-right: 6px
}

.mk-comment > .mk-main > .mk-header .mk-item.mk-nick, .mk-comment > .mk-main > .mk-header .mk-item.mk-nick a {
    font-size: 14px;
    color: var(--mk-color-main);
    text-decoration: none
}

.mk-comment > .mk-main > .mk-header .mk-item.mk-reply-at {
    margin-left: 2px
}

#comments .mk-header a,
#comments .mk-header a:hover {
    text-decoration: none;
    border-bottom: 0;
}

.mk-comment > .mk-main > .mk-header .mk-item.mk-reply-at > .mk-arrow:before {
    content: "";
    vertical-align: middle;
    transform: rotate(90deg);
    border-bottom: 4px solid var(--mk-color-grey);
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    display: inline-block;
    margin-top: -1px
}

.mk-comment > .mk-main > .mk-header .mk-item.mk-reply-at > .mk-nick {
    color: var(--mk-color-main);
    cursor: pointer;
    margin-left: 6px
}

.mk-comment > .mk-main > .mk-header .badge, .mk-comment > .mk-main > .mk-header .mk-ua, .mk-comment > .mk-main > .mk-header .mk-pinned-badge, .mk-comment > .mk-main > .mk-header .mk-region-badge, .mk-comment > .mk-main > .mk-header .mk-badge {
    display: inline-block;
    color: var(--mk-color-meta);
    background: var(--mk-color-bg-grey);
    padding: 0 6px;
    line-height: 17px;
    border-radius: 3px
}

.mk-comment > .mk-main > .mk-header .badge:not(:last-child), .mk-comment > .mk-main > .mk-header .mk-ua:not(:last-child), .mk-comment > .mk-main > .mk-header .mk-pinned-badge:not(:last-child), .mk-comment > .mk-main > .mk-header .mk-region-badge:not(:last-child), .mk-comment > .mk-main > .mk-header .mk-badge:not(:last-child) {
    margin-right: 6px
}

.mk-comment > .mk-main > .mk-header .mk-badge-wrap > *:last-child {
    margin-right: 6px
}

.mk-comment > .mk-main > .mk-header .mk-badge {
    color: #fff
}

.mk-comment > .mk-main > .mk-header .mk-pinned-badge {
    color: #fff;
    background: #f44336
}

.mk-comment > .mk-main > .mk-header .mk-verified-icon {
    height: 1.4em;
    width: 1.4em;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: block;
    background-image: url('data:image/svg+xml,<svg viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg" fill="%231d9bf0"><g><path d="M20.396 11c-.018-.646-.215-1.275-.57-1.816-.354-.54-.852-.972-1.438-1.246.223-.607.27-1.264.14-1.897-.131-.634-.437-1.218-.882-1.687-.47-.445-1.053-.75-1.687-.882-.633-.13-1.29-.083-1.897.14-.273-.587-.704-1.086-1.245-1.44S11.647 1.62 11 1.604c-.646.017-1.273.213-1.813.568s-.969.854-1.24 1.44c-.608-.223-1.267-.272-1.902-.14-.635.13-1.22.436-1.69.882-.445.47-.749 1.055-.878 1.688-.13.633-.08 1.29.144 1.896-.587.274-1.087.705-1.443 1.245-.356.54-.555 1.17-.574 1.817.02.647.218 1.276.574 1.817.356.54.856.972 1.443 1.245-.224.606-.274 1.263-.144 1.896.13.634.433 1.218.877 1.688.47.443 1.054.747 1.687.878.633.132 1.29.084 1.897-.136.274.586.705 1.084 1.246 1.439.54.354 1.17.551 1.816.569.647-.016 1.276-.213 1.817-.567s.972-.854 1.245-1.44c.604.239 1.266.296 1.903.164.636-.132 1.22-.447 1.68-.907.46-.46.776-1.044.908-1.681s.075-1.299-.165-1.903c.586-.274 1.084-.705 1.439-1.246.354-.54.551-1.17.569-1.816zM9.662 14.85l-3.429-3.428 1.293-1.302 2.072 2.072 4.4-4.794 1.347 1.246z"></path></g></svg>')
}

@media only screen and (max-width: 768px) {
    .mk-comment > .mk-main > .mk-header .mk-ua-wrap {
        display: block
    }
}

.mk-comment > .mk-main > .mk-body {
    display: block;
    overflow: hidden;
    position: relative
}

.mk-comment > .mk-main > .mk-body img {
    max-width: 100%
}

.mk-comment > .mk-main > .mk-body > .mk-content {
    word-break: break-word
}

.mk-comment > .mk-main > .mk-body > .mk-content.mk-type-collapsed {
    border: 3px solid var(--mk-color-bg-grey);
    border-bottom: 0;
    padding: 5px 10px;
    border-radius: 6px 6px 0 0;
    margin-bottom: -5px
}

.mk-comment > .mk-main > .mk-body > .mk-content > *:first-child {
    margin-top: 0
}

.mk-comment > .mk-main > .mk-body > .mk-content > *:last-child {
    margin-bottom: 0
}

.mk-comment > .mk-main > .mk-body > .mk-content .mk-height-limit-btn {
    bottom: 5px
}

.mk-comment > .mk-main > .mk-body > .mk-pending {
    color: var(--mk-color-meta);
    margin: 3px 0;
    font-size: 13px;
    padding: 10px 18px;
    display: block;
    background: var(--mk-color-bg-grey);
    border-left: 4px solid #f44336
}

.mk-comment > .mk-main > .mk-body > .mk-reply-to {
    padding: 5px 15px;
    border-left: 3px solid var(--mk-color-border);
    margin-bottom: 10px;
    position: relative;
    margin-top: 10px
}

.mk-comment > .mk-main > .mk-body > .mk-reply-to .mk-meta {
    font-size: 15px
}

.mk-comment > .mk-main > .mk-body > .mk-reply-to .mk-meta .mk-nick {
    color: var(--mk-color-main)
}

.mk-comment > .mk-main > .mk-body > .mk-reply-to .mk-content {
    margin-top: 5px
}

.mk-comment > .mk-main > .mk-body > .mk-collapsed {
    margin: 3px 0;
    font-size: 13px;
    padding: 10px 18px;
    display: block;
    background: var(--mk-color-bg-grey);
    border-radius: 6px
}

.mk-comment > .mk-main > .mk-body > .mk-collapsed .mk-text {
    color: var(--mk-color-meta)
}

.mk-comment > .mk-main > .mk-body > .mk-collapsed .mk-show-btn {
    color: var(--mk-color-main);
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    margin-left: 3px
}

.mk-comment > .mk-main > .mk-body > .mk-collapsed .mk-show-btn:hover {
    color: var(--mk-color-main)
}

.mk-comment > .mk-main > .mk-footer {
    margin-top: 5px
}

.mk-comment > .mk-main > .mk-footer .mk-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap
}

.mk-comment > .mk-main > .mk-footer .mk-actions > span {
    color: var(--mk-color-meta);
    font-size: 13px;
    line-height: 25px;
    display: inline-flex;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none
}

.mk-comment > .mk-main > .mk-footer .mk-actions > span.mk-error, .mk-comment > .mk-main > .mk-footer .mk-actions > span.mk-error:hover {
    color: var(--mk-color-red)
}

.mk-comment > .mk-main > .mk-footer .mk-actions > span:not(:last-child):not(.mk-hide) {
    margin-right: 16px
}

.mk-comment > .mk-main > .mk-footer .mk-actions > span:hover {
    color: var(--mk-color-deep)
}

.mk-comment .mk-height-limit:after {
    position: absolute;
    z-index: 1;
    display: block;
    overflow: hidden;
    width: 100%;
    content: " ";
    bottom: 0;
    height: 80px;
    background: var(--mk-color-gradient)
}

.mk-comment .mk-height-limit-btn {
    z-index: 2;
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translate(-50%);
    cursor: pointer;
    border: 1px solid var(--mk-color-border);
    border-radius: 6px;
    background: var(--mk-color-bg);
    padding: 1px 20px;
    font-size: 15px;
    color: var(--mk-color-meta);
    -webkit-user-select: none;
    user-select: none
}

.mk-comment .mk-height-limit-btn:hover {
    background: var(--mk-color-bg-grey)
}

.mk-comment .mk-height-limit .mk-height-limit .mk-height-limit-btn {
    display: none
}

.mk-comment .mk-height-limit-scroll {
    margin-top: 10px;
    overflow-y: auto;
    background: linear-gradient(var(--mk-color-bg) 1px, transparent 1px calc(100% - 1px)) center top, linear-gradient(transparent calc(100% - 1px), var(--mk-color-bg) calc(100% - 1px) 1px) center bottom, linear-gradient(var(--mk-color-border) 1px, transparent 1px calc(100% - 1px)) center top, linear-gradient(transparent calc(100% - 1px), var(--mk-color-border) calc(100% - 1px) 1px) center bottom;
    background-repeat: no-repeat;
    background-color: transparent;
    background-size: 100% 1px, 100% 1px, 100% 1px, 100% 1px;
    background-attachment: local, local, scroll, scroll
}

.mk-comment-children > .mk-comment-wrap {
    margin-top: 16px;
    border-left: 1px dashed transparent;
    border-bottom-color: transparent
}

.mk-comment-children > .mk-comment-wrap:not(:last-child) {
    margin-bottom: 16px
}

.mk-comment-children > .mk-comment-wrap > .mk-comment {
    padding: 0
}

.mk-comment-children > .mk-comment-wrap > .mk-comment > .mk-avatar img {
    width: 36px;
    height: 36px
}

.mk-comment-children > .mk-comment-wrap > .mk-comment > .mk-main {
    margin-left: 47px
}

.monkee-comments > .mk-list {
    position: relative
}

.monkee-comments > .mk-list > .mk-list-header {
    display: flex;
    flex-direction: row;
    padding: 10px 17px
}

.monkee-comments > .mk-list > .mk-list-header .mk-text {
    display: inline-block
}

.monkee-comments > .mk-list > .mk-list-header .mk-dropdown-wrap {
    position: relative;
    cursor: pointer
}

.monkee-comments > .mk-list > .mk-list-header .mk-dropdown-wrap .mk-arrow-down-icon {
    cursor: pointer;
    vertical-align: middle;
    border-top: 5px solid var(--mk-color-grey);
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    margin-top: -1px;
    margin-left: .8rem;
    display: inline-block
}

.monkee-comments > .mk-list > .mk-list-header .mk-dropdown-wrap:hover .mk-dropdown {
    display: block
}

.monkee-comments > .mk-list > .mk-list-header .mk-dropdown-wrap .mk-dropdown {
    z-index: 3;
    display: none;
    height: auto !important;
    max-height: calc(100vh - 2.7rem);
    overflow-y: auto;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background-color: var(--mk-color-bg);
    padding: .6rem 0;
    border: 1px solid var(--mk-color-border);
    text-align: center;
    border-radius: 6px;
    white-space: nowrap;
    margin: 0;
    list-style: none
}

.monkee-comments > .mk-list > .mk-list-header .mk-dropdown-wrap .mk-dropdown-item span, .monkee-comments > .mk-list > .mk-list-header .mk-dropdown-wrap .mk-dropdown-item a {
    display: block;
    line-height: 2rem;
    position: relative;
    border-bottom: none;
    font-weight: 400;
    padding: 0 1.5rem
}

.monkee-comments > .mk-list > .mk-list-header .mk-dropdown-wrap .mk-dropdown-item span:hover, .monkee-comments > .mk-list > .mk-list-header .mk-dropdown-wrap .mk-dropdown-item a:hover {
    color: var(--mk-color-main)
}

.monkee-comments > .mk-list > .mk-list-header .mk-dropdown-wrap .mk-dropdown-item.active span, .monkee-comments > .mk-list > .mk-list-header .mk-dropdown-wrap .mk-dropdown-item a {
    color: var(--mk-color-main)
}

.monkee-comments > .mk-list > .mk-list-header .mk-comment-count {
    font-size: 15px
}

.monkee-comments > .mk-list > .mk-list-header .mk-comment-count .mk-comment-count-num {
    font-size: 22px;
    margin-right: 4px
}

.monkee-comments > .mk-list > .mk-list-header .mk-right-action {
    display: flex;
    flex: 1;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end
}

.monkee-comments > .mk-list > .mk-list-header .mk-right-action > span {
    font-size: 14px;
    color: var(--mk-color-meta);
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    position: relative
}

.monkee-comments > .mk-list > .mk-list-header .mk-right-action > span.mk-on, .monkee-comments > .mk-list > .mk-list-header .mk-right-action > span.mk-on * {
    color: var(--mk-color-main)
}

.monkee-comments > .mk-list > .mk-list-header .mk-right-action > span:not(:last-child):not(.mk-hide) {
    margin-right: 10px;
    padding-right: 10px
}

.monkee-comments > .mk-list > .mk-list-header .mk-right-action > span .mk-unread-badge {
    position: absolute;
    top: -5px;
    left: -6px;
    color: #fff;
    background: var(--mk-color-pink);
    text-align: center;
    min-width: 16px;
    height: 16px;
    padding: 0 3px;
    border-radius: 8px;
    line-height: 16px;
    font-size: 12px
}

.monkee-comments > .mk-list > .mk-list-body {
    min-height: 150px
}

.monkee-comments > .mk-list > .mk-list-footer {
    text-align: right
}

@media only screen and (max-width: 768px) {
    .monkee-comments > .mk-list > .mk-list-footer {
        float: initial;
        text-align: center
    }
}

.monkee-comments > .mk-list > .mk-list-footer .mk-copyright {
    display: block;
    font-size: 12px;
    color: var(--mk-color-meta);
    padding-right: 15px
}

.monkee-comments > .mk-list > .mk-list-footer .mk-copyright a {
    color: var(--mk-color-main);
    text-decoration: none
}

.mk-list-no-comment {
    height: 150px;
    display: flex;
    font-size: 19px;
    justify-content: center;
    align-items: center;
    word-break: break-word;
    text-align: center
}

.mk-list-read-more {
    border-top: 1px dashed var(--mk-color-border);
    margin-top: 28px;
    padding-bottom: 25px
}

@media only screen and (max-width: 768px) {
    .mk-list-read-more {
        padding-bottom: 10px
    }
}

.mk-list-read-more.mk-err .mk-text {
    color: var(--mk-color-red) !important
}

.mk-list-read-more .mk-list-read-more-inner {
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    padding: 0 15px;
    font-size: 14px;
    border-radius: 6px;
    border: 1px solid transparent;
    display: flex;
    height: 30px;
    flex-direction: row;
    place-content: center;
    align-items: center;
    width: 120px;
    margin: -15px auto 0;
    background: var(--mk-color-bg);
    border-color: var(--mk-color-border)
}

.mk-list-read-more .mk-list-read-more-inner > .mk-loading-icon {
    height: 15px;
    width: 15px
}

.mk-list-read-more .mk-list-read-more-inner > .mk-text {
    color: var(--mk-color-meta)
}

.mk-list-read-more .mk-list-read-more-inner:hover {
    background: var(--mk-color-bg-grey)
}

.mk-pagination {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 10px 0;
    position: relative
}

.mk-pagination > .mk-btn, .mk-pagination > .mk-input {
    height: 30px;
    border: 1px solid var(--mk-color-border);
    border-radius: 3px;
    padding: 0 5px;
    text-align: center;
    background: var(--mk-color-bg)
}

.mk-pagination > .mk-btn {
    -webkit-user-select: none;
    user-select: none;
    width: 60px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center
}

.mk-pagination > .mk-btn:hover {
    background: var(--mk-color-bg-grey)
}

.mk-pagination > .mk-btn.mk-disabled {
    color: var(--mk-color-sub)
}

.mk-pagination > .mk-btn.mk-disabled:hover {
    cursor: default;
    background: initial
}

.mk-pagination > .mk-input {
    background: transparent;
    color: var(--mk-color-font);
    font-size: 18px;
    width: 60px;
    outline: none
}

.mk-pagination > .mk-input:focus {
    border-color: var(--mk-color-main)
}

.mk-pagination > *:not(:last-child) {
    margin-right: 10px
}

.mk-main-editor {
    position: relative;
    overflow: hidden;
    background: var(--mk-color-bg);
    border: 1px solid var(--mk-color-border);
    border-radius: 8px;
    margin-bottom: 10px
}

@media only screen and (max-width: 768px) {
    .mk-main-editor {
        margin-bottom: 7px
    }
}

.mk-main-editor.editor-traveling {
    margin-top: 5px;
    margin-bottom: 10px
}

.mk-main-editor > .mk-header {
    display: flex;
    flex-direction: row;
    padding: 6px 14px 2px;
    border-bottom: 1px transparent solid;
}

.mk-main-editor > .mk-header input {
    flex: 1;
    width: 100%;
    font-size: 14px;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 3px;
    padding: 6px 5px;
    resize: none;
    outline: none
}

.mk-main-editor > .mk-header input:not(:last-child) {
    margin-right: 2px
}

.mk-main-editor > .mk-textarea-wrap {
    position: relative
}

.mk-main-editor > .mk-textarea-wrap > .mk-textarea {
    display: block;
    overflow: hidden;
    color: var(--mk-color-font);
    font-size: 15px;
    background-color: var(--mk-color-bg);
    border: 2px solid transparent;
    border-radius: 3px;
    width: 100%;
    min-height: 120px;
    margin-top: 2px;
    padding: 10px 20px;
    resize: none;
    word-wrap: break-word;
    outline: none
}

.mk-main-editor > .mk-textarea-wrap > .mk-comment-closed {
    pointer-events: none;
    color: var(--mk-color-meta);
    font-size: 12px;
    background-color: var(--mk-color-bg);
    border-top: 1px solid var(--mk-color-border);
    padding: 5px 15px;
    margin-top: 10px
}

.mk-main-editor > .mk-plug-panel-wrap {
    position: relative;
    height: 180px;
    width: 100%;
    overflow: hidden;
    border-top: 1px solid var(--mk-color-border);
    animation: .3s both mkFadeIn;
    transition: .2s height ease-in-out
}

.mk-main-editor > .mk-bottom {
    display: flex;
    flex-direction: row;
    row-gap: 5px;
    justify-content: space-between;
    padding: 5px;
    flex-wrap: wrap
}

.mk-main-editor > .mk-bottom > .mk-item {
    display: flex;
    flex-direction: row;
    align-items: center
}

.mk-main-editor > .mk-bottom > .mk-bottom-left > .mk-state-wrap {
    margin-right: 5px
}

.mk-main-editor > .mk-bottom > .mk-bottom-left > .mk-plug-btn-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 5px
}

.mk-main-editor > .mk-bottom .mk-plug-btn {
    display: flex;
    justify-content: center;
    place-items: center;
    padding: 0 10px;
    line-height: 30px;
    height: 30px;
    cursor: pointer;
    color: var(--mk-color-grey);
    font-size: 14px;
    -webkit-user-select: none;
    user-select: none;
    border-radius: 3px;
    word-break: keep-all
}

.mk-main-editor > .mk-bottom .mk-plug-btn:not(:last-child) {
    margin-right: 5px
}

.mk-main-editor > .mk-bottom .mk-plug-btn:hover {
    background: var(--mk-color-bg-grey)
}

.mk-main-editor > .mk-bottom .mk-plug-btn.active {
    color: var(--mk-color-main)
}

.mk-main-editor > .mk-bottom .mk-plug-btn.active svg.markdown path {
    fill: var(--mk-color-main)
}

.mk-main-editor > .mk-bottom .mk-plug-btn i {
    display: flex;
    justify-content: center;
    place-items: center;
    color: var(--mk-color-grey)
}

.mk-main-editor > .mk-bottom .mk-plug-btn i:not(:first-child) {
    margin-left: 4px
}

.mk-main-editor > .mk-bottom .mk-state-btn {
    z-index: 2;
    height: 30px;
    padding: 0 0 0 10px;
    font-size: 14px;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    place-items: center;
    background: var(--mk-color-bg-grey-transl);
    cursor: pointer;
    overflow: hidden;
    border-radius: 3px
}

.mk-main-editor > .mk-bottom .mk-state-btn:hover .mk-cancel {
    background: #0000000a
}

@media only screen and (max-width: 768px) {
    .mk-main-editor > .mk-bottom .mk-state-btn {
        padding: 0
    }

    .mk-main-editor > .mk-bottom .mk-state-btn .mk-text-wrap {
        display: none
    }
}

.mk-main-editor > .mk-bottom .mk-state-btn .mk-text-wrap {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0 8px 0 2px;
    max-width: 8em
}

.mk-main-editor > .mk-bottom .mk-state-btn .mk-cancel {
    display: flex;
    justify-content: center;
    place-items: center;
    padding: 0 10px;
    font-weight: 700;
    height: 100%;
    background: #00000005
}

.mk-main-editor > .mk-bottom .mk-send-btn {
    background: var(--mk-color-main);
    color: #fff;
    font-size: 14px;
    border: none;
    margin: 0;
    height: 30px;
    min-width: 7.3em;
    cursor: pointer;
    transition: opacity .3s ease-in-out;
    outline: none;
    border-radius: 3px
}

@media only screen and (max-width: 768px) {
    .mk-main-editor > .mk-bottom .mk-send-btn {
        min-width: 6em
    }
}

.mk-main-editor > .mk-bottom .mk-send-btn:active {
    opacity: .9
}

.mk-main-editor > .mk-notify-wrap {
    z-index: 3;
    position: absolute;
    right: -2px;
    bottom: 40px;
    width: 225px;
    opacity: .83
}

.mk-sidebar-layer {
    position: fixed;
    z-index: 99999;
    top: 0;
    right: 0;
    width: 430px;
    height: 100%;
    background: var(--mk-color-bg);
    transition: transform .45s cubic-bezier(.23, 1, .32, 1) 0ms;
    transform: translate(430px)
}

@media only screen and (max-width: 430px) {
    .mk-sidebar-layer {
        width: 100%
    }
}

.mk-sidebar-layer .mk-sidebar-inner {
    position: relative;
    height: 100%
}

.mk-sidebar-layer .mk-sidebar-header {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    z-index: 99999
}

.mk-sidebar-layer .mk-sidebar-header .mk-sidebar-close {
    display: flex;
    flex-direction: column;
    width: 60px;
    height: 60px;
    align-items: center;
    place-content: center;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    margin-left: 10px;
    font-size: 22px
}

.mk-sidebar-layer .mk-sidebar-header .mk-sidebar-close:hover :after {
    background-color: #e81123e6
}

.mk-sidebar-layer .mk-sidebar-iframe-wrap {
    height: 100%;
    position: relative
}

.mk-sidebar-layer .mk-sidebar-iframe-wrap iframe {
    border: 0;
    width: 100%;
    height: 100%
}

.mk-sidebar-layer .mk-sidebar-iframe-wrap .mk-err-alert {
    z-index: 9999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    background: var(--mk-color-bg);
    padding: 40px 30px;
    width: 80%;
    text-align: center;
    border-radius: 4px
}

.mk-sidebar-layer .mk-sidebar-iframe-wrap .mk-err-alert .mk-title {
    font-size: 1.4em;
    margin-bottom: 20px;
    color: var(--mk-color-font)
}

.mk-sidebar-layer .mk-sidebar-iframe-wrap .mk-err-alert .mk-text {
    color: var(--mk-color-font)
}

.mk-sidebar-layer .mk-sidebar-iframe-wrap .mk-err-alert .mk-text span {
    cursor: pointer;
    color: var(--mk-color-main)
}

.monkee-comments {
    position: relative;
    width: 100%;
    min-height: 200px
}

.monkee-comments, .mk-layer-wrap {
    color: var(--mk-color-font);
    word-wrap: break-word;
    word-break: break-word
}

.monkee-comments *, .mk-layer-wrap * {
    box-sizing: border-box
}

.monkee-comments input, .monkee-comments textarea, .monkee-comments button, .monkee-comments optgroup, .monkee-comments select, .mk-layer-wrap input, .mk-layer-wrap textarea, .mk-layer-wrap button, .mk-layer-wrap optgroup, .mk-layer-wrap select {
    font-family: inherit;
    color: inherit;
    font-size: inherit
}

.monkee-comments code, .mk-layer-wrap code {
    font-family: source code pro, Consolas, Monaco, Menlo, sans-serif;
    margin: 0 .05em;
    padding: 0 .4em;
    display: inline-block;
    vertical-align: middle;
    font-size: .9em;
    background-color: var(--mk-color-bg-grey);
    color: var(--mk-color-font);
    border-radius: 2px
}

.monkee-comments pre, .mk-layer-wrap pre {
    margin: 10px 0 0;
    padding: 0;
    line-height: 0
}

.monkee-comments pre code, .mk-layer-wrap pre code {
    line-height: 1.6em;
    display: block;
    padding: 10px 15px;
    white-space: pre-wrap !important;
    background-color: var(--mk-color-bg-grey);
    color: var(--mk-color-font);
    margin: 0
}

.monkee-comments pre code *, .mk-layer-wrap pre code * {
    font-family: source code pro, Consolas, Monaco, Menlo, sans-serif
}

.monkee-comments a, .mk-layer-wrap a {
    color: var(--mk-color-main);
    text-decoration: none
}

.monkee-comments blockquote, .mk-layer-wrap blockquote {
    position: static;
    margin: 10px 0;
    padding: 10px 20px;
    background: var(--mk-color-bg-grey);
    border-left: 4px solid #687a86;
    color: var(--mk-color-font)
}

.monkee-comments p:first-child, .mk-layer-wrap p:first-child {
    margin-top: 0
}

.monkee-comments p:last-child, .mk-layer-wrap p:last-child {
    margin-bottom: 0
}

.monkee-comments img, .mk-layer-wrap img {
    max-width: 100%
}

.monkee-comments table, .mk-layer-wrap table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    margin-bottom: 1.5em;
    font-size: .96em
}

.monkee-comments td, .monkee-comments th, .mk-layer-wrap td, .mk-layer-wrap th {
    text-align: left;
    padding: 4px 8px 4px 10px;
    border: 1px solid var(--mk-color-border)
}

.monkee-comments td, .mk-layer-wrap td {
    vertical-align: top
}

.monkee-comments tr:nth-child(2n), .mk-layer-wrap tr:nth-child(2n) {
    background-color: var(--mk-color-bg-grey)
}

.monkee-comments ul, .mk-layer-wrap ul {
    list-style: disc
}

.monkee-comments ol, .mk-layer-wrap ol {
    list-style: decimal
}

.monkee-comments li + li, .mk-layer-wrap li + li {
    margin-top: 8px
}

.monkee-comments li > ol, .monkee-comments li > ul, .mk-layer-wrap li > ol, .mk-layer-wrap li > ul {
    margin: 8px 0 0
}

.mk-hide {
    display: none !important
}

.mk-full-layer, .mk-layer-dialog-wrap, .mk-error-layer, .mk-loading {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--mk-color-bg);
    z-index: 4;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    display: flex
}

.mk-loading-spinner {
    position: relative;
    width: 50px;
    height: 50px
}

.mk-loading-spinner svg {
    animation: mkRotate 2s linear infinite;
    transform-origin: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.mk-loading-spinner svg circle {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    animation: mkDash 1.5s ease-in-out infinite, mkColor 6s ease-in-out infinite;
    stroke-linecap: round
}

@keyframes mkRotate {
    to {
        transform: rotate(360deg)
    }
}

@keyframes mkDash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px
    }
    to {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px
    }
}

@keyframes mkColor {
    0%, to {
        stroke: #ff5652
    }
    40% {
        stroke: #2196f3
    }
    66% {
        stroke: #32c787
    }
    80%, 90% {
        stroke: #ffc107
    }
}

@keyframes mkLoadingIconRotate {
    0% {
        transform: rotate(0)
    }
    to {
        transform: rotate(360deg)
    }
}

.mk-loading-icon {
    width: 18px;
    height: 18px;
    box-sizing: border-box;
    border: solid 1px transparent;
    border-top-color: #29d;
    border-left-color: #29d;
    border-radius: 50%;
    animation: mkLoadingIconRotate .4s linear infinite
}

.mk-fade-in {
    animation: mkFadeIn both .3s
}

.mk-fade-out {
    animation: mkFadeOut both .2s
}

.mk-rotate {
    animation: mkRotate 2s linear infinite
}

@keyframes mkFadeIn {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes mkFadeOut {
    to {
        opacity: 0
    }
}

@keyframes mkRotate {
    0% {
        transform: rotate(0)
    }
    to {
        transform: rotate(360deg)
    }
}

.mk-icon:after {
    display: block;
    content: "";
    width: 1em;
    height: 1em;
    background-color: var(--mk-color-deep);
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain
}

.mk-icon-sync:after {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.99133 4.87635C2.22512 7.64257 2.22512 12.1275 4.99133 14.8937C6.04677 15.9491 7.3524 16.6019 8.71732 16.8519' stroke='%234E5969' stroke-width='2'/%3E%3Cpath d='M14.4179 15.4815L15.0072 14.8922C17.7734 12.126 17.7734 7.64107 15.0072 4.87486C13.9518 3.81942 12.6461 3.16668 11.2812 2.91664' stroke='%234E5969' stroke-width='2'/%3E%3Cpath d='M6.17106 4.99252L5.58181 4.40327L4.99255 3.81401H6.17106V4.99252Z' fill='%23C4C4C4' stroke='%234E5969' stroke-width='2'/%3E%3Cpath d='M13.8299 15.0084L14.4192 15.5976L15.0084 16.1869H13.8299V15.0084Z' fill='%23C4C4C4' stroke='%234E5969' stroke-width='2'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.99133 4.87635C2.22512 7.64257 2.22512 12.1275 4.99133 14.8937C6.04677 15.9491 7.3524 16.6019 8.71732 16.8519' stroke='%234E5969' stroke-width='2'/%3E%3Cpath d='M14.4179 15.4815L15.0072 14.8922C17.7734 12.126 17.7734 7.64107 15.0072 4.87486C13.9518 3.81942 12.6461 3.16668 11.2812 2.91664' stroke='%234E5969' stroke-width='2'/%3E%3Cpath d='M6.17106 4.99252L5.58181 4.40327L4.99255 3.81401H6.17106V4.99252Z' fill='%23C4C4C4' stroke='%234E5969' stroke-width='2'/%3E%3Cpath d='M13.8299 15.0084L14.4192 15.5976L15.0084 16.1869H13.8299V15.0084Z' fill='%23C4C4C4' stroke='%234E5969' stroke-width='2'/%3E%3C/svg%3E")
}

.mk-icon-del:after {
    background-color: var(--mk-color-red) !important;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.29167 5.04166L4.81251 5.04166M4.81251 5.04166L4.81251 18.3333C4.81251 18.5865 5.01771 18.7917 5.27084 18.7917L16.7292 18.7917C16.9823 18.7917 17.1875 18.5865 17.1875 18.3333V5.04166M4.81251 5.04166L7.33334 5.04166M17.1875 5.04166L19.7083 5.04166M17.1875 5.04166L14.6667 5.04166M7.33334 5.04166V3.20833L14.6667 3.20833V5.04166M7.33334 5.04166L14.6667 5.04166' stroke='%23D06565' stroke-width='2'/%3E%3Cpath d='M9.16667 8.25V15.125M12.8333 8.25V15.125' stroke='%23D06565' stroke-width='2'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.29167 5.04166L4.81251 5.04166M4.81251 5.04166L4.81251 18.3333C4.81251 18.5865 5.01771 18.7917 5.27084 18.7917L16.7292 18.7917C16.9823 18.7917 17.1875 18.5865 17.1875 18.3333V5.04166M4.81251 5.04166L7.33334 5.04166M17.1875 5.04166L19.7083 5.04166M17.1875 5.04166L14.6667 5.04166M7.33334 5.04166V3.20833L14.6667 3.20833V5.04166M7.33334 5.04166L14.6667 5.04166' stroke='%23D06565' stroke-width='2'/%3E%3Cpath d='M9.16667 8.25V15.125M12.8333 8.25V15.125' stroke='%23D06565' stroke-width='2'/%3E%3C/svg%3E")
}

.mk-icon-edit:after {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='16' height='17' viewBox='0 0 16 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.70618 4.08515L12.6081 7.06376M1.00041 13.021L11.7376 2L14.6392 4.97861L3.90274 16H1L1.00041 13.021Z' stroke='%234E5969' stroke-width='1.5'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg width='16' height='17' viewBox='0 0 16 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.70618 4.08515L12.6081 7.06376M1.00041 13.021L11.7376 2L14.6392 4.97861L3.90274 16H1L1.00041 13.021Z' stroke='%234E5969' stroke-width='1.5'/%3E%3C/svg%3E")
}

.mk-icon-yes:after, .mk-icon-check:after {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='25' height='25' viewBox='0 0 25 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.7071 5.75533L9.92197 17.5404L3.29285 10.9113' stroke='%234E5969'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg width='25' height='25' viewBox='0 0 25 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.7071 5.75533L9.92197 17.5404L3.29285 10.9113' stroke='%234E5969'/%3E%3C/svg%3E")
}

.mk-icon-plus:after {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.08331 10H17.9166' stroke='%234E5969' stroke-width='2'/%3E%3Cpath d='M10 2.08334L10 17.9167' stroke='%234E5969' stroke-width='2'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.08331 10H17.9166' stroke='%234E5969' stroke-width='2'/%3E%3Cpath d='M10 2.08334L10 17.9167' stroke='%234E5969' stroke-width='2'/%3E%3C/svg%3E")
}

.mk-icon-close-slim:after {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 25 25' fill='none'%3E%3Cpath d='M19.8657 5.13431L12.5 12.5L5.13431 19.8657' stroke='%234E5969'/%3E%3Cpath d='M5.13431 5.13432L12.5 12.5L19.8657 19.8657' stroke='%234E5969'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 25 25' fill='none'%3E%3Cpath d='M19.8657 5.13431L12.5 12.5L5.13431 19.8657' stroke='%234E5969'/%3E%3Cpath d='M5.13431 5.13432L12.5 12.5L19.8657 19.8657' stroke='%234E5969'/%3E%3C/svg%3E")
}

.mk-icon-arrow-left:after {
    -webkit-mask-image: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><path d="M6.54542 8.00004L11 12.6667L9.72729 14L4 8.00004L9.72729 2L11 3.33333L6.54542 8.00004Z" /></svg>');
    mask-image: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><path d="M6.54542 8.00004L11 12.6667L9.72729 14L4 8.00004L9.72729 2L11 3.33333L6.54542 8.00004Z" /></svg>')
}

.mk-icon-no:after, .mk-icon-close:after {
    -webkit-mask-image: url('data:image/svg+xml,<svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg"><path d="M405 136.798L375.202 107 256 226.202 136.798 107 107 136.798 226.202 256 107 375.202 136.798 405 256 285.798 375.202 405 405 375.202 285.798 256z"></path></svg>');
    mask-image: url('data:image/svg+xml,<svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg"><path d="M405 136.798L375.202 107 256 226.202 136.798 107 107 136.798 226.202 256 107 375.202 136.798 405 256 285.798 375.202 405 405 375.202 285.798 256z"></path></svg>')
}

.mk-error-layer {
    background-color: var(--mk-color-bg-transl)
}

.mk-error-layer .mk-error-title {
    color: var(--mk-color-red)
}

.mk-error-layer .mk-warn-title {
    color: var(--mk-color-yellow)
}

.mk-error-layer .mk-error-title, .mk-error-layer .mk-warn-title {
    display: inline-block;
    padding: 0 15px;
    margin-bottom: 20px;
    font-size: 20px;
    letter-spacing: -.5px
}

.mk-error-layer .mk-error-text {
    text-align: center;
    padding: 0 20px
}

.mk-error-layer .mk-error-text * {
    color: var(--mk-color-deep)
}

.mk-error-layer .mk-error-text a {
    color: var(--mk-color-meta)
}

.mk-version-check-notice {
    background: var(--mk-color-bg-grey);
    border-radius: 6px;
    padding: 10px 20px;
    margin-bottom: 10px;
    font-size: 14px
}

.mk-version-check-notice .mk-info {
    color: var(--mk-color-meta)
}

.mk-version-check-notice .mk-ignore-btn {
    cursor: pointer;
    float: right
}

.mk-version-check-notice .mk-ignore-btn:hover {
    opacity: .8
}

.mk-layer-dialog-wrap {
    background-color: var(--mk-color-bg-transl)
}

.mk-layer-dialog-wrap > .mk-layer-dialog {
    width: 25%
}

.mk-layer-dialog-wrap > .mk-layer-dialog > .mk-layer-dialog-content .mk-captcha-img {
    cursor: pointer;
    width: 170px;
    height: auto;
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid var(--mk-color-border);
    vertical-align: bottom
}

.mk-layer-dialog-wrap > .mk-layer-dialog > .mk-layer-dialog-content input {
    width: 100%;
    line-height: 34px;
    background-color: var(--mk-color-bg);
    border: 1px solid var(--mk-color-border);
    border-radius: 3px;
    outline: none;
    padding: 0 6px;
    display: block;
    margin-top: 10px;
    margin-bottom: 5px;
    text-align: center
}

.mk-layer-dialog-wrap > .mk-layer-dialog > .mk-layer-dialog-actions {
    display: flex;
    flex-direction: row
}

.mk-layer-dialog-wrap > .mk-layer-dialog > .mk-layer-dialog-actions button {
    flex: 1;
    display: block;
    cursor: pointer;
    border: 1px solid var(--mk-color-main);
    background: transparent;
    color: var(--mk-color-main);
    border-radius: 3px;
    padding: 0 15px;
    line-height: 30px;
    outline: none
}

.mk-layer-dialog-wrap > .mk-layer-dialog > .mk-layer-dialog-actions button:active {
    color: #fff;
    background: var(--mk-color-main)
}

.mk-layer-dialog-wrap > .mk-layer-dialog > .mk-layer-dialog-actions button:not(:last-child) {
    margin-right: 5px
}

.mk-layer-dialog-wrap > .mk-layer-dialog > .mk-layer-dialog-actions button.error {
    color: #fff;
    background: #ff5652;
    border-color: #ff5652
}

.mk-layer-dialog-wrap > .mk-layer-dialog .mk-checker-iframe-wrap {
    position: fixed;
    z-index: 999998;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100vw
}

.mk-layer-dialog-wrap > .mk-layer-dialog .mk-checker-iframe-wrap > iframe {
    width: 100%;
    height: 100%;
    border: 0
}

.mk-layer-dialog-wrap > .mk-layer-dialog .mk-checker-iframe-wrap .mk-close-btn {
    z-index: 999999;
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    width: 50px;
    height: 50px;
    align-items: center;
    place-content: center;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    margin-left: 10px
}

.mk-layer-dialog-wrap > .mk-layer-dialog .mk-checker-iframe-wrap .mk-close-btn:hover .mk-icon-close:after {
    background-color: #e81123e6
}

@media only screen and (max-width: 768px) {
    .mk-layer-dialog-wrap > .mk-layer-dialog {
        width: 90% !important
    }
}

.mk-notify {
    display: block;
    overflow: hidden;
    background-color: #2c2c2c;
    color: #fff;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    padding: 5px 15px
}

.mk-notify:not(:last-child) {
    margin-bottom: 3px
}

.mk-notify .mk-notify-content {
    color: #fff
}

.mk-layer-wrap .mk-layer-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99998;
    background: #0000004d
}

.mk-layer-wrap .mk-layer-item {
    position: fixed;
    z-index: 99999;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%
}

.mk-common-action-btn.mk-btn-confirm, .mk-common-action-btn.mk-btn-warn {
    color: var(--mk-color-yellow) !important
}

.mk-common-action-btn.mk-btn-error {
    color: var(--mk-color-red) !important
}

.mk-common-action-btn.mk-btn-success {
    color: var(--mk-color-green) !important
}

img[data-mk-emoticon] {
    max-height: 44px;
    display: initial
}

.mk-slim-scrollbar::-webkit-scrollbar, .mk-editor-plug-emoticons > .mk-grp-wrap::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    background: transparent
}

.mk-slim-scrollbar::-webkit-scrollbar-thumb, .mk-editor-plug-emoticons > .mk-grp-wrap::-webkit-scrollbar-thumb, .mk-slim-scrollbar::-webkit-scrollbar-thumb:window-inactive {
    background: #5656564d
}

.mk-slim-scrollbar::-webkit-scrollbar-thumb:vertical:hover, .mk-editor-plug-emoticons > .mk-grp-wrap::-webkit-scrollbar-thumb:vertical:hover {
    background: #414a52c4
}

.mk-slim-scrollbar::-webkit-scrollbar-thumb:vertical:active, .mk-editor-plug-emoticons > .mk-grp-wrap::-webkit-scrollbar-thumb:vertical:active {
    background: #292f35c4
}

.mk-editor-plug-emoticons {
    height: 100%;
    width: 100%
}

.mk-editor-plug-emoticons > .mk-grp-wrap {
    overflow-y: scroll;
    overflow-x: hidden;
    height: 100%;
    width: 100%
}

.mk-editor-plug-emoticons > .mk-grp-wrap > .mk-grp {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    padding: 5px 10px 35px
}

.mk-editor-plug-emoticons > .mk-grp-wrap > .mk-grp[hidden] {
    display: none
}

.mk-editor-plug-emoticons > .mk-grp-wrap > .mk-grp[data-type=image] > .mk-item {
    height: 46px;
    width: 46px
}

.mk-editor-plug-emoticons > .mk-grp-wrap > .mk-grp > .mk-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    border-radius: 3px;
    font-size: 15px;
    min-width: 35px;
    margin: 2px
}

.mk-editor-plug-emoticons > .mk-grp-wrap > .mk-grp > .mk-item > img {
    max-height: 100%;
    width: auto
}

.mk-editor-plug-emoticons > .mk-grp-wrap > .mk-grp > .mk-item:hover {
    background: var(--mk-color-bg-grey)
}

.mk-editor-plug-emoticons > .mk-grp-switcher {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--mk-color-bg-transl);
    height: 30px;
    border-top: 1px solid var(--mk-color-border);
    border-bottom: 1px solid var(--mk-color-border)
}

.mk-editor-plug-emoticons > .mk-grp-switcher > span {
    -webkit-user-select: none;
    user-select: none;
    padding: 0 10px;
    line-height: 30px;
    float: left;
    display: block;
    cursor: pointer;
    font-size: 14px
}

.mk-editor-plug-emoticons > .mk-grp-switcher > span:hover, .mk-editor-plug-emoticons > .mk-grp-switcher > span.active {
    background: var(--mk-color-bg-grey)
}

.mk-slim-scrollbar::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    background: transparent
}

.mk-slim-scrollbar::-webkit-scrollbar-thumb, .mk-slim-scrollbar::-webkit-scrollbar-thumb:window-inactive {
    background: #5656564d
}

.mk-slim-scrollbar::-webkit-scrollbar-thumb:vertical:hover {
    background: #414a52c4
}

.mk-slim-scrollbar::-webkit-scrollbar-thumb:vertical:active {
    background: #292f35c4
}

.mk-editor-plug-preview {
    overflow-y: scroll;
    overflow-x: hidden;
    height: 100%;
    width: 100%;
    padding: 10px 15px
}

.mk-main-editor > .mk-captcha-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-top: 1px solid var(--mk-color-border)
}

.mk-main-editor > .mk-captcha-row[hidden] {
    display: none
}

.mk-main-editor > .mk-captcha-row img {
    height: 36px;
    width: auto;
    cursor: pointer;
    background: #fff;
    border-radius: 3px
}

.mk-main-editor > .mk-captcha-row input {
    width: 96px;
    height: 30px;
    border: 1px solid var(--mk-color-border);
    border-radius: 3px;
    padding: 0 8px;
    background: var(--mk-color-bg);
    color: var(--mk-color-font);
    outline: none
}
