/* message alert */
.box_result{
    width:100%;
    height:auto;
    display:table;
    padding:50px 20px;
    color:#D7640F;
    text-align:center;
}
.box_result a{
    color:#F3AD3A;
    text-decoration: none;
}

.full_message, .full_message2, .full_message3{
    position:fixed;
    overflow: hidden;
    width:100%;
    height:100%;
    top:0%;
    bottom:0%;
    left:0%;
    right:0%;
    z-index:-1;
    opacity:0;
    background:rgba(0,0,0,0.8);
    transition-duration:0.2s;
    -webkit-transition-duration:0.2s;
    -moz-transition-duration:0.2s;
}
.full_message.show,
.full_message2.show,
.full_message3.show{
    z-index: 99999;
    opacity:1;
}
.box_message, .box_message2, .box_message3{
    margin:0 auto;
    width:90%;
    position:relative;
    top:50%;
    margin-top:-90px;
    max-width:500px;
    height:180px;
    background:#fff;
    padding:30px 25px;
    border-radius:6px;
    opacity:0;
    z-index: -55555;
    transform: scale(0.5) rotate(0deg);
    transition-duration:0.2s;
    -webkit-transition-duration:0.2s;
    -moz-transition-duration:0.2s;
}
.full_message.show .box_message,
.full_message2.show .box_message2,
.full_message3.show .box_message3{
    opacity:1;
    z-index:55555;
    transform: scale(1) rotate(0deg);
}
.box_message3{
    height:auto;
}
.box_message img{
    margin:0 auto;
    width:61px;
    height:61px;
    display:table;
    margin-bottom:15px;
}
.box_message p,
.box_message2 p,
.box_message3 p{
    width:100%;
    display:table;
    text-align:center;
    color: #333;
}
.box_message .bt_close,
.box_message2 .bt_close2,
.box_message3 .bt_close3{
    width: 40px;
    height: 40px;
    display: table;
    background: #1b1b1b url("../img/icon_close.png") no-repeat center center;
    background-size: 40%;
    position: absolute;
    top: 0px;
    border-top-right-radius: 4px;
    border-bottom-left-radius: 4px;
    right: 0px;
    border: 0px;
    cursor: pointer;
}
.box_result{
    width:100%;
    padding:30px;
    height:auto;
    display:table;
    color:#111111;
    font-size:15px;
    text-align:center;
    background:#F3AD3A;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin-top:25px;
}
/* loading message */
.spinner{
    display:none;
}
.spinner {
  margin: 40px auto 15px;
  width: 70px;
  text-align: center;
}
.spinner > div {
  width: 14px;
  height: 14px;
  background-color: #D2880D;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}
@keyframes sk-bouncedelay {
  0%, 80%, 100% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% { 
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}