#root_container {
	background:#ffff00;
	/*position: fixed;*/
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;

	width:100%;
}

.content_part{
	width: 100%;
	/*height:1121px;*/
	/*height: calc(875 / 1440 * 100vw);*/
	background-image:linear-gradient(0deg, #96d4df 0%, #7ab8c3 48%, #3b4c67 100%);
	/*background-image:*/
}

.text_board{
	margin: 50px 120px;
	background:#ffffff;
	border-radius:20px;
	/*width:1200px;*/
	height:20px;

	padding: 100px 200px;

	font-size:14px;
	color:#4a4a4a;
	letter-spacing:0;
	text-align:justify;
	line-height:20px;

	display: -webkit-flex; /* Safari */
    -webkit-align-items: center; /* Safari 7.0+ */
    -webkit-justify-content: center; /* Safari 7.0+ */
    display: flex;
    align-items: center;
    justify-content: center;
}

.content_part .bg_sky{
	display: none;
}
.reward_item_list{
	margin: 50px 120px;
}

.reward_item{
	background:#ffffff;
	border-radius:20px;

	min-height:200px;

	padding: 40px 60px;

	font-size:14px;
	color:#4a4a4a;
	letter-spacing:0;
	text-align:justify;
	line-height:20px;

    margin: 20px 0;
}

.reward_item_title{
	font-size:24px;
	color:#3eb2e1;
	letter-spacing:0;
	line-height:32px;
	text-align:left;
}

.reward_item_wrap{
	margin-top: 10px;
	position: relative;
	display: flex;

	min-height: 100px;

	/*display: grid;
	grid-template-areas:
    'image content'
    'sponsor content';
    grid-template-columns: 40% 60%;
    grid-template-rows: 90% 10%;*/
}

.reward_item_thumbnail{
	/*max-width: 50%;*/
	/*background-color: #eee;*/

	background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

	flex: 0 0 40%;

	grid-area:image;
	/*min-height: 230px;*/
	
}
.reward_item_thumbnail_img{
	max-width: 100%;
    max-height: 230px;
    width: 100%;
    object-fit: contain;
	
}

.reward_item_content{
	flex: 0 0 60%;

	font-size:14px;
	color:#4a4a4a;
	letter-spacing:0;
	line-height:20px;
	text-align:left;
	padding: 0 20px;

	grid-area:content;
	text-align: justify;
}

.reward_item_sponsor{
	grid-area:sponsor;
	text-align:center;
}

.reward_redeem_btn{
	/*position: absolute;*/
	position: relative;
	margin-left: auto;
	right: 0;
	bottom: 0;

	width: 200px;
	height: 40px;

	font-size:28px;
	color:#ffffff;
	letter-spacing:0;
	text-align:center;
	line-height:32px;

	border-radius: 10px;

	cursor: pointer;

	background-color: rgb(225, 165, 53);

	display: -webkit-flex; /* Safari */
    -webkit-align-items: center; /* Safari 7.0+ */
    -webkit-justify-content: center; /* Safari 7.0+ */
    display: flex;
    align-items: center;
    justify-content: center;
	margin-top:20px;
}
.reward_redeem_btn.disabled{
	cursor: auto;
	font-size: 14px;
	background-color: #9e9e9e;
	cursor: not-allowed;
	line-height: 100%;
}
.coming_soon{
	font-size:28px;
	color:#ffffff;
	letter-spacing:0;
	line-height:32px;
	text-align:left;

	margin-bottom: 80px;

	display: -webkit-flex; /* Safari */
    -webkit-align-items: center; /* Safari 7.0+ */
    -webkit-justify-content: center; /* Safari 7.0+ */
    display: flex;
    align-items: center;
    justify-content: center;
}

.prize_redemption_disclaimer{
	font-size:18px;
	color:#ffffff;
	letter-spacing:0;
/*	line-height:32px;*/
	text-align:left;

	margin: 40px 120px;
	margin-bottom: 100px;
}

.prize_redemption_disclaimer[lang="en"] .prize_redemption_disclaimer_zh,
.prize_redemption_disclaimer[lang="zh"] .prize_redemption_disclaimer_en{
	display: none;
}

.edit_btn{
	margin: 5px;
    float: right;
    text-decoration: underline;
    cursor: pointer;
}