/** 
 * Common CSS used in theme pages
 *
 */

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
	font-family: var( --font-primary );
    line-height: 1.2;
	font-optical-sizing: auto;
	margin-bottom: 1rem; 
	font-weight: 700;
}

a {
	color: inherit;
}
ul {
	list-style: none;
	padding: 0;
	margin-left: 0;
}

ul.dots {
	list-style: disc;
	padding-left: 1.5rem;
}
ul.dots.dots-mb li,
ol.dots.dots-mb li {
	margin-bottom: 0.5rem;
}
ul.dots.dots-mb-1 li,
ol.dots.dots-mb-1 li {
	margin-bottom: 1rem;
}

.wrapper.compact {
	max-width: var( --compact-width );
	margin-left: auto;
	margin-right: auto;
}

.flex-center {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.flex-inline-center {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.p-space {
	padding: var( --side-space );
}

img.image-cover {
    width: 100%;
    height: 100%; 
    -o-object-fit: cover; 
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}
img.image-contain {
    width: 100%;
    height: 100%; 
    -o-object-fit: contain; 
       object-fit: contain;
}
img:not([src]) {
    visibility: hidden;
}

.fab.fa-facebook-f {
	-webkit-transform: scale( 0.9 );
	    -ms-transform: scale( 0.9 );
	        transform: scale( 0.9 );
}

.btn-color-primary {
	--bs-btn-border-width: 2px;
	--bs-btn-font-size: 1rem;
	--bs-btn-font-weight: 500;
	--bs-btn-bg: var( --theme-color-primary );
	--bs-btn-color: var( --theme-text-color-primary );
	--bs-btn-active-bg: var( --theme-color-primary-hover );
	--bs-btn-active-border-color: var( --theme-color-primary-hover );
	--bs-btn-focus-bg: var( --theme-color-primary-hover );
	--bs-btn-focus-border-color: var( --theme-color-primary-hover );
	--bs-btn-hover-bg: var( --theme-color-primary-hover );
	--bs-btn-hover-border-color: var( --theme-color-primary-hover );
	--bs-btn-active-color: var( --theme-text-color-primary-hover );
	--bs-btn-focus-color: var( --theme-text-color-primary-hover );
	--bs-btn-hover-color: var( --theme-text-color-primary-hover );
}
.btn-color-primary:where(:focus,:active) {
	box-shadow: 0 0 0 0.25rem rgba( var( --theme-color-primary-rgb ), 0.5 );
}

.btn-outline-color-primary {
	--bs-btn-border-width: 2px;
	--bs-btn-border-color: var( --theme-color-primary );
	--bs-btn-font-size: 1rem;
	--bs-btn-font-weight: 400;
	--bs-btn-bg: transparent;
	--bs-btn-color: #fff;
	--bs-btn-active-bg: var( --theme-color-primary-hover );
	--bs-btn-active-border-color: var( --theme-color-primary-hover );
	--bs-btn-focus-bg: var( --theme-color-primary-hover );
	--bs-btn-focus-border-color: var( --theme-color-primary-hover );
	--bs-btn-hover-bg: var( --theme-color-primary-hover );
	--bs-btn-hover-border-color: var( --theme-color-primary-hover );
	--bs-btn-active-color: var( --theme-text-color-primary-hover );
	--bs-btn-focus-color: var( --theme-text-color-primary-hover );
	--bs-btn-hover-color: var( --theme-text-color-primary-hover );
}
.btn-outline-color-primary:where(:focus,:active) {
	box-shadow: 0 0 0 0.25rem rgba( var( --theme-color-primary-rgb ), 0.5 );
}

.btn-outline-accent {
	--bs-btn-border-radius: 10rem;
	--bs-btn-padding-x: 2rem;
	--bs-btn-padding-y: 0.5rem;
	--bs-btn-font-size: 1rem;
	--bs-btn-font-weight: 400;
	--bs-btn-border-width: 2px;
	--bs-btn-border-color: var( --theme-color-primary );
	--bs-btn-bg: transparent;
	--bs-btn-color: #fff;
	--bs-btn-active-bg: var( --theme-color-primary-hover );
	--bs-btn-active-border-color: var( --theme-color-primary-hover );
	--bs-btn-focus-bg: var( --theme-color-primary-hover );
	--bs-btn-focus-border-color: var( --theme-color-primary-hover );
	--bs-btn-hover-bg: var( --theme-color-primary-hover );
	--bs-btn-hover-color: #fff;
	--bs-btn-hover-border-color: var( --theme-color-primary-hover );
}
.btn-outline-accent:where(:focus,:active) {
	box-shadow: var( --btn-accent-focus-box-shadow );
}

.btn-wpt-secondary {
	--bs-btn-border-width: 2px;
	--bs-btn-padding-x: 1.25rem;
	--bs-btn-padding-y: 0.5rem;
	--bs-btn-font-size: 1rem;
	--bs-btn-font-weight: 400;
	--bs-btn-bg: var( --theme-color-secondary );
	--bs-btn-color: #fff;
	--bs-btn-active-bg: var( --theme-color-secondary-hover );
	--bs-btn-active-border-color: var( --theme-color-secondary-hover );
	--bs-btn-focus-bg: var( --theme-color-secondary-hover );
	--bs-btn-focus-border-color: var( --theme-color-secondary-hover );
	--bs-btn-hover-bg: var( --theme-color-secondary-hover );
	--bs-btn-hover-border-color: var( --theme-color-secondary-hover );
	--bs-btn-hover-color: #fff;
}
.btn-wpt-secondary:where(:focus,:active) {
	box-shadow: var( --btn-wpt-secondary-focus-box-shadow );
}

.btn-rounded {
	--bs-btn-padding-x: 2rem;
	--bs-btn-border-radius: 10rem;
}

.theme-text-color-primary {
	color: var( --theme-color-primary );
}

section {
	position: relative;
}

.section-header {
	margin-bottom: 32px;
	margin-bottom: 2rem;
}
.section-header-title {
	margin-bottom: 16px;
	margin-bottom: 1rem;
}
.section-header-lead {
	font-size: 20px;
	font-size: 1.25rem;
	text-transform: uppercase;
	color: #727272;
	max-width: 1024px;
	max-width: calc( 100% - var( --side-space-x ));
}
.section-header-center {
	text-align: center;
}
.section-header-center .section-header-lead {
	margin-left: auto;
	margin-right: auto;
}


.bg-image {
	position: absolute;
	top: 0px;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: -1;
	overflow: hidden;
}
.bg-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}
.bg-image ~ .wrapper {
	position: relative;
}

.bg-image.shadow:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}
.bg-image.shadow-000-35:after {
	background: rgba( 0, 0, 0, 0.35 );
}
.bg-image.shadow-000-5:after {
	background: rgba( 0, 0, 0, 0.5 );
}


.bg-image.shadow-edges:before,
.bg-image.shadow-edges:after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	width: 100%;
	height: 20%;
	z-index: 1;
}
.bg-image.shadow-edges:before {
	top: -2%;
	background: linear-gradient( 0deg, transparent, rgba( 0, 0, 0, 1 ) );
}
.bg-image.shadow-edges:after {
	bottom: -2%;
	background: linear-gradient( 180deg, transparent, rgba( 0, 0, 0, 1 ) );
}


.forceDisable {
	pointer-events: none !important;
}

.colorset-dark {
	background-image: var( --colorset-dark-bg );
	background-size: contain;
}
.colorset-dark .entry-title {
    color: var( --theme-color-primary );
    font-weight: 800;
}
.colorset-dark .entry-content {
	color: #fff;
}

.colorset-default {
	background-image: var( --colorset-default-bg );
	background-size: contain;
}
.colorset-default .entry-title {
    color: #ce8500;
	font-weight: 900;
	font-size: 2.25rem;
}

/** Form input
 */ 

.form-row {
	margin-bottom: 16px;
	margin-bottom: 1.25rem;
}
.form-row label {
	
}
.form-control {

}

.form-floating .form-control {
	background: transparent !important;
	color: #fff;
	border: none;
	border-bottom: 1px solid #fff;
	border-radius: 0px;
	outline: none !important;
	box-shadow: none !important;
	opacity: 1 !important;
	font-size: 1.125rem;
}
.form-floating textarea.form-control {
	height: calc(4em + 0.75rem + 2px);
}
.form-floating .form-label {
	opacity: 1 !important;
	font-size: 1.125rem;
}
.form-floating>.form-control:focus~label, 
.form-floating>.form-control:not(:placeholder-shown)~label, 
.form-floating>.form-select~label {
    transform: scale(.8) translate( 0.15rem, -0.75rem );
	opacity: 1 !important;
}

/** Form checkbox
 *
 */ 

.form-check {	
	margin-bottom: 0px;
    padding-left: 28px;
    padding-left: 1.75rem;
}
.form-check .form-check-input[type="checkbox"] {	
	border: 5px solid transparent;
	box-shadow: 0 0 0 2px var( --theme-color-primary );
	background: transparent;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    outline: none !important;
	border-radius: 1px;
    margin-left: -28px;
    margin-left: -1.75rem;
    margin-top: 6px;
	cursor: pointer;
}
.form-check .form-check-input[type="checkbox"]:checked {	
	border-color: #000;
	background: var( --theme-color-primary );
}
.form-check .form-check-label {
    font-size: var( --font-size-7);
    font-weight: 500;
	cursor: pointer;
    margin-top: 2px;
	margin-bottom: 0;
}
.form-check .form-check-label b {	
	font-weight: 800;
}

.form-control[type="number"]{
	 -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}
.form-control[type=number]::-webkit-inner-spin-button, 
.form-control[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none;
}

.quantity {
	position: relative;
	padding-right: 1rem;
}
.quantity input.qty {
	margin-right: 0.5rem;
}
.quantity .btn {
    display: flex;
    align-items: center;
	padding: 0;
	position: absolute;
	top: 0;
	right: 0;
	height: 50%;
    margin: 0 auto;
    border: none;
    outline: none !important;
    box-shadow: none !important;
	font-size: 12px;
	color: #fff;
    color: var( --theme-color-primary);
}
.quantity .btn.down {
	top: auto;
	bottom: 0;
}
.quantity .btn:hover {
	opacity: 0.4;
}

.form-row label,
.form-control, 
.form-select , 
.form-check label {
	font-family: var( --bs-font-sans-serif );
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}


/*********************************
	Social media 
*********************************/

.social-icons {
	display: inline-flex;
	align-items: center;
}
.social-icons .social-icons-item { 
}
.social-icons .social-icons-link { 
    line-height: 1;
    display: flex;
    align-items: center;
	justify-content: center;
	margin-right: 1rem;
	text-decoration: none;
	font-size: 1.75rem;
}
.social-icons .social-icons-link i {
	font-size: inherit;
}
.social-icons .social-icons-link:hover i {
	opacity: 0.7;
}

/** 
 * Dark background with golden titles and white text 
 */
.group-dark {
	color: #fff;
	
}
.group-dark :where( h1, h2, h3 ){
    color: var( --theme-color-primary );
    font-weight: 800;
}
.group-dark p.lead {
    text-align: center;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}
.group-dark p:not(.lead) {
    font-size: 1.125rem;
    font-weight: 300;
	max-width: 660px;
    margin-left: auto;
    margin-right: auto;
} 
.group-dark :where( b, strong ){
    font-weight: 700;
} 
.group-dark p ~ h2 {
    margin-top: var( --side-space-h );
} 

/** 
 * Dark background with golden titles and white text 
 */
.group-hero {
	color: #fff; 
}
.group-hero :where( h1, h2, h3 ){
    color: var( --theme-color-primary );
    font-weight: 800;
}
.group-hero :where( .lead, p.lead ){
    text-align: center;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}
.group-hero p:not(.lead) {
    font-size: 1.125rem;
    font-weight: 300;
	max-width: 660px;
    margin-left: auto;
    margin-right: auto;
} 
.group-hero :where( ul li, ol li ) {
	margin-bottom: 0.5rem;
} 
.group-hero :where( b, strong ){
    font-weight: 700;
} 
.group-hero p ~ h2 {
    margin-top: var( --side-space-h );
} 

.group-hero {
	padding-top: 3rem;
	padding-bottom: 3rem;
	margin-top: 3rem;
	margin-bottom: 3rem;
}
.group-hero.with-dots {

}
.group-hero.with-dots {	
	position: relative;
} 
.group-hero.with-dots.dots-top {
    margin-top: 6rem;
}
.group-hero.with-dots.dots-top:before,	
.group-hero.with-dots:first-child:before,	
.group-hero.with-dots:after {	
	content: "";
	position: absolute;
	left: 50%; 
	height: 3rem;
	border-left: 2px dotted #ce8500;
} 
.group-hero.with-dots.dots-top:before,
.group-hero.with-dots:first-child:before {
	top: -3rem;
}	
.group-hero.with-dots:after {	
	bottom: -2.5rem;
} 
.group-hero.with-dots:last-child:before,	
.group-hero.with-dots:last-child:after {	
	content: unset;
} 

.group-compact > div {
	max-width: 768px;
	margin-left: auto;
	margin-right: auto;
}


/*********************************
	Backgrounds 
*********************************/

.background-default {
	background-image: var( --colorset-default-bg );
	background-size: contain;
}
.background-dark {
	background-image: var( --colorset-dark-bg );
	background-size: contain;
}

/*********************************
	WP Blocks 
*********************************/

.wpBlockImageFullScreen {
	position: relative;
	width: 100vw;
	transform: translateX( -50% );
	left: 50%;
}
.wpBlockImageFullScreen img {
	width: 100%;
	height: auto;
	object-fit: cover;
	object-position: center;
	height: calc( 6/16 * 100vw );
}

/*********************************
	Menu notices
*********************************/


:where( .devliveryNotice, .noticeDiscount, .noticeDefault ){
	display: block;
	width: 100%;
	font-size: 1rem;
	font-weight: 400;
	border-radius: 0.25rem;
	margin-bottom: 2rem;
	padding: 2rem;
	color: #fff;
}
.devliveryNotice {
	box-shadow: 0px 0px 0px 2px var( --theme-color-primary-hover );
}
.noticeDiscount {
	background: #b38900;
	text-align: center;
}
.noticeDefault {
	background: #b38900;
}
.devliveryNotice p,
.noticeDiscount p,
.noticeDefault p {
	margin-bottom: 0px;
}
 


.notice {
	width: 100%;
	display: block;
	background: #b38900;
	color: #fff;
	padding: 2rem;
	text-align: center;
	margin-bottom: 2rem;
	border-radius: 0.25rem;
}
.notice-alt {
	display: block;
	color: #fff;
	box-shadow: 0px 0px 0px 2px var( --theme-color-primary );
	font-size: 1rem;
	font-weight: 500;
	border-radius: 0.25rem;
	margin-bottom: 2rem;
	padding: 1.5rem;
}

.notice-NY {
	text-align: left;
}

