

/*------------------- menu button ------------------------*/

.menubutton {
    display: flex;
    width: 18px;
    height: 18px;
    flex:0 0 18px;
    justify-content: center;
    align-items: center;
    margin: 0px 1px 0px 1px;
    padding: 0;
    box-sizing: border-box;
    border-radius: 2px;
    user-select: none;
    filter: invert(1);
    border:0;
    background:none;
}

.menubuttondisabled {
    display: flex;
    flex:0 0 18px;
    width: 18px;
    height: 18px;
    justify-content: center;
    align-items: center;
    margin: 0px 1px 0px 1px;
    padding: 0;
    box-sizing: border-box;
    filter: brightness(0.4);
    user-select: none;
}

.menubutton:hover {
    filter: invert(0);
    background:#79c9dd !important;
}

.menubutton:active {
    filter: invert(0);
    background:#56b4cc !important;
}

.menubuttonopen {
    display: flex;
    flex:0 0 18px;
    width: 18px;
    height: 18px;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0px 1px 0px 1px;
    box-sizing: border-box;
    border-radius: 2px;
    user-select: none;
    filter: invert(0);
    border:0;
    background:#56b4cc !important;
}

img.button {
    width: 14px;
    height: 14px;
    filter: brightness(0.9);
    user-select: none;
}
/*---------highlight menu button  ------------------------      */

div.highlightmenubutton {
    display: flex;
    flex:0 0 18px;
    width: 18px;
    height: 18px;
    justify-content: center;
    align-items: center;
    margin: 0px 1px 0px 1px;
    padding: 0;
    box-sizing: border-box;
    border-radius: 2px;
    user-select: none;
}

div.highlightmenubuttondisabled {
    display: flex;
    flex:0 0 18px;
    width: 18px;
    height: 18px;
    justify-content: center;
    align-items: center;
    margin: 0px 1px 0px 1px;
    padding: 0;
    box-sizing: border-box;
    filter: invert(0.7) brightness(0.6);
    user-select: none;
    opacity:0.5;
}

div.highlightmenubutton:hover {
    /*border: 1px solid #333;*/
    border-radius: 2px;
    background: #56b4cc;
}

div.highlightmenubutton:active {
    /*border: 2px solid #111;*/
    background: #56b4cc;
}

/* ------- menu text button  --------------------------*/

.menutextbutton {
    display: flex;
    position:relative;
    height: 18px;
    justify-content: center;
    align-items: center;
    margin-right: 2px;
    font-family: "Tahoma";
    font-weight: bold;
    font-size:12px;
    padding: 0px 4px 0px 4px;
    box-sizing: border-box;
    border-radius: 3px;
    user-select: none;
    border:0;
    background:#79c9dd;
    color:#111;
}

.menutextbuttonred{
    background:#d43333 !important;
}

.menutextbuttonred:hover{
    background:#f53535 !important;
}

.menutextbuttonred:active{
    background:#d43333 !important;
}

.menutextbuttondisabled {
    display: flex;
    position:relative;
    height: 18px;
    justify-content: center;
    align-items: center;
    margin-right: 2px;
    font-family: "Tahoma";
    font-weight: bold;
    font-size:12px;
    padding: 0px 4px 0px 4px;
    box-sizing: border-box;
    user-select: none;
    border-radius: 3px;
    background-color:#999;
    color:#666;
}

.menutextbutton:hover {
    background:#56b4cc;
}

.menutextbutton:active {
    background:#56b4cc;
}

/* ---------- window button --------------------*/

div.windowbutton {
    border-radius:3px;
    margin: 1px 0px 0px 0px;
}


button.windowButton {
    display:flex;
    position:relative;
    width: fit-content;
    background-color:#79c9dd;
    color:#111;
    font-family: "Tahoma";
    font-size:11pt;    
    font-weight:bold;    
    border-radius: 3px;
    border: none;
    padding:3px 10px 4px 10px;
    cursor:pointer;
    height:24px;
    margin-top:4px;
}

button.windowButton:hover {
    background-color:#5fd4f1;
}

button.windowButton:disabled {
    background-color:#999;
    color:#666;
    cursor:default;
}

button.windowRedButton {
    background-color:#d43333 !important;
}

button.windowRedButton:hover {
    background-color:#f53535 !important;
}

button.windowRedButton:active {
    background-color:#d43333 !important;
}

button.windowRedButton:disabled {
    background-color:#999 !important;
}

/* ------- storyboard tool buttons ----------------------*/

div.tooldiv {
    position:relative;
    display: flex;
    height:20px;
    align-items:center;
}

div.tooltitle {
    user-select: none;
    position: relative;
    font-weight: bold;
    font-size: 11px;
    color: #888;
    display: flex;
    padding-right: 3px;
    padding-left: 2px;
    height: 11px;
}

/*---------- line menu selection box ---------*/
.select {
    font-family: "Arial";
    font-size: 9pt;
    color: #fff;
    padding-left: 0px;
    padding-top:3px;
    margin-left: 1px;
    margin-right: 5px;
    box-sizing: border-box;
    border: 0;
    background-color: #1a1a1a;
    text-indent: 0;
    height: 20px;
    width:80px;
    border-radius:3px;
}

.selectdisabled {
    font-family: "Arial";
    font-size: 9pt;
    color: #ddd;
    padding-left: 4px;
    padding-top:3px;
    margin-left: 1px;
    margin-right: 5px;
    box-sizing: border-box;
    border: 0;
    background-color: #1a1a1a;
    text-indent: 0;
    height: 20px;
    width:80px;
    border-radius:3px;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.select:hover {
    background: #333;
}

.select:focus {
    color: #fff;
    outline: none;
}

.selectVersion {
    font-family:Tahoma;
    font-weight: bold;
    width:auto !important;
}

/*------------------- slider button ------------------------*/


div.sliderbox {
    position: relative;
    display: flex;
    height: 20px;
    align-items: center;
}

div.sliderdial {
    position:absolute;
    width: 3px;
    height:18px;
    background:#777;
    z-index:500;
    border-radius:2px;
}

div.sliderdial:hover {
    background:#79c9dd;
}

div.sliderdial:active {
    background:#56b4cc;
}

div.sliderbar {
    position:relative;
    display:flex;
    height:2px;
    background:#444;
    z-index:100;
}

div.sliderdisplay {
    position: relative;
    display: flex;    
    overflow: hidden;
    background: #111;
    box-sizing: border-box;    
    border:1px solid #555;
    border-top-left-radius:3px; 
    border-bottom-left-radius:3px; 
    margin-left:2px;
    padding-top: 1px;          
    width: 34px;
    height: 20px;
    font-size: 16px;
    text-align: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    user-select:none;

}

div.sliderarrows {
    display:flex;
    flex-direction: column;
    width:14px;
    height:20px;
    background:#555;
    border-top-right-radius:3px; 
    border-bottom-right-radius:3px; 
    box-sizing: border-box;
}

div.sliderarrow {
    display:flex;
    height:10px;
    color:black;
    user-select:none;
    font-size:9px;
    justify-content: center;
    box-sizing: border-box;
    overflow: hidden;
}

div.sliderarrowup {
    padding-top:1px;
    border-top-right-radius:2px; 
}

div.sliderarrowdown {
    padding-top:0px;
    border-bottom-right-radius:2px;
}

div.sliderarrow:hover {
    background:#79c9dd;
}

div.sliderarrow:active {
    background:#56b4cc;
}

/* --------------- color picker ---------------*/

.colorpicker {
    position:relative;
    display:flex;
    flex: 0 0 18px;
    height: 18px;
    padding:0;
    margin:0px;
    border:0;
    background:none;
}
.colorpicker::-webkit-color-swatch {
    display: flex;
    position: absolute;    
    flex: 0 0 18px;
    height: 18px;
    width:18px;
    left:0px;
    top:0px;   
    padding:0;
    box-sizing: border-box;
    border: 1px solid #555;
    border-radius:4px;
}
.colorpicker::-moz-color-swatch {
    display: flex;
    position: absolute;    
    flex: 0 0 18px;
    left:0px;
    top:0px;
    height:18px;
    width:18px;
    padding:0;    
    box-sizing: border-box;
    border: 1px solid #555;
    border-radius:4px;
}

.colorpicker::-webkit-color-swatch:hover {
    border: 1px solid #79c9dd;
}

.colorpicker::-moz-color-swatch:hover {
    border: 1px solid #79c9dd;
}

/*--------- CSS generated volume speaker button  ------------------------      */


div.audiorecordreddot {
    display: flex;
    position: relative;
    height: 8px;
    width: 8px;
    border-radius: 8px;
    background: #d00;
    border: 0;
    user-select: none;
}

div.audiorecordreddotdisabled {
    display: flex;
    position: relative;
    height: 8px;
    width: 8px;
    border-radius: 8px;
    background: #666;
    border: 0;
    user-select: none;
}

div.audioicon {
    display: flex;
    position: relative;
    height: 14px;
    width: 14px;
    border: 0;
    margin: 0;
    user-select: none;
}

div.audioiconhighlight {
    background:#79c9dd !important;
}

div.audioiconhighlighttriangle {
    border-right: 6px solid #79c9dd !important;
}

div.audioiconhighlightcircle {
    border: 2px solid #79c9dd !important;
}

div.audioicontriangle {
    position: absolute;
    display: flex;
    width: 0;
    top: 1px;
    left: 1px;
    height: 0;
    border-right: 6px solid #777;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    z-index: 90;
    user-select: none;
}

div.audioiconmagnet {
    position: absolute;
    display: flex;
    height: 6px;
    width: 6px;
    border-radius: 1px;
    background: #777;
    top: 4px;
    left: 1px;
    z-index: 90;
    user-select: none;
}

div.audioiconcircle1 {
    position: absolute;
    display: flex;
    height: 4px;
    width: 4px;
    background: #777;
    border-radius: 4px;
    top: 5px;
    left: 6px;
    z-index: 88;
    user-select: none;
}

div.audioiconcircle2 {
    position: absolute;
    display: flex;
    height: 8px;
    width: 8px;
    border: 2px solid #777;
    border-radius: 8px;
    top: 1px;
    left: 1px;
    z-index: 88;
    user-select: none;
}

div.audioiconmask {
    position: absolute;
    display: flex;
    width: 8px;
    height: 14px;
    background: #eee;
    z-index: 89;
    user-select: none;
}


