
.product-details {
	
	width: 100%;
}

.product-details .page-ttl {
	
	margin: 0 0 4px 0;
	font-size: 16px;
	font-weight: 400;
	border-bottom: solid 1px #d0d0d0;
	padding-bottom: 4px;
	color: #333;
	text-align: center;
}

.product-details .product-img {
	width: 190px;
	max-height: 145px;
	border-radius: 5px;
	text-align: center;
}

.product-details .product-title h2 {
	
	font-size: 18px;
	margin: 2px 0 0 0;
	font-weight: normal;
	color: #444;
	display: inline;
	line-height: 18px;
	border-bottom: dotted 1px #d0d0d0;
	padding-bottom: 3px;
	display: inline-block;
}

.product-details .product-description .norm-txt {
	
	font-size: 14px;
	color: #555;
	display: inline-block;
	vertical-align: top;
	line-height: 18px;
	padding-bottom: 2px;
	border-bottom: dotted 1px #d0d0d0;
}

.product-details .product-title h2, .product-details .product-description .norm-txt { }

.product-details .sm-ttl {
	
	display: inline-block;
	font-size: 11px;
	color: #313131;
	font-weight: bold;
	text-align: center;
	vertical-align: middle;
	line-height: 20px;
	margin-right: 5px;
}

.product-details .product-details-row {
	
	margin-bottom: 5px;
	text-align: center;
}

.product-details .price-txt {
	
	font-size: 16px !important;
	font-weight: 400;
	color: black !important;
}

.product-details .product-details-row:last-child { margin-bottom: 0 !important; }

.product-details .product-img-container {
	
	display: block;
	text-align: center;
}

.product-details .product-details-container {
	
	display: block;
}

.product-details-tabs {
	
	width: 80%;
	margin: 0 auto 20px auto;
}

.product-details-tabs .pd-tab {
	
	display: none;
	padding: 3px 3px 3px 5px;
	background-color: #f9f9f9;
	border: solid 1px #d0d0d0;
	margin: 3px 0;
	border-radius: 3px;
	width: 100%;
	cursor: pointer;
	transition: background-color 0.5s, color 0.5s, border-color 0.5s;
	font-size: 13px;
}

.product-details-tabs .pd-tab:hover, .product-details-tabs .pd-tab.pd-active {
	
	background-color: #0080B9;
	color: white;
	border-color: #0080B9;
}

.fancybox-inner { overflow: visible !important; }

.product-details .area-section {
	
	text-align: center;
	margin: 8px;
	/*border-bottom: 1px dotted rgb(74, 157, 195);*/
}

.product-details .area-section .area-section-ttl {
	
	font-size: 16px;
	/*border-bottom: dotted 1px #4A9DC3;*/
	color: #023F5A;
}

.product-details .area-section .area-section-ttl small {
	
	color: #444;
	font-size: 12px;
	margin-left: 8px;
}

.product-details .area-section .area-section-body {
	
	min-height: 25px;
	background-color: #f9f9f9;
	/*border-left: dotted 1px #4A9DC3;
	border-right: dotted 1px #4A9DC3;*/
	padding: 2px;
}

.button-st {
	
	background-color: #327A8E;
	color: white;
	border-radius: 3px;
	border: none;
	padding: 5px 10px;
	margin: 0 4px;
	font-size: 16px;
	box-shadow: -1px 1px 1px black;
	cursor: pointer;
	transition: opacity 1s;
}

.button-st:hover {
	opacity: 0.6;
}

.product-details .supp-product {
	
	display: inline-block;
	vertical-align: middle;
	width: 212px;
	border: solid 1px #78C1D5;
	margin: 2px 0;
}

.product-details select.tiny-select {
	
	width: 44px;
	font-size: 11px;
	border: none;
	margin-top: 2px;
	vertical-align: top;
}

.product-details .supp-product-ttl {
	
	width: 120px;
	font-size: 11px;
	padding-left: 5px;
}

.product-details .supp-product-price {
	
	font-size: 11px;
}

.product-details .supp-product-ttl,
.product-details .supp-product-price {
	
	display: inline-block;
	vertical-align: middle;
}

.product-details .supp-product-action {
	
	display: inline-block;
	vertical-align: middle;
}

.bg-color-red { 
	background-color: #E65656; 
	color: white;
	border: none
}
.bg-color-green {
	background-color: #44A244; 
	border: none;
	color: white;
}

.product-details .topping-ttl {
	
	display: none;
	font-size: 15px;
	text-align: center;
	margin-bottom: 3px;
	margin-top: 5px;
	border-bottom: solid 1px #d0d0d0;
}

.bit-warn {
	
	font-size: 11px;
	margin: 10px 0 0 0;
	color: red;
	text-align: right;
	display: none;
}

.fancybox-wrap { top: 20px !important; }

/* Checkout page */

.ch_container { 
	
	max-width: 940px;
	margin: 0 auto;
}

.ch_container .page-ttl {
	
	text-transform: uppercase;
	font-size: 28px;
	color: #555;
}

.gray-box {
	
	display: block;
	background-color: white;
	box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.05) inset;
	border-radius: 9px;
	padding: 15px;
	border: 1px solid #E3E3E3;
background: rgb(252,252,249); /* Old browsers */
background: -moz-linear-gradient(top,  rgba(252,252,249,1) 0%, rgba(234,239,232,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(252,252,249,1)), color-stop(100%,rgba(234,239,232,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  rgba(252,252,249,1) 0%,rgba(234,239,232,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  rgba(252,252,249,1) 0%,rgba(234,239,232,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  rgba(252,252,249,1) 0%,rgba(234,239,232,1) 100%); /* IE10+ */
background: linear-gradient(to bottom,  rgba(252,252,249,1) 0%,rgba(234,239,232,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfcf9', endColorstr='#eaefe8',GradientType=0 ); /* IE6-9 */
	width: 80%;
	margin: 0 auto;

}

.gray-box .box-ttl {
	
	margin: 0;
	color: #444;
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 6px;
}

.gray-box .box-content .cart { width: 100%; }

.gray-box .box-content .cart thead th {
	
	color: #333;
	border-bottom: solid 1px #d0d0d0;
}

.gray-box .box-content .cart thead th, .gray-box .box-content .cart tbody td {
	
	padding: 4px 5px;
	line-height: 20px;
}

.gray-box .box-content .cart thead th {
	
	font-size: 14px;
}

.gray-box .box-content .cart tbody td {

	font-size: 12px;
	background-color: #FBF9FE;
}

.gray-box .box-content .cart tbody td .size-text {

	color: #3A87AD;
}

.gray-box .box-content .cart tbody tr.supplement td {
	
	line-height: 16px !important;
	padding: 2px 5px !important;
}

.gray-box .box-content .cart tbody tr.supplement td .supp-text {
	
	color: #468847;
}

.gray-box .box-content .cart thead th:first-child,
.gray-box .box-content .cart tbody td:first-child {
	
	width: 5%;
        text-align: left;
}

.gray-box .box-content .cart thead th:nth-child(3),
.gray-box .box-content .cart tbody td:nth-child(3) {
	
	width: 55px;
	text-align: right;
}

.gray-box .box-content .cart thead th:last-child,
.gray-box .box-content .cart tbody td:last-child { 

	width: 30px;
	text-align: center;
}

.gray-box .box-content .cart tfoot td {
	
	font-size: 14px;
	line-height: 20px;
	padding: 4px 5px;
	font-weight: bold;
	color: #444;
	border-bottom: solid 1px #fbfbfb;
}

.gray-box .box-content .cart tfoot tr:first-child td { border-top: solid 1px #d0d0d0; }
.gray-box .box-content .cart tfoot td:nth-child(2) {
	
	text-align: left;
}
.gray-box .box-content .cart tfoot td:nth-child(3) {

	font-weight: normal;
	text-align: right;
}

.gray-box .box-content .cart tfoot tr:last-child td { font-size: 16px; font-weight: bold; border-bottom: none; }

.gray-box .box-content .btn-section {
	
	margin: 22px 0 0 0;
	text-align: center;
}

.orange-button {
	
	display: inline-block;
	margin: 0 auto;
	font-size: 14px;
	font-weight: normal;
	color: white;
	background-color: #FAA732;
background: rgb(255,180,89); /* Old browsers */
background: -moz-linear-gradient(top,  rgba(255,180,89,1) 0%, rgba(255,146,10,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,180,89,1)), color-stop(100%,rgba(255,146,10,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  rgba(255,180,89,1) 0%,rgba(255,146,10,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  rgba(255,180,89,1) 0%,rgba(255,146,10,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  rgba(255,180,89,1) 0%,rgba(255,146,10,1) 100%); /* IE10+ */
background: linear-gradient(to bottom,  rgba(255,180,89,1) 0%,rgba(255,146,10,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffb459', endColorstr='#ff920a',GradientType=0 ); /* IE6-9 */
	transition: opacity 1s;
	border: solid 1px orange;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
	text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.25);
	padding: 4px 12px; 
	border-radius: 3px;
	text-decoration: none;
}

.green-button {
	
	display: inline-block;
	margin: 0 auto;
	font-size: 14px;
	font-weight: normal;
	color: white;
	background: none repeat scroll 0% 0% #51A351;
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffb459', endColorstr='#ff920a',GradientType=0 ); /* IE6-9 */
	transition: opacity 1s;
	border: solid 1px orange;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
	text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.25);
	padding: 4px 12px; 
	border-radius: 3px;
	text-decoration: none;
}

.gray-box .contact-tbl {
	
	width: 100%;
}

.gray-box .contact-tbl tr td {
	
	padding: 4px 5px;
	font-size: 13px;
}

.gray-box .contact-tbl tr:nth-child(odd) td { padding-top: 6px; }

.area-section-body p {

	display: none;
	text-align: center !important;
	font-size: 11px !important;
}

.fancybox-wrap { width: 90% !Important; }
.fancybox-inner { width: 100% !Important; height: auto !important; }
.fancybox-wrap { left: 0; right: 0; margin-left: auto; margin-right: auto; }

.product-details .cos-footer table  tbody td { 

	display: block;
	text-align: center;
	margin-bottom: 10px;
	font-size: 20px;
}

.plusb2
{
	cursor: pointer;
	padding: 0px !important;
	margin-left: 0;
	border-radius: 3px;
	color: #ffffff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	color: #ffffff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	background-color: #da4f49;
	background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
	background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
	background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
	background-image: linear-gradient(to bottom, #ee5f5b, #bd362f);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0);
	border-color: #bd362f #bd362f #802420;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
	filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.pluse2
{
	padding: 6px;
	background-image: url("../img/glyphicons-halflings-white.png");
	background-position: -433px -90px;
}

p { margin: 0; }