﻿/*Winbox ======================================*/
@import url('nc-lib.css');


.widget-modal * {
    box-sizing: border-box;
}

.widget-modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    background: rgba(0, 0, 0, .50); /*#f5f5f5;*/ /*rgba(0, 0, 0, .85);*/
    opacity: 0;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
}

/* confirm and alerts
-------------------------------------------------------------- */

.widget-modal--confirm .widget-wbox {
    text-align: center;
}

/* modal
-------------------------------------------------------------- */

.widget-modal--noOverlayClose {
    cursor: default;
}

.widget-modal--noClose .nc-wbox-close {
    display: none;
}

.container_dialog {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 100px;
    width: 340px;
    background-color: #fff;
    margin-left: 100px;
}

.bottom-div {
    margin-top: auto;
}

.nc-wbox-close {
    /*position: fixed;*/
    /*top: 4rem;
    right: 2.5rem;*/
    z-index: 1000;
    padding: 0;
    width: 1rem;
    height: 1rem;
    border: none;
    background-color: transparent;
    color: #2c3e50; /*/#fff;* /*#2c3e50;*/
    cursor: pointer;
}

    .nc-wbox-close svg * {
        fill: #2c3e50; /*#fff;*/
        /*fill: currentColor;*/
    }

.nc-wbox-closeLabel {
    display: none;
}

.nc-wbox-close:hover {
    color: #e74c3c;
}

.widget-wbox {
    position: relative;
    flex-shrink: 0;
    margin-top: auto;
    margin-bottom: auto;
    width: 60%;
    border-radius: 4px;
    background: #fff;
    opacity: 1;
    cursor: auto;
    will-change: transform, opacity;
    /*transition: bottom 2.3s ease-in-out 2.3s;*/
}

    .widget-wbox-left {
        width: 30% !important;
        max-width:480px;
        margin-left: 20px;
        margin-right: auto;
    }

.widget-wbox-right {
    width: 30% !important;
    margin-left: auto;
    margin-right: 20px;
}

.widget-wbox-mobile {
    max-width: 450px !important;
    max-height: 600px !important;
}


.widget-wbox-minimize {
    cursor: pointer;
    padding-left: 5px;
    padding-right: 5px;
}

.widget-wbox-minimize-on {
    top: 85% !important;
    bottom: auto !important;
    left: 5% !important;
    right: 60% !important;
    border: dashed 2px #2c3e50 !important;
    background-color: #fff !important;
    /*width: 400px !important;*/
    -webkit-overflow-scrolling: auto !important;
    opacity: 1 !important;
    -webkit-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
}

.widget-wbox-content {
    /*padding: 1rem 1rem;*/
    width: auto;
    margin:5px;
}

.widget-wbox-footer {
    /*padding: 1rem 2rem;*/
    width: auto;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    background-color: #f5f5f5;
    cursor: auto;
}

    .widget-wbox-footer::after {
        display: table;
        clear: both;
        content: "";
    }

.widget-wbox-footer--sticky {
    position: fixed;
    top: 20px; /* TODO : find a better way */
    z-index: 10001;
    opacity: 1;
    transition: top .3s ease-in-out .3s;
}

.widget-wbox-closex {
    float: left;
    margin: 0px 10px;
    border: none;
    /*position: fixed;
    top: 4rem;
    right: 2.5rem;
    z-index: 1000;
    padding: 0;
    width: 1rem;
    height: 1rem;
    border: none;*/
    background-color: transparent;
    color: #0074a2; /*#2c3e50;*/
    cursor: pointer;
}

.widget-wbox-title {
    float: right;
    margin-right: 5px
}

.widget-wbox-header {
    /*padding: 1rem 2rem;*/
    /*padding-bottom:4px;*/
    position:inherit;
    width:auto;
    margin: 5px;
    height: 35px;
    background-color: transparent;
    cursor: auto;
    font-size: 16px;
    font-weight: bold;
    border-bottom: double 6px #15C8D8;
    /*margin-bottom: 2px;*/
    color: #0074a2;
}
/*
    .widget-wbox-header::after {
        display: table;
        clear: both;
        content: "";
    }
*/

.widget-mbox__note {
}

/* state
-------------------------------------------------------------- */
.nc-enabled {
    position: fixed;
    right: 0;
    left: 0;
    overflow: hidden;
}

.widget-modal--visible .widget-wbox-footer {
    bottom: 0;
}

.nc-enabled .nc-content-wrapper {
    filter: blur(8px);
}

.widget-modal--visible {
    visibility: visible;
    opacity: 1;
}

    .widget-modal--visible .widget-wbox {
        animation: scale .4s cubic-bezier(.68, -.55, .265, 1.55) forwards;
    }

.widget-modal--overflow {
    overflow-y: scroll;
    padding-top: 8vh;
}

/* btn
-------------------------------------------------------------- */

.nc-btn {
    display: inline-block;
    margin: 0.5rem;
    padding: 0.5rem 1rem;
    border: none;
    background-color: grey;
    box-shadow: none;
    color: #fff;
    vertical-align: middle;
    text-decoration: none;
    font-size: inherit;
    font-family: inherit;
    line-height: normal;
    cursor: pointer;
    transition: background-color .4s ease;
}

.nc-btn--primary {
    background-color: #3498db;
}

.nc-btn--danger {
    background-color: #e74c3c;
}

.nc-btn--default {
    background-color: #34495e;
}

.nc-btn--pull-left {
    float: left;
}

.nc-btn--pull-right {
    float: right;
}

/* responsive
-------------------------------------------------------------- */

@media (max-width : 540px) {
    .widget-modal {
        top: 0px;
        display: block;
        padding-top: 60px;
        width: 100%;
    }

    .widget-wbox {
        width: auto;
        border-radius: 0;
    }

    .widget-wbox-content {
        overflow-y: scroll;
    }

    .widget-modal--noClose {
        top: 0;
    }

    .widget-modal--noOverlayClose {
        padding-top: 0;
    }

    .widget-wbox-footer .nc-btn {
        display: block;
        float: none;
        margin-bottom: 1rem;
        width: 100%;
    }

    .nc-wbox-close {
        top: 0;
        right: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 60px;
        border: none;
        background-color: #2c3e50;
        box-shadow: none;
        color: #fff;
    }

    .nc-wbox-closeLabel {
        display: inline-block;
        vertical-align: middle;
        font-size: 1.6rem;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    }

    .nc-wbox-closeIcon {
        display: inline-block;
        margin-right: .8rem;
        width: 1.6rem;
        vertical-align: middle;
        font-size: 0;
    }
}

@supports ((-webkit-backdrop-filter: blur(12px)) or (backdrop-filter: blur(12px))) {
    .widget-modal:before {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        content: "";
        /*-webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);*/
        pointer-events: none;
    }

    .nc-enabled .nc-content-wrapper {
        filter: none;
    }
}

/* animations
-------------------------------------------------------------- */

@keyframes scale {
    0% {
        opacity: 0;
        transform: scale(.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/*Winbox ======================================================*/


/*panel======================================================*/

.panel-window-overaly {
    /*background: rgba(242, 242, 242, 0.21);*/ /*rgba(65, 65, 65, 0.57);*/ /*rgba(0,0,0,0.57)*/
    background: #34495e; /*#565c62;*/
    /*position: fixed;*/
    width: 100%;
    height: 100%;
    opacity: 0.4;
    pointer-events: none;
    will-change: opacity;
    transition: opacity 1.333s cubic-bezier(0,0,0.21,1);
}

.panel-window-border {
    margin: 5px auto;
    background-color: #fff;
    direction: rtl;
    opacity: 1;
    z-index: 1;
    /*margin: 5px;*/
    /*max-width: 600px;*/
    width: 99%;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0 0 0.5em black;
    -moz-box-shadow: 0 0 0.5em black;
    box-shadow: 0 0 0.5em black;
}

.panel-window-dialog {
    display: none;
    background-color: #fff;
    direction: rtl;
    opacity: 1;
    z-index: 1000;
    width: 99%;
    margin: 5px auto 5px;
    padding: 5px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    box-shadow: 0px 3px 10px rgba(0, 116, 162, 0.64);
    /*-webkit-box-shadow: 0 0 0.8em black;
    -moz-box-shadow: 0 0 0.8em black;
    box-shadow: 0 0 0.8em black;*/
}

    .panel-window-dialog.show {
        display: block;
        animation: m_fadeIn 0.65s cubic-bezier(0.0, 0.0, 0.2, 1);
    }

.panel-entry {
    background: #FFF;
    /*box-shadow: 0 0 14px rgba(0,0,0,.24), 0 14px 28px rgba(0,0,0,.48);*/
    box-shadow: 0px 3px 10px rgba(0, 116, 162, 0.64);
    min-width: 280px;
    position: absolute;
    left: 50%;
    top: 50%;
    padding: 10px;
    transform: translate(-50%, -50%) translateY(30px);
    transition: transform 0.333s cubic-bezier(0,0,0.21,1) 0.05s;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    font-size: 100%;
    font-family: Arial, Helvetica, sans-serif;
    /*-webkit-box-shadow: 0 0 1em black;
    -moz-box-shadow: 0 0 1em black;
    box-shadow: 0 0 1em black;*/
}

.panel-view {
    margin: 0;
    padding: 0;
}

.panel-view-window {
    /*margin: 0;
    padding: 0;*/
    margin: 5px auto 5px;
    transition: all .2s;
    border-radius: 5px;
    background-color: #fff;
    padding: 10px;
    box-shadow: 0px 3px 10px rgba(0, 116, 162, 0.64);
}

.panel-window {
    width: 99%;
    margin: 5px auto 5px;
    /*padding: 5px;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.16);*/
    transition: all .2s;
    border-radius: 5px;
    background-color: #fff;
    padding: 10px;
    box-shadow: 0px 3px 10px rgba(0, 116, 162, 0.64);
    /*text-decoration: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;*/
}

.panel-window-temp-css {
    /*background-color: #f3f2f2;*/
    /*margin-bottom: 5px;*/
    width: 99%;
    margin: 5px auto 5px;
    padding: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 4px rgba(0,0,0, .75);
    -moz-box-shadow: 0 0 4px rgba(0,0,0, .75);
    box-shadow: 0 0 4px rgba(0,0,0, .75); /*style the text*/
}

.panel-content {
    /*opacity: 1;*/
    /*position:relative;*/
}

.panel-line-header {
    color: #fff;
    background-color: #15c8d8; /*#20a1b5;*/
    border: solid 1px #C7C7C7;
    width: 100%;
    height: 30px;
    line-height: 30px;
    padding: 4px;
    font-size: 14px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

.panel-header {
    background-color: #E8E8E8;
    border: solid 1px #C7C7C7;
    width: 100%;
    height: 30px;
    line-height: 30px;
    /*overflow: auto;*/
    margin-bottom: 5px;
    padding: 0;
    font-size: 14px;
    font-weight: bold;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0 0 4px rgba(0,0,0, .75);
    -moz-box-shadow: 0 0 4px rgba(0,0,0, .75);
    box-shadow: 0 0 4px rgba(0,0,0, .75); /*style the text*/
}

.panel-header-no {
    border-bottom: solid 2px #14c1d0;
    color: #06919d;
    width: 100%;
    height: 30px;
    line-height: 30px;
    /*overflow: auto;*/
    margin-bottom: 5px;
    padding: 0;
    font-size: 14px;
    font-weight: bold;
}


.panel-header a {
    float: left;
    margin: 3px 10px
}

.panel-title {
    float: right;
    margin-right: 5px
}

.panel-absolute {
    position: absolute;
    z-index: 999999;
}

.panel-fixed {
    position: fixed;
    z-index: 999999;
}

.panel-page-header {
    background-color: #fff;
    /*color: #15C8D8;*/
    /*border-bottom: solid 4px #46d6db;*/
    font-size: 16px;
    font-weight: bold;
    /*border:solid 1px red;*/
    height: 25px;
    border-bottom: double 6px #15C8D8;
    /*border-bottom: double 6px #0074a2;*/
    margin-bottom: 2px;
    color: #0074a2;
}

.panel-page-header-temp-css {
    color: #fff;
    background-color: #46d6db; /*#20a1b5;*/
    border: solid 1px #C7C7C7;
    width: 100%;
    height: 30px;
    line-height: 30px;
    /*overflow: visible;*/
    font-size: 16px;
    font-weight: bold;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0 0 4px rgba(0,0,0, .75);
    -moz-box-shadow: 0 0 4px rgba(0,0,0, .75);
    box-shadow: 0 0 4px rgba(0,0,0, .75); /*style the text*/
}

.panel-page-header-error {
    color: #fff;
    background-color: #ee995d;
    border: solid 1px #C7C7C7;
    width: 100%;
    height: 30px;
    line-height: 30px;
    /*overflow: auto;*/
    font-size: 16px;
    font-weight: bold;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0 0 4px rgba(0,0,0, .75);
    -moz-box-shadow: 0 0 4px rgba(0,0,0, .75);
    box-shadow: 0 0 4px rgba(0,0,0, .75); /*style the text*/
}

.panel-area-header {
    /*background-color: #697580;*/
    height: 30px;
    line-height: 30px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border-bottom: double 6px #15C8D8;
    /*border-bottom: double 6px #0074a2;*/
    margin-bottom: 2px;
    color: #0074a2;
}

    .panel-area-header > h3 {
        margin-right: 10px
    }

.panel-area-title {
    background-color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    color: #15C8D8;
    padding-bottom: 5px;
    /*border-bottom: solid 2px #15C8D8;
    margin-bottom:5px;*/
    /*-moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;*/
}

.panel-title-border {
    background-color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    color: #15C8D8;
    border-bottom: solid 2px #15C8D8;
    margin-bottom: 5px;
    /*-moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;*/
}

.panel-area-noborder {
    margin-bottom: 5px;
    padding: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    /*box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.16);*/
    background-color: #fff;
    padding: 10px;
    box-shadow: 0px 3px 6px rgba(0, 116, 162, 0.1);
}

.panel-border {
    padding: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.panel-switch {
    /*background-color: #a7dae5 !important;*/
}

.panel-area-blue {
    margin-bottom: 5px;
    padding: 5px;
    -moz-border-radius: 5px 12px;
    -webkit-border-radius: 5px 12px;
    border-radius: 5px 12px;
    border: solid 3px rgba(148, 194, 237, 0.4); /*#94C2ED;*/
    /*box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.16);*/
    background-color: rgba(148, 194, 237, 0.24);
    /*padding: 10px;*/
    /*box-shadow: 5px 5px 5px 5px rgba(148, 194, 237, 1);*/
}

.panel-area-green {
    margin-bottom: 5px;
    padding: 5px;
    -moz-border-radius: 12px 5px;
    -webkit-border-radius: 12px 5px;
    border-radius: 12px 5px;
    border: solid 3px rgba(134, 187, 113, 0.4); /*#86BB71;*/
    /*box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.16);*/
    background-color: rgba(134, 187, 113, 0.24);
    /*padding: 10px;*/
    /*box-shadow: 5px 5px 5px 5px rgba(134, 187, 113, 1);*/
}

.panel-area {
    margin-bottom: 5px;
    padding: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    /*box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.16);*/
    background-color: #fff;
    /*padding: 10px;*/
    box-shadow: 0px 3px 10px rgba(0, 116, 162, 0.24);
}

.panel-fieldset {
    margin-bottom: 5px;
    margin-top: 10px;
    padding: 0px 8px 1px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: solid 1px #C7C7C7;
    /*box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.16);*/
    background-color: #fff;
}

.panel-fieldset-label {
    background-color: #ffffff;
    /*font-size: 16px;*/
    font-weight: bold;
    color: #0074a2;
    padding: 0 5px 0 5px;
}

.panel-fieldset-title {
    background-color: #ffffff;
    /*font-size: 16px;*/
    font-weight: bold;
    /*color: #15C8D8;*/
    color: #0074a2;
    /*padding-bottom: 5px 10px;*/
    padding: 0 5px 0 5px;
    position: relative;
    top: -10px;
}

.panel-wrapper {
    margin-bottom: 1px;
    margin-top: 1px;
    padding: 5px 5px 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: solid 1px #C7C7C7;
    /*box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.16);*/
    background-color: #fff;
}
.scroll-x-hidden {
    overflow-x: hidden;
}
.overflow-wrap {overflow-y:scroll;height:60px;
    direction: rtl;
    margin: 2px;
    text-align: right;
    word-break: break-word;
    white-space: pre-line;
    /*overflow-wrap: break-word;*/
    -ms-word-break: break-word;
    word-break: break-word;
    /*-ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;*/
}


.panel-picker {
    /*width: 800px;*/
    position: absolute;
    z-index: 1000;
    display: flex;
    background-color: #fff;
}

.panel-picker-visible {
    margin: 10px;
    padding: 10px;
    margin-bottom: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    /*box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.16);*/
    background-color: #fff;
    box-shadow: 0px 3px 10px rgba(0, 116, 162, 0.24);
}

.round4-red {
    border-radius: 15px;
    background: #ff6a00;
    color: #000;
    padding: 3px 5px;
    width: 30px;
    height: 10px;
    font-size: 10px;
}

.strip-border-header {
    padding: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background-color: #0074a2;
    color: #fff;
}

    .strip-border-header.active {
        border: solid 3px #ff6a00;
    }
/*
<div class="fieldset" >
<h1 > <span > Title</span > </h1 >
<p > Content</p >
</div >
*/
/*
    .fieldset {
        border: 1px solid #ddd;
        margin-top: 1em;
        width: 500px;
    }
.fieldset h1 {
    font-size: 12px;
    text-align: center;
}

.fieldset h1 span {
    display: inline;
    border: 1px solid #ddd;
    background: #fff;
    padding: 5px 10px;
    position: relative;
    top: -1.3em;
}
*/
.panel-box {
    padding: 5px;
    box-shadow: 0px 3px 10px rgba(0, 116, 162, 0.24);
}

.panel-area-temp-css {
    /*background-color: #f3f2f2;*/
    margin-bottom: 5px;
    padding: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 4px rgba(0,0,0, .75);
    -moz-box-shadow: 0 0 4px rgba(0,0,0, .75);
    box-shadow: 0 0 4px rgba(0,0,0, .75); /*style the text*/
}

.panel-confirm {
    background-color: #fbd89b;
    /*border: solid 4px #ff6a00;*/
    padding: 2px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.panel-message {
    /*border: solid 4px #ff6a00;*/
    padding: 4px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    color: #000;
}

    .panel-message.confirm {
        background-color: #fbd89b; /*#a7ea74;*/
        border: double 2px #0074a2;
    }

    .panel-message.prompt {
        /*background-color: #ddd;*/
    }

    .panel-message.info {
        background-color: #e4f7fa;
        border: double 2px #0074a2;
    }

    .panel-message.warn {
        background-color: #f8ead9;
        border: double 2px #ff8d00;
    }

    .panel-message.error {
        background-color: #f7e6e6;
        border: double 2px #fe2e2e;
    }

/*panel======================================================*/


/*notify======================================================*/

.notify-container {
    display: block;
    /*position: fixed;*/
    z-index: 10000;
}

.panel-notify {
    background-color: #026085;
    color: #fff;
    /*margin: 0 auto 4px;*/
    /*text-align: center;*/
    min-height: 50px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: solid 1px #C7C7C7;
    /*notify*/
    /*margin-top: 10px;
    position: relative;*/
    max-width: 100%;
    /*height: auto;*/
    line-height: 1.5em;
    /*background-color: #323232;
    padding: 5px 5px;
    font-size: 16px;
    color: #fff;*/
    margin: 5px;
}

.notify-error {
    color: #9f0707;
    background-color: #fb9898;
    font-size: 16px;
}

.notify-warn {
    color: #935404;
    background-color: #f7c382;
    font-size: 16px;
}

.notify-info {
    color: #1c3e02;
    background-color: #dffec8;
    font-size: 16px;
}

.notify-reminder {
    color: #046b76;
    background-color: #91f1fc;
    font-size: 16px;
}

.panel-error {
    color: #fff;
    background-color: #ff0000;
    font-size: 16px;
}

.panel-warn {
    color: #fff;
    background-color: #ff8d00;
    font-size: 16px;
}

.panel-info {
    color: #fff;
    background-color: #69be28;
    font-size: 16px;
}

.panel-reminder {
    color: #fff;
    background-color: #00bcd4;
    font-size: 16px;
}

.panel-notify-close {
    float: left;
    margin-top: 10px;
    margin-left: 10px;
    display: block;
    height: 20px;
    color: #000;
    min-width: 20px;
    text-align: center;
}

.notify-message {
    margin: 10px 10px 5px 10px;
    max-width: 90%;
}


.msgr-message {
    margin: 0px 10px 0px 10px;
    max-width: 480px;
}

.msgr-message-light {
    margin: 0px 10px 0px 10px;
    max-width: 480px;
    background-color: #fff !important;
    color: #000 !important;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    /*font-size:150%!important;*/
}

.reminder-item-messenger {
    font: 16px arial, verdana;
    background-color: transparent;
}

    .reminder-item-messenger .reminder-body {
        color: #fff !important;
    }

.reminder-body {
    font-size: 120% !important;
}

.panel-msgr-close {
    /*border-radius: 3px;*/
    margin: 2px;
    padding: 1px 2px;
    display: table;
    min-width: 16px;
    min-height: 16px;
    height: auto;
    /*vertical-align:middle;*/
}

.msgr {
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.msgr-container {
    display: block;
    position: fixed;
    z-index: 10000;
}

#SPA-MSGR {
    display: block;
    position: fixed;
    z-index: 10000;
}

@media only screen and (max-width: 600px) {
    #SPA-MSGR {
        min-width: 96%;
        bottom: 5%;
    }
}

@media only screen and (min-width: 601px) and (max-width: 992px) {
    #SPA-MSGR {
        right: 2%;
        bottom: 7%;
        max-width: 90%;
    }
}

@media only screen and (min-width: 993px) {
    #SPA-MSGR {
        bottom: 5%;
        right: 2%;
        max-width: 86%;
    }
}

.msgr {
    border-radius: 5px;
    top: 35px;
    width: auto;
    margin-top: 10px;
    position: relative;
    max-width: 100%;
    height: auto;
    min-height: 48px;
    line-height: 1.5em;
    background-color: #024e6c;
    padding: 10px 5px 15px 15px;
    font-size: 1.1rem;
    font-weight: 300;
    color: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    cursor: default;
}

    .msgr .msgr-action {
        color: #eeff41;
        font-weight: 500;
        margin-right: -25px;
        margin-left: 3rem;
    }

    .msgr.rounded {
        border-radius: 24px;
    }

@media only screen and (max-width: 600px) {
    .msgr {
        width: 100%;
        border-radius: 0;
    }
}

/*notify======================================================*/

/*dialog======================================================*/
.nc-dialog-overaly {
    background: #fff; /*#909094;*/ /*rgba(65, 65, 65, 0.57);*/ /*rgba(0,0,0,0.57)*/
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    pointer-events: none;
    will-change: opacity;
    transition: opacity 0.333s cubic-bezier(0,0,0.21,1);
}

.nc-dialog-visible {
    opacity: 1;
    pointer-events: auto;
    z-index: 10000 !important;
}

.nc-dialog-entry {
    /*border: solid 4px #8c98a4;*/
    font-family: Arial;
    font-size: 14px;
    background: #FFF;
    min-width: 320px;
    /*min-height: 150px;*/
    /*margin-top: 50px;*/
    margin-bottom: 20px;
    /*box-shadow: 0 0 7px rgba(0,0,0,.48), 0 7px 14px rgba(0,0,0,.48);*/
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    box-shadow: 0px 3px 10px rgba(0, 116, 162, 0.64);
}

.nc-dialog-visible .nc-dialog-entry {
    /*transform: translate(-50%, -50%);*/
}

.nc-dialog-wrapper {
    padding: 5px;
    margin: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.nc-dialog-header {
    border-bottom: double 4px #09b1c1;
    padding: 2px 4px 10px;
    /*-moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;*/
}

.nc-dialog-footer {
    border-top: solid 2px #09b1c1;
    padding: 8px;
    text-align: right;
}

.nc-dialog-button:hover {
    /*color: #ffffff;*/
    background: #4cddf3;
    text-decoration: none !important;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

.nc-dialog-button {
    width: 70px;
    margin: 0px 4px;
    font-size: 12px;
    color: #fff;
    background-color: #0074a2; /*#24343F;*/
    cursor: pointer;
    padding: 2px 4px;
    border: solid 1px #808080;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    outline: none;
}

.nc-dialog-button-x-div-rtl {
    float: left;
    margin-left: 5px;
    width: 15px;
    text-align: left;
}

.nc-dialog-button-x-div {
    float: right;
    margin-right: 5px;
    width: 15px;
    text-align: right;
}

.nc-dialog-button-x {
    color: #0074a2;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

    .nc-dialog-button-x:hover {
        color: #4cddf3;
        /*color: #e14310;*/
        /*background: #e14310;*/
        /*-moz-border-radius: 4px;
        -webkit-border-radius: 4px;
        border-radius: 4px;*/
    }

.nc-dialog-title-rtl {
    line-height: 18px;
    font-size: 14px;
    color: #0074a2;
    opacity: 0.87;
    font-weight: bold;
    margin: 0;
    float: right;
    display: inline-block;
}

.nc-dialog-title { /*width:100%;height:100%;*/
    line-height: 18px;
    font-size: 14px;
    color: #0074a2;
    opacity: 0.87;
    font-weight: bold;
    margin: 0;
    float: left;
    display: inline-block;
}

.nc-dialog-content {
    padding: 10px;
    margin: 0px 4px 10px;
}

.position-center-abs {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 10000 !important;
    transform: translate(-50%, -50%);
}

.position-center {
    position: fixed;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
}

.position-top {
    position: fixed;
    left: 50%;
    top: 10%;
    transform: translate(-50%, -50%);
}

.position-bottom_right {
    position: fixed;
    bottom: 0px;
    right: 5px;
    left: auto;
}
.position-bottom_left {
    position: fixed;
    bottom: 0px;
    left: 5px;
    right:auto;
}

.nc-fixed {
    position: fixed !important;
}

.nc-block {
    display: block;
}

.nc-modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
/*dialog======================================================*/
