/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Feb 4, 2019, 9:46:08 AM
    Author     : KlausGiebermann
    version: 1.2.0
*/




:root { 
    --top-height: 54px;
    --left-width: 240px;
    --mint-color: #1D4E89;
}


body {
    /*    display: flex;
    //    min-height: 100vh;
    //    flex-direction: column; */
    user-select:none; 
    unselectable:'on';	
    margin: 0;
    font-family: "Helvetica Neue",Arial,Helvetica,sans-serif;
    font-size: 14px;
}

main {
    /*   flex: 1 0 auto; */
}

.auth-border{
    border-right: 1px solid #bbb;
}

.auth-left{
    position: absolute;
    left: 0;
    width: 228px;
    top: var(--top-height);
    bottom: 0;
    border: 1px solid #bbb;
}

.auth-middle{
    position: absolute;
    left: 228px;
    right: 322px;
    top: var(--top-height);
    bottom: 0;
    border: 1px solid #bbb;
}

.auth-right{
    position: absolute;
    right: 0;
    width: 315px;
    top: var(--top-height);
    bottom: 0;
    border: 1px solid #bbb;
}


.auth-header{
    position: absolute;
    width: 100%;
    top: 0;
    height: var(--top-height);
    /*    background: #000000; */
    background-image: linear-gradient(to left bottom, #00e , #008);
    color: #fafafa;
    line-height: var(--top-height);
    font-size: 20px;
}



.auth-brand{
    padding-left: 20px;
}

.auth-action{
    padding-right: 20px;
    line-height: var(--top-height);
    font-size: 32px;
}

.auth-head{
    position: absolute;
    width: 100%;
    top: 0px;
    height: var(--top-height);
    line-height: var(--top-height);
    display: flex;
    overflow-x: auto;
}



.auth-tab-filler{
    border-bottom: 1px solid #ccc;
    text-align: left;
    cursor: pointer;
    display: inline-block;
    height: 30px;
    padding: 4px;
    line-height: 20px;
    margin-top: 3px;
    flex-grow:1;
}



.auth-tab-filler-left{
    border-bottom: 1px solid #ccc;
    cursor: pointer;
    display: inline-block;
    height: 30px;
    line-height: 20px;
    margin-top: 3px;
    width: 2px;
}


.auth-body{
    position: absolute;
    width: 100%;
    top: 36px;
    bottom: 26px;
    background: white;
    overflow: auto;
}


.auth-footer{
    position: absolute;
    width: 100%;
    height: 26px;
    bottom: 0px;
    border-top: 1px solid #bbb;
}


/*


.auth-header {
    position: absolute; 
    top:0;  
    height: 40px;
    width:100%;
    font-size: 14px;
    line-height: 40px;
    color:white;
    background: #000000;
    padding-left: 8px;
    margin: 0;
}


.auth-logo{
    position: absolute;
    left: 0;
    width: 178px;
    top: 0;
    text-align: center;
    font-size: 1.5em;
}


.auth-main {
    position: absolute; 
    top:40px;  
    bottom: 25px;
    width:100%;
}

.auth-footer{
    position: absolute;
    width: 100%;
    height: 25px;
    bottom: 0;
    background: #f0f0f0;
    color: #000000;
}

.auth-left{
    position: absolute; 
    left: 0;
    width: 178px;
    top: 0;
    bottom: 0;
 
    
    border-right: 1px solid #bbb;
}


.auth-right{
    position: absolute; 
    right: 0;
    width: 322px;
    top: 0;
    bottom: 0;
    background: #c0c0c0;
}

.auth-search{ 
    position: absolute;
    left: 0;
    width: 100%;
    height: 35px;
    line-height: 35px;
    border-bottom: 1px solid #bbb;
}

.auth-palette{
    position: absolute;
    left:0;
    width: 100%;
    top: 35px;
    bottom: 0;
    background: #f3f3f3;
    overflow-y: auto;
}

.auth-middle{
    position: absolute; 
    left: 178px;
    right: 322px;
    top: 0;
    bottom: 0;
}

.auth-workspace-head{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 35px;
    background: #a0a0a0;
}

.auth-workspace-body{
    position: absolute;
    left: 0;
    right: 0;
    top: 35px;
    bottom: 0;
    overflow: auto;
}


.auth-info-head{
    position: absolute;
    width: 100%;
    top: 35px;
    bottom: 0;
}


.auth-info-body{
    position: absolute;
    width: 100%;
    top: 35px;
    bottom: 0;
    background: white;
}
*/

.palette-node{
    /*    margin: 5px 5px 5px 10px; */
    position: relative;
    width: 122px;
    min-height: 30px;
    height: auto;

    border: 1px solid #999;
    border-radius: 3px;
    cursor: move;
    display: inline-block;

    /* fix ref. to 
    https://stackoverflow.com/questions/73972272/google-chrome-106-draggable-causing-elements-to-disappear*/
    transform: translate(0, 0);
    z-index: 0;

}

.palette-node:hover{
    border: 1px solid #f00;
}


.component-view{
    margin: 5px 5px 5px 10px; 
    position: relative;
    width: 122px;
    min-height: 30px;
    height: auto;

    border: 1px solid #999;
    border-radius: 6px;
    cursor: move;
    display: inline-block;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}



.component-view:hover{
    border: 1px solid #f00;
}


.component-view-icon{
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width:25px;
    border-radius: 2px 0 0 2px;
    height: 100%;
    line-height: 28px;
    background: #a0a0a0;
}



.component-view-label{
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    right:0;
    line-height: 28px;
    text-align: center;
    font-size: 11px;
    padding-left: 5px;
    padding-right: 5px;
    text-overflow: none;
}



.palette-node-icon{
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width:30px;
    border-radius: 2px 0 0 2px;
    line-height: 28px;
    text-align: center;
}


.palette-node-icon i{
    font-size: 18px;
    padding-top:5px;
}

.palette-node-label{
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    right:0;
    /*    border-radius: 5px 5px 5px 5px; */
    line-height: 28px;
    text-align: left;
    font-size: 11px;
    padding-left: 5px;
    padding-right: 5px;
    overflow: hidden;
}

.pin-left {
    position: absolute;
    background: #f0f0f0;
    left: -5px;
    top: 9px;
    width:10px;
    height:10px;
    border: 1pt solid #999;
    border-radius: 4px;
    background: #d0d0d0;
}


.pin-right {
    position: absolute;
    background: #f0f0f0;
    right: -5px;
    top: 9px;
    width:10px;
    height:10px;
    border: 1pt solid #999;
    border-radius: 4px;
    background: #d0d0d0;
}


.pin-right-1 {
    position: absolute;
    background: #f0f0f0;
    right: -5px;
    top: 9px;
    width:10px;
    height:10px;
    border: 1pt solid #999;
    border-radius: 4px;
    background: #d0d0d0;
}

.pin-right-1:hover{
    background: #ff7f0e;
    border: 1pt solid #ff6600;
}



.pin-left-1 {
    position: absolute;
    background: #f0f0f0;
    left: -5px;
    top: 9px;
    width:10px;
    height:10px;
    border: 1pt solid #999;
    border-radius: 4px;
    background: #d0d0d0;
}


.pin-left-1:hover{
    background: #ff7f0e;
    border: 1pt solid #ff6600;
}


.collapsible li.active i {
    -ms-transform: rotate(90deg); /* IE 9 */
    -webkit-transform: rotate(90deg); /* Chrome, Safari, Opera */
    transform: rotate(90deg);
}

.thumb{

}

.collapsible li i .thunb{
    transition: .1s all linear;
}


.collapsible-header{
    padding: 9px;
}


.collapsible-body{
    padding: 0;
}

.auth-tr {
    border-top: 1pt solid #ddd;
    border-bottom: 1pt solid #ddd;
}
.auth-td-0{
    padding: 3px 3px 3px 6px;
    width: 90px;
    border-right: 1pt solid #ddd;
}

.auth-td-1{
    padding: 3px 3px 3px 6px;
    width: calc(100% - 90px);
}

.palette-content{
    padding: 20px 10px 10px 20px;
}


.auth-edit{
    position: absolute; 
    width: 500px;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 100;
    background: white;
    border-left: 1px solid #ddd;
    border-bottom: 1px solid #bbb;
}


.auth-tray-header{
    position: absolute; 
    width: 100%;
    top: 0;
    height: 84px;
    background: #f3f3f3;
}

.auth-tray-body{
    position: absolute;
    width: 100%;
    top: 84px;
    bottom: 0;
    padding: 6px;
    border: 1px solid #ccc;
    overflow-y: auto;
}

.auth-tray-titlebar{
    position: absolute;
    top: 0;
    width:100%;
    height: 35px;
    line-height: 23px;
    color: #000;
    padding: 6px;
    border-bottom: 1pt solid #ddd;
    font-weight: bold;
}


.auth-tray-toolbar{
    position: absolute;
    top: 36px;
    width:100%;
    height: 46px;
    padding: 6px;
}

.auth-btn {
    background: #fff;

    text-align: center;
    border: solid 1px #ccc;
    cursor: pointer;
    padding: 6px 14px;
}


.auth-space {
    margin-right: 16px;
}
.auth-btn:hover{
    background: #ccc;
}


.auth-row {
    width: 100%;
    margin-bottom: 5px;
}


.auth-row label{
    width: 100px;
}

.auth-row .display{
    width: calc(100%-100px);
}

.auth-workbench {
    min-width: 800px;
    min-height: 500px;
    width: 100%;
    height: 100%;

    border: 1pt solid #ccc;
    padding: 5px;
    background: #f8f8f8;
}


.auth-container {
    width: 100%;
    height: auto;
}

.auth-block{
    border: 1pt solid #ccc;
    padding: 5px;
    min-width: 50px;
    min-height: 40px;
    width: auto;
    height: auto;
    background: #f0f0f0;
}



.auth-horizontal-space {
    width: 100%;
    border: 1pt solid #ccc;
    height: 30px;
    text-align: center;
    background: lightyellow;
}



.auth-vertical-space {
    min-width: 30px;
    width: auto;
    border: 1pt solid #ccc;
    height: auto;
    min-height: 40px;
    text-align: center;
    background: lightyellow;
    display: inline-block;

}

.auth-vertical-block {
    min-width: 20px;
    width: auto;
    height: auto;
    min-height: 40px;
    background: white;
    display: inline-block;
}



.auth-row-block{
    border: 1pt solid #ccc;
    padding: 5px;
    min-width: 50px;
    min-height: 40px;
    background: #f0f0f0;
    text-align: center;
}

.auth-tab{
    border: 1px solid #ccc;
    text-align: left;
    cursor: pointer;
    display: inline-block;
    max-width: 100px;
    height: 30px;
    padding: 4px;
    line-height: 20px;
    margin-top: 3px;
    border-radius: 3px 3px 0 0;
}


.auth-tab-alt{
    border: 1px solid #ccc;
    text-align: left;
    display: inline-block;
    width: 120px;
    height: 30px;
    padding: 4px;
    line-height: 20px;
    margin-top: 3px;
    position: relative;
    border-radius: 3px 3px 0 0;
}


.auth-tab-alt-icon{
    border: 1px solid #ccc;
    text-align: center;
    display: inline-block;
    width: 50px;
    height: 30px;
    padding: 4px;
    line-height: 20px;
    margin-top: 3px;
    position: relative;
    border-radius: 3px 3px 0 0;
    cursor: pointer;
    color: #a0a0a0;
}
.auth-tab-alt-icon:hover{
    color:#000000;
}



.auth-tab-alt-text{
    text-align: left;
    cursor: pointer;
    display: inline-block;
    width: 100px;
    height: 100%;
}

.auth-tab-alt-btn{
    position: absolute;
    right: 4px;
    top: 9px;

    width:12px;
    height:12px;
    line-height:10px;
    text-align: center;
    display: inline-block;
    border-radius: 6px;

}


.auth-tab-alt-btn:hover{
    background: #c0c0c0;
}

.auth-tab-btn{
    border: 1px solid #ccc;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    width: 40px;
    height: 30px;
    padding: 4px;
    line-height: 20px;
    margin-top: 3px;
}



.auth-active{
    background: white;
    border-bottom: none;
    color: #000000;
}

.auth-overflow {
    position: absolute;
    left: 5px;
    right: 85px;
    top: 0;
    bottom: 0;
    overflow-x: auto;
}

.auth-parameter-block{
    border: 1px solid #000;
    width: calc(100%-12px);
    margin: 5px;
}

.auth-block-region{
    min-height: 60px;
    width: 100%;
}

.auth-block-clickable{
    cursor: pointer;
}

.auth-parameter {
    border: 1pt solid #ccc;
    border-radius: 4px; 
    min-width: 200px;
    width: 200px;
    min-height: 50px;
    background: #c0ca33;
    margin: 10px;
    display: inline-block;
    cursor: move;
}

.auth-region{
    min-height: 20px; 
    /*    text-align: center; */
    padding: 2px; 
    min-width: 50px;
    width: 100%;
    border: solid 2px #1D4E89;
    border-radius: 4px;
    display: flex; 
    vertical-align: top;
    flex-wrap: wrap; 
    flex-grow: 0;
}

.auth-sheet{
    width: 100%;
    min-height: 40px;
    overflow-x: auto;
    position: relative;
}

.collapsible-header{
    display: block;
}

.auth-content {
    width: 100%;
    min-height: 40px;
    border: solid 2px #1D4E89;
}

.brand-color {
    background: #1D4E89;
    color: white;
}

.auth-textarea {
    width: 100%;
    height: 100%;
    resize: none;
    min-height: 100px;
}


.auth-node {
    position: absolute;
}

.auth-node-used {
    position: absolute;
    height: 36px;
    border: 3px solid #1D4E89;
    border-radius: 9px;
    width: 128px;
}


.auth-page{
    position: absolute; 
    left: 0;
    right: 0;
    top: 0;
    bottom:0; 
    overflow: auto;
}

.auth-separator {
    position: absolute;
    top: var(--top-height);
    bottom: 0;
    width: 7px;
    right: 315px;
    cursor: col-resize;
    background: #f3f3f3 url(../images/handle.png) no-repeat 50% 50%;
}


.auth-separator0 {
    position: absolute;
    top: var(--top-height);
    bottom: 0;
    width: 160px;
    right: 235px;
    z-index: 100;
    /*    border: 4px solid #000; */
    display:none;
    cursor: col-resize;
}


.auth-bg{
    background: #f3f3f3;
}

.auth-tight{
    margin: 0;
}

.auth-shade{
    position: absolute; 
    width: 100%;
    height: 100%;
    background: rgba(160,160,160,0.5);
    display: none;
}

.auth-cross{
    cursor: crosshair;
}

.collapsible-header{
    padding: 5px;
}

.auth-action-btn{
    background-color: transparent;
    color: #ccc;
    padding-left: 10px;
    display: inline-block;
    cursor: pointer;

}

.auth-action-btn:hover{
    color:#fff;
}


.auth-action-btn-disabled{
    opacity: 0.5;
}


.auth-inline {
    /*    border: 2px solid #0000a0; */
    margin: 2px;
    width: auto;
    padding: 2px;
    display: inline;
    transition: box-shadow .25s, -webkit-box-shadow .25s;
    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);
    border: 1px solid #dfdfdf;
}

.auth-spacer{
    height: auto; 
    min-height: 28px;
    width: 25px;
    height: 100%;
    background: #00e5ff
}


.auth-placeholder{
    border-radius: 4px;
    padding-left: 2px;
    padding-right: 2px;
    margin-left: 2px;
    margin-right: 2px;
    min-width: 24px;
    text-align: center;
    max-height: 24px;
    padding-left: 5px;
    padding-right: 5px;
}


.auth-drop-zone{
    border: 1px dashed #000000;
    border-radius: 4px;
    background: #ffffed;
    display: inline-flex;
    flex-grow: 1;
}


.auth-drop-zone:hover{
    /*    background: #ffff00;*/
}  

.auth-drop-zone[drop-active=true] {
    border: 2px dashed #00f; 
    line-height: 2.5;
}

.auth-full {
    width:100%;
    height:100%
}


.auth-icon{
    vertical-align: middle;
}

.auth-truncate{ 
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.auth-card-body {
    padding: 0.25em;
}


.btn.btn-floating{
    right:10px;
    bottom:20px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    padding: 5px;
}

.btn-round{
    border-radius: 50%;
}

.btn.btn-floating-lg{
    border-radius: 50%;
    width: 60px;
    height: 60px;
    line-height: 60px;
    z-index: 999;
}

.auth-card-header{
    padding: .5rem;
    margin-bottom: 0;
    background-color: rgba(0,0,0,.03);
    border-bottom: 0.5px solid rgba(0,0,0,.125);
}


.card{
    border-radius: 0;
    border: none;
}

.auth-card-header:hover {
    background: #f0f0f0;
}

.card-title{
    font-size: 24px;
    font-weight: 300;
}

.fixed-action-btn{
    position: sticky;   
    /*right:60px; */
    bottom:80px;
    margin: 20px;
}

.auth-iframe{
    border-width: 0;
}


.auth-label{
    border-radius: 5px 5px 0px 0px;
    padding-left: 5px;
    padding-right: 5px;
    width: 100%;
}


.auth-info{
    background: lightblue;
}

.auth-danger{
    background: red;
    color: white;
}



.sketch-drop {
    position: relative;
    margin-top: 4px;
    width: 25px;
    background: lightyellow;
    height: 25px;
    border-radius: 10px; 
}

.sketch-drop:hover{
    background: yellow;
}

.sketch-node{
    position: relative;
    width: 86px;
    height: 25px;
    margin-top: 4px;
    background: #4682B4;
    color: white;
    text-align: center;
    border-radius: 10px;
    line-height: 25px;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.sketch-node:hover{
    background: #007fff;
}

.sketch-node-warning{
    position: relative;
    width: 86px;
    height: 25px;
    margin-top: 4px;
    background: red;
    color: white;
    text-align: center;
    border-radius: 10px;
    line-height: 25px;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}



/* browser part */

.browser-main {
    position: absolute; 
    left: 40px;
    right: 40px;
    top: 10px;
    bottom: 40px;
    border-radius: 10px;

    background: #ffffff;
    z-index: 1050;
}

.browser-header{ 
    position:absolute; 
    width: 100%;
    top: 0;
    height: 45px;
    background-image: linear-gradient(to left bottom, #00e , #008);
    color: white;
    border-radius: 10px 10px 0px 0px;
    line-height: var(--top-height);
    font-size: 28px;
    padding-left: 20px;
    padding-right: 20px;
}



.browser-left {
    position: absolute;
    left: 0;
    width: 250px;
    bottom: 0;
    top: var(--top-height);
    border-right: 1pt solid #eee;
    border-radius: 0 0 0 10px;
}

.browser-right {
    position: absolute;
    left: 250px;
    right: 0;
    background: #ffffff;
    top: var(--top-height);
    bottom: 0;
    overflow-y: auto;
    border-radius: 0 0 10px 0;
}

.browser-message {
    background: #f3f3f3;
    width: 100%;
    text-align: center;
    font-size: 2em;
    border-radius: 10px;
    padding-top: 40px;
    padding-bottom: 40px;


}

.browser-info{
    background: #f3f3f3;
    border-radius: 2px;
    width: 100%;
    padding:15px;
}


.browser-action{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 36px;
    padding-left: 15px;
    padding-right: 15px;
    line-height: 36px;
    font-size: 1.5em;
    color: blue;
}


.browser-close-btn {
    position: absolute;
    right: 0;
    top: 0; 
    width: 45px;
    height: 35px;
    font-size: 35px;
    color: #ccc;
    cursor: pointer;
    background-color: transparent;    
}

.browser-close-btn:hover {
    color: #fff;
}





.browser-item{
    height: 45px;
    width: 250px;
    line-height: 45px;
    cursor: pointer;
    list-style-type: none;
    padding-left: 20px;
}


.browser-item:hover{
    background: #f0f0f0;
}


.browser-item-home:before{
    content: 'folder';
    font-family: 'Material Icons';
    font-size: 18px;
    padding-right: 10px;
}


.browser-item-favorite:before{
    content: 'grade';
    font-family: 'Material Icons';
    font-size: 18px;
    padding-right: 10px;
}


.browser-item-recent:before{
    content: 'history';
    font-family: 'Material Icons';
    font-size: 18px;
    padding-right: 10px;
}

.browser-item-share:before{
    content: 'share';
    font-family: 'Material Icons';
    font-size: 18px;
    padding-right: 10px;
}

.browser-item-public:before{
    content: 'public';
    font-family: 'Material Icons';
    font-size: 18px;
    padding-right: 10px;
}


.browser-item-publish:before{
    content: 'publish';
    font-family: 'Material Icons';
    font-size: 18px;
    padding-right: 10px;
}



.browser-item-delete{
    position: absolute; 
    bottom: 20px;
}

.browser-item-delete:before{
    content: 'delete';
    font-family: 'Material Icons';
    font-size: 18px;
    padding-right: 10px;
}


.browser-navbar{
    position: absolute; 
    top: 0;
    left: 0;
    right: 0;
    height: 45px;
    line-height: 45px;
    padding-left: 12px;
    border-bottom: 1pt solid #eee;
    color: #606060;
    font-size: 18px;
    display: inline-flex;
    vertical-align: middle;

}

.browser-navbar-btn{
    width: 32px;
    height: 32px;
    line-height: 32px;
    border: 1pt solid rgba(221,221,221,0.9);
    display: inline-block;
    vertical-align: middle;
    border-radius: 5px;
    background: rgba(240,240,240,0.9); 
    text-align: center;
    margin-top: 6px;
    padding-top: 2px;
}




.browser-navbar-btn:hover{
    background: #fff;
}

.browser-icon {
    width:32px;
    height:32px;
    display: inline-flex;
    padding-top: 10px;

}

.browser-data {
    position: absolute;
    top: 45px;
    bottom: 0;
    left: 0;
    right:0;
    overflow-y: scroll;
}


.browser-navbar-text{
    font-size: 24px;
    display: inline-flex;
    padding-top: 10px;
}

.browser-highlight:hover{
    color: #c0c0c0;
}



.studio-title {
    width: 100%;
    min-height: 100%;
    padding: 80px;
    text-align: center;
    color: #000;
    font-size: 20px;
}


.studio-btn{
    color: #fff;;
    display: inline-block;
    padding: 20px;
    margin: 20px;
    width: 200px;
    border-radius: 10px;

    background-image: linear-gradient(to left bottom, #00e , #008);

    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 12%), 0 1px 5px 0 rgb(0 0 0 / 20%);
}

.studio-btn:hover{
    box-shadow:0 8px 17px 2px rgb(0 0 0 / 14%), 0 3px 14px 2px rgb(0 0 0 / 12%), 0 5px 5px -3px rgb(0 0 0 / 20%);
}


.mathweb-choice {
    display: flex;
    width: 100%;
    background: #c0c0c0;
    color: #000;
    padding: 10px;
    margin-top: 5px;
    border-radius: 5px;
}


.mathweb-icons{
    display: inline-flex;
    vertical-align: top;
    margin-right: 5px;
    cursor: pointer;
}

.mathweb-choice:hover{
    background: #e0e0e0;
}

.mathweb-choice-selected{
    background: #cee0f4;
}


.mathweb-item-text{
    display: inline-flex;
}


.mathweb-item-feedback{
    background: #fff;
    color: #000;
    border: 1pt solid #a0a0a0;
    margin-left: 20px;
    padding: 8px;
    width: 100%;
}


.mathweb-table-btn {
    color: #fff;
    margin-right: 10px;
    cursor: pointer;
}

.mathweb-table-btn:hover {
    color: #00f;
}

.mathweb-table-btn-danger {
    color: #fff;
    cursor: pointer;
}

.mathweb-table-btn-danger:hover {
    color: #dc3545;
}





.circle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    box-shadow: 0px 0px 1px 1px #000000;
    background: #000;
}

.bullet{
    width: 8px;
    height: 8px;
    background: #000;
    border-radius: 50%;
    display: inline-block;
    margin-left: 6px;
    margin-right: 6px;
     
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
    }
    100% {
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }
}

.animation-box{
    
    width: 60px; 
    height: 24px;
    border: 1pt solid #000;
    border-radius: 12px;
    padding-left:  24px;
    display: inline-block;
    line-height: 24px;
    padding-top: 6px;
    padding-bottom: 6px; 
}



.dot-pulse {
  position: relative;
  left: -9999px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: var(--mint-color);
  color:  var(--mint-color);
  box-shadow: 9999px 0 0 -5px;
  animation: dot-pulse 1.5s infinite linear;
  animation-delay: 0.25s;
}
.dot-pulse::before, .dot-pulse::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: var(--mint-color);
  color:  var(--mint-color);
}
.dot-pulse::before {
  box-shadow: 9984px 0 0 -5px;
  animation: dot-pulse-before 1.5s infinite linear;
  animation-delay: 0s;
}
.dot-pulse::after {
  box-shadow: 10014px 0 0 -5px;
  animation: dot-pulse-after 1.5s infinite linear;
  animation-delay: 0.5s;
}

@keyframes dot-pulse-before {
  0% {
    box-shadow: 9984px 0 0 -5px;
  }
  30% {
    box-shadow: 9984px 0 0 2px;
  }
  60%, 100% {
    box-shadow: 9984px 0 0 -5px;
  }
}
@keyframes dot-pulse {
  0% {
    box-shadow: 9999px 0 0 -5px;
  }
  30% {
    box-shadow: 9999px 0 0 2px;
  }
  60%, 100% {
    box-shadow: 9999px 0 0 -5px;
  }
}
@keyframes dot-pulse-after {
  0% {
    box-shadow: 10014px 0 0 -5px;
  }
  30% {
    box-shadow: 10014px 0 0 2px;
  }
  60%, 100% {
    box-shadow: 10014px 0 0 -5px;
  }
}