@font-face {
	src: url(../fonts/sansplan.otf);
	font-family: sansfont;
}

* {
	font-family: sansfont;
}

@media  only screen and (max-width: 576px) {
	.stick-header {
		position: fixed;
		top: 0;
		z-index: 100;
	}

	.sticky-fake {
		width: 100%;
		padding-bottom: 40%;
	}

}

.grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 20px;
	align-items: stretch;
}

.grid>article {
	border: 1px solid #ccc;
	box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.3);
}

.grid>article img {
	max-width: 100%;
}

.text {
	padding: 0 20px 20px;
}

.text>button {
	background: gray;
	border: 0;
	color: white;
	padding: 10px;
	width: 100%;
}

.plus {
	margin: 0px;
	border-radius: 50%;
	height: 30px;
	width: 30px;
	color: #f2f2f2;
	display: inline-block;
	background: linear-gradient(white, white),
		linear-gradient(white, white), #f2f2f2;
	background-position: center;
	background-size: 50% 2px, 2px 50%;
	/*thickness = 2px, length = 50% (25px)*/
	background-repeat: no-repeat;
}

.extraPlus {
	margin: 0px;
	border-radius: 50%;
	height: 30px;
	width: 30px;
	color: #f2f2f2;
	display: inline-block;
	background: linear-gradient(white, white),
		linear-gradient(white, white), #f2f2f2;
	background-position: center;
	background-size: 50% 2px, 2px 50%;
	/*thickness = 2px, length = 50% (25px)*/
	background-repeat: no-repeat;
}

.hov1Extra:hover {
    background-color: #e65540;
    color: #fff
}

.sub-category-effect {
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
	cursor: pointer;
}

.sub-category-effect>.category-card-name {
	background-color: white;
}

.sub-category-effect.active>.category-card-name {
	background-color: #f2f2f2;
}

.disable-overlay{
	z-index: 99;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.5);
  }

/*cart style*/

.product-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
  }

  .product-item {
	width: 200px;
	margin: 20px;
	padding: 10px;
	border: 1px solid #ccc;
	text-align: center;
  }

  .cart-block {
	cursor: pointer;
  }

  #cart-modal {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #fff;
	padding: 20px;
	border: 1px solid #ccc;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }

  @media only screen and (max-width: 768px) {
	#cart-modal {
		width: 100%;
		top: 0%;
		left: 0%;
		transform: translate(-0%, -0%);
	}
	.main-section{
		padding-top: 80px !important;
	}

	.search{
		display: block;
		float: none !important;
		text-align: center !important;
		margin-top: 8px;
	}
  }

  .main-section{
	padding-top: 0px;
  }

  .search{
	display: inline-block;
	float: right;
	border: 1px #e8e8e8 solid;
	border-radius: 4px;
  }
 
  #total-amount {
	font-weight: bold;
  }

  #close-cart-modal {
	float: right;
	padding: 5px 10px;
	background-color: #f2f2f2;
	border: none;
	cursor: pointer;
  }

  .top-box{
	background: white;
	box-shadow: 0 8px 16px 0 rgba(0,0,0,.2);
	padding: 8px;
  }


/* Important part */
.modal-dialog{
    overflow-y: initial !important
}
.modal-body{
    max-height: 80vh;
    overflow-y: auto;
}

.language-button{
	border: 1px black solid;
	padding: 3px;
	border-radius: 6px;
	margin-left: 5px;
	margin-right: 5px;
	cursor: pointer;
}

#canvasContainer {
	position: relative;
	width: 100%;
	max-width: 400px;
  }
  canvas {
	border: 1px solid black;
	width: 100%;
	height: 200px;
	display: block;
  }
  #clearButton {
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: red;
	color: white;
	border: none;
	padding: 5px;
	font-size: 12px;
	cursor: pointer;
  }