html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	font-weight: inherit;
	font-style: inherit;
	font-family: inherit;
	vertical-align: baseline
}

.caption {
	background: rgba(255, 255, 255, 0.9);
	position: relative;
	z-index: 2;
	font-size: 14px;
	line-height: 17px;
	width: 100%;
	text-align: center;
	color: var(--font-color);
	margin-bottom: 10px;
	padding: 5px 10px;
	border: 1px solid var(--grey-shade-light3);
	border-top: 2px solid var(--main-primary-color)
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
	display: block
}

* {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased
}

a {
	text-decoration: none
}

body {
	line-height: 1
}

ol,
ul {
	list-style-type: none
}

table {
	border-collapse: collapse;
	border-spacing: 0
}

caption,
th,
td {
	text-align: left;
	font-weight: normal
}

button,
input[type="button"] {
	background: 0
}


/*:required{-webkit-box-shadow:none;-moz-box-shadow:none;-o-box-shadow:none;-ms-box-shadow:none;box-shadow:none}*/
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox */
input[type=number] {
	-moz-appearance: textfield;
}

.form-control:focus,
.btn.focus,
.btn:focus {
	box-shadow: none
}

em,
i {
	font-style: italic
}

strong,
b {
	font-weight: bold
}

u {
	text-decoration: underline
}

pre,
code {
	font-family: Monaco, Courier, monospace
}

pre {
	white-space: pre;
	white-space: pre-wrap;
	white-space: pre-line;
	word-wrap: break-word
}

blockquote,
q {
	quotes: "" ""
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: ""
}

a,
input[type="submit"],
input[type="button"],
button,
label[for] {
	cursor: pointer
}

img {
	-ms-interpolation-mode: bicubic
}

img {
	box-sizing: border-box;
	max-width: 100%;
	height: auto
}

a,
a:focus,
a:active {
	outline: 0 none;
}


/* Change Autocomplete styles in Chrome*/

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
	border: 1px solid var(--font-color);
	-webkit-text-fill-color: var(--font-color);
	-webkit-box-shadow: 0 0 0px 1000px var(--black) inset;
	transition: background-color 5000s ease-in-out 0s;
}

.pre-flex {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}

.pre-flex-center {
	-webkit-box-align: center;
	-webkit-flex-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.pre-flex-0 {
	-webkit-flex: 0 0 auto;
	-moz-flex: 0 0 auto;
	flex: 0 0 auto;
}

.pre-flex-1 {
	-webkit-flex: 1;
	-moz-flex: 1;
	flex: 1;
}

.hr-footer {
	background-color: var(--main-primary-color);
	height: 1px;
	border: none;
	margin: 10px 0;
	max-width: 100%;
	border-radius: 5px;
}

.head-a {
	font-weight: var(--font-light);
	font-size: 2.5rem;
	line-height: normal;
	color: var(--main-secondary-color);
	position: relative;
}

.head-a:after {
	content: '';
	width: 105px;
	height: 2px;
	display: block;
	margin: 15px auto;
	background-color: var(--main-primary-color);
}

.small-heading {
	font-size: 1.5rem;
	font-weight: var(--font-bold);
	text-transform: uppercase;
}

/* Input type */

.form-control.input-a,
.form-control.textarea-a,
.form-control.select-a {
	font-weight: var(--font-regular);
	font-size: 20px;
	line-height: 25px;
	color: var(--main-secondary-color);
	border: 0;
	border-radius: 5px;
	box-shadow: none;
	background-color: var(--white);
	border: 1px solid var(--main-secondary-color);
	border-radius: 0;
}

.form-control.input-a {
	height: 52px;
}

.form-control.select-a {
	height: 52px;
	font-size: 18px;
}

.form-control.textarea-a {
	resize: none;
	min-height: 101px;
}

.form-control.select-a {
	z-index: 1;
	background-image: url('../images/select-down.png');
	background-position: calc(100% - 10px) center;
	background-repeat: no-repeat;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	padding-right: 30px;
}

option:checked,
option:hover {
	color: white;
	background: var(--main-primary-color) repeat url("data:image/gif;base64,R0lGO...");
}


.form-control::-webkit-input-placeholder {
	color: var(--grey-shade-light);
}

.form-control::-moz-placeholder {
	color: var(--grey-shade-light);
}

.form-control:-ms-input-placeholder {
	color: var(--grey-shade-light);
}

.form-control:-moz-placeholder {
	color: var(--grey-shade-light);
}


/** **/

.radio,
.checkbox {
	margin: 0;
}

.checkbox+.checkbox,
.radio+.radio {
	margin: 0;
}

.check-a,
.radio-a {
	position: absolute;
	opacity: 0;
}

.check-a+label,
.radio-a+label {
	position: relative;
	cursor: pointer;
	padding-left: 40px;
}

.check-a+label:before,
.radio-a+label:before {
	content: '';
	margin-right: 10px;
	display: inline-block;
	vertical-align: text-top;
	width: 25px;
	height: 25px;
}

.check-a+label:before,
.radio-a+label:before {
	position: absolute;
	left: 0;
	border: 1px solid var(--main-primary-color);
}

.radio-a+label:before {
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.check-a:checked+label:before,
.radio-a:checked+label:before {
	border-color: var(--main-primary-color-shade1-light);
}

.check-a:checked+label,
.radio-a:checked+label {
	color: var(--main-primary-color-shade1-light);
}

.check-a:checked+label small,
.radio-a:checked+label small {
	color: var(--grey-shade-light3);
}

.check-a:disabled+label .radio-a:disabled+label {
	color: var(--grey-shade-light2);
	cursor: auto;
}

.check-a:disabled+label:before,
.radio-a:disabled+label:before {
	box-shadow: none;
}

.check-a:checked+label:after {
	content: '';
	position: absolute;
	left: 9px;
	margin: auto;
	top: 4px;
	width: 8px;
	height: 14px;
	border: solid var(--main-primary-color-shade1-light);
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.radio-a:checked+label:after {
	content: '';
	position: absolute;
	left: 7px;
	top: 7px;
	background: white;
	width: 11px;
	height: 11px;
	background: var(--main-primary-color-shade1-light);
	background-position: center;
	background-repeat: no-repeat;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}


/* */

.btn {
	-ms-transition: all 0.4s ease;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
	text-decoration: none;
	display: inline-block;
}


/** **/

.btn.btn-a {
	font-weight: var(--font-dark-bolder);
	font-size: 1rem;
	line-height: 30px;
	border-radius: 0;
	z-index: 0;
	position: relative;
	padding: 10px;
	text-align: center;
	color: var(--white);
	background-color: var(--button-color);
	border: 0;
}

.btn.btn-a:hover {
	color: var(--white);
	background: rgba(var(--button-hover-rgb), 0.6);
}


/** **/

.btn.btn-b {
	background-color: var(--main-primary-color);
	border: 0;
	font-weight: var(--font-regular);
	font-size: 1.25rem;
	border-radius: 0;
	padding: 0.55rem 3rem;
	color: var(--white);
}

.btn.btn-b:hover {
	color: var(--white);
	background-color: var(--button-hover);
}


/** **/

.btn.btn-c {
	background-color: var(--main-secondary-color);
	border: 0;
	font-weight: var(--font-dark-bolder);
	font-size: 1.25rem;
	border-radius: 0;
	padding: 0.85rem 2.5rem;
	color: var(--white);
}

.btn.btn-c:focus,
.btn.btn-c:hover {
	background-color: var(--main-secondary-color);
}

.min-a {
	min-width: 200px;
}

body {
	font-family: var(--font);
	line-height: 1.35;

}

/* .linkbox-con {
	margin-left: 20px;
} */


/** **/
.payment-method .form-group {
	border: 1px solid var(--grey-shade-light3);
	border-radius: 5px;
	color: var(--grey-shade-light);
	margin: 0
}

.payment-method label {
	margin: 0 0 5px;
	font-size: 20px;
	font-weight: 600;
}

.payment-method .form-group label {
	margin: 0;
	margin-left: 10px;
	font-weight: 500;
	color: var(--grey-shade-dark)
}

.payment-method .form-group input[type="radio"] {
	width: 20px;
	height: 20px;
	position: relative;
	top: 3px
}

.upi-order-detail {
	margin: 15px 0px;
	border: 1px solid;
	padding: 10px;
	font-size: 16px;
}

.upi-order-detail td {
	overflow-wrap: break-word;
	word-break: break-word;
	padding-bottom: 10px;
}

.bar-cols {
	display: block;
	position: relative;
	top: -2.5px;
	margin: 0;
	border: none;
	background: transparent;
}

.bar-rows {
	width: 25px;
	height: 2px;
	background-color: #0d1c2f;
	display: block;
}

.bar-rows+.bar-rows {
	margin-top: 4px;
}

.bar-cols .bar-rows:nth-of-type(2) {
	top: 1px;
}

.bar-cols .bar-rows:nth-of-type(3) {
	top: 2px;
}

.bar-cols .bar-rows {
	position: relative;
	transition: all 200ms ease-in-out;
}

.bar-cols.active .bar-rows:nth-of-type(1) {
	top: 7px;
	transform: rotate(45deg);
}

.bar-cols.active .bar-rows:nth-of-type(2) {
	background-color: transparent;
}

.bar-cols.active .bar-rows:nth-of-type(3) {
	top: -5px;
	transform: rotate(-45deg);
}


/** **/

.link-icon {
	position: relative;
}

.link-icon .card-numbers {
	font-weight: var(--font-dark-bolder);
	font-size: 12px;
	line-height: 18px;
	font-family: 'Brandon Text', sans-serif;
	color: var(--white);
	height: 18px;
	width: 18px;
	position: absolute;
	right: -9px;
	top: -8px;
	border-radius: 50%;
	display: inline-block;
	background-color: var(--main-primary-color);
	text-align: center;
	padding-left: 4px;
	padding-right: 4px;
}

.link-icon svg,
.link-icon i {
	fill: var(--main-secondary-color);
	width: 25px;
	height: 25px;
	color: var(--main-primary-color);
	font-size: 25px;
}

.link-with-text {
	width: 100px;
	font-size: 18px;
	position: relative;
	padding-left: 34px;
	line-height: 25px;
	text-transform: uppercase;
	font-weight: var(--font-bold)
}

.link-with-text a {
	color: var(--main-primary-color);
}

.link-with-text a:hover {
	text-decoration: none;
	color: var(--main-secondary-color)
}

.link-with-text .link-icon {
	position: absolute;
	left: 0;
}

/* .call-bt {
	font-size: 18px;
	line-height:25px;
	width: 100px;
} */


/** **/

.banner-section {
	background-color: var(--black);
	position: relative;
}

.banner-captions h1 {
	font-weight: var(--font-light);
	font-size: 3rem;
	color: var(--white);
	line-height: 1;
	word-break: break-all;
}

.banner-captions hr {
	background-color: var(--main-primary-color);
	height: 3px;
	border: none;
	max-width: 171px;
	border-radius: 5px;
}

.banner-captions h4 {
	font-weight: var(--font-light);
	font-size: 2.625rem;
	color: var(--white);
	letter-spacing: 10px;
}

.banner-captions .btn-primary {
	background-color: var(--button-color);
	border: 0;
	font-size: 1.25rem;
	border-radius: 0;
	padding: 0.9375rem 3.125rem;
}

.banner-captions .btn-primary:hover {
	background: rgba(194, 129, 52, 0.6);
}

.row-xt {
	padding: 30px 0;
	min-height: 600px;
}


/** **/

.content-section {
	box-shadow: 0 -5px 7px rgba(0, 0, 0, .1);
	position: relative;
	background-color: var(--white);
	margin-top: -150px;
	padding: 30px 30px 15px;
}


/** **/

.search-bar {
	background-image: url('../images/search-icon.png');
	background-repeat: no-repeat;
	background-position: calc(100% - 15px);
}

.sort-by {
	white-space: nowrap;
	margin-right: 15px;
	font-size: 20px;
	color: var(--main-secondary-color);
}

.shad-one {
	text-align: center;
}


/** **/

.products-card {
	border: 1px solid #eaeaea;
	padding: 15px 15px;
	background-color: var(--grey-shade-light4);
	margin-bottom: 15px;
	box-shadow: 0 4px 7px rgba(0, 0, 0, .1);
}

.products-thumbs {
	height: 200px;
	line-height: 185px;
	text-align: center;
	position: relative;
}

.products-thumbs .product-image {
	display: inline-table;
	vertical-align: middle;
	max-height: 180px;
}

.products-caps {
	/* max-height: 185px; */
	min-height: 185px;
}

.products-head-a,
.products-head-a a {
	font-weight: var(--font-dark-bolder);
	font-size: 1.2rem;
	color: var(--main-secondary-color);
	text-transform: uppercase;
	max-height: 70px;
	overflow: hidden;
	padding: 0 10px;
}

.prod-price {
	height: 50px;
	position: relative;
}

.products-text-a {
	font-weight: var(--font-light);
	font-size: 1.2rem;
	line-height: 1.2;
	color: var(--main-secondary-color);
}

.popup-vdo,
.popup-img {
	width: 43px;
	height: 43px;
	background-color: var(--main-secondary-color);
	-webkit-border-radius: 50%;
	border-radius: 50%;
	display: block;
	line-height: 40px;
	position: absolute;
	right: 0;
	text-decoration: none;
}

.popup-img span svg,
.popup-vdo span svg {
	display: inline-table;
	vertical-align: middle;
	max-width: 23px;
	max-height: 23px;
	fill: var(--white);
}

.popup-img img,
.popup-vdo img {
	display: inline-table;
	vertical-align: middle;
	max-width: 40px;
	max-height: 40px;
}

.popup-img {
	top: 0;
}

.popup-vdo {
	top: 50px;
}

.top-bar {
	background-color: var(--main-primary-color);
}

/** **/

.footer {
	padding: 10px 0;
}

.copy-right {
	font-size: 1.125rem;
	line-height: 1.5;
	color: var(--main-secondary-color);
}

.copy-right a {
	color: var(--main-secondary-color);
}

.copy-right img {
	vertical-align: middle;
}

.watsapp-chat {
	position: fixed;
	right: 15px;
	bottom: 65px;
	z-index: 3;
}


/** **/

.modal-dialog {
	width: 100%;
	max-width: 330px;
	margin: 0.5rem auto;
}

#ConfirmOrder .modal-dialog {
	max-width: 800px
}

.header-thumb img {
	max-width: 80px;
	width: 100%
}

.modal-content.modal-content-box {
	padding: 0.50rem 1.5rem;
	position: relative;
}

.modal-content.modal-content-box button.close,
#ProductDetails button.close {
	width: 30px;
	height: 30px;
	line-height: 24px;
	font-size: 31px;
	display: block;
	position: absolute;
	right: 10px;
	top: 9px;
	background-color: var(--main-primary-color);
	border-radius: 50%;
	opacity: 1;
	color: var(--white);
	padding: 0;
}

#ProductDetails button.close {
	right: 10px;
	top: 9px;
}

button.close:focus,
button.close:hover {
	outline: 0;
	border: 0;
	background-color: var(--main-secondary-color) !important;
	opacity: 1 !important;
}

.request-head-a {
	font-weight: var(--font-regular);
	font-size: 1.5rem;
	color: var(--main-secondary-color);
	position: relative;
}

.request-head-a:after {
	content: '';
	width: 75px;
	height: 2px;
	display: block;
	margin: 8px auto 30px;
	background-color: var(--main-primary-color);
}

.input-group.input-group-a .input-group-text {
	background: white;
	border: 1px solid var(--main-secondary-color);
	border-right: 0;
	padding: .375rem 0.5rem;
	border-radius: 0;
}

.input-group.input-group-a .input-group-text img {
	max-width: 20px;
}

.input-group.input-group-a .form-control {
	height: 45px;
	box-shadow: none;
	font-size: 1.15rem;
	color: var(--main-secondary-color);
	border: 1px solid var(--main-secondary-color);
	border-left: 0;
	padding-left: 5px;
	border-radius: 0;
}

.form-control:disabled,
.form-control[readonly] {
	color: var(--grey-shade-light2) !important;
}

.otp-text {
	font-size: 0.9rem;
	color: var(--main-secondary-color);
}

.powered-by {
	color: var(--main-secondary-color);
	font-size: 0.8rem;
}

.powered-by img {
	max-width: 80px;
}

.powered-by a {
	display: table;
	margin: 5px auto 10px;
}

.mobile-thumb i,
.mobile-thumb svg {
	font-size: 3.5rem;
	color: var(--main-primary-color);
	width: 65px;
	fill: var(--main-primary-color);
}

.input-group.input-group-a .input-group-text i,
.input-group-text svg {
	font-size: 1.25rem;
	width: 20px;
	fill: var(--main-primary-color);
	color: var(--main-primary-color);
}

.input-group.input-group-a textarea.form-control {
	height: 100px;
}


/** **/

.input-group-otp .input-group-col {
	padding-left: 5px;
	padding-right: 5px;
}

.input-group-otp .form-control {
	border-radius: 0;
	border: 0;
	font-size: 1.2rem;
	font-weight: var(--font-bold);
	border-bottom: 3px solid var(--main-secondary-color);
	text-align: center;
	color: var(--main-secondary-color);
	padding: 0;
}

.otp-text a {
	text-decoration: underline;
	color: var(--main-secondary-color);
}

.otp-text-a {
	font-size: 1rem;
	color: var(--main-secondary-color);
}

#timer {
	font-weight: var(--font-bold);
}

.modal-backdrop {
	background-color: var(--main-secondary-color);
}

.modal-backdrop.show {
	opacity: .95;
}

.list-languages>li {
	text-align: left;
	padding-left: 5rem;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px dashed var(--main-primary-color);
	color: var(--main-secondary-color);
}

.table-head {
	background: var(--main-secondary-color);
	color: var(--white);
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
	border-color: var(--button-hover);
	background: var(--button-hover)
}

.table-body {
	border-bottom: 1px solid black;
	position: relative;
}

.table-body:last-child {
	border-bottom: 0
}

.shop-cart-prod-img {
	max-width: 100px;
	width: 100%;
}

.shop-cart-prod-name {
	color: var(--grey-shade-dark);
	font-size: 16px;
	line-height: 23px;
	font-weight: 700;
}

.shop-cart-prod-name a {
	word-break: break-all;
	color: var(--main-secondary-color);
}

.shop-cart-prod-price {
	display: block;
	margin: 5px 0 10px;
}

textarea.notes {
	width: 100%;
	display: block;
	padding: 10px;
	font-size: 14px;
	margin-top: 5px;
	color: #777;
	border: 1px solid;
	height: 50px;
}

.shop-cart-prod-total-quantity {
	display: block
}

.prod-quantity .shop-cart-prod-quantity {
	width: 100%;
	max-width: 150px;
	border: 1px solid;
	float: left;
	clear: both;
	text-align: center;
	padding: 8px 0;
	display: block;
}

.prod-quantity .shop-cart-prod-quantity a {
	padding: 2px 5px;
	font-size: 20px;
	line-height: 25px;
	font-weight: var(--font-dark-bolder);
	color: #d2a36a
}

.shop-cart-prod-action {
	display: block;
	text-align: center;
}

.shop-cart-prod-action svg {
	width: 30px;
	height: 30px;
	fill: var(--main-primary-color);
}

.total-order-block {
	width: 100%;
	padding: 25px;
	background: var(--grey-shade-light4);
	border: 1px solid #e3e3e3;
	-webkit-box-shadow: 0px 5px 8px 0px rgba(24, 24, 25, 0.13);
	-moz-box-shadow: 0px 5px 8px 0px rgba(24, 24, 25, 0.13);
	box-shadow: 0px 5px 8px 0px rgba(24, 24, 25, 0.13);
}

h3.subheading {
	color: var(--main-secondary-color);
	font-weight: var(--font-light);
	font-size: 29px;
	position: relative;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

h3.subheading:before {
	content: "";
	position: absolute;
	bottom: 0;
	width: 100px;
	height: 2px;
	background: var(--main-primary-color);
}

.order-block-price {
	display: block;
	font-size: 38px;
	color: var(--grey-shade-dark);
	font-weight: bold;
	margin: 0 0 40px;
}

.link-bt {
	border-radius: 0;
	padding: 0.9375rem 2.125rem;
	margin-bottom: 5px;
	font-size: 20px;
	display: block;
	text-align: center;
	color: var(--white);
}

.link-bt:hover {
	color: var(--white);
	text-decoration: none;
}

.back-brown-color {
	background: var(--main-primary-color);
}

.brown-color {
	color: var(--main-primary-color);
}

.carousel-inner img {
	width: 100%;
	height: 100%;
	object-fit: scale-down;
}

#custCarousel .carousel-indicators {
	position: static;
	margin-top: 0px;
	margin-right: 0;
	margin-left: 0;
	list-style: none;
	display: inline-block;
	text-align: center;
	width: 100%;
}

.carousel-item {
	height: 100%;
	width: 100%;
	text-align: center;
}

#custCarousel .carousel-indicators>li {
	max-width: 80px;
	max-height: 80px;
	border: 1px solid #b0b0b0;
	display: inline-block;
	width: 20%;
	margin-right: 0;
	overflow: hidden;
}

#custCarousel .carousel-indicators li img {
	display: block;
	opacity: 0.5;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

#custCarousel .carousel-indicators li.active img {
	opacity: 1
}

#custCarousel .carousel-indicators li:hover img {
	opacity: 0.75
}

.carousel-item img {
	width: 70%
}

.video-thumb,
.vdo_thumb {
	position: relative;
	display: block
}

.video-thumb:before,
.vdo_thumb:before {
	position: absolute;
	content: "\f144";
	font-family: "Font Awesome 5 Free";
	font-weight: 800;
	background: var(--white);
	opacity: 0.7;
	border-radius: 50%;
	left: 0;
	z-index: 2;
	top: 25%;
	left: 25%;
	font-size: 30px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	color: var(--main-primary-color)
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
	height: 35px;
	width: 35px;
	filter: brightness(0.1)
}

.vdo_thumb:before {
	left: 44%;
	top: 41%;
	font-size: 60px;
	width: 60px;
	height: 60px;
	line-height: 60px;
}

.carousel-indicators li {
	text-indent: 0;
}

.carousel-indicators li {
	height: 100%
}

.banner-full {
	width: 100%;
	max-height: 350px;
}

#slider {
	margin-bottom: 30px
}

/* The sticky class is added to the header with JS when it reaches its scroll position */
.sticky {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 99;
	background: var(--white);
	box-shadow: 0 5px 5px -5px var(--grey-shade-light3);
}

/* Add some top padding to the page content to prevent sudden quick movement (as the header gets a new position at the top of the page (position:fixed and top:0) */
.sticky+.content {
	padding-top: 102px;
}



@media (max-width:767px) {
	#custCarousel .carousel-indicators>li {
		width: 80px;
		height: 80px;
	}

	.form-control.select-a {
		width: 10px;
		position: relative;
	}

	.form-control.select-a {
		background: #fff url('../images/3-dots-vertical.png');
		background-repeat: no-repeat;
		background-position: center;
		background-size: 13% auto;
	}

	.prod-detail-section h2 {
		font-size: 1.2rem;
	}

	.table-head {
		display: none
	}

	.table-body,
	.table-body:last-child {
		/*border: 1px solid; */
		margin-bottom: 20px;
		background: #f4f4f4;
	}

	.shop-cart-prod-total-quantity {
		margin: 10px 0;
		text-align: left;
		font-size: 25px;
		font-weight: var(--font-dark-bolder);
	}

	.shop-cart-prod-quantity {
		margin: 10px 0;
		font-size: 16px;
	}

	.shop-cart-prod-quantity a {
		font-size: 40px;
		line-height: 20px;
	}

	.table-body .col-lg-2 {
		position: static;
	}

	.shop-cart-prod-action {
		position: absolute;
		top: -27px;
		right: -9px;
	}

	.shop-cart-prod-action svg {
		font-size: 22px;
		width: 22px;
		height: 22px;

	}
}

h3.subheading {
	color: var(--main-secondary-color);
	font-weight: var(--font-light);
	font-size: 25px;
	position: relative;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

h3.subheading:before {
	content: "";
	position: absolute;
	bottom: 0;
	width: 100px;
	height: 2px;
	background: var(--main-primary-color);
}

.link-bt {
	background-color: var(--button-color);
	border-radius: 0;
	padding: 0.9375rem 2.125rem;
	margin-bottom: 5px;
	font-size: 20px;
	display: block;
	text-align: center;
	color: var(--white);
}

.link-bt:hover {
	color: var(--white);
	text-decoration: none;
	background-color: var(--button-hover);
}

.link-bt i {
	margin-right: 10px;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
	border-color: var(--button-hover);
	background: var(--button-hover)
}

.details-prod-information {
	overflow-wrap: break-word;
	word-break: break-word;
}

.details-prod-information>div {
	margin-bottom: 30px;
	line-height: 28px;
	font-size: 16px;
}

.details-prod-information>div.price-unit {
	font-size: 20px;
}

.details-prod-information ul li {
	position: relative;
	padding-left: 15px
}

.details-prod-information ul li:before {
	content: "\f111";
	font-family: "Font Awesome 5 Free";
	position: absolute;
	font-size: 8px;
	left: 0;
	font-weight: 800;
	color: var(--main-primary-color);
}

.shop-cart-prod-quantity {
	width: 100%;
	max-width: 140px;

	border: 1px solid;
	display: inline-block;
	text-align: center;
	padding: 5px 0;


}

.shop-cart-prod-quantity a {
	padding: 2px 7px;
	font-size: 10px;
	line-height: 20px;
	font-weight: var(--font-dark-bolder);
	color: #d2a36a;
	height: 100%;
}

.slider {
	margin: 0px 0 10px !important;
}

#carousel li {
	margin-right: 5px;
}

#carousel img {
	display: block;
	opacity: .5;
	cursor: pointer;
}

#carousel img:hover {
	opacity: 1;
}

#carousel .flex-active-slide img {
	opacity: 1;
	cursor: default;
}

.back-brown-color {
	background: var(--main-primary-color)
}

.brown-color {
	color: var(--main-primary-color);
}

.dark-blue-color {
	color: var(--main-secondary-color)
}

.back-dark-blue-color {
	background: var(--main-secondary-color)
}

.flex-direction-nav a:before {
	color: var(--main-primary-color)
}

h2.logo-div {
	max-width: none;
	overflow: hidden;
	max-height: 65px;
	position: relative;
}

h2.logo-div.max-string {
	max-width: 360px;
	line-height: normal;
	max-height: 65px;
}

a.custom-logo-link {
	color: var(--main-primary-color);
	font-size: 25px;
	line-height: 65px;
	text-decoration: none;
	padding: 0 5px;
}

h2.logo-div.max-string a.custom-logo-link {
	font-size: 18px;
	line-height: normal;
	/* margin-left: 5px; */
	display: block;
	padding: 10px 0;
}

img.main-logo {
	max-width: 100px;
	height: 65px;
	float: left;
	width: auto;
	max-height: 65px;
	/* max-width: 20%; */
	object-fit: contain;
	margin-right: 10px;
	position: relative;
	top: 0;
}

h2.logo-div.max-string img.main-logo {
	top: -10px;
}

.modal img.main-logo {
	float: none;
	margin: 0 auto
}

/*#ProductDetails{
 	-webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    top: 50%;
    left: 50%;
    -webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}*/

#ProductDetails .modal-dialog {
	max-width: 1000px;
	width: 95%;
	margin: 20px auto;
	height: 100%;
	-webkit-transform: scale(0.1);
	-moz-transform: scale(0.1);
	-ms-transform: scale(0.1);
	transform: scale(0.1);
	top: 120px;
	opacity: 0;
	-webkit-transition: all 0.7s;
	-moz-transition: all 0.7s;
	transition: all 0.7s;
}

#ProductDetails.show .modal-dialog {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	-webkit-transform: translate3d(0, -120px, 0);
	transform: translate3d(0, -120px, 0);
	opacity: 1;
}


#ProductDetails .modal-header {
	border-bottom: 0;
	background: #f0f0f0;
	padding: 10px;
	width: 100%
}

#ProductDetails .modal-content.modal-content-box {
	padding: 20px;
	position: absolute;
	height: 100%;
	overflow: auto;
	border: 0;
	border-radius: 0 0 .3rem .3rem;
}

.prod-detail-section {
	padding: 20px 0;
}

.prod-detail-section h2 {
	font-size: 1.8rem;
	font-weight: var(--font-regular);
	word-break: break-all;
}

/* .model-prod-description {
	height: 100%;
	overflow-x: auto;
} */

.link-nav-bar {
	position: relative;
	text-align: center;
	padding: 10px;
	width: 100%
}

.link-nav-bar .direction-links {
	position: absolute;
	font-size: 36px;
	color: var(--main-primary-color);
	top: -2px;
}

.link-nav-bar .direction-links.prev {
	left: 0
}

.link-nav-bar .direction-links.next {
	right: 0
}

.contact-links {
	display: inline-block;
	margin: 0 auto
}

.call-link,
.watsapp-share-link {
	background-color: var(--main-secondary-color);
	margin: 0 5px;
	border-radius: 20px;
	font-size: 16px;
	color: var(--white);
	text-transform: uppercase;
	padding: 8px 20px;
}

.call-link:hover,
.watsapp-share-link:hover {
	color: var(--white);
	text-decoration: none;
	background-color: var(--main-primary-color);
}

.call-link svg,
.watsapp-share-link svg {
	width: 20px;
	height: 20px;
	fill: var(--white);
	position: relative;
	top: -2px;
	margin-right: 5px;
}

.error_msg {
	color: var(--error-msg);
	font-size: 15px;
	font-weight: 600;
}

.err_div {
	color: var(--error-msg);
	font-size: 15px;
	font-weight: 600;
	position: relative;
	display: inline-block;
	width: 100%;
	text-align: left;
}

@media (max-width:576px) {

	.text-sm-left {
		text-align: left !important
	}

	.text-sm-right {
		text-align: right !important
	}

	.text-sm-center {
		text-align: center !important
	}

	.shop-cart-prod-quantity a {
		font-size: 13px;
		line-height: 20px;
		font-weight: var(--font-dark-bolder);
	}

	.head-a:after {
		margin: 5px auto 15px;
	}



}

.success-title-a {
	font-weight: var(--font-light);
	font-size: 2.125rem;
	color: var(--main-secondary-color);
}

.success-title-b {
	font-weight: var(--font-light);
	font-size: 1.5rem;
	color: var(--main-secondary-color);
}

.succes-thumbs {
	text-align: center;
	background: url('../images/svg-bg-img.png') no-repeat center center;
	background-size: auto 100%;
	height: 100%;
	width: 100%;
	max-height: 240px;
	line-height: 230px;
}

.succes-thumbs svg {
	width: 80px;
	fill: var(--main-primary-color)
}

.succes-thumbs img {}

.btn-thanks {
	font-weight: var(--font-dark-bolder);
	font-size: 1.25rem;
	line-height: 30px;
	border-radius: 0;
	z-index: 0;
	position: relative;
	padding: 12px 25px;
	text-align: center;
	color: var(--white);
	background-color: var(--button-color);
	border: 0;
}

.btn.btn-thanks:hover {
	color: var(--white);
	background-color: var(--button-hover);
}

@media (min-width: 1025px) {
	.banner-captions {
		position: absolute;
		top: 25%;
		left: 0;
		right: 0;
		transform: translateY(-25%);
	}
}

@media (min-width: 768px) and (max-width: 1024.95px) {
	.banner-captions {
		position: absolute;
		top: 50%;
		left: 0;
		right: 0;
		transform: translateY(-50%);
	}
}

@media only screen and (max-width: 1199.98px) {
	.content-section {
		margin-top: 0px;
		/* z-index: 1; */
	}

	.banner-captions h1 {
		font-size: 4.5625rem;
	}

	.banner-captions h4 {
		font-size: 2rem;
	}

	.banner-captions .btn-primary {
		font-size: 1rem;
	}

	.head-a {
		font-size: 2.25rem;
	}
}

@media only screen and (max-width: 1024.98px) {
	.prod-detail-section {
		margin: 0;
	}

	.products-head-a,
	.products-head-a a {
		font-size: 1rem
	}
}

@media (max-width: 991.98px) {
	img.main-logo {
		/* max-width: 60px; */
		max-height: 40px;
		width: auto;
	}

	h2.logo-div.max-string {
		max-width: 250px;
		max-height: 40px;
	}

	a.custom-logo-link {
		line-height: 38px;
		font-size: 22px;
		padding: 0;
	}

	h2.logo-div.max-string a.custom-logo-link {
		font-size: 13px;
		line-height: 14px;
		padding: 5px 0;
		text-overflow: unset;
		white-space: normal;
		overflow-wrap: break-word;

	}

	h2.logo-div.max-string img.main-logo {
		top: -5px;
	}

	a.custom-logo-link {
		line-height: 40px;
		font-size: 25px
	}

	.banner-captions h1 {
		font-size: 3.4375rem;
	}

	.banner-captions h4 {
		font-size: 1.5rem;
	}

	.copy-right a {

		margin: 15px auto 0;
	}

	.banner-captions .btn-primary {
		padding: 0.75rem 1.5rem;
	}

	/* .linkbox-con {
		margin-left: 10px;
	} */
	.head-a {
		font-size: 1.875rem;
	}

	.btn.btn-a {
		font-size: 0.875rem;
	}

	.watsapp-anchor img {
		max-width: 50px;
	}

	.banner-full {
		width: 100%;
		max-height: 150px;
	}

	.prod-detail-section h2 {
		font-size: 1.5rem;
	}

	h3.subheading {
		font-size: 20px;
	}

	.details-prod-information>div.price-unit {
		font-size: 16px;
	}

	.header-small-links {
		background: var(--main-primary-color);
		padding: 10px 20px;
		width: 100%;
		position: fixed;
		bottom: 0;
		z-index: 1039;
		left: 0;
		text-align: center;
	}

	.header-small-links .row {
		margin: 0 auto;
		text-align: left;
	}

	.link-icon svg {
		width: 25px;
		height: 25px;
	}

	.link-with-text {
		width: 115px;
		font-size: 12px;
		padding-left: 36px;
		line-height: 14px;
	}

	/* .call-bt {
		font-size: 17px;
		line-height: 30px;
		width: auto;
	} */
	.link-nav-bar .direction-links {
		top: 3px
	}

	.call-link,
	.watsapp-share-link {
		font-size: 11px;
		padding: 8px;
		margin: 0 5px;
	}

	.link-with-text .link-icon {
		top: -2px
	}

	.link-nav-bar .direction-links {
		font-size: 30px;
	}

	.link-with-text {
		font-size: 16px;
		padding-left: 35px;
		line-height: 28px;

	}

	.link-icon svg,
	.link-icon i {
		width: 25px;
		height: 25px;
		font-size: 25px;
		color: var(--white);
		fill: var(--white);
	}

	/* .call-bt {
		font-size: 16px;
		line-height: 27px;
		
	} */
	.link-with-text a {
		color: var(--white)
	}

	.link-icon .card-numbers {
		font-weight: 900;
		font-size: 14px;
		line-height: 22px;
		color: var(--main-primary-color);
		height: 22px;
		width: 22px;
		right: -24px;
		top: 1px;
		background-color: var(--white);
	}

	.prod-detail-section h2 {
		font-size: 1.2rem;
	}

	body {
		padding-bottom: 50px;
	}

}

@media (max-width: 767.98px) {

	.products-thumbs {
		height: 200px;
		line-height: 185px;
		text-align: center;
		position: relative;
	}

	.products-thumbs .product-image {
		display: inline-table;
		vertical-align: middle;
		max-height: 180px;
	}

	.banner-captions h1 {
		font-size: 2.5rem;
	}

	.banner-captions h4 {
		font-size: 1.25rem;
	}

	.banner-captions .btn-primary {
		padding: 0.5rem 1.5rem;
	}

	.gotodown img {
		max-height: 20px;
	}

	.banner-captions hr {
		height: 2px;
		max-width: 130px;
	}

	.banner-section {
		padding: 20px 0;
	}

	.banner-full {
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		z-index: 1;
	}

	.banner-captions {
		position: relative;
		z-index: 10;
	}

	/* img.main-logo {
		width: 60px;
		height: 60px;
	} */
	h2.logo-div {
		margin: 0 auto;
	}

	/* a.custom-logo-link {
		line-height: 60px;
		font-size: 25px;
	} */

}

@media (max-width: 480.98px) {
	.banner-captions h1 {
		font-size: 1rem;
	}

	.banner-captions h4 {
		font-size: 0.875rem;
		letter-spacing: 5px;
	}

	.banner-captions .btn-primary {
		font-size: 0.875rem;
	}

	/* .navbar {
		padding: 0 1rem
	} */



	.padding-sm-0 {
		padding: 0
	}
}

.carousel-control-next-icon {
	background-image: url(/library_assets/buyer_assets/images/next.png)
}

.carousel-control-prev-icon {
	background-image: url(/library_assets/buyer_assets/images/back.png)
}

.loadingoverlay {
	background-size: 180px !important;
}

.crt_cnt {
	border: 1px solid var(--main-primary-color);
	max-width: 70px;
	text-align: center;
}

.crt_cnt_detail {
	border: 1px solid var(--main-primary-color);
	background-color: transparent;
	max-width: 70px;
	text-align: center;
}

.error_msg {
	color: #D8000C;
	font-size: 15px;
	font-weight: 600;
	float: left;
}

.swal2-styled.swal2-confirm {
	background-color: var(--main-primary-color) !important
}

.swal2-cancel.swal2-styled {
	background-color: var(--main-secondary-color) !important
}

.swal2-styled:focus {
	box-shadow: none !important
}


.radio-container {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 22px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Hide the browser's default radio button */
.radio-container input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: #eee;
	border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.radio-container:hover input~.checkmark {
	background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.radio-container input:checked~.checkmark {
	background-color: var(--main-primary-color);
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio-container input:checked~.checkmark:after {
	display: block;
}

/* Style the indicator (dot/circle) */
.radio-container .checkmark:after {
	top: 5px;
	left: 5px;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background: white;
}


.details-prod-information ul.tags {
	list-style: none;
	margin: 0;
	overflow: hidden;
	padding: 0;
}

.details-prod-information ul.tags li {
	float: left;
}

.details-prod-information ul.tags li.tag {
	background: #eee;
	border-radius: 3px 0 0 3px;
	color: #999;
	display: inline-block;
	height: 26px;
	line-height: 26px;
	padding: 0 20px 0 23px;
	position: relative;
	margin: 0 10px 10px 0;
	text-decoration: none;
	-webkit-transition: color 0.2s;
	cursor: default;

}

.details-prod-information ul.tags li.tag::before {
	background: #fff;
	border-radius: 10px;
	box-shadow: inset 0 1px rgba(0, 0, 0, 0.25);
	content: '';
	height: 6px;
	left: 10px;
	position: absolute;
	width: 6px;
	top: 10px;
}

.details-prod-information ul.tags li.tag::after {
	background: #fff;
	border-bottom: 13px solid transparent;
	border-left: 10px solid #eee;
	border-top: 13px solid transparent;
	content: '';
	position: absolute;
	right: 0;
	top: 0;
}

.details-prod-information ul.tags li.tag:hover {
	background-color: var(--main-primary-color);
	color: white;
}

.details-prod-information ul.tags li.tag:hover::after {
	border-left-color: var(--main-primary-color);
}



.icon-filter {
	padding: 5px 5px;
	border-radius: 100%;
	background-color: var(--main-primary-color);
	color: var(--white);
	height: 50px;
	border-radius: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	/* font-size: 17px; */
	font-weight: var(--font-regular);
	cursor: pointer;
	width: 50px;
	margin-left: 15px;
}

#filterModal {
	padding-right: 0 !important;
}

.filter-body {
	padding: 0 15px;
}

.filter-badge-primary {
	background-color: var(--main-primary-color);
	padding: 10px 10px;
	border-radius: 15px 15px 0 0;
}

.filter-badge-secondary {
	padding: 15px 27px;
}

.filter-badge-tabs {
	background-color: var(--white);
}

.flexible-content {
	width: 100%;
	white-space: nowrap;
	display: block;
	margin: 2px 0;
}

.badge-dismissible {
	color: var(--black);
	font-weight: 600;
	font-size: 14px;
	background-color: var(--white);
	border-radius: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 5px 12px;
	margin: 3px;
	list-style-type: none;
	list-style-position: outside;
	float: left;
}

.badge-close {
	background-color: var(--main-primary-color) !important;
	color: var(--white);
	width: 16px;
	height: 16px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	opacity: 1;
	border-radius: 100%;
}

.filter {
	cursor: pointer;
}

.l-icon {
	margin-top: 20px;
}


.icon-filter img {
	display: inline-block;
	width: 20px;
	height: 20px;
}

.badge-dismissible {
	color: var(--black);
	font-weight: 600;
	font-size: 14px;
	background-color: var(--white);
	border-radius: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 5px 12px;
	margin: 3px;
	list-style-type: none;
	list-style-position: outside;
	float: left;
}

.flexible-content {
	width: 100%;
	white-space: nowrap;
	display: block;
	margin: 2px 0;
}

.filter-badge-primary {
	background-color: var(--main-primary-color);
	padding: 10px 10px;
	border-radius: 15px 15px 0 0;
}

.filter-body {
	padding: 0 15px;
}

.badge-close {
	background-color: var(--main-primary-color) !important;
	color: var(--white);
	width: 16px;
	height: 16px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	opacity: 1;
	border-radius: 100%;
}

/* .filter-badge-secondary {
  background-color: var(--white);
} */

.modal-titles {
	font-size: 17px;
	color: #111E48;
	font-weight: 700;
}

.filter-badge-secondary {
	padding: 15px 27px;
}

.border-radious-left-right {
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
}


.filter-tabs .nav-item.show .nav-link {
	color: var(--black);
	border: none;
	font-weight: 700;
	font-size: 17px;
}

.filter-tabs .nav-item .nav-link {
	color: var(--black);
	border: none;
	font-weight: 700;
	font-size: 17px;
}

.filter-tabs .nav-link.active {
	border-bottom: 5px solid var(--main-primary-color) !important;
	background-color: transparent !important;
	/* padding-bottom: 1px; */
}

.border-bt-brod {
	border-bottom: 2px solid #111E48;
}

.filter-badge-tabs {
	background-color: var(--white);
}

.filter-tabs {
	padding: 0 27px;
}

.filter-tabs .nav-item .nav-link {
	padding: 2px 0;
	margin-right: 30px;
}

.filter-content .input-group-prepend {
	width: 46px;
}

.filter-content .input-group-text {
	background-color: var(--white);
	border-right: none !important;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	border-top-left-radius: 15px;
	border-bottom-left-radius: 15px;
	height: 45px;
	border-color: #DDDDDD;
}

.filter-content .form-control {
	border-left: none !important;
	border-top-right-radius: 15px;
	border-bottom-right-radius: 15px;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	height: 45px;
	border-color: #DDDDDD;
	padding-left: 5px;
}

.filter-content {
	padding: 1px 25px;
}

.filter-content-text {
	color: var(--main-primary-color) !important;
	font-size: 15px;
	cursor: pointer;
	text-decoration: underline !important;
	padding: 12px;
}

.grey-bg {
	background-color: #F5F5F5;
}

.filter-label {
	color: var(--black);
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 0;
}

.label-centralize {
	display: flex;
	align-items: center;
	justify-content: start;
}

.border-bt-grey {
	border-bottom: 1px solid #E6DDDD;
	padding: 10px 10px;
	min-height: 64px;
}

.group-filter .custom-select {
	font-size: 13px;
	border-radius: 15px;
	display: inline-block;
	height: 40px;
	padding: 0 17px;
	width: 161px;
	background: var(--white) url("http://sellingo.datagrid.co.in/library_assets/front_assets/img/arr-dn.svg") no-repeat right .75rem center/8px 10px;
}

.custom-select::after {
	content: '\25BC';
	/* Unicode character for down arrow */
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	pointer-events: none;
	/* Ignore pointer events on the arrow */
	font-size: 16px;
	color: #000;
}

.border-bt-grey input[type=checkbox],
input[type=radio] {
	width: 20px;
	height: 20px;
}

.pd {
	padding: 20px 30px;
}

.to-cls {
	font-size: 16px;
	font-weight: 600;
	color: var(--black);
	padding: 10px;
}

.custom-wd {
	width: 181px;
	border-radius: 15px;
	height: 40px;
	font-size: 14px;
}


.custom-checkbox {
	position: relative;
	display: flex;
	align-items: center;
	cursor: pointer;
}

.custom-checkbox input[type="checkbox"] {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	width: 20px;
	height: 20px;
	margin: 0;
	border: 2px solid #ccc;
	border-radius: 4px;
	background-color: var(--white);
	position: relative;
	cursor: pointer;
}

.custom-checkbox input[type="checkbox"]:checked {
	background-color: var(--main-primary-color);
	border-color: var(--main-primary-color);
}

.custom-checkbox input[type="checkbox"]:checked::before {
	content: '';
	position: absolute;
	top: 42%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 2px 2px 0;
}

.custom-checkbox label {
	margin-left: 8px;
	font-size: 16px;
}

#filterModal {
	padding-right: 0 !important;
}


.multiselect {
	width: 161px;
	position: relative;
}

.selectBox {
	position: relative;
}

.selectBox select {
	font-size: 13px;
	border-radius: 15px;
	height: 40px;
	padding: 0 17px;
	width: 161px;
	font-weight: 400;
	line-height: 1.5;
	color: #495057;
	vertical-align: middle;
	border: 1px solid #ced4da;
	transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.overSelect {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

#checkboxes {
	display: none;
	border: 1px #dadada solid;
	position: absolute;
	z-index: 9;
	padding-bottom: 14px;
	background-color: var(--white);
	width: 161px;
	top: 28px;
	padding-top: 10px;
	border-top: none;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
}

#checkboxes span {
	margin-left: 5px;
	position: relative;
	top: 0;
}

#checkboxes label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.5;
	color: var(--black);
	padding: 8px 21px;
	margin-bottom: 0;
}

#checkboxes label:hover {
	background-color: #1e90ff;
}

.txt-value {
	font-size: 19px;
	font-weight: bold;
	color: #111E48;
	margin-bottom: 0;
}

#filterModal .modal-content {
	border-radius: 15px;
}

@media (min-width: 992px) {
	#desktop-filter-mobile {
		display: none;
	}

	#filterModal .modal-fixed-bottom {
		display: -ms-flexbox;
		display: flex;
		-ms-flex-align: center;
		align-items: center;
		min-height: calc(100% - 1rem);
	}

	.modal-filter {
		max-width: 600px !important;
	}

}

@media (max-width: 991px) {
	#desktop-filter-view {
		display: none;
	}
}

@media(max-width: 767.95px) {
	.icon-filter {
		width: 40px !important;
		height: 51px !important;
		border-radius: 0 !important;
	}

	.filter-badge-secondary {
		padding: 15px 20px 8px 20px !important;
	}

	.filter-tabs {
		padding: 0 19px !important;
	}

	.filter-tabs .nav-item .nav-link {
		margin-right: 16px !important;
	}

	.filter-tabs2 .nav-item .nav-link {
		margin-right: 16px !important;
	}

	.filter-content {
		padding: 1px 18px !important;
	}

	.modal-titles {
		font-size: 13px !important;
		font-weight: 800 !important;
	}

	.filter-tabs2 .nav-item .nav-link {
		font-size: 12px !important;
	}

	.badge-dismissible {
		font-size: 11px !important;
	}

	.filter-badge-primary {
		padding: 4px 8px !important;
	}

	.filter-content .form-control {
		height: 37px !important;
		font-size: 13px;
	}

	.filter-content .input-group-text {
		height: 37px !important;
	}

	.filter-content .input-group-text img {
		width: 17px;
	}

	.filter-content-text {
		font-size: 12px !important;
	}

	.filter-label {
		font-size: 12px !important;
	}

	.to-cls {
		font-size: 12px !important;
	}

	.border-bt-grey {
		min-height: 57px !important;
	}

	.custom-wd {
		width: 107px !important;
		border-radius: 15px;
		height: 37px !important;
		font-size: 12px !important;
	}

	.group-filter .custom-select {
		font-size: 13px !important;
		border-radius: 12px !important;
		display: inline-block;
		height: 30px !important;
		padding: 0 13px;
		width: 117px !important;
	}

	.modal-fixed-bottom {
		position: fixed;
		bottom: 0;
		left: 0;
		margin: 0 !important;
		width: 100% !important;
		max-width: 100% !important;

	}

	.filter-tab-content {
		max-height: 400px;
		overflow: auto;
	}

	#checkboxes {
		width: 117px !important;
		top: 20px !important;
	}

	#checkboxes label {
		font-size: 12px !important;
		padding: 8px 14px !important;
	}

	.txt-value {
		font-size: 12px !important;
		margin-bottom: 0;
	}

}

.note-editable {
	height: 250px !important;
}

.note-editable ul {
	list-style: disc;
}

.note-editor .note-toolbar .note-btn.btn-fullscreen {
	display: none;
}

.note-editor .note-btn-group .dropdown-toggle::after {
	display: none;
}

.note-editor .note-toolbar {
	text-align: left;
}