.etmAlertDlg{
    position: absolute;
    top: 20px;
    margin: auto auto;

    background-color: #879baa;

    max-width: 90%;
    width: 460px;

    border-color: #879baa;;
    border-width: 3px;
    border-style: solid;
}

.etmAlertDlgTitle{
    background-color: #879baa;

    width: 100%;
    height: 20px;

    border-color: black;
    border-width: 0px;
    border-style: solid;

    cursor: move;
}

.etmAlertDlgTitle:hover {
    background-color: #879baa;
}

.etmAlertDlgBkg{
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: rgba(10,10,10,0.1);
    width: 100%;
    height: 100%;
}

.etmAlertTimer{
    position: absolute;
    right: 10px;
    bottom: 10px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #879baa;
}

.etmAlertContent{
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    padding: 5px;
    height: 270px;
    /* background-color: whitesmoke;*/
}

.etmAlertDlgBtnLB {
    width: 200px;
    margin: auto auto;
    background-color: silver;
    color: white;
    padding-top: 5px;
    text-align: center;
    height: 20px;
}

.etmAlertDlgBtn {
    padding: 6px;
    width: 200px;
    height: 18px;
    border-radius: 4px;
    background-color: #879baa;
    /*float: left;*/
    margin: auto auto;
    text-align: center;

    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none;   /* Chrome/Safari/Opera */
    -khtml-user-select: none;    /* Konqueror */
    -moz-user-select: none;      /* Firefox */
    -ms-user-select: none;       /* IE/Edge */
    user-select: none;           /* non-prefixed version, currently
                                  not supported by any browser */
    cursor: default;
}

.etmAlertDlgBtn:hover {
    background-color: slategrey;
    box-shadow: 5px 5px 13px rgba(10,10,10,0.2);
}

.etmAlertDlgTitleTxt {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: white;
}

/* Accent colors */
.CDS_Siemens_Accent_Teal_dark {     color: #00646e;}
.CDS_Siemens_Accent_Teal_light {    color: #41aaaa;}
.CDS_Siemens_Accent_Yellow_dark {   color: #eb780a;}
.CDS_Siemens_Accent_Yellow_light {  color: #ffb900;}
.CDS_Siemens_Accent_Red_dark{       color: #641946;}
.CDS_Siemens_Accent_Red_light{      color: #af235f;}
.CDS_Siemens_Stone_light{           color: #879baa;}
.CDS_Siemens_Sand_light{            color: #aaaa96;}

/* -------------------------------------------------------- ALERT INFO */
.etmAlert_INFO {
    font-size: 18px;
    font-weight: bold;
    color: #00646e;
    text-align: center;
    padding-top: 10px;
}

.etmAlert_INFO_note {
    font-size: 14px;
    color: #00646e;
    text-align: center;
    padding-top: 5px;
    height: 40px;
}

/* -------------------------------------------------------- ALERT WARNING */
.etmAlert_WARNING{
    font-size: 18px;
    font-weight: bold;
    color: #eb780a;
    text-align: center;
    padding-top: 10px;
}

.etmAlert_WARNING_note{
    font-size: 14px;
    color: #eb780a;
    text-align: center;
    padding-top: 5px;
    height: 40px;
}

/* -------------------------------------------------------- ALERT ERROR */
.etmAlert_ERROR{
    font-size: 18px;
    font-weight: bold;
    color: red;
    text-align: center;
    padding-top: 10px;
}

.etmAlert_ERROR_note{
    font-size: 14px;
    color: red;
    text-align: center;
    padding-top: 5px;
    height: 40px;
}

.etmAlert_DETAIL_note {
    color: #aaaa96;
    font-size: 14px;
    text-align: center;
    height: 30px;
}

.etmAlert_ICON {
    padding-bottom:10px;
    margin: auto;
    display: block;
    height: 180px;
}

/*-----------------------------------------------------*/
.etmAlertState_00{
    padding:10px;
    margin: auto;
    display: block;
    width: 180px;
    height: 180px;

    background-image: url('/data/ulc/img/etmnui_arrow_wait_loadding.png');
    background-position: center;
    background-repeat: no-repeat;

    color: silver;
    text-align: center;
}

/*-----------------------------------------------------*/
.etmAlertState_01{
    padding:10px;
    margin: auto;
    display: block;
    width: 180px;
    height: 180px;

    /* background-image: url('/data/ulc/img/etmnui_arrow_reloadding.png'); */
    background-image: url('/data/ulc/img/etmnui_arrow_wait_loadding.png');
    background-position: center;
    background-repeat: no-repeat;

    color: silver;
    text-align: center;

    -webkit-animation:spin 1000s linear infinite;
    -moz-animation:spin 1000s linear infinite;
    animation:spin 1000s linear infinite;
}

/*-----------------------------------------------------*/
.etmAlertState_02{
    padding:10px;
    margin: auto;
    display: block;
    width: 180px;
    height: 180px;

    background-image: url('/data/ulc/img/etmnui_arrow_wait_loadding.png');
    background-position: center;
    background-repeat: no-repeat;

    color: silver;
    text-align: center;

    -webkit-animation:spin 13s linear infinite;
    -moz-animation:spin 13s linear infinite;
    animation:spin 13s linear infinite;
}

/*-----------------------------------------------------*/
.etmAlertState_03{
    padding:10px;
    margin: auto;
    display: block;
    width: 180px;
    height: 180px;

    background-image: url('/data/ulc/img/etmnui_arrow_loadding.png');
    background-position: center;
    background-repeat: no-repeat;

    color: silver;
    text-align: center;

    -webkit-animation:spin 3s linear infinite;
    -moz-animation:spin 3s linear infinite;
    animation:spin 3s linear infinite;
}

@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }
/*-----------------------------------------------------*/

.etmAlertBrowsers {
    overflow: hidden;
    display: inline;
}

.etmAlertBrowser-type {
    width: 107px;
    text-align: center;
    display: inline-block;
    color: rgb(80,90,100);
    vertical-align: top;
}

.etmAlertBrowser-type a {
    text-decoration: none;
    color: #EFEFEF;
}
#notSupportedList {
    color: red;
}
