/* BODY/GENERAL */
@import url('https://fonts.cdnfonts.com/css/roboto');
@import url('https://fonts.cdnfonts.com/css/century-gothic-paneuropean');

:root {
	--gold-light: #d4ab62;
	--gold-light-25: rgb(212 171 98 / 25%);
	--gold-dark: #b47d1f;
	--gold-darker: #6d4c13;
	--gray-light: #fafafa;
	--gray-dark: #818181;
	--primary-dark: #343434;
	--silver: #c9cbce;
	/* --lighter-black: #151515; */
	--lighter-black: #343434;
}

@font-face {
	font-family: "QuestionMark";
	src: url("https://fonts.cdnfonts.com/s/12165/Roboto-Regular.woff") format('woff');
	unicode-range: U+003F;
}
*,
*:focus,
*:active {
	box-sizing: border-box !important;
	outline: none !important;
	-webkit-font-smoothing: antialiased;
	-webkit-box-sizing: border-box;
	scroll-behavior: unset !important;
}

input[type=checkbox] {
	accent-color: var(--gold-dark);
}

strong {
	font-weight: 700 !important;
}

html {
	overflow-y: auto;
	height: 100%;
	scroll-padding-top: 40vh;
}

body {
	height: 100%;
	font-family: "QuestionMark", "Century Gothic Paneuropean", sans-serif;
	/* font-family: Roboto, 'sans-serif'; */
	color: #2a2a2a;
	position: relative;
	padding: 0 !important;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	zoom: 95%;
	overflow-x: hidden;
}

body.loaded {
	display: none;
}

#djDebug {
	position: absolute;
}

.square-button {
	width: 240px;
	max-width: 100%;
	height: 50px !important;
	border-radius: 0 !important;
	background: var(--lighter-black);
	color: var(--gray-light);
	transition: 0.1s;
}

.square-button:hover {
	color: var(--lighter-black);
	background-color: var(--gray-light);
}

.square-button:hover a {
	color: var(--lighter-black) !important;
}

@media only screen and (max-width: 768px) {
	.square-button {
		width: 100% !important
	}

	.square-button:hover {
		background: var(--lighter-black);
		color: var(--gray-light);
	}

}

/* FADEIN TRANSITION*/

@keyframes fadein {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
		;
	}
}

.fade-in-animation {

	animation: fadein 1.5s;
}

.hidden {
	display: none !important;
}

.not-visible {
	visibility: hidden;
	opacity: 0;
	transition: ease-in-out 0.25s;
}

.not-visible-category {
	visibility: hidden;
	opacity: 0;
	transition: ease-in-out 0.25s;
}


@media only screen and (max-width: 768px) {
	.content {
		margin-top: 0rem;
	}
}

.lazy-bg{
	max-width: 100%;
}

#show-serial-number:hover {
	color: var(--gold-dark);
	cursor: pointer;
}
.btn.check-serial-number{
	border: none;
	background-color: var(--gray-light);
	color: #000 !important;
	padding: 0 10px !important;
	transition: all .3s ease-in-out;
}
.btn.check-serial-number:hover{
	background-color: var(--lighter-black);
	color: #fff !important;
}

.serial-number-container {
	background-color: var(--lighter-black);
	color: var(--gray-dark);
	font-size: 0.75rem !important;
	position: relative;
	width: fit-content;	
}
.serial-number-container button{
	position: absolute;
	right: 0;
	top: 0;
	font-size: 16px;
	line-height: 14px;
	z-index: 1000;
}
.gold-hr{
	background-color: var(--gold-light);
	width: 100%;
	position: absolute;
	bottom: -5px;
	left: 0;
	height: 5px;
	margin: 0;
	opacity: 1;
}


.form-control {
	border: 1px solid var(--lighter-black);
	font-size: 0.8rem;
	background-color: inherit;
}

.form-control:focus,
.form-select:focus {
	border: 1px solid var(--lighter-black);
	background-color: inherit;
}

.iti {
	display: block !important;
}
.partner-info-div:last-child{
	padding-left: 0.5rem;
}

.label-location .partner-info-div:last-child {
	flex-grow: 1;
}

.form-check-input:checked {
	background-color: var(--gold-light) !important;
	border-color: var(--gold-light) !important;
}

.form-check-input:focus {
	border-color: var(--gold-light) !important;
	outline: 0 !important;
	box-shadow: 0 0 0 0.25rem var(--gold-light-25) !important;
}

.form-check-input {
	margin-left: 6px;
	margin-right: 15px;
}

.label-location {
	width: 100%;
	height: 100%;
}

.custom-radio-selected {
	border: 1px solid var(--lighter-black) !important;
	background: linear-gradient(to left, var(--gold-light) 7px, var(--bs-light) 7px);
	position: relative;
}
.partner-wrapper .fa-check{
	display: none;
}

.label-location-hidden {
	border: 1px solid transparent;
}

.payment-method-input {
	opacity: 0;
	margin: 0;
}

/* LANGUAGE DROPDOWN */

.dropdown-menu {
	box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%);
}

label.dropdown-label {
	display: inline-block;
	padding: 0.25rem 0.4rem;
	color: #6c757d;
}

::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
	background: rgb(177, 173, 173);
}

::-webkit-scrollbar-thumb:hover {
	background: var(--gray-dark);
}

button:focus {
	outline: none !important;
	box-shadow: none !important;
}


a {
	color: var(--gold-dark);
	text-decoration: none;
	transition: color 0.1s;
}

a:hover {
	color: var(--gold-light);
}

/* NAV BAR TOP*/

.cart-quantity-number {
	transition: 0.25s ease-in-out;
	position: absolute;
	top: 30px;
	left: 30px;
	height: 22px;
	width: 22px;
	color: var(--lighter-black);
	border-radius: 15px;
	background-color: var(--gray-light);
	right: 100px;
	text-align: center;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
}
.cart-quantity-number span{
	font-size: 14px;
	line-height: 13px;
}

a.cart-icon {
	position: relative;
	padding: 10px;
	color: black
}

a.cart-icon>img {
	filter: invert(1);
}

.nav-top {
	z-index: 1000;
	position: sticky;
	top: 0;
	width: 100%;
	background: white;
}

.nav-top a {
	color: var(--gray-light);
	font-weight: 700;
}

.nav-top a:hover {
	color: var(--gold-light);
}

.nav-top>div {
	/* background-color: var(--primary-dark); */
	background: var(--lighter-black);
}

.globe-icon {
	height: 35px;
	width: 35px;
	filter: invert(1);
}

#globe-drop-down {
	margin-left: 10px;
	-webkit-appearance: none;
}

.dropdown-menu {
	background-color: var(--primary-dark);
}

.dropdown-menu.show {
	transform: translate(0px, 3rem) !important;
}

.dropdown-menu>a {
	color: var(--gray-light);
}

.dropdown-menu>label {
	color: white;
}

.dropdown-item {
	transition: background-color 0.15s, color 0.15s;
}

.dropdown-item.active,
.dropdown-item:active {
	background-color: var(--gold-dark);
}

.dropdown-item:hover {
	background-color: #454545;
	color: var(--gold-light);
}

.menu-message,
.nav-message {
	width: fit-content;
	white-space: nowrap;
}

.menu-message-container {
	display: none;
}

@media only screen and (max-width: 1300px) {
	.nav-message-container {
		display: none;
	}

	.menu-message-container {
		display: block;
	}
}

/* SIDEBAR */

.open-menu {
	display: none;
}

#sidebar {
	width: 0;
	padding-top: 10rem;
	z-index: 10;
	color: var(--gray-light);
	background-color: var(--primary-dark);
	transition: width 0.5s;
}

#nav-list {
	display: block;
	font-size: 14px !important;
}

#nav-list a.active {
	color: var(--gold-light);
}

#sidebar a {
	display: block;
	font-size: 20px;
	color: var(--gray-light);
	transition: color 0.15s;
	text-overflow: clip;
	white-space: nowrap;
	font-weight: 700;
}

#sidebar a:hover,
#sidebar a:active {
	color: var(--gold-light);
}

@media only screen and (max-width: 1300px) {
	.open-menu {
		display: block;
	}

	#sidebar.active {
		width: 300px;
	}

	#nav-list {
		display: none !important;
	}
}

.overlay-content {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

@media only screen and (max-width: 768px) {
	#sidebar.active {
		width: 100%;
	}
}

/* FOOTER */

footer {
	height: fit-content;
	margin-top: 7.5rem;
	font-family: Roboto, 'sans-serif';
}

#footer-copyright {
	border-top: 3px solid var(--gray-light);
}

#footer-info {
	padding: clamp(1rem, 2.5%, 2.5rem) clamp(1rem, 4%, 4rem) !important;
	background: var(--lighter-black);
	color: var(--gray-light);
	min-width: 300px;
	flex: 1;
}

#footer-info h3 {
	width: 100%;
	margin: 0;
	font-size: 1.5rem;
	font-weight: bold !important;
}

#footer-info a {
	display: block;
	width: 100%;
	color: var(--gray-light);
	text-align: left;
}

#footer-info a:hover {
	color: var(--gold-light);
}


.footer-icon {
	display: flex;
	justify-content: center;
	align-items: center;
}
.footer-icon.col-6{
	padding: 0 5px;
}
.social-icon-wrapper {
	width: 6rem;
}
.social-icon-wrapper svg{
	display: block;
	width: 100%;
	margin: 0 auto;
}

.payment-method-icon-wrapper {
	width: 10rem;
}

.payment-method-icon img {
	height: 2.5rem;
	width: 4.3rem;
	max-width: 100%;
	transition: 0s;
}


.american-express-img{
	width: 2.7rem !important;
	display: block;
	margin: 0 auto;
}

.payment-method-icon img:hover,
.payment-method-icon img:active {
	filter: invert(46%) sepia(50%) saturate(450%) hue-rotate(359deg) brightness(97%) contrast(91%);
}


.mastercard-img:hover,
.mastercard-img:active {
	filter: grayscale(1) invert(46%) sepia(50%) saturate(450%) hue-rotate(359deg) brightness(97%) contrast(91%);
}

.terms-conditions-link .terms-conditions-svg {
	height: 1rem;
	width: 1rem;
	fill: var(--bs-light) !important;
	transition: 0.1s;
}

.terms-conditions-link:hover .terms-conditions-svg,
.terms-conditions-link:active .terms-conditions-svg {
	fill: var(--gold-light) !important;
}

.visa-img {
	height: 2.5rem !important;
	width: 3.5rem !important;
}

.diners-club-img {
	height: 2.25rem !important;
}

.bank-img,
.cash-img {
	height: 2.25rem !important;
}

@media only screen and (max-width: 1200px) {
	#footer-carousel {
		margin: 0 !important;
	}

	#footer-carousel .carousel-control-next,
	#footer-carousel .carousel-control-prev {
		margin: 0 !important;
	}

	.payment-method-icon-wrapper {
		margin-left: -0.6rem;
	}
	.product-row .plus-minus-btn button,.product-row .quantity-div input{
		height: 40px !important;
		width: 40px !important;
		display: flex;
		align-items: center;
		justify-content: center;
	}	
	.product-row .plus-minus-btn {
		height: 40px !important;
	}
	.cart img {
		max-width: 100% !important;
		word-break: break-all;
	}
	.cart{
		padding: 0;
	}
	.cart-in-product .wrapper-add-to-cart{
		justify-content: flex-start !important;
	}
}

@media only screen and (max-width: 768px) {
	#footer-bottom {
		flex-direction: column !important;
	}

	#footer-carousel {
		max-width: none;
	}

	#footer-carousel,
	#footer-carousel .carousel-img,
	#footer-carousel .carousel-inner {
		min-height: 100vw !important;
		margin: 0 auto;
	}
}

/* HOVER UNDERLINE ANIMATION */

.hover-underline-animation {
	display: inline-block;
	position: relative;
	color: inherit;
}

.hover-underline-animation:after {
	content: '';
	position: absolute;
	justify-content: center;
	width: 100%;
	transform: scaleX(0);
	height: 1px;
	bottom: 0;
	left: 0;
	background-color: var(--gold-light);
	transform-origin: bottom right;
	transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover:after {
	transform: scaleX(1);
	transform-origin: bottom left;
}

/* HAMBURGER MENU*/

.open-menu {
	cursor: pointer;
}

.bar1,
.bar2,
.bar3 {
	width: 35px;
	height: 3px;
	background-color: var(--lighter-black);
	transition: 0.4s;
	/* cursor: pointer; */
	margin: 6px 0;
}
.bar3{
	margin-bottom: 0;
}

.change .bar1 {
	transform: rotate(45deg) translate(5px, 6px);
}

.change .bar2 {
	opacity: 0;
}

.change .bar3 {
	transform: rotate(-45deg) translate(6px, -8px);
}

@media only screen and (max-width: 768px) {
	.product-filter-column {
		position: sticky;
		top: 4.5rem;
		border-bottom: 1px solid;
	}

}

.product-filter-toggle-container button {
	border: none;
	outline: none;
	background: var(--lighter-black);
	color: var(--gray-light);
}

.product-filter-toggle-container button .fa-magnifying-glass {
	height: 1.5rem !important;
}

.product-filter-hide-container {
	width: fit-content;
	background: var(--gray-light);
	right: 1.5rem;

}

.product-filter-hide-container button {
	background: var(--gray-light);
}

.product-filter-hide-container button svg {
	height: 1.2em;
}

.filter-products-container {
	position: sticky;
	top: 4.5rem;
	left: 0;
	background: white;
	height: calc(100vh - 89px);
	overflow-y: auto;
}

.filter-products-container::-webkit-scrollbar {
  width: 5px;
}


.filter-products-form {
	width: 240px;
	display: flex;
}

@media only screen and (max-width: 768px) {
	.filter-products-container {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
		background: var(--gray-light);
	}

	.filter-products-container.active {
		padding-top: 1rem !important;
		padding-bottom: 1rem !important;
		height: calc(100vh - 125px);
		overflow-y: auto;
		display: block;
	}

	.filter-products-container .filter-products-form {
		width: 100%;
	}

	.filter-products-container.active .filter-products-form {
		display: flex;
	}

	.filter-products-container.active .product-filter-hide-container {
		display: flex !important;
	}
}

@media screen and (max-width:767px) {
	.filter-products-container{
		display: none;
	}
	.filter-products-container.active{
		display: block;
	}
	.filter-products-container .filter-products-form {
		width: 100%;
		display: none;
	}
}

.filter-products-form fieldset * {
	max-width: 100%;
}

.filter-products-form .keyword-search-container {
	width: 100%
}

.filter-products-form .keyword-search-container .search-button {
	top: 50%;
	transform: translateY(-50%);
	right: 0.4rem;
	background: none;
}

.filter-products-form input[type=text] {
	width: 100%;
	padding-right: 1.75rem;
}

.filter-products-form input[type=number] {
	width: 8rem;
}

.price-slider-container input[type=range] {
	appearance: none;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	background: var(--bs-gray-light);
}

.price-slider-container input[type=range]::-webkit-slider-runnable-track {
	background: none;
}

.price-slider-container input[type=range]::-moz-range-track {
	background: none;
}

.price-slider-container input[type=range]::-webkit-slider-thumb {
	background: var(--gold-dark) !important;
	pointer-events: auto !important;
	appearance: none;
	margin-top: -0.375rem;
	width: 1.25rem;
	height: 1.25rem;
}

.price-slider-container input[type=range]::-webkit-slider-thumb:hover {
	filter: brightness(80%);
}

.price-slider-container input[type=range]::-moz-range-thumb {
	background: var(--gold-dark) !important;
	pointer-events: auto !important;
	appearance: none;
	margin-top: -0.375rem;
	width: 1.25rem;
	height: 1.25rem;
}

.price-slider-container input[type=range]::-moz-range-thumb:hover {
	filter: brightness(80%);
}

.price-slider-container .slider-background,
.price-slider-container .slider-active-background {
	top: 50%;
	transform: translateY(-50%);
	height: 0.5rem;
}

.price-slider-container .slider-background {
	background: var(--silver);
	border-radius: 0.25rem;
}

.price-slider-container .slider-active-background {
	background: var(--gold-light);
}

.price-box-container input {
	text-align: center;
}

.no-product-matching-criteria {
	font-size: 1.25rem;
	margin-top: 2rem;
}

.product-list-image {
	animation: fadein 1s;
	height: 240px;
	width: 240px;
	margin-bottom: 1rem;
	background-repeat: no-repeat !important;
	background-position: center center !important;
	background-size: contain !important;
}

@media only screen and (max-width: 768px) {
	.product-list-image {
		height: 180px;
	}
}

.product-message {
	/* font-weight: 1000 !important; */
	/* font-size: 1rem !important; */
	min-height: 1.5rem;
	font-family: sans-serif;
	font-size: 1.1rem;
	font-weight: normal;
}

.product-message .fa-circle {
	height: 0.5rem !important;
}

/* FAQ PAGE*/

.contact-h4 {
	color: #151515;
	margin-bottom: 20px;
}


button.faq-button {
	font-size: 26px;
	font-weight: 400;
	line-height: 1.3;
	text-align: left;
}

.faq-div {
	margin: 50px 0;
}

@media only screen and (max-width: 768px) {
	.faq-div {
		margin: 25px 0;
	}
}

.faq-question-accordion-div p {
	margin-left: 35px !important;
}

.faq-question-accordion-div ul li p {
	margin-top: 10px !important;
	margin-left: 20px;
}


h3.faq-title {
	font-size: 30px;
	line-height: 1.3;
}

.faq-wrapper {
	margin-bottom: 50px !important;
}

.faq-list {
	/* border: 3px solid var(--gray-dark); */
	list-style-type: none;
}

.faq-list button {
	outline: none !important;
	border: none !important;
}

/* .price-wrapper {
	font-family: monospace;
} */

/* CONTACT */

p.address-contact-p {
	margin-left: 0px !important;
}


/* BLOG */

.post-title h4 {
	font-size: 24px !important;
}

.blog-top-img {
	max-width: 100%;
	background-repeat: no-repeat !important;
	background-position: center center !important;
	background-size: cover !important;
	aspect-ratio: 312.5 / 192.58 !important;
}


.blog-top-img:hover {
	opacity: 80%;
}

.blog-wrapper a {
	transition: 0.5s;
	text-decoration: none;
	color: var(--gray-dark);
}

.blog-wrapper a:hover {
	transition: 0.5s;
	color: black;
	text-decoration: underline;
}

.blog-abstract {
	max-height: 100px;
	display: -webkit-box !important;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}



/* BLOG CONTENT */
.blog-wrapper,
.article-content {
	font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif
}
.product-found-not-found{
	font-family: QuestionMark, "Century Gothic Paneuropean", sans-serif;
}
.buy-price-div span{
	font-weight: normal !important;
}
.article-content p {
	line-height: 1.6;
	font-size: 18px
}

.article-content p:last-child {
	display: flex;
	justify-content: flex-end;
}

.article-content img {
	animation: fadein 0.5s;
	;
	width: 100%;
	height: 100%;
}

.article-content h4 {
	color: var(--lighter-black);
	margin-bottom: 20px;
	font-weight: 700;
}

.blog-content-wrapper {
	margin-bottom: 5vh;
}

/* CONTENT SECTION*/

.item-link {
	width: 240px !important;
}

@media only screen and (max-width: 768px) {
	.item-link {
		width: 100% !important;
	}
}

.wrapper-div-category-product {
	border: 1px solid transparent;
	border-radius: 2px;
	transition: 0.1s ease;
}

.wrapper-div-category-product .buy-price-text {
	margin-top: 5px;
	cursor: pointer;
}

.sell-price-text {
	margin-bottom: 20px;
}

.product-price {
	font-weight: normal !important;
}

/* text to be with 3 dots after 3 lines */
.product-name {
	display: -webkit-box;
	height: 55px;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	font-size: 1.15rem;
	overflow: hidden;
	text-overflow: ellipsis;
}

.item-link p {

	margin-bottom: 7px;

}

.product-content {
	flex-grow: 1;
}

.cart {

	border: none !important;
	cursor: default;
}
@media only screen and (min-width: 991){
	.cart .row div{
		padding-left: 0 !important;
	}
}

.cart-title {
	font-size: 18px;
	color: #323232;
	font-weight: 700 !important;
	cursor: pointer;

}


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

.in-cart {
	visibility: visible !important;

}

.wrapper-div-category-product:hover .product-list-image {
	cursor: pointer;
	color: #151515;
	transition: top ease 0.5s, transform ease 0.5s;
	transform: scale(1.05);
}

.wrapper-div-category-product .wrapper-add-to-cart {
	visibility: hidden;
}

.wrapper-div-category-product:hover .wrapper-add-to-cart {
	visibility: visible;
}

.cart .buy-text {
	color: var(--gold-light);
	text-align: center !important;
	font-size: 16px !important;
	line-height: 20px !important;
	font-weight: bold !important;
}

.cart .sell-text {
	font-size: 14px;
	font-weight: 400;
	color: #e4c694;
}

.categories-link {
	text-decoration: none;
	color: var(--gold-dark);
}


a:hover.categories-link {
	color: black;
	text-decoration: none;

}

.item-link {
	color: #463f3f;
	text-decoration: none;
}

.item-link:hover {
	color: #151515;
}

/* CAROUSEL  */

.carousel-inner img {
	height: 100%;
	width: 100%;
}

.item-link:hover img {
	opacity: 1;
	cursor: pointer;
}


.carousel-control-next,
.carousel-control-prev {
	color: var(--gold-dark);
	opacity: 1;
	z-index: 0;
	top: 50%;
	height: 20px;
}

.carousel-control-prev:hover,
.carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
	color: var(--gold-dark);
	text-decoration: none;
	outline: 0;
	opacity: 0.9;
}

.carousel-item {
	height: calc(20vw + 250px);
	background-repeat: no-repeat !important;
	background-size: contain !important;
	background-position: center !important;
	width: 100%;
}

.svg-inline--fa {
	cursor: pointer;
}

/* PRODUCT DESCRIPTION */
.product-description,
.product-long-description {
	font-family: sans-serif;
}

.product-description p {
	text-align: left;
	margin-bottom: 5px;
}

.product-description a,
.product-long-description a {
	display: inline-block;
	position: relative;
}

/* ABOUT US PAGE */

.about-us-banner-img {
	min-height: 200px;
	height: 40vw;
	background-repeat: no-repeat;
	background-size: cover;
	background-position-x: center;
	background-position-y: 100%;
}

.about-us-banner-text {
	color: var(--gray-light);
	font-size: 7vw;
	bottom: 7.5% !important;
	right: 5% !important;
	user-select: none;
	cursor: pointer;
}

.about-us-chevron {
	width: 6vw;
	color: white;
}

.about-us-content {
	margin-top: 7.5rem;
	margin-bottom: 10rem;
	padding: 0 5vw !important;
}

.about-us-image {
	min-width: 300px;
	width: 35%;
	margin-left: 10%;
	margin-right: auto;
}

.about-us-text {
	bottom: 50%;
	left: 44vw;
	transform: translateY(50%);
	min-width: 250px;
	max-height: 650px;
	width: 50vw;
	font-size: 1.25rem;
	background: var(--gold-light);
	color: var(--lighter-black);
}

@media only screen and (max-width: 992px) {
	.about-us-content {
		margin-top: 10rem;
	}

	.about-us-image {
		margin-left: 5%;
	}

	.about-us-text {
		left: 40vw;
		width: 55vw;
		font-size: 1rem;
	}
}

@media only screen and (max-width: 768px) {
	.about-us-content {
		margin-top: 5rem;
		text-align: center;
	}

	.about-us-image {
		width: 75%;
		margin: 0 0;
	}

	.about-us-text {
		left: 2.5vw;
		bottom: 0;
		width: 95%;
		min-width: none;
		max-width: none;
		font-size: 1rem;
	}
}

@media only screen and (max-width: 575px) {
	.about-us-text {
		bottom: -4rem;
	}
}

/* CART details*/

/* .cart-div {
	width: 240px !important;
} */

/* .empty-cart-title {
	padding-top: 300px;
} */

.cart-div .wrapper-add-to-cart{
	justify-content: center !important;
}

.wrapper-add-to-cart {
	transition: ease-in-out 0.25s;
	max-width: 240px;
}

.quantity:hover {
	cursor: text !important;
}

.quantity:disabled {
	background-color: white;
}

.quantity-div input {
	height: 50px ;
	width: 50px ;
	border: 1px solid var(--gold-light);
	margin-right: 5px;
	margin-left: 5px;

}

.cart-button {
	background-color: var(--lighter-black) !important;
	color: var(--gray-light);
}

.cart-button button {
	width: 240px;
	height: 50px;
	margin-left: 10px;
	background: var(--lighter-black);
}

.cart-button img {
	filter: invert(1);
	transition: 0.1s ease;
}

.cart-button:hover img {
	filter: invert(0);
	transition: 0.1s;
}

.store-closed button{
	padding: 12px 0 !important;
	font-size: 14px;
	height: auto !important;
}

.add-to-cart,
.product-out-of-stock {
	max-width: 240px !important;
}

@media only screen and (max-width: 768px) {

	.add-to-cart,
	.product-out-of-stock {
		max-width: 100% !important;
	}
}

.add-to-cart button,
.product-out-of-stock button {
	/* width: 240px; */
	height: 50px;
	background: var(--lighter-black);
	color: var(--gray-light);
	transition: 0.1s;
}

.plus-minus-btn {
	height: 50px;
}

.plus-minus-btn button {
	height: 50px;
	width: 50px;
	background: var(--lighter-black);
	color: var(--gray-light);
	transition: background 0.1s;
}
.product-row {
	margin-bottom: 3rem;
}
.product-row:last-child {
	margin-bottom: 0;
}

.plus-minus-btn button.btn:focus,
.add-to-cart button.btn:focus,
.product-out-of-stock:focus button.btn {
	background: var(--lighter-black);
	color: var(--gray-light);
}

@media screen and (pointer: fine) {

	.plus-minus-btn:hover button.btn,
	.add-to-cart button.btn:hover,
	.product-out-of-stock:hover button.btn {
		background: var(--gray-light) !important;
		color: var(--lighter-black) !important;
	}
}

.column {
	margin-bottom: 80px !important;
}

.cart-content-products {
	min-height: 150px;
}

.go-back {
	text-align: left;
}

.go-to-checkout-form {
	text-align: right;
}

.to-checkout-form {
	width: 200px !important;
}

#orderButton {
	background: var(--gold-dark);
}

#orderButton:hover {
	background: var(--gray-light);
	color: var(--primary-dark);
}

.checkout-name-link {
	color: var(--lighter-black) !important;
}


/* CHECKOUT FORM */


/* .partner-image {
	background-repeat: no-repeat !important;
	background-position: center center !important;
	background-size: 50px 50px !important;
} */

.region-select {
	color: var(--lighter-black);
}

.region-select:focus {
	color: var(--lighter-black);
}

.region-select option {
	color: var(--lighter-black);
}

.location-name,
.location-address {
	white-space: pre-line !important;
}

.star-required {
	color: red;
}

.timer-div .svg-inline--fa {
	cursor: default;
}

.timer-clock {
	background-color: var(--lighter-black);
	border-color: var(--gray-light);
	white-space: nowrap;
	color: var(--gray-light);
}

.nav-checkout-calculation-container .dropdown-toggle {
	width: fit-content;
	background-color: inherit;
}

.nav-checkout-calculation-container .dropdown-toggle .icon {
	transition: 0.2s ease-in-out;
}

.nav-checkout-calculation-container .dropdown-toggle:not(.collapsed) .icon {
	transform: rotate(180deg);
}

.nav-checkout-calculation-container .dropdown-toggle::after {
	display: none;
}

.nav-checkout-info-container {
	width: 100%;
	top: 2rem;
	right: 0;
	background-color: var(--gray-light);
	will-change:max-height;
}

.checkbox-dropdown{
	background-color: var(--gray-light);
	color: #000
}

.nav-checkout-info {
	width: 100%;
	padding-bottom: 4vh !important;
}

.nav-checkout-wrapper {
	height: 100%;
}
.nav-checkout-product-list-mobile{
	/* display: none !important; */
}
.nav-checkout-product-list, .nav-checkout-product-list-mobile {
	height: fit-content;
	max-height: calc(100% - 7rem);
	width: 100% !important;
}
.nav-checkout-product-list ul , .nav-checkout-product-list-mobile ul{
	width: 100% !important;
}

.nav-checkout-product-list li , .nav-checkout-product-list-mobile li{
	display: flex;
	flex-direction: column;
	align-items: end;
	width: 100% !important;
}
.nav-checkout-product-list li:not(:last-child), .nav-checkout-product-list-mobile li:not(:last-child) {
	padding: .5rem 0;
	border-bottom: 1px solid rgba(33, 37, 41, 0.25);
}
.checkout-list li {
	padding: .5rem 0;
	border-top: 1px solid rgba(33, 37, 41, 0.25);
}

.nav-checkout-product-list li:nth-child(2n), .nav-checkout-product-list-mobile li:nth-child(2n) {
	background-color: var(--bs-gray-light);
}

.nav-checkout-info * {
	width: fit-content;
}
.nav-checkout-product-list-mobile, .nav-checkout-product-list-mobile * {
	width: 100% !important;
}
.desktop-checkout-calculation-container .accordion-button {
	background-color: var(--bs-light) !important;
}

.accordion-inner {
	border: none;
}

.accordion-button,
.accordion-button:focus {
	outline: none !important;
	border: none !important;
	box-shadow: none !important;
}

.accordion-button::after {
	color: var(--bs-dark) !important;
}

.desktop-checkout-product-list {
	font-size: 0.85rem;
	max-height: calc(62.5vh - 16rem) !important;
}

.desktop-checkout-product-list:not(.collapsing) {
	overflow-y: auto;
}

.checkout-product-list::-webkit-scrollbar {
	width: 6px;
}

.checkout-product-list::-webkit-scrollbar-track {
	background-color: var(--bs-light);
}

@media only screen and (min-width: 768px) {
	.nav-checkout-info-container {
		width: 50vw;
	}

	.nav-checkout-info {
		width: fit-content;
	}
}

@media only screen and (min-width: 992px) {
	.checkout-info-container {
		position: static;
		background-color: unset;
	}

	.nav-checkout-info-container {
		width: 30rem;
	}
}

@media only screen and (min-width: 1367px) {
	.desktop-checkout-product-list {
		font-size: 1rem;
	}
}

/* IMAGE STYLES */
.partner-border:hover div {
	cursor: pointer;
}

/* INDEX */

#main-slider-container {
	-webkit-margin-top-collapse: collapse;
}

#main-carousel .carousel-inner {
	/* height: clamp(16rem, 40vw, calc(100vh - 400px)) !important; */
	overflow: hidden !important;
	min-height: 200px;
	height: 40vw;
}

#main-carousel .carousel-item {
	height: auto !important;
}

#main-carousel .carousel-item>div {
	min-height: 200px;
	height: 40vw;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

/* PRODUCT SLIDERS */

.slick-slide {
	margin: 0px 20px;
}

.slick-slide img {
	width: 100%;
}

.slick-active:hover .index-carousel-product {
	transition: top ease 0.1s, transform ease 0.5s;
	transform: scale(1.05);
	overflow-y: visible;
}

.slick-active {
	opacity: 1;
}

.product-name-index {
	min-height: 2.7rem;
	max-height: 2.7rem;
	color: black;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box !important;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	font-size: 1rem;
	word-break: keep-all;
}

.product-buy-price-index-text {
	clear: both;
	text-align: left;
	color: black;
	font-size: 14px;
	white-space: nowrap;
}

/* .gold-index-carousel-div .product-name-index, .silver-index-carousel-div .product-name-index {
	color: black;
} */

.tool-index-carousel-div:hover a {
	color: black !important;
}

.index-category-title-gold,
.index-category-title-gold:hover {
	color: black;
}

.index-category-title-silver,
.index-category-title-silver:hover {
	color: black;
}

.index-category-title-tool,
.index-category-title-tool:hover {
	color: black;
}

.index-carousel-product {
	animation: fadein 1s;
	height: 150px;
	width: 100%;
	/* background-repeat: no-repeat !important;
	background-size: 240px !important;
	background-position: center  !important; */

	background-repeat: no-repeat !important;
	background-position: center center !important;
	background-size: contain !important;
}


/* .index-content {
	margin-top: 200px;
} */

.index-line {
	border-top: 0.12em solid var(--gold-light);
	border-radius: 10px;
}

/* #widgetScript{
	height: 400px;
	width: 500px;
} */

.tradingview-widget-container,
.widget-area iframe {
	width: 100% !important;
}

.widget-area p {
	font-size: 20px !important;
	color: #7a7a7a !important;
}

.be-in-touch {
	user-select: none;
}

@media only screen and (max-width: 768px) {
	.be-in-touch {
		padding: 0 !important;
	}

	.be-in-touch h2,
	.be-in-touch p {
		margin: 0;
		padding: 0.25rem !important;
	}
}

/* Product detail page */

.img-carousel a {
	transition: opacity ease-in-out 0.5s;
	opacity: 0.5;
}

.img-carousel a.active {
	transition: opacity ease-in-out 0.25s;
	opacity: 1;
}

.plus-minus-div .row {
	flex-direction: row !important;
}

.related-products-title {
	margin-top: 30px !important;
	text-align: center;
}

.related-products-title a {
	color: black;
}

.list-products {
	margin-bottom: 150px;
}

@media only screen and (max-width: 768px) {
	.list-products {
		margin-bottom: 50px;
	}
}

#carousel-product .carousel-control-next,
#carousel-product .carousel-control-prev {
	z-index: 5;
	top: unset !important;
	bottom: 10%;
	width: 6% !important;
	filter: invert(1);
}

@media only screen and (max-width: 992px) {

	#carousel-product .carousel-control-next,
	#carousel-product .carousel-control-prev {
		bottom: 7.5%;
	}
}

@media only screen and (max-width: 768px) {

	#carousel-product .carousel-control-next,
	#carousel-product .carousel-control-prev {
		bottom: unset;
		top: 50% !important;
	}

	.buy-price thead th, .buy-price thead td, .sell-price thead th, .sell-price thead td {
		font-size: 16px;
	}
	.buy-price tbody th, .buy-price tbody td, .sell-price tbody th, .sell-price tbody td {
		font-size: 14px;
	}
	tr td:last-child{
		padding-right: 0;
	}
}

.buy-sell-div {
	border-radius: 0.25rem;
}

.buy-price {
	font-weight: 600;
	font-size: 20px;
}

.sell-price {
	font-weight: 600;
	font-size: 18px;
}

.buy-sell-div p {
	font-size: 1.5rem !important;
}

.buy-sell-div span {
	font-size: 1.75rem !important;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	margin: 0;
}

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

/* CHECKOUT */




/* CHECKOUT FORM */


.img-package {

	margin-left: 30px;
	width: 50px;
	height: 50px;

}


#person_form input,
#company_form input,
#different-delivery-address-form input,
.order_div input {
	border-radius: 0 !important;
}

#person_form input:focus,
#company_form input:focus,
#different-delivery-address-form input:focus,
.order_div input:focus {
	box-shadow: none !important;
}

#person_input_label,
#company_input_label,
#different-delivery-address-form {
	width: 100%;
}


#person_input_label:hover,
#company_input_label:hover {
	cursor: pointer;
}

.cart-info {
	background-color: var(--gray-light);
	border: 1px solid var(--lighter-black);
}

.tooltip-hover {
	position: relative;
	display: inline-block;
}

.tooltip-hover .tooltiptext {
	visibility: hidden;
	width: 250px;
	background-color: black;
	color: #fff;
	text-align: center;
	border-radius: 6px;
	padding: 10px;
	font-size: 13px;

	position: absolute;
	z-index: 1;

	left: 20px;
}

.tooltip-hover:hover .tooltiptext {
	visibility: visible;
}


/* CHECK SERIAL NUMBER */

.product-not-found-image {
	margin-top: 160px;
}

#serial-number-value,
#serial-number-value::placeholder  {
	color: var(--gray-light);
}
#serial-number-value::placeholder{
	font-size: 1rem;
}

#serial-number-value:focus,
#serial-number-value:active {
	color: var(--gray-light);
}

/* MEDIA */

@media (max-width: 1199px) {
	.article-empty-space {
		display: none;
	}

	.map-preview iframe {
		width: 100% !important;
	}
}

@media (max-width: 991px) {


	.col-md-9 .cart-body {
		margin-left: 30px !important;
	}

	.wrapper-div-category-product .buy-price-text {
		color: #151515;
		opacity: 1;
	}

	.wrapper-add-to-cart {
		transition: ease-in-out 0.25s;
		visibility: visible !important;
		opacity: 1;
		justify-content: center !important;
	}


	.to-checkout-form, .square-button{
		width: 100% !important;
	}

}

@media (max-width: 767px) {

	.index-content {
		margin: 0px;
	}


	.cart-in-checkout {
		margin-left: 0px;
	}

	.product-name-index,
	.product-buy-price-index-text {
		font-size: 14px;
	}

	.minus-quantity-plus-div {
		margin-right: 0px;
	}

	.blog-content-wrapper {
		margin-bottom: 15vh;
	}

	.product-name {
		text-align: center;
	}

	.cart-in-product {
		text-align: center;
	}

	.carousel-thumb-div {
		display: none !important;
	}

	.product-info {
		margin-top: 20px;
		text-align: left;
	}

	.product-out-of-stock {
		text-align: center;
	}

	.img-carousel {
		max-width: 140px;
		max-height: 140px;
	}

	.product-title {
		text-align: center;
		margin-bottom: 20px;
	}

	.product-buy-info,
	.product-categories {
		align-items: center;
	}

	.buy-sell-div {
		width: 100%;
	}

	.tooltip-hover .tooltiptext {
		top: -185px;
		left: -235px;
	}

	/* .open-button {
		margin-left: 10px;
	} */

	/* .globe-cart-menu {
		margin-right: 0px;
	} */

	.related-products .row {
		justify-content: left !important;
	}


}

@media(max-width: 575px) {

	.faq-title {
		padding-left: 20px;
	}

	button.faq-button {
		padding-left: 20px;
	}

}

@media (max-width: 487px) {
	.content .row {
		justify-content: left;
	}

	.go-back {
		text-align: center;
	}

	.go-to-checkout-form {
		text-align: center;
	}

	.open-button {
		margin-left: 0px;
	}

	.globe-cart-menu {
		margin-right: 0px;
	}

	.product-name-index {
		font-size: 16px;
		text-align: center;
	}

	.product-buy-price-index-text {
		font-size: 16px;
		text-align: center !important;
	}

	.cart-icon img{
		height: 25px;
	}

	.cart-quantity-number{
		left: 25px;
		top: 25px;
	}

	.globe-icon{
		width: 25px;
		height: 25px;
	}

	.bar1,
	.bar2,
	.bar3 {
		width: 28px;
	}
}

@media (max-width: 421px) {
	.top-bar-logo {
		justify-content: center !important;
		padding-right: 0 !important;
		padding-left: 0 !important;
	}

	.cart-title {
		text-align: center;
	}

	.content-to-center {
		padding-top: 50px !important;
	}
}


@media (max-width: 324px) {
	.related-products-title {
		text-align: center;
	}

}

/* 404 */

.content-to-center {
	padding-top: 200px;
}

.checkout-empty-title {
	margin-top: 300px;
	margin-bottom: 200px;
}

.font-weight-bold text-danger {
	text-align: left;
}

/* payment confirm */

.payment-information-wrapper,
.confirm-payment-form-wrapper {
	max-width: 750px;
}

.payment-confirm-extra-information {
	white-space: pre-line;
}

/*QUILL EDITOR*/

.ql-align-right {
	text-align: right;
}

.ql-align-center {
	text-align: center;
}

.ql-align-left {
	text-align: left;
}

.ql-align-justify {
	text-align: justify;
}
