﻿/* INICIO CSS ALERTBOX JQUERY */

.alert_panel{
  min-width: 450px;
  max-width: 80%;
  max-height: 95%;
  display: none;
  opacity: 0;
  text-align: center;
  position: fixed;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #ccc;
  background: linear-gradient(#DDD, #CCC);
  box-shadow: 4px 2px 0px #DDDDDD;
  border-radius: 10px;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.alert_panel.show{
  min-width: 450px;
  max-width: 80%;
  max-height: 95%;
  display: block;
  opacity: 1;
  font-family: Verdana;
  font-size: 10px;  
  word-wrap: break-word;
  overflow: auto;
  scrollbar-base-color: #CCCCCC;
  scrollbar-arrow-color: #000000;
  scrollbar-3dlight-color: #CCCCCC;
  scrollbar-darkshadow-color: #CCCCCC;
  scrollbar-face-color: #DDDDDD;
  scrollbar-highlight-color: #CCCCCC;
  scrollbar-shadow-color: #CCCCCC;
  scrollbar-track-color: #CCCCCC;
}

.alert_panel h3{
  font-family: Verdana;
  font-size: 12px;
  line-height: 22px;
  margin: 30px;
}

.alert_panel p{
  font-family: Verdana;
  font-size: 12px;
  line-height: 22px;
  margin: 10px;
  font-weight:normal;
  /*white-space: nowrap;*/
}

.alert_btn_group{
  margin-top: 35px;
}

.alert_btn_group span{
  display: inline-block;
  width: 146px;
  height: 44px;
  border-radius: 22px;
  text-align: center;
  font-size: 16px;
  line-height: 44px;
  font-weight: 300;
  margin: 10px 10px;
  cursor: pointer;
  box-shadow: 3px 1px 0px #808080;
}

.alert_close_btn{
  width: 36px;
  height: 36px;
  border: 2px solid #5D7B7C;
  border-radius: 50%;
  position: absolute;
  right: -20px;
  top: -20px;
  background-color: #fff;
  text-align: center;
  font-size: 20px;
  line-height: 36px;
  color: #595959;
  cursor: pointer;
}

#alert_mask{
  display: none;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  background-color: transparent;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

/* FIM  */