.dialogred_modal{
    position:absolute;
    z-index:2000;
    top:0;
    left:0;
    width:100%;
    height:100%;
    text-align:center;
    display:none;
    overflow:hidden;
}
.dialogred_modal:before{
    content:'';
    width:0;
    height:100%;
    display:inline-block;
    vertical-align:middle;
}

.dialogred_wall{
    position:fixed;
    top:0;
    left:50%;
    z-index:4;
    /*
	width:100%;
    height:100%;
	*/
    max-width:650px;
    background:#fff;
    transform:translateX(-50%);
    box-shadow:0px 0px 0px 1px rgba(0,0,0,0.15);
}

.dialogred_overlay{
    position:fixed;
    top:0;
    right:0;
    bottom:0;
    left:0;
    z-index:2;
	/*
    width:100%;
    height:100%;
	*/
    background:#000;
    opacity:0.4;
}

.dialogred_wall2{
    position:fixed;
    top:0;
    left:50%;
    z-index:12;
    width:100%;
    height:1px;
    max-width:650px;
    transform:translateX(-50%);
}

.dialogred_inner{
    display:inline-block;
    vertical-align:middle;
    margin:50px 0px 50px 0;
    padding-bottom:30px;
    /*background:#fff;*/
    width:100%;
    /* height: 100%; */
    text-align:left;
    position:relative;
    z-index:8;
    opacity:0;
    transition:all 0.3s ease-out 0s;
    /*transform:translateY(900px);*/
    top:-500px;
}
.dialogred_inner2{
    /*max-width:650px;*/
    margin:0 auto;
    position:relative;
    z-index:15;
    background:#fff;
}

.dialogred_inner_show{
    opacity:1;
    top:0;
    /*transform:translateY(0);*/
}

.dialogred_close{
    position:absolute;
    left:15px;
    top:15px;
    z-index:15;
    line-height:1;
    font-size:0;
    user-select:none;
}
.dialogred_close_img{
    cursor:pointer;
    display:inline-block;
    vertical-align:middle;
	width:15px;
	height:15px;
	background-repeat:no-repeat;
	background-image:url(img/close3.png);
    background-size:15px 15px;
    background-position:center center;
	opacity:1;
	transition:opacity 0.07s linear 0s,transform 0.20s linear 0s;
	will-change:opacity,transform;
	transform:rotate(0);
}
.dialogred_close_img:hover{
	opacity:0.8;
}
.dialogred_modal[data-close_template="2"] .dialogred_close{
    right:15px;
    top:15px;
}
.dialogred_modal[data-close_template="2"] .dialogred_close_img{
    width:20px;
    height:20px;
    background-image:url(img/close13.svg);
    background-size:20px 20px;
}

.dialogred_modal[data-close_template="emil1"] .dialogred_close_img{
    width:20px;
    height:20px;
    background-image:url(img/close_emil1.png);
    background-size:20px 20px;
    transform:rotate(0);
}
.dialogred_modal .dialogred_close_img:hover{
    transform:rotate(180deg);
}

.dialogred_loader{
    display:none;
    position:fixed;
    top:50%;
    left:50%;
    z-index:20;
    transform:translateX(-50%) translateY(-50%);
}

.dialogred_loader1{
    width:55px;
    height:32px;
    text-align:center;
    font-size:10px;
}
.dialogred_loader1 > div{
    background-color:#333;
    height:100%;
    width:7px;
    display:inline-block;
    -webkit-animation:dialogred_sk-stretchdelay 0.6s infinite ease-in-out;
    animation:dialogred_sk-stretchdelay 0.6s infinite ease-in-out;
    margin-left:2px;
    border:1px #858585 solid;
    opacity:0.9;
}

.dialogred_loader1 .rect2{
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}
.dialogred_loader1 .rect3{
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}
.dialogred_loader1 .rect4{
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}
.dialogred_loader1 .rect5{
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}

@-webkit-keyframes dialogred_sk-stretchdelay{
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.50);
    }
  20% {
      -webkit-transform: scaleY(1.0);
      background-color:#e8e8e8;
  }
}
@keyframes dialogred_sk-stretchdelay{
  0%, 40%, 100% {
    transform: scaleY(0.50);
    -webkit-transform: scaleY(0.50);
  }
  20% {
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
    background-color:#e8e8e8;
  }
}

.dialogred_modal.loading .dialogred_loader{
    display:block;
}

.body_dialogred_open{
    overflow-y:scroll;
}

.body_dialogred_open .cmsl_outer{
    position:fixed;
    width:100%;
    /*-webkit-filter:blur(3px);
    filter:blur(3px);*/
    /*transition:opacity .5s ease-out;
    opacity:1;
    overflow:hidden;
    min-height:100%;*/
}

.body_dialogred_open .dialogred_modal{
    overflow:visible;
    display:block;
}

.body_dialogred_inner_show .dialogred_close{
    display:block;
}

.dialogred_data{
    /* min-height:400px; */
    position:relative;
    z-index:10;
}