/* 
    Created on : 24. 3. 2023, 9:45:15
    Author     : miled
*/
:root {
	--black: #3c3c3c;
	--red: #c80000;
	--red-dark: #820000;
	--color-placeholder: #b8b8b8;
	--yellow: #fdd491;
	--white: #ffffff;
	/*--card-border-color: #e7e7e7;*/
	--card-border-color: #d7d7d7;
	--light-gray: #f0f0f0;
	--text-light-gray: #b4b4b4;
	--green: #679200;
	--green-dark: #4f7000;
	--green-light: #f0f4e6;
	--orange: #ff5200;
	--table-border-color: rgb(222, 226, 230);
	--bs-border-color: #d7d7d7;
	--bs-body-color: #212529;
	--dark-gray: #6c757d;
	--header-color: #d10000;
	--checkbox-border-color: #3e3e3e;
	--checkbox--disabled-border-color: #dcdcdc;
}

@media (min-width: 1400px) {
	.container {
		max-width: 1370px;
	}	
}

body {
	font-family: 'Work Sans', sans-serif;
	min-height: 100vh;
}

.page-login {
	padding-top: 3rem;
	padding-bottom: 3rem;
}

@media(max-width: 767px) {
	.page-login {
		padding-top: 0;
		padding-bottom: 0;
	}	
}

.red {
	color: var(--red);
}

.h1-black {
	color: var(--black);
}

.h1-normal {
	font-weight: 400;
	font-size: 1.5rem;
}

.h1-red-border-bottom {
	color: var(--red);
	font-size: 24px;
	font-weight: normal;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--card-border-color);
	margin-bottom: 1rem;
}

.h2-normal {
	color: var(--black);
	font-size: 25px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1rem;
}

.h2-additional-warning {
	color: var(--black);
	font-size: 16px;
	font-weight: 400;
	background-image: url("data:image/svg+xml,%3Csvg height='512' viewBox='0 0 128 128' width='512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m57.362 26.54-37.262 64.535a7.666 7.666 0 0 0 6.639 11.5h74.518a7.666 7.666 0 0 0 6.639-11.5l-37.258-64.535a7.665 7.665 0 0 0 -13.276 0z' fill='%23ffb400'/%3E%3Cg fill='%23fcf4d9'%3E%3Crect height='29.377' rx='4.333' width='9.638' x='59.181' y='46.444'/%3E%3Ccircle cx='64' cy='87.428' r='4.819'/%3E%3C/g%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 24px;
	padding-left: 1.75rem;
}

.h1-additional-warning {
	color: var(--red);
	font-size: 12px;
	font-weight: 600;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 128 128' xmlns='http://www.w3.org/2000/svg'%3E%3Cg%3E%3Cpath d='m57.362 26.54-37.262 64.535a7.666 7.666 0 0 0 6.639 11.5h74.518a7.666 7.666 0 0 0 6.639-11.5l-37.258-64.535a7.665 7.665 0 0 0 -13.276 0z' fill='%23c80000'/%3E%3Cg fill='%23fcf4d9'%3E%3Crect height='29.377' rx='4.333' width='9.638' x='59.181' y='46.444'/%3E%3Ccircle cx='64' cy='87.428' r='4.819'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 20px;
	padding-left: 1.5rem;
}

.logo {
	width: 102px;
	height: auto;
	margin-bottom: 2rem;
	margin-left: auto;
	margin-right: auto;
	display: block;
}

.login-container .logo {
	width: 190px;
}

.logo-warning {
	width: 140px;
	margin-bottom: 1rem;
}

.index-container {
	background: var(--light-gray);
	padding: 2rem;
	text-align: center;
	width: 440px;
	border-radius: 8px;
	margin-bottom: 1rem;
}

.copyright {
	font-size: 14px;
	color: var(--text-light-gray);
	text-align: center;
	line-height: 1.5;
}

.copyright a {
	color: var(--text-light-gray);
	text-decoration: none;
}

.copyright a:hover,
.copyright a:focus {
	text-decoration: underline;
}

.dot-end::after {
	content: " ⋅ ";
}

.p-light {
	color: #b8b8b8;
	font-size: 13px;
}

.p-white-big {
	color: #fff;
	font-size: 18px;
}

.login-container {
	background: var(--light-gray);
	padding: 3rem 5rem;
	text-align: center;
	max-width: 520px;
	border-radius: 10px;
	margin-bottom: 1rem;
	margin-left: auto;
	margin-right: auto;
}

@media(max-width: 767px) {
	.login-container {
		padding: 2rem 3rem;
	}	
}

.login-container.login-invalid {
	background: var(--red-dark);
}

.login-container.login-invalid .h1-black {
	color: var(--yellow);
}

.login-container .p-light {
	font-size: 18px;
	margin-top: 1rem;
	margin-bottom: 2rem;
}

.form-control,
.form-select {
	font-size: 16px;
}

.form-select {
	border-color: var(--card-border-color);
}

.login-container .form-control {
	font-size: 18px;
	line-height: 2;
	border-color: var(--card-border-color);
}

.login-container .h1-normal {
	font-size: 2rem;
}

.login-container .btn-red {
	font-size: 22px;
	letter-spacing: 5px;
}

.login-container .btn-link {
	font-size: 18px;
}

.form-control::-webkit-input-placeholder {
  color: var(--color-placeholder);
  opacity: 1;
	text-align: center;
}

.form-control::-moz-placeholder {
  color: var(--color-placeholder);
  opacity: 1;
	text-align: center;
}

.form-control::placeholder {
  color: var(--color-placeholder);
  opacity: 1;
	text-align: center;
}

.form-control.is-invalid::-webkit-input-placeholder {
  color: var(--red);
  opacity: 1;
	text-align: center;
}

.form-control.is-invalid::-moz-placeholder {
  color: var(--red);
  opacity: 1;
	text-align: center;
}

.form-control.is-invalid::placeholder {
  color: var(--red);
  opacity: 1;
	text-align: center;
}

.btn {
	text-transform: uppercase;
	font-size: 22px;
	letter-spacing: 5px;
}

@media(max-width: 767px) {
	.btn {
		font-size: 16px;
		letter-spacing: 2px;
	}	
}

.btn.ui-state-disabled {
	opacity: 0.3;
}

.btn-link {
	color: var(--red);
	font-size: 16px;
	text-decoration: none;
	text-transform: none;
	letter-spacing: 0;
}

.btn-link:hover,
.btn-link:focus {
	color: var(--red-dark);
	text-decoration: underline;
}

.btn-reset-filters {
	background-size: 1rem;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 330 330'%3E%3Cpath fill='%23C80000' d='M165,0C120.9,0,79.5,17.2,48.3,48.3c-64.3,64.3-64.3,169,0,233.3C79.5,312.8,120.9,330,165,330 c44.1,0,85.5-17.2,116.7-48.3c64.3-64.3,64.3-169,0-233.3C250.5,17.2,209.1,0,165,0z M239.2,239.2c-2.9,2.9-6.8,4.4-10.6,4.4 c-3.8,0-7.7-1.5-10.6-4.4l-53-53l-53,53c-2.9,2.9-6.8,4.4-10.6,4.4c-3.8,0-7.7-1.5-10.6-4.4c-5.9-5.9-5.9-15.4,0-21.2l53-53l-53-53 c-5.9-5.9-5.9-15.4,0-21.2c5.9-5.9,15.4-5.9,21.2,0l53,53l53-53c5.9-5.9,15.4-5.9,21.2,0c5.9,5.9,5.9,15.4,0,21.2l-53,53l53,53 C245.1,223.9,245.1,233.4,239.2,239.2z'/%3E%3C/svg%3E%0A");
	background-position: right center;
	background-repeat: no-repeat;
	padding-right: 24px;
	padding-left: 0;
	color: var(--black);
	font-weight: 600;	
}

.btn-reset-filters.btn-one-filter {
	color: var(--red);
	background-position: left center;
	padding-right: 0;
	padding-left: 20px;
	background-size: 0.8125rem;
	font-size: 13px;
	text-decoration: none;
	margin-right: 1rem;
}

.btn-reset-filters.btn-one-filter:hover {
	color: var(--red-dark);
}

.login-container.login-invalid .btn-link {
	color: var(--white);
}

.btn-red {
	color: #fff;
	background-color: var(--red);
	border-color: transparent;
}

.btn-red:hover,
.btn-red:focus {
	color: #fff;
	background-color: var(--red-dark);
	border-color: transparent;
}

.btn-green {
	color: #fff;
	background-color: var(--green);
	border-color: transparent;
}

.btn-green:hover,
.btn-green:focus {
	color: #fff;
	background-color: var(--green-dark);
	border-color: transparent;
}

.btn-flag {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.btn-flag img,
.login-help img {
	width: 2rem;
	margin-bottom: 4px;
}

.btn-icon {
	display: inline-flex;
	align-items: center;
}

.btn-icon img {
	width: 1.5rem;
	margin-right: 0.3125rem;
}

.btn-icon.p-0 img {
	margin-right:0;
}

.btn-back {
	border-color: var(--card-border-color);
	text-transform: none;
	letter-spacing: 0;
	font-size: 16px;
}

.btn-back:hover,
.btn-back:focus {
	border-color: var(--card-border-color);
	background: var(--light-gray);
}

.btn-white {
	background: var(--white);
	border-color: var(--card-border-color);
}

.btn-white:hover,
.btn-white:focus {
	background: var(--light-gray);
	border-color: var(--card-border-color);
}

.btn.ui-button-text-only .ui-button-text {
	padding: 0;
}

.hide-desktop,
.hide-desktop.d-flex {
	display: none !important;
}

.toggler {
	display: none;
}

.menu-mobile {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: var(--header-color);
	padding: 5px 12px;
	display: none;
}

.menu-mobile.active {
	display: block;
}

.menu-mobile-link {
	display: flex;
	align-items: center;
	font-size: 14px;
	color: var(--white);
	text-decoration: none;
	font-weight: 600;
	padding: 0.5rem 1rem;
}

.menu-mobile-link img {
	width: 1.25rem;
	margin-right: 8px;
}

.menu-mobile-name {
	color: var(--white);
	display: flex;
	padding: 1rem;
	align-items: center;
}

.menu-mobile-name img {
	width: 3rem;
	margin-right: 8px;
	margin-left: -8px;
}

.menu-mobile-customer {
	color: rgba(255,255,255,0.7);
	display: block;
	padding: 0 1rem;
	font-size: 13px;
}

.menu-mobile-customer-name {
	display: block;
	padding: 0 1rem 2rem;
	color: var(--yellow);
	border-bottom: 1px solid rgba(255,255,255,0.2);
	margin-bottom: 2rem;
}

.toggler img,
.close-menu-mobile img {
	width: 1.5rem;
	height: 1.5rem;
}

.toggler svg path,
.close-menu-mobile svg path {
	fill: #fff;
}

@media(max-width: 767px) {
	.toggler {
		display: block;
	}
	.hide-desktop {
		display: block !important;
	}
	.hide-desktop.d-flex {
		display: flex !important;
	}
	.column-hide-mobile {
		display: none;
	}
	.column-hide-desktop {
		display: block;
	}
	.column-mobile-block {
		display: block;
		width: 100% !important;
	}
	.btn-block-mobile {
		width: 100%;
		display: block;
	}
	.mb-mobile-1 {
		margin-bottom: 1.5rem;
	}
	.table-mobile-no-header thead {
		display: none;
	}
	.table-mobile-no-header tbody {
		border: 0 !important;
	}
	
	.nav-link-desktop {
		display: none;
	}
}

.login-help {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 16px;
	color: var(--white);
}

.login-help strong {
	color: var(--yellow);
}

header {
	background-color: var(--header-color);	
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	z-index: 105;
}

.logo-nav {
	height: 60px;
}

@media(max-width: 767px) {
	.logo-nav {
		height: 36px;
	}	
}

main {
	padding-top: 120px;
	padding-bottom: 40px;
}

.navbar {
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler {
	border: 0;
}
.navbar-toggler:focus {
	box-shadow: none;
}

.navbar-nav {
	align-items: center;
}

.navbar-brand {
	margin-right: 1rem;
	padding-bottom: 5px;
	padding-top: 5px;
}

.nav-kolacek .nav-link {
	font-size: 16px;
	color: var(--white);
	font-weight: 600;
	padding-left: 0.5rem;
	padding-right: 0.5rem;
}

.nav-kolacek .nav-link:hover,
.nav-kolacek .nav-link:focus {
	color: var(--red-dark);
}

.nav-kolacek .nav-link.active {
	color: var(--yellow);
}

.nav-link-icon-add {
	height: 60px;
}

.navbar-nav .dropdown-item {
	font-size: 16px;
	display: flex;
	align-items: center;
	padding-top: 8px;
	padding-bottom: 8px;
}

.navbar-nav .dropdown-item img {
	width: 1.5rem;
	margin-right: 0.5rem;
}

.dropdown-menu-customer {
	border-radius: 0;
	transform: translate3d(-0.5px, 73px, 0px) !important;
}

.dropdown-customer {
	font-size: 16px;
	padding: 6px 1rem 10px 1rem;
	color: var(--text-light-gray);
}

.dropdown-customer strong {
	display: block;
	font-weight: 600;
}

.nav-right-section {
	display: flex;
	align-items: center;
}

.shopping-cart {
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	color: var(--yellow);
	text-align: right;
	display: flex;	
	align-items: center;
	padding-right: 1rem;
	padding-left: 1rem;
	justify-content: flex-end;
}

@media(max-width: 767px) {
	.shopping-cart {
		font-size: 14px;
	}
}

.shopping-cart img {
	height: 30px;
	margin-left: 1rem;
}

.shopping-cart-prices span {
	color: var(--white);
}

.dropdown-menu {
  box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.2);
  border: 0;
}

.card {
	border-color: var(--card-border-color);
}

.card-bg-light {
	border: 0;
	background-color: var(--light-gray);
}

.nav-kolacek {
	padding-top: 10px;
	padding-bottom: 10px;
}

@media(max-width: 767px) {
	.card-bg-none-mobile {
		background-color: transparent;
	}	
	.card-bg-none-mobile .card-body {
		padding: 0;
	}
	.nav-kolacek {
		padding-top: 5px;
		padding-bottom: 5px;
	}
	.navbar-brand {
		padding-bottom: 0;
		padding-top: 0;
	}
}

.card-header {
	border: 0;
	background: transparent;
	padding-top: 14px;
	padding-bottom: 0;
	color: var(--red);
	font-weight: 600;
	font-size: 25px;	
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.card-header-pinned,
.card-header-additional {
	font-size: 16px;
	color: var(--text-light-gray);
	font-weight: 400;
}

.card-header-pinned {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20.4 20.4'%3E%3Cpath fill='%23B4B4B4' d='M0,10.2C0,4.6,4.6,0,10.2,0c5.6,0,10.2,4.6,10.2,10.2c0,5.6-4.6,10.2-10.2,10.2C4.6,20.4,0,15.7,0,10.2z M6.8,12.9h2.8v2c0,1,0.4,1.9,0.6,1.9c0.2,0,0.6-0.9,0.6-1.9v-2h2.8c0.4,0,0.7-0.3,0.7-0.7c0-1.1-0.9-2.3-2.4-2.8l-0.2-2.5 C12.4,6.5,13,6,13.3,5.6c0.1-0.2,0.2-0.4,0.2-0.5c0-0.3-0.2-0.5-0.6-0.5H7.4c-0.3,0-0.6,0.2-0.6,0.5c0,0.2,0.1,0.4,0.2,0.5 C7.4,6,8,6.5,8.7,6.9L8.5,9.4C7,9.9,6.1,11.1,6.1,12.2C6.1,12.6,6.4,12.9,6.8,12.9z'/%3E%3C/svg%3E%0A");
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 18px;
	padding-left: 1.5rem;
}

.card-body {
	font-size: 16px;
}

.status-open {
	color: var(--green);
	font-weight: 600;
}

.status-closed {
	color: var(--orange);
	font-weight: 600;
}

.status-danger {
	color: var(--red);
	font-weight: 600;
}

.status-finished {
	color: var(--text-light-gray);
	font-weight: 600;
}

.table,
.table-filters,
.table-filters .form-select-sm,
.text-normal {
	font-size: 16px;
}

.table-filters {
	margin-top: 1.75rem;
	margin-bottom: 1.5rem;
}

.table-1200 table {
	max-width: 1200px;
}

.table thead {
	background-color: var(--light-gray);
	vertical-align: bottom;
}

.ui-datatable thead th,
.ui-datatable tbody td,
.ui-datatable tfoot td,
.ui-datatable tfoot th {
	border: 0;
	border-bottom: 1px solid var(--table-border-color);
}

.table-thead thead th {
	padding-top: 10px;
	padding-bottom: 10px;
}

.table-no-header thead {
	display: none;
}

.table-thead tbody td {
	padding: 10px;
}

.table-last-row-borderless tbody tr:last-child td {
	border-bottom: 1px solid transparent;
}

.form-check-input:checked {
	background-color: var(--green);
	border-color: var(--green);
}

.table-filters .form-check {
	min-height: initial;
	margin: 0;
}

.table-filters .btn {
	text-transform: none;
	letter-spacing: 0;
	font-size: 16px;
}

.table-filters .form-select-sm {
	height: 34px;
}

.btn-outline-success {
	color: var(--green);
	border-color: var(--green);
}

.btn-outline-success:hover,
.btn-outline-success:focus {
	border-color: var(--green);
	background-color: var(--green);
}

.btn-outline-success.active {
	background-color: var(--green-light);
	border-color: var(--green);
	color: var(--green);
	font-weight: 600;
}

.text-gray {
	color: var(--text-light-gray);
}

.text-sm {
	font-size: 13px;
}

.text-sm img {
	width: 14px;
	margin-top: -2px;
}

.table tr.order-finished {
	color: var(--text-light-gray);
}

.table tr.order-finished .btn img {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	opacity: 0.5;
}

.logos {
	margin-top: 2rem;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.logos img {
	width: 70px;
	margin-left: 1rem;
	margin-right: 1rem;
}

.logos span {
	font-weight: 600;
	font-size: 13px;
}

.logos.footer {
	justify-content: center;
}

.logos.footer img,
.logo-disabled {
	-webkit-filter: grayscale(1) opacity(0.5);
	filter: grayscale(1) opacity(0.5);
}

.zeroSize {
	visibility: hidden;
	padding: 0px;
	margin: 0px;
	border: 0px;
	width: 0px;
	height: 0px;
	display: none;
}

.ajax-status {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 10000;
	left: 0;
	top: 0;
	cursor: progress;
}

.ajax-status-container {
	cursor: progress;
	left: 50%;
	top: 50%;
	position: fixed;
	z-index: 9999;
	margin-top: -40px;
	margin-left: -120px;
	-webkit-box-shadow: 5px 5px 23px 8px rgba(0,0,0,0.32);
	-moz-box-shadow: 5px 5px 23px 8px rgba(0,0,0,0.32);
	box-shadow: 5px 5px 23px 8px rgba(0,0,0,0.32);
	background-color: #fff;
	width: 240px;
	height: 44px;
	font-size: 16px;
	text-align: center;
	border-radius: 6px;
}
.ajax-status-container .ui-panel-content {
	padding: 0.5rem 1.5rem;
}

.btn-group .ui-button-text-only .ui-button-text {
	padding: 0;
}

.link-green {
	background: var(--green);	
	color: var(--white);
	display: inline-block;
	padding: 4px 8px;
	border-radius: 0.375rem;
	white-space: nowrap;
}

.form-check {
	padding-left: 0;
}

.ui-chkbox {
	display: inline-flex;
	align-items: center;
}

.ui-chkbox .ui-chkbox-box {
	border: 1px solid var(--checkbox-border-color);
	background-color: var(--white);
}

.ui-chkbox .ui-chkbox-box.ui-state-disabled {
	border: 1px solid var(--checkbox--disabled-border-color);
}

.ui-chkbox .ui-chkbox-box.ui-state-focus {
	outline: 0;
	box-shadow: 0 0 0 .25rem rgba(13,110,253,.25);
}

.ui-chkbox .ui-chkbox-box.ui-state-active {
	border: 1px solid var(--green);
	background-color: var(--green);
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.ui-selectbooleancheckbox + .ui-outputlabel {
	font-size: 16px;
	margin-left: 8px;
}

.ui-chkbox-label {
	font-size: 16px;
}

.ui-paginator.ui-paginator-bottom {
	padding-top: 1rem;
}

.ui-paginator .ui-paginator-pages {
	padding: 0;
	border: 0;
	margin: 0;
}

.ui-paginator-page {
	color:#28a745;
}

.ui-paginator .ui-paginator-page,
.ui-paginator .ui-paginator-next,
.ui-paginator .ui-paginator-last,
.ui-paginator .ui-paginator-first,
.ui-paginator .ui-paginator-prev,
.ui-paginator .ui-paginator-current {
	display: inline-block;
	padding: .25rem .5rem;
	border: none;
	margin-left: -2px;
	background-color: #fff;
	font-size: 1rem;
	line-height: 1.5;
}

.ui-paginator .ui-paginator-page:hover,
.ui-paginator .ui-paginator-next:hover,
.ui-paginator .ui-paginator-last:hover,
.ui-paginator .ui-paginator-first:hover,
.ui-paginator .ui-paginator-prev:hover,
.ui-paginator .ui-paginator-current:hover {
	color:#1e7e34;
	background-color: #e9ecef;
}

.ui-paginator .ui-paginator-first {
	border-top-left-radius: .25rem;
	border-bottom-left-radius: .25rem;
}

.ui-paginator .ui-paginator-last {
	border-top-right-radius: .25rem;
	border-bottom-right-radius: .25rem;
}

.ui-paginator .ui-paginator-page.ui-state-active {
	z-index: 3;
	color: var(--green-dark);
	background-color: var(--green-light);
	border-color: var(--green-light);
	font-weight: 600;
	border-radius: 2px;
}

.ui-paginator .ui-icon-seek-end {
	display: inline-block;
	width: 10px;
	height: 10px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16px' height='16px' viewBox='0 0 16 16'%3E%3Cpath fill='%23666666' d='M15.1,7.5L7.8,0.2c-0.3-0.3-0.7-0.3-1,0c-0.3,0.3-0.3,0.7,0,1L13.5,8l-6.8,6.8 c-0.3,0.3-0.3,0.7,0,1C6.9,15.9,7.1,16,7.3,16c0.2,0,0.4-0.1,0.5-0.2l7.3-7.3c0.1-0.1,0.2-0.3,0.2-0.5S15.2,7.6,15.1,7.5z'/%3E%3Cpath fill='%23666666' d='M9.5,8c0-0.2-0.1-0.4-0.2-0.5L2,0.2c-0.3-0.3-0.7-0.3-1,0c-0.3,0.3-0.3,0.7,0,1L7.7,8	l-6.8,6.8c-0.3,0.3-0.3,0.7,0,1C1.1,15.9,1.3,16,1.5,16s0.4-0.1,0.5-0.2l7.3-7.3C9.4,8.4,9.5,8.2,9.5,8z'/%3E%3C/svg%3E%0A");
	background-size: 10px 10px;
	background-repeat: no-repeat;
	background-position: center center;
}

.ui-paginator .ui-icon-seek-first {
	display: inline-block;
	width: 10px;
	height: 10px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='16px' height='16px' viewBox='0 0 16 16'%3E%3Cpath fill='%23666666' d='M0.7,8c0,0.2,0.1,0.4,0.2,0.5l7.3,7.3C8.4,15.9,8.5,16,8.7,16c0.2,0,0.4-0.1,0.5-0.2 c0.3-0.3,0.3-0.7,0-1L2.5,8l6.8-6.8c0.3-0.3,0.3-0.7,0-1c-0.3-0.3-0.7-0.3-1,0L0.9,7.5C0.8,7.6,0.7,7.8,0.7,8z'/%3E%3Cpath fill='%23666666' d='M6.8,8.5l7.3,7.3c0.1,0.1,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2c0.3-0.3,0.3-0.7,0-1L8.3,8l6.8-6.8 c0.3-0.3,0.3-0.7,0-1c-0.3-0.3-0.7-0.3-1,0L6.8,7.5C6.6,7.6,6.5,7.8,6.5,8C6.5,8.2,6.6,8.4,6.8,8.5z'/%3E%3C/svg%3E%0A");
	background-size: 10px 10px;
	background-repeat: no-repeat;
	background-position: center center;
}

.ui-paginator .ui-icon-seek-prev,
.ui-datepicker .ui-datepicker-prev {
	display: inline-block;
	width: 10px;
	height: 10px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16px' height='16px' viewBox='0 0 16 16'%3E%3Cpath fill='%23666666' d='M3.6,8c0,0.2,0.1,0.4,0.2,0.5l7.3,7.3c0.1,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4-0.1,0.5-0.2 c0.3-0.3,0.3-0.7,0-1L5.4,8l6.8-6.8c0.3-0.3,0.3-0.7,0-1c-0.3-0.3-0.7-0.3-1,0L3.8,7.5C3.7,7.6,3.6,7.8,3.6,8z'/%3E%3C/svg%3E%0A");
	background-size: 10px 10px;
	background-repeat: no-repeat;
	background-position: center center;
}

.ui-paginator .ui-icon-seek-next,
.ui-datepicker .ui-datepicker-next {
	display: inline-block;
	width: 10px;
	height: 10px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16px' height='16px' viewBox='0 0 16 16'%3E%3Cpath fill='%23666666' d='M12.2,7.5L4.9,0.2c-0.3-0.3-0.7-0.3-1,0c-0.3,0.3-0.3,0.7,0,1L10.6,8l-6.8,6.8 c-0.3,0.3-0.3,0.7,0,1C4,15.9,4.2,16,4.4,16c0.2,0,0.4-0.1,0.5-0.2l7.3-7.3c0.1-0.1,0.2-0.3,0.2-0.5S12.3,7.6,12.2,7.5z'/%3E%3C/svg%3E%0A");
	background-size: 10px 10px;
	background-repeat: no-repeat;
	background-position: center center;
}

.ui-paginator .ui-state-disabled {
	opacity: 0.6;
}

.ui-widget-overlay {
	background: rgba(0,0,0,.32);
}

.ui-dialog {
	background: #fff;
	border-radius: 4px;
}

.ui-dialog-content.ui-widget-content {
  padding: 2rem;
}

.dialog-content-pt-0 .ui-dialog-content.ui-widget-content {
	padding-top: 0;
}

.dialog-info-product {
	font-size: 16px;
}

.ui-dialog.ui-shadow {
  box-shadow: 0 5px 30px rgba(0,0,0,0.5);
}

.h3-dialog-red,
.ui-dialog .ui-confirm-dialog-message {
	font-weight: 600;
	font-size: 20px;
	color: var(--red);
}

.ui-confirm-dialog-message {
	display: block;
	padding-top: 5rem;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 92.1 83.5'%3E%3Cpath fill='%23FFD100' d='M0,71.6c0-2.1,0.5-4.2,1.7-6.2L35.8,6c2.2-4,6.2-6,10.2-6s8,2,10.2,6l34.1,59.4c1.1,1.9,1.7,4.1,1.7,6.2 c0,6.7-4.5,11.9-12,11.9H12C4.5,83.5,0,78.3,0,71.6z M51,64.2c0-2.7-2.2-4.7-4.9-4.7c-2.7,0-4.9,2.1-4.9,4.7c0,2.6,2.3,4.7,4.9,4.7 C48.7,68.9,51,66.8,51,64.2z M49.6,50.5l0.7-23.9c0-2.3-1.8-4-4.2-4c-2.5,0-4.2,1.7-4.1,4l0.6,23.9c0,2.3,1.3,3.6,3.6,3.6 C48.3,54.1,49.5,52.9,49.6,50.5z'/%3E%3C/svg%3E%0A");
	background-size: 4rem;
	background-position: center top;
	background-repeat: no-repeat;
}

.ui-confirm-dialog .ui-dialog-content.ui-widget-content {
	padding-top: 0;
	padding-bottom: 0;
	max-width: 310px;
	text-align: center;
}

.p-dialog {
	font-size: 16px;
}

.ui-dialog .ui-dialog-titlebar-close {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23c80000' d='M 7.21875 5.78125 L 5.78125 7.21875 L 14.5625 16 L 5.78125 24.78125 L 7.21875 26.21875 L 16 17.4375 L 24.78125 26.21875 L 26.21875 24.78125 L 17.4375 16 L 26.21875 7.21875 L 24.78125 5.78125 L 16 14.5625 Z'/%3E%3C/svg%3E");
	background-size: 1.5rem;
	background-repeat: no-repeat;
	width: 1.5rem;
	height: 1.5rem;
}

.ui-dialog .ui-dialog-title {
	font-size: 14px;
	font-weight: 600;
}

.ui-dialog .ui-dialog-footer {
  padding: 0 2rem 1rem;
}

.ui-dialog .ui-button.ui-confirmdialog-yes,
.ui-dialog .ui-button.ui-confirmdialog-no {
	display: inline-block;
  padding: 0.375rem 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--white);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  border-radius: 0.375rem;	
	text-transform: uppercase;
	font-size: 16px;
	letter-spacing: 2px;
	background-repeat: no-repeat;
	background-position: 8px center;
	background-size: 1.125rem;
}

.ui-dialog .ui-button.ui-confirmdialog-yes {
	background-color: var(--red);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23fff' d='M 28.28125 6.28125 L 11 23.5625 L 3.71875 16.28125 L 2.28125 17.71875 L 10.28125 25.71875 L 11 26.40625 L 11.71875 25.71875 L 29.71875 7.71875 Z'/%3E%3C/svg%3E");	
}

.ui-dialog .ui-button.ui-confirmdialog-no {
	background-color: var(--dark-gray);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23fff' d='M 7.21875 5.78125 L 5.78125 7.21875 L 14.5625 16 L 5.78125 24.78125 L 7.21875 26.21875 L 16 17.4375 L 24.78125 26.21875 L 26.21875 24.78125 L 17.4375 16 L 26.21875 7.21875 L 24.78125 5.78125 L 16 14.5625 Z'/%3E%3C/svg%3E");
}

.ui-dialog .ui-button-text-icon-left .ui-button-text {
  padding: 0 0 0 22px;
}

.ui-confirm-dialog .ui-dialog-buttonpane {
	text-align: center;
}

.form-label {
	font-size: 16px;
}

.form-label-order {
	font-size: 16px;
	font-weight: 600;
	white-space: nowrap;
	margin-right: 1rem;
}

.form-label-order-number {
	color: var(--white);
	display: inline-block;
	background: var(--red);
	width: 1rem;
	height: 1rem;
	border-radius: 50%;
	text-align: center;
	line-height: 1rem;
	font-size: 11px;
	margin-right: 0.5rem;
}

.input-only-text {
	font-size: 16px;
	margin-right: 1rem;
}

.form-calendar {
	width: 100%;
}

.form-calendar .ui-inputfield {
	font-size: 16px;
	display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  background-clip: padding-box;
  border: 1px solid var(--bs-border-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 33.1'%3E%3Cpath d='M0,27.7V5.4C0,1.9,1.9,0,5.4,0h25.1C34.2,0,36,1.8,36,5.4v22.2c0,3.5-1.9,5.4-5.4,5.4H5.4C1.9,33.1,0,31.4,0,27.7z M30.7,30.6c1.8,0,2.7-1,2.7-2.9V10.9c0-1.9-1-2.9-2.7-2.9H5.3c-1.8,0-2.7,1-2.7,2.9v16.8c0,1.9,1,2.9,2.7,2.9H30.7z M7.5,20v-1.1 c0-0.6,0.2-0.8,0.8-0.8h1.1c0.6,0,0.8,0.2,0.8,0.8V20c0,0.6-0.2,0.8-0.8,0.8H8.3C7.8,20.6,7.5,20.5,7.5,20z M7.5,25.9v-1.1 c0-0.6,0.2-0.8,0.8-0.8h1.1c0.6,0,0.8,0.2,0.8,0.8v1.1c0,0.6-0.2,0.8-0.8,0.8H8.3C7.8,26.7,7.5,26.6,7.5,25.9z M13.8,13.9v-1.1 c0-0.6,0.2-0.8,0.8-0.8h1.1c0.6,0,0.8,0.2,0.8,0.8v1.1c0,0.6-0.2,0.8-0.8,0.8h-1.1C13.9,14.7,13.8,14.6,13.8,13.9z M13.8,20v-1.1 c0-0.6,0.2-0.8,0.8-0.8h1.1c0.6,0,0.8,0.2,0.8,0.8V20c0,0.6-0.2,0.8-0.8,0.8h-1.1C13.9,20.6,13.8,20.5,13.8,20z M13.8,25.9v-1.1 c0-0.6,0.2-0.8,0.8-0.8h1.1c0.6,0,0.8,0.2,0.8,0.8v1.1c0,0.6-0.2,0.8-0.8,0.8h-1.1C13.9,26.7,13.8,26.6,13.8,25.9z M19.8,13.9v-1.1 c0-0.6,0.2-0.8,0.8-0.8h1.1c0.6,0,0.8,0.2,0.8,0.8v1.1c0,0.6-0.2,0.8-0.8,0.8h-1.1C20,14.7,19.8,14.6,19.8,13.9z M19.8,20v-1.1 c0-0.6,0.2-0.8,0.8-0.8h1.1c0.6,0,0.8,0.2,0.8,0.8V20c0,0.6-0.2,0.8-0.8,0.8h-1.1C20,20.6,19.8,20.5,19.8,20z M19.8,25.9v-1.1 c0-0.6,0.2-0.8,0.8-0.8h1.1c0.6,0,0.8,0.2,0.8,0.8v1.1c0,0.6-0.2,0.8-0.8,0.8h-1.1C20,26.7,19.8,26.6,19.8,25.9z M25.9,13.9v-1.1 c0-0.6,0.2-0.8,0.8-0.8h1.1c0.6,0,0.8,0.2,0.8,0.8v1.1c0,0.6-0.2,0.8-0.8,0.8h-1.1C26.1,14.7,25.9,14.6,25.9,13.9z M25.9,20v-1.1 c0-0.6,0.2-0.8,0.8-0.8h1.1c0.6,0,0.8,0.2,0.8,0.8V20c0,0.6-0.2,0.8-0.8,0.8h-1.1C26.1,20.6,25.9,20.5,25.9,20z'/%3E%3C/svg%3E%0A");
	background-size: 1rem;
	background-repeat: no-repeat;
	background-position: right 8px center;
}

.form-calendar-auto .ui-inputfield {
	width: auto;
	margin: auto;
}

.ui-selectmanycheckbox {
	font-size: 16px;
}

@media(max-width: 767px) {
	.ui-selectmanycheckbox {
		font-size: 12px;
	}	
}

label.ui-state-disabled {
	opacity: 0.3;
}

.ui-datepicker {
  box-shadow: 0 8px 26px rgba(0,0,0,0.2);
	font-size: 14px;
	background-color: var(--white);
}

.ui-datepicker .ui-state-disabled {
	opacity: 0.3;
}

.ui-datepicker .ui-state-default {
	font-weight: 600;
	color: var(--bs-body-color);
	text-align: center;
}

.ui-datepicker .ui-state-default.ui-state-active {
	font-weight: 600;
	color: var(--white);
	background-color: var(--green);
	border-radius: 2px;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
	width: 18px;
	height: 18px;
	background-size: 12px 12px;
	top: 6px;
	cursor: pointer;
}

.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
	background-color: var(--light-gray);	
}

.ui-datepicker .ui-datepicker-prev-hover {
	left: 2px;
}

.ui-datepicker .ui-datepicker-next-hover {
	right: 2px;
}

.ui-datepicker .ui-datepicker-title {
  font-size: 16px;
  color: var(--red);
}

.ui-datepicker table {
	font-size: 16px;
}

.link-dropdown-menu {
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	width: 1.25rem;
	height: 1.25rem;
	border-radius: 50%;
}

.link-dropdown-menu img {
	width: 1.25rem;
	height: 1.25rem;
}

.link-dropdown-menu:hover {
	background-color: var(--light-gray);
}

.ui-contextmenu {
	box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.25);
	padding: .5rem 0;
	border-radius: 6px;
	background-color: var(--white);
	font-size: 16px;
}

.ui-contextmenu .ui-menuitem-link {
	width: 100%;
	padding: 0.25rem 1.125rem;	
	display: flex;
	align-items: center;
	color: var(--bs-body-color);
}

.ui-contextmenu .ui-menuitem-link:hover {
	background-color: var(--light-gray);
}

.ui-contextmenu .ui-menuitem-link img {
	width: 1.5rem;
	height: 1.5rem;
	margin-right: 4px;
}

hr {
	border-color: var(--card-border-color);
	opacity: 1;
}

/* temporary */
.ui-carousel-header {
	display: none;
}

.btn-products .ui-button {
	font-size: 16px;
	border: 1px solid var(--card-border-color);
	padding: 0.25rem 0.5rem;
	border-radius: 4px;
	margin-right: 4px;
	margin-bottom: 4px;
}

.btn-products .ui-button.ui-state-active {
	color: var(--green);
	border-color:  var(--green);
	background: var(--green-light);
	font-weight: 600;
}

.product-item {
	font-size: 16px;
	padding: 1.25rem;
	height: 100%;
}

@media(max-width: 767px) {
	.product-item {
		margin-bottom: 1rem;
	}	
}

.ui-md-3 {
	padding: 0;
}

.product-item-img {
	display: flex;
	align-content: center;
	align-items: center;
	width: 100%;
	margin-bottom: 1rem;
}
.product-item-img img {
	width: 100%;
	height: 284px;
	max-height: 100%;
	object-fit: cover;
}
.product-item-link {
	text-decoration: none;
}

.product-item:hover {
	background: var(--light-gray);
}

.link-product-info {
	font-size: 12px;
	display: inline-flex;
	align-items: center;
	color: var(--text-light-gray);
	text-decoration: none;
}

.link-product-info:hover {
	color: var(--green);
}

.link-product-info img {
	width: 1rem;
	margin-right: 0.25rem;
}

.amount-spinner {
	display: inline-block;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	width: calc(30 + 2.5rem);
}

.amount-spinner .ui-spinner-input {
	width: 30px;
	text-align: center;
	font-weight: 600;
	border: 1px solid var(--card-border-color);
	border-radius: 4px;
	padding: 2px;
}

.amount-spinner .ui-spinner-button {
	width: 1rem;
	height: 1rem;
	border-radius: 50%;
	background-color: var(--green);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 0.8125rem;
}

.amount-spinner .ui-spinner-up {
	right: 0;
	top: 50%;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23fff' d='M 15 5 L 15 15 L 5 15 L 5 17 L 15 17 L 15 27 L 17 27 L 17 17 L 27 17 L 27 15 L 17 15 L 17 5 Z'/%3E%3C/svg%3E");
	margin-top: -0.5rem;
}

.amount-spinner .ui-spinner-down {
	left: 0;
	right: auto;
	top: 50%;
	margin-top: -0.5rem;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23fff' d='M 5 15 L 5 17 L 27 17 L 27 15 Z'/%3E%3C/svg%3E");
}

.basket-container {
	position: relative;
	flex-grow: 1;
}

.basket-panel {
	position: absolute;
	top: 69px;
	right: 0;
	padding: 16px;
	background: #fff;
	box-shadow: 0 0 8px rgba(0,0,0,0.1);	
	width: 400px;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	font-size: 16px;
	z-index: 10;
	display: none;
	max-height: calc(100vh - 100px);
	overflow: auto;
}

.basket-panel.open {
	display: block;
}

@media(max-width: 767px) {
	.basket-panel {
		width: 100%;
		position: fixed;
		left: 0;
	}
}

.ui-growl {
	top: auto;
	bottom: 20px;
}

.ui-growl-item-container {
	box-shadow: 5px 5px 23px 8px rgba(0,0,0,0.32);
	background: var(--red-dark);
	color: var(--white);
	font-size: 13px;
	border-radius: 0.5rem;
	opacity: 1;
}

.ui-growl-message,
.ui-growl-title {
	padding-bottom: 0;
}

.ui-growl-image-error {
	background-size: 36px;	
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 128 128' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m57.362 26.54-37.262 64.535a7.666 7.666 0 0 0 6.639 11.5h74.518a7.666 7.666 0 0 0 6.639-11.5l-37.258-64.535a7.665 7.665 0 0 0 -13.276 0z' fill='%23ffb400'/%3E%3Cg fill='%23fcf4d9'%3E%3Crect height='29.377' rx='4.333' width='9.638' x='59.181' y='46.444'/%3E%3Ccircle cx='64' cy='87.428' r='4.819'/%3E%3C/g%3E%3C/svg%3E");
}

.ui-growl-icon-close {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23ffffff' d='M 7.21875 5.78125 L 5.78125 7.21875 L 14.5625 16 L 5.78125 24.78125 L 7.21875 26.21875 L 16 17.4375 L 24.78125 26.21875 L 26.21875 24.78125 L 17.4375 16 L 26.21875 7.21875 L 24.78125 5.78125 L 16 14.5625 Z'/%3E%3C/svg%3E");
	background-size: 16px;
  width: 16px;
  height: 16px;
	display: block !important;
}

.link-new-order {
	position: relative;
}

.link-new-order span {
	display: none;
}

.link-new-order:hover span {
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23c80000' clip-rule='evenodd' d='m231.25 365.96v-85.18h-85.21c-32.54 0-32.54-49.52 0-49.52h85.21v-85.21c0-32.54 49.52-32.54 49.52 0v85.21h85.18c32.54 0 32.54 49.52 0 49.52h-85.18v85.18c0 32.54-49.52 32.54-49.52 0zm24.75 146.04c141.39 0 256-114.6 256-256 0-141.39-114.61-256-256-256s-256 114.61-256 256 114.61 256 256 256z' fill-rule='evenodd'/%3E%3C/svg%3E");
	background-size: 60px 60px;
	background-repeat: no-repeat;
	background-position: 0.5rem 50%;
	display: block;
	position: absolute;
	left: 0;
	top: -19px;
	background-color: var(--yellow);
	color: var(--red);
	height: 94px;
	line-height: 100px;
	white-space: nowrap;
	padding-left: calc(60px + 1.5rem);
	padding-right: 1.5rem;
}

.empty-cart-number {
	background: var(--red);
	color: #fff;
	display: inline-block;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	text-align: center;
	line-height: 16px;
	font-size: 10px;
	transform: translate3d(-16px,-6px,0);
}

.ui-carousel.logos .ui-carousel-viewport .ui-carousel-items .ui-carousel-item {
	float: none;
	display: inline-flex;
}

@media(max-width: 767px) {
	.mobile-selectmanycheckbox {
		width: 100%;
	}

	.mobile-selectmanycheckbox td {
		text-align: center;
		width: 20%;
	}

	.mobile-selectmanycheckbox label {
		margin: 0;
		margin-top: 8px;
		display: block;
	}
	
	.ui-paginator .ui-paginator-pages {
		display: inline-block;
	}
	
	.col-mobile-100 {
		width: 100%;
		display: block;
		margin-bottom: 8px;
	}
	.ui-carousel.logos {
		width: auto !important;
	}
	.ui-carousel.logos .ui-carousel-viewport .ui-carousel-items {
		display: flex;
		flex-wrap: wrap;
		width: auto;
		align-items: center;
	}
	.ui-carousel.logos .ui-carousel-viewport .ui-carousel-items .ui-carousel-item {
		width: auto !important;
	}
	.dialog-info-product,
	.dialog-info-product table {
		width: auto !important;
	}
	.dialog-info-product .img-fluid {
		margin-bottom: 1rem;
	}
	.logos.footer {
		display: none;
	}
}

.filters-reset {
	margin-top: 1rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

@media (max-width: 767px) {
	.filters-reset {
		flex-wrap: wrap;
	}
}

.img-product-modal {
	width: 456px;
	height: 456px;
	object-fit: cover;
}

@media (max-width: 767px) {
	.img-product-modal {
		width: 300px;
		height: 300px;
	}
}