* {
    padding: 0;
    margin:0;
    outline: none;
}
a {
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a:hover {
  text-decoration: none;
}
ul,li {
    list-style: none;
}
body {
    font-family: ubuntu, helvetica, arial;
    font-size: 12px;
}

.ts-center{
	text-align: center;
}
.ts-left{
    text-align: left;
}
.ts-right{
    text-align: right;
}
.ts-body{
    width:100%; 
    padding:10% 5%; 
    box-shadow:0px 0px 3px 0px #999 inset; 
}
.ts-header{
	width:100%;
	text-align: center; 
	font-size: 16px; 
	background-color:#f8f8f8; 
	padding: 10px 0;
}
.ts-footer{
	width:100%;
	text-align: center; 
	font-size: 16px; 
	background-color:#f8f8f8; 
	padding: 10px 0;
}
.ts-two{
    width:50%;
    text-align: center; 
    float: left;
    font-size: 16px; 
    background-color:#e3e3e3; 
    padding: 10px 0;
}
.ts-cancel{
    background: #f8f8f8;
}
.ts-close{
    text-align: center;
    position: absolute;
    width: 39px;
    height: 39px;
    line-height: 39px;
    top: 0;
    right: 0;
}

@keyframes fadeIn{
    0% {
        opacity: 0;
        transform: scale(0.1);
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
@-webkit-keyframes fadeIn{
    0% {
        opacity: 0;
        transform: scale(0.1);
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
.bounce-fadein {
  animation: fadeIn .2s;
}