/*! lightslider - v1.1.3 - 2015-04-14
* https://github.com/sachinchoolur/lightslider
* Copyright (c) 2015 Sachin N; Licensed MIT */
/** /!!! core css Should not edit !!!/**/ 

.lSSlideOuter {
    overflow: hidden;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}
.lightSlider:before, .lightSlider:after {
    content: " ";
    display: table;
}
.lightSlider {
    overflow: hidden;
    margin: 0;
}
.lSSlideWrapper {
    max-width: 100%;
    overflow: hidden;
    position: relative;
}
.lSSlideWrapper > .lightSlider:after {
    clear: both;
}
.lSSlideWrapper .lSSlide {
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
    -webkit-transition: all 1s;
    -webkit-transition-property: -webkit-transform,height;
    -moz-transition-property: -moz-transform,height;
    transition-property: transform,height;
    -webkit-transition-duration: inherit !important;
    transition-duration: inherit !important;
    -webkit-transition-timing-function: inherit !important;
    transition-timing-function: inherit !important;
}
.lSSlideWrapper .lSFade {
    position: relative;
}
.lSSlideWrapper .lSFade > * {
    position: absolute !important;
    top: 0;
    left: 0;
    z-index: 9;
    margin-right: 0;
    width: 100%;
}
.lSSlideWrapper.usingCss .lSFade > * {
    opacity: 0;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transition-duration: inherit !important;
    transition-duration: inherit !important;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-timing-function: inherit !important;
    transition-timing-function: inherit !important;
}
.lSSlideWrapper .lSFade > *.active {
    z-index: 10;
}
.lSSlideWrapper.usingCss .lSFade > *.active {
    opacity: 1;
}
/** /!!! End of core css Should not edit !!!/**/

/* Pager */
.lSSlideOuter .lSPager.lSpg {
    margin: 10px 0 0;
    padding: 0;
    text-align: center;
}
.lSSlideOuter .lSPager.lSpg > li {
    cursor: pointer;
    display: inline-block;
    padding: 0 5px;
}
.lSSlideOuter .lSPager.lSpg > li a {
    background-color: #222222;
    border-radius: 30px;
    display: inline-block;
    height: 8px;
    overflow: hidden;
    text-indent: -999em;
    width: 8px;
    position: relative;
    z-index: 99;
    -webkit-transition: all 0.5s linear 0s;
    transition: all 0.5s linear 0s;
}
.lSSlideOuter .lSPager.lSpg > li:hover a, .lSSlideOuter .lSPager.lSpg > li.active a {
    background-color: #428bca;
}
.lSSlideOuter .media {
    opacity: 0.8;
}
.lSSlideOuter .media.active {
    opacity: 1;
}
/* End of pager */

/** Gallery */
.lSSlideOuter .lSPager.lSGallery {
    list-style: none outside none;
    padding-left: 0;
    margin: 0;
    overflow: hidden;
    transform: translate3d(0px, 0px, 0px);
    -moz-transform: translate3d(0px, 0px, 0px);
    -ms-transform: translate3d(0px, 0px, 0px);
    -webkit-transform: translate3d(0px, 0px, 0px);
    -o-transform: translate3d(0px, 0px, 0px);
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.lSSlideOuter .lSPager.lSGallery li {
    overflow: hidden;
    -webkit-transition: border-radius 0.12s linear 0s 0.35s linear 0s;
    transition: border-radius 0.12s linear 0s 0.35s linear 0s;
}
.lSSlideOuter .lSPager.lSGallery li.active, .lSSlideOuter .lSPager.lSGallery li:hover {
    border-radius: 5px;
}
.lSSlideOuter .lSPager.lSGallery img {
    display: block;
    height: auto;
    max-width: 100%;
}
.lSSlideOuter .lSPager.lSGallery:before, .lSSlideOuter .lSPager.lSGallery:after {
    content: " ";
    display: table;
}
.lSSlideOuter .lSPager.lSGallery:after {
    clear: both;
}
/* End of Gallery*/

/* slider actions */
.lSAction > a {
    width: 32px;
    display: block;
    top: 50%;
    height: 32px;
    background-image: url('../img/controls.png');
    cursor: pointer;
    position: absolute;
    z-index: 99;
    margin-top: -16px;
    opacity: 0.5;
    -webkit-transition: opacity 0.35s linear 0s;
    transition: opacity 0.35s linear 0s;
}
.lSAction > a:hover {
    opacity: 1;
}
.lSAction > .lSPrev {
    background-position: 0 0;
    left: 10px;
}
.lSAction > .lSNext {
    background-position: -32px 0;
    right: 10px;
}
.lSAction > a.disabled {
    pointer-events: none;
}
.cS-hidden {
    height: 1px;
    opacity: 0;
    filter: alpha(opacity=0);
    overflow: hidden;
}


/* vertical */
.lSSlideOuter.vertical {
    position: relative;
}
.lSSlideOuter.vertical.noPager {
    padding-right: 0px !important;
}
.lSSlideOuter.vertical .lSGallery {
    position: absolute !important;
    right: 0;
    top: 0;
}
.lSSlideOuter.vertical .lightSlider > * {
    width: 100% !important;
    max-width: none !important;
}

/* vertical controlls */
.lSSlideOuter.vertical .lSAction > a {
    left: 50%;
    margin-left: -14px;
    margin-top: 0;
}
.lSSlideOuter.vertical .lSAction > .lSNext {
    background-position: 31px -31px;
    bottom: 10px;
    top: auto;
}
.lSSlideOuter.vertical .lSAction > .lSPrev {
    background-position: 0 -31px;
    bottom: auto;
    top: 10px;
}
/* vertical */


/* Rtl */
.lSSlideOuter.lSrtl {
    direction: rtl;
}
.lSSlideOuter .lightSlider, .lSSlideOuter .lSPager {
    padding-left: 0;
    list-style: none outside none;
}
.lSSlideOuter.lSrtl .lightSlider, .lSSlideOuter.lSrtl .lSPager {
    padding-right: 0;
}
.lSSlideOuter .lightSlider > *,  .lSSlideOuter .lSGallery li {
    float: left;
}
.lSSlideOuter.lSrtl .lightSlider > *,  .lSSlideOuter.lSrtl .lSGallery li {
    float: right !important;
}
/* Rtl */

@-webkit-keyframes rightEnd {
    0% {
        left: 0;
    }

    50% {
        left: -15px;
    }

    100% {
        left: 0;
    }
}
@keyframes rightEnd {
    0% {
        left: 0;
    }

    50% {
        left: -15px;
    }

    100% {
        left: 0;
    }
}
@-webkit-keyframes topEnd {
    0% {
        top: 0;
    }

    50% {
        top: -15px;
    }

    100% {
        top: 0;
    }
}
@keyframes topEnd {
    0% {
        top: 0;
    }

    50% {
        top: -15px;
    }

    100% {
        top: 0;
    }
}
@-webkit-keyframes leftEnd {
    0% {
        left: 0;
    }

    50% {
        left: 15px;
    }

    100% {
        left: 0;
    }
}
@keyframes leftEnd {
    0% {
        left: 0;
    }

    50% {
        left: 15px;
    }

    100% {
        left: 0;
    }
}
@-webkit-keyframes bottomEnd {
    0% {
        bottom: 0;
    }

    50% {
        bottom: -15px;
    }

    100% {
        bottom: 0;
    }
}
@keyframes bottomEnd {
    0% {
        bottom: 0;
    }

    50% {
        bottom: -15px;
    }

    100% {
        bottom: 0;
    }
}
.lSSlideOuter .rightEnd {
    -webkit-animation: rightEnd 0.3s;
    animation: rightEnd 0.3s;
    position: relative;
}
.lSSlideOuter .leftEnd {
    -webkit-animation: leftEnd 0.3s;
    animation: leftEnd 0.3s;
    position: relative;
}
.lSSlideOuter.vertical .rightEnd {
    -webkit-animation: topEnd 0.3s;
    animation: topEnd 0.3s;
    position: relative;
}
.lSSlideOuter.vertical .leftEnd {
    -webkit-animation: bottomEnd 0.3s;
    animation: bottomEnd 0.3s;
    position: relative;
}
.lSSlideOuter.lSrtl .rightEnd {
    -webkit-animation: leftEnd 0.3s;
    animation: leftEnd 0.3s;
    position: relative;
}
.lSSlideOuter.lSrtl .leftEnd {
    -webkit-animation: rightEnd 0.3s;
    animation: rightEnd 0.3s;
    position: relative;
}
/*/  GRab cursor */
.lightSlider.lsGrab > * {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.lightSlider.lsGrabbing > * {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}
.stick-me {
	z-index: 9 !important;
	background-color: #fff;
}
.is-sticky .stick-me {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	transition: 0.3s ease-in-out;
}
.is-sticky .stick-me .padding-bottom-lg {
	padding-bottom: 0;
}
.UserNotes .thumbnail {
	overflow: hidden;
}
/*********** premium Membership ************/
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}
.fa-eye:before {
  content: "\f06e";
}
#PremiumRequestContainer
{
	width:970px;
	margin-right:auto;
	margin-left:auto;
}
.GoPremiumHead
{
	font-size:24px;
	font-weight:bolder;
	text-align:center;
	overflow:hidden;
	color:#008cc9;
	margin:15px;
}
.GoPremiumSubHead
{
	font-size:21px;
	text-align:center;
	overflow:hidden;
	color:#249bce;
	text-align:center;
	margin:0 0 10px 0;
	padding:0;
}
.PremiumInfoSMS
{
	color:#333333;
	font-size:22px;
	text-align:center;
}
.PremiumProductBlock
{
	overflow:hidden;
}
#Premiumblock
{
	transform: translate3d(0,0,0);
	box-shadow: 0 0 4px rgba(0,0,0,.2);
	border-radius: 3px;
	padding:10px;
	color: #0a0a0a;
	margin-bottom:10px;
	
}
#Premiumblock .Thumb
{
	display:block;
	float:right;
	width:110px;
	height:100px;
	border:1px solid #eeeeee;
	border-radius: 3px;
	margin:10px;
}
#Premiumblock .Thumb img
{
	width:110px;
	height:100px;
}
#Premiumblock .Title
{
	display:block;
	line-height:35px;
	font-size:24px;
	margin-top:10px;
	text-overflow: ellipsis;
	overflow:hidden;
}
#Premiumblock .Brief
{
	display:block;
	float:right;
	width:500px;
	height:80px;
	line-height:20px;
	font-size:16px;
	color:gray;
}
#YearFee
{
	color: #006fcc;
	font-weight:500;
	line-height:30px;
	display:block;
	font-size:19px;
}
.YearSelect
{
	width:80px;
	border:1px solid #eeeeee;
	font-size:19px;
	line-height:30px;
}

.SubscribeFor
{
	color: #006fcc;
	line-height:30px;
	display:block;
	font-size:19px;
}
.TotalTitle, .Totalspan
{
	color:black;
	font-size:20px;
	display:inline-block;
	margin:5px;
}
.FooterCart
{
	border-top: 1px solid #eee;
	height:45px;
	line-height:45px;
	color:#979797
}
.FooterCart .Member
{
	height:45px;
	line-height:45px;
	color:#3281a3;
}

.SubscribeBlock
{
	float:left;
	width:280px;
	overflow:hidden;
	margin-right:20px;
}
.SubscribeBlock .Total
{
	display:block;
	font-size:24px;
	color: #006fcc;
	text-align:center;
	margin-bottom:5px;
}
.TotalBeforeShipping .Total, .TotalBeforeShipping  .TotalTitle, .ShippingCostTitle, .ShippingTotal
{
	display:inline-block;
	font-size:21px;
	color: #53565c;
	text-align:center;
	margin-bottom:5px;
	font-weight:Normal !important;
}
.TotalBeforeShipping .Total, .ShippingTotal
{
	text-align:left;
}
.SubscribeButton {
	
	margin-top: 10px;
	padding:20px 12px;
	font-size: 17px;
	border-radius: 5px;
	cursor: pointer;
	
	touch-action: manipulation;
	
	width:100%;
	display:block;
	text-align: center;
	ertical-align: middle;
	display: inline-block;
	border-color: #ffb900;
	font-weight: 500;
	color: #000 !important;
	background: -moz-linear-gradient(top,#fff 0,#ffe6a0 2%,#ffba00 100%);
	background: -webkit-gradient(linear,left top,left bottom,color-stop(0,#fff),color-stop(2%,#ffe6a0),color-stop(100%,#ffba00));
	background: -webkit-linear-gradient(top,#fff 0,#ffe6a0 2%,#ffba00 100%);
	background: -o-linear-gradient(top,#fff 0,#ffe6a0 2%,#ffba00 100%);
	background: -ms-linear-gradient(top,#fff 0,#ffe6a0 2%,#ffba00 100%) #ffba00;
	background: linear-gradient(top,#fff 0,#ffe6a0 2%,#ffba00 100%) #ffba00;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe6a0', endColorstr='#ffba00', GradientType=0);
}
.GrandTotal
{
	display:block;
	font-size:28px;
	color: #006fcc;
	text-align:center;
	margin-bottom:5px;
}
.ContineShoppingButton
{
	margin-top: 10px;
	padding:20px 12px;
	font-size: 17px;
	border-radius: 5px;
	cursor: pointer;
	
	touch-action: manipulation;
	
	width:100%;
	display:block;
	text-align: center;
	ertical-align: middle;
	display: inline-block;
	border-color: #ffb900;
	font-weight: 500;
	color: #000 !important;
	background: -moz-linear-gradient(top,#fff 0,#ffe6a0 2%,#ffba00 100%);
	background: -webkit-gradient(linear,left top,left bottom,color-stop(0,#fff),color-stop(2%,#ffe6a0),color-stop(100%,#ffba00));
	background: -webkit-linear-gradient(top,#fff 0,#ffe6a0 2%,#ffba00 100%);
	background: -o-linear-gradient(top,#fff 0,#ffe6a0 2%,#ffba00 100%);
	background: -ms-linear-gradient(top,#fff 0,#ffe6a0 2%,#ffba00 100%) #ffba00;
	background: linear-gradient(top,#fff 0,#ffe6a0 2%,#ffba00 100%) #ffba00;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe6a0', endColorstr='#ffba00', GradientType=0);
}
.PaymentSubmitorder
{
	margin-top: 10px;
	padding:20px 12px;
	font-size: 17px;
	border-radius: 5px;
	cursor: pointer;
	
	touch-action: manipulation;
	
	width:40%;
	display:block;
	text-align: center;
	ertical-align: middle;
	display: inline-block;
	border-color: #ffb900;
	font-weight: 500;
	color: #000 !important;
	background: -moz-linear-gradient(top,#fff 0,#ffe6a0 2%,#ffba00 100%);
	background: -webkit-gradient(linear,left top,left bottom,color-stop(0,#fff),color-stop(2%,#ffe6a0),color-stop(100%,#ffba00));
	background: -webkit-linear-gradient(top,#fff 0,#ffe6a0 2%,#ffba00 100%);
	background: -o-linear-gradient(top,#fff 0,#ffe6a0 2%,#ffba00 100%);
	background: -ms-linear-gradient(top,#fff 0,#ffe6a0 2%,#ffba00 100%) #ffba00;
	background: linear-gradient(top,#fff 0,#ffe6a0 2%,#ffba00 100%) #ffba00;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe6a0', endColorstr='#ffba00', GradientType=0);
}
.PaymentGoback
{
	margin-top: 10px;
	padding:20px 12px;
	font-size: 17px;
	border-radius: 5px;
	cursor: pointer;
	
	touch-action: manipulation;
	
	width:40%;
	display:block;
	text-align: center;
	ertical-align: middle;
	display: inline-block;
	font-weight: 500;
	
	background: #fff;
	background: -moz-linear-gradient(top,#fff 0,#f6f6f6 100%);
	background: -webkit-gradient(linear,right top,right bottom,color-stop(0,#fff),color-stop(100%,#f6f6f6));
	background: -webkit-linear-gradient(top,#fff 0,#f6f6f6 100%);
	background: -o-linear-gradient(top,#fff 0,#f6f6f6 100%);
	background: -ms-linear-gradient(top,#fff 0,#f6f6f6 100%);
	background: linear-gradient(to bottom,#fff 0,#f6f6f6 100%);
	color: #777;
	border: 1px solid #cdcdcd;
}
/****** V4.0 Shopping cart enhancment *********/ 
#CartItemsBlock
{
	
}
#CartCalculationBlock
{
	margin-top: 20px;
}
#PaymentFormBlock
{
	width:340px;
}
.PaymentMethodSelectBox
{
	border:1px solid #eeeeee;
	font-size:19px;
	line-height:30px;
	width:200px;
}
#PaymentInfoBox
{
	color:#5a647c;
}
/******* Product Page ******/
.ProductTable{
}

.ProductSideThumb{
	border: 1px double gray;
	margin: 1px;
}

.ProductSideMedium{
	border: 1px double gray;
	margin: 1px;
}

.ProductPriceTitle
{
	display: inline;
	font-size: 10px;
	font-weight: bold;
}

.ProductPriceButton{
	display: inline-block;
	margin-right: 20px;
	margin-left: 20px;
}

.ProductPrice{
	display: inline;
	font-weight: bold;
}

/*In caegory page*/
.CategoryBrief{

}

.PinRequest{
	background-color:#fefefe;
	padding:5px;
	margin:6px 0 0 0;
}

.PinRequest a{
	font-weight:bold ;
}

.FilterTable{
}

/*DIV in the category page that contents the products grid*/
.ProductsDiv{
	overflow:hidden;
	clear:both;
}
.vendor-carousel {
	margin-bottom: 10px;
}
.vendor-carousel .carousel-control.left, .vendor-carousel .carousel-control.right {
	background: 0 !important;
}
/*****************************************************************/
.product-block {
	display: block;
	padding: 0;
	margin-top: 10px;
	box-shadow: 0 0 2px #666;
	color: black;
	overflow: hidden;
	background-color: white;
	position: relative;

}
.product-block:hover {
	box-shadow: 0 0 5px #666;

}
.product-block img {
	margin-right: auto;
	margin-left: auto;
}
.product-block .title {
	line-height: 1.5;
	height: 50px;
	overflow: hidden;
	margin: 20px 15px 0px 15px;
	overflow: hidden;
	font-weight: 700;
	font-size: 	15px;
	color: #4e4e4e;

}
.product-block .PriceAndCart {
	margin-bottom: 5px;
	padding: 10px;
	float: Right;
}
.product-block .Brief {
	line-height: 21px;
	color: gray;
	height: 82px;
	overflow: hidden;
	font-size: 14px;
	text-overflow: ellipsis;
	display: block;
	clear: both;
	margin: 10px;
}
.product-block .duration {
	margin-top: 17px;
	margin-bottom: 9px;
	font-weight: 500;
	font-size: 14px;
	color: #8c8c8c;
}
.product-block .duration i {
	width: 20px;
	display: inline-block;
	margin-right: 4px;
	color: #6993e0;
}
.product-block .PriceAndCart {
	font-size: 14px;
}
.product-block .PriceAndCart .price-tag strong, 
.product-block .PriceAndCart .price-tag .crossed-off {
	font-size: 15px;
	color: #4e4e4e !important;
	font-weight: normal;
	display: inline-block;
}
.product-block .PriceAndCart .price-tag .main-price, 
.product-block .PriceAndCart .discount-price, 
.product-block .PriceAndCart .main-price:not(.crossed-off) {
	font-size: 22px;
	font-weight: 800;	
	color: #6993e0;
}
.product-block .PriceAndCart .discount-price,
.product-block .PriceAndCart .main-price:not(.crossed-off) {
	display: block;
	margin-top: 6px;
	letter-spacing: 1px;
}
.main-price.crossed-off {
	text-decoration: line-through;
}
.discount-price {
	font-weight: bolder;
}

.discount-ribbon {
    line-height: 1;
    z-index: 1;
    position: absolute;
    top: 30px;
    font-size: 14px;
    font-weight: 500;
    padding: 14px 20px 14px 20px;
    left: 0;

    color: #ffffff;

	background-color: #e85e34;
}
.morediv {
	text-align: center;
	clear: both;
	margin-bottom: 20px;
	margin-right: auto;
	margin-left: auto;
}
/**************************************/
.side-category.list-group {
	border: 1px solid #ddd;
}
.side-category .list-group-item.active {
	border-radius: 0;
	font-weight: bolder;
}
.side-category .list-group-item:not(.active) {
	border-top: 0;
	border-left: 0;
	border-right: 0;
	border-bottom: 1px dashed #ddd;
	margin-bottom: 0;
	margin-left: 10px;
	margin-right: 10px;
	font-size: 13px;
}
.list-group-container {
	max-height: 300px;
	overflow-y: scroll;
}
.side-search-form .col {
	padding-left: 10px;
	padding-right: 10px;
}

.navbar-default.side-product-page {
	border: 0;
	background-color: transparent;
}
.product-preview-block {

	max-height: 480px;
	overflow: hidden;
	display: table-cell;
	vertical-align: top;
}
.ul-product-thumb {
	width: 70px;
	overflow: hidden;
	display: table-cell;
	padding: 0;
	
}
.ul-product-thumb li {
	height: 55px;
	width: 60px;
	overflow: hidden;
	border:1px solid #e7e7e7;
	margin-bottom: 10px;
	display: block;
	margin-right: 5px;
	margin-left: 5px;
}
.ul-product-thumb li img {
	margin-left: auto;
	margin-right: auto;
	height: 100%;
	width: 100%;
}
.discount-price-large {
	color: #006fcc;
	display: block;
	font-weight: bold;
	font-family: tahoma;
	font-size: 18px;
	line-height: 25px;
}
.main-price-large {
	display: inline-block;
	text-decoration: line-through;
	font-family: tahoma;
	font-size: 14px;
}
.saved-price {
	display: inline-block;
	font-family: tahoma;
	font-size: 14px;
}
@media (min-width: 768px)
{
	.navbar-collapse {
		padding: 0;
	}

}
@media (max-width: 767px)
{
	.product-preview-block {

		height: auto;
	}
	.side-product-page.navbar-default .navbar-collapse {
		background-color: white;
		box-shadow:1px 3px 2px rgba(0,0,0,0.3);
	}
	.side-product-page.navbar-default .navbar-header {
		box-shadow: 0px 0px 4px rgba(0,0,0,0.3);
	}


	.product-block {
		height: auto !important;
		margin-bottom: 15px;
		min-height: auto;
	}
	.product-block .thumb-container { 
		max-height: 150px;
		min-height: 130px;
		overflow: hidden;
	}
	.product-block .PriceAndCart {
		font-size: 14px;
		/*height: 20px;
		line-height: 20px;*/
		overflow: hidden;
	}
	.product-block h5.title {
		font-size: 14px;
		line-height: 20px;
		height: 43px;
		margin-bottom: 5px;
		text-overflow:ellipsis;

	}
	.product-block .Brief {
		display: none;
	}

}
@media (min-width: 768px) and (max-width: 991px) 
{
	.product-block {
		height: 294px;
		min-height: auto;
	}
}
/*Small Product Div( usedin category page)*/
/*
.ProductSmall{
	border: 1px solid silver;
	float:Left;
	width:260px;
	height:150px;
	overflow:hidden;
	display:inherit;
	margin: 5px;
	padding:3px;
}

.ProductSmall div.Title {
	overflow: hidden;
	line-height:18px;
	clear:both;
	height:35px;
}
.ProductSmall a.Title {
	display:block;
	float:Left;
	width:170px;
	color: #74A3BA;
	font-weight: bold;
}
.ProductSmall a.Title:hover {
	color: black;
}
.ProductSmall .PriceAndCart {
	float:Right;
	
}
.ProductSmall .Price{
	float:Right;
	font-family:arial !important;
	font-size:12px;
	direction:ltr;
}
.ProductSmall .Cart{
	float:Right;
}

.ProductSmall .Brief {
	font-size:11px;
}

.ProductSmall .Thumb {
	display:block;
	float: Right;
	border:#FEFBF3 1px solid ;
	margin:3px;
}
.ProductSmall .Thumb img{
	border:none;
	display:block;
}
*/
/*
.CategoriesGridTable{
	margin:1px;
	padding:1px;
}

.CategorySmall{
	border: 1px solid #ddd;
	float:Left;
	margin: 5px;
	width:260px;
	height:150px;
	overflow:hidden;
}

.CategorySmall .Title {
	overflow: hidden;
	white-space: nowrap;
	height:22px;
	line-height:22px;
	margin:0 4px 0 4px;
}
.CategorySmall .Title a {
	color: #74A3BA; 
	font-weight: bold;
}

.CategorySmall .Thumb {
	float: Right;
	margin:0 4px 0 3px;
}

.CategorySmall .Brief{
	font-size: 11px;
	margin:0 4px 0 4px;
}
*/
/********** Organization list page *********/
.organization-small-section {
	margin-bottom: 30px;
}
.organization-small
{
    width:100%;
    display:block;
    overflow:hidden;
    position:relative;
    
}
.organization-small::before
{
    background: rgba(0,0,0,0.2);
    width:100%;
    height:100%;
    display:block;
    overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;

	content: '';
	z-index: 2;

	transition:0.4s ease-in-out;
}
.organization-small:hover::before
{
    background: rgba(0,0,0,0.1);

}
.organization-small .img-thumb
{
    width:100%;
    padding-top: 90%;
    
    background-size:cover;
    transition:0.4s ease-in-out;
    transform: scale(1,1);
}
.organization-small:hover .img-thumb
{
    
    transform: scale(1.05,1.05);
}

.organization-small span.Title
{
    position:absolute;
    bottom:0;
    left:0;
    background: rgba(0, 0, 0, 0.3);
    color:white;
    height: 35px;
    line-height: 35px;
    text-overflow: ellipsis;
    white-space:nowrap;
    display: block;
	width: 100%;
	text-align: center;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    
}
@media (max-width: 767px) 
{
	.organization-small::before {
		display: none;
	}
	.organization-small span.Title
	{
	    
	    height: 36px;
	    line-height: 18px;
	    white-space:normal !important;
	    display: block;
		width: 100%;
		text-align: center;
		font-size: 80%;
		text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
	    
	}
}
/*******************************************/
.category-small
{
    width:100%;
    height:140px;
    display:block;
    overflow:hidden;
    position:relative;
    margin-bottom: 20px;
    
}
.category-small .img-thumb
{
    width:100%;
    height:100%;
    
    background-size:cover;
    transition:0.35s ease-in-out;
}
.category-small:hover .img-thumb
{
    transform: scale(1.25,1.25);
}
.category-small span.Darken
{
    background-color: rgba(5,5,5,.4);
    width:100%;
    height:100%;
    display:block;
}
.category-small span.Title
{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    color:White;
    white-space:nowrap;
}
/******* Product ******/

.ProductSmall .ProductThumb {
	border: 1px solid silver;
	float: Right;
	margin: 3px;
}

.ProductTiny .ProductThumb {
	border: 1px solid silver;
	margin: 3px;
}
.ProductSide {
	display: inline;
	float: right;
	margin: 5px 0;
}
.ProductSideWarp {
	height: 5px;
}
.ProductPriceForm {
}
.ProductPrice {
	display: inline;
}
#ProductThumbsSide {
	height: 590px;
	overflow-y: scroll;
}

#ProductViewSide {
	height: 100%;
	width:640px;
}
#ProductViewSide .Title{
	font-weight:bold;
	background-color: #F4EDDE;
	padding:5px;
	font-size:120%;
	margin:0 0 5px 0;
	height:30px;
	line-height:30px;
}
#ProductViewSide .Player{
	margin:0 0 5px 0;
}
#ProductViewSide .Description{
	background-color: #F4EDDE;
	padding:5px;
	height:50px;
	overflow:auto;
}


.ProductGalleryThumb {
	border: 1px solid gray;
	margin-bottom: 2px;
}

.CartTable{
	border-color: #333331;
	text-align:center;
	border-collapse: collapse;
}

.CartTable .TrTitle td{
	background-color: #0d455f;
	color: white;
	font-weight: bolder;
	padding-bottom: 3px;
	padding-top: 3px;
	text-align: center;
}

.CartTable .TrTitle2 td{
	BACKGROUND-COLOR: #F2F2F2;
	padding-bottom: 3px;
	padding-top: 3px;
}

.CartTable .Tr1 td{
	background-color: #EFE4C5;
	font-weight: bolder;
	padding-bottom: 3px;
	padding-top: 3px;
	text-align: center;
}

.CartTable .Tr2 td{
	font-weight: bolder;
	padding-bottom: 7px;
	padding-top: 7px;
	text-align: center;
	background-color:#F2F2F2;
}
.CartTable .TrTitle .FormButton{
	border:1px solid white;
	background-color: #ff8d00;
	color: white;
	font-family:arial;
	font-size:16px;
	font-weight: bolder;
	padding-bottom: 3px;
	padding-top: 3px;
	padding-left:20px;
	padding-right:20px;
	text-align: center;
	cursor: pointer;
}

.FormImagebutton{
}


.OrdersFilterTable{
	border:1px #fefefe solid;   
	background-color: #eee;
}

/* My Orders Page */
.OrdersTable{
	border:0;
}

.OrdersTable .TrTitle td{
	background-color: #D27214;
	color: white;
	font-weight: bolder;
	padding-bottom: 7px;
	padding-top: 7px;
	text-align: center;
}

.OrdersTable .Tr1 td{
	background-color: #F2F2F2;
	font-weight: bolder;
	padding-bottom: 7px;
	padding-top: 7px;
	text-align: center;
}

.OrdersTable .Tr2 td{
	font-weight: bolder;
	padding-bottom: 7px;
	padding-top: 7px;
	text-align: center;
}


/** Order Details page **/

.OrderTable{
	border:0   ;
}

.OrderTable .TrTitle {
	background-color: #D27214;
	font-weight: bolder;
	padding-bottom: 4px;
	padding-top: 4px;
	text-align: center;
	color:white;
}

.OrderTable .TDTitle{
	background-color: #F2F2F2;
	padding-bottom: 4px;
	padding-top: 4px;
	text-align: center;
	color:#637BAD;
}

.OrderTable .TDPlain{
	background-color:#FDF8EC;
	padding-bottom: 4px;
	padding-top: 4px;
	text-align: center;
}


.LongComobField
{
	border:#dfd3b7 1px solid;
	FONT-SIZE: 12px;
	background-color:white;
	color:black;
	width:200px;
}
/**************************************/
.PleaseWaitWhileProcessing
{
	Text-align:center;
	font-size:30px;
	line-height:40px;
	height:40px;
	margin:20px;
	color:#008cc9;
}
.ProcessingclockContainer
{
	position:relative;
	width:145px;
	height:145px;
	margin-right:auto;
	margin-left:auto;
	overflow:hidden;
}
#clock
{
	position:absolute;
	left: 50%;
	 top: 50%;
	transform: translate(-50%, -50%);
}
#clock span
{
	font-size:36px;
	color:rgba(0, 140, 201, 0.5);
}
#Processingclock,
#Processingclock:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}
#Processingclock {
  margin: 10px auto;
  font-size: 10px;
  
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(0, 140, 201, 0.2);
  border-right: 1.1em solid rgba(0, 140, 201, 0.2);
  border-bottom: 1.1em solid rgba(0, 140, 201, 0.2);
  border-left: 1.1em solid #008cc9;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}
@-webkit-keyframes load8 {
  0% {
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
  }
  100% {
	-webkit-transform: rotate(360deg);
	transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
  }
  100% {
	-webkit-transform: rotate(360deg);
	transform: rotate(360deg);
  }
}
/*****************************************************************************/
/*******  My Product Form ***********/
.new-form-container {
    margin: 10px 0 20px 0;
    box-shadow: 0px 0px 2px silver;
    border-top:5px solid #00bcd4;
    border-bottom: 5px solid #00bcd4;
    box-sizing: border-box;
    padding: 10px;
}
.my-product-row {
	margin-bottom: 20px;
}
.my-product-block {
	padding-top: 25px;
	padding-bottom: 20px;
}
.product-brief {
	max-height: 68px;
	overflow: hidden;
}
.my-product-info {
	min-height: 28px;
}
.tiny-controls-button{
	margin-top: 5px;
	margin-right: -10px;
	margin-left: -10px;
}
.tiny-controls-button i {
	width: 35px;
	height: 35px;
	line-height: 33px;
	text-align: center;
	overflow: hidden;
	background-color: white;
	color: white;
	border-radius: 50%;
	display: inline-block;
	transition: 0.3s ease-in-out;
}
.tiny-controls-button i:hover {
	background-color: #337ab7;
}
.tiny-controls-button i::before {
	color: #337ab7;
	font-size: 17px;
	transition: 0.3s ease-in-out;
}
.tiny-controls-button i:hover::before {
	color: white;
}
.product-detail-tabs .tab-pane {
	padding-top: 15px;
}
#Details_EN_fontselect_text, #Details_AR_fontselect_text, .mce_blockquote, 
.mce_indent, .mce_pasteword, .mce_redo, .mce_undo, 
.mce_row_props, .mce_cell_props, .mce_row_before, 
.mce_delete_row, .mce_outdent, .mce_merge_cells, .mceSeparator,
.mce_cleanup, .mce_pastetext
{
	display: none !important;
}
table.mceLayout, textarea.richEditor {
   width: 100% !important;
}
/******************************************/
.controls-button i {
	width: 30px;
	height: 30px;
	line-height: 28px;
	text-align: center;
	overflow: hidden;
	background-color: white;
	color: white;
	border-radius: 50%;
	display: inline-block;

	transition: 0.3s ease-in-out;
}
.controls-button a.delete i {
	background-color: #c01919;	
	border:#c01919 1px solid;
}
.controls-button a.edit i {
	background-color: #337ab7;
	border:#337ab7 1px solid;
}
.controls-button a.delete i:hover {
	background-color: #ffffff;
	color: #c01919;
}
.controls-button a.edit i:hover {
	background-color: #ffffff;
	color: #337ab7;
}
.controls-button i::before {
	color: #ffffff;
	font-size: 15px;
	transition: 0.3s ease-in-out;
}
.controls-button a.delete i:hover::before {
	color: #c01919;
}
.controls-button a.edit i:hover::before {
	color: #337ab7;
}

.text-ellipsis {
	white-space: nowrap;
	text-overflow: ellipsis;
}

.price-row {
	padding: 20px;
	border-top: 4px solid #1593ff;
	border-left: 1px solid #e8e9ec;
	border-right: 1px solid #e8e9ec;
	border-bottom: 1px solid #e8e9ec;
}
.btn.add-to-cart {
	border-radius: 25px;
}
.input-group-select {
	padding: 3px;
	width: 70px;
}
.input-group-select select.form-control {
	line-height: 21px;
	height: 21px;
	padding: 0 5px;
}
.FlagChange {
	color: white;
}
.FlagChange:hover, .FlagChange:focus {
	color: #2cd1e4;
}
.select-country-box {
	z-index: 99999;
	min-width: 100px !important;

}

.product-page-container .tab-content {
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	min-height: 350px;

}

.product-page-container .nav-tabs.nav-justified {
	background-color: #fbfbfb;
}

.product-page-container .product-detail-tabs .tab-pane {
	padding: 20px;
}
/******* Viber Whatsapp messenger ***********/
.product-contactul {
    list-style: none;
    margin: 20px 0 0 0;
    padding: 0;
    font-size: 20px;
    width: 100%;
    display: block;
    text-align: center;
}
.product-contactul li {
    display: inline-block;
    text-align: center;
    margin: 0 12px;
    overflow: hidden;
    line-height: 27px;
}
.product-contactul a {

    color: white;
    padding-right: 10px;
    display: block;
}
.product-contactul i::before {

    font-size: 34px;
}
.ordering-notes { 
	font-size: 12px;
	color: red;
 }
/*****************************************/
@media (min-width: 992px) and (max-width: 1199px) 
{
	.my-product-block {
		padding-top: 10px;
		padding-bottom: 12px;
	}
}
@media (min-width: 768px) and (max-width: 991px) 
{
	.my-product-block {
		padding-top: 10px;
		padding-bottom: 10px;
	}
	.product-brief {
		height: 42px;
	}
}
@media (max-width: 767px) 
{
	.product-title {
		font-size: 14px;
		white-space: nowrap;
		
		overflow: hidden;
	}
	.my-product-block {
		padding-top: 5px;
		padding-bottom: 0;
		clear: both;
	}
	.product-brief {
		height: 22px;
	}

	.tiny-controls-button i {
		width: 28px;
		height: 28px;
		line-height: 26px;
	}

	.product-page-container .nav-tabs.nav-justified {
		border-left: 1px solid #ddd;
		border-right: 1px solid #ddd;
		border-top-right-radius: 4px;
		border-top-left-radius: 4px;
	}
}
