body{
	font-family: 'Zen Maru Gothic', sans-serif;
}

.dateactivity-cont{
	border-left: 3px solid #e9484b99;
	border-right: 3px solid #e9484b99;
	max-width: 640px;
}
.dateactivity-cont h1{
	margin-bottom: 10px;
	text-align: center;
	display: block;
}
.dateactivity-cont h1 img{
	display: block;
	margin: 20px auto;
	width: 90%;
}
.dateactivity-cont h2{
	line-height: 1.5em;
	font-size: 14px;
	text-align: center;
	margin-bottom: 0px;
	padding-bottom: 50px;
	background: url(../img/icon_heart.svg) no-repeat bottom center;
	background-size: 25px;
}

.loading{
	position: fixed;
	z-index: 100;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	background: rgba(255,255,255,0.8);
	display: none;
}

.loading.active{display: block;}

.loading-inner{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 200px;
	text-align: center;
}

.loader {display: inline-block}

table.dateactivity-table{width: 100%;}
table.dateactivity-table th{
	display: block;
	margin-bottom: 3px;
	padding-left: 20px;
	line-height: 2.0em;
	background: url(../img/icon_txt.png) no-repeat left top 55%;
	background-size: 10px;
	font-size: 17px;
}
table.dateactivity-table td{
	display: block;
	margin-bottom: 15px;
	padding-bottom: 15px;
}

table.dateactivity-table .number td{
	display: block;
	margin-bottom: 0px;
	padding-bottom: 70px;
	background: url(../img/icon_heart.svg) no-repeat center bottom;
	background-size: 25px;
}

table.dateactivity-table .hungry td{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
table.dateactivity-table .hungry td .form-check{
	width: 48%;
}

table.dateactivity-table .move td{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
table.dateactivity-table .move td .form-check{
	width: 48%;
}

.flex-box{}
.flex-jc-bet{
	display: flex;
	justify-content: space-between;
}
.flex-jc-bet div{width: auto;}

.time .flex-jc-bet div:nth-child(1){width: 32%;}
.time .flex-jc-bet div:nth-child(2){width: 8%;}
.time .flex-jc-bet div:nth-child(3){width: 8%;}
.time .flex-jc-bet div:nth-child(4){width: 32%;}
.time .flex-jc-bet div:nth-child(5){width: 8%;}

.btn.btn-success.btn-lg{
	display: block;
	margin: 0 auto 50px;
	font-size: 22px;
	padding: 10px 35px;
}


@-webkit-keyframes ball-scale-multiple {
	0% {
		-webkit-transform: scale(0);
		transform: scale(0);
		opacity: 0; 
	}
	5% {
		opacity: 1;
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 0;
	}
}

@keyframes ball-scale-multiple {
	0% {
		-webkit-transform: scale(0);
		transform: scale(0);
		opacity: 0;
	}
	5% {
		opacity: 1;
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 0;
	}
}

.ball-scale-multiple {
	position: relative;
	-webkit-transform: translateY(-30px);
	transform: translateY(-30px);
}
.ball-scale-multiple > div:nth-child(2) {
	-webkit-animation-delay: -0.4s;
	animation-delay: -0.4s;
}
.ball-scale-multiple > div:nth-child(3) {
	-webkit-animation-delay: -0.2s;
	animation-delay: -0.2s;
}
.ball-scale-multiple > div {
	background-color: SlateBlue;
	width: 15px;
	height: 15px;
	border-radius: 100%;
	margin: 2px;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	position: absolute;
	left: -30px;
	top: 0px;
	opacity: 0;
	margin: 0;
	width: 60px;
	height: 60px;
	-webkit-animation: ball-scale-multiple 1s 0s linear infinite;
	animation: ball-scale-multiple 1s 0s linear infinite;
}