[ng\:cloak],
[ng-cloak],
[data-ng-cloak],
[x-ng-cloak],
.ng-cloak,
.x-ng-cloak {
	display: none !important;
}


/** Bootstrap Over rides */

body {
	font-family: 'Nunito', sans-serif !important;
	background-image: url(https://s3.ap-south-1.amazonaws.com/madhuras-images-production/seller-assets/bg.png);
    background-size: 417px 417px;
	animation-name: movebg;
  	animation-duration: 20s;
	animation-iteration-count: infinite
}

@keyframes movebg {
	0%   {background-position: 0% 1%;}
	50%  {background-position: 0% 100%;}
	100% {background-position: 0% 1%;}
  }
  

.mont {
	font-family: 'Montserrat', sans-serif !important;
}

.bg-white {
	background: white
}

.logo {
	width: 60%;
}

.league {
	font-family: 'League Spartan', sans-serif;
}

.tag-line {
	font-family: 'League Spartan', sans-serif;
	font-weight: 800;
	font-size: 3.5rem;
	margin: 3rem 0 0 0;
	letter-spacing: -2px;
}

.playstore {
	width: 200px
}

.qrcode {
	width: 250px
}

.page-header {
	margin: 0;
}

.navbar-inverse .navbar-brand {
	color: white
}

.navbar-fixed-bottom,
.navbar-fixed-top {
	z-index: 2
}

.bodybg .navbar-inverse {
	background-color: #fff;
	border-color: #eee;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.16), 0 1px 6px rgba(0, 0, 0, 0.23)/*0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);*/
	;
}

.navbar-inverse .navbar-toggle:focus,
.navbar-inverse .navbar-toggle:hover {
	background-color: inherit
}

.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
	border-color: #fafafa
}

.navbar-inverse .navbar-nav>li>a,
.navbar-inverse .navbar-nav>li>a:focus,
.navbar-inverse .navbar-nav>li>a:hover {
	/*color: #fff*/
}

.navbar-inverse .navbar-nav > li > a {
	color: #000
}

.navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
	color: #000;
}

.bodybg .navbar-inverse .navbar-nav>li>a,
.bodybg .navbar-inverse .navbar-nav>li>a:focus,
.bodybg .navbar-inverse .navbar-nav>li>a:hover {
	color: #000
}

.navbar-inverse .navbar-toggle .icon-bar {
	background-color: #000
}

.bodybg .navbar-inverse .navbar-nav>.open>a,
.navbar-inverse .navbar-nav>.open>a:focus,
.navbar-inverse .navbar-nav>.open>a:hover {
	background-color: #f7f7f7
}

.navbar-inverse .navbar-nav>.open>a,
.navbar-inverse .navbar-nav>.open>a:focus,
.navbar-inverse .navbar-nav>.open>a:hover {
	color: #000000
}

.input-group-btn:last-child>.btn,
.input-group-btn:last-child>.btn-group {
	margin-left: 0;
}

.carousel-inner>.item>a>img,
.carousel-inner>.item>img,
.img-responsive,
.thumbnail a>img,
.thumbnail>img {
	display: initial
}

.btn {
	padding: 9px 14px;
}

.modal-content {
	border: none;
}

.modal-header {
	margin-bottom: 0
}

.modal-body {
	padding: 16px;
	margin-top: 0
}

.modal.in .modal-dialog {
	overflow: hidden;
}

.glyphicon {
	top: 2px !important;
}

.glyphicon-star {
	color: #f39c12
}

.navbar-brand {
	padding: 0px;
}

.navbar-brand>img {
	height: 100%;
	padding: 6px;
	width: auto;
}

.panel {
	box-shadow: 0 1px 3px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
}

.panel-success>.panel-heading {
	color: white;
	background-color: #2ecc71;
}

.panel-danger>.panel-heading {
	color: white;
	background-color: #e74c3c;
}



@media (min-width: 1024px) {
	.padright-0 {
		padding-right: 0;
	}
}

@media (min-width: 1200px) {
	.padright-0 {
		padding-right: 0;
	}

	.container {
		width: 1170px;
	}

	.banner-slider {
		height: 314px;
		margin-left: 15px;
		margin-right: 15px;
	}

	.nav_default_address {
		max-width: 280px;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
	}
}

@media (min-width: 768px) {
	.content-top {
		margin-top: 25vh;
	}
	.desktop-only {
		display: block;
		margin: auto;
	}
	.mobile-only {
		display: none;
	}
	.modal-sm {
		width: 400px;
	}
}


/**	END */


/** Loader */

.modal-showbox {
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1%;
}

.showbox {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1%;
}

.loader {
	position: relative;
	margin: 0 auto;
	width: 50px;
}

.loader:before {
	content: '';
	display: block;
	padding-top: 100%;
}

.circular {
	-webkit-animation: rotate 2s linear infinite;
	animation: rotate 2s linear infinite;
	height: 100%;
	-webkit-transform-origin: center center;
	transform-origin: center center;
	width: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}

.path {
	stroke-dasharray: 1, 200;
	stroke-dashoffset: 0;
	-webkit-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
	animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
	stroke-linecap: round;
}

@-webkit-keyframes rotate {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes rotate {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-webkit-keyframes dash {
	0% {
		stroke-dasharray: 1, 200;
		stroke-dashoffset: 0;
	}
	50% {
		stroke-dasharray: 89, 200;
		stroke-dashoffset: -35px;
	}
	100% {
		stroke-dasharray: 89, 200;
		stroke-dashoffset: -124px;
	}
}

@keyframes dash {
	0% {
		stroke-dasharray: 1, 200;
		stroke-dashoffset: 0;
	}
	50% {
		stroke-dasharray: 89, 200;
		stroke-dashoffset: -35px;
	}
	100% {
		stroke-dasharray: 89, 200;
		stroke-dashoffset: -124px;
	}
}

@-webkit-keyframes color {
	100%,
	0% {
		stroke: #d62d20;
	}
	40% {
		stroke: #0057e7;
	}
	66% {
		stroke: #008744;
	}
	80%,
	90% {
		stroke: #ffa700;
	}
}

@keyframes color {
	100%,
	0% {
		stroke: #d62d20;
	}
	40% {
		stroke: #0057e7;
	}
	66% {
		stroke: #008744;
	}
	80%,
	90% {
		stroke: #ffa700;
	}
}


/* END */


/** Modal effects */


/* General styles for the modal */

.custom-modal-footer {
	margin-top: 20px
}

.custom-modal-footer-text {
	color: #a9a9a9;
}

.modal-close-icon {
	position: absolute;
	right: 15px;
	top: 15px;
}

div.apple-pay {
	display:flex;align-items: center;justify-content: space-evenly;margin: 2rem 0
}

.iphone-btn:hover {
	color: #fff
}


/** Propeller over rides */

@media (max-width: 767px) {

	body {
		background-image: url(/assets/images/mobile-background.png);
		background-size: 100% auto;
		animation: none;
		background-repeat: no-repeat;
		background-size: cover;
	}

	.iphone-btn {
		border: 1px solid #858585;
		background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#ccc));
	}

	.mobile-only {
		display: block;
		margin: auto;
	}

	.desktop-only {
		display: none;
	}

	.logo {
		width: 80%;
	}

	.tag-line {
		font-size: 2rem;
		margin: 2rem 0;
		letter-spacing: -1px;
		color: #ff8d38fa;
		font-style: italic
	}

	.qrcode {
		background-color: #fff;
	}

	.mobile-text-white {
		color: #fff;
	}

	.mobile-btn-light {
		background-color: #fff !important;
	}

	.mobile-text-dark {
		color: #1d1d1d !important;
	}

	.content-top {
		margin-top: 5vh;
	}

	.pmd-navbar .navbar-toggle {
		margin-top: 15px
	}

	.navbar-nav {
		width: 100%;
		margin: 0
	}

	.navbar-inverse .navbar-nav .open .dropdown-menu>li>a {
		color: #181818
	}

	.navbar-inverse .navbar-nav .open .dropdown-menu .divider {
		background-color: #eeeeee
	}

	.navbar-nav .dropdown .dropdown-menu .dropdown-header,
	.navbar-nav .dropdown .dropdown-menu>li>a {
		line-height: 34px
	}

	.banner-slider {
		display: none
	}

	div.apple-pay {
		flex-direction: column;
	}
}

.pmd-card-title {
	margin-bottom: 0px;
}

.pmd-card-title .pmd-card-title-text {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.pmd-navbar .navbar-nav>li>a {
	text-transform: initial
}

.pmd-navbar .navbar-form {
	padding: 0
}

.pmd-card-body {
	/*margin-top: 0;*/
}

.pmd-card-body p {
	margin: 0;
}

.tab-content>button.active {
	display: initial
}

.pmd-success-tabs-bg {
	background-color: #2ecc71
}


/**	END */

/** General */

.mtop15 {
	margin-top: 15px
}

p.sold-by {
	max-width: 280px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.numberCircle {
    width: 120px;
    line-height: 120px;
    border-radius: 50%;
    text-align: center;
    font-size: 20px;
    border: 4px solid #fe6c00;
    margin: auto;
}


/* Home page CSS */

.bodybg {
	background-color: #ededed
}

.home-content .form-control:focus {
	border-color: #888;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(0, 0, 0, .6);
}

.home-content h1,
.home-content p {
	color: white
}

.home-content .input-lg {
	height: 35px;
	font-size: inherit;
}

.search-form {
	margin-top: 15px
}

.homebg {
	background: white;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.search-heading {
	font-size: 35px;
	font-weight: 100
}

.search-subline {
	font-size: 20px;
	font-weight: 100;
}

.btn-home-search {
	background-color: #fe6c00;
	color: #fff;
}

.btn-home-search:active,
.btn-home-search:focus,
.btn-home-search:hover,
.btn-home-search:visited,
.btn-home-search:active:focus,
.btn-home-search:active:hover {
	background-color: #fe6c00 !important;
	color: #fff;
}

.home-search-location-arrow {
	position: absolute;
	z-index: 5;
	background-color: transparent;
	border: none;
	padding: 6px 12px;
	font-size: 16px
}

.city-input {
	padding-left: 30px;
}

.top-cont {
	margin: 65px 0 0 0;
}

.banner-slider {
	margin-top: 15px;
}

.popular-sweets-slider {
	margin-top: 15px
}

.offPer label {
	position: absolute;
	top: 10px;
	z-index: 2;
}

.actual-price {
	color: #888888;
	font-size: 0.775rem
}

.discounted {
	color: #2ecc71;
}

.home-top-search .input-group {
	width: 100%
}

.home-top-search .input-group input {
	height: 54px;
}

.home-top-search .input-group-btn button {
	height: 53px;
}

.home-top-search .navbar-form .input-group .form-control,
.navbar-form .input-group .input-group-addon,
.navbar-form .input-group .input-group-btn {
	width: 1px;
}

.btn {
	text-transform: initial;
}

.btn-dark {
	background-color: #161616;
}

.pac-container {
	z-index: 100000;
}


/** Quantity box css */

.btn-qty {
	min-width: 50px;
}

.qty-box {
	min-width: 60px
}

.label-cart-items {
	vertical-align: middle;
}


/* hide default quantity arrows*/

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	/* display: none; <- Crashes Chrome on hover */
	-webkit-appearance: none;
	margin: 0;
	/* <-- Apparently some margin are still there even though it's hidden */
}

.modal-close {
	position: absolute;
	right: 15px;
	top: 10px;
	z-index: 2
}

.btn-with-icon i.material-icons {
	font-size: 14px;
}

.btn-add-to-cart-modal {
	margin-top: 10px;
}

.btn-add-to-favorite-modal {
	margin-top: 10px;
}

.razorpay-payment-button {
	background-color: #52B3D9;
}

.product-title a {
	color: inherit;
}

.product-title a:hover,
a.seller-title:hover {
	text-decoration: underline;
}

.md-icon {
	font-size: 40px;
}

.md-added-to-cart-icon i {
	color: cadetblue;
}

.md-warning-icon {
	color: chocolate
}


/* END */


/* Product Details Css */
.product-details {
	background: white;
	padding-top: 15px;
}

.product-details h4 {
	font-size: 18px;
}

.product-details h3 {
	font-size: 24px;
	margin-top: 20px;
	margin-bottom: 10px;
}

.product-details .pre-cost {
	text-decoration: line-through;
	color: #a5a5a5;
}

.product-details .space-ten {
	padding: 10px 0;
}

.product-details .icon-group .icon {
	margin: 0 5px 0 px;
	width: 25px;
}

.product-details .ip-surface::after {
	content: "";
	width: 0;
	height: 0;
}

.error-template {
	padding: 40px 15px;
	text-align: center;
}

.error-actions {
	margin-top: 15px;
	margin-bottom: 15px;
}

.error-actions .btn {
	margin-right: 10px;
}

.icon-border {
	border: 1px solid;
	padding: 2px;
}


/* END */


/**	Cart Summary Section */

.cart-summary .cart-summary-items {
	margin: 15px 0 0 0;
}

.cart-summary-title,
.panel-heading h3 {
	margin-top: 5px;
}

.panel-heading h3 {
	margin-bottom: 0
}

.summary-share-cart {
	margin-right: 10px
}

.cart-total-text {
	text-align: right
}

.cart-remove {
	text-decoration: underline;
}

.btn-slot {
	margin-left: 10px;
}

.btn-default.selected-slot.focus,
.btn-default.selected-slot:focus,
.btn-default.selected-slot:hover,
.btn-default:active.focus,
.btn-default:active:focus,
.btn-default:active:hover,
.open>.dropdown-toggle.btn-default.focus,
.open>.dropdown-toggle.btn-default:focus,
.open>.dropdown-toggle.btn-default:hover,
.selected-slot {
	background-color: #27ae60;
	color: white;
}


/** END */


/* Animations */

.highlight {
	background-color: #fafafa;
	animation-name: highlight;
	animation-duration: 1s;
}

@keyframes highlight {
	from {
		background-color: lightyellow;
	}
	to {
		background-color: #fafafa;
	}
}


/* Sprites */

.madhuras-emoticons {
	display: block;
}

.madhuras-emoticon-happy {
	width: 130px;
	height: 130px;
	background: url('/assets/images/emoticons.png') -35px -28px;
}

.mauto {
	margin: auto;
}


/** END */


/**	Footer */

.footer1 {
	padding-top: 40px;
	padding-right: 0;
	padding-bottom: 20px;
	padding-left: 0;
}

.title-widget {
	color: #898989;
	font-size: 20px;
	font-weight: 300;
	line-height: 1;
	position: relative;
	text-transform: uppercase;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 25px;
	margin-left: 0;
	padding-left: 28px;
}

.title-widget::before {
	background-color: #ea5644;
	content: "";
	height: 22px;
	left: 0px;
	position: absolute;
	top: -2px;
	width: 5px;
}

.widget_nav_menu ul {
	list-style: outside none none;
	padding-left: 0;
}

.widget_archive ul li {
	background-color: rgba(0, 0, 0, 0.3);
	content: "";
	height: 3px;
	left: 0;
	position: absolute;
	top: 7px;
	width: 3px;
}


.widget_nav_menu ul li {
	font-size: 13px;
	font-weight: 700;
	line-height: 20px;
	position: relative;
	text-transform: uppercase;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	margin-bottom: 7px;
	padding-bottom: 7px;
	width: 95%;
}

.title-median {
	color: #636363;
	font-size: 20px;
	line-height: 20px;
	margin: 0 0 15px;
	text-transform: uppercase;
}

#social:hover {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
}

#social {
	-webkit-transform: scale(0.8);
	/* Browser Variations: */
	-moz-transform: scale(0.8);
	-o-transform: scale(0.8);
	-webkit-transition-duration: 0.5s;
	-moz-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
}


/* Only Needed in Multi-Coloured Variation */

.social-fb:hover {
	color: #3B5998;
}

.social-tw:hover {
	color: #4099FF;
}

.social-gp:hover {
	color: #d34836;
}

.social-em:hover {
	color: #f39c12;
}

.nomargin {
	margin: 0px;
	padding: 0px;
}

.footer-bottom {
	background-color: #ffffff;
	min-height: 30px;
	width: 100%;
	box-shadow: 0 1px 3px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
}

.fixed-bottom {
	position: fixed;
	z-index: 2;
	bottom: 0;
}

.copyright {
	line-height: 30px;
	min-height: 30px;
	padding: 7px 0;
}

.design {
	line-height: 30px;
	min-height: 30px;
	padding: 7px 0;
	text-align: right;
}

.design a {
	color: #000000;
}

.min-height {
	min-height: 100vh
}

.top-buffer {
	margin-top: 20px;
}

.address-card {
	min-height: 200px;
	cursor: pointer
}

.address-card:hover {
	-webkit-transition: all .25s ease;
	-moz-transition: all .25s ease;
	-o-transition: all .25s ease;
	-ms-transition: all .25s ease;
	transition: all .25s ease;
	border-bottom: 5px solid #2ecc71
}

.address-card-selected {
	-webkit-transition: all .25s ease;
	-moz-transition: all .25s ease;
	-o-transition: all .25s ease;
	-ms-transition: all .25s ease;
	transition: all .25s ease;
	border-bottom: 5px solid #2ecc71
}

.address-selected-icon {
	text-align: center;
	width: 100%;
	font-size: 20px;
	color: #2ecc71;
	bottom: 5px;
}

.address-not-serviceable-icon {
	text-align: center;
	width: 100%;
	color: #e74c3c;
	bottom: 5px;
}

.address-not-serviceable-icon i {
	font-size: 20px;
}


/* RADIO BUTTONS */

.checkbox {
	padding-left: 20px;
}

.checkbox label {
	display: inline-block;
	position: relative;
	padding-left: 5px;
}

.checkbox label::before {
	content: "";
	display: inline-block;
	position: absolute;
	width: 17px;
	height: 17px;
	left: 0;
	margin-left: -20px;
	border: 1px solid #cccccc;
	border-radius: 3px;
	background-color: #fff;
	-webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
	-o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
	transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}

.checkbox label::after {
	display: inline-block;
	position: absolute;
	width: 16px;
	height: 16px;
	left: 0;
	top: 0;
	margin-left: -20px;
	padding-left: 3px;
	padding-top: 1px;
	font-size: 11px;
	color: #555555;
}

.checkbox input[type="checkbox"] {
	opacity: 0;
}

.checkbox input[type="checkbox"]:focus+label::before {
	outline: thin dotted;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
}

.checkbox input[type="checkbox"]:checked+label::after {
	font-family: 'FontAwesome';
	content: "\f00c";
}

.checkbox input[type="checkbox"]:disabled+label {
	opacity: 0.65;
}

.checkbox input[type="checkbox"]:disabled+label::before {
	background-color: #eeeeee;
	cursor: not-allowed;
}

.checkbox.checkbox-circle label::before {
	border-radius: 50%;
}

.checkbox.checkbox-inline {
	margin-top: 0;
}

.checkbox-primary input[type="checkbox"]:checked+label::before {
	background-color: #428bca;
	border-color: #428bca;
}

.checkbox-primary input[type="checkbox"]:checked+label::after {
	color: #fff;
}

.checkbox-danger input[type="checkbox"]:checked+label::before {
	background-color: #d9534f;
	border-color: #d9534f;
}

.checkbox-danger input[type="checkbox"]:checked+label::after {
	color: #fff;
}

.checkbox-info input[type="checkbox"]:checked+label::before {
	background-color: #5bc0de;
	border-color: #5bc0de;
}

.checkbox-info input[type="checkbox"]:checked+label::after {
	color: #fff;
}

.checkbox-warning input[type="checkbox"]:checked+label::before {
	background-color: #f0ad4e;
	border-color: #f0ad4e;
}

.checkbox-warning input[type="checkbox"]:checked+label::after {
	color: #fff;
}

.checkbox-success input[type="checkbox"]:checked+label::before {
	background-color: #5cb85c;
	border-color: #5cb85c;
}

.checkbox-success input[type="checkbox"]:checked+label::after {
	color: #fff;
}

.radio {
	padding-left: 20px;
}

.radio label {
	display: inline-block;
	position: relative;
	padding-left: 5px;
}

.radio label::before {
	content: "";
	display: inline-block;
	position: absolute;
	width: 17px;
	height: 17px;
	left: 0;
	margin-left: -20px;
	border: 1px solid #cccccc;
	border-radius: 50%;
	background-color: #fff;
	-webkit-transition: border 0.15s ease-in-out;
	-o-transition: border 0.15s ease-in-out;
	transition: border 0.15s ease-in-out;
}

.radio label::after {
	display: inline-block;
	position: absolute;
	content: " ";
	width: 11px;
	height: 11px;
	left: 3px;
	top: 3px;
	margin-left: -20px;
	border-radius: 50%;
	background-color: #555555;
	-webkit-transform: scale(0, 0);
	-ms-transform: scale(0, 0);
	-o-transform: scale(0, 0);
	transform: scale(0, 0);
	-webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
	-moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
	-o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
	transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
}

.radio input[type="radio"] {
	opacity: 0;
}

.radio input[type="radio"]:focus+label::before {
	outline: thin dotted;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
}

.radio input[type="radio"]:checked+label::after {
	-webkit-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	-o-transform: scale(1, 1);
	transform: scale(1, 1);
}

.radio input[type="radio"]:disabled+label {
	opacity: 0.65;
}

.radio input[type="radio"]:disabled+label::before {
	cursor: not-allowed;
}

.radio.radio-inline {
	margin-top: 0;
}

.radio-primary input[type="radio"]+label::after {
	background-color: #428bca;
}

.radio-primary input[type="radio"]:checked+label::before {
	border-color: #428bca;
}

.radio-primary input[type="radio"]:checked+label::after {
	background-color: #428bca;
}

.radio-danger input[type="radio"]+label::after {
	background-color: #d9534f;
}

.radio-danger input[type="radio"]:checked+label::before {
	border-color: #d9534f;
}

.radio-danger input[type="radio"]:checked+label::after {
	background-color: #d9534f;
}

.radio-info input[type="radio"]+label::after {
	background-color: #5bc0de;
}

.radio-info input[type="radio"]:checked+label::before {
	border-color: #5bc0de;
}

.radio-info input[type="radio"]:checked+label::after {
	background-color: #5bc0de;
}

.radio-warning input[type="radio"]+label::after {
	background-color: #f0ad4e;
}

.radio-warning input[type="radio"]:checked+label::before {
	border-color: #f0ad4e;
}

.radio-warning input[type="radio"]:checked+label::after {
	background-color: #f0ad4e;
}

.radio-success input[type="radio"]+label::after {
	background-color: #5cb85c;
}

.radio-success input[type="radio"]:checked+label::before {
	border-color: #5cb85c;
}

.radio-success input[type="radio"]:checked+label::after {
	background-color: #5cb85c;
}


/* Address Card */

.addess-card h4 {
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}


/* Product Card */

.product-card .pmd-card-media {
	border-bottom: solid 1px #eee;
	height: 185px;
	position: relative;
	width: 100%;
}

.product-card .pmd-card-media a {
	width: 100%
}

.center-img {
	left: 50%;
	margin: 0;
	top: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	position: absolute;
	max-height: 100%;
}


/* Add To Cart */

.add-to-cart .input-group-btn select {
	border-color: #ccc;
	margin-top: 0px;
	margin-bottom: 0px;
	padding-top: 7px;
	padding-bottom: 7px;
	color: #000000;
}


/* Shop Detail */

.scrollable-menu {
	height: auto;
	max-height: 400px;
	overflow-x: hidden;
}

.shop-detail .pmd-tab-filter-wrapper .media-body {
	overflow: visible;
}

.pointer {
	cursor: pointer;
}


/* Orders */

.orders .orders-list .rating {
	font-size: 20px;
}

.orders hr {
	margin-top: 10px;
    margin-bottom: 10px;
}

.order-header {
	color: white !important;
	background-color: #2c3e50 !important;
	font-weight: bold;
}

.nopad-margin {
	padding: 0;
	margin: 0
}

.order-placed-header {
	color: #2ecc71;
	font-weight: 600
}


.order-placed-card svg {
	width: 100px;
	display: block;
	margin: 40px auto 0;
}


.order-placed-card .path {
	stroke-dasharray: 1000;
	stroke-dashoffset: 0;
}


.order-placed-card  .path.circle {
	-webkit-animation: check-dash 0.9s ease-in-out;
	animation: check-dash 0.9s ease-in-out;
}


.order-placed-card  .path.line {
	stroke-dashoffset: 1000;
	-webkit-animation: check-dash 0.9s 0.35s ease-in-out forwards;
	animation: check-dash 0.9s 0.35s ease-in-out forwards;
}


.order-placed-card .path.check {
	stroke-dashoffset: -100;
	-webkit-animation: dash-check 0.9s 0.35s ease-in-out forwards;
	animation: dash-check 0.9s 0.35s ease-in-out forwards;
}

@-webkit-keyframes check-dash {
	0% {
		stroke-dashoffset: 1000;
	}
	100% {
		stroke-dashoffset: 0;
	}
}

@keyframes check-dash {
	0% {
		stroke-dashoffset: 1000;
	}
	100% {
		stroke-dashoffset: 0;
	}
}

@-webkit-keyframes dash-check {
	0% {
		stroke-dashoffset: -100;
	}
	100% {
		stroke-dashoffset: 900;
	}
}

@keyframes dash-check {
	0% {
		stroke-dashoffset: -100;
	}
	100% {
		stroke-dashoffset: 900;
	}
}




/* Order end */


/* Refund pop up */

.case-head  {
	font-weight: 600
}

.refund-item-checked {
	font-size: 20px;
	color: #2ecc71;
}

.upload-image-preview {
	width: 100px;
	margin-right: 15px;
    margin-top: 15px;
}

.br-5 {
	border-radius: 5px;
}

.text-white {color: #fff}