html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,dl,dt,dd,ol,nav ul,nav li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;}
article, aside, details, figcaption, figure,footer, header, hgroup, menu, nav, section {display: block;}
ol,ul{list-style:none;margin:0;padding:0;}
blockquote,q{quotes:none;}
blockquote:before,blockquote:after,q:before,q:after{content:'';content:none;}
table{border-collapse:collapse;border-spacing:0;}
/* start editing from here */
a{text-decoration:none;}
.txt-rt{text-align:right;}/* text align right */
.txt-lt{text-align:left;}/* text align left */
.txt-center{text-align:center;}/* text align center */
.float-rt{float:right;}/* float right */
.float-lt{float:left;}/* float left */
.clear{clear:both;}/* clear float */
.pos-relative{position:relative;}/* Position Relative */
.pos-absolute{position:absolute;}/* Position Absolute */
.vertical-base{	vertical-align:baseline;}/* vertical align baseline */
.vertical-top{	vertical-align:top;}/* vertical align top */
.underline{	padding-bottom:5px;	border-bottom: 1px solid #eee; margin:0 0 20px 0;}/* Add 5px bottom padding and a underline */
nav.vertical ul li{	display:block;}/* vertical menu */
nav.horizontal ul li{	display: inline-block;}/* horizontal menu */
img{max-width:100%;}
/* ============================ END RESET ========================*/
/*================================================================*/
/* body - khung chung*/
body{
	margin: 0;
    padding: 0;
	font-family:Arial, Helvetica, sans-serif;
	background:url(../images/body-bg.jpg);
}

.wrapper {
    width: 100%;
    min-height: auto;
    background: #dffadb;
    box-sizing: border-box;
}
/*=========================== HEADER =================================*/
/* Container chính của header */
.header {
    width: 100%;
    background: linear-gradient(to bottom,  #3ae32a 55%,#f4f4f4 100%); 
    color: #fff;
    gap: 1.2rem;
}

/* Wrapper bên trong cho nội dung header */
.header-wrap {
    width: 95%;
    margin: 0 auto; /* trên-dưới=0 ; trái-phải = tự động*/
    display: flex; /* sx phần tử con theo một dòng */
    justify-content: space-between;
    align-items: center; /* căn theo chiều dọc */
    background: linear-gradient(to bottom,  #3ae32a 55%,#f4f4f4 100%); 
    box-sizing: border-box;
    flex-wrap: nowrap; /* Đảm bảo không xuống dòng */
}

/* Bên trái: Logo và thanh tìm kiếm */
.header_left {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
}

/* Kiểu dáng logo */
.header .logo img {
    height: clamp(30px, 8vw, 70px);
    width: auto;
    object-fit: contain;
}

.logo {
    width: 100px;
    height: 70px;
    background-repeat: no-repeat;
    transition-duration: 0.1s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    vertical-align: middle;
    animation: example 5s infinite ease-in-out;
}

/* Hoạt hình cho logo */
@keyframes example {
    35%, 100% {
        transform: scale(1);
    }
    10% {
        transform: rotateX(360deg) scale(1.15);
    }
}

/* Hộp tìm kiếm */
.search_box {
    flex: 1; /* Chiếm không gian còn lại, nhưng giới hạn max-width */
    max-width: 300px; /* Giảm từ 40vw xuống để tránh quá rộng */
}

.search_box form {
    display: flex;
    align-items: center;
}

.search_box input[type="text"] {
    flex: 1;
    padding: clamp(6px, 0.7vw, 10px) clamp(10px, 1.1vw, 16px);
    font-size: clamp(0.9rem, 1vw, 1.1rem);
    border-radius: 8px 0 0 8px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

/* Nút tìm kiếm (biểu tượng) */
.bnt-search {
	width: 31.17px;
	height: 31.17px;
    border: none;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s;
}

.btn-search i {
    font-size: 18px;
}

.btn-search:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.btn-search:active {
    transform: scale(0.95);
} 

/* =========== Bên phải: Giỏ hàng và đăng nhập =========== */
.header_right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    flex: 0 0 auto; /* Không co lại, giữ kích thước tự nhiên */
    padding: 0 1%;
}

/* Giỏ hàng */
.shopping_cart {
    width: 80px;
    position: relative;
    padding: 0 0 0 46px;
    background: url(../images/header_cart.png) 0 0 no-repeat;
    cursor: pointer;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.cart {
    height: 38px;
    padding: 0 0 0 10px;
    border-left: none;
    line-height: 36px;
    border-radius: 0 2px 2px 0;
    box-sizing: border-box;
    flex: 1;
}

.shopping_cart .cart .opencart {
    width: 7px;
    height: 5px;
    background: url(../images/header_arrow.png) 0 0 no-repeat;
    position: absolute;
    right: 11px;
    top: 16px;
}

.shopping_cart span.cart_title {
    font-size: 13px;
    font-weight: bold;
    color: #4F4F4F;
}

.shopping_cart span.no_product {
    font-size: 13px;
    font-weight: bold;
    color: #DD0F0E;
}

/* Nút đăng nhập */
.login {
    background: #2f4b7c;
    border-radius: 1px solid #cecece;
    box-sizing: border-box;
    color: #444;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    height: 38px;
    width: 80px;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s;
}

.login a {
    color: #fff;
    text-decoration: none;
}

.login:hover {
    background: #232F64;
}

/* Thông báo thành công và lỗi */
.success {
    font-size: 18px;
    color: green;
}

.error {
    font-size: 18px;
    color: red;
}

/* Phù hợp với thiết bị di động */
@media (max-width: 768px) { /* Thêm breakpoint cho tablet */
    .header-wrap {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }

    .header_left {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        width: 100%;
    }

    .search_box {
        max-width: 100%;
    }

    .search_box form {
        flex-direction: row;
        /* width: 100%; */
		
    }

    .header_right {
        justify-content: center;
        gap: 10px;
        width: 100%;
        padding: 0;
    }

    .shopping_cart {
        width: 100%;
        max-width: 200px;
    }

    .login {
        width: 100%;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    /* Giữ nguyên như cũ cho mobile nhỏ */
}

/*========== BREADCRUMB =========*/

.breadcrumb {
    display: flex;
    max-width: 1200px;
    margin: 0 auto; 
    align-items: center;
    justify-content: flex-start;   /* căn giữa theo chiều ngang */
    width: 95%;
    background: #dffadb;
    gap: 10px;
    padding: 8px 0;
}

/*================ SLIDER ================*/

.pdft {
    margin-bottom:10px;
	background-color: #dffadb;
	width: 95%;
	margin: 0 auto;
    padding: 25px 0;
}

.pdft_left {
	float:left;
	width:50%;
	padding-top:6px;
}

.pdft_img {
	float:left;
	width: 46.2%;
}

.pic{
	float:left;
	width: 46.2%;
}

.pdft_img2{
    float:left;
	width: 46.2%;
	margin-left:1.6%;
}

.pdft_left_images{
	position:relative;
	margin-top:10px;
	box-shadow: 0px 0px 3px rgb(150, 150, 150);
}

.section {
	clear: both;
	padding: 0px;
	margin: 0px;
}
.group:before,
.group:after {
    content:"";
    display:table;
}
.group:after {
    clear:both;
}
.group {
    zoom:1;
}

.listview_1_of_2{
	display: block;
	float:left;
	margin: 1.4% 0 0% 1.6%;
	box-shadow: 0px 0px 3px rgb(150, 150, 150);
}
.listimg{
	text-align:center;
	float:left;
}
.text{
	display: block;
	float:left;
	margin: 2% 0 0% 3.6%;
}
.listview_1_of_2:first-child { margin-left: 0; } 
.images_1_of_2 {
	width: 46.2%;
	padding:1.5%; 
}
.listimg_2_of_1 {
	width: 48.2%;
}
.list_2_of_1 {
	width: 48.2%;
}
.images_1_of_2 img {
  height: 133px;
  width: 90px;
}
.list_2_of_1  h2 {
	color:#CC3636;
	font-size:1.2em;
	font-family: 'Monda', sans-serif;
	font-weight : normal;
	text-transform:uppercase;
}
.list_2_of_1  p{
	font-size:0.8125em;	
	color: #333;
	line-height: 1.6em;
	font-family : verdana, arial, helvetica, helve, sans-serif;
	padding:0; 	
}
.list_2_of_1 .button{
	line-height:1.9em;
	margin-top:0.5em;
}
.list_2_of_1 .button a{
	padding:7px 15px;
		font-size:0.8em;
		font-family: Arial, "Helvetica Neue", "Helvetica", Tahoma, Verdana, sans-serif;
		border: 1px solid rgba(0,0,0,0.1);
        background:#F58220  url(../images/large-button-overlay.png);       
        color             : #fff;
        text-shadow:0 -1px 1px rgba(0, 0, 0, 0.25);
		-moz-border-radius:5px;
		-webkit-border-radius:5px;
		border-radius:5px;
}
.list_2_of_1 .button a:hover{
	    border: 1px solid #4D00A0;
        background:#70389C;
        text-decoration:none; 
}

.pdft_right_images{
	float:left;
	width:49%;
	margin-left:1%;
	padding-top: 15px;
}


/*============= CONTENT ============*/
.main {
    width: 100%;
    background:#dffadb;
}

.clearmt {
    height: 20px;
    margin: 0 auto;
}

.content{
    margin: 0 auto;
    width: 95%;
	/* padding:20px 0; */
	background:#fff;
}
.content h2{ 
	font-size:23px;
	color:#6C6C6C;
	font-family: 'Monda', sans-serif;
}
.content_top{ /* sản phẩm nổi bật */
	padding:15px 20px;
	border:1px solid #b9f0be;
	border-radius:3px;
    background: #fff;
}
.content_bottom{ /* sản phẩm mới */
	padding:15px 20px;
	border:1px solid #EBE8E8;
	border-radius:3px;
	margin-top:2.6%;
}
.heading{
	display: flex;
	align-items: center;
	justify-content: center;
	font-size:18px;
	font-weight:bold;
}

.heading h3{
	font-family: 'Monda', sans-serif;
	font-size:22px;
	color:#c73d3d;
	text-transform:uppercase;
}
.sort,.show{
	float:left;
	width:14%;
	margin-left:1.6%;
	padding-top:5px;
}
.sort p,.show p{
	display:inline;
	font-size:0.8125em;
	color: #333;
}
.sort select,.show select{
	display:inline;
	font-size:1.1em;
	color: #333;
	margin-left:2px;
}
.page-no{
	/* float:left; */
	padding-top:5px;
}
.page-no p{
	display:inline;
	font-size:0.8125em;
	padding:0.3em 0;
	color: #333;
}
.page-no ul{
	display:inline;
}
.page-no li{
	display:inline;
}
.page-no li a{
	font-size:0.8125em;
	color: #333;
	line-height: 1.6em;
	font-family : verdana, arial, helvetica, helve, sans-serif;
	padding:5px 5px;
}
.page-no li a:hover,.page-no li.active{
	color:#602D8D;
	text-decoration:underline;
}


/**** Grid 1_0f_4 ****/
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 20px;
    width: 100%;
    /*justify-content: flex-start; /* dồn các thẻ về bên trái */
}
.grid_1_of_4{
	display: grid;
	/* float:left !important; */
	/* margin: 1% 0 1% 1.6%; */
    /* margin: 10px; */
    height: 90%;
    padding: 15px;
	box-shadow: 0px 0px 3px rgb(150, 150, 150);
    /* display: flex; */
    flex-direction: column; /* để nút luôn nằm cuối */
}
.grid_1_of_4:first-child { 
	margin-left: 0; 
} 
.images_1_of_4 {
	width: 100%;
	padding:1.5%;
	text-align:center;
	position:relative; 
}
.images_1_of_4  img{
	height: 200px;
	max-width:100%;
	/* object-fit: cover; */
    object-fit: contain;
}
.discount{
	background:url(../images/discount-img.png) no-repeat 0 0;
	position: absolute;
	top: 30px;
	width: 42px;
	height: 42px;
}
.discount span.percentage{
	color: #FFF;
	font-size: 1em;
	font-weight: bold;
	line-height: 40px;
}
.images_1_of_4  h2 {
	color: #CC3636;
	font-family: 'Monda', sans-serif;
	font-size:0.9em;
	font-weight : normal;
}
.images_1_of_4  p {
	font-size:0.8125em;
	padding:0.4em 0;
	color: #333;	
}
.images_1_of_4  p span.strike{
	font-size:18px;
	font-family: 'Monda', sans-serif;
	color:#444;
	text-decoration:line-through;
}
.images_1_of_4  p span.price{
	font-size:18px;
	font-family: 'Monda', sans-serif;
	color: #CC3636;
	margin-left:15px;
}
.images_1_of_4 .button {
  /* float: left; */
  line-height: 1.9em;
  /* margin-top: 0.3em; */
  margin-top: auto; 
  width: 100%;
  text-align: center;
}
.images_1_of_4 .button a{
	padding:7px 20px;
	font-size:0.8em;
}
.images_1_of_4 .button a{
	font-family: "Trebuchet MS",Arial,Helvetica,sans-serif;
	font-size: 14px;
	line-height: 15px;
	text-transform: none;
	color: #ffffff;
	text-decoration: none!important;
	background:#F58220 url(../images/large-button-overlay.png);
	display: inline-block;
	border-left: 1px solid #D4D4D4!important;
	border-right: 1px solid #ADADAD!important;
	border-top: 1px solid #E0E0E0!important;
	border-bottom: 1px solid #9C9C9C!important;
	cursor: pointer!important;
	margin: 0 2px;
	border-radius: 2px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	-webkit-transition: all 0.5s ease;
		-moz-transition: all 0.5s ease;
		-o-transition: all 0.5s ease;
		transition: all 0.5s ease;
}
.images_1_of_4 .button a:hover{
     color:#fff;
     background: #70389C;
}
.images_1_of_4 .button span img{
	position:absolute;
}
.images_1_of_4 .button a.cart-button{
	padding:7px 5px 7px 38px; 
}

/* ẩn đi ô trống đầu tiên trong sản phẩm*/
.section.group.grid::before {
    display: none;
}

/*===============================================*/
.footer{
    width: 100%;
	position:relative;
	background: #3ae32a; 
	background: -moz-linear-gradient(top,  #232F3E 55%, #232F3E 100%); 
	background: -webkit-gradient(linear, left top, left bottom, color-stop(55%,#232F3E), color-stop(100%,#232F3E));
	background: -webkit-linear-gradient(top,  #232F3E 55%,#232F3E 100%); 
	background: -o-linear-gradient(top,  #232F3E 55%,#232F3E 100%); 
	background: -ms-linear-gradient(top,  #232F3E 55%,#232F3E 100%); 
	background: linear-gradient(to bottom,  #3ae32a 55%,#f4f4f4 100%); 
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#414045', endColorstr='#232F3E',GradientType=0 );
	box-shadow: inset 0px 1px 8px #e9f4e7;
}

.icon-address {
    width: 18px;         /* chỉnh kích thước icon */
    height: auto;
    vertical-align: middle;   /* căn cùng dòng với text */
    margin-right: 6px;   /* khoảng cách icon và chữ */
    background: none;    /* bỏ nền */
    border-radius: 0;    /* đảm bảo không bo tròn */
    display: inline-block;
}

.footer li {
    display: flex;
	color: #2b3b91; 
    align-items: center;
    gap: 6px;          /* khoảng cách giữa icon và chữ */
    line-height: 1.4;
}

.footer li img.icon-address {
    width: 18px;
    height: auto;
    display: block;
}

/* Link địa chỉ giống style các link khác */
.footer li a {
    color: #2b3b91;                       /* màu chữ mặc định (như các cột khác) */
    text-decoration: none;
    font-size: 0.95em;
    transition: color 0.2s ease-in-out;
}

/* Hover giống các mục khác trong footer */
.footer li a:hover {
    color: #8e0379;                    /* màu hover giống các cột */
}


/* Container 4 cột */
.section.group.ft{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
}

.section {
	clear: both;
	padding: 0px;
	margin: 0px;
    
}
.group:before,
.group:after {
    content:"";
    display:table;
}
.group:after {
    clear:both;
}
.group {
    zoom:1;
}

.wrapper-footer {
        /* display: flex; */
    width: 95%;
    margin: 0 auto;
}
.col_1_of_4{
    /* display: flex; */
	/* float: left !important; */
    height: 95%;
	flex: 1;   /* 4 cột đều nhau */
    min-width: 220px;
    padding: 15px;
    flex-direction: column;

}
.col_1_of_4:first-child { margin-left: 0; } /* all browsers except IE6 and lower */
.col_1_of_4:last-child {
	border:none;
}
.span_1_of_4 {
    width: auto;
}

.span_1_of_4  h4 {
	color:#000;
	margin-bottom: .5em;
	font-size:1.2em;
	line-height: 1.2;
	font-family:'Times New Roman', Times, serif;
	font-weight : normal;
	margin-top: 0px;
	letter-spacing: -1px;
	text-transform:uppercase;
	border-bottom:1px solid #474747;
	padding-bottom:0.5em;
}
.span_1_of_4  li a{
	font-size:0.8125em;
	padding:0.4em 0;
	color:#0c4aa8;
	font-family :Arial, Helvetica, sans-serif;
	display:block;	 	 
}
.span_1_of_4  li a:hover,.span_1_of_4  li span:hover{
	color:#BBB7B7;
}
.span_1_of_4  li span{
	font-size:1.2em;
	padding:0.2em 0;
	color:#0c4aa8;
	display:block;
	cursor:pointer;
}

/*** Social Icons ***/
.social-icons{
	/* padding-top:8%; */
	width: 100%;
    text-align: center;
    margin-top: 20px;  /* tạo khoảng cách trên cho đẹp */
}

.social-icons h4 {
    text-align: center;
    margin: 0 auto 10px auto;
    width: fit-content;
    color: #000;
    border-bottom: 1px solid #474747;
    padding-bottom: 5px;
}

/* Nếu sau này bạn thêm icon thì căn giữa luôn */
.social-icons ul {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0;
    margin-top: 10px;
}

.social-icons ul li {
    list-style: none;
}

.social-icons li {
	list-style: none;
	/* width:30px;
	height:30px;
	padding: 0px 0 0 5px;
	margin: 0;
    display:inline-block;
	cursor:pointer; */
}
.social-icons li.facebook {
	background:url(../images/icon-2.png) no-repeat 0px  -29px;
}
.social-icons li.facebook:hover {
	background:url(../images/icon-2.png) no-repeat 0px  0px;
}
.social-icons li.twitter {
	background:url(../images/icon-3.png) no-repeat 0px  -29px;
}
.social-icons li.twitter:hover {
	background:url(../images/icon-3.png) no-repeat 0px  0px;
}
.social-icons li.googleplus {
	background:url(../images/icon-4.png) no-repeat 0px  -29px;
}
.social-icons li.googleplus:hover {
	background:url(../images/icon-4.png) no-repeat 0px  0px;
}
.social-icons li.contact {
	background:url(../images/icon-1.png) no-repeat 0px  -29px;
}
.social-icons li.contact:hover {
	background:url(../images/icon-1.png) no-repeat 0px  0px;
}
 .copy_right{
	text-align:center;
	padding:15px 0;
 }
 .copy_right p{
	font-size:12px;
	color:#747474;
 }
 .copy_right p a{
    color:#747474;
	font-size:12px;
	text-decoration:underline;
 }
 .copy_right p a:hover{
	color:#BBB7B7;
	text-decoration:none;
 }

 /*** move top **/
#toTop {
	display:none;
	text-decoration:none;
	position:fixed;
	bottom:10px;
	right:10px;
	overflow:hidden;
	width:48px;
	height:48px;
	border:none;
	text-indent:100%;
	background:url(../images/arrow_up.png) no-repeat right top;
}

#toTopHover {
	width:48px;
	height:48px;
	display:block;
	overflow:hidden;
	float:right;
	opacity: 0;
	-moz-opacity: 0;
	filter:alpha(opacity=0);
}
#toTop:active, #toTop:focus {
	outline:none;
}

/*  Preview  ============================================================================= */
.back-links{
	float:left;
	padding-top:5px;
	width:20%;
}
.back-links p{
	font-size:0.8125em;
	color: #333;
}
.back-links p a{
	font-size:0.9em;
	padding:0  1.3%;
	color: #333;
}
.back-links p a:hover,.back-links p a:active{
	color:#70389C;
}
.image {
	clear: both;
	padding: 0px;
	margin: 0px;
	background:#F0F0F0;
	padding:1.5%;
}
.group:before,
.group:after {
    content:"";
    display:table;
}
.group:after {
    clear:both;
}
.group {
    zoom:1;
}
.cont-desc{
	display: block;
	float:left;
	clear:both;
}
.rightsidebar{
	display: block;
	float:left;
	margin: 0% 0 0% 1.6%;
}
.cont-desc:first-child { margin-left: 0; } 
.desc{
	display: block;
	float:left;
	margin: 0% 0 0% 2.6%;
}
.span_1_of_2{
	width: 67.1%;
	padding:1.5%;
}
.images_3_of_2 {
	width: 44.2%;
	float:left;
	text-align:center;
}
.span_3_of_2{
	width: 53.2%;
}
.span_3_of_1{
	width: 25.2%;
	padding:1.5%;
}
.images_3_of_2 img {
  /* height: 302px; */
	height: auto;  
  /* height: 320px; */
  	max-width: 100%;
  	width: 100%;
}
.span_3_of_2  h2 {
	font-family: 'Monda', sans-serif;
	font-size:1.1em;
	color: #CC3636;
	font-weight : normal;
	margin-top: 0px;
	text-transform:uppercase;
}
.span_3_of_2  p{
	font-size:0.8125em;
	padding:0.3em 0;
	color:#969696;
	line-height: 1.6em;
	font-family : verdana, arial, helvetica, helve, sans-serif; 	
}
.price p{
	font-size:0.8125em;
	padding:1.5% 1%;
	color: #666;
	vertical-align:top;
}
.price p span{
	font-size:1.5em;
	font-family: 'Monda', sans-serif;
	color: #CC3636;
}
.available{
	padding:10px 0;
	border-top:1px solid #E0E0E0;
}
.available p{
	font-size:0.9em;
	color:#333;
	font-weight:bold;
	padding-bottom:10px;
}
.available li{
	display:inline;
	font-size:0.8125em;
	padding:1.5% 2%;
	color:#353535;
}
.available li select{
	display: inline;
	font-size: 1em;
	color: #333;
	margin-left:3px;
}
.share p{
	padding-top:10px;
	font-size:0.9em;
	color:#333;
	font-weight:bold;
}
.share li{
	display:inline-block;
	margin:5px 6px;
}
.add-cart{
	padding-top:15px;
}
.rating{
	float:left;
}
.rating p{
	padding-top:10px;
	font-size:0.9em;
	color:#333;
	font-weight:bold;
}
.rating p span{
	font-size:0.8125em;
	color: #666;
	font-weight:normal;
}
.rating p img{
	vertical-align: top;
	padding-left: 5px;
}
.product-desc,.product-tags{
	clear:both;
	padding-top:20px;
}
.product-desc h2,.product-tags h2{
	padding:8px 20px;
	background:#602D8D;
	border: 1px solid #EBE8E8;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-o-border-radius: 5px;
	font-family: 'Monda', sans-serif;
	font-size:1.2em;
	color:#FFF;
	text-transform: uppercase;
	text-shadow:0 1px 5px rgba(34, 34, 34, 0.17);
}
.product-desc p{
	font-size: 0.8em;
	padding: 0.3em 0;
	color: #969696;
	line-height: 1.6em;
	font-family: verdana, arial, helvetica, helve, sans-serif;
}
.product-tags h4{
	padding:10px 0;
	font-size:0.9em;
	color:#333;
	font-weight:bold;
}
.input-box{
	background:url(../images/tag.png) no-repeat 0 8px;
	padding-left:35px;
}
.input-box input[type="text"]{
	 		padding:8px;
			display:block;
			width:95%;
			background:#fcfcfc;
			border: none;
			outline:none;
			color:#464646;
			font-size:0.8125em;
			font-family:Arial, Helvetica, sans-serif;
			box-shadow: inset 0px 0px 3px #999;
			-webkit-box-shadow: inset 0px 0px 3px #999;
			-moz-box-shadow: inset 0px 0px 3px #999;
			-o-box-shadow: inset 0px 0px 3px #999;
			/* -webkit-appearance:none; */
}
.product-tags .button{
	margin-top:15px;
	line-height:3em;
}
.span_3_of_2 .button{
	float:right;
	margin-top:1%;
	line-height:2em;
}
.span_3_of_2 .button a,.product-tags .button a{
		padding:12px 20px;
		font-size:1em;
		font-weight:bold;
		font-family: Arial, "Helvetica Neue", "Helvetica", Tahoma, Verdana, sans-serif;
		border: 1px solid rgba(0,0,0,0.1);
  		box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
        background        : #3f4040;       
        color             : #fff;
        text-shadow       : 0 1px 0 rgba(0, 0, 0, 0.4); 
        -webkit-box-shadow: 0 1px rgba(255, 255, 255, 0.2) inset, 0 2px 2px -1px rgba(0, 0, 0, 0.3);
		-moz-box-shadow: 0 1px rgba(255,255,255,0.2) inset, 0 2px 2px -1px rgba(0,0,0,0.3);
		box-shadow: 0 1px rgba(255, 255, 255, 0.2) inset, 0 2px 2px -1px rgba(0, 0, 0, 0.3);
		-moz-border-radius: 3px;
		-webkit-border-radius: 3px;
		border-radius: 3px;
		-webkit-transition: all 0.5s ease;
		-moz-transition: all 0.5s ease;
		-o-transition: all 0.5s ease;
		transition: all 0.5s ease;
}
.span_3_of_2 .button a:hover,.product-tags .button a:hover{
	    border: 1px solid #303030;
        background: #525252; 
        text-decoration:none;
}
.span_3_of_1 li a{
	font-size:0.8125em;
	padding:0.42em 8%;
	color: #666;
	display: block;
	line-height: 1.6em;
	font-family : Arial, Helvetica, sans-serif;
	border-bottom:1px dashed #CCC;
	background: url(../images/drop_arrow.png) no-repeat 5px 11px; 	
}
.span_3_of_1 li a:hover{
	background: url(../images/drop_arrow-hover.png) no-repeat 5px 11px;
	color:#602D8D; 
}
.span_3_of_2 .button{
	float:right;
	margin-top:1%;
	line-height:2em;
}
.span_3_of_2 .button a{
		padding:12px 20px;
		font-size:1em;
		font-weight:bold;
		font-family: Arial, "Helvetica Neue", "Helvetica", Tahoma, Verdana, sans-serif;
		border: 1px solid rgba(0,0,0,0.1);
  		box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
        background        : #3f4040;       
        color             : #fff;
        text-shadow       : 0 1px 0 rgba(0, 0, 0, 0.4); 
        -webkit-box-shadow: 0 1px rgba(255, 255, 255, 0.2) inset, 0 2px 2px -1px rgba(0, 0, 0, 0.3);
		-moz-box-shadow: 0 1px rgba(255,255,255,0.2) inset, 0 2px 2px -1px rgba(0,0,0,0.3);
		box-shadow: 0 1px rgba(255, 255, 255, 0.2) inset, 0 2px 2px -1px rgba(0, 0, 0, 0.3);
		-moz-border-radius: 3px;
		-webkit-border-radius: 3px;
		border-radius: 3px;
}
.span_3_of_2 .button a:hover{
	    border: 1px solid #303030;
        background: #525252; 
        text-decoration:none;
}
.subscribe{
	padding-top:20px;
}
.subscribe p{
	font-size:12px;
	color:#444;
	padding:5px 0;
}
.signup{
	border-radius:0.2em;
	-webkit-border-radius:0.2em;
	-moz-border-radius:0.2em;
	-o-border-radius:0.2em;
	margin-top:5px;
	 background:#E7E7E7;
   box-shadow: inset 0px 2px 5px #707070;
}
.signup input[type="text"]{
    border:none;
    background:none;
    padding:5px;
    outline:none;
    width:217px;
    font-size:12px;
    color:#7c7c7c;
}
.signup input[type="submit"]{
	border: 1px solid  #5C5655;
    padding:8px 20px;
   	font-size:12px;
   	margin:0;
   	font-weight:bold;
   	cursor:pointer;
 	background     : #565656;
    filter         : progid:DXImageTransform.Microsoft.gradient(startColorstr='#565656', endColorstr='#565656');
    color          : #fff;
    text-shadow    : 0 1px 0 rgba(0, 0, 0, 0.2);  
}
.signup input[type="submit"]:hover{
   		background        : #5e5e5e;
        background        : -moz-linear-gradient(top,  #5e5e5e 0%, #404040 100%);
        background        : -webkit-gradient(linear, left top, left bottom, color-stop(0%,#5e5e5e), color-stop(100%,#404040));
        background        : -webkit-linear-gradient(top,  #5e5e5e 0%,#404040 100%);
        background        : -o-linear-gradient(top,  #5e5e5e 0%,#404040 100%);
        background        : -ms-linear-gradient(top,  #5e5e5e 0%,#404040 100%);
        background        : linear-gradient(top,  #5e5e5e 0%,#404040 100%);
        filter            : progid:DXImageTransform.Microsoft.gradient( startColorstr='#5e5e5e', endColorstr='#404040',GradientType=0 );
        box-shadow        : 1px 1px 0 0 #414141 inset, -1px -1px 0 0 #414141 inset, 0 1px 2px -1px rgba(0,0,0,0.15);  
        -moz-box-shadow   : 1px 1px 0 0 #414141 inset, -1px -1px 0 0 #414141 inset, 0 1px 2px 0 rgba(0,0,0,0.15);
	    -webkit-box-shadow: 1px 1px 0 0 #414141 inset, -1px -1px 0 0 #414141 inset, 0 1px 2px -1px rgba(0,0,0,0.15);
  }
 .community-poll{
    	padding-top:5%;
 }
 .community-poll p{
 	color: #C94848;
	font-size:0.8em;
	font-weight: normal;
	padding:2% 0;
  }
 .poll li{
 	padding: 3px 0px 9px 0;
 }
 .poll input.radio {
	float: left;
	margin: 2px 0 0 0;
}
.poll .label {
	display: block;
	margin-left: 20px;
}
.poll label{
	font-size:0.8125em;
	padding:0.42em 1%;
	color: #666;
	font-family : Arial, Helvetica, sans-serif;
}
/*  About  ============================================================================= */
.col_1_of_3{
	display: block;
	float:left;
	margin: 0% 0 0% 1.6%;
}
.col_1_of_3:first-child { margin-left: 0; }

.span_1_of_3 {
	width: 29.2%;
	padding:1.5%; 
}
.span_1_of_3 img{
	border:1px solid #DDD;
	max-width:100%;	
}
.span_1_of_3  h3{
	color: #6C6C6C;
	margin-bottom:0.5em;
	font-size:1.2em;
	line-height: 1.2;
	font-family: 'Monda', sans-serif;
	font-weight : normal;
	margin-top: 0px;
	text-transform:uppercase;
}
.span_1_of_3  p  {
	font-size:0.8125em;
	padding:0.5em 0;
	color:#747474;
	line-height: 1.6em;
	font-family :Arial, Helvetica, sans-serif; 	
}
.year{
	float:left;
	width:15%;
}
.year p{
	color:#70389C;
	font-size:0.95em;
}
.span_1_of_3  p.history{
	float:left;
	width:85%;
	font-size:0.8125em;
	color:#747474;
	line-height: 1.6em;
} 
.span_1_of_3 .list li a{
	font-size:0.82em;
	padding:0.35em 1.2em;
	color:#602D8D;
	background: url(../images/drop_arrow-hover.png) no-repeat 0px 10px;
	display:block;
}
.span_1_of_3 .list li a:hover{	
	color:#747474;
}
/*** team ***/
.grid_1_of_5{
	display: block;
	float:left;
	margin: 1% 0 0% 1.6%;
}
.grid_1_of_5:first-child { 
	margin-left: 0; 
} 
.images_1_of_5 {
	width: 15.72%;
	padding: 1.5%; 
}
.images_1_of_5  img{
	max-width:100%;
	display:block;
}
.images_1_of_5  h3{
	color:#C94848;
	margin-top:0.2em;
	font-size:1em;
	font-family: 'Monda', sans-serif;
	font-weight : normal;
}
.images_1_of_5  p {
	font-size:0.8125em;
	padding:0.2em 0;
	color: #333;
	line-height: 1.6em;	
}
/*** End Team ***/
/* FAQ  ============================================================================= */
.questions{
	margin:20px 0 10px 0;
}
.questions h4{
	color:#70389C;
	font-size: 15px;
	margin-bottom:5px;
	font-weight: normal;
}
.questions p{
	color: #444;
	font-size: 13px;
	line-height: 1.8em;
	margin-bottom: 5px;
}

/*  Contact Form  ============================================================================= */
.support{
	padding:1.5%;
}
.support_desc{
	float:left;
	width:75%;
}
.support_desc h3{
	font-size:30px;
	color: #6C6C6C;
	padding:5px 0;
	font-family: 'Monda', sans-serif;
}
.support_desc p span{
	font-size:15px;
	color:#666;
}
.support_desc p{
	font-size:12px;
	color:#777;
	line-height:1.8em;
	padding:5px 0;
}
.support img{
	float:left;
	margin-left:4%;
	margin-top:0px;
}
.section {
	clear: both;
	padding: 0px;
	margin: 0px;
}
.group:before,
.group:after {
    content:"";
    display:table;
}
.group:after {
    clear:both;
}
.group {
    zoom:1;
}
.col{
	display: block;
	float:left;
	margin: 0% 0 1% 1.6%;
}
.col:first-child{
	margin-left:0;
}	
.span_2_of_3 {
	width: 63.1%;
	padding:1.5%; 
}
.span_1_of_3 {
	width: 29.2%;
	padding:1.5%; 
}
.span_2_of_3  h2,
.span_1_of_3  h2 {
	margin-bottom:0.5em;
	line-height: 1.2;
	font-family: 'Monda', sans-serif;
	font-weight : normal;
	margin-top: 0px;
}

/* ================================ CART ========================= */

.cartpage {
	border: 1px solid #ddd;
	overflow: hidden;
	padding: 10px;
}

.cartpage h2 {
	border-bottom: 1px solid #fff;
	text-align: center;
	font-size: 30px;
	margin-bottom: 20px;
	width: 141px;
	align-items: center;
	flex-wrap: wrap;
	width: 80%;
	padding:5px 0;
	margin: 0 auto;
	color: red;
	font-family: 'Monda', sans-serif;
	font-weight : bolder;
}
table.tblone{
	background: #fff;
}
.tblone {
	background: linear-gradient(top,  #34f423 0%,#e1dbdb 100%);
	/* border: 1px solid #fff; */
	margin-bottom: 12px;
	width: 100%;
}
.tblone th {
  background: #ffa92a none repeat scroll 0 0;
  color: #101210;
  font-size: 20px;
  padding: 5px 8px;
  text-align: center;
}
.tblone td{padding:10px;text-align:center;}

table.tblone tr:nth-child(2n+1){background:#fff;height:30px;}
table.tblone tr:nth-child(2n){background:#fdf0f1;height:30px;}
table.tblone input[type="number"] {
  border: 1px solid #ddd;
  padding: 2px;
  width: 60px;
}
table.tblone input[type="submit"] {
  background: #333 none repeat scroll 0 0;
  border: 1px solid #000;
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  padding: 1px 5px;
}
table.tblone a {
  color: #fe5800;
  font-weight: bold;
  text-decoration: none;
}
table.tblone a:hover{color: #000;}
table.tblone img {
  height: 20px;
  width: 30px;
}
.shopping {
  margin-top: 30px;
}
.shopleft, .shopleft {
  float: left;
  text-align: center;
  width: 610px;
}
.shopleft img{outline:none}
.shopleft a,.shopright a{outline:none}

.shopright img {
  width: 270px;
  outline:none
}
/*===============================================================*/
.contact-form{
	position:relative;
	padding-bottom:30px;
}
.contact-form div{
	padding:5px 0;
}
.contact-form span{
	display:block;
	font-size:0.8125em;
	color:#757575;
	padding-bottom:5px;
	font-family :verdana, arial, helvetica, helve, sans-serif;
}
.contact-form input[type="text"],.contact-form textarea{
		    padding:8px;
			display:block;
			width:98%;
			background:#fcfcfc;
			border: none;
			outline:none;
			color:#464646;
			font-size:0.8125em;
			font-family:Arial, Helvetica, sans-serif;
			box-shadow: inset 0px 0px 3px #999;
			-webkit-box-shadow: inset 0px 0px 3px #999;
			-moz-box-shadow: inset 0px 0px 3px #999;
			-o-box-shadow: inset 0px 0px 3px #999;
			/* -webkit-appearance:none; */
}
.contact-form textarea{
		resize:none;
		height:120px;		
}
.contact-form input[type="submit"]{
	padding:7px 25px;
	cursor:pointer;
	background:#FFF url(../images/large-button-overlay.png);
    font-family:Arial, Helvetica, sans-serif;
    position:absolute;
    right:0;
    border: 1px solid #ccc;
	color: #555 !important;
	font-size:1em;
	text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
}
.contact-form input[type="submit"]:hover{
	background-color: #EEE;
	border-color: #B8B5B5;
	color: #444 !important;
}
.contact-form input[type="submit"]:active{
	background-color:#FFF;  
}
.company_address p{
	font-size:0.8125em;
	color:#757575;
	padding:0.2em 0;
	font-family :Arial, Helvetica, sans-serif;
}
.company_address p span{
	text-decoration:underline;
	color:#444;
	cursor:pointer;
}
.map{
	border:1px solid #C7C7C7;
	margin-bottom:15px;
}
/**** Responsive Layout ****/
@media only screen and (max-width:1024px) {
	.wrap{
		width:90%;
		padding:0 2%;
	}
	.search_box form input[type="text"] {
		width: 143px;
    }
    .shopping_cart {
    	width:170px;
    }
    .shopping_cart,.currencies, .languages,.login{
    	margin-left:5px;
    }
    .wrapper-dropdown {
    	width:50px;
    	padding:0 0 0 5px;
    }
    .list_2_of_1 .button a {
    	padding:5px 10px;
    }
    .heading {
    	margin-right:2%;
    }
    .sort, .show {
    	width:20%;
    }
    .listview_1_of_2{
    	margin: 2.4% 0 0% 1.6%;
    }
    .images_1_of_4 .button{
    	width:100%;
    	margin-top:0.5em;
    }
    .register_account {
	width:60%;
	padding:10px;
}
.register_account form input[type="text"]{
	width:240px;
}
.register_account form select{
	width:260px;
}
.register_account form input[type="text"].code{
	width:15%;
}
.register_account form input[type="text"].number{
	width:63.99%;
}
.login_panel {
	width:30%;
	padding:10px;
}
.img_list li a{
	font-size:11px;
	margin:0 8px;
}
.domain_search input[type="text"]{
	background: url(../images/text_box_2.png) no-repeat;
	margin:0;
	width:51.6%;
}
.domain_search select {
	width:17.7%;
}
p.terms {
	padding:15px 0 0 15px;
	width:68%;
}
    .wrapper{
    	width:95%;
    }
    .available li {
    	padding:1.5% 0%;
    }
    .available li select {
    	margin-left:0;
    }
    .span_3_of_2 .button {
    	margin-top:5%;
    }
    .signup input[type="text"] {
    	width:152px;
    }
    .signup input[type="submit"] {
    	padding:8px 10px;
    }
    .images_1_of_5 p {
    	padding:0;
    	line-height:1.4em;
    }
    .year {
    	width:18%;
    }
    .span_1_of_3 p.history {
    	width:80%;
    }
    .support_desc {
		width: 70%;
	}	
	.support img {
	margin-left: 3%;
	}
}
@media only screen and (max-width:800px) {
	.wrap{
		width:90%;
		padding:0 2%;
	}
	.search_box form input[type="text"] {
		width: 183px;
    }
    .shopping_cart {
    	width:180px;
    }
    .shopping_cart{
    	margin-left:5px;
    }
    .wrapper-dropdown{
    	margin-left:5px;
    	margin-top:5px;
    	width:55px;
    }  
    .login{
    	margin-left:5px;
    	margin-top:5px;
    }
    .list_2_of_1 .button a {
    	padding:5px 10px;
    }
    .heading {
    	margin-right:0%;
    }
    .sort, .show {
    	width:24%;
    }
    .header_bottom_left,.header_bottom_right_images{
    	float:inherit;
    	width:100%;
    }
    .header_bottom_right_images {
    	margin-left:0;
    }
    .listview_1_of_2{
    	margin: 1.4% 0 0% 1.6%;
    }
    .images_1_of_4 .button{
    	width:100%;
    	margin-top:0.5em;
    }
    .content_top {
    	padding:15px 5px;
    }
    .images_1_of_4 h2 {
    	font-size:0.8em;
    	letter-spacing:0;
    }
    .images_1_of_4 p span.strike,.images_1_of_4 p span.price {
    	font-size:18px;
    }
    .wrapper{
    	width:95%;
    }
    .span_1_of_4 h4 {
    	font-size:1em;
    	letter-spacing:0;
    }
    .social-icons li {
    	padding:0 0 0 4px;
    }
    .span_1_of_2{
    	float:inherit;
    	width:97%;
    	padding:1.5%;
    }
    .span_3_of_1{
    	float:inherit;
    	width:97%;
     }
     .rightsidebar {
     	margin-left:0;
     }
     .span_3_of_1 li a {
     	font-size:1em;
     	padding: 0.42em 3%;
     	background: url(../images/drop_arrow.png) no-repeat 5px 15px;
     }
     .span_3_of_1 li a:hover {
		background: url(../images/drop_arrow-hover.png) no-repeat 5px 15px;
	 }
    .available li {
    	padding:1.5% 1%;
    }
    .available li select {
    	margin-left:0;
    }
    .span_3_of_2 .button {
    	margin-top:5%;
    }
    .signup input[type="text"] {
    	width:80%;
    }
    .signup input[type="submit"] {
    	padding:8px 10px;
    	width:18.5%;
    }
    .span_1_of_4 li span {
    	font-size:1em;
    }
    .images_1_of_5 p {
    	padding:0;
    	line-height:1.4em;
    }
    .year {
    	width:8%;
    }
    .images_1_of_5 h3 {
    	font-size:0.8em;
    }
    .span_1_of_3 p.history {
    	width:92%;
    }
    .span_2_of_3 {
		width:96%;
		padding:2% 0; 
	}
	.col_1_of_3{ 
		margin:0% 0 0% 0%;
	}
	.span_1_of_3 {
		width:96%;
		padding:2% 0; 
	}
	.support_desc {
		width: 70%;
	}
	.support img {
		width: 25%;
	margin-left: 3%;
	}
	.register_account {
	width:60%;
	padding:10px;
}
.register_account form input[type="text"]{
	width:200px;
}
.register_account form select{
	width:220px;
}
.register_account form input[type="text"].code{
	width:15%;
}
.register_account form input[type="text"].number{
	width:60.8%;
}
.login_panel {
	width:30%;
	padding:10px;
}
.img_list li a{
	font-size:11px;
	margin:0 8px;
}
.domain_search input[type="text"]{
	background: url(../images/text_box_2.png) no-repeat;
	margin:0;
	width:51.6%;
}
.domain_search select {
	width:17.7%;
}
p.terms {
	padding:12px 0 10px 15px;
	width:58%;
}
.tld-box{
	margin-left:2%;
}
.rfloat {
	width:70%;
}
.check_domain input[type="text"] {
	background: url(../images/text_box_reg2.png) no-repeat;
	width:80%;
}
.support_desc h3, .plans h3, .domain_registration h3 {
	font-size:25px;
}
.support_desc {
	width:70%;
}
.support img{
	margin-left:3%;
}
.features_list-1{
	float:left;
	width:48%;
}
.features_list-2{
	float:left;
	width:48%;
}
.features_list-3{
	display:none;
}
.plans_table thead th.plans-list h3 {
	font-size:15px;
}
.plans_table thead th.plans-list h4{
	font-size:18px;
}
.plans_table tbody td {
	padding:5px;
}
.feedback form input[type="text"].number{
	width:70%;
}
.feedback form select {
	width:100%;
}
.register_account,.login_panel {
	float:inherit;
	width:96%;
	padding:10px;
}
.login_panel {
	margin:0 0 3% 0;
}
.login_panel form {
	margin:0;
}
.register_account form input[type="text"]{
	width:300px;
}
.register_account form select{
	width:320px;
}
.register_account form input[type="text"].code{
	width:15%;
}
.register_account form input[type="text"].number{
	width:68%;
}
.login_panel input[type="text"], .login_panel input[type="password"] {
	width: 95%;
}

}
	
@media only screen and (max-width: 640px) {	
	.wrap{
		width:90%;
	}	
/*** Header ****/
	.logo{
		float:inherit;
		width:100%;
		text-align:center;
	}
	.header_top_right {
		float:inherit;
		width:100%;
		margin-top:20px;
	}
	.search_box {
		float:inherit;
		width:100%;
	}
	.search_box form input[type="text"] {
		width:78.5%;
    }
    .search_box form input[type="submit"] {
    	width:18.5%;
    }
    .shopping_cart {
    	width:16.5%;
    }
    .shopping_cart{
    	width:65.66%;
    	margin-left:0px;
    	margin-top:8px;
    }
     .wrapper-dropdown{
    	margin-left:5px;
    	margin-top:8px;
    	width:55px;
    } 
    .login{
    	margin-left:5px;
    	margin-top:8px;
    }
    .list_2_of_1 .button a {
    	padding:5px 10px;
    }
    .text {
		text-align:center;
		float:inherit;
		margin:2% 0 0% 0%;
	}
    /* Content */
     .content_top {
    	padding:15px 10px;
    }
    .heading {
    	margin-right:0%;
    	width:100%;
    }
    .sort{
    	width:31%;
    	margin-left:0;
    	padding-top:10px;
    }
     .show {
    	width:23%;
    	padding-top:10px;
    }
    .sort select, .show select {
    	font-size:1em;
    }
    .page-no {
    	padding-top:10px;
    }
    .page-no li a {
    	padding:5px 3px;
    }
    .header_bottom_left,.header_bottom_right_images{
    	float:inherit;
    	width:100%;
    }
    .header_bottom_right_images {
    	margin-left:0;
    }
    .listview_1_of_2{
    	margin: 1.4% 0 0% 1.6%;
    }
    .images_1_of_4 .button{
    	width:100%;
    	margin-top:0.5em;
    }
    .images_1_of_4 h2 {
    	font-size:1.2em;
    	letter-spacing:0;
    }
    .images_1_of_4 p span.strike,.images_1_of_4 p span.price {
    	font-size:2em;
    }
    .wrapper{
    	width:95%;
    }
    .span_1_of_4 h4 {
    	font-size: .8em;
		letter-spacing: 0;
		padding-top: 5px;
    }
    .social-icons li {
    	padding:0 0 0 8px;
    }
    .span_1_of_2{
    	float:inherit;
    	width:97%;
    	padding:1.5%;
    }
    .span_3_of_1{
    	float:inherit;
    	width:97%;
     }
     .rightsidebar {
     	margin-left:0;
     }
     .span_3_of_1 li a {
     	font-size:1em;
     	padding: 0.42em 3%;
     	background: url(../images/drop_arrow.png) no-repeat 5px 15px;
     }
     .span_3_of_1 li a:hover {
		background: url(../images/drop_arrow-hover.png) no-repeat 5px 15px;
	 }
    .available li {
    	padding:1.5% 1%;
    }
    .available li select {
    	margin-left:0;
    }
    .span_3_of_2 .button {
    	margin-top:5%;
    }
    .signup input[type="text"] {
    	width:79.5%;
    }
    .signup input[type="submit"] {
    	padding:8px 10px;
    	width:18.5%;
    }
    .span_1_of_4 li span {
    	font-size:1em;
    }
    .span_2_of_3 {
		width:96%;
		padding:2% 0; 
	}
	.col_1_of_3{ 
		margin:0% 0 0% 0%;
	}
	.span_1_of_3 {
		width:96%;
		padding:2% 0; 
	}
	.grid_1_of_4{ 
		margin: 2% 0 2% 0%;
	}	
	.images_1_of_4 {
		width:94%;
		padding:3%;
	}
  /** contact-form **/
 	.span_2_of_3 {
		width:100%;
		padding:3% 0; 
	}
	.col{ 
		margin: 0% 0 0% 0%;
	}
	.span_1_of_3 {
		width:100%;
		padding:3% 0; 
	}
   
   .contact-form input[type="text"],.contact-form textarea{
		width:97%;
	}
	/** End contact-form **/
	/*** Login ***/
	.register_account form input[type="text"]{
	width:235px;
}
.register_account form select{
	width:255px;
}
.register_account form input[type="text"].code{
	width:10%;
}
.register_account form input[type="text"].number{
	width:68.5%;
}
.register_account,.login_panel {
	float:inherit;
	width:96%;
	padding:10px;
}
.login_panel {
	margin:0 0 3% 0;
}
.login_panel button{
	font-size:15px;
}
		
  /*** Preview ***/
 .grid {
		margin:0;
	}
	.cont-desc{ 
		margin: 2% 0 2% 0%;
	}
	.rightsidebar{
		margin:0;
	}
	.image{
		padding:3%;
	}
	.desc{
		margin:0;
	}
	.span_1_of_2 {
		width:94%;
		padding:3%;
	}
	.span_3_of_2 {
		width: 100%;
	}
	.images_3_of_2{
		width: 100%;
	}
	.span_3_of_1 {
		width:94%;
		padding:3%;
	}
/*** About ***/
.grid_1_of_5{ 
		margin: 0% 0 0% 0%;
	}	
	.images_1_of_5{
		width:94%;
		padding:3%;
	}
	 .images_1_of_5 p {
    	padding:0;
    	line-height:1.4em;
    }
    .year {
    	width:8%;
    }
    .images_1_of_5 h3 {
    	font-size:1.2em;
    }
    .span_1_of_3 p.history {
    	width:92%;
    }
}
@media only screen and (max-width: 480px) {	
	.wrap{
		width:90%;
	}	
/*** Header ****/
	.logo{
		float:inherit;
		width:100%;
		text-align:center;
	}
	.header_top_right {
		float:inherit;
		width:100%;
		margin-top:20px;
	}
	.search_box {
		float:inherit;
		width:100%;
	}
	.search_box form input[type="text"] {
		width:77.5%;
    }
    .search_box form input[type="submit"] {
    	width:18.5%;
    }
    .shopping_cart {
    	width:16.5%;
    }
    .shopping_cart{
    	width:55.55%;
    	margin-left:0px;
    	margin-top:8px;
    }
    .wrapper-dropdown{
    	margin-left:5px;
    	margin-top:8px;
    	width:55px;
    }
   .login{
    	margin-left:5px;
    	margin-top:8px;
    }
    .list_2_of_1 .button a {
    	padding:5px 10px;
    }
    .listview_1_of_2{ 
		margin: 0% 0 0% 0%;
	}
	
	.images_1_of_2 {
		width:92%;
		padding:4%;
	}
	.listimg_2_of_1{
	     width:100%;		
   }
	.list_2_of_1 {
		width: 100%;
	}
    /* Content */
     .content_top {
    	padding:15px 10px;
    }
    .heading {
    	margin-right:0%;
    	width:100%;
    }
    .sort{
    	width:25%;
    	margin-left:0;
    	padding-top:10px;
    }
     .show {
    	width:21%;
    	padding-top:10px;
    }
    .sort select, .show select {
    	font-size:1em;
    }
    .page-no {
    	padding-top:25px;
    }
    .page-no li a {
    	padding:5px 3px;
    }
    .header_bottom_left,.header_bottom_right_images{
    	float:inherit;
    	width:100%;
    }
    .header_bottom_right_images {
    	margin-left:0;
    }
    .listview_1_of_2{
    	margin:2% 0 0% 0%;
    }
    .images_1_of_4 .button{
    	width:100%;
    	margin-top:0.5em;
    }
    .images_1_of_4 h2 {
    	font-size:1.2em;
    	letter-spacing:0;
    }
    .images_1_of_4 p span.strike,.images_1_of_4 p span.price {
    	font-size:2em;
    }
   /*** Footer ***/
    .wrapper{
    	width:90%;
    }
    .col_1_of_4{ 
		margin: 1% 0 1% 0%;
	}
	.span_1_of_4 {
		width:95%;
		padding:0 2.5%;
		border:none; 
	}
    .span_1_of_4 h4 {
    	font-size:1em;
		letter-spacing: 0;
		padding-top: 5px;
    }
    .social-icons{
    	padding-top:3%;
    }
    
  /*** preview ***/
 .back-links {
 	width:100%;
 }
    .social-icons li {
    	padding:0 0 0 8px;
    }
    .span_1_of_2{
    	float:inherit;
    	width:97%;
    	padding:1.5%;
    }
    .span_3_of_1{
    	float:inherit;
    	width:97%;
     }
     .rightsidebar {
     	margin-left:0;
     }
     .span_3_of_1 li a {
     	font-size:1em;
     	padding: 0.42em 5%;
     	background: url(../images/drop_arrow.png) no-repeat 5px 15px;
     }
     .span_3_of_1 li a:hover {
		background: url(../images/drop_arrow-hover.png) no-repeat 5px 15px;
	 }
    .available li {
    	padding:1.5% 1%;
    }
    .available li select {
    	margin-left:0;
    }
    .span_3_of_2 .button {
    	margin-top:1%;
    }
    .signup input[type="text"] {
    	width:78.5%;
    }
    .signup input[type="submit"] {
    	padding:8px 10px;
    	width:18.88%;
    }
    .span_1_of_4 li span {
    	font-size:1em;
    }
    .span_2_of_3 {
		width:96%;
		padding:2% 0; 
	}
	.col_1_of_3{ 
		margin:0% 0 0% 0%;
	}
	.span_1_of_3 {
		width:96%;
		padding:2% 0; 
	}
	.grid_1_of_4{ 
		margin: 2% 0 2% 0%;
	}	
	.images_1_of_4 {
		width:94%;
		padding:3%;
	}
  /** contact-form **/
 	.span_2_of_3 {
		width:95%;
		padding:2.5%; 
	}
	.col { 
		margin: 0% 0 0% 0%;
	}
	.span_1_of_3 {
		width:95%;
		padding:2.5%; 
	}
	.contact-form input[type="text"],.contact-form textarea{
		width:92%;
	}
	/** End contact-form **/
		/*** Login ***/
 .register_account table{
 	width:100%;
 }
 .register_account table td {
 	display:block;
 }
 .register_account form input[type="text"]{
	width:95%;
}
.register_account form select{
	width:100%;
}
.register_account form input[type="text"].code{
	width:10%;
}
.register_account form input[type="text"].number{
	width:76.5%;
}
.register_account,.login_panel {
	float:inherit;
	width:96%;
	padding:10px;
}
.login_panel {
	margin:0 0 3% 0;
}
.login_panel button{
	font-size:15px;
}
		
  /*** Preview ***/
 .grid {
		margin:0;
	}
	.cont-desc{ 
		margin: 2% 0 2% 0%;
	}
	.rightsidebar{
		margin:0;
	}
	.image{
		padding:3%;
	}
	.desc{
		margin:0;
	}
	.span_1_of_2 {
		width:94%;
		padding:3%;
	}
	.span_3_of_2 {
		width: 100%;
	}
	.images_3_of_2{
		width: 100%;
	}
	.span_3_of_1 {
		width:94%;
		padding:3%;
	}
/*** About ***/
.grid_1_of_5{ 
		margin: 0% 0 0% 0%;
	}	
	.images_1_of_5{
		width:94%;
		padding:3%;
	}
	 .images_1_of_5 p {
    	padding:0;
    	line-height:1.4em;
    }
    .year {
    	width:12%;
    }
    .images_1_of_5 h3 {
    	font-size:1.2em;
    }
    .span_1_of_3 p.history {
    	width:88%;
    }
    	.col_1_of_3{ 
		margin: 0% 0 0% 0%;
	}
	.span_1_of_3 {
		width:95%;
		padding:2.5%;
	}
.grid_1_of_4{ 
		margin:0% 0 0% 0%;
	}	
	.images_1_of_4 {
		width:95%;
		padding:2.5%;
	}
}
/*  GO FULL WIDTH AT LESS THAN 480 PIXELS */
@media only screen and (max-width: 480px) {
	.cont-desc{ 
		margin: 2% 0 2% 0%;
	}
	.rightsidebar{
		margin:0;
	}
	.grid {
		margin:0;
	}
	.image{
		padding:4%;
	}
	.desc{
		margin:0;
	}
	.span_1_of_2 {
		width:92%;
		padding:4%;
	}
	.span_3_of_2 {
		width: 100%;
	}
	.images_3_of_2{
		width: 100%;
	}
	.span_3_of_1 {
		width:92%;
		padding:4%;
	}
	  .grid_1_of_5{ 
		margin: 0% 0 0% 0%;
	}	
	.images_1_of_5{
		width:92%;
		padding:4%;
	}
}

/* lk.php */

.lk-wrapper {
    display: flex;
    gap: 20px;
}

.pk-wrapper {
    display: flex;
    gap: 20px;
}

/* === Sidebar ============== */
.lk-sidebar {
    width: 220px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.pk-sidebar {
    width: 220px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.filter-block {
    background: #fff;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.filter-block h2 {
    margin-bottom: 8px;
    font-size: 16px;
}

/* Checkbox item */
.filter-block label {
    display: block;
    margin: 5px 0;
    cursor: pointer;
}

/* === Products =============== */
.lk-products {
    flex: 1;
}

.pk-products {
    flex: 1;
}

/*  new css  */
.payment{
	height:20%;
	max-width:30%;
	padding-left:80%;
	position:relative;
}

.buysubmit {
    background: #ff6400 url(../images/large-button-overlay.png) repeat scroll 0 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    color: #fff;
    font-family: Arial,"Helvetica Neue","Helvetica",Tahoma,Verdana,sans-serif;
    font-size: 0.8em;
    padding: 7px 15px;
    text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    outline: none;
}


/* Ghi đè CSS của mega menu để khớp với header */
#dc_mega-menu-orange.dc_mm-orange {
  width: 95% !important;
  margin: 0 auto !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  background: #fff !important;
  border: none !important;
  box-sizing: border-box;
}

/* Xóa padding mặc định có thể khiến menu lệch */
#dc_mega-menu-orange.dc_mm-orange li {
  display: inline-block !important;
  margin: 0 15px !important;
  padding: 0 !important;
}

/* Style link menu */
#dc_mega-menu-orange.dc_mm-orange li a {
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
  color: #000;
  padding: 8px 12px;
  border-radius: 5px;
  transition: background 0.3s;
}

#dc_mega-menu-orange.dc_mm-orange li a:hover {
  background: #9bcaef;
  color: #140d0d;
}

