/* ----------------------------------------------------------------
	Custom CSS
-----------------------------------------------------------------*/

/**************************************************************************************************************************/
/** Overwrite button **/
/**************************************************************************************************************************/
.btn_three {
    color: #fff;
    background: #e62237;
    border-radius: 3px;
    padding: 15px 30px;
    border: 1px solid #e62237;
    margin-top: 50px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    cursor: pointer;
    display: inline-block;
}

.btn_three:hover {
    color: #e62237;
    /*background: transparent;*/
    background: #fff;
    border-color: #e62237;
}

/** Button default **/
.btn_three.btn-default {
    color: #FFFFFF;
    background-color: #BFBFBF;
    border-color: #BFBFBF;
}

.btn_three.btn-default:hover {
    color: #212529;
    background-color: #e2e6ea;
    border-color: #dae0e5;
}

/** Button info **/
.btn_three.btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn_three.btn-primary:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
}

/** Button info **/
.btn_three.btn-info {
    color: #fff;
    background-color: #5bc0de;
    border-color: #46b8da;
}

.btn_three.btn-info:hover {
    color: #fff;
    background-color: #31b0d5;
    border-color: #269abc;
}

/** Button dark **/
.btn_three.btn-dark {
    color: #fff;
    background-color: #13110c;
    border-color: #000000;
}

.btn_three.btn-dark:hover {
    color: #fff;
    background-color: #000000;
    border-color: #13110c;
}

.btn_three i {
    font-size: 10px;
    margin-right: 10px;
}

/** button secondary **/
.btn_secondary {
    color: #fff;
    background: #f8636b;
    border-radius: 3px;
    padding: 15px 30px;
    border: 1px solid #f8636b;
    margin-top: 50px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    cursor: pointer;
    display: inline-block;
}

.btn_secondary:hover {
    color: #f8636b;
    /*background: transparent;*/
    background: #fff;
    border-color: #f8636b;
}

/** button primary **/
.btn-primary {

}

/** button default **/
.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}

/** Button success **/
.btn_three.btn-success {
    color: #fff;
    background-color: #49C71D;
    border-color: #49C71D;
}

    .btn_three.btn-success:hover {
        color: #fff;
        background-color: #28a745;
        border-color: #28a745;
    }

/***button with bottom line***/
.btn-bottom-line {
    color: #ccc !important;
    border-bottom: 1px solid;
    border-bottom-color: #ccc;
}

.btn-bottom-line.btn-bottom-line-danger {
    color: #e62237 !important;
    border-bottom: 1px solid;
    border-bottom-color: #e62237;
}

/**************************************************************************************************************************/
/** Form **/
/**************************************************************************************************************************/
.text_box.normal input[type="text"],
.text_box.normal textarea,
.text_box.normal input[type="password"],
.text_box.normal input[type="email"] {
    font: 400 15px/60px "Poppins", sans-serif;
    color: #222d39;
    height: 50px;
    border-radius: 4px;
    background-color: white;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, 0.3);
    box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, 0.3);
    width: 100%;
    border: 1px solid #fff;
    padding-left: 25px;
}

.text_box.normal textarea {
    height: auto !important;
}

/**************************************************************************************************************************/
/** Overwrite alert **/
/**************************************************************************************************************************/
.alert.alert_custom {
    font-size: 14px;
    padding: 15px 15px;
    margin-bottom: 0;
    margin-top: 5px;
    line-height: 16px;
}

.alert.alert_custom i {
    float: unset;
    font-size: 16px;
    line-height: 24px !important;
    margin-right: 10px !important;
}

/**************************************************************************************************************************/
/** Text **/
/**************************************************************************************************************************/
.text-highlight {
    color: #e62237 !important;
    font-weight: 700 !important;
}

/**************************************************************************************************************************/
/** Nav header **/
/**************************************************************************************************************************/
.header_area.header_area_white {
    width: 100%;
    height: 100px !important;
    background-color: white;
    -webkit-box-shadow: 0px 4px 6px 0px rgba(12, 0, 46, 0.06);
    box-shadow: 0px 4px 6px 0px rgba(12, 0, 46, 0.06);
}

@media (max-width: 992px) {
    .header_area.header_area_white {
        height: auto !important;
    }
}

.menu > .nav-item + .nav-item {
    margin-left: 25px;
}

@media (max-width:992px) {

    .menu > .nav-item + .nav-item {
        margin-left: 0;
    }
}

/**************************************************************************************************************************/
/** pnotify **/
/**************************************************************************************************************************/
.ui-pnotify .alert {
    font-size: 14px;
}

.ui-pnotify .alert .ui-pnotify-title {
    padding-left: 26px;
    font-size: 20px;
    margin-bottom: 15px;
}

.ui-pnotify .alert .ui-pnotify-text {
    margin-top: -5px;
    font-size: 14px;
    line-height: 18px;
}

/****************************************************************************************************************************
 * Loading
 ****************************************************************************************************************************/
/* When the body has the loading class, scrollbar off with overflow:hidden */
body.loading {
    overflow: hidden;
}

/* When the body has the loading class, modal element will be visible */
body.loading .loading-overlay {
    display: block;
}

.loading-overlay {
    display: none;
    position: fixed;
    z-index: 299999;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(255,255,255, 0.5) url('../../img/Rolling-1s-64px.gif') 50% 50% no-repeat;
}

/**************************************************************************************************************************/
/** Whatapps **/
/**************************************************************************************************************************/
.whatsapp_chat__widget {
    display: inline-block;
    position: fixed;
    bottom: 30%;
    z-index: 11000;
    right: 0px;
    left: auto;
}

.whatsapp_chat__wrapper {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 12px 24px 0px;
    display: flex;
    flex-direction: column;
    width: 100%;
    width: 360px;
    background-color: rgb(255, 255, 255);
    transform: translate3d(0px, 0px, 0px);
    opacity: 1;
    pointer-events: all;
    visibility: hidden;
    touch-action: auto;
    margin-bottom: 96px;
    position: fixed;
    bottom: 60px;
    right: 0px;
    left: auto;
    margin-right: 16px;
    border-radius: 10px;
    overflow: hidden;
    transition: opacity 0.3s ease 0s, margin 0.3s ease 0s, visibility 0.3s ease 0s;
}

.whatsapp_chat__wrapper.whatsapp_chat__hidden {
    opacity: 0; /** Default hide **/
}

@media (max-width: 768px) {
    .whatsapp_chat__wrapper {
        width: 90%;
    }
}

.whatsapp_chat__closebtn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    opacity: 0.4;
    cursor: pointer;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    transition: all 0.3s ease 0s;
    outline: transparent;
}

    .whatsapp_chat__closebtn::before {
        transform: rotate(45deg);
    }

    .whatsapp_chat__closebtn::after {
        transform: rotate(-45deg);
    }

    .whatsapp_chat__closebtn::before,
    .whatsapp_chat__closebtn::after {
        content: "";
        position: absolute;
        width: 12px;
        height: 2px;
        background-color: rgb(255, 255, 255);
        display: block;
        border-radius: 2px;
    }

/** Whatsapp header **/
.whatsapp_chat__header {
    color: rgb(17, 17, 17);
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    background: rgb(9, 94, 84);
    padding: 24px 20px;
}

    .whatsapp_chat__header .user_image_component {
        width: 52px;
        height: 52px;
        display: block;
        position: relative;
        flex-shrink: 0;
    }

        .whatsapp_chat__header .user_image_component::before {
            content: "";
            bottom: 0px;
            right: 0px;
            width: 12px;
            height: 12px;
            box-sizing: border-box;
            background-color: rgb(74, 213, 4);
            display: block;
            position: absolute;
            z-index: 1;
            border-radius: 50%;
            border-width: 2px;
            border-style: solid;
            border-color: rgb(9, 94, 84);
            border-image: initial;
        }

.user_image_image_container {
    height: 100%;
    width: 100%;
    position: relative;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    overflow: hidden;
    border-radius: 50%;
}

    .user_image_image_container::after {
        top: 0px;
        left: 0px;
        right: 0px;
        bottom: 0px;
        position: absolute;
        content: "";
        border-radius: 50%;
        border-width: 1px;
        border-style: solid;
        border-color: rgba(0, 0, 0, 0.1);
        border-image: initial;
        overflow: hidden;
    }

.user_image_image {
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;
    background-size: cover;
    background-image: url(../../img/helpdesk.png);
    background-position: center center;
    background-repeat: no-repeat;
}

.header_user_info_component {
    margin-left: 16px;
    margin-right: 16px;
}

.header_user_name {
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    color: rgb(255, 255, 255);
}

.header_user_answer_time {
    font-size: 13px;
    line-height: 18px;
    margin-top: 4px;
    color: rgb(255, 255, 255);
}

/** Whatsapp chat component **/

.whatsapp_chat__component {
    background-color: rgb(230, 221, 212);
    position: relative;
    padding: 20px 20px 20px 10px;
}

    .whatsapp_chat__component::before {
        display: block;
        position: absolute;
        content: "";
        left: 0px;
        top: 0px;
        height: 100%;
        width: 100%;
        z-index: 0;
        opacity: 0.08;
        background-image: url(../../img/whatsapp.png);
    }

.whatsapp_chat__message_container {
    display: flex;
    z-index: 1;
}

.whatsapp_chat__dots_component {
    background-color: rgb(255, 255, 255);
    width: 52.5px;
    height: 32px;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    margin-left: 10px;
    opacity: 0;
    z-index: 1;
    box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
    border-radius: 16px;
    transition: all 0.1s ease 0s;
}

.whatsapp_chat__dots_component_inner {
    position: relative;
    display: flex;
}

.whatsapp_chat__dots_dot {
    height: 5px;
    width: 5px;
    display: inline-block;
    position: relative;
    top: 0px;
    margin: 0px 2px;
    border-radius: 50%;
    background-color: rgb(158, 157, 162);
    animation: whatapps_dots_animation 1.6s infinite;
}

.whatsapp_chat__dots_dot_one {
}

.whatsapp_chat__dots_dot_two {
    animation-delay: .2s;
}

.whatsapp_chat__dots_dot_three {
    animation-delay: .4s;
}

@-webkit-keyframes whatapps_dots_animation {
    0% {
        opacity: 0.2;
    }
    50% {
        opacity: 1.0;
    }
    100% {
        opacity: 0.2;
    }
}

@keyframes whatapps_dots_animation {
    0% {
        opacity: 0.2;
    }
    50% {
        opacity: 1.0;
    }
    100% {
        opacity: 0.2;
    }
}

.whatsapp_chat__message_single {
    background-color: rgb(255, 255, 255);
    position: relative;
    opacity: 0;
    transform-origin: center top;
    z-index: 2;
    box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
    margin-top: 4px;
    margin-left: -54px;
    max-width: calc(100% - 66px);
    padding: 7px 14px 6px;
    border-radius: 0px 8px 8px;
    transition: all 0.3s ease 0s;
}

.whatsapp_chat__message_single::before {
    position: absolute;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAmCAMAAADp2asXAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAACQUExURUxpccPDw9ra2m9vbwAAAAAAADExMf///wAAABoaGk9PT7q6uqurqwsLCycnJz4+PtDQ0JycnIyMjPf3915eXvz8/E9PT/39/RMTE4CAgAAAAJqamv////////r6+u/v7yUlJeXl5f///5ycnOXl5XNzc/Hx8f///xUVFf///+zs7P///+bm5gAAAM7Ozv///2fVensAAAAvdFJOUwCow1cBCCnqAhNAnY0WIDW2f2/hSeo99g1lBYT87vDXG8/6d8oL4sgM5szrkgl660OiZwAAAHRJREFUKM/ty7cSggAABNFVUQFzwizmjPz/39k4YuFWtm55bw7eHR6ny63+alnswT3/rIDzUSC7CrAziPYCJCsB+gbVkgDtVIDh+DsE9OTBpCtAbSBAZSEQNgWIygJ0RgJMDWYNAdYbAeKtAHODlkHIv997AkLqIVOXVU84AAAAAElFTkSuQmCC);
    background-size: contain;
    content: "";
    top: 0px;
    left: -12px;
    width: 12px;
    height: 19px;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

.whatsapp_chat__message_single_author {
    font-size: 13px;
    font-weight: 700;
    line-height: 18px;
    color: rgba(0, 0, 0, 0.4);
}

.whatsapp_chat__message_single_text {
    font-size: 14px;
    line-height: 19px;
    margin-top: 4px;
    color: rgb(17, 17, 17);
}

.whatsapp_chat__message_single_time {
    text-align: right;
    margin-top: 4px;
    font-size: 12px;
    line-height: 16px;
    color: rgba(17, 17, 17, 0.5);
    margin-right: -8px;
    margin-bottom: -4px;
    letter-spacing: 1px;
}

.whatsapp_chat__start_chat_btn {
    color: rgb(255, 255, 255);
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
    cursor: pointer;
    position: relative;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    -webkit-appearance: none;
    padding: 8px 12px;
    border-radius: 20px;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    background: rgb(79, 206, 93);
    margin: 20px;
    overflow: hidden;
}

.whatsapp_chat__start_chat_btn::before {
    content: "";
    position: absolute;
    display: block;
    opacity: 0;
    transform: scale(1);
    background-color: rgb(0, 0, 0);
    z-index: 0;
    width: 10px;
    height: 10px;
    bottom: -5px;
    transition: all 0.2s ease 0s;
    border-radius: 20px;
}

.whatsapp_chat__start_chat_btn:hover {
    color: #fff;
    text-decoration: underline;
}

.whatsapp_chat__bubble_component {
    height: 60px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 12px;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    cursor: pointer;
    user-select: none;
    position: relative;
    background-color: rgb(255, 255, 255);
    margin-bottom: 16px;
    margin-right: 16px;
    margin-left: 16px;
    width: 60px;
    border-radius: 50%;
    outline: transparent;
}

.whatsapp_chat__bubble_component::before {
    content: "";
    width: 10px;
    height: 10px;
    background-color: rgb(255, 0, 0);
    display: block;
    position: absolute;
    z-index: 1;
    right: 4px;
    top: 4px;
    border-radius: 50%;
}

.whatsapp_chat__bubble_icon_component {
    display: flex;
}

.whatsapp_chat__bubble_text {
    display: block;
    color: rgb(79, 206, 93);
}

/**************************************************************************************************************************/
/** Marquee **/
/**************************************************************************************************************************/
.marquee {
    width: 100%;
    overflow: hidden;
}

ul.marquee li {
    display: inline-block;
    padding: 7px 20px;
    font-size: 13px;
    color: #fff;
}

/**************************************************************************************************************************/
/** Arrow indicator - animation **/
/**************************************************************************************************************************/
.arrow__indicator {
    position: relative;
    width: 15px;
    height: 15px;
}

.arrow__indicator.left {
    transform: rotate(135deg);
}

.arrow__indicator.right {
    transform: rotate(-45deg);
}

.arrow__indicator span {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border: none;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    animation: animate 1s linear infinite;
}

    .arrow__indicator span:nth-child(1) {
        top: -10px;
        left: -10px;
        animation-delay: 0s;
    }

    .arrow__indicator span:nth-child(2) {
        top: -5px;
        left: -5px;
        animation-delay: 0.2s;
    }

    .arrow__indicator span:nth-child(3) {
        top: 0;
        left: 0;
        animation-delay: 0.4s;
    }

    .arrow__indicator span:nth-child(4) {
        top: 5px;
        left: 5px;
        animation-delay: 0.6s;
    }

    .arrow__indicator span:nth-child(5) {
        top: 10px;
        left: 10px;
        animation-delay: 0.8s;
    }


@keyframes animate {
    0% {
        border-color: #e62237;
        transform: translate(0,0);
    }

    20% {
        border-color: red;
        transform: translate(5px, 5px);
    }

    20.1%,100% {
        border-color: #f8636b;
    }
}

/**************************************************************************************************************************/
/** Photo swipe **/
/**************************************************************************************************************************/
.pswp__img {
    object-fit: contain !important;
}

/**************************************************************************************************************************/
/** Tab line **/
/**************************************************************************************************************************/
/* Tabs panel */
.tabbable-panel {
    padding: 10px;
}

/* Default mode */
.tabbable-line > .nav-tabs {
    border: none;
    margin: 0px;
}

    .tabbable-line > .nav-tabs > li {
        margin-right: 2px;
    }

        .tabbable-line > .nav-tabs > li > a {
            border: 0;
            margin-right: 0;
            color: #737373;
            padding: 10px 20px;
            display: block;
        }

            .tabbable-line > .nav-tabs > li > a:hover {
                border-bottom: 4px solid #fbcdcf;
            }

            .tabbable-line > .nav-tabs > li > a.active {
                border-bottom: 4px solid #f3565d !important;
                position: relative;
                border: 0;
                color: #333333;
            }

.tabbable-line > .tab-content {
    margin-top: -3px;
    border: 0;
    border-top: none;
    padding: 25px 0;
}

/**************************************************************************************************************************/
/** pnotify notification **/
/**************************************************************************************************************************/
/* Notification */
.ui-pnotify {
    right: 15px;
    top: 15px;
}

    .ui-pnotify .notification {
        border-radius: 5px;
        box-shadow: none;
        padding: 15px 15px 15px 75px;
        z-index: 10004;
    }

        .ui-pnotify .notification .ui-pnotify-icon {
            left: 0;
            position: absolute;
            top: 0;
            width: 75px;
            text-align: center;
        }

            .ui-pnotify .notification .ui-pnotify-icon > span {
                border: 2px solid #FFF;
                border-radius: 50%;
                display: inline-block;
                float: none;
                font-size: 35px;
                height: 50px;
                line-height: 48px;
                margin: 8px 0 0;
                padding: 0;
                width: 50px;
                text-align: center;
            }

        .ui-pnotify .notification .ui-pnotify-title {
            font-size: 14px;
            letter-spacing: 0;
            color: inherit;
            margin-bottom: .4em;
        }

        .ui-pnotify .notification .ui-pnotify-text {
            font-size: 12px;
            line-height: 1.3em;
            padding-left: 0;
        }

        .ui-pnotify .notification.notification-danger .ui-pnotify-icon > span.fa-times {
            line-height: 47px;
        }

    .ui-pnotify .ui-pnotify-shadow {
        box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.4);
    }

    .ui-pnotify.ui-pnotify-no-icon .notification {
        padding-left: 15px;
    }

    .ui-pnotify .ui-pnotify-sharp {
        border-radius: 0;
    }

body .ui-pnotify.icon-nb .notification .ui-pnotify-icon > span {
    border-color: transparent;
    border-radius: 0;
}

.ui-pnotify.stack-bar-top {
    right: 0;
    top: 0 !important;
    z-index: 300000;
}

    .ui-pnotify.stack-bar-top .notification {
        border-radius: 0;
    }

        .ui-pnotify.stack-bar-top .notification .ui-pnotify-icon > span {
            margin-top: 7px;
        }

.ui-pnotify.stack-bar-bottom {
    bottom: 0;
    left: auto;
    margin-left: 15%;
    right: auto;
    top: auto;
}

    .ui-pnotify.stack-bar-bottom .notification {
        border-radius: 0;
    }

        .ui-pnotify.stack-bar-bottom .notification .ui-pnotify-icon > span {
            margin-top: 9px;
        }

.ui-pnotify.click-2-close {
    cursor: pointer;
}

/* Notification States */
.ui-pnotify .notification-primary {
    background: rgba(204, 204, 204, 0.95);
    color: rgba(255, 255, 255, 0.7);
}

    .ui-pnotify .notification-primary .ui-pnotify-icon > span {
        border-color: rgba(255, 255, 255, 0.7);
    }

.ui-pnotify.stack-bar-top .notification-primary, .ui-pnotify.stack-bar-bottom .notification-primary {
    background: #CCC;
}

.ui-pnotify.notification-primary .notification,
.ui-pnotify.notification-primary .notification-primary {
    background: rgba(204, 204, 204, 0.95);
    color: rgba(255, 255, 255, 0.7);
}

    .ui-pnotify.notification-primary .notification .ui-pnotify-icon > span,
    .ui-pnotify.notification-primary .notification-primary .ui-pnotify-icon > span {
        border-color: rgba(255, 255, 255, 0.7);
    }

.ui-pnotify.notification-primary.stack-bar-top .notification,
.ui-pnotify.notification-primary.stack-bar-top .notification-primary, .ui-pnotify.notification-primary.stack-bar-bottom .notification,
.ui-pnotify.notification-primary.stack-bar-bottom .notification-primary {
    background: #CCC;
}

.ui-pnotify .notification-success {
    background: rgba(71, 164, 71, 0.95);
    color: rgba(255, 255, 255, 0.7);
}

    .ui-pnotify .notification-success .ui-pnotify-icon > span {
        border-color: rgba(255, 255, 255, 0.7);
    }

.ui-pnotify.stack-bar-top .notification-success, .ui-pnotify.stack-bar-bottom .notification-success {
    background: #47a447;
}

.ui-pnotify.notification-success .notification,
.ui-pnotify.notification-success .notification-success {
    background: rgba(71, 164, 71, 0.95);
    color: rgba(255, 255, 255, 0.7);
}

    .ui-pnotify.notification-success .notification .ui-pnotify-icon > span,
    .ui-pnotify.notification-success .notification-success .ui-pnotify-icon > span {
        border-color: rgba(255, 255, 255, 0.7);
    }

.ui-pnotify.notification-success.stack-bar-top .notification,
.ui-pnotify.notification-success.stack-bar-top .notification-success, .ui-pnotify.notification-success.stack-bar-bottom .notification,
.ui-pnotify.notification-success.stack-bar-bottom .notification-success {
    background: #47a447;
}

.ui-pnotify .notification-warning {
    background: rgba(237, 156, 40, 0.95);
    color: rgba(255, 255, 255, 0.7);
}

    .ui-pnotify .notification-warning .ui-pnotify-icon > span {
        border-color: rgba(255, 255, 255, 0.7);
    }

.ui-pnotify.stack-bar-top .notification-warning, .ui-pnotify.stack-bar-bottom .notification-warning {
    background: #ed9c28;
}

.ui-pnotify.notification-warning .notification,
.ui-pnotify.notification-warning .notification-warning {
    background: rgba(237, 156, 40, 0.95);
    color: rgba(255, 255, 255, 0.7);
}

    .ui-pnotify.notification-warning .notification .ui-pnotify-icon > span,
    .ui-pnotify.notification-warning .notification-warning .ui-pnotify-icon > span {
        border-color: rgba(255, 255, 255, 0.7);
    }

.ui-pnotify.notification-warning.stack-bar-top .notification,
.ui-pnotify.notification-warning.stack-bar-top .notification-warning, .ui-pnotify.notification-warning.stack-bar-bottom .notification,
.ui-pnotify.notification-warning.stack-bar-bottom .notification-warning {
    background: #ed9c28;
}

.ui-pnotify .notification-danger {
    background: rgba(210, 50, 45, 0.95);
    color: rgba(255, 255, 255, 0.7);
}

    .ui-pnotify .notification-danger .ui-pnotify-icon > span {
        border-color: rgba(255, 255, 255, 0.7);
    }

.ui-pnotify.stack-bar-top .notification-danger, 
.ui-pnotify.stack-bar-bottom .notification-danger {
    /*background: #d2322d;*/
    background: rgba(210, 50, 45, 0.95);
}

.ui-pnotify.notification-danger .notification,
.ui-pnotify.notification-danger .notification-danger {
    background: rgba(210, 50, 45, 0.95);
    color: rgba(255, 255, 255, 0.7);
}

    .ui-pnotify.notification-danger .notification .ui-pnotify-icon > span,
    .ui-pnotify.notification-danger .notification-danger .ui-pnotify-icon > span {
        border-color: rgba(255, 255, 255, 0.7);
    }

.ui-pnotify.notification-danger.stack-bar-top .notification,
.ui-pnotify.notification-danger.stack-bar-top .notification-danger, .ui-pnotify.notification-danger.stack-bar-bottom .notification,
.ui-pnotify.notification-danger.stack-bar-bottom .notification-danger {
    background: #d2322d;
}

.ui-pnotify .notification-info {
    background: rgba(91, 192, 222, 0.95);
    color: rgba(255, 255, 255, 0.7);
}

    .ui-pnotify .notification-info .ui-pnotify-icon > span {
        border-color: rgba(255, 255, 255, 0.7);
    }

.ui-pnotify.stack-bar-top .notification-info, .ui-pnotify.stack-bar-bottom .notification-info {
    background: #5bc0de;
}

.ui-pnotify.notification-info .notification,
.ui-pnotify.notification-info .notification-info {
    background: rgba(91, 192, 222, 0.95);
    color: rgba(255, 255, 255, 0.7);
}

    .ui-pnotify.notification-info .notification .ui-pnotify-icon > span,
    .ui-pnotify.notification-info .notification-info .ui-pnotify-icon > span {
        border-color: rgba(255, 255, 255, 0.7);
    }

.ui-pnotify.notification-info.stack-bar-top .notification,
.ui-pnotify.notification-info.stack-bar-top .notification-info, .ui-pnotify.notification-info.stack-bar-bottom .notification,
.ui-pnotify.notification-info.stack-bar-bottom .notification-info {
    background: #5bc0de;
}

.ui-pnotify .notification-dark {
    background: rgba(23, 23, 23, 0.95);
    color: rgba(255, 255, 255, 0.7);
}

    .ui-pnotify .notification-dark .ui-pnotify-icon > span {
        border-color: rgba(255, 255, 255, 0.7);
    }

.ui-pnotify.stack-bar-top .notification-dark, .ui-pnotify.stack-bar-bottom .notification-dark {
    background: #171717;
}

.ui-pnotify.notification-dark .notification,
.ui-pnotify.notification-dark .notification-dark {
    background: rgba(23, 23, 23, 0.95);
    color: rgba(255, 255, 255, 0.7);
}

    .ui-pnotify.notification-dark .notification .ui-pnotify-icon > span,
    .ui-pnotify.notification-dark .notification-dark .ui-pnotify-icon > span {
        border-color: rgba(255, 255, 255, 0.7);
    }

.ui-pnotify.notification-dark.stack-bar-top .notification,
.ui-pnotify.notification-dark.stack-bar-top .notification-dark, .ui-pnotify.notification-dark.stack-bar-bottom .notification,
.ui-pnotify.notification-dark.stack-bar-bottom .notification-dark {
    background: #171717;
}

/* Notification Responsive */
@media only screen and (max-width: 767px) {
    html > body > .ui-pnotify {
        bottom: auto !important;
        left: 0 !important;
        margin: 0 !important;
        right: 0 !important;
        top: 60px !important;
        width: auto !important;
    }

        html > body > .ui-pnotify .notification {
            border-radius: 0 !important;
            height: auto !important;
            position: static !important;
            width: 100%;
        }

            html > body > .ui-pnotify .notification .ui-pnotify-title,
            html > body > .ui-pnotify .notification .ui-pnotify-text {
                padding-right: 35px !important;
            }

            html > body > .ui-pnotify .notification .ui-pnotify-sticker {
                display: none !important;
            }

            html > body > .ui-pnotify .notification .ui-pnotify-closer {
                display: block !important;
                font-size: 24px !important;
                visibility: visible !important;
            }
}

/**************************************************************************************************************************/
/** croppie image **/
/**************************************************************************************************************************/
.croppie-container .cr-slider-wrap {
    width: 75%;
    margin: 10px auto;
    text-align: center;
}

/**************************************************************************************************************************/
/** Crop image **/
/**************************************************************************************************************************/
.modal#cropImageModal {
    z-index: 1100;
}

/**************************************************************************************************************************/
/** Modal **/
/**************************************************************************************************************************/
.modal .close {
    font-weight: 100;
}

.modal-dialog {
    margin-top: 10px;
    margin-bottom: 10px;
    display: -webkit-box;
    display: flex;
    width: calc(100% - 15px);
    /*margin: 5px;*/
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4), 0 6px 20px 0 rgba(0, 0, 0, 0.7);
}

@media (max-width:992px) {

    .modal .modal-dialog {
        margin-top: 78px;
    }
}

.modal-content {
    margin-top: auto;
    margin-bottom: auto;
    border: none;
}

.modal-header,
.modal-footer {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.modal-body > .close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.5rem 0.75rem;
    z-index: 1;
}

.modal.fade:not(.modal-top):not(.modal-bottom) .modal-dialog {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.modal-top .modal-content {
    margin-top: 3rem;
}

.modal-bottom.modal.fade .modal-dialog {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    overflow: hidden;
}

    .modal-bottom.modal.fade .modal-dialog .modal-content {
        margin-bottom: 0;
        -webkit-transform: translate(0, 100%);
        transform: translate(0, 100%);
        -webkit-transition: 0.3s ease-out;
        transition: 0.3s ease-out;
    }

.modal-bottom.modal.show .modal-dialog .modal-content {
    margin-bottom: 3rem;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
}

.modal-footer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    justify-content: center;
    padding: 1rem;
    padding-top: 0;
    padding-bottom: 2.2rem;
    /*border-top: 1px solid #e9ecef;*/
    border-top: none;
}

/**Bootstrap Modal Dynamic Width***/
.modal-dialog.modal-dyn-size {
    position: relative;
    display: table;
    overflow: auto;
    width: auto;
    min-width: 300px;
    margin: 0 auto;
}

@media (max-width: 992px) {

    .modal .modal-dialog.modal-dyn-size {
        margin-top: 78px;
    }
}

/* Restrict Modal width to 90% */
.modal-dialog.modal-dyn-size .modal-body {
    overflow-x: auto !important;
    max-width: 90vw !important;
}

/** Modal content custom **/
.modal_content_custom {
    padding: 25px 15px 20px;
}

    .modal_content_custom h4 {
        color: #e62237;
        margin: 15px 0;
    }

    .modal_content_custom p {
        margin-bottom: 0;
        font-size: 14px;
        color: #000;
        line-height: 22px;
        text-align: center;
        padding: 0 15px;
    }

@media (max-width: 480px) {

    .modal_content_custom .modal-footer button.btn {
        padding: 10px 15px;
        font-size: 12px;
    }
}

@media (max-width: 320px) {

    .modal_content_custom .modal-footer button.btn {
        padding: 10px 8px;
        font-size: 11px;
    }
}

/**************************************************************************************************************************/
/** Modal upload image **/
/**************************************************************************************************************************/
#cropImageModal .crop_img_modal_form,
#cropUserProfileAvaterImageModal .crop_img_modal_form {
    padding: 15px;
}

#cropImageModal .crop_img_title,
#cropUserProfileAvaterImageModal .crop_img_title {
    text-align: center;
    padding: 30px 15px 10px;
}

#cropImageModal .crop_img_title h4,
#cropUserProfileAvaterImageModal .crop_img_title h4 {
    font-size: 1.4rem;
}

@media (max-width: 992px) {

    #cropImageModal .crop_img_title h4,
    #cropUserProfileAvaterImageModal .crop_img_title h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {

    #cropImageModal .crop_img_title h4,
    #cropUserProfileAvaterImageModal .crop_img_title h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {

    #cropImageModal .crop_img_title,
    #cropUserProfileAvaterImageModal .crop_img_title {
        padding: 25px 0 10px;
    }

        #cropImageModal .crop_img_title h4,
        #cropUserProfileAvaterImageModal .crop_img_title h4 {
            font-size: 1.1rem;
        }
}

#cropImageModal button.btn_three,
#cropUserProfileAvaterImageModal button.btn_three {
    margin: 2px;
    padding: 15px 20px;
}

/**************************************************************************************************************************/
/** Bootbox **/
/**************************************************************************************************************************/
.bootbox-content-wrapper {
    padding: 25px 15px 20px;
}

.bootbox-content-wrapper h4 {
    color: #e62237;
    margin: 15px 0;
    font-size: 18px;
    line-height: 24px;
}

.bootbox-content-wrapper p {
    margin-bottom: 0;
    color: #000;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    padding: 0 15px;
}

@media (max-width: 480px) {

    .bootbox-content-wrapper h4 {
        font-size: 14px;
        line-height: 20px;
    }

    .bootbox-content-wrapper p {
        font-size: 12px;
        line-height: 18px;
    }

    .bootbox .modal-footer button.btn {
        padding: 10px 15px;
        font-size: 12px;
    }
}

@media (max-width: 320px) {

    .bootbox .modal-footer button.btn {
        padding: 10px 8px;
        font-size: 11px;
    }
}

/**************************************************************************************************************************/
/** Dummy loading **/
/**************************************************************************************************************************/
.loading_dummy_text_box.loading {
    display: inline-block;
    height: 1em;
    position: relative;
    overflow: hidden;
    /*background-color: #DDDBDD;*/
    background-color: #f5f5f5;
}

.loading_dummy_text_box.loading::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.2)), to(transparent));
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
    animation: shimmer 1.5s infinite;
    content: '';
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

/**************************************************************************************************************************/
/** Verticle tab custom **/
/**************************************************************************************************************************/
.verticle_tab_custom_wrapper {
    display: flex;
}

.verticle_tab_custom_style.nav-tabs {
    border-bottom: none;
    margin: 0 auto;
    margin-bottom: 45px;
}

    .verticle_tab_custom_style.nav-tabs .nav-item.show .nav-link,
    .verticle_tab_custom_style.nav-tabs .nav-link.active {
        color: #000;
        background-color: transparent;
        border-bottom: 4px solid #e62237 !important;
        font-size: 20px;
        font-weight: bold;
    }

    .verticle_tab_custom_style.nav-tabs .nav-link {
        border: 1px solid transparent;
        border-top-left-radius: .25rem;
        border-top-right-radius: .25rem;
        border-bottom: 1px solid #dee2e6;
        color: #D0D0D0;
        font-size: 20px;
        font-weight: 600;
    }

    .verticle_tab_custom_style.nav-tabs .nav-item.nav-link {
        /*-ms-flex: 1 1 auto;
        flex: 1 1 auto;*/
        flex: unset;
        text-align: center;
    }

.verticle_tab_custom_content_wrapper {
    width: 100%;
}

/**************************************************************************************************************************/
/** Table custom **/
/**************************************************************************************************************************/
table.ebm_table_custom {
    width: 100%;
}

table.ebm_table_custom tbody tr {
    border: 1px solid #000;
    border-left: none;
    border-right: none;
}

table.ebm_table_custom tbody tr td {
    padding: 8px;
    font-size: 14px;
    line-height: 22px;
    color: #000;
}

table.ebm_table_custom tbody tr td span.label {
    margin-left: 10px;
}

table.ebm_table_custom tbody tr td img {
    height: 30px;
}

table.ebm_table_custom tbody tr td a.ebm_tbl_view_btn {
    margin: 0 10px;
    color: #FE4647;
}

table.ebm_table_custom tbody tr td a.ebm_tbl_cancel_btn {
    margin: 0 10px;
    color: #9E9E9E;
    text-decoration: underline;
}

/** (<480px) **/
@media (max-width: 480px) {

    table.ebm_table_custom tbody tr td {
        padding: 8px;
        font-size: 12px;
        color: #000;
        line-height: 18px;
    }

    table.ebm_table_custom tbody tr td img {
        height: 20px;
    }
}

/**************************************************************************************************************************/
/** Wizard **/
/**************************************************************************************************************************/
.stepwizard-step p {
    margin-top: 0;
    color: #666;
}

.stepwizard-row {
    display: table-row;
}

.stepwizard {
    display: table;
    width: 100%;
    position: relative;
    margin-top: 32px;
}

.stepwizard-step button[disabled] {
    /*opacity: 1 !important;
        filter: alpha(opacity=100) !important;*/
}

.stepwizard .btn.disabled,
.stepwizard .btn[disabled],
.stepwizard fieldset[disabled] .btn {
    opacity: 1 !important;
    color: #bbb;
}

.stepwizard-row:before {
    top: 14px;
    left: 0;
    right: 0;
    position: absolute;
    content: " ";
    width: 100%;
    height: 1px;
    background: #ccc;
    margin: 0 auto;
    z-index: 0;
}

.stepwizard-step {
    display: table-cell;
    text-align: center;
    position: relative;
}

.stepwizard .btn-active {
    color: #ffffff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    background-color: #e62237;
    border-color: #e62237;
}

.stepwizard .btn-circle {
    width: 30px;
    height: 30px;
    text-align: center;
    padding: 6px 0;
    font-size: 12px;
    line-height: 1.428571429;
    border-radius: 15px;
}

/**************************************************************************************************************************/
/** Popover **/
/**************************************************************************************************************************/
.popover {
    border-radius: 6px;
    border: none;
    box-shadow: 5px 2px 18px 5px rgba(12, 0, 46, .2);
}

.popover.bs-popover-auto[x-placement^="top"] .arrow::after,
.popover.bs-popover-top .arrow::after {
    bottom: 1px;
    border-top-color: #000;
}

    .popover.bs-popover-auto[x-placement^="bottom"] .arrow::after,
    .popover.bs-popover-bottom .arrow::after {
        top: 1px;
        border-bottom-color: #000;
    }

    .popover.bs-popover-auto[x-placement^="left"] .arrow::after,
    .popover.bs-popover-left .arrow::after {
        right: 1px;
        border-left-color: #000;
    }

    .popover.bs-popover-auto[x-placement^="right"] .arrow::after,
    .popover.bs-popover-right .arrow::after {
        left: 1px;
        border-right-color: #000;
    }

.popover-body {
    border: none;
    padding: 20px 49.4px 24px 24px;
    color: #fff;
    font-size: 13px;
    z-index: 2;
    line-height: 1.53;
    letter-spacing: 0.1px;
    background: #000;
    border-radius: 10px;
}

/** (<480px) **/
@media (max-width: 480px) {

    .popover-body {
        padding: 20px 49.4px 24px 24px;
        font-size: 12px;
        line-height: 16px;
    }
}

.popover-close {
    position: absolute;
    top: 10px;
    right: 10px;
    opacity: 1;
    background-color: #fff !important;
    padding: 4px 9px 7px !important;
    border-radius: 50%;
    line-height: 16px;
}

    .popover-close i {
        font-size: 12px;
        font-weight: bold;
        color: #000;
    }

/**************************************************************************************************************************/
/** Section **/
/**************************************************************************************************************************/




