/*-------------------------
	Simple reset
--------------------------*/


*{
	margin:0;
	padding:0;
}


/*-------------------------
	General Styles
--------------------------*/


/*html{
	background:url('../img/background.jpg') #fefefe;
	position:relative;
}

body{
    padding: 200px 0 0;
	font:14px/1.3 'Segoe UI',Arial, sans-serif;
	min-height:500px;
}*/

a, a:visited {
/*	text-decoration:none;
	outline:none;
	color:#54a6de;*/
}

a:hover{
	/*text-decoration:underline;*/
}

section, footer, nav{
	display: block;
}


/*----------------------------
	The Navigation Menu
-----------------------------*/
    .log-right{float:right !important; margin: 0 2% !important;}
@media only screen and (max-width: 960px){
	.log-right{margin: 15px 2% !important;height:100px !important;}
	.cart-navbar{float:left !important; }
	.log-navbar{float:left !important; }
}
#colorNav > ul{
	/*width: 450px;*/ /* Increase when adding more menu items */
	margin:0 auto;
	text-align:right;
	display: block;
	width: 25px;
	background: transparent;
}

#colorNav > ul > li{ /* will style only the top level li */
	list-style: none;
	/*box-shadow: 0 0 10px rgba(100, 100, 100, 0.2) inset,1px 1px 1px #CCC;*/
	display: inline-block;
	line-height: 1;
	/*margin: 1px;*/
	border-radius: 3px;
	position:relative;
}

#colorNav > ul > li > a{
	color:inherit;
	text-decoration:none !important;
	font-size:24px;
	padding: 0;
}
#colorNav li.has-sub > a::after {
	content: none !important;
}
#colorNav li ul{
	position:absolute;
	list-style:none;
	text-align:center;
	width:115px;
	left:50%;
	margin-left:-56px;
	top:20px;
	font:bold 12px 'Open Sans Condensed', sans-serif;
	
	/* This is important for the show/hide CSS animation */
	max-height:0px;
	overflow:hidden;
	
	-webkit-transition:max-height 0.4s linear;
	-moz-transition:max-height 0.4s linear;
	transition:max-height 0.4s linear;
	display:block !important;
	background: transparent;
}

#colorNav li ul li{
	background-color:#f80f0f;
	background: -moz-linear-gradient(top,  #fd0101 0%, #bd0e0f 44%, #c10707 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fd0101), color-stop(44%,#bd0e0f), color-stop(100%,#c10707)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #fd0101 0%,#bd0e0f 44%,#c10707 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #fd0101 0%,#bd0e0f 44%,#c10707 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #fd0101 0%,#bd0e0f 44%,#c10707 100%); /* IE10+ */
    background: linear-gradient(to bottom, #fd0101 0%,#bd0e0f 44%,#c10707 100%); /* W3C */
}

#colorNav li ul li a{
	padding:12px;
	color:#fff !important;
	text-decoration:none !important;
	display:block;
}

#colorNav li ul li:nth-child(odd){ /* zebra stripes */
	background-color:#f80f0f;
	background: -moz-linear-gradient(top,  #fd0101 0%, #bd0e0f 44%, #c10707 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fd0101), color-stop(44%,#bd0e0f), color-stop(100%,#c10707)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #fd0101 0%,#bd0e0f 44%,#c10707 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #fd0101 0%,#bd0e0f 44%,#c10707 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #fd0101 0%,#bd0e0f 44%,#c10707 100%); /* IE10+ */
    background: linear-gradient(to bottom, #fd0101 0%,#bd0e0f 44%,#c10707 100%); /* W3C */
}

#colorNav li ul li:hover{
	/*background: -moz-linear-gradient(top,  #fd0101 0%, #bd0e0f 44%, #c10707 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fda30e), color-stop(44%,#e1920f), color-stop(100%,#dd8a01));
    background: -webkit-linear-gradient(top,  #fda30e 0%,#e1920f 44%,#dd8a01 100%);
    background: -o-linear-gradient(top,  #fda30e 0%,#e1920f 44%,#dd8a01 100%);
    background: -ms-linear-gradient(top,  #fda30e 0%,#e1920f 44%,#dd8a01 100%);
    background: linear-gradient(to bottom, #fda30e 0%,#e1920f 44%,#dd8a01 100%);*/
	background: #fff;
	transition: none !important;
}
#colorNav li ul li a:hover{
	border: 1px solid #e3e3e3;	
}
#colorNav li ul li:first-child{
	border-radius:3px 3px 0 0;
	margin-top:10px;
	position:relative;
}

#colorNav li ul li:first-child:before{ /* the pointer tip */
	content:'';
	position:absolute;
	width:1px;
	height:1px;
	border:5px solid transparent;
	border-bottom-color:#1d9adb;
	left:50%;
	top:-10px;
	margin-left:-5px;
}

#colorNav li ul li:last-child{
	border-bottom-left-radius:3px;
	border-bottom-right-radius:3px;
}

/* This will trigger the CSS */
/* transition animation on hover */

#colorNav li:hover ul{
	max-height:200px; /* Increase when adding more dropdown items */
}


/*----------------------------
	Color Themes
-----------------------------*/


#colorNav li.green{
	/* This is the color of the menu item */
	background-color:#00c08b;
	
	/* This is the color of the icon */
	color:#127a5d;
}

#colorNav li.red{		/*background-color:#ea5080;color:#aa2a52;*/background-color: #0000;}
#colorNav li.blue{		background-color:#53bfe2;color:#2884a2;}
#colorNav li.yellow{	background-color:#f8c54d;color:#ab8426;}
#colorNav li.purple{	background-color:#df6dc2;color:#9f3c85;}


/*----------------------------
	The Footer
-----------------------------*/


footer{
	background-color: #111111;
	bottom: 0;
	box-shadow: 0 -1px 2px #111111;
	height: 45px;
	left: 0;
	position: fixed;
	width: 100%;
	z-index: 100000;
}

footer h2{
	color: #EEEEEE;
	font-size: 14px;
	font-weight: normal;
	left: 50%;
	margin-left: -400px;
	padding: 13px 0 0;
	position: absolute;
	width: 540px;
}

footer h2 i{
	font-style:normal;
	color:#888;
}

footer a.tzine,a.tzine:visited{
	color: #999999;
	font-size: 12px;
	left: 50%;
	margin: 16px 0 0 110px;
	position: absolute;
	text-decoration: none;
	top: 0;
}

footer a i{
	color:#ccc;
	font-style: normal;
}

footer a i b{
	color:#c92020;
	font-weight: normal;
}

/*-----login-----*/
.justify-content-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
	display:flex;
}
.subra-login{
	box-shadow: 0 0 10px 0 #dbd9d9 !important;
	padding: 29px !important;
	margin:50px 0;
}
.subra-login h3{
	margin: 15px 0px;
	text-align: center;
}
.subra-login p{
	margin: 15px 0px;
	text-align: center;
}

.form-control{
display: block !important;
padding: 12px 10px !important;
padding-right: 10px !important;
width: 100% !important;
border-width: 1px !important;
border: 1px solid #d2d2d2 !important;
font-size: 14px !important;
line-height: 20px !important;
height:auto !important;
}
.input-group-addon {
    padding: 12px 10px;
    font-size: 14px;
    font-weight: normal;
    line-height: 1px;
    color: #555;
    text-align: center;
    background: none !important;
    border: 1px solid #fff;
    border-left-color: transparent;
    border-left-style: solid;
    border-left-width: 1px;
    border-radius: 4px;
    border-top-left-radius: 4px;
     border-bottom-left-radius: 4px;
}
.icon-display{
	
}
.btn-wt{
	width: 100% !important;
	padding: 8px 12px !important;
	margin: 15px 0px;
	border-radius: 0 !important;
}
.error {
    color: red;
    font-size: 90%;
}
.form-inner input{
	padding: 12px 10px;
	margin: 0px 0;
	width: 100%;
	border: 1px solid #bfbfbf;
}
.form-inline label, .form-inline input {
    display: inline-block;
    width: auto;
    padding-right: 15px;
}

/*------------------------------cart-page--------------------------------------*/



.table-hover > thead > tr > th, .table-hover > tbody > tr > th, .table-hover > tfoot > tr > th, .table-hover > thead > tr > td, .table-hover > tbody > tr > td, .table-hover > tfoot > tr > td {
    font-size: 1.3em !important;
    color: #999;
}
.thumbnail{
  margin-right: 20px;
}

/*------------------------------checkout-page--------------------------------------*/

.review-order h6{
	color: #2b9cd5;
	font-size: 17px;
	margin-right: 0px;
	margin-left: 0px;
}
.wrapper-checkout{
	background: #f7f7f7;
}
.steps {
    margin-top: -41px;
    display: inline-block;
    float: right;
    font-size: 16px
}
.step {
    float: left;
    background: white;
    padding: 7px 13px;
    border-radius: 1px;
    text-align: center;
    width: 100px;
    position: relative
}
.step_line {
    margin: 0;
    width: 0;
    height: 0;
    border-left: 16px solid #fff;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    z-index: 1008;
    position: absolute;
    left: 99px;
    top: 1px
}
.step_line.backline {
    border-left: 20px solid #f7f7f7;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    z-index: 1006;
    position: absolute;
    left: 99px;
    top: -3px
}
.step_complete {
    background: #357ebd
}
.step_complete a.check-bc, .step_complete a.check-bc:hover,.afix-1,.afix-1:hover{
    color: #eee;
}
.step_line.step_complete {
    background: 0;
    border-left: 16px solid #357ebd
}
.step_thankyou {
    float: left;
    background: white;
    padding: 7px 13px;
    border-radius: 1px;
    text-align: center;
    width: 100px;
}
.step.check_step {
    margin-left: 5px;
}
.ch_pp {
    text-decoration: underline;
}
.ch_pp.sip {
    margin-left: 10px;
}
.check-bc,
.check-bc:hover {
    color: #222;
}
.SuccessField {
    border-color: #458845 !important;
    -webkit-box-shadow: 0 0 7px #9acc9a !important;
    -moz-box-shadow: 0 0 7px #9acc9a !important;
    box-shadow: 0 0 7px #9acc9a !important;
    background: #f9f9f9 url(../images/valid.png) no-repeat 98% center !important
}

.btn-xs{
    line-height: 28px;
}

/*login form*/
.login-container{
    margin-top:30px ;
}
.login-container input[type=submit] {
  width: 100%;
  display: block;
  margin-bottom: 10px;
  position: relative;
}

.login-container input[type=text], input[type=password] {
  height: 44px;
  font-size: 16px;
  width: 100%;
  margin-bottom: 10px;
  -webkit-appearance: none;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-top: 1px solid #c0c0c0;
  /* border-radius: 2px; */
  padding: 0 8px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.login-container input[type=text]:hover, input[type=password]:hover {
  border: 1px solid #b9b9b9;
  border-top: 1px solid #a0a0a0;
  -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
  -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}

.login-container-submit {
  /* border: 1px solid #3079ed; */
  border: 0px;
  color: #fff;
  text-shadow: 0 1px rgba(0,0,0,0.1); 
  background-color: #357ebd;/*#4d90fe;*/
  padding: 17px 0px;
  font-family: roboto;
  font-size: 14px;
  /* background-image: -webkit-gradient(linear, 0 0, 0 100%,   from(#4d90fe), to(#4787ed)); */
}

.login-container-submit:hover {
  /* border: 1px solid #2f5bb7; */
  border: 0px;
  text-shadow: 0 1px rgba(0,0,0,0.3);
  background-color: #357ae8;
  /* background-image: -webkit-gradient(linear, 0 0, 0 100%,   from(#4d90fe), to(#357ae8)); */
}

.login-help{
  font-size: 12px;
}

.asterix{
    background:#f9f9f9 url(../images/red_asterisk.png) no-repeat 98% center !important;
}

/* images*/
ol, ul {
  list-style: none;
}
.hand {
  cursor: pointer;
  cursor: pointer;
}
.cards{
    padding-left:0;
}
.cards li {
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
  background-image: url('//c2.staticflickr.com/4/3713/20116660060_f1e51a5248_m.jpg');
  background-position: 0 0;
  float: left;
  height: 32px;
  margin-right: 8px;
  text-indent: -9999px;
  width: 51px;
}
.cards .mastercard {
  background-position: -51px 0;
}
.cards li {
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
  background-image: url('//c2.staticflickr.com/4/3713/20116660060_f1e51a5248_m.jpg');
  background-position: 0 0;
  float: left;
  height: 32px;
  margin-right: 8px;
  text-indent: -9999px;
  width: 51px;
}
.cards .amex {
  background-position: -102px 0;
}
.cards li {
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
  background-image: url('//c2.staticflickr.com/4/3713/20116660060_f1e51a5248_m.jpg');
  background-position: 0 0;
  float: left;
  height: 32px;
  margin-right: 8px;
  text-indent: -9999px;
  width: 51px !important;
}
.cards li:last-child {
  margin-right: 0;
}
/* images end */



/*
 * BOOTSTRAP
 */
.container{
    border: none;
}
.panel-footer{
    background:#fff;
}
.btn{
    border-radius: 1px;
}
.btn-sm, .btn-group-sm > .btn{
    border-radius: 1px;
}
.input-sm, .form-horizontal .form-group-sm .form-control{
    border-radius: 1px;
}

.panel-info {
    border-color: #999;
}

.panel-heading {
    border-top-left-radius: 1px;
    border-top-right-radius: 1px;
}
.panel {
    border-radius: 1px;
}
.panel-info > .panel-heading {
    color: #eee;
    border-color: #999;
}
.panel-info > .panel-heading {
    /*background-image: linear-gradient(to bottom, #555 0px, #888 100%);*/
}

hr {
    border-color: #999 -moz-use-text-color -moz-use-text-color;
}

.panel-footer {
    border-bottom-left-radius: 1px;
    border-bottom-right-radius: 1px;
    border-top: 1px solid #999;
}

.btn-link {
    color: #888;
}
.form-group {
    margin-bottom: 10px !important;
}
hr{
    margin: 10px 0 !important;
}
.review-order {
	margin-bottom:0px !important;
}
/** MEDIA QUERIES **/
@media only screen and (max-width: 989px){
    .span1{
        margin-bottom: 15px;
        clear:both;
    }
}

@media only screen and (max-width: 764px){
    .inverse-1{
        float:right;
    }
}

@media only screen and (max-width: 586px){
    .cart-titles{
        display:none;
    }
    .panel {
        margin-bottom: 1px;
    }
}

.form-control {
    border-radius: 1px;
}

@media only screen and (max-width: 486px){
    .col-xss-12{
        width:100%;
    }
    .cart-img-show{
        display: none;
    }
    .btn-submit-fix{
        width:100%;
    }
    
}


/*-----------------------------------product side menu---------------------------------------------*/

.left-padding{
	padding:0 !important; 
}
.top-nav {
    padding: 0 15px;
}

.top-nav>li {
    display: inline-block;
    float: left;
}

.top-nav>li>a {
    padding-top: 20px;
    padding-bottom: 20px;
    line-height: 20px;
    color: #fff;
}

.top-nav>li>a:hover,
.top-nav>li>a:focus,
.top-nav>.open>a,
.top-nav>.open>a:hover,
.top-nav>.open>a:focus {
    color: #fff;
    background-color: #1a242f;
}

.top-nav>.open>.dropdown-menu {
    float: left;
    position: absolute;
    margin-top: 0;
    /*border: 1px solid rgba(0,0,0,.15);*/
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background-color: #fff;
    -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
}

.top-nav>.open>.dropdown-menu>li>a {
    white-space: normal;
}

/* Side Navigation */

@media(min-width:768px) {

    .side-nav li a:hover,
    .side-nav li a:focus {
        outline: none;
        background-color: #fff0 !important;
    }
}
.side-nav {
        position: relative;
        top: 0px;
        width: 100%;
        border: none;
        border-radius: 0;
        border-top: 1px rgba(0,0,0,.5) solid;
        overflow-y: auto;
        background-color: #f1f3f6;
        bottom: 0;
        overflow-x: hidden;
    }
 .side-nav>li {
        width: 100%;
		background: #fff0 !important;
		text-align: left !important;
		border-bottom: 1px rgba(0, 0, 0, 0.09) solid;
    }

	
	
.side-nav>li>ul {
    padding: 0;
}

.side-nav>li>ul>li>a {
    display: block;
    padding: 10px 15px 10px 10px;
    text-decoration: none;
	font-family: "Open Sans",Arial,sans-serif;
	font-weight: 600;
    background: -moz-linear-gradient(top, #fd0101 0%, #bd0e0f 44%, #c10707 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fd0101), color-stop(44%,#bd0e0f), color-stop(100%,#c10707));
	background: -webkit-linear-gradient(top, #fd0101 0%,#bd0e0f 44%,#c10707 100%);
	background: -o-linear-gradient(top, #fd0101 0%,#bd0e0f 44%,#c10707 100%);
	background: -ms-linear-gradient(top, #fd0101 0%,#bd0e0f 44%,#c10707 100%);
	background: linear-gradient(to bottom, #fd0101 0%,#bd0e0f 44%,#c10707 100%);
	background-clip: border-box;
	background-clip: border-box;
	background-clip: border-box;
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a90329', endColorstr='#6d0019',GradientType=0 );
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-transform: capitalize;	
}

.side-nav>li>ul>li>a:hover {
    color: #fff;
}

.navbar .nav > li > a > .label {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  top: 14px;
  right: 6px;
  font-size: 10px;
  font-weight: normal;
  min-width: 15px;
  min-height: 15px;
  line-height: 1.0em;
  text-align: center;
  padding: 2px;
}

.navbar .nav > li > a:hover > .label {
  top: 10px;
}

.navbar-brand {
    padding: 5px 15px;
}
.side-nav > li > a {
    padding: 10px 10px !important;
	width: 100%;
	font-family: "Open Sans",Arial,sans-serif;
	font-weight: 600;
	text-transform: uppercase;
	background: -moz-linear-gradient(top, #fd0101 0%, #bd0e0f 44%, #c10707 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fd0101), color-stop(44%,#bd0e0f), color-stop(100%,#c10707));
	background: -webkit-linear-gradient(top, #fd0101 0%,#bd0e0f 44%,#c10707 100%);
	background: -o-linear-gradient(top, #fd0101 0%,#bd0e0f 44%,#c10707 100%);
	background: -ms-linear-gradient(top, #fd0101 0%,#bd0e0f 44%,#c10707 100%);
	background: linear-gradient(to bottom, #fd0101 0%,#bd0e0f 44%,#c10707 100%);
	background-clip: border-box;
	background-clip: border-box;
	background-clip: border-box;
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a90329', endColorstr='#6d0019',GradientType=0 );
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.side-nav > li > a i{
	font-weight: 600;
	text-transform: uppercase;
	background: -moz-linear-gradient(top, #fd0101 0%, #bd0e0f 44%, #c10707 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fd0101), color-stop(44%,#bd0e0f), color-stop(100%,#c10707));
	background: -webkit-linear-gradient(top, #fd0101 0%,#bd0e0f 44%,#c10707 100%);
	background: -o-linear-gradient(top, #fd0101 0%,#bd0e0f 44%,#c10707 100%);
	background: -ms-linear-gradient(top, #fd0101 0%,#bd0e0f 44%,#c10707 100%);
	background: linear-gradient(to bottom, #fd0101 0%,#bd0e0f 44%,#c10707 100%);
	background-clip: border-box;
	background-clip: border-box;
	background-clip: border-box;
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a90329', endColorstr='#6d0019',GradientType=0 );
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}