/*
 * CKEditor 5 (v35.3.2) content styles.
 * Generated on Mon, 28 Nov 2022 06:15:20 GMT.
 * For more information, check out https://ckeditor.com/docs/ckeditor5/latest/installation/advanced/content-styles.html
 */

:root {
    --ck-color-image-caption-background: hsl(0, 0%, 97%);
    --ck-color-image-caption-text: hsl(0, 0%, 20%);
    --ck-color-mention-background: hsla(341, 100%, 30%, 0.1);
    --ck-color-mention-text: hsl(341, 100%, 30%);
    --ck-color-table-caption-background: hsl(0, 0%, 97%);
    --ck-color-table-caption-text: hsl(0, 0%, 20%);
    --ck-highlight-marker-blue: hsl(201, 97%, 72%);
    --ck-highlight-marker-green: hsl(120, 93%, 68%);
    --ck-highlight-marker-pink: hsl(345, 96%, 73%);
    --ck-highlight-marker-yellow: hsl(60, 97%, 73%);
    --ck-highlight-pen-green: hsl(112, 100%, 27%);
    --ck-highlight-pen-red: hsl(0, 85%, 49%);
    --ck-image-style-spacing: 1.5em;
    --ck-inline-image-style-spacing: calc(var(--ck-image-style-spacing) / 2);
    --ck-todo-list-checkmark-size: 16px;
}

/* ckeditor5-basic-styles/theme/code.css */
.ck-content code {
    background-color: hsla(0, 0%, 78%, 0.3);
    padding: .15em;
    border-radius: 2px;
}
/* ckeditor5-font/theme/fontsize.css */
.ck-content .text-tiny {
    font-size: .7em;
}
/* ckeditor5-font/theme/fontsize.css */
.ck-content .text-small {
    font-size: .85em;
}
/* ckeditor5-font/theme/fontsize.css */
.ck-content .text-big {
    font-size: 1.4em;
}
/* ckeditor5-font/theme/fontsize.css */
.ck-content .text-huge {
    font-size: 1.8em;
}
/* ckeditor5-block-quote/theme/blockquote.css */
.ck-content blockquote {
    padding: 10px;
    border: 2px solid #c3e5f8;
    display: block;
    overflow: hidden;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 15px;
    border-radius: 5px;
    background-color: #dbedf9;
}
.ck-content blockquote p {
    margin-bottom: 0;
}
/* ckeditor5-block-quote/theme/blockquote.css */
.ck-content[dir="rtl"] blockquote {
    border-left: 0;
    border-right: solid 5px hsl(0, 0%, 80%);
}
/* ckeditor5-highlight/theme/highlight.css */
.ck-content .marker-yellow {
    background-color: var(--ck-highlight-marker-yellow);
}
/* ckeditor5-highlight/theme/highlight.css */
.ck-content .marker-green {
    background-color: var(--ck-highlight-marker-green);
}
/* ckeditor5-highlight/theme/highlight.css */
.ck-content .marker-pink {
    background-color: var(--ck-highlight-marker-pink);
}
/* ckeditor5-highlight/theme/highlight.css */
.ck-content .marker-blue {
    background-color: var(--ck-highlight-marker-blue);
}
/* ckeditor5-highlight/theme/highlight.css */
.ck-content .pen-red {
    color: var(--ck-highlight-pen-red);
    background-color: transparent;
}
/* ckeditor5-highlight/theme/highlight.css */
.ck-content .pen-green {
    color: var(--ck-highlight-pen-green);
    background-color: transparent;
}
/* ckeditor5-image/theme/image.css */
.ck-content .image {
    display: table;
    clear: both;
    text-align: center;
    margin: 0.9em auto;
    min-width: 50px;
}
/* ckeditor5-image/theme/image.css */
.ck-content .image img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    min-width: 100%;
    border-radius: 5px;
}
/* ckeditor5-image/theme/image.css */
.ck-content .image-inline {
    /*
     * Normally, the .image-inline would have "display: inline-block" and "img { width: 100% }" (to follow the wrapper while resizing).;
     * Unfortunately, together with "srcset", it gets automatically stretched up to the width of the editing root.
     * This strange behavior does not happen with inline-flex.
     */
    display: inline-flex;
    max-width: 100%;
    align-items: flex-start;
}
/* ckeditor5-image/theme/image.css */
.ck-content .image-inline picture {
    display: flex;
}
/* ckeditor5-image/theme/image.css */
.ck-content .image-inline picture,
.ck-content .image-inline img {
    flex-grow: 1;
    flex-shrink: 1;
    max-width: 100%;
}
/* ckeditor5-image/theme/imagecaption.css */
.ck-content .image > figcaption {
    display: table-caption;
    caption-side: bottom;
    word-break: break-word;
    color: var(--ck-color-image-caption-text);
    background-color: var(--ck-color-image-caption-background);
    padding: .6em;
    font-size: .75em;
    outline-offset: -1px;
}
/* ckeditor5-image/theme/imageresize.css */
.ck-content .image.image_resized {
    max-width: 100%;
    display: block;
    box-sizing: border-box;
}
/* ckeditor5-image/theme/imageresize.css */
.ck-content .image.image_resized img {
    width: 100%;
}
/* ckeditor5-image/theme/imageresize.css */
.ck-content .image.image_resized > figcaption {
    display: block;
}
/* ckeditor5-image/theme/imagestyle.css */
.ck-content .image-style-block-align-left,
.ck-content .image-style-block-align-right {
    max-width: calc(100% - var(--ck-image-style-spacing));
}
/* ckeditor5-image/theme/imagestyle.css */
.ck-content .image-style-align-left,
.ck-content .image-style-align-right {
    clear: none;
}
/* ckeditor5-image/theme/imagestyle.css */
.ck-content .image-style-side {
    float: right;
    margin-left: var(--ck-image-style-spacing);
    max-width: 50%;
}
/* ckeditor5-image/theme/imagestyle.css */
.ck-content .image-style-align-left {
    float: left;
    margin-right: var(--ck-image-style-spacing);
}
/* ckeditor5-image/theme/imagestyle.css */
.ck-content .image-style-align-center {
    margin-left: auto;
    margin-right: auto;
}
/* ckeditor5-image/theme/imagestyle.css */
.ck-content .image-style-align-right {
    float: right;
    margin-left: var(--ck-image-style-spacing);
}
/* ckeditor5-image/theme/imagestyle.css */
.ck-content .image-style-block-align-right {
    margin-right: 0;
    margin-left: auto;
}
/* ckeditor5-image/theme/imagestyle.css */
.ck-content .image-style-block-align-left {
    margin-left: 0;
    margin-right: auto;
}
/* ckeditor5-image/theme/imagestyle.css */
.ck-content p + .image-style-align-left,
.ck-content p + .image-style-align-right,
.ck-content p + .image-style-side {
    margin-top: 0;
}
/* ckeditor5-image/theme/imagestyle.css */
.ck-content .image-inline.image-style-align-left,
.ck-content .image-inline.image-style-align-right {
    margin-top: var(--ck-inline-image-style-spacing);
    margin-bottom: var(--ck-inline-image-style-spacing);
}
/* ckeditor5-image/theme/imagestyle.css */
.ck-content .image-inline.image-style-align-left {
    margin-right: var(--ck-inline-image-style-spacing);
}
/* ckeditor5-image/theme/imagestyle.css */
.ck-content .image-inline.image-style-align-right {
    margin-left: var(--ck-inline-image-style-spacing);
}
/* ckeditor5-language/theme/language.css */
.ck-content span[lang] {
    font-style: italic;
}
/* ckeditor5-list/theme/todolist.css */
.ck-content .todo-list {
    list-style: none;
}
/* ckeditor5-list/theme/todolist.css */
.ck-content .todo-list li {
    margin-bottom: 5px;
}
/* ckeditor5-list/theme/todolist.css */
.ck-content .todo-list li .todo-list {
    margin-top: 5px;
}
/* ckeditor5-list/theme/todolist.css */
.ck-content .todo-list .todo-list__label > input {
    -webkit-appearance: none;
    display: inline-block;
    position: relative;
    width: var(--ck-todo-list-checkmark-size);
    height: var(--ck-todo-list-checkmark-size);
    vertical-align: middle;
    border: 0;
    left: -25px;
    margin-right: -15px;
    right: 0;
    margin-left: 0;
}
/* ckeditor5-list/theme/todolist.css */
.ck-content .todo-list .todo-list__label > input::before {
    display: block;
    position: absolute;
    box-sizing: border-box;
    content: '';
    width: 100%;
    height: 100%;
    border: 1px solid hsl(0, 0%, 20%);
    border-radius: 2px;
    transition: 250ms ease-in-out box-shadow, 250ms ease-in-out background, 250ms ease-in-out border;
}
/* ckeditor5-list/theme/todolist.css */
.ck-content .todo-list .todo-list__label > input::after {
    display: block;
    position: absolute;
    box-sizing: content-box;
    pointer-events: none;
    content: '';
    left: calc( var(--ck-todo-list-checkmark-size) / 3 );
    top: calc( var(--ck-todo-list-checkmark-size) / 5.3 );
    width: calc( var(--ck-todo-list-checkmark-size) / 5.3 );
    height: calc( var(--ck-todo-list-checkmark-size) / 2.6 );
    border-style: solid;
    border-color: transparent;
    border-width: 0 calc( var(--ck-todo-list-checkmark-size) / 8 ) calc( var(--ck-todo-list-checkmark-size) / 8 ) 0;
    transform: rotate(45deg);
}
/* ckeditor5-list/theme/todolist.css */
.ck-content .todo-list .todo-list__label > input[checked]::before {
    background: hsl(126, 64%, 41%);
    border-color: hsl(126, 64%, 41%);
}
/* ckeditor5-list/theme/todolist.css */
.ck-content .todo-list .todo-list__label > input[checked]::after {
    border-color: hsl(0, 0%, 100%);
}
/* ckeditor5-list/theme/todolist.css */
.ck-content .todo-list .todo-list__label .todo-list__label__description {
    vertical-align: middle;
}
/* ckeditor5-media-embed/theme/mediaembed.css */
.ck-content .media {
    clear: both;
    margin: 0.9em 0;
    display: block;
    min-width: 15em;
}
/* ckeditor5-page-break/theme/pagebreak.css */
.ck-content .page-break {
    position: relative;
    clear: both;
    padding: 5px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* ckeditor5-page-break/theme/pagebreak.css */
.ck-content .page-break::after {
    content: '';
    position: absolute;
    border-bottom: 2px dashed hsl(0, 0%, 77%);
    width: 100%;
}
/* ckeditor5-page-break/theme/pagebreak.css */
.ck-content .page-break__label {
    position: relative;
    z-index: 1;
    padding: .3em .6em;
    display: block;
    text-transform: uppercase;
    border: 1px solid hsl(0, 0%, 77%);
    border-radius: 2px;
    font-family: Helvetica, Arial, Tahoma, Verdana, Sans-Serif;
    font-size: 0.75em;
    font-weight: bold;
    color: hsl(0, 0%, 20%);
    background: hsl(0, 0%, 100%);
    box-shadow: 2px 2px 1px hsla(0, 0%, 0%, 0.15);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
/* ckeditor5-table/theme/tablecaption.css */
.ck-content .table > figcaption {
    display: table-caption;
    caption-side: top;
    word-break: break-word;
    text-align: center;
    color: var(--ck-color-table-caption-text);
    background-color: var(--ck-color-table-caption-background);
    padding: .6em;
    font-size: .75em;
    outline-offset: -1px;
}
/* ckeditor5-table/theme/tablecolumnresize.css */
.ck-content .table .ck-table-resized {
    table-layout: fixed;
}
/* ckeditor5-table/theme/tablecolumnresize.css */
.ck-content .table table {
    overflow: hidden;
}
/* ckeditor5-table/theme/tablecolumnresize.css */
.ck-content .table td,
.ck-content .table th {
    position: relative;
}
/* ckeditor5-table/theme/table.css */
.ck-content .table {
    margin: 0.9em auto;
    display: table;
}
/* ckeditor5-table/theme/table.css */
.ck-content .table table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    height: 100%;
    border: 1px double hsl(0, 0%, 70%);
}
/* ckeditor5-table/theme/table.css */
.ck-content .table table td,
.ck-content .table table th {
    min-width: 2em;
    padding: .4em;
    border: 1px solid hsl(0, 0%, 75%);
}
/* ckeditor5-table/theme/table.css */
.ck-content .table table th {
    font-weight: bold;
    background: hsla(0, 0%, 0%, 5%);
}
/* ckeditor5-table/theme/table.css */
.ck-content[dir="rtl"] .table th {
    text-align: right;
}
/* ckeditor5-table/theme/table.css */
.ck-content[dir="ltr"] .table th {
    text-align: left;
}
/* ckeditor5-code-block/theme/codeblock.css */
.ck-content pre {
    padding: 1em;
    color: hsl(0, 0%, 20.8%);
    background: hsla(0, 0%, 78%, 0.3);
    border: 1px solid hsl(0, 0%, 77%);
    border-radius: 2px;
    text-align: left;
    direction: ltr;
    tab-size: 4;
    white-space: pre-wrap;
    font-style: normal;
    min-width: 200px;
}
/* ckeditor5-code-block/theme/codeblock.css */
.ck-content pre code {
    background: unset;
    padding: 0;
    border-radius: 0;
}
/* ckeditor5-horizontal-line/theme/horizontalline.css */
.ck-content hr {
    margin: 15px 0;
    height: 4px;
    background: hsl(0, 0%, 87%);
    border: 0;
}
/* ckeditor5-list/theme/liststyles.css */
.ck-content ol {
    list-style-type: decimal;
}
/* ckeditor5-list/theme/liststyles.css */
.ck-content ol ol {
    list-style-type: lower-latin;
}
/* ckeditor5-list/theme/liststyles.css */
.ck-content ol ol ol {
    list-style-type: lower-roman;
}
/* ckeditor5-list/theme/liststyles.css */
.ck-content ol ol ol ol {
    list-style-type: upper-latin;
}
/* ckeditor5-list/theme/liststyles.css */
.ck-content ol ol ol ol ol {
    list-style-type: upper-roman;
}
/* ckeditor5-list/theme/liststyles.css */
.ck-content ul {
    list-style-type: disc;
}
/* ckeditor5-list/theme/liststyles.css */
.ck-content ul ul {
    list-style-type: disc;
}
/* ckeditor5-list/theme/liststyles.css */
.ck-content ul ul ul {
    list-style-type: square;
}
/* ckeditor5-list/theme/liststyles.css */
.ck-content ul ul ul ul {
    list-style-type: square;
}
/* ckeditor5-mention/theme/mention.css */
.ck-content .mention {
    background: var(--ck-color-mention-background);
    color: var(--ck-color-mention-text);
}

.sidebar-blog {
    padding: 15px;
}
.sidebar-blog > h5{
    border-bottom: 1px solid rgba(0, 0, 0, .125);
    padding-bottom: 15px;
}
.sidebar-blog .list-group ul {
    padding: 0 15px 0 15px;
    line-height: 32px;
}
.sidebar-blog .list-group {
    border-top: none;
}
.post-thumb {
    overflow: hidden;
    position: relative;
}
.post-thumb img, .post-thumb:hover img {
    transition: all 600ms;
    border-radius: 5px;
}
.post-thumb img {
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    display: inline-block;
}
.post-title {
    min-height: 20px;
    font-weight: 600;
    color: #161616;
    letter-spacing: -.01em;
    font-size: 1.2rem;
    line-height: 1.4;
    padding-top: 10px;
    margin: 0;
}
.right .post-title {
    font-size: 16px;
}
.left .post-title {
    font-size: 1.5rem;
}

.post-title, .post-description {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
}
.left .post-description {
    font-size: 14px;
}
.post-thumb:hover img {
    transform: scale(1.15);
}

.post-thumb img, .post-thumb:hover img {
    transition: all 600ms;
    border-radius: 5px;
}
.post-item a {
    color: #2F2F2F;
}
.post-meta-below {
    display: -ms-flex;
    display: -moz-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: .7rem 0;
    font-size: 14px;
    padding: 5px 0;
}
.post-meta-below a {
    display: inline-flex;
    align-items: center;
    font-weight: 400;
    color: #757575;
    font-size: 14px;
    white-space: nowrap;
}
.post-meta-below a i {
    margin-right: .1rem;
}
.article-blog .post-meta {
    padding: 10px;
    background: #fff;
}
.post-meta-below a time {
    font-size: 14px;
}
.article-blog .title-header {
    display: inline-block;
    border-bottom: 2px solid #eee;
    position: relative;
    text-transform: uppercase;
}
.article-blog .title-header:after {
    content: "";
    display: block;
    width: 20%;
    height: 2px;
    background: #1f59b8;
    bottom: -2px;
    position: absolute;
    z-index: 1;
    left: 40%;
}
.bg_button_color {
    background: #1f59b8;
    color: #fff;
    border-color: #1f59b8;
}
.bg_button_color:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
}
.article-box-register {
    background: #DFEEFE;
    border: 1px dotted #e1e1e1;
    padding: 25px 15px 30px 15px;
    margin-bottom: 15px;
    border-radius: 30px;
}
.article-box-register .article-register__title {
    margin: 0;
    padding: 0;
    color: #084895;
    font-size: 19px;
    font-weight: 700;
}
.article-box-register h5.mb-2 {
    color: #084895;
    padding: 20px 15px 15px 15px;
    margin-bottom: 8px;
}
.article-box-register h5.mb-4 {
    color: #004392;
}
.article-box-register a.bg_button_color {
    padding: 15px 45px;
    font-size: 1.2rem;
}
.articleRelate h5 {
    padding: 10px 0;
    font-size: 1rem;
    text-transform: uppercase;
    border-bottom: solid 1px #084895;
}
@media print {
    /* ckeditor5-page-break/theme/pagebreak.css */
    .ck-content .page-break {
        padding: 0;
    }
    /* ckeditor5-page-break/theme/pagebreak.css */
    .ck-content .page-break::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .articleRelate .post-item {
        display: flex;
    }
    .articleRelate .post-item .post-thumb {
        flex: 0 0 42%;
        padding-right: 15px;
    }
    .articleRelate .post-item .post-meta .post-title {
        margin: 0;
        padding: 0;
    }
    .right .post-title {
        font-size: 1.5rem;
    }
}
a img {
    border-radius: 5px;
}
.sidebar-blog .list-group li a {
    color: #2F2F2F;
}
.sidebar-blog .list-group li a:hover {
    color: #0056b3;
}
.articleSectionMenuBox > p {
    position: relative;
    margin: 0;
    line-height: 1.5;
    padding: 10px;
}
.articleSectionMenuBox > p .showHideArticleSectionMenu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    cursor: pointer;
}
.boxContentGuide {
    display: none;
    padding-left: 30px;
}
.articleSectionMenuBox > p > strong:first-child {
    font-size: 22px !important;
    color: #333;
}
.articleSectionMenuBox > p > strong:first-child:before {
    font-family: "Font Awesome 5 Pro";
    content: "\f0c9";
    margin-right: 10px;
}
.articleSectionMenuBox .boxContentGuide > p {
    margin-bottom: 10px;
    line-height: 23px;
}
.articleSectionMenuBox .boxContentGuide > p a {
    font-size: 14px !important;
    font-weight: 700;
    color: #333;
    text-decoration: none;
}
.detail-content h1, .detail-content .h1 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
}
.detail-content h2, .detail-content .h2 {
    font-size: 28px;
}
.detail-content .h3, .detail-content h3 {
    font-size: 26px;
}
.articleSectionMenuBox {
    background: rgba(243, 243, 243, 0.95) !important;
    border: 1px solid rgba(10, 28, 52, 0.95) !important;
    border-radius: 7px !important;
    margin-bottom: 15px;
}
.articleSectionMenuBox .boxContentGuide > p a:hover {
    color: #0056b3;
}
.detail-content.ck-content p {
    text-align: justify;
}
.list-group .category-blog {
    padding: 5px 30px 0 30px;
}
.category-blog .menu-child {
    padding-left: 1rem;
    display: none;
}
.category-blog li {
    padding: 5px 0;
}
.category-blog .open-cate-child {
    z-index: 2;
}
.category-blog .lvl1 .icon {
    position: absolute;
    right: 0;
    z-index: 1;
}

@media (min-width: 768px) {
    .boxContentGuide {
        padding-left: 10px;
    }

    .articleSectionMenuBox {
        padding-left: 25px;
        background-color: #fff !important;
        border: none !important;
        border-radius: 0 !important;
    }

    .articleSectionMenuBox > p > strong:first-child {
        font-size: 22px !important;
        color: #333;
    }
    .articleSectionMenuBox > p > strong:first-child:before {
        margin-right: 10px;
    }
    .articleSectionMenuBox .boxContentGuide > p {
        margin-bottom: 0;
        line-height: 20px;
        padding: 6px 0;
        border-top: 1px solid #e7e7e7;
    }

    .articleSectionMenuBox .boxContentGuide > p:first-child {
        border-color: #0b5eb8;
        border-width: 3px
    }


    .articleSectionMenuBox .boxContentGuide > p:not(.font-weight-bold) a {
        text-decoration: none;
        font-weight: normal !important;
    }

    .articleSectionMenuBox .boxContentGuide > p:not(.font-weight-bold) a.active, .articleSectionMenuBox .boxContentGuide > p a:hover {
        font-weight: bold !important;
    }

    .articleSectionMenuBox .boxContentGuide a.active {
        color: #0b5eb8;
    }
}
