﻿
/* Mask for Column Selector */
.ColumnsSelector_Mask {
    position: absolute;
    z-index: 5000; /*reducido de 8100 a 5100 por que el radcombobox tiene un z-index de 6000*/
    background-color: #000;
    display: none;
    filter: alpha(opacity=60);
    opacity: 0.6;
}

.ColumnsSelector_Panel {
    border: 1px solid #DDDDDD;
    padding: 5px;
    background-color: #FFF;
    position: fixed;
    left: 0;
    top: 0;
    display: none;
    z-index: 5100; /*reducido de 8100 a 5100 por que el radcombobox tiene un z-index de 6000*/ /*padding:10px;     background-color:#ededed;     border:solid 2px #dedede;*/
    -moz-border-radius: 3px;
    border-radius: 3px;
    -moz-box-shadow: 0px 0px 15px #FFF;
    -webkit-box-shadow: 0px 0px 15px #FFF;
    box-shadow: 0px 0px 15px #FFF;
    overflow: auto;
}

/** {
    text-transform: uppercase;
}*/

.PanelSelector_Mask {
    position: absolute;
    z-index: 9600;
    background-color: #000;
    display: none;
    filter: alpha(opacity=60);
    opacity: 0.6;
}

/* Style for popups */
.AddRecord_Panel {
    position: absolute;
    background-color: #A6A6A6;
    -moz-box-shadow: 0px 0px 15px #FFF;
    -webkit-box-shadow: 0px 0px 15px #FFF;
    box-shadow: 0px 0px 15px #FFF;
    left: 0;
    display: none;
    z-index: 9600;
    padding: 1em;
}

.messageClass {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 10px;
    font-family: Arial;
    max-height: 150px;
    scrollbar-track-color: blue;
    max-width: 350px;
    background-color: lightgreen;
    border-radius: 10px;
    border-color: darkblue;
    border-style: solid;
    border-width: 0.5px;
}

    .messageClass > fieldset > legend {
        font-weight: bold;
        font-size: 14px;
    }
