﻿/* уведомления */
.notificationBlock {
  z-index: 2;
  position: relative;
}
.notification {
  position: absolute;
  background: #9fc3e7;
  padding: 5px 10px 8px;
  color: white;
  border-radius: 6px;
  overflow: visible;
  display: none;
  z-index: 10;
  font-weight: normal;
}
.notification div:first-child {
  white-space: nowrap;
  height: 20px;
  line-height: 20px;
}
.notification .arr {
  position: absolute;
  width: 12px;
  height: 12px;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #9fc3e7;
}
.notification.red,
.notification.red .arr {
  background: #ff7f7f;
}
.notification.arr-bottom {
  /*top: 50px;*/
  text-align: right;
}
.notification.arr-bottom .arr {
  margin-right: -6px;
  right: 50%;
  top: -6px;
}
.notification.arr-top {
  left: 160px;
  bottom: -10px;
}
.notification.arr-top div:first-child {
  text-align: left;
}
.notification.arr-top .arr {
  bottom: -6px;
  left: 25px;
}
.notification div img {
  vertical-align: middle;
  display: inline-block;
  margin-top: -2px;
}
.notification span {
  margin-left: 4px;
}
/* static */
div.notification-static {
  position: relative;
  height: 36px;
  padding: 6px 60px 7px 55px;
  color: #8f4336;
  font-size: 13px;
  border: solid 1px #e08f8d;
  border-radius: 4px;
  background: #f5b6a9;
  margin-bottom: 17px;
}
div.notification-static .excl {
  position: absolute;
  width: 27px;
  height: 27px;
  background: url('/Content/Img/excl-red.png') no-repeat;
  left: 14px;
  top: 9px;
}
div.notification-static .close {
  position: absolute;
  width: 13px;
  min-height: 13px;
  background: url('/Content/Img/close-red.png') no-repeat;
  right: 20px;
  top: 18px;
  cursor: pointer;
}
div.notification-static .close:hover {
  background-position-y: -13px;
}
div.notification-static.yellow {
  color: #8b7926;
  background: #f4e89b;
  border-color: #e0d58d;
}
div.notification-static.yellow .excl {
  background: url('/Content/Img/excl-yellow.png') no-repeat;
}
.purchase-cont {
  display: none;
}
.purchase {
  width: 520px;
  height: 140px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background-color: #fff;
  font-family: Ubuntu;
  font-size: 14px;
  color: #666;
  text-align: center;
  padding: 20px 60px 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}
.purchase .close {
  position: absolute;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: top left;
  background-image: url(Img/cb-close.png);
  right: -25px;
  top: -25px;
  display: block;
}
.purchase p {
  margin-bottom: 20px;
}
.purchase .close:hover {
  background-position: left bottom;
}
.error-div-field {
  position: relative;
  padding: 10px 5px 10px 10px;
  color: #8f4336;
  font-size: 13px;
  border-top: solid 1px #e08f8d;
  border-bottom: solid 1px #e08f8d;
  background: #f5b6a9;
  margin-bottom: 17px;
}
.error-div-field.error_off {
  display: none !important;
}
.error-div-field .table {
  width: 100%;
  height: 100%;
}
.error-div-field .error_icon {
  padding: 0px 10px;
  width: 37px;
}
.error-div-field .error_msg {
  padding: 0;
}
.error-div-field .excl {
  width: 27px;
  height: 27px;
  background: url('/Content/Img/excl-red.png') no-repeat;
}