﻿.PopUpWrapper {
  z-index: 3;
  display: block;
  padding-top: 150px;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: #000000;
  background-color: rgba(0,0,0,0.4);
  animation: PopUpKeyFrames 0.8s;
}

@keyframes PopUpKeyFrames
{
  from
  {
    opacity: 0
  }

  to
  {
    opacity: 1
  }
}

.PopUpWindow {
  border-radius: 7px;
  height: auto;
  width: 670px;
  margin: auto;
  outline: 0;
  padding: 0;
  position: relative;
  box-shadow: 0 4px 10px 0 #000000,0 4px 20px 0 #000000;
  box-shadow: 0 4px 10px 0 rgba(0,0,0,0.2),0 4px 20px 0 rgba(0,0,0,0.2);  
}

.PopUpHeader
{
  border-radius: 5px 5px 0 0;
  width: 100%;
  min-height: 5px;
  overflow: auto;
}
.PopUpFooter
{
  border-radius: 0 0 5px 5px;
  width: 100%;

  min-height: 5px;
}

.PopUpSearchInput
{
  position: relative;
  font-size: 18px;
  width: 300px;
  padding-left: 32px;
  margin: 6px;
  border-radius: 5px;
  border: 1px solid #b4c4da;
  outline: none;
  float: left;
}
.PopUpSearchIcon
{
  position: relative;
  left: -300px;
  top: 9px;
  float: left;
}
.PopUpCloseIcon
{
  position: relative;
  float: right;
  cursor: pointer;
  top: 5px;
  right: 5px;
}
.PopUpData
{
  padding: 0 2px;
}


.PopUpWindow.Blue
{
  background-color: #6f93c7;
  border: 1px solid #737f90;
  
}

.PopUpWindow.Green
{
  background-color: #62a36f;
  border: 1px solid #44704d;
  
}

.PopUpWindow.Red
{
  background-color: #ac584d;
  border: 1px solid #71372f;
  
}

.PopUpWindow.Yellow
{
  background-color: #f0f0da;
  border: 1px solid #8e8c32;
  
}
.PopUpWindow.Default
{
  background-color: #F7FAFF;
  border: 1px solid #737f90;
}
