.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%;
    margin: auto;
    text-align: center;
    background-color: #FFF;
    padding: 10px;
    border-radius: 16px;
    margin-top: 20px;
    border: 2px solid #DCDCDC;
}

.san_wrapper h2 {
    color: #EA3D3D;
    font-size: 36px;
    padding: 10px 10px;
    margin: 10px 0;
    border-top: 4px solid;
    border-bottom: 4px solid;
    display: inline-block;
}
.san_wrapper p{
    font-size: 14px;
    font-weight: 600;
    line-height: 1.8;
    margin: 10px 0;
}

/*Message*/
.san_howtowhitelist{
    display: none;
    position: fixed;
    bottom: 12px;
    left: 0;
    right: 0;
    justify-content: center;
    padding: 5px;
    text-align: center;
    z-index: 99999;

    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.san_howtowhitelist a{
    color: #e6e6e6;
    font-size: 14px;
    background: #353535;
    padding: 6px 9px;
    border-radius: 5px;

    border-bottom: 2px solid #505050;
    /*box-shadow: 1px 2px 6px #584747;*/

    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.san_howtowhitelist :hover{
    margin-top: -3px;
}
.san_howtowhitelist a:hover{
    box-shadow: 1px 2px 6px #584747;
}

.san_howtowhitelist{
  animation: animationFrames ease-in-out 0.8s;
  animation-iteration-count: 1;
  transform-origin: 50% 50%;
  -webkit-animation: animationFrames ease-in-out 0.8s;
  -webkit-animation-iteration-count: 1;
  -webkit-transform-origin: 50% 50%;
  -moz-animation: animationFrames ease-in-out 0.8s;
  -moz-animation-iteration-count: 1;
  -moz-transform-origin: 50% 50%;
  -o-animation: animationFrames ease-in-out 0.8s;
  -o-animation-iteration-count: 1;
  -o-transform-origin: 50% 50%;
  -ms-animation: animationFrames ease-in-out 0.8s;
  -ms-animation-iteration-count: 1;
  -ms-transform-origin: 50% 50%;
}

@keyframes animationFrames{
  0% {
    opacity:0.1;
    transform:  translate(0px,40px)  ;
  }
  100% {
    opacity:1;
    transform:  translate(0px,0px)  ;
  }
}

@-moz-keyframes animationFrames{
  0% {
    opacity:0.1;
    -moz-transform:  translate(0px,40px)  ;
  }
  100% {
    opacity:1;
    -moz-transform:  translate(0px,0px)  ;
  }
}

@-webkit-keyframes animationFrames {
  0% {
    opacity:0.1;
    -webkit-transform:  translate(0px,40px)  ;
  }
  100% {
    opacity:1;
    -webkit-transform:  translate(0px,0px)  ;
  }
}

@-o-keyframes animationFrames {
  0% {
    opacity:0.1;
    -o-transform:  translate(0px,40px)  ;
  }
  100% {
    opacity:1;
    -o-transform:  translate(0px,0px)  ;
  }
}

@-ms-keyframes animationFrames {
  0% {
    opacity:0.1;
    -ms-transform:  translate(0px,40px)  ;
  }
  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;
	}
}