.pce_modal_overlay{
  position: fixed;
  top: 0px;
  bottom: 0px;
  background: rgba(0,0,0,0.6);
  left: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  z-index: 30;
}
.pce_modal{
  width: 80%;
  max-width: 720px;
  position: absolute;
  -webkit-box-shadow: -4px -4px 14px -4px #333;
  -moz-box-shadow: -4px -4px 14px -4px #333;
  box-shadow: -4px -4px 14px -4px #333;
}

.pce_modal_title{
  background: #f9e53c;
  height: 110px;
  padding: 30px 100px;
  font-size: 24px;
  font-weight: 500;
  -webkit-border-radius: 5px 5px 0px 0px;
  -moz-border-radius: 5px 5px 0px 0px;
  border-radius: 5px 5px 0px 0px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.pce_modal_title_icon{
  font-family: 'provicon' !important;
  display: inline-block;
  font-size: 36px;
  position: absolute;
  left: 40px;
  line-height: 40px;
}

.pce_modal_title_txt{
  line-height: 50px;
}

.pce_modal_title_close{
  font-family: 'provicon' !important;
  position: absolute;
  right: 40px;
  margin-top: 5px;
  cursor: pointer;
  -webkit-transition: all 0.2S linear;
  -moz-transition: all 0.2S linear;
  -ms-transition: all 0.2S linear;
  -o-transition: all 0.2S linear;
  transition: all 0.2S linear;
}

.pce_modal_title_close:hover{
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}

.pce_modal_body{
  padding-right: 40px;
  position: relative;
}

.pce_modal_body:before{
  content: '';
  position: absolute;
  border-right: 40px solid #FFFFFF;
  border-bottom: 40px solid transparent;
  transform: rotateY(180deg);
  right: 0px;
  height: 100%;
  bottom: 0px;
}

.pce_modal_message{
  background: #FFFFFF;
  padding: 40px;
}

.pce_modal_buttons{
  min-height: 10px;
  background: #FFFF;
  padding: 0px 40px 20px 40px;
  -webkit-border-radius: 0px 0px 0px 5px;
  -moz-border-radius: 0px 0px 0px 5px;
  border-radius: 0px 0px 0px 5px;
}

.pce_modal_button{
  min-width: 200px;
  display: inline-block;
  margin-right: 30px;
  margin-bottom: 10px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  padding: 10px;
  transition: all 0.1S ease-in-out;
}

.pce_modal_button:hover{
  -webkit-box-shadow: 0 2px 11px 0 rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 2px 11px 0 rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 11px 0 rgba(0, 0, 0, 0.5);
}

.pce_modal_button.dark{
  background: #f9e53c;
}

.pce_modal_button.dark:hover{
}

.pce_modal_button.light{
  border: 1px solid #000;
}

.pce_modal_button.light:hover{
}

@media (max-width: 840px){
  .pce_modal_title{
    font-size: 20px;
    height: 75px;
    padding: 20px 60px;
  }
  .pce_modal_title_txt{
    line-height: 42px;
  }
  .pce_modal_title_icon{
    font-size: 24px;
  }
  .pce_modal_title_icon{
    left: 20px;
  }
  .pce_modal_title_close{
    right: 20px;
  }
  .pce_modal_message{
    padding: 20px;
  }

  .pce_modal_buttons {
    padding: 0px 20px 20px 20px;
  }
}
