@keyframes tf_bounce {
	0%, 20%, 50%, 80%, 100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(-6px);
	}
	60% {
		transform: translateY(-3px);
	}
}
  
.tf_bounce {
	animation: tf_bounce 1.5s ease;
}



.mobile-position-fixed {
    position: fixed;
}

/* inapp noti */
.bg_aside_noti {
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 9;
    visibility: hidden;
    opacity: 0;
    display: block;
    z-index: 9;
    background: rgba(0, 0, 0, 0.6);
}
.bg_aside.show {
	z-index: 200;
}
#aside.show {
	z-index: 210;
}
.inapp_noti_wrapper {
    display: block;
    position: relative;
}
.inapp_noti_wrapper .aside_noti_toggle {}
.inapp_noti_wrapper .aside_noti_toggle button {
    border: 0;
    background: none;
    font-size: 1.6rem;
    color: black;
    padding: 0 5px;
}
#aside_noti {
	--size-noti-menu-top: 66px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(5%);
	position: fixed;
	left: 0px;
	bottom: 0;
	min-width: 215px;
	width: 100%;
	height: 100%;
	padding: 0;
	z-index: 10000000000;
	background-color: white;
	overflow: auto;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
	transition: all 0.15s ease;
	cursor: initial;
}
#aside_noti.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.inapp_noti_wrapper .in_aside {
    overflow: auto;
    background: #F0F0F0;
    padding: 20px;
}
.inapp_noti_wrapper .noti_menu_top  {
    padding: 0;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
}
.inapp_noti_wrapper .noti_menu_top .noti_menu_top_title {
    text-align: center;
    letter-spacing: 1px;
    line-height: var(--size-noti-menu-top);
    font-size: 24px;
    font-weight: 600;
    color: #000;
}
.inapp_noti_wrapper .noti_menu_top #noti_menu_top_close_button {
    border: 0;
    background: none;
    color: rgb(0 0 0 / 37%);
    font-size: 25px;
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translate(0, -50%);
    width: 30px;
}
.inapp_noti_wrapper .notifications {
    padding-top: var(--size-noti-menu-top);
}
.inapp_noti_wrapper .notifications a:hover {
	color: #111;
}
.inapp_noti_wrapper .notifications .notification {
    position: relative;
    color: #111;
    padding: 20px;
    background: #fff;
    margin-bottom: 20px;
    border-radius: 5px;
}
.inapp_noti_wrapper .in_aside.no_noti {
    position: absolute;
    top: var(--size-noti-menu-top);
    left: 0;
    width: 100%;
    background: #EC6A87;
}
.inapp_noti_wrapper .in_aside.no_noti .notifications {
    padding: 0;
}
.inapp_noti_wrapper .in_aside.no_noti .notifications p {
    text-align: center;
    color: #fff;
    font-size: 16px;
}
.inapp_noti_wrapper .in_aside.no_noti p span {
}
.inapp_noti_wrapper .in_aside.no_noti p i {
    display: block;
    font-size: 30px;
}
.inapp_noti_wrapper .notifications .notification:last-child {
    margin-bottom: 0;
}
.inapp_noti_wrapper .notification .noti_content {
    margin-bottom: 15px;
}
.inapp_noti_wrapper .notification .noti_content a {
    /* display: block; */
}
.inapp_noti_wrapper .notification .noti_content .noti_content_title {
    font-size: 17px;
    font-weight: 500;
    padding: 5px 25px 5px 0px;
    line-height: 20px;
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    color: #FF0047;
}
.inapp_noti_wrapper .notification .noti_content_body {
}
.inapp_noti_wrapper .notification .noti_content_body .noti_thumbnail {
    display: none;
}
.inapp_noti_wrapper .notification .noti_content .noti_content_excerpt {
    font-size: 13px;
    line-height: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 18px;
    color: #606060;
}
.inapp_noti_wrapper .notification .noti_content .noti_content_excerpt.line-2 {
    /* -webkit-line-clamp: 2; */
}
.inapp_noti_wrapper .notification .noti_content_date {
    font-size: 12px;
    color: #A7A7A7;
    margin-top: 7px;
    display: flex;
}
.inapp_noti_wrapper .notification .noti_content_date a {
    font-size: 12px;
    color: #FF0047;
    margin-left: auto;
}
.inapp_noti_wrapper .notification .noti_content_date a i {
    font-size: 12px;
    margin-left: 5px;
    color: #FF0047;
}
.inapp_noti_wrapper .notification .noti_content_share {
    margin-top: 10px;
}
.inapp_noti_wrapper .notification .noti_content_share .noti_share_button,.inapp_noti_wrapper .notification .noti_content_share .noti_detail_button {
	border: 0;
	background: #EC6A87;
	color: #fff;
	min-width: 74px;
	height: 35px;
	border-radius: 4px;
	text-align: center;
	padding: 5px 20px 5px 20px;
}
.inapp_noti_wrapper .notification .noti_content_share .noti_share_button.disabled {
	background: #cbcbcb !important;
}

/* is_read notification */
.inapp_noti_wrapper .notifications .notification.is_read {
	background: #d8d8d8;
}
.inapp_noti_wrapper .notification.is_read .noti_content .noti_content_title,
.inapp_noti_wrapper .notification.is_read .noti_content .noti_content_excerpt,
.inapp_noti_wrapper .notification.is_read .noti_content_pushed_at,
.inapp_noti_wrapper .notification.is_read .noti_content_date a,
.inapp_noti_wrapper .notification.is_read .noti_content_date a i {
    color: rgb(0 0 0 / 50%);
}
.inapp_noti_wrapper .notifications .notification.is_read  .noti_content_share .noti_share_button,.inapp_noti_wrapper .notifications .notification.is_read  .noti_content_share .noti_detail_button {
	background: #CBCBCB;
	background: #000;
}

@media (min-width: 1024px) {
    .mobile-position-fixed {
        position: initial;
    }
    
	#aside_noti {
		--thumb-size: 100px;
		transform: translateY(1%);
		position: absolute;
		width: auto;
		height: auto;
		left: auto;
		top: 35px;
		right: 100%;
		margin-right: -75px;
		bottom: unset;
		z-index: 10;
		overflow: inherit;
		box-shadow: 0px 5px 11px 0px #0000001F;
		border-radius: 8px;
	}
	#aside_noti:before {
		content: "\f0d8";
		font-family: "Font Awesome 5 Pro";
		font-weight: 600;
		position: absolute;
		font-size: 37px;
		color: #F0F0F0;
		right: 52px;
		top: -14px;
		z-index: 1111111111;
		height: 28px;
		display: flex;
		align-items: end;
		}
	.inapp_noti_wrapper .noti_menu_top  {
		display: none;
	}
	.inapp_noti_wrapper .in_aside {
	    width: 500px;
	    max-height: 600px;
	    border-radius: 8px;
	}
	.inapp_noti_wrapper .notifications {
	    padding-top: 0;
	}
    .inapp_noti_wrapper .notification .noti_content_body {
	display: flex;
	}
    .inapp_noti_wrapper .notification .noti_content_body .noti_thumbnail {
	    display: block;
	    width: var(--thumb-size);
	    min-width: var(--thumb-size);
	    margin-right: 10px;
	    margin-top: 5px;
	    max-height: var(--thumb-size);
	    overflow: hidden;
	}

	.inapp_noti_wrapper .notification .noti_content_body .noti_thumbnail img {
	    display: block;
	    width: 100%;
	}

	.inapp_noti_wrapper .notification .noti_content .noti_content_excerpt  {}

	.inapp_noti_wrapper .notification .noti_content {
		margin-bottom: 5px;
		width: 100%;
	}
	.inapp_noti_wrapper .notification .noti_content.has_thumbnail {
	    width: calc(100% - var(--thumb-size));
	}

	.inapp_noti_wrapper .in_aside.no_noti {
	    position: initial;
	    transform: none;
	    background: #F0F0F0;
	    width: 250px;
	}
	.inapp_noti_wrapper .in_aside.no_noti .notifications p {
    color: #000;
}
}