body{
	font-family: Microsoft JhengHei;
	overflow-x: hidden;
}

.error{
	color: #e3594f;
	margin-top: 5px;
}

@media (min-width: 768px){
	.big.container{
		width: 100%;
		padding: 0 45px;
	}
}

@media (min-width: 1600px){
	.big.container{
		width:1535px;
		max-width: 100%;
	}
}

#gdpr_checkbox label{
    font-size: 16px;
    color: #919191;
    letter-spacing: 2px;
    font-weight: normal;
}

#gdpr_checkbox label a{
	color: #e3584e;
}

#gdpr_checkbox_errorMsg{
	display: none;
    padding: 5px;
    background-color: #ea6f68;
    color: #ffffff;
    margin-top: 10px;
}


/****************************************** HEADER ******************************************/

/* header */
#header{
	position: relative;
}

#header .header_bg{
	/* height: 800px; */
	background-image: url('/views/w168/images/banner.jpg');
	background-size: 75%;
	background-repeat: no-repeat;
	background-position: right top;
	padding-top: 35px;
	padding-bottom: 10%;

	/* border-bottom: 2px solid blue; */
}

/* header side */
#header #header_side{
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    transform: translateY(65%);
}

/* header scroll */
#header #header_scroll{
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 15px);

	animation-name: header_scroll;
	animation-duration: 2s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}

@keyframes header_scroll {
	0%{
		transform: translate(-50%, 15px);
	}

	100%{
		transform: translate(-50%, 45px);
	}
}

/* menu */
#header .menu{
	text-align: right;
}

#header .menu ul{
	list-style: none;
	padding-left: 0;
}

#header .menu ul li{
	display: inline-block;
}

#header .menu ul li a{
	color: #ffffff;
	font-size: 18px;
	display: inline-block;
	margin: 0 35px;
	text-decoration: none;
	letter-spacing: 1px;
	position: relative;
	z-index: 1;
}

#header .menu ul li a:hover:after{
    content: '';
    display: block;
    border-bottom: 10px solid #eb958f;
    border-radius: 10px;
    transform: translate(-10px, -8px);
    width: calc(100% + 20px);
    position: absolute;
    z-index: -1;
}

#header .menu ul li a:hover:before{
	content: '';
    display: block;
    width: 10px;
    height: 10px;
    background-color: #eb958f;
    position: absolute;
    left: 0;
    border-radius: 99em;
    top: 0;
    transform: translate(-12px, -8px);
}


/* mobile nav */
.mobile_nav_menu_wrap{
	display: none;
}

.mobile_nav{
	background: #ffffff;
    border-bottom: 1px solid #ffcecb;
    padding: 15px 0;
    position: relative;
}

.mobile_nav #mobile_nav_logo{
	max-height: 55px;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
}

.mobile_nav #mobile_nav_button{
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
}

.mobile_nav #mobile_nav_button .icon-bar{
	width: 35px;
	border-top: 2px solid #e35b51;
	display: block;
	margin: 8px 0;
}

.mobile_nav_menu{
	background-color: rgba(0,0,0,0.9);
	position: fixed;
	z-index: 5;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
}

.mobile_nav_menu ul{
	list-style: none;
	padding: 0;
	text-align: center;
}

.mobile_nav_menu ul li a{
	color: #ffffff;
	display: block;
	font-size: 30px;
	margin: 35px 0;
	letter-spacing: 2px;
}

.mobile_nav_menu #mobile_nav_menu_close{
	position: absolute;
    top: 15px;
    right: 15px;
    background-color: transparent;
    border: none;
    color: #ffffff;
    font-size: 30px;
}


/* banner text */
.banner_text{
	margin-top: 125px;
	font-weight: 600;
}

.banner_text .text1{
	color: #f38b84;
	font-size: 30px;
	letter-spacing: 2px;
}

.banner_text .text2{
	color: #e3584e;
	font-size: 80px;
	letter-spacing: 5px;
}

.banner_text .text2 div{
	position: relative;
	display: inline-block;
}

.banner_text .text2 div .msg{
	background-color: #e2544a;
	color: #ffffff;
	font-size: 30px;
	letter-spacing: 3px;
	padding: 15px 20px;
	border-radius: 45px;
	position: absolute;
    top: -90px;
    left: 50px;
    /* z-index: 1; */
}

.banner_text .text2 div .msg:before{
	position: absolute;
	content: '';
	width: 61px;
	height: 55px;
	background-image: url('/views/w168/images/100.svg');
	/* 100triangle.png */
	background-repeat: no-repeat;
	background-size: contain;
    top: 63px;
    left: 15px;
    /* z-index: -1; */
}

.banner_text .text3{
	color: #7e7e7e;
	font-size: 30px;
	letter-spacing: 2px;
}

@media (max-width: 1600px){

	.banner_text .text2{
		font-size: 60px;
	}

	.banner_text .text2 div .msg{
		font-size: 20px;
		width: 125px;
		text-align: center;
		padding: 5px 10px;
		top: -45px;
	}

	.banner_text .text2 div .msg:before{
		width: 31px;
		height: 25px;
		top: 30px;
	}

	#header #header_side img{
		width: 200px;
	}
}

@media (max-width: 1440px){

	#header .menu ul li a{
		margin: 0 20px;
	}

	.banner_text{
		margin-top: 90px;
		padding-left: 40px;
	}

	/* .banner_text .text1,
	.banner_text .text3{
		font-size: 20px;
	}

	.banner_text .text2{
		font-size: 40px;
	} */

	.banner_text .text2 div .msg{
		left: 20px;
	}

	#header #header_side img{
		width: 120px;
	}
}

@media (max-width: 1199px){
	.banner_text .text1,
	.banner_text .text3{
		font-size: 24px;
	}

	.banner_text .text2{
		font-size: 40px;
	}
}

@media (max-width: 991px){

	.banner_text .text1,
	.banner_text .text3{
		font-size: 17px;
	}

	.banner_text .text2{
		font-size: 30px;
	}

	.banner_text .text2 div .msg{
		font-size: 14px;
	}

	.banner_text .text2 div .msg:before{
		top: 25px;
	}

	#header #header_side{
	    transform: translateY(80%);
	}

	#header #header_side img{
		width: 80px;
	}

	#header #header_scroll{
		height: 55px;
		transform: translate(-50%, 30px);
	}
}


@media (max-width: 576px){
	
	.banner_text{
		margin-top: 100px;
	}

	.banner_text .text1, .banner_text .text3{
		font-size: 15px;
	}

	.banner_text .text2{
		font-size: 25px;
	}

	.banner_text .text2 div .msg{
		width: 100px;
	}

	.mobile_nav{
		padding: 10px 0;
	}

	.mobile_nav #mobile_nav_logo{
		max-height: 40px;
	}

	#header #header_side img{
		width: 50px;
	}

	#header #header_scroll{
		/* height: 35px; */
		display: none;
	}
}

@media (max-width: 320px){
	.banner_text{
		margin-top: 90px;
	}

}

/****************************************** INDEX ******************************************/

#index_main{
	padding-top: 90px;
	/* padding-bottom: 135px; */
}

.index_section_title{
	position: relative;
}

.index_section_title1{
	font-size: 265px;
	color: rgba(169, 169, 169, 0.2);
	font-family: 'Ibarra Real Nova', serif;
	line-height: 1;
	font-weight: 600;
}

.index_section_title2{
	font-size: 48px;
	line-height: 1.2;
    color: #e3584e;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(50%, -50%);
    letter-spacing: 2px;
    font-weight: 600;
}

.index_section_title2 .desc{
	font-size: 24px;
	color: #303030;
	margin-top: 15px;
}

@media (max-width: 1199px){
	.index_section_title.style2.center{
		justify-content: center;
		text-align: center;
	}

	.index_section_title.style2{
		display: flex;
		flex-wrap: wrap;
		margin-bottom: 45px;
	}

	.index_section_title.style2 .index_section_title1,
	.index_section_title.style2 .index_section_title2{
		width: 100%;
	}

	.index_section_title.style2 .index_section_title2{
		position: relative;
	    transform: translate(0, 0) !important;
	    /* margin-left: 30px; */
	}

}

@media (max-width: 991px){
	.index_section_title1{
		font-size: 100px;
	}

	.index_section_title2{
		font-size: 40px;
	}

	/* .index_section_title.style2{
		display: flex;
		flex-wrap: wrap;
		margin-bottom: 30px;
	}

	.index_section_title.style2 .index_section_title2{
		position: relative;
	    transform: translate(0, 0) !important;
	    margin-left: 30px;
	} */
}

@media (max-width: 576px){

	#index_main{
		padding-top: 0;
	}

	.index_section_title1 {
	    font-size: 80px;
	}

	.index_section_title2{
		position: relative;
		transform: translate(0, 0);
		font-size: 35px;
	}

	.index_section_title.style2 .index_section_title1,
	.index_section_title.style2 .index_section_title2{
		width: 100%;
	}

	.index_section_title.style2 .index_section_title2{
		margin-left: 0;
		font-size: 35px;
	}
}

@media (max-width: 320px){
	.index_section_title2{
		font-size: 35px;
	}
}


/****************************************** SECTION 1 ******************************************/

/* section1 */
#index_section_1_info{
	margin-top: 150px;
	position: relative;
}

#index_section_1 #index_section_1_info .index_section_title{
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    transform: translateY(-150px);
}

#section_1_row{
	display: flex;
    flex-wrap: wrap;
}

/* section1 left */
#section_1_left{
	background-color: #f6f6f6;
	padding-left: 8.33333333%;
	padding-right: 5%;
	padding-top: 50px;
	padding-bottom: 50px;
	height: 100%;
}

#section_1_left .title{
	font-size: 24px;
	color: #e2544a;
	letter-spacing: 4px;
	display: flex;
	margin-bottom: 25px;
	font-weight: bold;
}

#section_1_left .title:before,
#section_1_left .title:after{
	content: '';
	display: inline-block;
	width: 10px;
	height: 35px;
	background-color: #e2544a;
	transform: skewX(340deg);
}

#section_1_left .title:before{
	margin-right: 20px;
}

#section_1_left .title:after{
	margin-left: 20px;
}

#section_1_left .desc{
	font-size: 18px;
	color: #303030;
	padding-left: 30px;
	letter-spacing: 2px;
	margin-bottom: 40px;
}

#section_1_left .desc .red{
	color: #e2544a;
}

#section_1_left .list{
	display: flex;
    flex-wrap: wrap;
}

#section_1_left .list .list_col:first-child{
	margin-right: 80px;
}

#section_1_left .list .item{
	font-size: 18px;
	margin-bottom: 20px;
	color: #303030;
	display: flex;
    align-items: center;
    position: relative;
    padding-left: 25px;
}

#section_1_left .list .item.no-margin-bottom{
	margin-bottom: 0;
}

#section_1_left .list .item.red{
	font-weight: bold;
    position: relative;
    z-index: 1;
}

#section_1_left .list .item.red:after{
	content: '';
    display: block;
    border-bottom: 9px solid #e2544a;
    width: 125px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    transform: translateX(25px);
}

#section_1_left .list .item img{
	margin: 0 10px;
}

#section_1_left .list .item:before{
	content: '';
	width: 10px;
	height: 10px;
	border-radius: 99em;
	background-color: #e2544a;
	display: inline-block;
	/* margin-right: 25px; */
	position: absolute;
	left: 0;
}

/* section1 right */
#section_1_right{
	background-color: #e2544a;
	height: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
    justify-content: space-between;
}

#section_1_right .top{
	border-radius: 10px;
	background-color: rgb(226, 84, 74);
	box-shadow: 0px 5px 7.6px 0.4px rgba(0, 0, 0, 0.19);
	color: #ffffff;
	font-size: 32px;
	letter-spacing: 5px;
	font-weight: bold;
	display: inline-block;
	position: absolute;
	left: 50%;
	transform: translate(-50%, -28px);
	padding: 15px 40px;
	word-break: keep-all;
}

#section_1_right .title_container{
	padding: 60px 5px 30px 5px;
	/* text-align: center; */

	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}


#section_1_right .title_container .title1{
	color: #ffffff;
	font-size: 80px;
	letter-spacing: 5px;
	font-weight: bold;
}

#section_1_right .title_container .title2 .month{
	color: #d6d6d6;
	font-size: 30px;
	letter-spacing: 8px;
	font-weight: bold;
	margin-right: 10px;
}

#section_1_right .title_container .title2 .rank{
	color: #f7f7f7;
	font-size: 24px;
	letter-spacing: 3px;
}

#section_1_right .desc_container{
	background-color: #f6f6f6;
	padding: 10px 50px;
	margin: 5px;
	display: flex;
    justify-content: space-between;
    align-items: center;
}

#section_1_right .desc_container .desc_left{
	text-align: center;
	font-weight: bold;
}

#section_1_right .desc_container .desc_left .desc_left_title1{
	color: #707070;
	font-size: 24px;
}

#section_1_right .desc_container .desc_left .desc_left_title2{
	color: #707070;
	font-size: 30px;
}

#section_1_right .desc_container .desc_right .desc_right_price .num{
	color: #e2544a;
	font-size: 60px;
	font-family: 'Ibarra Real Nova', serif;
	letter-spacing: 5px;
	font-weight: bold;
}

#section_1_right .desc_container .desc_right .desc_right_price .price_text{
	color: #e2544a;
	font-size: 32px;
	font-weight: bold;
}

#section_1_right .desc_container .desc_right .desc_right_month{
	color: #959595;
	font-size: 24px;
	letter-spacing: 5px;
	font-weight: bold;
}

@media (max-width: 1440px){

	#section_1_right .desc_container .desc_left .desc_left_title1{
		font-size: 19px;
	}

	#section_1_right .desc_container .desc_left .desc_left_title2{
		font-size: 25px;
	}

	#section_1_right .top{
		font-size: 25px;
	}

	#section_1_right .desc_container .desc_right .desc_right_price .num{
		font-size: 50px;
	}
	
	#section_1_right .title_container{
		padding: 0 5px;
	}

	#section_1_right .title_container .title1{
		font-size: 60px;
	}

	#section_1_right .desc_container{
		padding: 20px;
	}
}


@media (max-width: 1200px){
	#section_1_right .desc_container .desc_left .desc_left_title1{
		font-size: 14px;
	}

	#section_1_right .desc_container .desc_left .desc_left_title2{
		font-size: 20px;
	}

	#section_1_right .title_container .title1{
		font-size: 50px;
	}

	#section_1_right .title_container .title2 .month{
		font-size: 25px;
	}

	#section_1_right .title_container .title2 .rank{
		font-size: 19px;
	}

	#section_1_right .desc_container .desc_right .desc_right_price .num{
		font-size: 45px;
		letter-spacing: 2px;
	}

	#section_1_right .desc_container .desc_right .desc_right_month{
		letter-spacing: 2px;
	}
}


@media (max-width: 991px){
	#section_1_row .col-md-4,
	#section_1_row .col-md-8{
		width: 100%;
	}

	#index_section_1_info{
		margin-top: 30px;
	}

	#index_section_1 #index_section_1_info .index_section_title{
		position: relative;
		transform: translateY(0);
		margin-bottom: 30px;
	}

	#section_1_row > .col-md-4{
		margin-top: 40px;
	}

	#section_1_right .title_container{
		padding: 70px 15px 50px 15px;
	}

	#section_1_right .desc_container{
		justify-content: space-around;
	}
}


@media (max-width: 576px){

	#section_1_left{
		padding-top: 20px;
    	padding-bottom: 20px;
	}

	#section_1_left .title{
		font-size: 20px;
		margin-bottom: 10px;
	}

	#section_1_left .desc{
		font-size: 14px;
		margin-bottom: 25px;
	}

	#section_1_left .list .item{
		font-size: 16px;
		margin-bottom: 15px;
	}

	#section_1_left .list .item.red:after{
		border-width: 5px;
		width: 111px;
	}

	#section_1_right .top{
		font-size: 20px;
	    padding: 10px;
	}

	#section_1_right .title_container{
		padding: 45px 15px 20px 15px;
	}

	#section_1_right .title_container .title1{
	    font-size: 25px;
	}

	#section_1_right .title_container .title2 .month {
	    font-size: 20px;
	}

	#section_1_right .title_container .title2 .rank {
	    font-size: 15px;
	}


	/* #section_1_right .desc_container .desc_right .desc_right_price .num{
		font-size: 25px;
	} */

	/* #section_1_right .desc_container .desc_right .desc_right_month{
		font-size: 20px;
	} */

}


/****************************************** SECTION 2 ******************************************/

#index_section_2{
	margin-top: 20px;
}

#index_section_2 #index_section2_row{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

#index_section_2 .index_section_title2{
	transform: translate(165px, -25%);
}

#index_section_2 .title_desc{
	padding-left: 165px;
}

#index_section_2 .title{
	font-size: 24px;
	color: #303030;
	margin-bottom: -10px;
    transform: translateY(-25px);
}

#index_section_2 .desc{
	font-size: 16px;
    color: #303030;
    letter-spacing: 1px;
    line-height: 2.5;
}

#index_section_2 .desc .red{
	font-size: 20px;
	color: #303030;
	margin-right: 8px;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

#index_section_2 .desc .red:after{
    content: '';
    display: block;
    border-bottom: 9px solid #e2544a;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    /* transform: translateX(25px); */
}

@media (max-width: 1440px){
	#index_section_2 .index_section_title2 {
	    transform: translate(85px, -25%);
	}

	#index_section_2 .title_desc {
	    padding-left: 85px;
	}
}

@media (max-width: 1199px){
	#index_section_2{
		text-align: center;
		
	}

	#index_section_2 #index_section2_row{
		flex-direction: column-reverse;
	}

	#index_section_2 .title_desc{
		padding-left: 0;
	}
}

@media (max-width: 991px){
	
	#index_section_2{
		margin-top: 45px;
	}

	#index_section_2 #index_section2_row{
	    flex-direction: column-reverse;
	}

	#index_section_2 .title_desc{
		padding-left: 0;
	}
}

@media (max-width: 576px){
	/* #index_section_2 .title{
		margin-bottom: 15px;
	} */

	#index_section_2 .desc{
		line-height: 1.5;
	}

	#index_section_2 .desc .red{
		margin-right: 5px;
		margin-left: 5px;
	}
}

/****************************************** pro ******************************************/

.pro_row{
	display: flex;
	flex-wrap: wrap;
}

.pro_row .pro_col{
	width: 50%;
	padding: 0px 15px;
}

.pro_row .pro_col:nth-child(1),
.pro_row .pro_col:nth-child(2){
	margin-bottom: 30px;
}

.pro_row .pro_col .pro_title{
	font-size: 24px;
	color: #2b2b2b;
	display: flex;
	justify-content: center;
	margin-top: 20px;
	margin-bottom: 30px;
	letter-spacing: 1px;
	font-weight: 600;
}

.pro_row .pro_col .pro_title:before{
    content: '';
    display: inline-block;
    width: 10px;
    height: 35px;
    background-color: #e2544a;
    transform: skewX(340deg);
    margin-right: 15px;
}

.pro_row .pro_col .pro_desc{
    color: #303030;
    font-size: 16px;
    text-align: center;
    line-height: 1.8;
    letter-spacing: 1px;
}

@media (max-width: 1199px){
	.pro_row{
		margin-bottom: 45px;
	}
}

@media (max-width: 991px){
	.pro_row .pro_col{
		width: 100%;
	}

	.pro_row{
		margin-bottom: 15px;
	}

	.pro_row .pro_col:nth-child(1),
	.pro_row .pro_col:nth-child(2),
	.pro_row .pro_col:nth-child(3){
		margin-bottom: 50px;
	}

	.pro_row .pro_col .pro_title{
		margin-bottom: 15px;
	}
}

@media (max-width: 576px){
	.pro_row .pro_col .pro_title{
		margin-bottom: 7px;
	}
}

/****************************************** SECTION 3 ******************************************/

#index_section_3{
	margin-top: 100px;
}

#index_section_3 #index_section3_row{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

@media (max-width: 1440px){
	.pro_row .pro_col{
		padding: 0 15px;
	}

	.pro_row .pro_col .pro_desc{
		letter-spacing: 0;
	}
}

@media (max-width: 1199px){
	#index_section_3 #index_section3_row .index_section3_col{
		width: 100%;
	}

	#index_section_3 #index_section3_right{
		margin-top: 40px;
	}
}

@media (max-width: 576px){
	#index_section_3{
		margin-top: 45px;
	}

	/* #index_section_3 #index_section3_right{
		margin-top: 30px;
	} */
}

/****************************************** SECTION 4 ******************************************/

#index_section_4{
	margin-top: 100px;
}

#index_section_4 #index_section4_row{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

@media (max-width: 1199px){
	#index_section_4 #index_section4_row{
		flex-direction: column-reverse;
	}
}

@media (max-width: 576px){
	#index_section_4{
		margin-top: 45px;
	}
}


/****************************************** SECTION 5 ******************************************/

#index_section_5{
	background-image: url('/views/w168/images/index_section_5_bg.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center bottom;

	padding: 45px 0 120px 0;
}


#index_section_5 .section5_row{
	display: flex;
	flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

#index_section_5 .section5_row .section5_col{
	padding: 15px;
}

#index_section_5 .section5_row .section5_col img{
	-webkit-filter:grayscale(1);
	opacity: .4;
}

#index_section_5 .section5_row .section5_col a:hover img{
	-webkit-filter:grayscale(0);
	opacity: 1;
}

@media (max-width: 1439px){
	#index_section_5 .section5_row .section5_col{
		width: 33.3%;
	}

	#index_section_5{
	    padding: 45px 0 40px 0;
	}
}


/****************************************** FORM ******************************************/

#index_form{
	/* height: 940px; */
	background-image: url('/views/w168/images/form_bg.jpg');
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: contain;
	background-color: #eceaeb;
	padding: 50px 0;
	border-bottom: 3px solid #ea6f67;
}

#index_form .title{
	padding: 0 15px;
}

#index_form .title .title1{
	font-size: 48px;
	color: #e3584e;
	margin-bottom: 8px;
	font-weight: bold;
}

#index_form .title .title2{
	font-size: 24px;
	color: #303030;
	margin-bottom: 30px;
	font-weight: bold;
}


#form_container{
	margin: 0 8.33333333%;
	padding: 50px 8.33333333%;

	background-color: rgba(255, 255, 255, 0.4);
	box-shadow: 0px 1px 18.88px 13.12px rgba(49, 49, 49, 0.1);
}

#webreg_form .control-label{
	font-size: 18px;
	color: #303030;
    font-weight: normal;
    letter-spacing: 3px;
    text-align: left;
}

#webreg_form input[type=text],
#webreg_form input[type=email]{
	height: 50px;
	background-color: #eaeaea;
	border: none;
	box-shadow: none;
	border-radius: 8px;
}

#webreg_form input#account{
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

#webreg_form .input-group .input-group-addon{
	background-color: #eaeaea;
    border: none;
    font-size: 18px;
    color: #303030;
    padding-right: 30px;
    letter-spacing: 2px;
    border-top-right-radius: 8px;
	border-bottom-right-radius: 8px;
}

#webreg_form .text{
	font-size: 16px;
	color: #919191;
	letter-spacing: 2px;
	margin: 10px 0 15px 0;
}

#webreg_form .form-group{
	margin-bottom: 35px;
}

#webreg_form .form-group.nmb{
	margin-bottom: 0;
}

#webreg_form .radio-inline{
	margin-right: 40px;
}

#webreg_form .radio-inline input[type=radio]{
    width: 20px;
    height: 20px;
    background-color: #eaeaea;
    border-radius: 50%;
    vertical-align: middle;
    border: 1px solid #ddd;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
    margin-top: 0;
}

#webreg_form .radio-inline input[type=radio]:checked {
    background-color: #ea6f68;
}

#webreg_form .radio-inline span{
	display: inline-block;
	margin-left: 15px;
	font-size: 16px;
	color: #303030;
}

#webreg_form .form-group_reCaptcha{
    display: flex;
    justify-content: center;
}

#webreg_form label.error[for=account]{
	display: none;
}

#webreg_form button[type=submit]{

	background-image: -moz-linear-gradient( -51deg, rgb(243,139,132) 0%, rgb(226,84,74) 100%);
	background-image: -webkit-linear-gradient( -51deg, rgb(243,139,132) 0%, rgb(226,84,74) 100%);
	background-image: -ms-linear-gradient( -51deg, rgb(243,139,132) 0%, rgb(226,84,74) 100%);
	width: 168px;
	height: 45px;

	border: none;
	border-radius: 20px;
	color: #ffffff;
	font-size: 16px;
	letter-spacing: 2px;

	margin-bottom: 30px;
}

@media (max-width: 1199px){
	#webreg_form .control-label{
		margin-bottom: 5px;
	}

	#index_form .title .title1{
		font-size: 38px;
	}

	#index_form .title .title2{
		font-size: 20px;
	}
}

@media (max-width: 768px){

	#form_container{
		margin: 0;
	}

	#webreg_form .checkbox-inline{
		margin-right: 0px;
		margin-left: 0;
		display: block;
	}

	#index_form .title .title1{
		font-size: 30px;
	}

	#index_form .title .title2{
		font-size: 17px;
	}
}


@media (max-width: 576px){
	#index_form .title .title1{
		font-size: 20px;
	}

	#index_form .title .title2{
		font-size: 14px;
	}

	#webreg_form .control-label{
		font-size: 16px;
	}

	#webreg_form .text{
		font-size: 14px;
	}
}


#reg_msg{
	font-size: 25px;
}

/****************************************** FORM BUTTON ******************************************/

#form_btn{
	position: fixed;
	top: 65%;
	right: 2%;
	cursor: pointer;
}

@media (max-width: 1440px){
	#form_btn img{
		width: 100px;
	}
}

@media (max-width: 576px){
	#form_btn{
		/* width: 70px; */
		display: none;
	}
}

/****************************************** COPY RIGHT ******************************************/

#copy_right{
	background-color: #535353;
	padding: 15px;
	text-align: center;
	font-family: 'Arial';
	
}

#copy_right *{
	font-size: 14px;
	color: #9a9a9a;
	letter-spacing: 2px;
}

#copy_right a{
	display: inline-block;
	margin-left: 10px;
}

@media (max-width: 768px){
	/* #copy_right{
		display: flex;
		flex-direction: column;
	} */

	#copy_right span{
		margin-bottom: 5px;
	}

	#copy_right *{
		font-size: 12px;
	}
}


