@charset "utf-8";
/*
* extend.css
*/
/* loader */
#loader {
    transition: all 0.3s ease-in-out;
    opacity: 1;
    visibility: visible;
    position: fixed;
    height: 100vh;
    width: 100%;
    background: #fff;
    z-index: 90000;
}
#loader.fadeOut {
    opacity: 0;
    visibility: hidden;
}
.spinner {
    width: 40px;
    height: 40px;
    position: absolute;
    top: calc(50% - 20px);
    left: calc(50% - 20px);
    background-color: #333;
    border-radius: 100%;
    -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
    animation: sk-scaleout 1.0s infinite ease-in-out;
}
@-webkit-keyframes sk-scaleout {
    0% { -webkit-transform: scale(0) }
    100% {
        -webkit-transform: scale(1.0);
        opacity: 0;
    }
}
@keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    } 100% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
        opacity: 0;
    }
}

/*
 * Customization
 */
 /* parts */
#mainContent i{
    margin-right: 0.3rem;
}
.img_thumb{
    width: 5.0rem;
    height: auto;
}
.nav-item > a span.active{
    color: #313435;
    font-weight: bold;
}
.table td{
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* sortable */
.sortable_ghost{
    background-color: #d3eafd;
}

/* ckeditor */
div.ck-editor__editable{
    height: 700px;
}
div.ck-editor__editable p{
    margin-bottom: 0;
}
div.ck-editor__editable_inline{
    overflow-y: hidden scroll;
}

/* ckeditor */
div.ck-content{
    height: 700px;
    overflow-y: hidden scroll;
}
div.ck-content p{
    margin-bottom: 0;
}
div.ck-content a{
    text-decoration: underline;
}