 body {font-family: Arial, Helvetica, serif;}
 
.san_wrapper {                       
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #EFEFEF;
    z-index: 999999;
    text-align: center;
}
.san_wrapper .san_inner{
    width: 50%;
    font-size: 18px;
    margin: auto;
    text-align: center;
    background-color: #FFF;
    padding: 45px;
    border-radius: 16px;
    margin-top: 20px;
    border: 2px solid #DCDCDC;
}

.san_wrapper h2 {
    color: #8cbf26;
    font-size: 46px;
    padding: 10px 10px;
    margin: 10px 0 50px 0;
    border-top: 4px solid;
    border-bottom: 4px solid;
    display: inline-block;
    font-weight: 800;
    line-height: 62px;
}
.san_wrapper p {
    font-size: 20px;
    font-weight: 200;
    line-height: 1.8;
    margin: 0 0 10px 0;
    padding: 0 20px;
}

.san_sticky_notice{
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #E23A3A;
    border-left: 4px solid #8E0707;
    padding: 20px;
    color: #fff;
    border-radius: 5px;
    line-height: 1;
}
.san_sticky_notice h2{
    font-size: 18px;
	line-height: 1;
    margin: 0;
    text-transform: uppercase;
	}
.san_sticky_notice p{
    line-height: 1;
    margin-bottom: 6px;
}

/*Animation*/
.san_sticky_notice{
  animation: san_sticky_notice_anim ease-out 1s;
  animation-iteration-count: 1;
  transform-origin: 50% 50%;
  -webkit-animation: san_sticky_notice_anim ease-out 1s;
  -webkit-animation-iteration-count: 1;
  -webkit-transform-origin: 50% 50%;
  -moz-animation: san_sticky_notice_anim ease-out 1s;
  -moz-animation-iteration-count: 1;
  -moz-transform-origin: 50% 50%;
  -o-animation: san_sticky_notice_anim ease-out 1s;
  -o-animation-iteration-count: 1;
  -o-transform-origin: 50% 50%;
  -ms-animation: san_sticky_notice_anim ease-out 1s;
  -ms-animation-iteration-count: 1;
  -ms-transform-origin: 50% 50%;
}

@keyframes san_sticky_notice_anim{
  0% {
    opacity:0.3;
    transform:  translate(0px,80px)  ;
  }
  100% {
    opacity:1;
    transform:  translate(0px,0px)  ;
  }
}

@-moz-keyframes san_sticky_notice_anim{
  0% {
    opacity:0.3;
    -moz-transform:  translate(0px,80px)  ;
  }
  100% {
    opacity:1;
    -moz-transform:  translate(0px,0px)  ;
  }
}

@-webkit-keyframes san_sticky_notice_anim {
  0% {
    opacity:0.3;
    -webkit-transform:  translate(0px,80px)  ;
  }
  100% {
    opacity:1;
    -webkit-transform:  translate(0px,0px)  ;
  }
}

@-o-keyframes san_sticky_notice_anim {
  0% {
    opacity:0.3;
    -o-transform:  translate(0px,80px)  ;
  }
  100% {
    opacity:1;
    -o-transform:  translate(0px,0px)  ;
  }
}

@-ms-keyframes san_sticky_notice_anim {
  0% {
    opacity:0.3;
    -ms-transform:  translate(0px,80px)  ;
  }
  100% {
    opacity:1;
    -ms-transform:  translate(0px,0px)  ;
  }
}

@media(max-width:767px){
	.sa-icon{
		display: none !important;
	}
	.sweet-alert h2{
	    font-size: 20px;
	}
	.sweet-alert p{
		font-size: 12px;
	}
    .san_sticky_notice{
        bottom: 0px;
        right: 0px;
        padding: 10px;
    }
}
