﻿
.DeleteDialogModal {
/*styly pro modalni cast - modální okno:*/
z-index: 1000;
position: fixed;
  top:50%;
  left:50%;
  margin-top:-100px; /*!!! půlka z výšky DeleteDialogContent*/  
  margin-left:-250px; /*!!!půlka z šířky DeleteDialogContent*/
  border-style:solid;
  background-color:white;

    background: #fff;
    padding: 20px;

    border-radius: 0px !important;
    -webkit-border-radius: none !important;
    -moz-border-radius: none !important;
    -webkit-border-bottom-right-radius: 6px !important;
    -webkit-border-bottom-left-radius: 6px !important;
    -moz-border-radius-bottomright: 6px !important;
    -moz-border-radius-bottomleft: 6px !important;
    border-bottom-right-radius: 6px !important;
    border-bottom-left-radius: 6px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #333333;
}

.DeleteDialogBackground {
/*styly pro modalni cast pozadi*/
  position: fixed;
  height: 100%;
  width: 100%;
  background: #000;
  background: rgba(255,255,255,.75);
  z-index: 600;
  top: 0;
  left: 0;
}

.DeleteDialogContent {
/*styly pro obsah celeho okna*/
margin:10px;
z-index: 1000;
width: 500px;
height:200px;
}

.DeleteDialogContent .ButtonsSection {
    margin:20px;
}

.DeleteDialogContent .buttonLeft {
float:left;
/*width:100px;*/
}

.DeleteDialogContent .buttonRight {
float:right;
/*width:100px;*/
}

.DeleteDialogContent .headline{
    display: block;
    font-family: 'helvetica_thin';
    margin: 10px auto;
    text-align: center;
    font-size: 1.8em;
    color: #595959 !important;
    font-weight: bold;
    text-decoration:none;
    line-height: 1.6em;
}

.DeleteDialogContent .Description{
    font-size: 12pt;
    text-align:left;
    margin-top: 0px;
    font-weight: normal;
    min-height: 60px;
    padding: 0px;
    color: #595959;
    font-family: 'helvetica_thin';
    font-weight: normal;
}
