.black_hood {
    position: fixed;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
}
.rating_popup {
    position: fixed;
	z-index: 999999;
    left: 50%;
    top: 50%;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
    /*margin-top: -230px;
    margin-left: -180px;*/
    height: 460px; /* plus padding */
    width: 360px; /* plus padding */
    padding-bottom: 20px;
    background-color: #fff;
    color: #595959;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    border-radius:10px;
    overflow:hidden;
    font-family: '微軟正黑體', Arial, sans-serif;
}
.rating_popup .close_x {
    position: absolute;
    right: 5px;
    top: 5px;
    padding: 5px;
    font-size: 16px;
    text-decoration: none;
    color:#292929;
    font-family: '微軟正黑體', Arial, sans-serif;
}
.rating_popup .close_x:hover {
    background-color: #545f68;
}
.rating_popup .bg_sky {
    width: 100%;
    overflow: hidden;
}
.rating_popup h3 {
    font-size: 18px;
    padding:20px 0px;
    text-align:center;
    line-height: 1.6;
    font-weight:normal;
}
.rating_popup h4 {
    font-size: 18px;
    padding:8px 0px;
    text-align:center;
    line-height: 1.6;
    font-weight:normal;
}
.box_bt_rating {
    width: 52%;
    height:120px;
    overflow:hidden;
    display:flex;
    margin:0 auto;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
    padding: 10px 5px;
}
.btn_bad, .btn_good {
    width: 80px;
    height: 80px;
    float: left;
    position: relative;
    text-decoration: none;
}
.btn_bad img, .btn_good img {
    width: 80px;
    height: 80px;
    -webkit-filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.3));
    filter: drop-shadow(2px 2px 3x rgba(0, 0, 0, 0.3));
}
.btn_bad img:hover, .btn_good img:hover {
    -webkit-filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0));
    filter: drop-shadow(2px 2px 3x rgba(0, 0, 0, 0))
}
.btn_bad:after, .btn_good:after {
    padding-top: 100px;
    text-align: center;
    font-size: 16px;
    text-decoration: none;
    color:#595959;
}
.btn_bad:after {
    content: "給建議";
}
.btn_good:after {
    content: "給好評";
}
.box_checkbox {
    float: left;
    width: 100%;
    font-size: 16px;
    margin-top:50px;
    text-align: center;
}
[type="checkbox"] {
    width:18px;
    height:18px;
    margin-top:-2px;
    vertical-align:middle;
}
.box_face {
    width: 100%;
    height: 50%;
    background: url(../images/icon_face.png) no-repeat bottom center;
    background-size: 80px auto;
}
.textarea {
	clear:both;
    width:90%;
    margin: 0 auto;
    border:none;
    color:#9c9c9c;
    border-radius:2px;
    border:1px solid #ccc;
    background-color: #f7f7f7;
	resize: none;
	line-height:1.6;
    font-size:16px;
    font-weight: 300;;
	font-family: "微軟正黑體" , "sans-serif";
	padding:10px;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	margin-top:15px;
    margin-bottom:20px;
    appearance:none;
 	-moz-appearance:none;
	-webkit-appearance:none;
}
.rating_table {
	width:300px;
	margin:0 auto;
}
.box_bt_sent {
    width: 100%;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
    display:flex;
    justify-content: space-between;
}
.bt_rating_sent {
    color:#fff;
	padding:10px;
	text-align:center;
	font-size:15px;
	border-radius:5px;
	border:2px solid #fff;
	text-decoration: none;
	box-shadow:2px 2px 1px rgba(0,0,0,0.2);
	-webkit-box-shadow:2px 2px 1px rgba(0,0,0,0.2);
	display:block;
	background-color: #00a0e9;
}
.bt_rating_sent:hover {
    background-color: #006ea0;
    box-shadow:none;
}
.bt_rating_gray {
	margin:0 auto;
    color:#fff;
	padding:10px;
	text-align:center;
	font-size:15px;
	border-radius:5px;
	border:2px solid #fff;
	text-decoration: none;
	box-shadow:2px 2px 1px rgba(0,0,0,0.2);
	-webkit-box-shadow:2px 2px 1px rgba(0,0,0,0.2);
	display:block;
	background-color: #929292;
}
.bt_rating_gray:hover {
	box-shadow: none;
	background-color: #292929;
}
@media screen and (max-width: 721px) {
    .rating_popup {
        /*margin-top: -180px;
        margin-left: -130px;*/
        height: 360px; /* plus padding */
        width: 260px; /* plus padding */
    }
    .rating_popup h3 {
        font-size: 14px;
        padding:20px 0px;
    }
    .rating_popup h4 {
        font-size: 14px;
        padding:8px 0px;
    }
    .box_bt_rating {
        width: 56%;
        height:90px;
        padding: 10px 5px;
    }
    .btn_bad, .btn_good {
        width: 60px;
        height: 60px;
    }
    .btn_bad img, .btn_good img {
        width: 60px;
        height: 60px;
    }
    .btn_bad:after, .btn_good:after {
        padding-top: 70px;
    }
    .box_checkbox {
        font-size: 14px;
        margin-top:50px;
    }
    [type="checkbox"] {
        width:14px;
        height:14px;
        margin-top:-2px;
    }
    .box_face {
        width: 100%;
        height: 50%;
        background-size: 80px auto;
    }
    .textarea {
    	margin-top:0px;
    	margin-bottom:10px;
        font-size:14px;
    }
    .rating_table {
		width:200px;
	}
    .bt_rating_sent {
        padding:6px;
        font-size:15px;
        border:1px solid #fff;
    }
    .bt_rating_gray {
        padding:6px;
        font-size:15px;
        border:1px solid #fff;
    }
}