@import url('https://fonts.googleapis.com/css?family=Raleway:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
@import url('https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,900i');

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    background: transparent;
    border: 0;
    font-size: 100%;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
}
body {
    line-height: 1;
	border-top:5px solid #fbd720 !important;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
ol, ul {
    list-style: none;
}
h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
    font-weight: normal;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
:focus {
    outline: 0;
}
a {
    text-decoration: none;
}
ins {
    text-decoration: none;
}
mark {
    font-style: italic;
    font-weight: bold;
}

.line{
    margin-top: 20px;
    margin-bottom: 40px;
    border: 0;
    border-top: 1px solid #eee;
}

del {
    text-decoration: line-through;
}
abbr[title], dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
caption, th, td {
    font-weight: normal;
    text-align: left;
}
hr {
    border: 0;
    border-top: 1px solid #ccc;
    display: block;
    height: 1px;
    margin: 1em 0;
    padding: 0;
}
input, select {
    vertical-align: middle;
}

/* Checkbox Fancy CSS Start */

@-moz-keyframes 
dothabottomcheck {  0% {
 height: 0;
}
 100% {
 height: 6px;
}
}
@-webkit-keyframes 
dothabottomcheck {  0% {
 height: 0;
}
 100% {
 height: 6px;
}
}
@keyframes 
dothabottomcheck {  0% {
 height: 0;
}
 100% {
 height: 6px;
}
}
@keyframes 
dothatopcheck {  0% {
 height: 0;
}
 50% {
 height: 0;
}
 100% {
 height: 17px;
}
}
@-webkit-keyframes 
dothatopcheck {  0% {
 height: 0;
}
 50% {
 height: 0;
}
 100% {
 height: 17px;
}
}
@-moz-keyframes 
dothatopcheck {  0% {
 height: 0;
}
 50% {
 height: 0;
}
 100% {
 height: 17px;
}
}

input[type=checkbox] { display: none; }

.check-box {
    height: 15px;
    width: 15px;
    background: #fff;
    border: 2px solid #656565;
    border-radius: 3px;
    position: relative;
    display: inline-block;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-transition: border-color ease 0.2s;
    -o-transition: border-color ease 0.2s;
    -webkit-transition: border-color ease 0.2s;
    transition: border-color ease 0.2s;
    cursor: pointer;
    margin: 0px 4px -2px 0;
}

.check-box::before,
.check-box::after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  height: 0;
  width: 2px;
  background-color: #eb268f;
  display: inline-block;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  -o-transform-origin: left top;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  border-radius: 5px;
  content: ' ';
  -webkit-transition: opacity ease .5;
  -moz-transition: opacity ease .5;
  transition: opacity ease .5;
}

.check-box::before {
    top: 11px;
    left: 6px;
 /* box-shadow: 0 0 0 5px #667788;*/
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.check-box::after {
	top: 6px;
    left: 1px;
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

input[type=checkbox]:checked + .check-box,
.check-box.checked { border-color: #eb268f; }

input[type=checkbox]:checked + .check-box::after,
.check-box.checked::after {
  height: 20px;
  -moz-animation: dothabottomcheck 0.2s ease 0s forwards;
  -o-animation: dothabottomcheck 0.2s ease 0s forwards;
  -webkit-animation: dothabottomcheck 0.2s ease 0s forwards;
  animation: dothabottomcheck 0.2s ease 0s forwards;
}

input[type=checkbox]:checked + .check-box::before,
.check-box.checked::before {
  height: 50px;
  -moz-animation: dothatopcheck 0.4s ease 0s forwards;
  -o-animation: dothatopcheck 0.4s ease 0s forwards;
  -webkit-animation: dothatopcheck 0.4s ease 0s forwards;
  animation: dothatopcheck 0.4s ease 0s forwards;
}

/* Checkbox Fancy CSS End */

/* Radiobutton Fancy CSS Start */

/*@-moz-keyframes 
dothabottomcheck {  0% {
 height: 0;
}
 100% {
 height: 6px;
}
}
@-webkit-keyframes 
dothabottomcheck {  0% {
 height: 0;
}
 100% {
 height: 6px;
}
}
@keyframes 
dothabottomcheck {  0% {
 height: 0;
}
 100% {
 height: 6px;
}
}
@keyframes 
dothatopcheck {  0% {
 height: 0;
}
 50% {
 height: 0;
}
 100% {
 height: 17px;
}
}
@-webkit-keyframes 
dothatopcheck {  0% {
 height: 0;
}
 50% {
 height: 0;
}
 100% {
 height: 17px;
}
}
@-moz-keyframes 
dothatopcheck {  0% {
 height: 0;
}
 50% {
 height: 0;
}
 100% {
 height: 17px;
}
}

input[type=radio] { display: none; }

.radio-box {
    height: 17px;
    width: 17px;
    background: #fff;
    border: 2px solid #535353;
    border-radius: 100%;
    position: relative;
    display: inline-block;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-transition: border-color ease 0.2s;
    -o-transition: border-color ease 0.2s;
    -webkit-transition: border-color ease 0.2s;
    transition: border-color ease 0.2s;
    cursor: pointer;
    margin: 0px 8px -2px 0;
}

.radio-box::before,
.radio-box::after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  height: 0;
  width: 2px;
  background-color: #eb268f;
  display: inline-block;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  -o-transform-origin: left top;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  border-radius: 5px;
  content: ' ';
  -webkit-transition: opacity ease .5;
  -moz-transition: opacity ease .5;
  transition: opacity ease .5;
}

.radio-box::before {
    top: 11px;
    left: 6px;
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.radio-box::after {
	top: 6px;
    left: 1px;
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

input[type=radio]:checked + .radio-box,
.radio-box.checked { border-color: #eb268f; }

input[type=radio]:checked + .radio-box::after,
.radio-box.checked::after {
  height: 20px;
  -moz-animation: dothabottomcheck 0.2s ease 0s forwards;
  -o-animation: dothabottomcheck 0.2s ease 0s forwards;
  -webkit-animation: dothabottomcheck 0.2s ease 0s forwards;
  animation: dothabottomcheck 0.2s ease 0s forwards;
}

input[type=radio]:checked + .radio-box::before,
.radio-box.checked::before {
  height: 50px;
  -moz-animation: dothatopcheck 0.4s ease 0s forwards;
  -o-animation: dothatopcheck 0.4s ease 0s forwards;
  -webkit-animation: dothatopcheck 0.4s ease 0s forwards;
  animation: dothatopcheck 0.4s ease 0s forwards;
}
*/
/* Radiobutton Fancy CSS End */

/*New Radio Css Start */
input[type=radio]{
  position: absolute;
  visibility: hidden;
}
ul li label{
    display: block;
    position: relative;
    font-weight: 300;
    font-size: 1.35em;
    padding: 0 0 0 40px;
    margin: 0px auto;
    height: 27px;
    z-index: 9;
    cursor: pointer;
    -webkit-transition: all 0.25s linear;
}
ul li:hover label{
	color: #eb268f;
}
ul li .check{
	display: block;
    position: absolute;
    border: 2px solid #ccc;
    border-radius: 100%;
    height: 16px;
    width: 16px;
    top: 3px;
    left: 10px;
    z-index: 5;
    transition: border .25s linear;
    -webkit-transition: border .25s linear;
}

ul li:hover .check {
  border: 2px solid #eb268f;
}
ul li .check::before {
	display: block;
    position: absolute;
    content: '';
    border-radius: 100%;
    height: 8px;
    width: 8px;
    top: 2px;
    left: 2px;
    margin: auto;
    transition: background 0.25s linear;
    -webkit-transition: background 0.25s linear;
}
input[type=radio]:checked ~ .check {
	border: 2px solid #eb268f;
}
input[type=radio]:checked ~ .check::before{
  background: #eb268f;
}
input[type=radio]:checked ~ label{
  color: #eb268f;
}
/*New Radio Css End */

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    line-height: 20px;
    color: inherit;
}
p{
	color:#1c1c1c;
	font-size:16px;
    line-height: 22px;
}
.clearfix{
	clear:both;
}
.scrollup {
    width: 40px;
    height: 40px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none;
    text-indent: -9999px;
    background: url(../images/arrow_up.png) no-repeat;
    z-index: 99;
}
.wrapper{
width:94%;
margin:0 auto;
}


header .logo{
    width: 20%;
    float: left;
    margin: 12px 0;
}
header .header-right{
    width: 80%;
    float: right;
    text-align: right;
}
.header-right .account-box{
    width: 100%;
    text-align: right;
    margin: 10px 0 35px 0;
}
.header-right .account-box ul li{
	display:inline-block;
	list-style:none;
	border-right:1px solid #ededed;
	padding:0 10px;
}
.header-right .account-box ul li:last-child{
	border-right:0;
}
.header-right .account-box ul li a{
	font-size:14px;
	font-weight:600;
	color:#737373;
	font-family: 'Raleway', sans-serif;
}
.header-right .account-box ul li img{
    margin: 0 10px 0 0;
}


.help-box h4{
    color: #fd299a;
    font-size: 20px;
    font-family: 'Lato', sans-serif;
	margin-top:0px;
    margin-bottom: 12px;
}
.help-box h4 span{
	color:#414141;
	font-family:Arial, Helvetica, sans-serif;
}
.search-box input[type="text"]{
    float: left;
    padding: 8px;
    min-width: 250px;
    border: 1px solid #a6a6a6;
    font-size: 14px;
    line-height: 18px;
}
.search-box input[type="submit"]{
    background: url(../images/searchbtn.jpg) no-repeat #707070 -5px -4px;
    border: 0;
    height: 36px;
    width: 50px;
    text-indent: -9999px;
	float: left;
}
.search-cart{
    margin-bottom: 20px;
}
.search-cart .search-box{
    float: right;
    margin: 0 0 0 20px;
}
.search-cart .cart-box{
	float: right;
    min-width: 194px;
    text-align: left;
	cursor:pointer;
}
.search-cart .cart-box img{
    float: left;
    margin-right: 10px;
}
.search-cart .cart-box h5{
	font-size: 16px;
    color: #494949;
    font-weight: 600;
    margin: 0;
}
.search-cart .cart-box p{
    font-size: 13px;
    color: #666666;
    font-family: lato;
    line-height: 16px;
}
.search-cart .cart-box .cart-small-box{
    position: absolute;
    background: #fff;
    z-index: 99;
    padding: 0;
    border: 1px solid #adadad;
    max-width: 250px;
    margin-left: -30px;
    border-radius: 2px;
}
.search-cart .cart-box .cart-small-box .cart-top-box{
    padding: 25px 15px 15px 15px ;
    margin: 0;
}
.cart-details-left{
	float: left;
    width: 55px;
}
.cart-details-left img{
width:100%;
}
.cart-details-right{
	float: left;
}
.cart-details-right h4{
    font-size: 15px;
    font-weight: bold;
    margin: 6px 0 8px 0;
    color: #000;
		    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.cart-details-right p .fa{
	    margin: 0 2px 0 5px;
}
.search-cart .cart-box .cart-small-box .cart-buttons{
    padding: 20px 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: -26px;
}
.search-cart .cart-box .cart-small-box .cart-buttons a{
    background: #000;
    color: #fff;
    padding: 8px 15px;
    text-decoration: none;
    margin: 0;
	    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
ul.cart-top-box li{
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin: 0 0 10px 0;
    padding: 0 0 8px 0;
}
ul.cart-top-box li:hover .cart-details-right h4{
color:#fd299a;
}
ul.cart-top-box li:last-child{
    margin: 0;
    padding: 0;
    border: 0;
}
.search-cart .cart-box .cart-small-box .cart-buttons a:hover{
background:#eb268f;
}
.search-cart .cart-box .cart-small-box{
display:none;
}
.search-cart .cart-box:hover .cart-small-box{
display:block;
}
.triangle-up {
	width: 0;
    height: 0;
    border-left: 7px solid rgba(20, 20, 20, 0);
    border-right: 7px solid transparent;
    border-bottom: 10px solid #707070;
    margin: -10px auto;
}


.navigation{
background:#eb268f;
}

.slider-box{
border-bottom:1px solid #eb268f;
margin-bottom:40px;
}

.welcome-area h1{
    font-size: 40px;
    color: #252525;
    margin-bottom: 15px;
    line-height: 40px;
}
.welcome-area p{
    font-size: 15px;
    color: #514d4d;
    margin-bottom: 25px;
    line-height: 24px;
}
.product-box{
    width: 100%;
    padding: 0 0 50px 0;
}
.product-box-title{
    background: #f2f2f2;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 10px;
}
.product-box-title h2{
font-size:20px;
color:#3e3838;
}
.product-box-list .product-listing{
    width: 23%;
    float: left;
    margin: 1%;
    border: 1px solid #dcd8d8;
	text-align:center;
	background:#ffffff;
	-webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.product-box-list .product-listing:hover{
	border: 1px solid #fcc832;
	box-shadow: 0 0 10px #f2f2f2;
	box-shadow: 0px 8px 13px rgba(0, 0, 0, 0.15)
}
.product-listing-content{
    padding: 10px 15px 0;
}
.product-listing-content a{
    font-size: 17px;
    font-weight: 600;
    color: #454242;
    margin: 10px 0 15px;
	-webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.product-box-list .product-listing:hover .product-listing-content a{
color:#f0b711;
}
.product-listing-content p{
    font-size: 14px;
    color: #454242;
    margin: 10px 0 18px;
}
.product-listing-content h4{
	font-size: 20px;
    font-weight: 600;
    color: #ec2b92;
    margin-bottom: 25px;
}
.product-listing-bottom{
	border-top: 1px solid #dcd8d8;
    padding: 10px 0;
}
.product-box-list .product-listing:hover .product-listing-bottom{
	border-top: 1px solid #fcc832;
}
a.cartbg .fa{
background: #8b8984;
color: #fff;
}
.product-listing-bottom .fa{
    background: #f2f2f2;
    padding: 10px;
    border-radius: 100%;
    font-size: 16px;
    color: #b6b6b6;
    margin: 0 4px;
	-webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.product-listing-bottom .fa:hover{
	background: #eb268f;
	color:#fff;
}

footer{
background:#252526;
border-top:6px solid #3c3c3e;
padding:35px 0;
}
.footer-left{
    width: 70%;
    float: left;
}
.footer-left .footer-inner{
    width: 33.33%;
    float: left;
    border-right: 1px solid #38383a;
    padding: 10px 25px;
}
.footer-left .footer-inner:last-child{
border-right:none;
}
.footer-left .footer-inner h3{
    color: #fff;
    font-size: 22px;
    margin: 0 0 22px;
}
.footer-left .footer-inner ul li{
    margin-bottom: 0;
    background: url(../images/arrow-right.jpg) no-repeat 0px 10px;
    padding-left: 22px;
}
.footer-left .footer-inner ul li a{
    display: block;
    color: #a8a8a8;
    font-size: 14px;
    padding: 5px 0;
	-webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.footer-left .footer-inner ul li a:hover{
	color:#fff;
	text-decoration:none;
	margin-left:5px;
}

.footer-right{
    width: 30%;
    float: right;
    border-left: 1px solid #38383a;
    padding: 0 20px;
	color:#a8a8a8;
}
.footer-right h3{
    color: #fff;
    font-size: 22px;
    margin: 0 0 22px;
}
.footer-right ul li{
border-bottom: 1px solid #38383a;
padding:12px 0 10px;
}
.footer-right ul li:last-child{
border-bottom: 0px;
}
.footer-right ul li .fa{
	font-size: 22px;
    float: left;
    width: 30px;
    text-align: left;
	-webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.footer-right ul li:hover .fa{
	color:#fff;
}
.footer-right ul li p{
    color: #a8a8a8;
    font-size: 15px;
    margin: 0 0px 0px 30px;
}
.footer-right ul li p a{
	color: #a8a8a8;
}
.footer-right ul li.social-icons a{
margin:0 5px;
border-right: 1px solid #38383a;
float:left;
} 
.footer-right ul li.social-icons a .fa{
color: #a8a8a8;
}
.footer-right ul li.social-icons a:last-child{
border-right: 0px;
} 

.footer-right ul li.social-icons a .fa-facebook:hover{
	color:#4e71a8;
}
.footer-right ul li.social-icons a .fa-twitter:hover{
	color:#1cb7eb;
}
.footer-right ul li.social-icons a .fa-google-plus:hover{
	color:#e3411f;
}
.footer-bottom{
background:#1e1e1f;
padding:18px 0 12px;
text-align:center;
border-top:1px solid #323234;
}
.footer-bottom p{
color:#676767;
font-size:14px;
}

/* Listing page css start */

.breadcrum-box{
    background-size: cover;
    width: 100%;
    padding: 50px 0 45px;
	text-align:center;
}
.parallax-window {
    min-height: 150px;
    background: rgba(0, 0, 0, 0.5);
}
.breadcrum-box h1 {
    color: #ffffff;
    font-size: 28px;
    display: inline;
    margin-bottom: 10px;
	font-family: 'Raleway', sans-serif;
}
.breadcrum-box ul {
    margin: 10px auto 0;
}
.breadcrum-box ul li {
	display:inline-block;
    color: #fff;
    margin: 0px 5px;
    font-size: 13px;
}
.breadcrum-box ul li a {
    color: #fff;
    font-size: 13px;
}
.listing-box .shop-option{
    width: 98%;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
    min-height: 50px;
    margin: 0 1% 20px 1%;
    padding: 10px 20px;
    border-radius: 3px;
    background: #fff;
}
.shop-option .showing{
	float:left;
}
.shop-option .showing p{
    font-size: 15px;
	font-family: 'Lato', sans-serif;
    margin: 0;
    line-height: 30px;
    color: #7b858f;
}
.shop-option .short-by{
float:right;
}
.shop-option .short-by span{
	float:left;
    font-size: 15px;
	font-family: 'Lato', sans-serif;
    margin: 0 10px 0 0;
    line-height: 30px;
    color: #7b858f;
}
.shop-option .short-by select{
	float:left;
    font-size: 15px;
	font-family: 'Lato', sans-serif;
    margin: 0;
    line-height: 30px;
    color: #7b858f;
	padding: 4px;
}
.product-page{
background-image: url(../images/pattern1.png);
padding:30px 0;
}

.product-page-list{
	position:relative;
    width: 23%;
    float: left;
    margin: 1%;
    border: 1px solid #c7c7c7;
	text-align:center;
	background:#ffffff;
	-webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.product-page-list:hover{
	border: 1px solid #fcc832;
	box-shadow: 0 0 10px #f2f2f2;
	box-shadow: 0px 8px 13px rgba(0, 0, 0, 0.15)
}
.product-page-list-content {
    padding: 10px 15px 0;
}
.product-page-list-content a{
    font-size: 17px;
    font-weight: 600;
    color: #454242;
    margin: 10px 0 15px;
	-webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.product-page-list:hover .product-page-list-content a{
color:#f0b711;
}
.product-page-list-bottom{
	border-top: 1px solid #dcd8d8;
    padding: 10px 0;
}
.product-page-list-bottom .fa{
    background: #f2f2f2;
    padding: 10px;
    border-radius: 100%;
    font-size: 16px;
    color: #b6b6b6;
    margin: 0 4px;
	-webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.product-page-list-bottom .fa:hover{
	background: #eb268f;
	color:#fff;
}
.product-page-list-content p{
    font-size: 14px;
    color: #454242;
    margin: 10px 0 18px;
}
.product-page-list-content h4{
	font-size: 20px;
    font-weight: 600;
    color: #ec2b92;
    margin-bottom: 25px;
}


/* Premium Ribbon Css Start */
.ribbon {
  position: absolute;
  left: -5px; top: -5px;
  z-index: 1;
  overflow: hidden;
  width: 75px; height: 75px;
  text-align: right;
}
.ribbon span {
  font-size: 10px;
  font-weight: bold;
  color: #FFF;
  text-transform: uppercase;
  text-align: center;
  line-height: 20px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  width: 100px;
  display: block;
  background: #79A70A;
  background: linear-gradient(#dc1981 0%, #eb268f 100%);
  box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
  position: absolute;
  top: 19px; left: -21px;
}
.ribbon span::before {
  content: "";
  position: absolute; left: 0px; top: 100%;
  z-index: -1;
  border-left: 3px solid #ff51ae;
  border-right: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-top: 3px solid #ff51ae;
}
.ribbon span::after {
  content: "";
  position: absolute; right: 0px; top: 100%;
  z-index: -1;
  border-left: 3px solid transparent;
  border-right: 3px solid #ff51ae;
  border-bottom: 3px solid transparent;
  border-top: 3px solid #ff51ae;
}
 /* Premium Ribbon Css End */

/* Listing page css end */

/* Detail page css start */
.detail-box{
    background-image: url(../images/pattern1.png);
    padding: 45px 0;
}
.detail-box-top{
	background: #fff;
    padding: 25px;
}
.detail-box-top-left{
    width: 45%;
    float: left;
    
	min-height:400px;
    height: auto;
	text-align:center
}
.detail-box-top-left img{
max-width:100%;
}
.detail-box-top-left .main-imgs{
border: 1px solid #efefef;
}
.detail-box-top-left .main-imgs img{
    margin: 0 auto;
}
.detail-box-top-left .alternate-images {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.detail-box-top-left .alternate-images li {
    float: left;
    margin: 5px 7px 0 0;
    box-shadow: 0px 0px 1px rgba(50, 50, 50, 0.38);
}
.detail-box-top-left .alternate-images li a {
    display: block;
}


.detail-box-top-right{
	width: 53%;
    float: right;
	font-family: 'Lato', sans-serif;
}

.product-detail-title h2.title{
    font-size: 30px;
    font-weight: 500;
    font-family: lato;
    color: #000;
    margin: 0px 0 10px 0;
    line-height: 30px;
}
.price h3{
    font-size: 25px;
    font-weight: 600;
    font-family: lato;
    color: #149219;
    margin: 10px 0 20px 0;
    line-height: 24px;
}
.product-detail-desc {
	margin-bottom:20px;
}
.product-detail-desc p{
    color: #585858;
}
.item-code{
    border: 2px solid #eb268f;
    padding: 1px 5px;
    font-size: 11px;
    color: #eb268f;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 2px 0 0 0;
    float: right;
    line-height: 20px;
}
.product-size{
margin-bottom:20px;
}
.product-size h4{
    font-size: 20px;
    font-family: lato;
    color: #101010;
    margin: 0px 0 10px;
    line-height: 24px;
}
.product-size select{
    text-align: center;
    font-size: 16px;
    text-indent: 0;
    border: 1px solid #000;
    padding: 3px 10px 6px 10px;
}
.quantity-box{
margin-bottom:30px;
}
.quantity-box h4{
font-size: 18px;
    font-family: lato;
    color: #101010;
    margin: 0px 0 8px;
    line-height: 24px;
    font-weight: 600;
}
.main-price{
	font-size: 22px;
    color: #eb268f;
    margin-right: 5px;
    text-decoration: line-through;
}

.quantity-box .quantity-box-inner input{
display:inline-block;
}
.quantity-box-inner input[type=button]{
    text-align: center;
    font-size: 16px;
    text-indent: 0;
    border: 1px solid #000;
    padding: 1px 10px 3px 10px;
	background: #fff;
}
.quantity-box-inner input[type="text"]{
    text-align: center;
    font-size: 16px;
    text-indent: 0;
    border: 1px solid #000;
    padding: 1px 10px 3px 10px;
}
.addtobtns a.addtocart{
    background: #000;
    color: #fff;
    padding: 12px 70px;
    font-size: 16px;
    font-family: lato;
    margin-right: 15px;
    text-decoration: none;
    border-radius: 3px;
}
.addtobtns a.addtowishlist{
    border: 1px solid #eb268f;
    color: #eb268f;
    padding: 11px 60px;
    font-size: 16px;
    font-family: lato;
    margin-right: 15px;
    text-decoration: none;
    border-radius: 3px;
		-webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;	
}
.addtobtns a.addtowishlist:hover{
background:#eb268f;
color:#fff;
}
.detail-box-bg{
margin-bottom:40px;
background:#fff;
box-shadow:0 0 10px #ccc;
}
.detail-box-bottom{
	background:#fff;
	padding:25px;
}
.detail-box-bottom .tab-content{
    padding: 20px 15px;
}
.detail-box-bottom .tab-content p{
	font-size:15px;
}
.detailbox-tabs .nav-tabs>li.active>a, .detailbox-tabs .nav-tabs>li.active>a:focus, .detailbox-tabs .nav-tabs>li.active>a:hover{
    color: #ffffff;
    cursor: pointer;
    background-color: #000;
    border: transparent;
    border-top: 2px solid #eb268f;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 0;
}
.detailbox-tabs .nav-tabs>li>a{
    color: #000;
    cursor: pointer;
    background-color: #fff;
    border: transparent;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 0;
    font-family: 'Lato', sans-serif;
}
.detailbox-tabs .nav-tabs {
    border-bottom: 1px solid #4e4e4e;
}
.detailbox-tabs .nav>li>a:focus, .detailbox-tabs .nav>li>a:hover {
    text-decoration: none;
    background-color: #0e0e0e;
    color: #fff;
}
.detailbox-tabs .tab-content ul{
padding-left:20px;
}
.detailbox-tabs .tab-content ul li{
list-style: disc;
}


.owl-carousel .item {
    text-align: center;
}
.related-products{
    padding: 15px;
    background: #fff;
	padding-bottom: 30px;
	box-shadow:0 0 10px #ccc;
}
.related-products-title{
background: #f8f8f8;
    padding: 10px;
    margin-bottom: 30px;
}

.related-products-title h3{
    font-size: 20px;
    text-transform: uppercase;
    font-family: lato;
    font-weight: 600;
    margin: 0;
}
.item-link a{
    color: #000;
    font-family: lato;
	font-size:15px;
}
.item-link a:hover{
    color: #000;
}
.owlspan-text{
display:none;
}

.review-box{
width:100%;
float:left;
margin:20px 0 0 0;
}
.review-box-comment{
    display: block;
    margin: 0 0 30px 0;
    padding: 0 0 30px 0;
    border-bottom: 1px solid #eee;
}
.review-box .review-box-left{
float: left;
    width: 9.6%;
}
.review-box .review-box-right{
    float: right;
    width: 85.4%;
}
.review-box .review-box-right a.username{
    font-weight: bold;
    float: left;
    color: #131416;
}
.review-box .review-box-right span.date {
    float: right;
    color: #ccc;
}
.review-box .review-box-right p.comment {
    width: 100%;
    float: left;
    margin: 15px 0 0 0;
    color: #666b76;
}
.comment-box h2{
    margin: 0 0 10px 0;
    font-size: 20px;
}
.comment-box input.comment-name{
	display: block;
    width: 49%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
	margin-bottom: 15px;
	float:left;
}
.comment-box input.comment-email{
	display: block;
    width: 49%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
	float:right;
	margin-bottom: 15px;
}
.comment-box textarea{
    display: block;
    width: 100%;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
	margin-bottom: 15px;
	resize:none;
}
.comment-box input[type="submit"]{
    background-color: #dee0e3;
    color: #42464d;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px 25px;
}
.comment-box input[type="submit"]:hover{
background:#ced0d2;
}

.form-box {
    margin-bottom: 15px;
    position: relative;
    width: 100%;
}
.form-box label {
    font-size: 15px;
    color: #545454;
}
.form-box input[type="text"] {
    padding-right: 42.5px;
    border-radius: 3px;
    background: #ffffff;
    height: 40px;
    border-color: #e1e1e1;
    color: #777777;
    position: relative;
    -webkit-appearance: none;
    font-size: 15px;
}


.form-box2 {
    margin-bottom: 15px;
    position: relative;
    width: 100%;
}
.form-box2 label {
    font-size: 15px;
    color: #545454;
}
.form-box2 input[type="text"] {
    padding-right: 42.5px;
    border-radius: 3px;
    background: #ffffff;
    height: 34px;
    border-color: #e1e1e1;
    color: #777777;
    position: relative;
    -webkit-appearance: none;
    font-size: 15px;
}
.form-box2 input[type="text"] {
    padding-right: 42.5px;
    border-radius: 3px;
    background: #ffffff;
    height: 36px;
    border-color: #e1e1e1;
    color: #777777;
    position: relative;
    -webkit-appearance: none;
    font-size: 15px;
}
.form-box select {
    padding-right: 42.5px;
    border-radius: 3px;
    background: #ffffff;
    height: 40px;
    border-color: #e1e1e1;
    color: #777777;
    position: relative;
    -webkit-appearance: none;
    font-size: 15px;
}
.form-box2 select {
    padding-right: 42.5px;
    border-radius: 3px;
    background: #ffffff;
    height: 36px;
    border-color: #e1e1e1;
    color: #777777;
    position: relative;
    -webkit-appearance: none;
    font-size: 15px;
}
.form-box textarea {
    resize: none;
    padding-right: 42.5px;
    border-radius: 3px;
    background: #ffffff;
    border-color: #e1e1e1;
    color: #777777;
    position: relative;
    -webkit-appearance: none;
    font-size: 15px;
}
.form-box .fa {
    top: 23px;
    color: #777777;
    width: 40px;
    height: 40px;
    line-height: 40px !important;
    position: absolute;
    right: 0;
    text-align: center;
    font-size: 15px;
}
.form-box2 .fa {
    top: 22px;
    color: #777777;
    width: 36px;
    height: 36px;
    line-height: 40px !important;
    position: absolute;
    right: 0;
    text-align: center;
    font-size: 15px;
}
.contact-us-left input[type="submit"] {
    background: #eb268f;
    font-size: 16px;
    color: #fff;
    padding: 9px 20px 7px;
    border: 0;
}
.contact-us-map{
margin-bottom:50px;
}

.contact-us{
margin-bottom:50px;
}

.contact-us-left{
width:60%;
float:left;
}
.contact-us-right{
width:30%;
float:right;
}
.contact-us-left h3{
font-size:24px;
margin-bottom:30px;
}


.address-box {
    width: 100%;
    margin-bottom: 35px;
}
.address-box h3 {
    margin: 0px 0 30px 0;
    padding: 0px;
    font-size: 20px;
    color: #000;
}
.contactus-area-left-inner {
    margin-bottom: 20px;
}
.contactus-area-left-inner .fa {
    font-size: 25px;
    padding: 0;
    text-align: left;
    float: left;
    color: #737373;
}
.contactus-area-left-inner .contact-body {
    margin-left: 50px;
}
.contactus-area-left-inner p {
    font-size: 15px;
    margin: 0;
}
.contact-body a{
    font-size: 15px;
    margin: 0;
    line-height: 24px;
    color: #000;
}

.about-us{
background-image: url(../images/pattern1.png);
padding:30px 0;
}
.about-us-bg{
	background:#fff;
	padding:25px;
    box-shadow: 0 0 10px #ccc;
}

.terms-and-conditions{
background-image: url(../images/pattern1.png);
padding:30px 0;
}
.terms-and-conditions-bg{
	background:#fff;
	padding:25px;
    box-shadow: 0 0 10px #ccc;
}
.terms-and-conditions h3{
    font-size: 30px;
    margin: 10px 0 20px;
    font-weight: 800;
    font-family: 'Lato', sans-serif;
    line-height: 30px;
}
.terms-and-conditions p{
	font-size:15px;
	font-weight:normal;
    width: 100%;
    float: left;
    margin: 0 0 15px;
    color: #666b76;
}

.about-us-left{
float:left;
width:60%;
}
.about-us-right{
float:right;
width:38%;
}

.about-us-left h3{
    font-size: 30px;
    margin: 10px 0 20px;
    font-weight: 800;
    font-family: 'Lato', sans-serif;
    line-height: 30px;
}
.about-us-left p{
	font-size:15px;
	font-weight:normal;
    width: 100%;
    float: left;
    margin: 0 0 15px;
    color: #666b76;
}
.about-us-icons-box{
    width: 23%;
    margin: 1%;
    float: left;
}
.about-us-icons-box a{
    text-align: center;
    display: block;
    background-color: #F9F9F9;
    box-shadow: 0 1px 10px 0 rgba(0,0,0,0.15);
    padding: 30px 0;
    font-size: 20px;
    font-weight: 300;
    color: #777777;
    transition: all 0.2s ease-in;
    margin-bottom: 20px;
    font-weight: 300;
    text-decoration: none;
	font-family: 'Raleway', sans-serif;
	background-color: #F9F9F9;
}
.about-us-icons-box a:hover{
text-decoration:none !important;
background:#eb268f;
color:#fff;
}
.about-us-icons-box a i {
    display: block;
    margin-bottom: 8px;
    font-size: 28px;
}

/* Cart page css start */

.cart-main{
    background-image: url(../images/pattern1.png);
    padding: 30px 0;
}
.cart-inner{
    background: #fff;
    padding: 25px;
    box-shadow: 0 0 10px #ccc;
	font-family: 'Lato', sans-serif;
}
.account-content .products-order {
    border: 2px solid #F0F0F0;
    padding: 15px 15px 15px 15px;
}
.account-content .shopping-cart {
    margin-bottom: 20px;
}
.products-order table th{
background-color: #666666;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    padding: 10px 5px;
    border-right: 2px solid #FFFFFF;
    border-bottom: 0;
    text-align: center;
}
.products-order table tr:hover{
background:#fbfbfb;
 transition: all 0.2s ease-in;
}
.products-order table td{
vertical-align:middle !important;
font-size:15px;
}
.table-products .form-control {
    text-align: center;
    font-size: 16px;
    margin: 15px auto;
    width: 60%;
}
.account-content h4 {
    font-size: 18px;
    color: #666666;
    font-weight: 600;
	font-family: lato;
}
a.content{
    transition: all 0.2s ease-in;
	font-size: 16px;
    font-weight: 600;
    font-family: lato;
	    color: #000;
}
.table-products h4 small {
    margin-top: 5px;
    display: block;
    color: #AAAAAA;
    font-style: italic;
    font-size: 13px;
}
.table-products {
    border-bottom: 2px solid #EBEBEB;
    margin-bottom: 10px;
}

.cart-tablebtn{
    background-color: #666666;
    border: 2px solid #555555;
    color: #FFFFFF;
	float: left;
	line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
	padding: 6px 12px;
    margin-bottom: 0;
    font-size: 15px;
	
}
.cart-tablebtn:hover{
    background-color: #555555;
    color: #FFFFFF;
	text-decoration:none;
}
.contue-shop{
	float: left;
}
.update-cart {
	    margin: 0 0 0 10px;
}
.delete-item{
padding:6px 9px;
color:#fff;
font-size:14px;
border-radius:2px;
background:#dc483f;
}
.delete-item:hover{
color:#fff;
}
.account-content .box {
    padding: 12px;
    border: 2px solid #F0F0F0;
    margin-bottom: 30px;
}
.account-content ul.order-total {
    text-align: right;
    margin: 0;
}
.account-content ul.order-total li {
    padding: 5px 0;
    font-size: 16px;
}
.account-content ul.order-total span {
    width: 100px;
    display: inline-block;
    font-weight: bold;
    color: #555555;
}
.account-content ul.order-total span.total {
    color: #E74C3C;
    font-weight: 800;
}
.coupon .input-group input{
font-size:14px;
}
.coupon h5{
    font-size: 15px;
    font-weight: 600;
    font-family: lato;
    margin-bottom: 8px;
    color: #666;
}
.applycupn{
    padding: 7px 16px 9px;
    background: #337ab7;
    border: 0;
    color: #fff;
    font-size: 15px;
    line-height: 18px;
	text-transform:uppercase;
}
.checkoutBtn{
    padding: 8px 25px 9px;
    float: right;
    background: #eb268f;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: 0;
    line-height: 22px;
    border-radius: 2px;
	 transition: all 0.2s ease-in;
}
.checkoutBtn:hover{
color:#fff;
text-decoration:none;
box-shadow:0 0px 10px #ccc;
background:#e41e88;
}

input[type="submit"].checkoutBtn {
    padding: 8px 25px 9px;
    float: right;
    background: #eb268f;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: 0;
    line-height: 22px;
    border-radius: 2px;
	 transition: all 0.2s ease-in;
}
input[type="submit"].checkoutBtn:hover{
color:#fff;
text-decoration:none;
box-shadow:0 0px 10px #ccc;
background:#e41e88;
}

/* Cart page css end */

.owl-item{
    float: left;
    margin: 10px 0;
    padding: 10px 0 20px;
	transition: all 0.2s ease-in;
}

.owl-item:hover{
box-shadow:0 0 10px #ccc;
}
/* Checkout page css start */

.checkout-main{
    background-image: url(../images/pattern1.png);
    padding: 30px 0;
}

.checkout-inner{
	    background: #fff;
    padding: 45px 35px 35px 35px;
    box-shadow: 0 0 10px #ccc;
    font-family: 'Lato', sans-serif;
}

.account-content .checkout-step:after {
    position: absolute;
    height: 16px;
    width: 16px;
    margin-left: -8px;
    left: 50%;
    bottom: -24px;
    content: "";
    border-radius: 50%;
    border: 2px solid #F0F0F0;
    background-color: #FFFFFF;
    z-index: 1;
}
.account-content .checkout-step .number {
    background-color: #F0F0F0;
    color: #AAAAAA;
    border-radius: 50%;
    display: inline-block;
    height: 36px;
    width: 37px;
    font-weight: bold;
    font-size: 20px;
    padding: 8px 0 0 0;
}
.account-content .checkout-step.active .number {
    color: #FFFFFF;
	background-color: #E87169;
}
.account-content .checkout-step {
    position: relative;
    text-align: center;
    margin-bottom: 15px;
}
.account-content .checkout-step .title {
    font-weight: 600;
    font-size: 16px;
    color: #888888;
    margin: 7px 0 0;
}
.account-content .checkout-step.active .title {
    color: #555555;
}
.account-content .checkout-progress {
	position: relative;
    left: 11.8%;
    width: 76%;
    border-radius: 0;
    background-color: #F0F0F0;
    box-shadow: none;
    height: 2px;
    margin-bottom: 60px;
}
.progress-bar {
    float: left;
    width: 0;
    height: 100%;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    text-align: center;
    background-color: #337ab7;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,.15);
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.15);
    -webkit-transition: width .6s ease;
    -o-transition: width .6s ease;
    transition: width .6s ease;
}

.billing-address-box{
    width: 66%;
    margin: 15px 0% 40px;
    float: left;
    padding: 0;
}
.billing-address-box h4{
    font-size: 20px;
    color: #000000;
    font-weight: 600;
    font-family: lato;
    margin: 0 0 15px 0;
}
.addressbox-inner{
    border: 2px solid #F0F0F0;
    padding: 15px 15px;
}
.star{
color:#FF0000;
}
.sameadd{
float: left;
margin:10px 0;
}
.sameadd label{
	cursor:pointer;
    font-size: 15px;
    font-weight: 500;
    font-family: lato;
    margin: 0 0 0 0;
}
.sameadd label input{
    margin: -2px 2px 0 0;
}

.shipping-method{
    width: 70%;
    text-align: left;
    margin: 15px 0 20px;
    float: left;
}
.shipping-method h3{
    font-size: 20px;
    color: #000000;
    font-weight: 600;
    font-family: lato;
    margin: 0 0 8px 0;
}
.shipping-method p{
	font-size: 15px;
    color: #797979;
    font-weight: 400;
    font-family: lato;
    margin: 0 0 30px 0;
}
.shipping-method-inner{
	padding: 0px;
}
.shipping-method-inner ul li{
	position:relative;
}
.shipping-method-inner ul li label{
    font-weight: 500;
    margin: 5px 0 0 0;
    padding-top: 3px;
    font-size: 17px;
}
.shipping-method-inner label:last-child{
margin-bottom:0;
} 
 
.total-amount{
    font-weight: 800;
    font-size: 18px;
    color: #eb268f;
}

.review-box .box h4 {
    margin: -12px -12px 12px;
    background-color: #F5F5F5;
    border-bottom: 2px solid #F0F0F0;
    padding: 12px;
    color: #888888;
}
.review-box .box ul li {
    font-size: 15px;
    color: #777777;
    padding: 2px 0;
}
.box h5 {
    font-weight: bold;
    color: #888888;
	    font-size: 14px;
		    margin-top: 10px;
    margin-bottom: 10px;
}
.review-box .box h5 + p {
    margin-bottom: 0;
}
.review-box .box p {
    font-size: 14.5px;
    color: #777777;
	margin: 0 0 20px;
}

.congrats-box{
	text-align: center;
    padding: 50px 10px 50px 10px;
    color: #dc0276;
    background-color: #fff5fa;
    border: #f78ac2 1px dashed;
    margin: 0 auto;
    width: 40%;
    border-radius: 5px;
}
.congrats-box h2{
    font-size: 24px;
    margin-bottom: 10px;
}
.congrats-box p{
    margin: 0 0 35px;
    line-height: 20px;
}
/* Checkout page css end */


/* Login page css start */
.login-page{
	background-image: url(../images/pattern1.png);
    padding: 40px 0 150px;
    height: 100%;
	font-family: 'Lato', sans-serif;
}

.login-box{
    width: 30%;
    margin: 0 auto;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px #ccc;
    padding: 0 0;
    background: #fff;
    padding: 0px;;
}
.login-box h2{
    background: #666666;
    margin: 0 0;
    padding: 15px 20px;
    font-size: 22px;
    font-family: lato;
    color: #fff;
}
.login-box form{
padding:25px;
}

.login-box input[type="submit"]{
    height: 42px;
    width: 100%;
    border: 0;
    background: #eb268f;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    border-radius: 2px;
    transition: all 0.2s ease-in;
}
.login-box input[type="submit"]:hover {
    color: #fff;
    text-decoration: none;
    box-shadow: 0 0px 10px #ccc;
    background: #e41e88;
}

/* Login page css end */

.order-summary{
    width: 30%;
    margin: 15px 0% 40px;
    float: right;
    padding: 0;
}
.order-summary h3{
    font-size: 20px;
    color: #000000;
    font-weight: 600;
    font-family: lato;
    margin: 0 0 15px 0;
}
.order-summary table{
	width: 100%;
    border: 2px solid #f0f0f0;
}
.order-summary table th{
    font-size: 14px;
    background-color: #666666;
    color: #fff;
    padding: 8px;
    font-weight: 800;
}
.order-summary table th:last-child{
    width: 85px;
    text-align: right;
}
.order-summary table td{
    border: 1px solid #f0f0f0;
    padding: 8px;
    font-size: 14px;
}
.order-summary table td:last-child{
	min-width: 95px;
    text-align: right;
}
.width50l{
float:left;
width:49%;
}
.width50r{
float:right;
width:49%;
}
a.finish-home{
	padding: 10px 15px 11px;
    background: #eb268f;
    border-radius: 4px;
    font-size: 15px;
    color: #fff;
    font-weight: 600;
}
a.finish-home:hover{
    background: #da1f83;
	text-decoration:none;
	color:#FFFFFF;
	box-shadow:0 0 10px #ccc;
}
a.finish-home .fa{
	margin-right:5px;
}

.form-control2 {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    /* -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); */
    /* box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); */
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.detailproduct-size{
	margin-bottom: 15px;
}
.detailproduct-size h4{
    font-size: 18px;
    font-family: lato;
    color: #101010;
    margin: 0px 0 8px;
    line-height: 24px;
    font-weight: 600;
}
.detailproduct-size label{
    display: block;
    font-size: 16px;
    font-weight: 400;
	cursor:pointer;
}
.detailproduct-size-inner ul{
margin-bottom:0;
}
.detailproduct-size-inner ul li{
position:relative;
}
.detailproduct-size label span.radio-box{
    float: left;
    margin: 3px 8px 0 0;
}
.detailproduct-size label span.size-right{
	width: 160px;
    float: left;
}
.ptpayment{
margin-top:80px;
}

.login-logo{
    margin: 0 auto 20px;
    text-align: center;
	width:100%;
}
.dashboard{
    background-image: url(../images/pattern1.png);
    padding: 30px 0;
	font-family: 'Lato', sans-serif;
}
.dashboard-menu{
    width: 25%;
    float: left;
    background: #fff;
	box-shadow: 0 1px 5px 0 rgba(0,0,0,0.1);
}
.dashboard-menu ul li a{
    border-radius: 0;
    font-weight: 600;
    color: #999999;
    border-bottom: 2px solid #EBEBEB;
    font-size: 14px;
    position: relative;
    display: block;
    padding: 10px 15px;
    transition: all 0.2s ease-in;
	font-family: 'Lato', sans-serif;
}
.dashboard-menu ul li a span{
	float:right;
}
.dashboard-menu ul li a:hover, .dashboard-menu ul li a:focus{
	text-decoration:none;
	background-color: #F3F3F3;
}
.dashboard-menu ul li.active a{
background:#eb268f;
color:#FFFFFF;
}
.dashboard-content{
    width: 72%;
    float:right;
    background: #fff;
	min-height:200px;
	box-shadow: 0 1px 5px 0 rgba(0,0,0,0.1);
    padding: 20px;
}
.welcome-admin h3{
font-size: 22px;
    font-weight: 600;
    font-family: 'Lato', sans-serif;
    margin-bottom: 15px;
    color: #707070;
}

.welcome-admin h3 span{
    font-weight: 400;
	font-family: 'Lato', sans-serif;
	color:#eb268f;
}
.welcome-admin p{
    margin-bottom: 25px;
    font-size: 14px;
    color: #737373;
}
.icon-list{
margin-bottom:30px;
}
.icon-list ul li{
    width: 23%;
    margin: 1%;
    background-color: #F9F9F9;
    box-shadow: 0 0px 8px 0 rgba(0,0,0,0.15);
    text-align: center;
    float: left;
    
}
.icon-list ul li a{
    padding: 45px 0;
    font-size: 20px;
    display: block;
	color:#777;
	transition: all 0.2s ease-in;
	border-radius: 4px;
}
.icon-list ul li a:hover{
	text-decoration:none;
	background-color: #eb268f;
	color:#fff;
}
.icon-list ul li a .fa{
    display: block;
    margin: 0 0 10px 0;
    font-size: 30px;
}

.order-list h3{
    font-size: 22px;
    font-weight: 500;
    font-family: 'Lato', sans-serif;
    margin-bottom: 15px;
    color: #000;
}
.order-list .table th{
	background-color: #666666;
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    padding: 8px;
    border-right: 2px solid #FFFFFF;
    border-bottom: 0;
    text-align: center;
}
.order-list .table td{
	font-size: 14px;
	padding:8px 12px;
}
.order-id{
	color: #dc1a81;
}
.order-id:hover{
	color: #cc1375;
}
.view-order{
    background: #dc1a81;
    padding: 6px 18px;
    border-radius: 3px;
    color: #fff;
    font-size: 13px;
}
.view-order:hover{
    background: #cc1375;
	text-decoration:none;
	color:#fff;
}

.change-password-box{
    width: 40%;
    margin:20px auto 50px;
    text-align: center;
}
.change-password-box h3{
	font-size: 22px;
    font-weight: 500;
    font-family: 'Lato', sans-serif;
    margin-bottom: 25px;
    color: #000000;
}
.change-password-box input[type="text"]{
    padding-left: 35px;
    border-radius: 3px;
    height: 40px;
    border-color: #e1e1e1;
    color: #777777;
    position: relative;
    -webkit-appearance: none;
    font-size: 14px;
    margin-bottom: 10px;
	width:100%;
} 
.oldpass{
	background: #ffffff url(../images/oldpass.png) 10px 12px no-repeat !important;
}
.newpass{
	background: #ffffff url(../images/newpass.png) 10px 12px no-repeat !important;
}
.change-password-box input[type="submit"]{
    background: #eb268f;
    color: #fff;
    border: 0;
    padding: 8px 25px 10px;
    font-size: 16px;
    border-radius: 3px;
    margin-top: 25px;
	font-weight: 600;
}
.change-password-box input[type="submit"]:hover{
background:#de1d84;
transition: all 0.2s ease-in;
}

.wishlist-box h3{
	font-size: 22px;
    font-weight: 500;
    font-family: 'Lato', sans-serif;
    margin-bottom: 15px;
    color: #000000;
}
.edit-profile-box h3{
    font-size: 22px;
    font-weight: 500;
    font-family: 'Lato', sans-serif;
    margin-bottom: 25px;
    color: #000000;
}
.edit-profile-inputs label{
    float: left;
    width: 20%;
    text-align: right;
    padding-right: 15px;
    font-size: 15px;
    font-weight: 400;
    height: 30px;
    line-height: 32px;
}

.edit-profile-inputs input[type="text"]{
    padding: 8px;
    border-radius: 3px;
    height: 34px;
    border-color: #e1e1e1;
    color: #777777;
    position: relative;
    -webkit-appearance: none;
    font-size: 15px;
    margin-bottom: 10px;
    width: 80%;
    float: left;
}
.edit-profile-inputs select{
    border-radius: 3px;
    height: 34px;
    border-color: #e1e1e1;
    color: #777777;
    position: relative;
    /* -webkit-appearance: none; */
    font-size: 15px;
    margin-bottom: 10px;
    width: 20%;
    float: left;
    padding: 0 0 0 0;
}
.edit-profile-inputs input[type="submit"]{
    background: #eb268f;
    color: #fff;
    border: 0;
    padding: 8px 25px 10px;
    font-size: 16px;
    border-radius: 3px;
    margin-top: 15px;
    font-weight: 600;
}


@media screen and (max-width:48em) {
.wrapper {
    width: 97%;
}
.product-box-list .product-listing {
    width: 48%;
}
.about-us-icons-box {
    width: 48%;
}
.contact-us-right {
    width: 35%;
}
.checkout-inner {
    padding: 35px 15px 15px;
}
.account-content .products-order {
    border: 0;
    padding: 0;
}
.billing-address-box {
    width: 100%;
	margin: 15px 0% 20px;
}
.order-summary {
	width: 100%;
	margin: 10px 0% 20px;
}
.ptpayment {
    margin-top: 40px;
}
.congrats-box {
    width: 60%;
}
.login-box {
    width: 50%;
}
.login-page {
    padding: 60px 0 440px;
}
.login-logo {
    margin: 0 auto 30px;
}
.account-content .checkout-progress{
margin-bottom:40px;
}
.about-us-icons-box a{
margin:0;
}
.footer-left .footer-inner{
padding: 10px 15px;
}
.footer-left {
    width: 68%;
}
.footer-right {
    width: 32%;
}
.header-right .account-box{
margin: 10px 0 15px;
}
.search-cart {
    margin-bottom: 10px;
}
header .logo {
    width: 25%;
}
header .header-right {
    width: 70%;
}
.welcome-area h1 {
    font-size: 30px;
    margin-bottom: 10px;
    line-height: 30px;
}
.icon-list ul li {
    width: 48%;
}
.dashboard-menu {
    width: 23%
}
.dashboard-content {
    width: 75%;
}
.dashboard-content {
    padding: 10px;
}
.edit-profile-inputs label {
    width: 30%;
}
.edit-profile-inputs input[type="text"]{
	width: 70%;
}
.edit-profile-inputs select{
width:40%;
}
.change-password-box {
    width: 60%;
}
}

@media screen and (max-width:35em) {
.wrapper {
    width: 94%;
}
header .logo{
width: 100%;
text-align: center;
margin:5px 0;
}
header .logo img{
width:50%;
}
header .header-right {
    width: 100%;
}
.header-right .account-box{
margin:5px 0 10px;
text-align:center;
}
.header-right .account-box ul li img{
display:none;
}
.help-box{
text-align:center;
display:none;
}
.help-box h4{
margin-bottom: 8px;
font-size: 18px;
}
.about-us-left h3 {
    font-size: 24px;
    margin: 10px 0 10px;
}
.contact-us-map {
    margin-bottom: 20px;
}
.contact-us-left {
    width: 100%;
	margin-bottom: 30px;
}
.address-box h3 {
    margin: 0px 0 20px 0;
}
.contactus-area-left-inner {
    margin-bottom: 10px;
}
.contact-us-left input[type="submit"]{
width:100%;
}
.contactus-area-left-inner .contact-body {
    margin-left: 40px;
}
.contact-us-left h3 {
    margin-bottom: 20px;
}
.form-box {
    margin-bottom: 10px;
}
.contact-us-right {
    width: 100%;
}

.search-cart{
margin:0;
}
.search-cart .search-box{
	margin:0 0 10px 0;
	width:100%;
}
.search-cart .cart-box{
	width: 50%;
	margin: 0 auto;
	float: none;
}
.welcome-area h1{
font-size: 24px;
line-height: 24px;
margin-bottom: 5px;
}
.product-box-list .product-listing {
    width: 100%;
	margin-bottom:12px;
}
.search-cart .search-box{
display:none;
}
.slider-box {
    margin-bottom: 20px;
}
.breadcrum-box {
    padding: 20px 0 20px;
}
.parallax-window {
    min-height: 80px;
}
.breadcrum-box h1 {
    font-size: 24px;
}
.about-us {
    padding: 15px 0;
}
.about-us-bg {
    padding: 10px;
}
.about-us-left {
    width: 100%;
}
.about-us-right {
    width: 100%;
}
.about-us-icons-box {
    width: 100%;
    margin: 1% 0;
}
.about-us-icons-box a{
padding: 20px 0;
font-size: 18px;
margin-bottom:8px;
}
.detail-box {
    padding: 10px 0;
}
.detail-box-top {
    padding: 10px;
}
.detail-box-top-left {
    width: 100%;
}
.detail-box-top-right {
    width: 100%;
}
.product-detail-title h2.title {
    font-size: 20px;
}
.item-code{
float:left;
margin: 4px 0 8px 0;
}
.addtobtns{
width:100%;
}
.addtobtns a.addtocart{
display: block;
margin: 0 0 5px 0;
margin-right:0;
text-align: center;
}
.addtobtns a.addtowishlist{
display: block;
margin: 0 0 5px 0;
margin-right:0;
text-align: center;
}
.detail-box-bottom {
    padding: 10px;
}
.detail-box-bottom .tab-content {
    padding: 10px 0px;
}
.review-box {
    margin: 5px 0 0 0;
}
.review-box .review-box-left {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}
.review-box .review-box-right {
    width: 100%;
}
.review-box .review-box-right p.comment {
    margin: 5px 0 0 0;
}
.review-box-comment {
    margin: 0 0 15px 0;
    padding: 0 0 10px 0;
}
.comment-box h2 {
    font-size: 18px;
	margin: 0 0 5px 0;
}
.comment-box input.comment-name{
width:100%;
}
.comment-box input.comment-email{
width:100%;
}
.detail-box-bg {
    margin-bottom: 20px;
}
.quantity-box {
    margin-bottom: 15px;
}
.detailproduct-size {
    margin-bottom: 10px;
}
.checkout-main {
    padding: 10px 0;
}
.checkout-inner {
    padding: 15px 5px 25px 5px;
}
.account-content .box {
    margin-bottom: 10px;
}
.account-content ul.order-total span {
    width: 140px;
}
.billing-address-box {
    width: 100%;
    margin: 15px 0% 10px;
}
.order-summary {
    width: 100%;
    margin: 15px 0% 10px;
}
.width50l {
    width: 100%;
}
.width50r {
    width: 100%;
}
.shipping-method {
    width: 100%;
    margin: 15px 10px 20px;
}
.shipping-method p{
margin:0 0 20px 0;
}
.ptpayment {
    margin-top: 30px;
}
.congrats-box{
width:100%;
padding: 40px 10px 50px 10px;
}
.congrats-box h2 {
    font-size: 22px;
}
.shop-option .short-by {
    float: left;
    margin: 10px 0 0 0;
}
.login-box {
    width: 94%;
}
.product-page-list{
	width: 100%;
	margin: 0 0 15px;
}
.coupon{
margin-bottom:10px;
}
.checkoutBtn{
    width: 100%;
    text-align: center;
}
.account-content .checkout-step::after{
display:none;
}
.account-content .products-order {
    border: 0;
    padding: 0;
}
.footer-left{
width:100%;
}
.footer-left .footer-inner {
    width: 100%;
}

.footer-right{
width:100%;
}

.dashboard-menu{
width: 100%;
margin-bottom: 20px;
}
.dashboard-content{
width:100%;
}
.icon-list ul li {
    width: 100%;
}
.icon-list ul li a {
    padding: 25px 0;
}
.edit-profile-inputs label{
	width: 100%;
	text-align: left;
}
.edit-profile-inputs input[type="text"]{
	width: 100%;
	margin-bottom:5px;
}
.edit-profile-inputs select{
width:50%;
}
.edit-profile-inputs input[type="submit"]{
	margin-top: 0;
}
.change-password-box{
	width:100%;
}

}