#main{
	width: 1100px;
    margin: 0 auto;
}

.title-area{
	color: #d9c6a5;
	font-size: 30px;
	font-weight: 600;
	text-align: center;
	padding: 15px;
	position: relative;
}

.title-area .return-btn{
	position: absolute;
	left: 15px;
    top: 20px;
	color: #d9c6a5;
	text-decoration: none;
	font-size: 25px;
	font-weight: 500;
}

.content-area-bg{
	border-radius: 25px; 
	padding: 5px; 
	background: radial-gradient(circle farthest-corner at center, #844122, #edd688);
}

.content-area{
	background-color: #ffffff;
	padding: 30px 80px;
	border-radius: 25px;
	overflow: auto;
}

/*orders-list-tb*/
.content-area .orders-list-tb{
	width:100%;
}

.content-area .orders-list-tb tr.title td{
	background-color: #444;
	color:#fff;
	font-size: 18px;
}

.content-area .orders-list-tb td{
	padding: 10px 7px;
	vertical-align: middle;
	font-size: 16px;
	border-bottom:1px solid #ccc;
	text-align: center;
}

.content-area .orders-list-tb .success-txt{
	color:green;
}

.content-area .orders-list-tb .fail-txt{
	color:red;
}

.content-area .orders-list-tb .orders-detail-a{
	color:blue;
	font-size: 18px;
	text-decoration: underline;
	cursor: pointer;
}

.content-area .orders-list-tb .get-btn {
    cursor: pointer;
	background: linear-gradient(rgb(239, 224, 199), rgb(193, 174, 134));
    border: 1px solid rgb(153, 135, 98);
	color: rgb(43, 43, 43);
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    padding: 7px;
    border-radius: 7px;
	min-width: 100px;
}
.content-area .orders-list-tb .get-btn:hover{
    background: linear-gradient(rgb(255, 255, 255), rgb(185, 185, 185));
    border: 1px solid rgb(170, 170, 170);
}   

.content-area .orders-list-tb .title {
   font-size: 16px;
   font-weight: bold;
}

.content-area .orders-list-tb .notes{
    margin-top: 10px;
    color: gray;
    font-size: 16px;
}