/* /templates2_0/module/modal/index.less */
#el_modal_window {
  position: fixed;
  overflow: auto;
  overflow-y: scroll;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 0;
  z-index: 10000;
  background-color: rgba(255,255,255,0.7);
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#el_modal_window .modal_content {
  position: relative;
  border: 1px solid #bfbfbf;
  background-color: #fff;
  text-align: left;
  padding: 10px 20px;
  font-size: 12px;
  color: #777;
  box-shadow: 0 5px 50px rgba(0,0,0,0.4);
}
#el_modal_window .modal_content.align_top {
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
}
#el_modal_window .modal_content.loading {
  min-height: inherit;
}
#el_modal_window .modal_window_header {
  color: #333;
  font-size: 14px;
  margin-bottom: 15px;
}
.modal_content {
  height: auto;
  width: auto;
  min-width: 120px;
  min-height: 65px;
  max-width: 650px;
}
.modal_active {
  overflow-y: hidden;
}
.modal_messages {
  height: auto;
  width: auto;
  max-width: 420px;
  min-width: 120px;
  min-height: 120px;
  padding-left: 120px;
}
.modal_messages:before {
  position: absolute;
  background: url(/templates2_0/module/modal/messages.png) -10px 50% no-repeat;
  width: 120px;
  height: 120px;
  left: 0;
  margin-left: -10px;
}
.modal_messages.success:before {
  background-position: 0 50%;
}
.modal_messages.warning:before {
  background-position: -120px 50%;
}
.modal_messages.error:before {
  background-position: -240px 50%;
}
.modal_window_loading> img {
  float: left;
}
.modal_window_loading> div {
  margin-left: 30px;
}
.modal_control.prev,
.modal_control.next {
  position: absolute;
  display: block;
  height: 50px;
  width: 50px;
  top: 50%;
  left: 0;
  margin-top: -25px;
  margin-left: -50px;
  font: normal 70px/55px Utkonos;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #66ae84;
}
.modal_control.next {
  right: 0;
  left: auto;
  margin-left: auto;
  margin-right: -50px;
}
.modal_control.disabled {
  opacity: .3;
  cursor: default;
}
.modal_control.hidden {
  display: none;
}
.modal_control.block {
  margin-top: 10px;
}
#el_modal_window .modal_window_close.icon_close {
  position: absolute;
  top: 5px;
  right: 5px;
}
