::-webkit-scrollbar {
	width: 7px;
	background: transparent;
}
::-webkit-scrollbar-thumb {
	background-color: #76888f; /* Set the handle color */
	border-radius: 5px; /* Round the corners of the handle */
	cursor: grab;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
	font-family: arial;
	background: #ffffff;
}

.header {
	display: flex;
	justify-content: center;
	position: relative;
	color: #222222;
	font-size: 12px;
	height: 20vh;
	padding: 0;
	margin: 0;
	background: transparent;
	border-bottom: 2px #9f9f9f solid;
}
.content {
	display: flex;
	justify-content: center;
	height: 80vh;
	position: relative;
	background-image: url("../images/site/background.jpg");
	background-size: cover;
	overflow-y: auto;
}
.footer {
	position: fixed;
	bottom: 10px;
	left: 10px;
	font-size: 11px;
}
.alt-background {
    background-color: #edebeb;
    display: flex;
	justify-content: center;
	height: 80vh;
	position: relative;
	overflow-y: auto;
}
/* #inner-content {
	position: absolute;
	bottom: 0;
	display: flex;
	justify-content: center;
    color: #000000;
	padding: 20px;
	height: 100%;
	box-sizing: border-box;
} */
#logo {
	height: 90%;
	/* width: 100%; */
}
.back_links {
	text-decoration: none;
	background: transparent;
	border: none;
	outline: none;
	padding: 0;
	margin: 0;
	cursor: pointer;
	color: #000000;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.back_links:hover {
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
}
.boxes {
	width: 300px;
	height: 300px;
	text-align: center;
	margin: 28px;
	border-radius: 50%;
}
.full_image {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	margin-top: 20px;
}
.full_image img {
	max-width: 1000px;
}
#images {
	display: grid;
	grid-template-columns: auto auto auto;
	padding: 10px;
}
#outer_images {
	display: flex;
	justify-content: center;
	border-radius: 5px;
	padding-bottom: 100px;
}
.logo_holder {
	margin-top: 0;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.logo_holder:hover {
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
}
@media screen and (max-width: 1030px) {
	#images {
		grid-template-columns: auto auto;
	}
	@media screen and (max-width: 715px) {
		#images {
			grid-template-columns: auto;
		}
	}
}
figure {
	width: 300px;
	height: 300px;
	margin: 0;
	padding: 0;
	background: #ffffff;
	overflow: hidden;
	border: #76888f 4px solid;
	border-radius: 50%;
}
figure:hover+span {
	bottom: -36px;
	opacity: 1;
}
.hover01 figure img {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.hover01 figure:hover img {
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
}
.image-link {
	border: none;
	background: transparent;
	cursor: pointer;
}

.image-thumb {
	max-width: 400px
}

.hide-old {
	animation: fade-out 0.1s ease-in-out;
}

.show-new {
	animation: fade-in 0.2s ease-in-out;
}

@keyframes fade-out {
	from { opacity: 1; }
	to { opacity: 0; }
}

@keyframes fade-in {
	from { opacity: 0; }
	to { opacity: 1; }
}
.home-text {
	font-size: 11px;
	background-color: #e86044;
	border-radius: 5px;
	padding: 20px;
	width: 350px;
	color: #ffffff;
	line-height: 20px;
	text-align: justify;
	margin-top: 30px;
}
.home-header {
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 15px;
}
.home-paragraph {
	margin-bottom: 15px;
}
.nav-links {
	display: flex;
	justify-content: center;
	position: absolute;
	bottom: -17px;
	z-index: 2;
}
.link {
	background: #76888f;
	color: #ffffff;
	border: 2px #9f9f9f solid;
	border-radius: 50%;
	font-size: 13px;
	padding: 8px 5px 8px 5px;
	font-weight: bold;
	margin: 0 15px 0 15px;
	cursor: pointer;
	white-space: nowrap;
}
.active {
	background: #e86044;
	color: #ffffff;
	cursor: default;
}
.gallery-button {
	background: #76888f;
	border: 1px #ffffff solid;
	border-radius: 50%;
	font-size: 13px;
	padding: 24px 10px 24px 10px;
	font-weight: bold;
	margin: 0 15px 0 15px;
	cursor: pointer;
	color: #ffffff;
}
.gallery-button:hover {
	background: #c9d0d2;
	border: 1px #76888f solid;
	color: #000000;
}
.contact-form {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.form-input {
	border: 0;
	height: 25px;
	border-radius: 4px;
}
.form-textarea {
	border: 0;
	height: 250px;
	border-radius: 4px;
	margin-bottom: 13px;
}
.noti-area {
	background: transparent;
	height: 100%;
	width: 100%;
	padding: 10px;
	margin: auto 0;
	font-weight: bold;
}
.contact-bottom {
	display: flex;
}
@keyframes blink {
    0% { opacity: 1; }
	25% { opacity: 1;}
    50% { opacity: 1; }
	75% { opacity: 0;}
    100% { opacity: 1; }
}
.blink {
	animation: blink 2.5s infinite;
}
input::placeholder, textarea::placeholder {
    /* color: #c9d0d2; */
	color: #a1a1a1;
    font-size: 12px;
    font-style: italic;
}

textarea {
	padding: 5px 3px;
}

input {
	padding-left: 3px;
}

.login-footer {
	margin-top: 15px;
	font-size: 10px;
	color: #ffffff;
}

.reg-link {
	text-decoration: none;
	background: none;
	border: none;
	font-weight: bold;
	color: #ffffff;
	font-size: 10px;
	cursor: pointer;
}

.spacer {
	margin-top: 15px;
}

.whole-page {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	width: 100%;
}

.admin-main {
	display: flex;
	flex-direction: row;
	gap: 20px;
	flex-wrap: wrap;
	justify-content: center;
}

.user-main {
	display: flex;
	flex-direction: row;
	gap: 20px;
	flex-wrap: wrap;
	justify-content: center;
}

.users-grid {
	display: flex;
	flex-direction: column;
}

.user-row {
	font-size: 15px;
	width: 220px;
}

.users-header-name {
	font-size: 16px;
	font-weight: bold;
	width: 200px;
}

.users-header {
	font-size: 16px;
	font-weight: bold;
}

.users-min {
	display: flex;
	justify-content: space-between;
	padding: 5px 0;
}

.users-min-headers {
	display: flex;
	justify-content: space-between;
	padding: 5px 0;
}

.user-delete {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 3px;
	color: #ffffff;
	font-weight: bold;
	border: none;
	border-radius: 50%;
	background: #6c0000;
	width: 19px;
	height: 19px;
	font-size: 11px;
	cursor: pointer;
}

.user-delete:hover {
	background: #8b0000;
}

.prod-delete {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 3px;
	color: #ffffff;
	font-weight: bold;
	border: none;
	border-radius: 50%;
	background: #6c0000;
	width: 19px;
	height: 19px;
	font-size: 11px;
	cursor: pointer;
}

.prod-delete:hover {
	background: #8b0000;
}

.cart-delete {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 3px;
	color: #ffffff;
	font-weight: bold;
	border: none;
	border-radius: 50%;
	background: #6c0000;
	width: 19px;
	height: 19px;
	font-size: 11px;
	cursor: pointer;
}

.cart-delete:hover {
	background: #8b0000;
}

/* Customize the label (the container) */
.checkcontain {
	display: flex;
	position: relative;
	padding-left: 35px;
	margin-bottom: 8px;
	cursor: pointer;
	font-size: 16px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Hide the browser's default checkbox */
.checkcontain input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

/* Create a custom checkbox */
.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 17px;
	width: 17px;
	background-color: #999;
	border-radius: 3px;
}

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

/* When the checkbox is checked, add a yellow background */
.checkcontain input:checked~.checkmark {
	background-color: #ffffff;
}

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

/* Show the checkmark when checked */
.checkcontain input:checked~.checkmark:after {
	display: block;
}

/* Style the checkmark/indicator */
.checkcontain .checkmark:after {
	left: 4px;
	top: 0;
	width: 5px;
	height: 12px;
	border: solid #000000;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

#noti-role {
	height: 20px;
}

.goto-noti {
	display: flex;
	justify-content: left;
	align-items: center;
	height: 20px;
	color: #970000;
	background-color: #edebeb;
}

.menu-link {
	border: none;
	background: none;
	color: #ffffff;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	line-height: 35px;
	width: 100%;
	text-align: left;
}
.menu-active {
	border-bottom: 1px solid #ffffff;
	border-top: 1px solid #ffffff;
	border-radius: 5px;
	line-height: 33px;
	text-align: right;
	background-color: #c95139;
}

.menu-links {
	display: flex;
	flex-direction: column;
	align-items: baseline;
}

#menu-card {
	min-height: 600px;
}

.modal {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1000;
	width: 50vw;
	height: 90%;
	border-radius: 5px;
	background-color: #76888f;
}
.overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 999;
}
.modal-in {
	animation: fade-in 0.3s ease-in-out;
}
.modal-out {
	animation: fade-out 0.3s ease-in-out;
}
.modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 50px;
	width: 100%;
	border-bottom: 1px #ffffff solid;
}
.modal-x {
	border: 1px #ffffff solid;
	border-radius: 50%;
	height: 25px;
	width: 25px;
	background: #76888f;
	color: #ffffff;
	margin-right: 10px;
	cursor: pointer;
}
.modal-x:hover {
	background: #c9d0d2;
	border: 1px #76888f solid;
	color: #000000;
}
.modal-content {
	padding: 25px;
	color: #ffffff;
	overflow-y: auto;
}
.modal-title {
	margin-left: 10px;
	color: #ffffff;
	font-size: 16px;
	font-weight: bold;
}
.cart {
	position: fixed;
	top: 0;
	right: -100%;
	width: 300px;
	height: 100%;
	/* background-color: #e86044; */
	background-color: #ffffff;
	transition: right 0.5s ease-in-out;
	z-index: 1000;
	/* color: #ffffff; */
}
.cart.open {
	right: 0;
}
.cart-x {
	position: absolute;
	top: 5px;
	right: 0;
	border: 1px #ffffff solid;
	border-radius: 50%;
	height: 25px;
	width: 25px;
	background: #76888f;
	color: #ffffff;
	margin-right: 10px;
	cursor: pointer;
}

.cart-header {
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	margin: 25px 0 15px 0;
}

.cart-totals {
	display: flex;
	flex-direction: column;
	padding: 17px;
	align-items: end;
}

.checkout-button {
	border: none;
	border-radius: 5px;
	background-color: #e86044;
	color: #ffffff;
	padding: 7px;
	margin: 10px;
	cursor: pointer;
}

.jbox {
	background-image: url("/static/images/site/cart.svg");
	position: absolute;
	top: 12vh;
	right: 1vw;
	height: 32px;
	width: 32px;
	z-index: 50;
	cursor: pointer;
}
.jbox-items {
	position: absolute;
	top: 9px;
	right: 0px;
	width: 32px;
	text-align: center;
	font-size: 11px;
	color: #ffffff;
	font-weight: bold;
}
.jbox-total {
	position: absolute;
	top: 30px;
	right: 2px;
	font-size: 10px;
	width: 32px;
	text-align: center;
}
.total-sep {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	width: 155px;
}
.price-bold-text {
	font-weight: bold;
}
.file-list {
	max-height: 100px;
	overflow: auto;
}
.card-button {
	background: #c95139;
	border: none;
	border-radius: 10px;
	color: #ffffff;
	font-weight: bold;
	cursor: pointer;
	width: 100px;
	height: 35px;
}
.card-button:hover {
	background: #ad4631;
}

#products-list {
	padding: 10px;
	height: 500px;
	overflow: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

#products-list::-webkit-scrollbar {
    display: none;
}

.product-min-item {
	display: flex;
	flex-direction: row;
	align-items: center;
	border-bottom: 1px #c95139 solid;
	height: 80px;
}

.product-min-stack {
	display: flex;
	flex-direction: column;
}

.product-min-stack-small {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.product-min-name {
	font-size: 16px;
	font-weight: bold;
	padding: 5px;
	width: 175px;
	cursor: pointer;
}

.order-min-name {
	font-size: 16px;
	font-weight: bold;
	padding: 5px;
	width: 175px;
	cursor: pointer;
}

.cart-min-name {
	font-size: 16px;
	font-weight: bold;
	padding: 5px;
	width: 175px;
	cursor: pointer;
}

.order-min-stack {
	display: flex;
	flex-direction: column;
}

.product-min-price {
	font-size: 14px;
	padding: 5px;
	width: 70px;
}

.product-image {
	max-height: 100px;
	object-fit: contain;
	border-radius: 15px;
	border: 2px solid #edebeb;
	margin: 5px;
	max-width: 100px;
	cursor: pointer;
}

.added-image {
	max-height: 100px;
	object-fit: contain;
	border-radius: 15px;
	border: 2px solid #edebeb;
	margin: 5px;
	max-width: 100px;
}

.blank-button {
	border: none;
	padding: 0;
	margin: 0;
	background-color: transparent;
	cursor: pointer;
}

.product-image-contain {
	position: relative;
}

.product-image-delete {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 3px;
	color: #ffffff;
	font-weight: bold;
	border: none;
	border-radius: 50%;
	background: #6c0000;
	width: 19px;
	height: 19px;
	font-size: 11px;
	cursor: pointer;
	position: absolute;
	top: 7px;
	right: 7px;
}

.product-image-delete:hover {
	background: #8b0000;
}

.product-image-min {
	max-height: 70px;
	border-radius: 7px;
	padding: 5px;
	max-width: 70px;
}

.product-image-min-contain {
	display: flex;
	justify-content: center;
	width: 80px;
}

.product-images {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-around;
}

.details-card {
	font-size: 11px;
	padding: 20px;
	width: 250px;
	color: #000000;
	line-height: 20px;
	margin-top: 30px;
}
.images-card {
	font-size: 11px;
	padding: 20px;
	width: 450px;
	color: #000000;
	line-height: 20px;
	margin-top: 30px;
}
.product-details-modified {
	font-size: 12px;
}
.product-details-name {
	font-weight: bold;
	font-size: 22px;
}
.product-details-description {
	font-size: 22px;
}
.product-details-price {
	font-size: 22px;
}
.product-image-solo {
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
	/* border-radius: 10px; */
	cursor: pointer;
}
.main-image {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 450px;
	width: 450px;
	border-radius: 10px;
	background-color: #dfdfdf;
}

.upload-container {
	display: flex;
	flex-direction: column;
}

.edit-images {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	max-height: 110px;
	overflow: auto;
}

.upload-button {
	border: 1px #ffffff solid;
	border-radius: 4px;
	background: #76888f;
	color: #ffffff;
	padding: 5px 10px 5px 5px;
	width: 125px;
	cursor: pointer;
}

.upload-button:hover {
	background: #c9d0d2;
	border: 1px #76888f solid;
	color: #000000;
}

.place-button {
	position: relative;
	border: 1px solid #eeeeee;
	border-radius: 4px;
	background: #d1d1d1;
	color: #000000;
	width: 160px;
	height: 40px;
	font-size: 17px;
	cursor: pointer;
}

.place-button:hover {
	background: #c9d0d2;
	color: #000000;
}

.place-button:disabled {
	background: #d1d1d1;
	cursor: default;
}

.place-button:disabled:hover {
	background: #d1d1d1;
}

.sq-card-wrapper .sq-card-iframe-container {
	background-color: #d1d1d1 !important;
	color: #ffffff !important;
}

.sq-card-wrapper .sq-card-message-error {
    color: #000000 !important;
}

#card-container {
	padding-top: 20px;
}

.quantity-add-contain {
	display: flex;
	flex-direction: row;
	align-items: center;
}
.quantity-add-contain input {
	border: 0;
	height: 20px;
	width: 19px;
	font-size: 16px;
	text-align: center;
}

.cart-add-button {
    border: none;
    padding: 0 3px;
    margin: 0;
    background-color: #e86044;
	border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 20px;
    color: #ffffff;
}

.cart-subtract-button {
    border: none;
    padding: 0 5px;
    margin: 0;
    background-color: #e86044;
	border-radius: 4px 0 0 4px;
    cursor: pointer;
    font-size: 20px;
    color: #ffffff;
}

.quantity-add-button {
    border: none;
    padding: 0 3px;
    margin: 0;
    background-color: #e86044;
	border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 20px;
    color: #ffffff;
}
.quantity-subtract-button {
    border: none;
    padding: 0 5px;
    margin: 0;
    background-color: #e86044;
	border-radius: 4px 0 0 4px;
    cursor: pointer;
    font-size: 20px;
    color: #ffffff;
}
.quantity-add-contain-cart {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 6px;
	font-size: 14px;
}

.order-min-item {
	display: flex;
	flex-direction: row;
	align-items: center;
	border-bottom: 1px #c95139 solid;
	height: 80px;
	cursor: pointer;
	padding: 10px;
	z-index: 200;
}

.order-min-item:hover {
	background-color: #c95139;
}

.order-min-order {
	font-weight: bold;
}

.block-body {
	padding: 10px 10px 20px 12px;
}

.block-header {
	font-weight: bold;
}

#orders-list {
	height: 600px;
	overflow-y: auto;
}

.thank-you {
	font-size: 24px;
	font-weight: bold;
	padding-bottom: 20px;
}

.spinner {
  width: 20px;
  height: 20px;
  border-top: 3px solid #000000;
  border-left: 3px solid #000000;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: none;
  position: absolute;
  top: 6px;
  left: 76px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.dual-block {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
}

.toggle-switch {
  display: inline-block;
  position: relative;
  width: 42px; /* Increased from 40px */
  height: 24px; /* Reduced from 26px */
  padding-right: 20px;
  padding-top: 8px;
}

.toggle-checkbox {
  display: none;
}

.toggle-label {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background-color: #a1a1a1;
  border-radius: 24px; /* Half of new height */
  position: relative;
  transition: background-color 0.4s;
}

.toggle-thumb {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 16px;
  height: 16px;
  background-color: #323232;
  border-radius: 50%;
  transition: transform 0.4s;
}

.toggle-checkbox:checked + .toggle-label {
  background-color: #c95139;
}

.toggle-checkbox:checked + .toggle-label .toggle-thumb {
  /* Calculation: (New switch width - New thumb width - (2 * New left/right padding)) */
  /* (42px - 16px - (2 * 4px)) = 42 - 16 - 8 = 18px */
  transform: translateX(18px);
}

.tracking-div {
	display: flex;
	flex-direction: row;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 5px;
	width: 249px;
}

.shipping-div {
	width: 55%;
}

/* .address-div {
	width: 45%;
} */

.tracking-save {
	background: #c95139;
	border: none;
	color: #ffffff;
	font-weight: bold;
	cursor: pointer;
	width: 50px;
	height: 22px;
}

.tracking-save:hover {
	background: #ad4631;
}

.tracking-in {
	animation: fade-in 0.4s ease-in-out;
}
.tracking-out {
	animation: fade-out 0.4s ease-in-out;
}

.noti-shipping {
	color: #fff170;
	font-size: 12px;
	margin-top: 5px;
}

.shipped {
	color: #000000;
}

/* For screens smaller than 1080px */
@media (max-width: 1080px) {
  .modal {
    width: 60vw;
  }
}

/* For screens smaller than 900px */
@media (max-width: 900px) {
  .modal {
    width: 70vw;
  }
}

/* For screens smaller than 720px */
@media (max-width: 720px) {
  .modal {
    width: 80vw;
  }
}

/* For very small screens */
@media (max-width: 540px) {
  .modal {
    width: 90vw;
  }
}

#init-page {
	display: none;
}

.export-button {
	color: #ffffff;
	border: 1px solid #ffffff;
	border-radius: 5px;
	padding: 10px;
	margin-top: 20px;
	background-color: #76888f;
	cursor: pointer;
}

.export-button:hover {
	background-color: #627177;
}
