* {
	box-sizing: border-box;
}
html {
	box-sizing: border-box;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	-webkit-tap-highlight-color: transparent;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
a {
	text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0;
}
p {
	margin: 0;
}
ul {
	margin: 0;
	padding: 0;
}
.clear {
	clear: both;
}
body {
	background: #fff;
	color: #333;
	font-family: 'Manrope', sans-serif;
	font-size: 16px;
	font-weight: 500;
	margin: 0;
}
.container {
	width: 80%;
	margin: 0 auto;
}
.container::after {
	content: "";
	width: 100%;
	display: table;
	clear: both;
}
header {
	background: #fff;
	padding:20px 0; 
	border-bottom:1px solid #eee;
}
.container-full {
	margin: 0 10%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.h-md-2 {
	width: 25%;
	max-width: 300px;
}
.h-md-2 img {
	max-width:100%;
}
.h-md-6 {
	width: 35%;
}
.h-md-4 {
	width: 30%; position: relative;
}
.mobile-icon-search{ display:none;}
.mobile-icon-menu{ display:none;}
@media screen and (max-width: 1300px) {
	.container-full { margin: 0 4%;}
	.container{width: 92%;}
}
@media screen and (max-width:1025px) {
	.container-full { margin: 0 3%;}
	.container{width: 90%;}
	.h-md-6 { display: none;}
	.h-md-2 { width:250px;}
	.h-md-4 { width:calc(90% - 310px); margin-right:60px;}
	.mobile-icon-menu{ display:block; position: absolute; top:32px; right: 3%; font-size:33px; width:30px;}
}
@media screen and (max-width:600px) {
	.h-md-2 { width:220px;}
	.h-md-4 { display: none;}
	.mobile-icon-menu{  top:25px;}
	.mobile-icon-search{ display:block; position: absolute; top:19px; right: 3%; 
	font-size:20px; background: #27A59B; color: #fff; text-align: center; line-height: 45px;
	width:45px; height: 45px; margin-right:50px; border-radius: 100%;}
}
.nav-bar{
	text-align: center;
	display: flex;
	justify-content:center;
	align-items: center; gap:35px;
}
.nav-bar li {
	display: inline-block;
}
.nav-bar li a{
	line-height: 30px;
	display: block;
	padding: 0;
	color:#07172B;
	font-weight:500;
	text-transform: capitalize;
	font-size: 17px;
	cursor: pointer;
	border-bottom: 2px solid rgba(255,255,255, 0.0);
	position: relative;
}
.nav-bar li a:hover {
	border-bottom: 2px solid #EE1E23;
	color: #EE1E23;
}
.nav-bar li a.nav-active {
	border-bottom: 2px solid #EE1E23;
	color: #EE1E23;
}
form.searchform2{
	width: 100%;
	border-radius:25px;
	position: relative;
	border: 1px solid #ddd;  display: flex; 
	flex-direction: row-reverse; 
	justify-content: space-between; 
	align-items: center; padding: 2px 4px 2px 2px;
}
form.searchform2 input[type=text] {
	padding:0 0 0 5px;
	font-size: 18px;
	border: 0 solid grey;
	height: 46px;
	width: calc(98% - 50px);
	outline: none; background-color: none; border-radius: 25px;
	font-family: Raleway, sans-serif;
}
form.searchform2 input[type=text]::placeholder {
 color: rgba(127, 124, 125, 0.5);
font-size:15px;
font-weight:500;
}
form.searchform2 button {
	height: 40px;
	width: 40px;
	padding: 0; border-radius: 100%;;
	background: #27A59B;
	text-transform: uppercase;
	font-weight: 700;
	color: #fff;
	font-size: 16px;
	cursor: pointer; border:0;
	font-family: Raleway, sans-serif;
}
.mobile-menu {
	display: none;
}

@media screen and (max-width:1150px) {
.container {
	margin: 0 auto;
	max-width: 1200px;
	position: relative;
}

}
.col-sm-4 {
	width: 300px;
	float: right;
}
.col-sm-8 {
	width: calc(98% - 300px);
	float: left;
	margin-right: 2%;
}
@media screen and (max-width:700px) {
	.col-sm-4 {width:100%;}
	.col-sm-8 { width:100%; margin-right: 0%;}
}
.heading {
	margin: 30px 0 10px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.breadcrum {
	padding: 2px;
	border-radius: 3px;
}
.breadcrum li {
	display: inline-block;
	font-size: 16px;
	font-family: sans-serif;
	font-weight: 500;
	color: #fff;
}
.breadcrum li a {
	color: #fff;
	display: block;
}
@media screen and (max-width:700px) {
	.heading { flex-wrap:wrap;}
	.heading h1{ width: 100%;}
	.breadcrum { width: 100%;}
}
.b-start {
	clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%);
	background: #2e4057;
	padding: 2px 15px;
}
.b-center {
	clip-path: polygon(95% 0, 100% 50%, 95% 100%, 0% 100%, 5% 50%, 0% 0%);
	background: #2e4057;
	padding: 2px 15px;
}
.b-last {
	clip-path: polygon(100% 0, 100% 50%, 100% 100%, 0% 100%, 5% 50%, 0% 0%);
	background: #2e4057;
	padding: 2px 15px;
}
.coupon-lists{
	display: flex;
	justify-content: left;
	align-items: stretch;
	gap: 20px;
	flex-wrap: wrap;
	margin-top: 20px;
	margin-bottom: 50px;
}
.coupon-grid {
	background: #fff;
	padding: 20px 20px 30px 20px;
	width: calc(33% - 20px);
	text-align: center;
	border:1px solid #ddd; 
	border-radius:15px;
}
.coupon-grid img {
	max-width: 100%;
	border: 1px solid #fff;
}
.coupon-detail {
	min-height: 170px;
	margin-top: 10px;
}
.coupon-detail a {
	display: block;
	color: #000;
	margin-bottom: 3px;
	font-size: 14px;
	line-height: 20px;
}
@media screen and (max-width:1025px) {
	.coupon-grid {
		background: #fff;
		padding: 20px 20px 30px 20px;
		width: calc(50% - 20px);
	}
}
@media screen and (max-width:800px) {
	.coupon-grid {
		background: #fff;
		padding: 20px 20px 30px 20px;
		width: calc(100% - 0px);
	}
}
@media screen and (max-width:600px) {
	.coupon-grid {
		background: #fff;
		padding: 20px 20px 30px 20px;
		width: 100%;
		text-align: center;
		border:1px solid #ddd; border-radius:15px;
	}
}
.coupon-h2 {
	font-size: 18px;
	color: #000;
	line-height: 24px;
	margin-bottom: 8px;
	text-align: left;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}
.coupon-name {
	font-size: 14px;
	color: #444;
	line-height: 20px;
	text-align: left;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}
.verified-code2 {
    font-size: 14px; display:flex; align-items:center; gap:5px; margin-bottom: 15px;
}
.verified-code2 .fa{ font-size:22px; color:#27A59B;}
.coupon-cta {
	text-align: center;
}
.btn-code {
	background: #EE1E23;
	border: 1px solid #eee;
	cursor: pointer;
	color: rgba(255,255,255, 0.95);
	text-align: center;
	display: inline-block;
	width: 170px;
	padding: 10px 0;
	font-size: 18px;
	font-weight: 500;
	border-radius: 3px;
}
.hvr-curl-top-right {
	vertical-align: middle;
	overflow: hidden;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	position: relative;
}
.hvr-curl-top-right:before {
	pointer-events: none;
	position: absolute;
	content: '';
	width: 17px;
	height: 17px;
	top: 0;
	right: 0;
	background: white;
	background: linear-gradient(225deg, white 45%, #aaa 50%, #ccc 56%, white 80%);
	box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.4);
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-property: width, height;
	transition-property: width, height;
}
.hvr-curl-top-right:hover:before, .hvr-curl-top-right:focus:before, .hvr-curl-top-right:active:before {
	width: 22px;
	height: 22px;
}
.side-box {
	margin-top: 20px;
	background: #fff;
	padding: 15px;
	border: 1px solid #ddd;
    border-radius: 15px;
}
.side-title {
	font-size: 18px;
	line-height: 24px;
	color: #333;
	font-weight: 700;
	margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}
.side-detail {
	font-size: 15px;
	color: #666;
	line-height: 22px;
}
.storecategories li {
	display: block;
	margin-bottom: 13px;
}
.storecategories li a {
	color: #333;
}
.storecategories .li2 {
	margin-left: 10px;
}
.storecategories .li3 {
	margin-left: 20px;
}
.storecategories .li4 {
	margin-left: 30px;
}
.brand-lists {
	display: flex;
	justify-content: left;
	align-items: stretch;
	gap: 20px;
	flex-wrap: wrap;
	margin-top: 20px;
	margin-bottom: 50px;
}
.brand-list {
	background: #fff;
	padding: 20px 20px 20px 20px;
	width: calc(33% - 20px);
	text-align: center;
	border:1px solid #ddd; border-radius:15px;
}
@media screen and (max-width:1025px) {
	.brand-list{width: calc(50% - 20px);}
}
@media screen and (max-width:800px) {
	.brand-list{width: calc(100% - 0px);}
}
@media screen and (max-width:600px) {
	.brand-lists { gap: 0px;}
	.brand-list { width:100%;}
}
.brand-list img {
	max-width: 100%;
	border: 1px solid #eee;
    border-radius: 100%;
    overflow: hidden;
    padding: 5px;
}
.brand-list a {
	display: block;
	color: #444;
	margin-bottom: 8px;
	font-size: 15px;
	line-height: 20px;
}
.brand-name {
	font-weight: 700;
	line-height: 28px;
	margin-bottom: 15px;
	font-size: 20px;
}
.brand-list:hover .brand-name{ color:#2e4057; text-decoration:overline;}
.brand-list:hover img {
	max-width: 100%;
	border: 1px solid #eee;
}
.cta-button-catd{
    margin-top:30px;
}
.cta-button-catd a{
    background: #27A59B;
    color: #fff;
    display: inline-block;
    cursor: pointer;
    padding: 10px 0;
    width: 100%;
    border-radius: 3px;
}
.product-search {
	padding: 10px;
	width: 100%;
	border: 1px solid #ddd;
}
.produclist-short-text{ color: #666;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;}
.deal-cards {
	display: flex;
	justify-content: left;
	align-items: strech;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 20px; margin-bottom:50px;
}
.deal-card {
	width: 31.3%;
	padding: 30px 1% 140px 1%;
	background: #fff;
	box-sizing: border-box;
	position: relative; border:1px solid #ddd; border-radius:15px;
}
@media screen and (max-width:1025px) {
	.deal-card { width: 48%;}
}
@media screen and (max-width:800px) {
	.deal-card { width: 100%;}
}
@media screen and (max-width:600px) {
	.deal-card { width:100%; padding: 30px 0% 140px 0%;}
}
.deal-card-img {
	text-align: center;
}
.deal-card-img img {
	max-width: 100%;
	margin-bottom: 30px;
}
.deal-card-title {
	display: block; font-size:18px;
	line-height: 26px;
	color: #000;
	font-weight: 700;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	margin-bottom: 10px;
}
.deal-card-title:hover {
	color: #333;
}
.deal-card-brand {
	text-align: center;
	color: #999;
	font-family: arial;
	margin: 15px 0;
}
.deal-card-brand a {
	color:#666;
	display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;  
            overflow: hidden;
            text-overflow: ellipsis;
			font-size:15px;
}
.deal-price {
	text-align: center;
	font-family: arial;
	margin-top: 10px;
}
.deal-price .newp {
	font-size:20px;
	font-weight: bold;
	color: #333;
}
.deal-price .oldp {
	font-size: 17px;
	color: #999;
	text-decoration: line-through;
}
.deal-discount {
	margin-top: 10px;
	display: block;
	color:#27A59B;
	font-weight: bold;
	font-size: 22px;
}
.bestDiscountedPrice {
	color: #999;
	margin-top: 20px;
	display: block;
	font-size: 13px;
}
.deal-card-btn {
	background:#27A59B;
	color: #fff;
	border-radius: 3px;
	font-weight: 700;
	padding: 10px 0;
	font-size: 16px;
	display: inline-block;
	width: 170px;
	text-align: center;
}
.deal-bottom-card {
	text-align: center;
	position: absolute;
	width: 100%;
	display: block;
	bottom: 20px;
	left: 0;
}
.deal-h2 {
	border: 1px solid #eee;
	padding: 10px;
	margin-bottom: 20px;
	font-weight: 900;
}
.deal-h2 a {
	float:right;
	font-size: 16px;
	color: #01aaad;
	display: inline-block;
	padding-top: 5px;
}
.bg-gray{ background:#27A59B; margin:0 0 50px 0;}
.search-deals {
	 padding-top: 50px;
    padding-bottom: 50px;
    margin-top:0; margin-bottom:0; color:#fff;
}
.search-deals h1{ margin-top: 10px;
    margin-bottom: 10px;
    font-size: 44px;}
.search-deals p{ line-height:26px; 
    font-weight: 400;}
.search-deals input { 
	margin-top: 20px;
    outline: none;
    border: 1px solid #ccc;
    font-size: 17px;
    padding: 20px 20px;
    width:80%; margin-left:10%; margin-right:10%;
    border-radius:30px;
}
#divResult-d {
	width: 100%;
	z-index: 1400000;
	position: absolute;
	display: none;
	margin-left: 0;
	border: solid 1px #eee;
	border-top: 0;
	overflow: hidden;
	border-bottom-right-radius: 3px;
	background-color: #fff;
	opacity: .97;
	filter: alpha(opacity=94);
	box-shadow: 0 8px 16px 0 rgba(0,0,0,.2)
}
.display_box_d {
	padding: 4px;
	border-top: solid 1px #eee;
	display: block;
	font-size: 13px;
	height: auto
}
.d_display_box {
}
.d_display_box a {
	display: block;
	font-weight: 700;
	font-size: 16px;
	color: #444;
	padding: 15px;
}
.d_display_box a:hover {
	background: #f1f1f1;
}
.dealx-h2 {
	border:0; padding:0;
	margin-bottom: 30px;
	font-weight: 700;
}
.dealx-cards {
	display: flex;
	justify-content: space-between;
	align-items: strech;
	flex-wrap: wrap; margin-bottom:50px;
}
.dealx-card {
	width: 23%;
	background: #fff;
	margin-bottom: 30px;
	padding: 30px 1% 80px 1%;
	border: 1px solid #ddd;
	border-radius: 15px;
	box-sizing: border-box;
	position: relative;
}
@media screen and (max-width:600px) {
	.dealx-card {
		width: 98%;
	}
}
.dealx-card-img {
	text-align: center;
}
.dealx-card-img img {
	max-width: 100%;
	border: 0px solid #eee;
	margin-bottom: 30px;
}
.dealx-card-title {
	display: block;
	line-height: 26px;
	color: #000;
	font-weight: 700;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	margin-bottom: 10px;
}
.dealx-card-title:hover {
	color: #333;
}
.dealx-card-brand {
	text-align: center;
	color: #999;
}
.dealx-card-brand a {
	color:#2e4057;
}
.dealx-price {
	text-align: center;
	margin-top: 10px;
}
.dealx-price .newp {
	font-size: 19px;
	font-weight: bold;
	color: #000;
}
.dealx-price .oldp {
	font-size: 17px;
	color: #999;
	text-decoration: line-through;
}
.dealx-discount {
	margin-top: 10px;
	display: block;
	color:#27A59B;
	font-weight: bold;
	font-size: 22px;
}
.bestDiscountedPrice {
	color: #999;
	margin-top: 20px;
	display: block;
	font-size: 13px;
}
.dealx-card-btn {
	background:#27A59B;
	color: #fff;
	border-radius: 3px;
	font-weight: 700;
	padding: 10px 0;
	font-size: 16px;
	display: inline-block;
	width: 170px;
	text-align: center;
}
.dealx-bottom-card {
	text-align: center;
	position: absolute;
	width: 100%;
	display: block;
	bottom: 20px;
	left: 0;
}
.dealx-h2 a {
	float: right;
	font-size: 16px;
	color: #27A59B; border:1px solid #27A59B;
	display: inline-block;
	padding:7px 20px; border-radius: 25px;
}
@media screen and (max-width:600px) {
.deal-h2 {
	text-align: center;
}
.deal-h2 a {
	float: none;
	font-size: 16px;
	color: #01aaad;
	display: block;
	text-align: center;
	padding-top: 5px;
}
.dealx-card {
	width: 47%;
}
}
.search-offers {
	max-width: 1000px;
	margin: 0 auto;
	padding: 50px 0 70px 0;
}
.store-feature {
	background: #27A59B;
	text-align: center;
}
.store-feature h1 {
	color: #fff;
	text-align: center;
}
.store-feature p {
	color: #fff;
	text-align: center;
}
.icons-categories {
	display: flex;
	justify-content: center;
	align-items: stretch;
	gap: 10px;
}
.icons-categories a {
	display: block;
	width: 100px;
	color: #fff;
	margin: 10px 0;
}
.icons-categories img {
	width: 100px; height: 100px;
	padding: 10px;
	background: #fff;
	border-radius: 50%;
	margin-bottom: 10px;
	filter: grayscale(100%);
}
.featured-offer {
	margin-top: 20px;
	display: flex;
	justify-content: space-between;
	align-items: top;
	background: #fff;
	padding: 15px 10px;
}
.sore-logo-img {
	width: 150px;
}
.offer-cta {
	width: 170px;
}
.offer-detail {
	width: calc(98% - 350px);
	padding: 0 1%;
}
@media (max-width:1025px){
	.offer-detail {
		width: calc(100% - 150px);
		padding: 0 0;
	}
	.offer-cta {
		width: 98%;
		text-align: end;
	}
}
@media (max-width:800px){
	.sore-logo-img{
		width:100%;
	}
}
.offertitle-n {
	font-weight: 500;
	line-height: 22px;
	padding: 5px 0 10px 0;
}
.offertitle-n a {
	color: #333;
	font-weight: 700;
}
.offertitle-n a:hover {
	color:#2e4057;
	text-decoration: underline;
}
.offer-text {
	line-height: 22px;
	color: #666;
	font-size: 14px;
}
.offer-tag-links {
	margin-top: 10px;
}
.offer-tag-links a {
	line-height: 22px;
	color:#2e4057;
}
.offer-tag-links a:hover {
	text-decoration: underline;
}
.offer-cta {
	margin-top: 10px;
}
.offer-cta .btn-code {
	padding: 15px 0;
}
.offer-text a {
	color: #666;
}
.offer-text p {
	margin-top: 20px;
}
.offer-code-item {
	display: inline-block;
	font-weight: 500;
	font-size: 14px;
	line-height: 22px;
	color:#2e4057;
	padding: 5px 0px;
	margin-top: 5px;
	margin-right: 15px;
}
.offer-code-item:hover {
	text-decoration: underline;
	font-weight: 700;
}
.offer-container{ margin-bottom:50px;}
.top-feature{ font-size:28px;}
/*Footer*/
footer {
	background: #2e4057;
	color: #fff;
}
.footer-container {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-wrap: wrap;
}
.footer-single {
	padding: 50px 0;
}
.footer-single h2 {
	color: rgba(255,255,255, 1);
	margin-bottom: 10px;
}
.footer-single h2 span {
	border-bottom: 2px solid rgba(255,255,255, 1);
	display: inline-block;
	padding-bottom: 5px;
}
.footer-single ul {
}
.footer-single ul li {
	display: block;
	margin-top: 13px;
}
.footer-single ul li a {
	color: rgba(255,255,255, 1);
}
.footer-single ul li a:hover {
	color: rgba(255,255,255, 0.99);
	border-bottom: 2px solid rgba(255,255,255, 1);
}
.footer-socials .fa {
	height: 25px;
	width: 25px;
	margin-right: 10px;
	line-height: 25px;
	border: 1px solid rgba(255,255,255, 0.7);
	text-align: center;
	border-radius: 25px;
}
.copyrt {
	text-align: left;
	padding-bottom: 20px;
	color: rgba(255,255,255, 1);
	font-size: 17px;
}

    .top-col-12 {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-wrap: wrap;
}
.top-col-3 {
	width: 32%;
	background: #fff;
	margin: 30px 0;
	padding-bottom: 20px;
	border: 1px solid #eee;
	border-radius: 10px;
	overflow: hidden;
}
@media (max-width:700px){
	.top-col-3 { width: 100%;}
}

.top-col-img { }
.top-col-img img {
	width: 100%
}
.top-col-detail {
	padding: 20px;
}
.top-col-detail h2 {
	font-size: 20px;
	line-height: 28px;
	color: #000;
	font-weight: 700;
	margin-top: 20px;
}
.top-col-3:hover h2 {
	color:#2e4057;
	text-decoration: underline;
}
.top-tags {
	margin-top: 00px;
}
.top-tags span {
	display: inline-block;
	font-size: 14px;
	color:#27A59B;
	margin-right: 5px;
}
span.span-0 {
	background: #397A99;
}
span.span-1 {
	background: #8CC9CC;
}
span.span-2 {
	background: #94B99A;
}
span.span-3 {
	background: #94979E;
}
.articlex2 {
	width: 65%;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-wrap: wrap;
	float: left;
}
.articlex3 {
	width: 28.5%;
	float: right;
	padding-top: 25px;
}
@media (max-width:800px) {
	.articlex2, .articlex3{ width: 100%;}
}

.articlex3 h2 {
	font-size: 22px;
	font-weight: bold;
	color: #000;
	margin-bottom: 20px;
}
.articlex {
	width: 46%;
	background: #fff;
	margin: 30px 0;
	border: 1px solid #eee;
	border-radius: 5px;
	overflow: hidden;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-wrap: wrap;
}
.articlex img {
	width: 100%;
}
.article-bxx {
	width: 94%;
	padding: 15px 3% 20px 3%;
	position: relative;
}
.article-detailxx2 {
	font-weight: 400;
	color: #666;
	font-size: 16px;
	line-height: 24px;
	margin-top: 0px;
	padding: 0;
	text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
.article-bxx a {
	color: #333;
}
.article-bxx h2 {
	color: #333;
	font-weight: 700;
	font-size: 20px;
	line-height: 28px;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-top: 10px;
	margin-bottom: 10px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
.article-bxx span {
	display: inline-block;
	border: 0px solid #fff;
	border-radius: 25px;
	text-align: center;
	font-weight: bold;
	font-size: 14px;
	color:#2e4057;
}
.full-wrap-heading {
	width: 100%;
}
.main-h2 {
	width: 98%;
	padding: 15px 0 15px 0%;
	color: #000;
	font-weight: bold;
	border-bottom: 1px solid #ddd;
}
.full-post-box {
	border: 1px solid #eee;
	border-radius: 5px;
	overflow: hidden;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-wrap: wrap;
	margin: 30px 0;
	background: #fff;
}
.full-post-box img {
	width: 310px;
}
.fpb-detail {
	width: calc(94% - 330px);
	padding: 10px 3%;
}
.fpb-detail h2 {
	color: #333;
	font-weight: 700;

	font-size: 20px;
	line-height: 28px;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-top: 10px;
	margin-bottom: 10px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.fpb-detailx2 {

	font-weight: 400;
	color: #666;
	font-size: 16px;
	line-height: 24px;
	margin-top: 0px;
	padding: 0;
	text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
.fpb-detail span {
	display: inline-block;
	border: 0px solid #fff;
	border-radius: 25px;
	text-align: center;
	font-weight: bold;
	font-size: 14px;
	color:#2e4057;
}
.lineup-col {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	margin-bottom: 25px;
	border-bottom: 1px solid #eee;
	padding-bottom: 20px;
}
.lineup-col-img {
	width: 100px;
}
.lineup-col-img img {
	max-width: 100%;
	border-radius: 5px;
}
.lineup-col-detail {
	width: calc(100% - 120px);
	padding-top: 5px;
	position: relative;
}
.lineup-col-detail a {
	color: #333;
	font-weight: 400;

	font-size: 16px;
	line-height: 24px;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.lineup-col:hover a {
	color:#27A59B ;
	text-decoration: underline;
}
.lineup-col-detail span {
	display: inline-block;
	border: 0px solid #fff;
	border-radius: 25px;
	text-align: center;
	font-weight: bold;
	font-size: 14px;
	color: #2e4057;
}
.fs-store {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}
.fs-logo {
	width: 80px;
}
.fs-logo img {
	max-width: 100%;
	border: 1px solid #eee;
	border-radius: 10px;
}
.fs-detail {
	width: calc(100% - 100px);
}
.fs-detail a {
	display: block;
	text-align: left;
	color: #333;
	font-weight: bold;

}
.fs-detail a span {
	display: block;
	color: #666;
	font-weight: 400;
	margin-top: 5px;
}
.fs-detail:hover a {
	color: #055878;
}
.ww-can {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	margin-bottom: 25px;
	border-bottom: 1px solid #eee;
	padding-bottom: 20px;
}
.ww-detail {
	width: 100%;
}
.ww-detail a {
	color: #333;
	font-weight: 500;
	font-size: 17px;
	line-height: 24px;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.ww-txt {
	font-weight: 400;
	color: #666;
	font-size: 16px;
	line-height: 24px;
	margin-top: 0px;
	padding: 0;
}
.ww-img {
	width: 80px;
	display: none;
}
.ww-img img {
	max-width: 100%;
}
.href-btn-s{ cursor: pointer;}