.editorjs-wrapper {
    max-width: 1462px;
    margin: auto;
    text-align: initial;
    text-align-last: initial;
}

.ce-block__content,
.ce-toolbar__content {
    max-width: 100%;
}

h1.ce-header, 
h2.ce-header, 
h3.ce-header {
    color: #13b5e6; 
}

.blog-btn {
    display: inline-block;
    position: relative;
    color: white;
    text-decoration: none !important;
    border-radius: 0.8em;
    white-space: nowrap;
    margin: auto;
    padding: 0.8em;
    min-width: 13em;
    font-size: 1.2em;
    font-weight: 300;
    border: 0;
    background-color: #13b5e6 !important;
}
/* ---------------------------------------------------
                    MAIN
----------------------------------------------------*/
#blog_wrapper{
    width: 100%;
}
.ce-block__content {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.ce-block {
    direction: ltr;
}

.ce-block:lang(ar) {
    direction: rtl;
}

.ce-paragraph {
    line-height: 1.6em;
    outline: none;
}

.ce-header {
    padding: 1em 0;
    margin: 0;
    margin-bottom: -0.9em;
    line-height: 1.5em;
    outline: none;
}

.cdx-block {
    padding: .4em 0;
}

.tc-editor {
    left: 0;
}

/* ---------------------------------------------------
                    TABLE
----------------------------------------------------*/

.tc-wrap {
    --color-background: #f9f9fb;
    --color-text-secondary: #7b7e89;
    --color-border: #e8e8eb;
    --cell-size: 34px;
    --toolbox-icon-size: 18px;
    --toolbox-padding: 6px;
    --toolbox-aiming-field-size: calc(var(--toolbox-icon-size) + var(--toolbox-padding)*2);
    border-left: 0;
    position: relative;
    height: 100%;
    width: 100%;
    margin-top: var(--toolbox-icon-size);
    box-sizing: border-box;
    display: grid;
    grid-template-columns: calc(100% - var(--cell-size)) var(--cell-size);
}

.tc-table {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    font-size: 14px;
    border-top: 1px solid var(--color-border);
    border-left: 1px solid var(--color-border);
    line-height: 1.4;
}

.tc-row {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(10px,1fr));
    position: relative;
    border-bottom: 1px solid var(--color-border);
}

.tc-table--heading .tc-row:first-child {
    font-weight: 600;
    border-bottom: 2px solid var(--color-border);
}

.tc-cell {
    border-right: 1px solid var(--color-border);
    padding: 6px 12px;
    overflow: hidden;
    outline: none;
    line-break: normal;
}



/* ---------------------------------------------------
                    DELIMITER
----------------------------------------------------*/

.ce-delimiter {
    line-height: 1.6em;
    width: 100%;
    text-align: center;
}

.ce-delimiter:before {
    display: inline-block;
    content: "***";
    font-size: 30px;
    line-height: 65px;
    height: 30px;
    letter-spacing: 0.2em;
}

/* ---------------------------------------------------
                    CHECKLIST
----------------------------------------------------*/

.cdx-checklist__item {
    display: flex;
    padding: 0 10px;
    box-sizing: content-box;
}

.cdx-checklist__item-text {
    outline: none;
    flex-grow: 1;
    padding: 10px 0;
}

.cdx-checklist__item-checkbox {
    display: inline-block;
    flex-shrink: 0;
    position: relative;
    width: 20px;
    height: 20px;
    margin: 10px 10px 10px 0;
    border-radius: 50%;
    border: 1px solid #d0d0d0;
    background: #fff;
    cursor: initial !important;
    user-select: none;
}

.cdx-checklist__item-checkbox:hover {
    border-color: #b5b5b5;
}

.cdx-checklist__item-checkbox::after {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 8px;
    height: 5px;
    border: 2px solid #fcfff4;
    border-top: none;
    border-right: none;
    background: transparent;
    content: '';
    opacity: 0;
    transform: rotate(-45deg);
}

.cdx-checklist__item--checked .cdx-checklist__item-checkbox {
    background: #388ae5;
    border-color: #388ae5;
}

.cdx-checklist__item--checked .cdx-checklist__item-checkbox:hover {
    background: #307cd1;
}

.cdx-checklist__item--checked .cdx-checklist__item-checkbox::after {
    opacity: 1;
}


/* ---------------------------------------------------
                    IMAGE
----------------------------------------------------*/

.ce-block--stretched .ce-block__content {
    max-width: none;
}

.image-tool {
    --bg-color: #cdd1e0;
    --front-color: #388ae5;
    --border-color: #e8e8eb;
}

.image-tool__image {
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 10px;
}
.image-tool--withBackground .image-tool__image {
    padding: 15px;
    background: var(--bg-color);
}
.image-tool--withBorder .image-tool__image {
    border: 1px solid var(--border-color);
}

.image-tool--stretched .image-tool__image-picture {
    width: 100%;
}
.image-tool--withBackground .image-tool__image-picture {
    max-width: 60%;
    margin: 0 auto;
}
.image-tool__image-picture {
    max-width: 100%;
    vertical-align: bottom;
    display: block;
}

.image-tool__caption {
    font-style: italic;
    font-size: 0.9em;
}


/* ---------------------------------------------------
                    LIST
----------------------------------------------------*/

.cdx-list {
    margin: 0px;
    padding-left: 40px;
    outline: none;
}

.cdx-list__item {
    padding: 5.5px 0px 5.5px 3px;
    line-height: 1.6em;
}

.cdx-list--unordered {
    list-style: disc;
}

.cdx-list--ordered {
    list-style: decimal;
}

/* ---------------------------------------------------
                    ALIGNMENT
----------------------------------------------------*/

.ce-paragraph--left {
    text-align: left;
}

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

.ce-paragraph--right {
    text-align: right;
}


.ce-paragraph--justify {
    text-align: justify;
}

.ce-header--left {
    text-align: left;
}

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

.ce-header--right {
    text-align: right;
}

.ce-header--justify {
    text-align: justify;
}

/* ---------------------------------------------------
                    ANY BUTTON
----------------------------------------------------*/

.anyButtonContainer__anyButtonHolder {
    text-align: center;
    margin: 40px 0;
}

/* ---------------------------------------------------
                    Quote
----------------------------------------------------*/

.ce-quote__content{
    display: flex;
    justify-content: center;
    align-items: center;
}

.cdx-quote {
    display: inline-block;
    margin: 20px auto;
    padding: 0 20px;;
}

.cdx-quote__text {
    text-align: left;
    margin-bottom: 10px;
}

.cdx-quote__caption {
    text-align: right;
}

/* ---------------------------------------------------
                    LinkTool
----------------------------------------------------*/

.link-tool {
    position: relative;
}

.link-tool__content--rendered {
    background: #fff;
    border: 1px solid rgba(201,201,204,.48);
    box-shadow: 0 1px 3px #0000001a;
    border-radius: 6px;
    will-change: filter;
    animation: link-in .45s 1 cubic-bezier(.215,.61,.355,1);
}

.link-tool__content {
    display: block;
    padding: 25px;
    border-radius: 2px;
    box-shadow: 0 0 0 2px #fff;
    color: initial!important;
    text-decoration: none!important;
}

.link-tool__title {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.5em;
    margin: 0 0 10px;
}

.link-tool__description {
    margin: 0 0 20px;
    font-size: 15px;
    line-height: 1.55em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.link-tool__anchor {
    display: block;
    font-size: 15px;
    line-height: 1em;
    color: #888!important;
    border: 0!important;
    padding: 0!important;
}

.link-tool__image {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0 0 0 30px;
    width: 65px;
    height: 65px;
    border-radius: 3px;
    float: right;
}

/* ---------------------------------------------------
                    Embed
----------------------------------------------------*/

.embed-tool__content {
    width: 100%;
}

.embed-tool__caption {
    margin-top: 7px;
    font-style: italic;
    font-size: 0.9em;
}