@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@800&display=swap');

body {
    margin: 0px;
    padding: 0px;
    background-color: #eee;
    font-family: 'Lato', sans-serif;
}
body * { box-sizing: border-box; }

#wrapper {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

#headbar {
    position: fixed;
    width: 100%;
    height: 50px;
    background-color: #333;
    color: #fff;
    z-index: 666;
    transition: transform 0.5s ease-in-out, width 0.5s ease-in-out;
    display: flex;
    justify-content: space-between;
}

#container {
    position: relative;
    height: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    background-color: #eee;
    overflow: hidden;
    overflow-y: auto;
    transition: transform 0.5s ease-in-out, width 0.5s ease-in-out;
    z-index: 555;
    margin-top: 50px;
    box-sizing: border-box;
}

#sidebar {
    width: 300px;
    height: 100%;
    position: fixed;
    top: 0px;
    left: -300px;
    background-color: #fff;
    transition: width 0.5s ease-in-out,
                left 0.5s ease-in-out,
                background-color 2.5s ease-in-out;
    z-index: 555;
}

#content {
    width: 100%;
    max-height: 100%;
    padding: 0px 5px;
    flex-grow: 1;
    overflow-y: visible;
    margin: 0 auto;
    box-sizing: border-box;
}

#widget {
    display: none;
    width: 256px;
    position: fixed;
    top: 50px;
    right: 20px;
    bottom: 50px;
    border: 1px solid blue;
    background-color: #fff;
    z-index: 556;
}
#footer {
    width: 100%;
    text-align: center;
}



#sidebar-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: none;
    transition: visibility 0.5s ease-out,
                background 0.5s ease-in-out,
                left 0.5s ease-in-out;
    visibility: hidden;
    z-index: 776;
}


#container::-webkit-scrollbar { width: 10px; }
#container::-webkit-scrollbar-track { background-color: transparent; }
#container::-webkit-scrollbar-thumb { background-color: #888; border-radius: 8px;}
#container::-ms-scrollbar { width: 10px; }
#container::-ms-scrollbar-track { background-color: transparent; }
#container::-ms-scrollbar-thumb { background-color: #888; border-radius: 8px}


.sidebar-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: none;
    transition: visibility 0.5s ease-out,
                background 0.5s ease-in-out,
                left 0.5s ease-in-out;
    visibility: hidden;
    z-index: 776;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.sidebar-overlay.active {
    visibility: visible;
    background: rgba(0,0,0,0.6);
}
.dropDownBtn {
    position: relative;
    width: 50px;
    height: 50px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.dropDownBtn svg { pointer-events: none; }
.dropDownBtn[bubble]:not([bubble=""]):not([bubble="0"]):after {
    content: attr(bubble);
    width: 20px!important;
    height: 20px;
    line-height: 20px;
    text-align: center;
    font-size: 12px!important;
    font-weight: bold;
    background: red;
    color: #fff!important;
    border-radius: 50%;
    position: absolute;
    top: 0px;
    right: 4px;
}

.dropDownList {
    display: none;
    min-width: 200px;
    position: absolute;
    background-color: #fff;
    border: 1px solid #bbb;
    border-radius: 0px 0px 3px 3px;
    box-shadow: 0 3px 4px 0 rgb(0 0 0 / 20%), 0 3px 3px -2px rgb(0 0 0 / 14%), 0 1px 8px 0 rgb(0 0 0 / 12%);
    color: #000;
    text-align: left;
    cursor: pointer;
    z-index: 100;
}
.dropDownList.active {
    display: block;
}


.dropDownList li {
    list-style: none;
    border-bottom: 1px solid #ddd;
    display: flex;
    gap: 0px;
}
.dropDownList li:hover {
    background-color: #BEDAFF;
    color: #000;
}
.dropDownList li a ,
.dropDownList li span ,
.dropDownList li label {
    position: relative;
    flex: 1;
    padding: 8px 8px;
    text-decoration: none;
    color: darkblue;
    font-size: 15px;
    cursor: pointer;
}

.dropDownList li .icon {
    flex: 0 0 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 4px;
}
.dropDownList li img {
    max-width: 35px;
    max-height: 35px;
    border-radius: 50%;
}

.dropDownList .info {
    width: 100%;
    text-align: center;
    font-weight: bold;
    font-size: 15px;
    line-height: 40px;
}
.dropDownList .row {
    display: flex;
    gap: 6px;
    
}
.dropDownList .row .picture {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #aaa;
    position: relative;
    margin: 10px 4px;
    flex: none;
}
.dropDownList .row img {
    max-width: 50px;
    max-height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.dropDownList .row .data {
    line-height: 20px;
}
.dropDownList .row .title {
    display: block;
    font-weight: bold !important;
    padding-top: 8px;
    padding-bottom: 4px;
}
.dropDownList .row desc {
    display: block;
    font-size: 13px;
    padding-bottom: 8px;
}













/** headbar style **/
#headbar * {
    -webkit-tap-highlight-color: transparent; /* For iOS */
    -webkit-touch-callout: none; /* Disable callout on iOS */
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
    outline: none;
}
#headbar .title-container {
    display: flex;
    align-items: center;
}
#headbar .header-logo img {
    max-height: 40px;
    max-width: 100px;
}

#headbar .icons-container {
    display: flex;
    align-items: center;
    font-weight: bold;
    
}
#headbar .icons-container a:not(:last-child):after {
    content: "";
    border-right: 2px solid #ccc;
    padding-right: 6px;
}
#headbar .icons-container > a {
    float: right;
    text-decoration: none;
    color: #fff;
    padding: 0px 3px;
}
#headbar .icons-container a {
    margin-right: 8px;
}

#headbar .icon {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.5s ease-in-out;
}
#headbar .icon.selected {
    background-color: #000;
}
#headbar .icon svg {
    max-width: 20px;
    max-height: 20px;
    fill: #fff;
    pointer-events: none;
}

#headbar .dropDownBtn.active {
    background-color: #fff;
    //transform: translateY(10px);
}
#headbar .dropDownBtn.active svg {
    fill: #000!important;
}


#headbar .dropDownList {
    top: 50px;
    right: 0px;
    max-width: 400px;
    border-top: none;
}

#headbar .dropDownList.msg {
    width: calc(100vw - 60px);
    right: 50px;
}
#headbar .dropDownList.notify {
    width: calc(100vw - 60px);
    right: 100px;
}




#wrapper[sidebar] .sidebar-toggle-icon > div {
    border-radius: 50%;
    background-color: rgba(0,0,0,0.5);
    padding: 8px;
}
.icon-menu-p1,
.icon-menu-p2,
.icon-menu-p3 {
        width: 20px;
        height: 3.5px;
        border-radius: 2px;
        background-color: #fff;
        margin: 2.5px 0;
        transition: 0.8s;
}
#wrapper[sidebar] .icon-menu-p1 {
    transform: translate(0, 6.2px) rotate(-45deg);
}
#wrapper[sidebar] .icon-menu-p2 {opacity: 0;}
#wrapper[sidebar] .icon-menu-p3 {
    transform: translate(0, -6.2px) rotate(45deg);
}
#wrapper[sidebar] .icon-menu-p1,
#wrapper[sidebar] .icon-menu-p2,
#wrapper[sidebar] .icon-menu-p3 {
    background-color: #fff;
}













/****** navSide style *******/
#sidebar {
    -webkit-tap-highlight-color: transparent; /* For iOS */
    -webkit-touch-callout: none; /* Disable callout on iOS */
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
    outline: none;
    display: flex;
    flex-direction: column;
}
#sidebar .sidebar-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #4D847F;
    padding: 8px 0px;
}
    #sidebar .sidebar-header .sidebar-head-logo {
        width: 100%;
        height: 50px;
        margin: 0px;
        text-align: center;
        max-height: 200px;
    }
        #sidebar .sidebar-header .sidebar-head-logo img {
            max-height: 50px;
        }
    #sidebar .sidebar-header .sidebar-head-user {
        width: 100%;
        height: 50px;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 8px;
        white-space: nowrap;
    }
        #sidebar .sidebar-header .sidebar-head-user .photo {
            width: 40px;
            height: 40px;
            margin: 10px;
        }
            #sidebar .sidebar-header .sidebar-head-user img {
                max-width: 40px;
                max-height: 40px;
                border-radius: 50%;
            }
        #sidebar .sidebar-header .sidebar-head-user .data {
            flex: 1;
            padding: 6px;
        }
        #sidebar .sidebar-header .sidebar-head-user .data span {
            width: 100%;
            display: block;
            font-size: 17px;
            font-weight: bold;
            color: #fff;
        }
        #sidebar .sidebar-header .sidebar-head-user .data a {
            text-decoration: none;
            font-size: 14px;
            color: #ccc;
            margin-right: 4px;
        }
        
#sidebar .sidebar-content {
    height: 100%;
    display: flex;
    flex-direction: row;
    
    transition: margin-left 0.3s;
    overflow-x: hidden;
    
}
#sidebar .sidebar-content::-webkit-scrollbar { width: 4px; }
#sidebar .sidebar-content::-webkit-scrollbar-track { background-color: transparent; }
#sidebar .sidebar-content::-webkit-scrollbar-thumb { background-color: #888; border-radius: 4px;}
#sidebar .sidebar-content::-ms-scrollbar { width: 4px; }
#sidebar .sidebar-content::-ms-scrollbar-track { background-color: transparent; }
#sidebar .sidebar-content::-ms-scrollbar-thumb { background-color: #888; border-radius: 4px}

#sidebar .sidebar-list {
    flex-grow: 1;
    overflow-y: auto;
}


#sidebar .sidebar-content section {
  width: 100%;
  flex-shrink: 0;
}

#sidebar .sidebar-list section.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-top: 8px;
    color: #000;
}

#sidebar .sidebar-list .item-row {
    width: 90%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    cursor: pointer;
}
#sidebar .sidebar-list .item-row .item-cell {
    display: flex;
    flex-wrap: nowrap;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 0px 10px;
}
#sidebar .sidebar-list .item-row .item-childs {
    display: flex;
    flex-direction: column;
    border-left: 6px solid darkblue;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}
#sidebar .sidebar-list .item-row .item-childs .item-title a {
    font-size: 15px;
    color: darkblue !important;
    padding-left: 16px;
}


#sidebar .sidebar-list .item-row.selected .item-childs {
    max-height: 500px;
    border-bottom: 1px solid #eee;
}

#sidebar .sidebar-list .item-row .item-icon {
    min-width: 40px;
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
    #sidebar .sidebar-list .item-row .item-icon svg {
        width: 20px;
        height: 20px;
        fill: #000;
        pointer-events: none;
    }
#sidebar .sidebar-list .item-row .item-title {
    flex-grow: 1;
    font-weight: bold;
    white-space: nowrap;
}
    #sidebar .sidebar-list .item-row .item-title span ,
    #sidebar .sidebar-list .item-row a {
        display: block;
        width: 100%;
        height: 100%;
        text-decoration: none;
        padding: 10px;
        color: #000;
        box-sizing: border-box;
    }
#sidebar .sidebar-list .item-row .item-expand {
    width: 15px;
    height: 15px;
    position: relative;
}
    #sidebar .sidebar-list .item-row[expandable] .item-expand:after {
        content: "\203A";
        position: absolute;
        right: 0px;
        top: 5px;
        text-align: center;
        font-weight: bold;
        font-size: 23px;
        transition: transform 0.4s;
    }
    #sidebar .sidebar-list .item-row[expandable].selected .item-expand:after {
        transform: rotate(90deg);
        color: blue;
    }


#sidebar .sidebar-list .item-row.selected .item-title span ,
#sidebar .sidebar-list .item-row .item-cell.active .item-title a {
    color: blue !important;
}
#sidebar .sidebar-list .item-row.selected > .item-cell svg ,
#sidebar .sidebar-list .item-row .item-cell.active svg {
    fill: blue
}
#wrapper:not([sidebar]) #sidebar .sidebar-list .item-row.selectd .item-cell.selected .item-icon ,
#wrapper:not([sidebar]) #sidebar .sidebar-list .item-row.selected .item-icon:active {
    background-color: #e9e9e9;
    border: 0.2px solid #ccc;
}
#wrapper[sidebar] #sidebar .sidebar-list .item-row.selected > .item-cell{
    background-color: #e9e9e9;
}





#wrapper[sidebar] #container {
    transform: translateX(300px);
}
#wrapper[sidebar] #headbar {
    transform: translateX(300px);
}
#wrapper[sidebar] .sidebar-toggle-icon {
    transform: translateX(-50px);
}



#wrapper[sidebar] #sidebar {
    width: 300px;
    left: 0px;
}




@media screen and (max-width: 1314px){
    #wrapper[sidebar] #sidebar-bg {
        visibility: visible;
        background: rgba(0,0,0,0.6);
        left: 300px;
    }
}
@media screen and (min-width: 1314px){
    #wrapper[sidebar] .sidebar-toggle-icon > div {
        background-color: transparent!important;
    }

}


@media screen and (min-width: 570px){
    #container {
        //margin-right: 300px;
        width: calc(100% - 60px);
        transform: translateX(60px);
    }
    #sidebar-bg { left: 60px; }
    #sidebar {
        width: 60px;
        left: 0px;
    }
}

@media screen and (min-width: 1315px){
    #sidebar-bg { display: none; }
    #wrapper[sidebar] #headbar {
        //transition: none;
        width: calc(100% - 250px);
    }
    #wrapper[sidebar] #sidebar { background-color: #eee; }
    #wrapper[sidebar] #container {
        width: calc(100% - 300px);
        transform: translateX(300px);
    }
}







@media screen and (min-width: 875px){
    #content { max-width: 800px; }
}
@media screen and (min-width: 1075px){
    #content { max-width: 1000px; }
}

@media screen and (min-width: 1615px){
    #content { max-width: 1300px; }
}







@media screen and (min-width: 570px){
    #wrapper:not([sidebar]) #sidebar .sidebar-head-user .data { display: none; }
    #sidebar .sidebar-header .sidebar-head-logo { visibility: hidden;}
    #wrapper:not([sidebar]) #sidebar .sidebar-list .item-title { display: none; }
    #wrapper:not([sidebar]) #sidebar .sidebar-list .item-expand { display: none; }

}
@media screen and (min-width: 1315px){
    #wrapper #sidebar .sidebar-list .item-row.selected  ,
    #wrapper #sidebar .sidebar-list .item-row:active {
        background-color: #e9e9e9;
    }

}

#sidebar .sidebar-footer {
    margin-bottom: 28px;
}






 


.icon-back {
    width: 10px;
    height: 10px;
    border: solid black;
    border-width: 0 3px 3px 0;
    display: inline-block;
    
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}



.page-title {
    width: 100%;
    padding: 4px;
    line-height: 25px;
    box-sizing: border-box;
    margin-bottom: 4px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;

}
.page-title span {
    font-size: 17px;
    font-weight: bold;
    padding: 3px;
    box-sizing: border-box;
}
.page-title a {
    text-decoration: none;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}
.page-title a span { pointer-events: none; }
.page-title span.icon {
    width: 40px;
    height: 25px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.page-title span svg {
    width: 20px;
    height: 20px;
    fill: #444;
}








.info-row {
    display: block;
    text-align: center;
    font-weight: bold;
    line-height: 25px;
    padding: 30px 0px;
}


.cb {
    position: relative;
    display: block;
    margin: 8px 6px;
    margin-bottom: 12px;
    border: 1px solid #aaa;
    border-radius: 8px 8px 0 0;
    background-color: #fff;
    //clear: both;
    //backdrop-filter: blur(2px);
}
.cb .cb-head {
    display: flex;
    border-bottom: 1px solid #eee;
    padding: 20px 0px;
}
.cb .cb-head.bar {
    background-color: #483D8B;
    color: #fff;
}
.cb .cb-head h3 {
    flex: 1;
    margin: 0px;
    padding: 0px 12px;
    box-sizing: border-box;
}
.cb .cb-head .icon {
    width: 50px;
    text-align: center;
}


.cb .cb-content {
    display: block;
    position: relative;
}
.cb .cb-content.p {
    padding: 12px;
}
.cb .cb-content:after {
    content: '';
    display: block;
    clear: both;
}
.cb.login {
    width: 95%;
    max-width: 400px;
    margin: 50px auto;
    box-sizing: border-box;
}

.cb.register {
    width: 95%;
    max-width: 500px;
    margin: 10px auto;
}




button {
    -webkit-tap-highlight-color: transparent; /* For iOS */
    -webkit-touch-callout: none;
      -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}


.btn1 {
    position: relative;
    white-space: nowrap;
    height: 40px;
    //line-height: 40px;
    padding: 0px 20px;
    font-weight: bold;
    outline: none;
    border: none;
    border-radius: 6px;
    background: none;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    user-select: none;
    box-sizing: border-box;
    
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.btn1 > span {
    flex: 1;
}
.btn1 .icon {
    width: 50px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.btn1 svg {
    max-width: 25px;
    max-height: 25px;
    fill: #fff;
}

.btn1:hover {
    outline: none;
}
.btn1:active {
    box-shadow: rgba(27, 31, 35, .3) 1px 1px 1px;
    opacity: 0.8;
}
.btn1.white {
    background-color: white;
    color: #000;
    border: 1px solid #ccc;
}
.btn1.green {
    background-color: #2ea44f;
    color: #fff;
}
.btn1.red {
    background-color: #f44336;
    color: #fff;
}
.btn1.blue {
    background-color: #0064bd;
    color: #fff;
}
.btn1.wide {
    width: 90%;
    max-width: 300px;
    margin: 10px auto;
}
.btn1.med {
    width: 90%;
    max-width: 150px;
}

.btn1.center {
    //display: block;
    margin: 8px auto;
}
.btn1:disabled {
    opacity: 0.5;
    color: #bbb;
    cursor: default;
}




.btn2 {
    height: 40px;
    width: 40px;
    line-height: 34px;
    border: none;
    outline: none;
    text-align: center;        
    border-radius: 50%;
    transition: background-color 0.5s linear;
    cursor: pointer;
    border: 2px solid #ddd;
    border-radius: 50%;
}
btn2[disabled]{
    opacity: 0.7;
}
.btn2 svg {
    width: 20px;
    height: 20px;
    fill: #777;
    margin: 8px auto;
}
.btn2:not([disabled]):active {
    background-color: #ccc;
}
.btn2:not([disabled]):active svg {
    fill: blue;
}




.row-alert {
    flex-basis: 100%;
    margin: 0px;
    padding: 0px;
    list-style:none;
    padding-top: 5px;
    font-size: 15px;
}
.row-alert ul {
    margin: 0px;
    padding: 0px 4px;
}
.row-alert li {
    display: block;
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 40px;
    padding-right: 6px;
    margin-bottom: 6px;
    border: 1px solid #ccc;
}

.row-alert .success {
    background-color: #dff0d8;
    border: 1px solid #d6e9c6;
    color: #000;
}
.row-alert .success:after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    left: 11px;
    height: 12px;
    width: 5px;
    border-bottom: 5px solid #78b13f;
    border-right: 5px solid #78b13f;
}
.row-alert .error {
    background-color: #f2dede;
    border-color: #ebccd1;
    color: #a94442;
}
.row-alert .error:after {
    content: '\00d7';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 8px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: red;
    text-align: center;
    line-height: 18px;
    font-weight: bold;
    color: #fff;
}

.row-alert .warning {
    background-color: #fcf8e3;
    border-color: #faebcc;
    color: #000;
}
.row-alert .warning:after {
    content: '\26A0';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 3px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: transparent;
    text-align: center;
    line-height: 28px;
    font-weight: bold;
    color: red;

}
.row-alert .info {
    background-color: #d9edf7;
    border-color: #bce8f1;
    color: #31708f;
}
.row-alert .info:after {
    content: 'i';
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    left: 7px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid darkblue;
    text-align: center;
    line-height: 18px;
    font-weight: 900;
    font-size: 14px;
    color: darkblue;
}



.autocomplete-wrapper {
    position: absolute;
    width: 100%;
    top: 100%;
    height: auto;
    background-color: #fff;
    border: 1px solid #bbb;
    box-shadow: 10px 10px 20px -5px rgba(0,0,0,0.75);
    z-index: 99;
    box-sizing: border-box;
}
.autocomplete-wrapper .autocomplete-close {
    position: absolute;
    top: -40px;
    right: 0px;
    width: 40px;
    height: 40px;
    z-index: 99;
    color: #000;
    text-align: center;
    line-height: 40px;
    font-weight: bold;
    font-size: 22px;
    cursor: pointer;
}
.autocomplete-wrapper ul {
    display: block;
    width: 100%;
    max-height: 250px;
    margin: 0;
    padding: 0;
    list-style: none;
    overflow-y: auto;
}
.autocomplete-wrapper li {
    list-style: none;
    line-height: 35px;
    padding: 0px 8px;
    border-bottom: 1px solid #eee;
}
.autocomplete-wrapper li:hover {
    background-color: darkblue;
    color: #fff;
    cursor: pointer;
}




.toolbar {
    height: 52px;
    min-height: 52px;
    background-color: #eee;
    border: 1px solid #bbb;
    display: flex;
    justify-content: space-between;
    align-items: center;
            -webkit-tap-highlight-color: transparent; /* For iOS */
        -webkit-touch-callout: none; /* Disable callout on iOS */
          -webkit-user-select: none;
             -moz-user-select: none;
              -ms-user-select: none;
                  user-select: none;
        outline: none;
    font-weight: bold;
    background-color: #f4f4f4;
}
    .toolbar .section {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 6px;
        padding: 0px 4px;
    }
    .toolbar .caption {
        font-weight: bold;
        line-height: 50px;
    }
    .toolbar button:not(.default) {
        width: 32px;
        height: 32px;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 1px solid #aaa;
        outline: none;
        cursor: pointer;
        border: none;
        border-radius: 50%;
        border: 1px solid #bbb;
        background-color: transparent;
    }
    .toolbar button:not(.default):hover, 
    .toolbar button:not(.default):active {
        transform: scale(1.1);
    }
    .toolbar button:not(.default) svg {
        width: 20px;
        height: 20px;
        margin: 10px auto;
    }
    .toolbar button:not(.default):hover svg { fill: blue; }
    .toolbar button:not(.default):disabled svg {
        fill: #aaa;
    }
    
    .toolbar .tab {
        padding: 0 12px;
    }
    .toolbar .tab a {
        text-decoration: none;
    }
    .toolbar .tab.active {
        background-color: lightblue;
    }
    .toolbar .dropDownBtn {
        
    }
    .toolbar .dropDownList {
        top: 52px;
        right: 0px;
    }
    .toolbar .dropDownBtn svg {
        width: 20px;
        height: 20px;
        margin: 10px auto;
        fill: #000
    }

.toolbar label.radioBtn {
    height: 40px;
    display: inline;
    margin: 5px 2px;
    line-height: 50px;
    text-align: center;
    border: 1px solid #aaa;
    outline: none;
    cursor: pointer;
    padding: 8px;
}
.toolbar label.radioBtn input {
    display: none;
}
.toolbar label.radioBtn:has(input[type=radio]:checked) {
    background: blue;
    color: #fff;
    //font-weight: bold;
}









.form {
    display: flex;
    flex-direction: column;
    gap: 0px;
    padding: 8px 16px;
    box-sizing: border-box;
}

.form .form-row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0px;
    margin-bottom: 16px;
    flex: 0 0 100%;
}

.form .row-label {
    width: 200px;
    height: 40px;
    align-content: center;
    font-size: 15px;
    font-weight: bold;
    margin: 0px;
    padding: 0px;
}
.form .col-input {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-wrap: wrap;
}
.form .row-input {
    flex: 0 0 100%;
    display: flex;
    flex-direction: row;
    gap: 6px;
    flex-wrap: nowrap;
}

.form .row-input .cell {
    position: relative;
    flex: 0 1 auto;
    width: 100%;
    display: flex;
    gap: 8px;
    align-items: center;
}
    .form .cell.center {
        justify-content: center;
    }

.form input {
    width: 100%;
    flex-grow: 0;
    flex-shrink: 1;
    min-width: 0;
    box-sizing: box-sizing;
}


/* row */
.form.row .form-row,
.form .form-row.row {
    flex: 1;
    flex-direction: row;
    flex-wrap: nowrap;
}
.form.row .form-row .row-label,
.form .form-row.row .row-label {
    width: 100px;
    min-width: 100px;
    max-width: 100px;
}



/* column */
.form.col .form-row .row-label,
.form .form-row.col .row-label {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
}
.form.col .form-row { flex-direction: column; }
.form .form-row.col { flex-direction: column; }
.form .form-row.col .row-input {
    max-width: 100%;
    flex-direction: column;
}






.form .cell.center * { text-align: center; }
.form .cell.bold *   { font-weight: bold; }

.form .form-row .cell .autocomplete {
    position: absolute;
}

.form  input[type=text] ,
.form  input[type=email] ,
.form  input[type=date] ,
.form  input[type=time] ,
.form  input[type=datetime-local] ,
.form  input[type=password] ,
.form  input[type=tel] ,
.form  input[type=number] ,
.form  input[type=color] ,
.form  select ,
.form  textarea ,
.form .input-btn {
    width: 100%;
    flex-grow: 0;
    flex-shrink: 1;
    min-width: 0;
    resize: none;
    height: 40px;
    margin: 0px;
    outline: none;
    border: 0.5px solid #b4b4b4;
    border-radius: 6px;
    background-color: #fff;
    padding: 0 8px;
    box-sizing: border-box;
}
.form  textarea {
    height: 90px;
}


.form input[type=text][disabled] ,
.form input[type=email][disabled] ,
.form input[type=date][disabled] ,
.form input[type=time][disabled] ,
.form input[type=password][disabled] ,
.form input[type=tel][disabled] ,
.form input[type=number][disabled] ,
.form input[treadcolor][disabled] ,
.form select[disabled] ,
.form textarea[disabled] ,
.form .input-btn[disabled],
.form .select-input[disabled]
.form[disabled] .input-btn {
    background: #f9f9f9;
    border-radius: 0px;
    appearance: none;
}

.form input[type=text][readonly] ,
.form input[type=email][readonly] ,
.form input[type=date][readonly] ,
.form input[type=time][readonly] ,
.form input[type=password][readonly] ,
.form input[type=tel][readonly] ,
.form input[type=number][readonly] ,
.form input[treadcolor][readonly] ,
.form select[readonly] ,
.form textarea[readonly] ,
.form .input-btn[readonly]
.form[readonly] .input-btn[readonly] {
    background: #f9f9f9;
    border-radius: 0px;
    appearance: none;
}
.form select[readonly] {
    pointer-events: none;
}
.form[disabled] label.row-label {
    color: #666;
}

.form input:-webkit-autofill { 
    -webkit-background-clip: text;
}


.form select[multiple]{
    height: 120px;
}
.form select option {
    padding: 5px;
}
.form select option:checked {
    background-color: #e0f7fa;
}
.form select option:checked::before {
    content: '✓';
    padding-right: 5px;
}




.form label.chkbox ,
.form label.radio {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
    padding-inline-end: 16px;
}
.form label.chkbox input ,
.form label.radio input {
    width: 20px;
    height: 20px;
    margin: 6px 12px;
}

.form .form-row.buttons {
    text-align: center;
}


/* input-select */
.form .select-input {
    flex: 1;
    height: 40px;
    position: relative;
}
.form .select-input input ,
.form .select-input select {
    position: absolute;
}
.form .select-input select {
    width: 100%;
    height: 40px;
    z-index: 1;
}
.form .select-input input[type=text]{
    height: auto;
    width: auto;
    top: 1px;
    left: 1px;
    bottom: 1px;
    right: 40px;
    z-index: 2;
    border: none;
}


.form .form-row .input-btn {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    box-sizing: border-box;
    padding-right: 0px;
    padding: 0px;
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
          -webkit-user-select: none;
             -moz-user-select: none;
              -ms-user-select: none;
                  user-select: none;
}
    .form .form-row .input-btn input {
        flex: 1;
        border: none!important;
    }

    
    .form .form-row .input-btn span ,
    .form .form-row .input-btn button {
        height: 34px;
        width: 34px;
        line-height: 34px;
        border: none;
        outline: none;
        text-align: center;        
        margin: 3px;
        border-radius: 50%;
        transition: background-color 0.5s linear;
    }
    .form .form-row .input-btn button {
        cursor: pointer;
    }
    .form .form-row .input-btn svg {
        width: 20px;
        height: 20px;
        fill: #777;
        margin: 6px auto;
    }
    .form .form-row .input-btn button:not([disabled]):active {
        background-color: #ccc;
    }
.form .form-row .input-btn[readonly] {
    border: 0px;
    border-bottom: 0.5px solid #b4b4b4;
    border-radius: 0px;
}
.form .form-row .input-btn input[disabled] ~ button {
    display: none;
}



.form .photo-upload {
    display: flex;
    gap: 6px;
}
.form .photo-upload .img {
    width: 120px;
    height: 120px;
    background-color: #fff;
    border: 1px solid darkblue;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form .photo-upload img {
    max-width: 95%;
    max-height: 95%;
    background-color: #fff;
    pointer-events: none;
    
}
.form .photo-upload input[type=file] {
    display: none;
}


.form-row .cell.sel-custom-lbl {
    position: relative;
    border: 0.5px solid #b4b4b4;
    border-radius: 6px;
}
.form-row .cell.sel-custom-lbl select { border: 0px!important; }
.form-row .cell.sel-custom-lbl label.lblSelView {
    position: absolute;
    width: initial;
    top: 1px;
    left: 3px;
    bottom: 1px;
    right: 3px;
    background-color: #fff;
    //margin: 3px;
    text-align: center;
    font-weight: bold;
    font-size: 13px;
    line-height: 38px;
    pointer-events: none;
}

















.select-editable {
    width: 100% !important;
    height: 40px !important;
    position: relative;
    border: 0.5px solid #b4b4b4;
    border-radius: 6px;
    background-color: #fff;
}
.select-editable select ,
.select-editable input {
    background-color: transparent !important;
    border: none !important;
    outline: none;
    width: initial !important;
    height: 40px !important;
    
    position: absolute !important;
    top:0px;
    left:0px;
}

.select-editable select {
    font-size: 14px;
    border: none;
    right: 0px;
}

.select-editable input {
    right: 30px;
    padding:1px;
    background-color: #fff !important;
}

.select-editable select[readonly] ,
.select-editable select[disabled] ,
.select-editable input[readonly] ,
.select-editable input[disabled] {
    background-color: transparent !important;
    border: none !important;
    outline: none;
}
.select-editable[readonly] ,
.select-editable[disabled] {
    border: none;
    border-radius: 0px;
    border-bottom: 0.5px solid #999;
    color: #999;
}
.select-editable[readonly] select,
.select-editable[disabled] select {
    -moz-appearance:none; -webkit-appearance:none; appearance:none; 

}

.toggle-swich {
    line-height: 60px;
    display: flex;
}
.toggle-swich input[type=checkbox]{
    height: 0;
    width: 0;
    visibility: hidden;
}
.toggle-swich label.switch {
    cursor: pointer;
    text-indent: -9999px;
    width: 50px;
    height: 8px;
    background: #ccc;
    display: block;
    border-radius: 4px;
    position: relative;
    margin: 25px 6px;
}
.toggle-swich label:not(.switch) {
    font-weight: bold;
}
.toggle-swich label.switch:after {
    content: '';
    position: absolute;
    top: -8px;
    left: 0px;
    width: 22px;
    height: 22px;
    background: #ddd;
    border-radius: 50%;
    box-shadow: 4px 4px 6px #aaa;
    transition: 0.3s;
    display: block;
    clear: both;
}
.toggle-swich input:checked + label.switch:after {
    left: 100%;
    transform: translateX(-100%);
    background: #82A064;
}

.toggle-swich label.switch:active:after {
    width: 30px;
}










.circle-nav {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    backdrop-filter: blur(0px);
    background-color: rgba(0, 0, 0, 0);
    opacity: 0;
    transition: all 3s ease, opacity 0.4s ease;
    z-index: 999;
}
.circle-nav.active {
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 1;
    backdrop-filter: blur(3px);
}
.circle-nav-inner {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent; /* For iOS */
    -webkit-touch-callout: none; /* Disable callout on iOS */
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
    outline: none;
}

.circle-nav .circle-nav-toggle {
    position: absolute;
    top: 0px;
    left: 0px;
    
    width: 100%;
    height: 100%;
    background-color: #3498db;
    border-radius: 50%;
    z-index: 1;
    font-size: 42px;
    font-weight: bold;
    color: #fff;
    transform: rotate(45DEG);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
}
.circle-nav.active .circle-nav-toggle {
    background-color: #e74c3c;
    transform: rotate(0DEG);
}
.circle-nav .icons {
    z-index: -1;
}
.circle-nav .icon {
    width: 60px;
    height: 60px;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 0px;
    left: 0px;
    background: #ecf0f1;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    cursor: pointer;
    overflow: hidden;
    
    display: flex;
    justify-content: center;
    align-items: center;
}
.circle-nav .icon svg {
    width: 30px;
    height: 30px;
    fill: #000;
    pointer-events: none;
}
.circle-nav .icon:hover svg {
    fill: blue;
}



#firebaseui-auth-container .firebaseui-card-content ul {
    display: flex;
    justify-content: center;
    gap: 8px;
}
#firebaseui-auth-container .firebaseui-idp-button {
    padding: 4px; /* Adjust padding to make the buttons smaller */
    width: auto !important; /* Adjust width as needed */
    text-align: center;
}
#firebaseui-auth-container .firebaseui-idp-icon-wrapper {
    display: block;
}
#firebaseui-auth-container .firebaseui-idp-text {
    display: none !important; /* Hide the button text */
}




.toastr {
    width: 80%;
    max-width: 400px;
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background-color: rgba(0,0,0,0.6);
    color: #fff;
    text-align: center;
    padding: 12px 0px;
    border-radius: 12px;
    z-index: 889;
    -webkit-transition: opacity 0.8s, visibility 0.8s;
    -moz-transition: opacity 0.8s, visibility 0.8s;
    transition: opacity 0.8s, visibility 0.8s, bottom 1s;
    visibility: hidden;
    opacity: 0;
    z-index: 999;
}
.toastr.active {
    transition: * 800ms ease-out, background 800ms;
    visibility: visible;
    opacity: 1;
}



/***** Loader *****/
/* Linear */
.loader-container.linear {
    height: 4px;
    width: 100%;
    overflow: hidden;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: initial;
    z-index: 999;
}
.loader-container.linear .bar {
    width: 100%;
    height: 4px;
    background-color: blue;
    animation: loader-linear-animation 2s linear infinite;
}
@keyframes loader-linear-animation {
   0% {
      transform: translateX(-100%);
   }
   100% {
      transform: translateX(100%);
   }
}
        
        
        
/* Ring */
.loader-container.ring {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    backdrop-filter: blur(0px);
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    transition: all 1s ease-in-out;
    z-index: 888;
}
.loader-container.ring.inline {
    position: relative;
    width: 50px;
    height: 30px;
    left: 0;
    right: 0;
}
        
.loader-container.ring.active {
    backdrop-filter: blur(2px);
}
.loader-container.ring .spinner {
    width: calc(var(--loader-size) + 2px);
    height: calc(var(--loader-size) + 2px);
}
.loader-container.ring .spinner .spinner-ring ,
.loader-container.ring .spinner .spinner-ring:after {
    width: calc(var(--loader-size) * 1px);
    height: calc(var(--loader-size) * 1px);
    border-radius: 50%;
}
.loader-container.ring .spinner .spinner-ring {
    position: relative;
    font-size: 10px;
    text-indent: -9999em;
    border-top:    calc(var(--loader-size) * 1px /9) solid #ddd;
    border-right:  calc(var(--loader-size) * 1px /9) solid #ddd;
    border-bottom: calc(var(--loader-size) * 1px /9) solid #ddd;
    border-left:   calc(var(--loader-size) * 1px /9) solid #1A73E8;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: loader-ring-animation var(--loader-speed) infinite linear;
    animation: loader-ring-animation var(--loader-speed) infinite linear;
    margin: 0 auto;
}
@-webkit-keyframes loader-ring-animation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loader-ring-animation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.loader-container.ring .msg {
    //flex: 1;
    //width: 100%;
    //height: 100px;
    
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    font-family: "Noto Sans", sans-serif;
    -webkit-text-stroke: 1px #000;
    
    z-index: 1;
}



.icons {
    width: calc(var(--size) * 1px);
    height: calc(var(--size) * 1px);
    margin: 0 auto;
    position: relative;
}
.icons.error:after {
    content: '\00d7';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(var(--size) * 1px);
    height: calc(var(--size) * 1px);
    border-radius: 50%;
    background-color: red;
    text-align: center;
    line-height: calc(var(--size) * 1px);
    font-size: calc(var(--size) * 1px);
    font-weight: bold;
    color: #fff;
}

.icons.warning:after {
    content: '\26A0';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(var(--size) * 1px);
    height: calc(var(--size) * 1px);
    border-radius: 50%;
    background-color: transparent;
    text-align: center;
    line-height: calc(var(--size) * 1px);
    font-size: calc(var(--size) * 1px);
    font-weight: bold;
    color: red;

}
.icons.info:after {
    content: 'i';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(180deg);
    width: calc(var(--size) * 1px);
    height: calc(var(--size) * 1px);
    line-height: calc(var(--size) * 1px);
    font-size: calc(var(--size) * 0.7px);
    background-color: #fff;
    border: 1px solid darkblue;
    border-radius: 50%;
    text-align: center;
    font-weight: 900;
    color: darkblue;
}



.icons-list {
    display: flex;
    justify-content: flex-start;
    align-items: center;

    gap: 8px;
}
.icons-list .item {
    width: 100px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: #fafafa;
}
.icons-list .item a {
    text-decoration: none;
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}
.icons-list .item .icon {
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}
.icons-list .item svg {
    max-width: 40px;
    height: 40px;
    fill: #000;
    pointer-events: none;
}
.icons-list .item .title {
    width: 100px;
    padding: 6px 3px;
    text-align: center;
    font-size: 14px;
}






.icons-list-1 {
    box-sizing: border-box;
    position: relative;
    display: block;
    height: 12px;
    width: 12px;
    border-left: 2px solid;
    transform: scale(var(--size, 1));
    margin-left: -4px;
}
.icons-list-1::after,
.icons-list-1::before {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    height: 4px;
    width: 12px;
    background: currentColor;
    left: 2px;
    top: 1px;
}
.icons-list-1::after {
    width: 6px;
    top: 7px;
    opacity: 0.5;
}







.overlay {
    position: fixed;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 777;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}
.overlay.active {
    opacity: 1;
}
.overlay .btnClose {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 38px;
    font-weight: bold;
    color: #fff;
}
.overlay .btnClose:before {
    content: '\00d7';
}
.overlay .content {
    width: 95%;
    height: 95%;
    padding-top: 70px;
    margin: 0 auto;
    color: #fff;
    box-sizing: border-box;
    overflow-y: auto;

}
.overlay .content .info {}






.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 6px;
    color: #000;
    box-sizing: border-box;
}


.cards.cr-1 .card {
    flex: 1 1 300px;
    max-width: 400px;
    border: none;
    border-radius: 10px;
    border: 1px solid #bbb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 12px;
    background-color: #fff;
    box-sizing: border-box;
}
.cards.cr-1 .c-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}
.cards.cr-1 .c-header .h-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.cards.cr-1 .c-header .h-details h6 {
    margin: 4px 0px;
    font-weight: 700;
    font-size: 18px
}
.cards.cr-1 .c-header .h-details span {
    font-weight: 300;
    font-size: 15px;
    color: #999;
}
.cards.cr-1 .c-header .h-icon {
    width: 50px;
    height: 50px;
    //background-color: #eee;
    border: 1px solid #bbb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.cards.cr-1 .c-header .h-icon img {
    max-width: 80%;
    max-height: 80%;
}
.cards.cr-1 .c-header .h-icon.cover img {
    background: transparent;
    max-width: 100%;
    max-height: 100%;
    object-fit: fit;
}
.cards.cr-1 .h-badge span {
    background-color: #fffbec;
    width: 60px;
    height: 25px;
    padding-bottom: 3px;
    border-radius: 5px;
    display: flex;
    color: #fed85d;
    justify-content: center;
    align-items: center
}

.carba.cr-1 .text1 {
    font-size: 14px;
    font-weight: 700
}

.cards.cr-1 .text2 {
    color: #a5aec0
}


/** Card 2 **/
.cards.cr-2 .card {
    position: relative;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex: 0 1 240px;
    max-width: 240px;
    //overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
}
.cards.cr-2 .card-close:after {
    content: '\00d7';
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    font-size: 22px !important;
    font-weight: bold;
    background: red;
    color: #fff!important;
    border-radius: 50%;
    position: absolute;
    top: -8px;
    right: -8px;
    z-index: 1;
}
.cards.cr-2 .card-photo {
    width: 240px;
    height: 180px;
    //max-width: 150px;
    border-radius: 8pp 8px 0 0;
    background-color: #eee;
    align-content: center;
    text-align: center;
}
.cards.cr-2 .card-photo img {
    //display: block;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    object-fit: cover;
}
.cards.cr-2 .card-data {
    align-content: center;
    padding: 12px;
    box-sizing: border-box;
}
.cards.cr-2 .card-title {
    font-size: 16px;
    font-weight: bold;
}
.cards.cr-2 .card-content {
    font-size: 14px;
    color: #555;
    padding-bottom: 8px;
}


.cards.cr-2.tiny {
    padding: 12px 6px;
    justify-content: flex-start;
}
.cards.cr-2.tiny .card {
    flex: auto;
    padding: 0px 3px;
}





/****** Data Card *******/
.dc {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 22px auto;
}
.dc .dc1 {
    flex: 0 1 150px;
    display: flex;
    gap: 12px;
    border-radius: 6px;
    border: 1px solid #bbb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 12px auto;
}
.dc .dc1 .icon {
    width: 50px;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eee
}
.dc .dc1 .icon svg{
    width: 30px;
    height: 40px;
    fill: #999;
}

.dc .dc1 .data {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    padding: 6px 0;
    display: flex;
    flex-direction: column;
}

.dc .dc1 .data span {
    flex: 1;
}

.dc .dc1 .data span:nth-child(1){
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 2px;
}
.dc .dc1 .data span:nth-child(2){
    font-size: 30px;
    font-size: 5vw;
    font-weight: 800;
    letter-spacing: 3px;
}
@media screen and (min-width: 600px) {
    .dc .dc1 .data span:nth-child(2){
        font-size: 30px;
    }
}



#btnPopupBrowse {
    position: fixed;
    right: 10px;
    bottom: 10px;
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background-color: #fff;
    z-index: 778;
    display: none;
    justify-content: center;
    align-items: center;
}
#btnPopupBrowse[bubble]:not([bubble=""]):not([bubble="0"]):after {
    content: attr(bubble);
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    font-size: 12px!important;
    font-weight: bold;
    background: red;
    color: #fff!important;
    border-radius: 50%;
    position: absolute;
    top: -8px;
    right: -8px;
}
.popup {
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 90%;
    max-width: 900px;
    max-height: 90%;
    //font-size: 17px;
    //border: 1px solid #0064bd;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    background: #fff;
    color: #000;
    top: 50%;
    left: 50%;
    transform-origin: 50% 50%;
            transform: translate(-50%, -50%) scale(0);
         -o-transform: translate(-50%, -50%) scale(0);
       -moz-transform: translate(-50%, -50%) scale(0);
    -webkit-transform: translate(-50%, -50%) scale(0);
    
            transition: all .3s ease-in-out;
       -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    opacity: 1;
    visibility: hidden;
    z-index: 776;
    
    box-shadow: 
        0 1px 1px rgba(0, 0, 0, 0.1), 
        0 2px 2px rgba(0, 0, 0, 0.1), 
        0 4px 4px rgba(0, 0, 0, 0.1), 
        0 8px 8px rgba(0, 0, 0, 0.1), 
        0 16px 16px rgba(0, 0, 0, 0.1);
    resize: both;
}
.popup.focus {
    z-index: 777;
}
.popup.active {
    opacity: 1;
            transform: translate(-50%, -50%) scale(1);
         -o-transform: translate(-50%, -50%) scale(1);
       -moz-transform: translate(-50%, -50%) scale(1);
    -webkit-transform: translate(-50%, -50%) scale(1);
    visibility: visible;
}

.popup .popup-header {
    display: flex;
    //justify-content: center;
    align-items: center;
    height: 50px;
    background: #40E0D0;
    border-bottom: 1px solid #ccc;
    cursor: move;
    padding: 0px 8px;
}
.popup.focus .popup-header {
    background-color: #088F8F;
    color: #fff;
}
    .popup .popup-header .title {
        flex: 1;
    }
    .popup .popup-header .icon {
        width: 30px;
        height: 30px;
        text-align: center;
        align-content: center;
        border-radius: 50%;
    }
    .popup .btnMinimized {
        height: 40px;
        overflow: hidden;
    }
    .popup .btnMaximized {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: 0;
        border-radius: 0;
    }

.popup .popup-content {
    flex-grow: 1;
    min-height: 70px;
    overflow-y: auto;
}

.popup .popup-content {
    padding: 10px;
    align-content: center;
    font-size: 18px;
    font-weight: 400;
}

.popup .popup-footer {
    width: 100%;
    display: block;
    border-top: 1px solid #ddd;
    padding: 10px 12px;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-end;
}
    .popup .popup-footer button {
        min-width: 120px;
        padding: 10px 0;
        margin: 0px 4px;
        font-size: 15px;
        font-weight: 400;
        outline: none;
        border: 1px solid #999;
        border-radius: 4px;
        cursor: pointer;
        box-sizing: border-box;
    }
    .popup .popup-footer button.blue {
        background-color: #0064bd;
        color: #fff;
    }
    .popup .popup-footer button.green {
        background-color: #2ea44f;
        color: #fff;
    }
    .popup .popup-footer button.red {
        background: red;
        color: #fff;
        font-weight: 700;
    }
    .popup .popup-footer button:disabled {
        opacity: 0.5;
    }




@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

.blinking {
    animation: blink 0.2s step-start infinite;
}
