.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;
}

/*How to whitelist*/
/*How to whitelist modal*/
.san_howtowhitelist_modal_wrapper{
    display:none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #5858583b;
    z-index: 999999;
    text-align: center;
}
.san_howtowhitelist_modal_wrapper div{
    position: relative;
    width: 50%;
    margin: auto;
    text-align: center;
    background-color: #FFF;
    padding: 20px 40px;
    border-radius: 16px;
    margin-top: 10%;
    border: 2px solid #DCDCDC;

    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%;
}
.san_howtowhitelist_modal_wrapper div .close-popup {
    position: absolute;
    background-image: url('../image/close.png');
    right: 20px;
    top: 20px;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    cursor: pointer;
}
.san_howtowhitelist_modal_wrapper div h3:after {
    content: '';
    display: block;
    background: #000;
    height: 2px;
    max-width: 80px;
    width: 100%;
    margin: auto;
    margin-top: 10px;
}

.san_howtowhitelist_modal_wrapper div ol{
    text-align:left;
    list-style: none;
    padding: 0;
    margin-top: 20px;
}
.san_howtowhitelist_modal_wrapper div ol li{
    counter-increment: item;
    margin-bottom: 12px;
    font-size: 16px;
}
/*.san_howtowhitelist_modal_wrapper div ol li:before {
    margin-right: 10px;
    content: counter(item);
    background: #d42e2e;
    color: #fff;
    font-weight: bold;
    border-radius: 100%;
    text-align: center;
    display: inline-block;
    height: 30px;
    width: 30px;
    padding: 3px;
}
*/
.san_howtowhitelist_modal_wrapper div ol li span{
    padding: 3px;
    background: #ea5050;
    display: inline-block;
    height: 35px;
    width: 35px;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    margin-right: 10px;
    line-height: 1.6;
}


/*How to whitelist 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;
    cursor: pointer;

    -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;
	}
}
