/*VARIABLES*/
:root {
    /*fonts*/
    --font-small: 0.875em;
    --font-normal: 1em;
    --font-medium: 1.2em;
    --font-large: 1.4em;

    /*weights*/
    --weight-light: 300;
    --weight-normal: 400;
    --weight-bold: 700;
    --weight-black: 900;

    /*border-radius*/
    --radius-normal: 5px;
    --radius-medium: 10px;
    --radius-large: 20px;
    --radius-round: 50%;

    /*index*/
    --index-modal: 9999;
}

*::-webkit-scrollbar-track {
    background-color: #F4F4F4;
}

*::-webkit-scrollbar {
    width: 6px;
    background: #F4F4F4;
}

*::-webkit-scrollbar-thumb {
    background: #dad7d7;
}

.fontzero {
    line-height: 0 !important;
    font-size: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/*DEFAULT LOAD*/
.ajax_load {
    display: flex;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: var(--index-modal);
}

.ajax_load_box {
    margin: auto;
    text-align: center;
    color: #ffffff;
    font-weight: var(--weight-bold);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.ajax_load_box_circle {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}

.ajax_load_box_circle div {
    position: absolute;
    top: 27px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.ajax_load_box_circle div:nth-child(1) {
    left: 6px;
    animation: lds-ellipsis1 0.6s infinite;
}

.ajax_load_box_circle div:nth-child(2) {
    left: 6px;
    animation: lds-ellipsis2 0.6s infinite;
}

.ajax_load_box_circle div:nth-child(3) {
    left: 26px;
    animation: lds-ellipsis2 0.6s infinite;
}

.ajax_load_box_circle div:nth-child(4) {
    left: 45px;
    animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(19px, 0);
    }
}


@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    50% {
        box-shadow: 0 -2px 4px rgba(255, 255, 255, 0.2);
        opacity: .7;
    }
    100% {
        transform: rotate(360deg);
    }
}

.ajax_load_box_title {
    margin-top: 20px;
}


/*Alert*/
.trigger_notify_box {
    position: fixed;
    top: 0;
    right: 0;
    width: 380px;
    max-width: 90%;
    padding-top: 15px;
    padding-right: 15px;
    z-index: 999999999;
}

.trigger_notify_timer {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 8%;
    background: rgba(0, 0, 0, .3);
}

.trigger_notify {
    display: flex;
    align-content: center;
    position: relative;
    right: -380px;
    padding: 2px 0;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8em;
    overflow: hidden;
    margin-bottom: 15px;
    opacity: 0;
}

.trigger_notify_seticon {
    display: flex;
    padding: 15px;
    vertical-align: middle !important;
    font-size: 1.8em;
    line-height: 1;
    color: #fff;
    opacity: 0.8;
    flex: 0;
}

.trigger_notify_seticon * {
    display: block;
    margin: auto;
}

.trigger_notify_content {
    position: relative;
    /*background: rgba(255, 255, 255, 0.96);*/
    color: #fbfbfb;
    padding: 15px;
    border-top-right-radius: 2%;
    border-bottom-right-radius: 2%;
    margin-right: 1px;
    flex: 1;
}

.trigger_notify_content_title {
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 5px;
    line-height: 1.3;
}

.trigger_notify_content_desc {
    font-size: 0.875em;
    font-weight: 300;
}

.trigger_notify_content_close {
    position: absolute;
    right: 1px;
    top: 0;
    padding: 5px;
    color: #333;
}

.trigger_notify.info {
    background-color: #53b1da;
    color: #333;
}

.trigger_notify.success {
    background-color: #41d492;
    color: #333;
}

.trigger_notify.warning {
    background: #f2b51d;
    color: #333;
}

.trigger_notify.error {
    background: #f26666;
    color: #333;
}

.trigger_notify.dark {
    background: #a877b5;
    color: #333;
}

.htmlcontent {
    font-size: 1em;
    line-height: 1.5em;
    color: #444;
    word-break: break-word;
}

.htmlcontent h2,
.htmlcontent h3,
.htmlcontent h4,
.htmlcontent h5 {
    /*padding: 20px 30px*/
    margin-top: 15px;
}

.htmlcontent h2{
    font-size: 1.8em;
    font-weight: 500 !important;
}

.htmlcontent h3 {
    font-size: 1.6em;
    font-weight: 500 !important;
}

.htmlcontent h4 {
    font-size: 1.4em;
    font-weight: 500 !important;
}

.htmlcontent h5 {
    font-size: 1.2em;
    font-weight: 500 !important;
}

.htmlcontent p {
    padding: 8px 5px;
    margin-bottom: 5px;
}

.htmlcontent ul {
    padding: 15px 60px;
    list-style: disc;
}

.htmlcontent ol {
    padding: 0 40px;
}

.htmlcontent pre {
    font-family: "Source Code Pro", serif;
    font-size: 1rem;
    padding: 30px;
    margin: 30px 0;
}

.htmlcontent img {
    width: 100%;
    height: auto;
}

.htmlcontent a:hover {
    text-decoration: none;
}

.htmlcontent iframe {
    width: 100%;
    border: none;
}

.htmlcontent .btn.btn-link{
    margin: 0!important;
    padding: 0!important;
}