/*
Theme Name: Aladdin's 2020
Theme URI: https://aladdins.com
Author: Sheamus Crowley
Author URI: https://sheamuscrowley.com
Description: A bespoke theme for Aladdin's.
Version: 1.1.2
Text Domain: aladdins
*/


/* General */

html, body { margin: 0 }

body {
    background-image: url(assets/images/bg-wood.jpg);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

.container {
    width: calc(100% - 120px);
    max-width: 1420px;
    min-height: 100vh;
    margin: 0 auto;
    background-color: #fff;
    background-image: url(assets/images/bg-noise.png);
    box-shadow: 0 0 30px rgba(0,0,0,0.4);
}
.admin-bar .container {
    min-height: calc(100vh - 32px);
}

.btn, input[type="submit"], button {
    display: inline-block;
    min-width: 240px;
    background-color: #2a415a;
    color: #fff;
    border-radius: 6px;
    padding: 14px 30px;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    font-size: 16px;
    letter-spacing: 1px;
    margin: 10px 2px;
    box-sizing: border-box;
    box-shadow: 0 4px 0 0 rgba(0,0,0,0.1);
    transition: all 200ms;
    background-position: center center;
}
.btn:hover, input[type="submit"]:hover, button:hover {
    background-color: #728a75;
    box-shadow: 0 8px 0 0 rgba(0,0,0,0.1);
    text-decoration: none;
}

.btn i, button i {
    font-size: 12px;
    margin-right: 10px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Patua One', serif;
    font-weight: 500;
    color: #882c36;
}

p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5em;
}

.page-heading {
    background-image: url(assets/images/bg-pattern.png);
    background-color: #96b073;
    text-align: center;
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
}
.page-heading:before {
    content: '';
    max-width: 480px;
    width: 100%;
    height: 180px;
    background-image: url(assets/images/bg-texture.png);
    background-position: right center;
    background-repeat: no-repeat;
}
.page-heading:after {
    content: '';
    max-width: 480px;
    width: 100%;
    height: 180px;
    background-image: url(assets/images/bg-texture.png);
    background-position: right center;
    background-repeat: no-repeat;
    transform: scaleX(-1);
}
.page-heading.heading-bg-2:before {
    background-image: url(assets/images/bg-texture-2.png);
}
.page-heading.heading-bg-2:after {
    background-image: url(assets/images/bg-texture-2.png);
}
.page-heading.heading-bg-3:before {
    background-image: url(assets/images/bg-texture-3.png);
}
.page-heading.heading-bg-3:after {
    background-image: url(assets/images/bg-texture-3.png);
}
.page-heading.heading-bg-4:before {
    background-image: url(assets/images/bg-texture-4.png);
}
.page-heading.heading-bg-4:after {
    background-image: url(assets/images/bg-texture-4.png);
}
.page-heading.heading-bg-5:before {
    background-image: url(assets/images/bg-texture-5.png);
}
.page-heading.heading-bg-5:after {
    background-image: url(assets/images/bg-texture-5.png);
}


.page-heading .page-heading-con {
    width: 100%;
}

.page-heading h1 {
    font-family: 'Patua One', serif;
    font-size: 60px;
    color: #fff;
    text-shadow: 0px 2px 0px rgba(0, 0, 0, 0.1);
    margin: 0;
    line-height: 1em;
    display: inline-block;
    position: relative;
    white-space: nowrap;
}
.page-heading h1:after {
    content: '';
    display: inline-block;
    width: 35px;
    height: 34px;
    background-image: url(assets/images/leaves-2.png);
    background-size: contain;
    background-repeat: no-repeat;
    margin: 0 0 0 10px;
    top: -14px;
    position: relative;
}

.width-normal {
    padding-left: 60px;
    padding-right: 60px;
}
.page-template-page-narrow .width-normal {
    padding-left: 260px;
    padding-right: 260px;
}

.width-medium {
    padding-left: 120px;
    padding-right: 120px;
}

a {
    color: #882c36;
}

.wp-block-image img {
	height: auto;
}

body #cookie-notice {
	background-color: rgba(255,255,255,1);
	box-shadow: 0 0 30px rgba(0,0,0,0.4);
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
}

#cookie-notice .cn-button {
    font-family: 'Montserrat', sans-serif;
    background-color: #2a415a;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    font-size: 14px;
    letter-spacing: 1px;
    box-shadow: 0 4px 0 0 rgba(0,0,0,0.1);
    transition: all 200ms;
}
#cookie-notice .cn-button:hover {
	background-color: #728a75;
	box-shadow: 0 6px 0 0 rgba(0,0,0,0.1);
	text-decoration: none;
}


/* Header */

header {
    padding: 30px 120px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    width: 200px;
    height: 60px;
}

header .logo a {
    display: block;
}

header .logo img {
    display: block;
    width: 100%;
    height: auto;
}

header nav .menu-mobile-navigation-container {
    display: none;
}

header nav ul.menu {
    padding: 0;
    margin: 0;
    display: flex;
}

header nav .menu li {
    list-style: none;
    color: #892c36;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 15px;
    display: flex;
    align-items: center;
}

header nav .menu li a {
    color: inherit;
    text-decoration: none;
    display: inline-block;
}
header nav .menu li a:hover {
    text-decoration: underline;
}

header nav .icon:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-style: normal;
    display: inline-block;
    text-decoration: inherit;
    font-size: 12px;
    color: #728a75;
    margin-right: 10px;
}

header nav .icon-menu:before {
    content: '\f2e7';
}
header nav .icon-locations:before {
    content: '\f3c5';
}
header nav .icon-gifts:before {
    content: '\f06b';
}
header nav .icon-about:before {
    content: '\f02d';
}
header nav .icon-franchising:before {
    content: '\f54f';
}
header nav .icon-careers:before {
    content: '\e533';
}
header nav .icon-contact:before {
    content: '\f0e0';
}


header nav .menu .nav-btn a {
    background-color: #2a415a;
    color: #fff;
    border-radius: 6px;
    padding: 14px 18px;
    box-shadow: 0 4px 0 0 rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    transition: all 200ms;
    box-sizing: border-box;
}
header nav .menu .nav-btn a:hover {
    background-color: #728a75;
    box-shadow: 0 8px 0 0 rgba(0,0,0,0.1);
    text-decoration: none;
}
header nav .menu .nav-btn.icon a:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-style: normal;
    display: inline-block;
    text-decoration: inherit;
    font-size: 12px;
    margin-right: 10px;
    color: #fff;
}
header nav .menu .nav-btn.icon-order a:before {
    content: '\f290';
}

header nav .menu-item-has-children {
    position: relative;
}
header nav .menu-item-has-children:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-style: normal;
    display: inline-block;
    text-decoration: inherit;
    font-size: 12px;
    color: #728a75;
    margin-left: 10px;
    content: '\f078';
}

header nav .menu .sub-menu {
    display: none;
    position: absolute;
    z-index: 1000;
    top: 100%;
    background-color: #fff;
    border-radius: 0 0 6px 6px;
    padding: 14px 22px 20px;
    margin: 0;
    min-width: 200px;
    box-shadow: 0 8px 6px rgba(0,0,0,0.1);
}
header nav .menu-item-has-children:hover .sub-menu {
    display: block;
}

header nav .menu .sub-menu li {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    margin: 0 0 10px 0;
    display: block;
}

header .mobile-nav {
    display: none;
}

/* Footer */

footer {
    background: linear-gradient(#728a75, transparent), url(assets/images/bg-pattern.png), #728a75;
    padding: 40px 60px 90px;
    margin-top: 90px;
    text-align: center;
}

footer nav ul {
    margin: 20px 0;
    padding: 0;
}

footer nav li {
    display: inline-block;
    list-style: none;
    font-size: 16px;
    line-height: 1.5em;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-right: #a1b982 2px solid;
    margin: 0 2px !important;
    padding-right: 8px;
}
footer nav li:last-child {
    border: none;
    padding-right: 0;
}

footer nav li a {
    color: inherit;
    text-decoration: none;
}
footer nav li a:hover {
    text-decoration: underline;
}

footer .menu-footer-social-navigation-container li {
    border: none;
    padding-right: 0;
    font-size: 18px;
}

footer .copyright {
    font-size: 12px;
    color: #fff;
}

/* General Content */

.container > p, .container > h1, .container > h2, .container > h3, .container > h4, .container > h5, .container > h6, .container > .wp-block-image, .container > ul {
    padding-left: 120px;
    padding-right: 120px;
}
.page-template-page-narrow .container > p, .page-template-page-narrow .container > h1, .page-template-page-narrow .container > h2, .page-template-page-narrow .container > h3, .page-template-page-narrow .container > h4, .page-template-page-narrow .container > h5, .page-template-page-narrow .container > h6, .page-template-page-narrow .container > .wp-block-image {
    padding-left: 260px;
    padding-right: 260px;
}

.container h2, .container h3, .container h4, .container h5, .container h6 {
    margin: 20px 0;
}

.container h2 {
    font-size: 28px;
}

.container h3 {
    font-size: 24px;
}

.container h4 {
    font-size: 20px;
}

.container h5 {
    font-size: 18px;
}

.container h6 {
    font-size: 16px;
}

.container p {
    margin: 30px 0;
    color: #222;
}
.container h2 + p, .container h3 + p, .container h4 + p, .container h5 + p, .container h6 + p {
    margin: 20px 0 30px;
}

.container .wp-block-image img {
    border-radius: 10px;
}

.container ul, .container ol {
    color: #222;
    line-height: 1.5em;
    list-style-position: inside;
    margin: 30px 0;
}

.container li > ul, .container li > ol {
    padding: 0 0 0 30px;
    margin: 16px 0;
}

.container li {
    margin: 0;
}


/* Newsletter Subscription Form */

.subscription-form {
	text-align: center;
    position: fixed;
    top: 100%;
    transform: translateY(0);
    left: calc((100% - 1420px) / 2);
    width: calc(100% - 120px);
    max-width: 1420px;
    z-index: 8000;
    overflow: hidden;
    padding-top: 20px;
    transition: transform 400ms ease;
}
.subscription-form.visible {
    transform: translateY(-100%);
}

.subscription-form-container {
	background-image: url(assets/images/bg-pattern.png);
	background-color: #96b073;
    padding: 30px calc((100% - 650px) / 2) 40px;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
    position: relative;
}

.subscription-form h2 {
    margin: 0 0 12px 0;
    color: #fff;
    text-shadow: 0 2px 0 rgba(0,0,0,0.1);
}

.subscription-form form {
    padding: 0 !important;
    margin: 0 0 16px !important;
    display: flex;
    flex-wrap: nowrap;
    height: 46px;
}

.subscription-form form input[type="email"] {
    width: 480px;
    min-width: calc(100% - 172px);
    margin: 0 10px 0 0;
    height: 46px;
    border: none;
    text-align: center;
    box-sizing: border-box;
}

.subscription-form form button {
    width: 162px;
    min-width: 162px;
    box-sizing: border-box;
    height: 46px;
    margin: 0;
}
.subscription-form form button:hover {
    background-color: #892c36;
}

.subscription-form .policy-notice {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 0 rgba(0,0,0,0.1);
}

.subscription-form .policy-notice a {
    color: #fff;
}

.subscription-form .subscription-form-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: #fff;
    text-shadow: 0 2px 0 rgba(0,0,0,0.1);
    cursor: pointer;
}

.subscription-form .subscription-form-message .message {
    background-color: #882c36;
    color: #fff;
    font-size: 14px;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 10px;
    box-shadow: 0 4px 0 0 rgba(0,0,0,0.1);
}
.subscription-form .subscription-form-message .message:before {
    content: '\f06a';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-style: normal;
    font-size: 12px;
    margin: 0 6px 0 0;
}
.subscription-form .subscription-form-message .message.message-type-success {
    background-color: #2a415a;
}
.subscription-form .subscription-form-message .message.message-type-success:before {
    content: '\f058';
}

/* Block: Slider */

.section-slider {
    height: 700px;
}

.section-slider .slide {
    background-size: cover;
    background-position: center;
    background-color: #fff;
}
.section-slider .slide:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(transparent, #000);
    opacity: 0.25;
}

.slide .slide-content {
    min-width: 820px;
    max-width: 100%;
    position: absolute;
    top: calc(50% - 40px);
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 60px;
    z-index: 1;
    box-sizing: border-box;
}
.slide .slide-content:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: -1;
    filter: blur(30px);
    opacity: 0.9;
}

.slide h1 {
    font-family: 'Patua One', serif;
    color: #882c36;
    font-size: 60px;
    line-height: 1em;
    margin: 10px 0;
    text-shadow: 0px 2px 0px rgba(0,0,0,0.2);
}

.slide p {
    margin: 4px 0 10px;
    font-size: 18px;
    line-height: 1.5em;
}

.section-slider .controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: #fff;
    display: flex;
    align-items: center;
}

.section-slider .slider-btn {
    font-size: 30px;
    text-shadow: 0 0 6px rgba(0,0,0,0.1);
    margin: 0 5px;
}

.section-slider .counters {
    display: flex;
    align-items: center;
}

.section-slider .counters .swiper-pagination-bullet {
    background: #fff;
    box-shadow: 0 0 6px rgba(0,0,0,0.1);
    margin: 0 3px;
    opacity: 1;
}
.section-slider .counters .swiper-pagination-bullet-active {
    background: #882c36;
    border: 2px #fff solid;
}

/* Block: Lead */

.section-lead {
    display: flex;
    margin: 60px 0;
}
.section-lead:before {
    content: '';
    width: 120px;
    background-image: url(assets/images/bg-green.png);
    border-radius: 0 10px 10px 0;
}
.section-lead.lead-left {
    flex-direction: row-reverse;
}
.section-lead.lead-left:before {
    border-radius: 10px 0 0 10px;
}

.section-lead .lead-content {
    width: calc(50% - 90px);
    padding: 60px;
    box-sizing: border-box;
}

.lead-content h2 {
	font-family: 'Patua One', serif;
	font-size: 36px;
	line-height: 1em;
	color: #882c36;
	margin: 0;
	display: inline-block;
	padding-right: 46px;
	box-sizing: border-box;
	position: relative;
}
.lead-content h2:after {
	content: '';
	display: inline-block;
	width: 36px;
	height: 33px;
	background-image: url(assets/images/leaves-1.png);
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.lead-content p {
    margin: 20px 0;
    color: #222;
}

.lead-content .btn {
    margin: 0;
}

.section-lead .lead-image {
    width: calc(50% - 30px);
    position: relative;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
}
.section-lead.lead-left .lead-image {
    border-radius: 0 10px 10px 0;
}

.section-lead .lead-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* Block: Menu */

.section-menu {
    padding: 0 60px;
    margin-bottom: 150px;
}

.menu-filters {
    display: flex;
    justify-content: space-between;
    margin: 0 -10px 60px;
}

.menu-filters label {
    margin-top: 0;
}

.menu-filters .col {
    margin: 0 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.menu-filters .col:nth-child(1) {
    width: 300px;
}
.menu-filters .col:nth-child(2) {
    width: 250px;
    padding-right: calc(100% - 850px);
}
.menu-filters .col:nth-child(3) {
    width: 300px;
}

.menu-filters select {
    margin: 7px 0;
}

.menu-search {
    display: flex;
    margin: 7px 0;
}

.menu-search input[type="text"] {
    width: calc(100% - 46px);
    height: 46px;
    border-radius: 6px 0 0 6px;
    margin: 0;
}

.menu-search button {
    width: 46px;
    min-width: auto;
    height: 46px;
    padding: 10px;
    text-align: center;
    border-radius: 0 6px 6px 0;
    margin: 0;
}
.menu-search button:hover {
    box-shadow: 0 4px 0 0 rgba(0,0,0,0.1);
}

.menu-search button i {
    font-size: 16px;
    margin: 0;
}

.menu-diets {
    align-content: center;
}

.menu-diets button {
    display: inline-block;
    width: auto;
    min-width: auto;
    background-color: #9b9b9b;
    box-shadow: 0 1px 0 #728a75;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 1px 0 #728a75;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 3px 6px;
    border-radius: 4px;
    margin: 0 0 6px;
}
.menu-diets button.selected, .menu-diets button:hover {
    background-color: #a1b982;
}

.menu-pdfs .btn {
    margin: 5px 0;
    background-color: #a1b982
}
.menu-pdfs .btn:hover {
    background-color: #2a415a;
}

.section-menu .menu-category {
    margin: 30px 0 90px;
    padding: 0 60px;
}

.section-menu h2 {
    font-size: 36px;
    text-align: center;
    margin: 0;
}
.section-menu h2:before {
    content: '';
    display: inline-block;
    width: 36px;
    height: 33px;
    background-image: url(assets/images/leaves-1.png);
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 10px;
    transform: scaleX(-1);
}
.section-menu h2:after {
    content: '';
    display: inline-block;
    width: 36px;
    height: 33px;
    background-image: url(assets/images/leaves-1.png);
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 10px;
}
.section-menu h2 + .items-without-images {
    display: flex;
    position: relative;
    margin-top: 30px;
    padding-top: 6px;
}
.section-menu h2 + .items-without-images:before {
    content: '';
    width: 100px;
    height: 2px;
    display: block;
    background-color: #ddd;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 10px;
}

.section-menu .menu-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    margin: 0 -22.5px;
}
.section-menu .menu-container + .menu-container {
    margin-top: 60px;
}

.section-menu .menu-item {
    text-align: center;
    margin: 20px 22.5px;
    flex-grow: 1;
    flex-basis: calc((100% - 135px) / 3);
    max-width: calc((100% - 135px) / 3);
}

.menu-item .item-image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    margin-bottom: 10px;
}

.menu-item .item-image img {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.menu-item .item-title {
    font-size: 30px;
    margin: 10px 0;
}
.items-without-images .menu-item .item-title {
    font-size: 26px;
}

.menu-item .item-description {
    font-size: 14px;
    color: #222;
    margin: 10px 0 16px;
}

.menu-item .item-diets {
    list-style: none;
    margin: 0;
    padding: 0;
    line-height: 1em;
}

.menu-item .item-diets li {
    display: inline-block;
    background-color: #a1b982;
    box-shadow: 0 1px 0 #728a75;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 1px 0 #728a75;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0 6px;
    border-radius: 4px;
    margin: 0 3px 6px;
}

.section-menu .menu-more {
    display: block;
    width: auto;
    margin: 60px auto 0;
}

.section-menu .items-without-images {
    display: none;
}
.section-menu .items-without-images.open, .section-menu .filtered .items-without-images {
    display: flex;
}

.menu-items {
    margin: -30px 0 -90px;
    display: flex;
    flex-direction: column;
}

.menu-items.filtered .menu-item {
    display: none;
}
.menu-items.filtered .menu-item.active {
    display: block;
}

.menu-items.filtered h2 {
    display: none;
}
.menu-items.filtered .not-empty h2 {
    display: flex;
    justify-content: center;
}

.menu-items.filtered h2 {
    display: none;
}
.menu-items.filtered .not-empty h2 {
    display: flex;
}

.menu-items .menu-more.hidden, .menu-items.filtered .menu-more {
    display: none;
}

.menu-items.filtered .menu-category {
    display: none;
}
.menu-items.filtered .menu-category.not-empty {
    display: block;
}

.menu-items.filtered .items-without-images:before {
    display: none;
}
.menu-items.filtered .not-empty .items-without-images:before {
    display: block;
}

.menu-items .not-found {
    display: none;
    text-align: center;
    min-height: 300px;
}
.menu-items .not-found.visible {
    display: block;
}

/* Block: Buttons */

.buttons {
    text-align: center;
}


/* Block: Notice */

.section-notice {
    background-color: #eee;
    font-size: 14px;
    line-height: 1.5em;
    color: #222;
    border-radius: 6px;
    padding: 30px;
    margin: 60px 120px;
}


/* Block: Purchase Gift Card Form */

.amount-select {
    display: flex;
    width: 100%;
    height: 46px;
    margin: 10px -5px 0;
    justify-content: space-between;
}

.amount-select .amount-select-item {
    font-family: 'Patua One', serif;
    min-width: auto;
    margin: 0 5px;
    display: block;
    box-sizing: border-box;
    padding: 12px 20px;
    width: calc(100% - 246px);
    background-color: #96b073;
}
.amount-select .amount-select-item:hover, .amount-select .amount-select-item.selected {
    background-color: #2a415a;
}

.amount-select input[type="number"] {
    display: block;
    border: 3px #ccc solid;
    border-radius: 6px;
    background-color: #fff;
    box-shadow: 0 4px 0 0 rgba(0,0,0,0.1);
    padding: 12px 20px;
    box-sizing: border-box;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    margin: 0 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.5em;
    color: #222;
    width: 246px;
}
.amount-select input[type="number"]:focus {
    border-color: #a1b982;
    outline: none;
}

.design-select {
    width: 100%;
    height: 166px;
	margin: 10px -2px 0;
	overflow-x: auto;
	overflow-y: hidden;
	padding-bottom: 28px;
	text-align: center;
	white-space: nowrap;
    scrollbar-color: #a1b982 transparent;
    scrollbar-width: thin;
}
.design-select::-webkit-scrollbar {
    height: 6px;
}
.design-select::-webkit-scrollbar-thumb {
    border-radius: 2px;
    background-color: #a1b982;
}
.design-select::-webkit-scrollbar-thumb:hover {
    background-color: #728a75;
}

.design-select-item {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.1);
    border: #fff 3px solid;
    opacity: 0.6;
    position: relative;
    width: 260px;
    height: 166px;
    transition: opacity 300ms ease;
	display: inline-block;
	margin: 0 2px;
    text-align: left;
    box-sizing: border-box;
}
.design-select-item.selected, .design-select-item:hover  {
    border-color: #2a415a;
    opacity: 1;
}

.design-select-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.delivery-select {
    display: flex;
    width: 100%;
    border-bottom: #2a415a 3px solid;
    margin: 10px 0 0;
}

.delivery-select button {
    display: block;
    margin: 0;
    font-family: 'Patua One', serif;
    text-transform: none;
    letter-spacing: 0;
    border-radius: 6px 6px 0 0;
    background-color: #96b073;
    box-shadow: none;
}
.delivery-select button:first-child {
    margin-right: 10px;
}
.delivery-select button.selected, .delivery-select button:hover {
    background-color: #2a415a;
    box-shadow: none;
}

.section-gift-purchase textarea {
    min-height: 200px;
}

.section-gift-purchase .disabled {
    display: none;
}

button.loading {
    color: transparent;
    background-image: url(assets/images/loading.gif);
    background-position: center center;
    background-repeat: no-repeat;
}
button.loading:hover {
    background-color: #2a415a;
    box-shadow: 0 4px 0 0 rgba(0,0,0,0.1);
}


/* Forms */

form {
    padding-left: 260px;
    padding-right: 260px;
    margin: 60px 0;
}
.page-template-page-contact form {
    padding-left: 0;
    padding-right: 0;
}

form .row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    grid-column: 1, -1;
    column-gap: 30px;
    row-gap: 20px;
    margin: 20px 0;
}

form .col {
    position: relative;
}

label {
    font-family: 'Patua One', serif;
    font-size: 18px;
    color: #882c36;
    margin: 10px 0;
}

input[type="text"], input[type="email"], input[type="tel"], input[type="date"], select, textarea {
    display: block;
    width: 100%;
    border: 3px #ccc solid;
    border-radius: 6px;
    background-color: #fff;
    box-shadow: 0 4px 0 0 rgba(0,0,0,0.1);
    padding: 10px 20px;
    box-sizing: border-box;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    margin-top: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.5em;
    color: #222;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, input[type="date"]:focus, select:focus, textarea:focus {
    border-color: #a1b982;
    outline: none;
}

select {
    background-image:
        url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='fas' data-icon='chevron-down' class='svg-inline--fa fa-chevron-down fa-w-14' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23fff' d='M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z'%3E%3C/path%3E%3C/svg%3E"),
        linear-gradient(#2a415a, #2a415a);
    background-size:
        15px 17px,
        46px 100%;
    background-position:
        right 15px center,
        right center;
    background-repeat: no-repeat;
    padding-right: 66px;
}

input[type="date"] {
    background-image:
    url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='fas' data-icon='calendar-day' class='svg-inline--fa fa-calendar-day fa-w-14' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23fff' d='M0 464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V192H0v272zm64-192c0-8.8 7.2-16 16-16h96c8.8 0 16 7.2 16 16v96c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16v-96zM400 64h-48V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48H160V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48H48C21.5 64 0 85.5 0 112v48h448v-48c0-26.5-21.5-48-48-48z'%3E%3C/path%3E%3C/svg%3E"),
        linear-gradient(#2a415a, #2a415a);
    background-size:
        15px 17px,
        46px 100%;
    background-position:
        right 15px center,
        right center;
    background-repeat: no-repeat;
    padding-right: 66px;
}

input[type="submit"], button {
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    border: none;
}

form p {
    font-size: 14px;
    line-height: 1.5em;
    margin: 10px 0;
}

form p strong {
    color: #96b073;
}

form .required {
    color: #728a75;
}

.wpcf7-list-item-label, .checkbox-label {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    font-size: 14px;
}

.checkbox-label {
    display: block;
}

form .newsletter, form .qualified {
    margin: 10px 0;
    display: block;
}

form span.wpcf7-list-item {
    margin: 0;
}

form .privacy-notice {
    margin: 10px 0;
}

form ul {
    font-size: 14px;
    line-height: 1.5em;
    margin: 20px 0 !important;
    padding: 0;
    list-style-position: inside;
}

form li {
    margin: 6px 0 !important;
}

form .wpcf7-not-valid-tip {
	font-size: 14px;
	font-family: 'Montserrat', sans-serif;
	margin-top: 8px;
}

form .wpcf7-response-output {
	border: none !important;
	padding: 14px 30px !important;
    margin: -30px 0 0 !important;
    font-size: 14px;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    box-shadow: 0 4px 0 0 rgba(0,0,0,0.1);
	background: #a1b982;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.failed .wpcf7-response-output, .wpcf7 form.aborted .wpcf7-response-output {
	background: #892c36;
}

div.wpcf7 .ajax-loader {
    display: block;
    margin: 0 auto;
}

.red {
    color: #892c36;
}

.mailcheck-suggestion {
	font-size: 12px;
	text-align: center;
	line-height: 1em;
	font-style: italic;
    margin: 10px 0 0 0;
}

.mailcheck-suggestion .suggestion-link {
    color: #892c36;
    text-decoration: underline;
    cursor: pointer;
}

.mailcheck-suggestion i {
    color: #a1b982;
    cursor: pointer;
}


/* Template: Contact */

.section-contact {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
}

.section-contact .contact-form {
    width: 65%;
}

.section-contact .contact-sidebar {
    width: calc(35% - 60px);
    padding: 30px;
    box-sizing: border-box;
    background-color: #a1b982;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    line-height: 1.5em;
}

.section-contact h2 {
    color: #fff;
    font-size: 18px;
    margin: 0;
}

.section-contact .contact-sidebar i {
    color: #728a75;
    font-size: 12px;
    margin-right: 4px;
}

.section-contact .contact-sidebar a {
    color: inherit;
    text-decoration: none;
}
.section-contact .contact-sidebar a:hover {
    text-decoration: underline;
}

.section-contact .contact-form form {
    margin: 0;
}


/* Template: Gift Cards Index */

.section-gifts-banner {
    background-image:
        linear-gradient(transparent, #fff),
        url(assets/images/gift-cards-banner.jpg);
    background-position:
        center center,
        center bottom;
    background-size: cover;
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
    height: 420px;
    box-sizing: border-box;
}

.gifts-banner-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.gifts-banner-image {
    width: calc(42% - 45px);
    height: 100%;
    position: relative;
}

.gifts-banner-image img {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: scale-down;
    object-position: center right;
}

.gifts-banner-content {
    width: 58%;
    position: relative;
    z-index: 0;
}
.gifts-banner-content:before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: calc(100% + 60px);
    height: calc(100% + 60px);
    background-color: #fff;
    filter: blur(30px);
    opacity: 0.8;
    z-index: -1;
}

.gifts-banner-content h1 {
    font-size: 60px;
    line-height: 1em;
    margin: 10px 0;
    text-shadow: 0px 2px 0px rgba(0,0,0,0.2);
}

.gifts-banner-content p {
    font-size: 18px;
    line-height: 1.5em;
    color: #222;
    margin: 10px 0;
}

.gifts-banner-content .buttons {
    text-align: left;
}


/* Template: Locations */

.section-locations {
    width: 100%;
    height: calc(100vh - 110px);
    position: relative;
}
.admin-bar .section-locations {
    height: calc(100vh - 142px);
}

.locations-sidebar {
    position: absolute;
    width: 30%;
    min-width: 400px;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
}

.locations-search {
    background-image: url(assets/images/bg-pattern.png);
    background-color: #96b073;
    height: 110px;
    padding: 30px;
    box-sizing: border-box;
}

.locations-search form {
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
}

.locations-search input[type="text"] {
    margin: 0;
    width: calc(100% - 46px);
    height: 46px;
    box-sizing: border-box;
    border-radius: 6px 0 0 6px;
    border: none;
}

.locations-search button {
    margin: 0;
    width: 46px;
    min-width: auto;
    height: 46px;
    padding: 10px;
    text-align: center;
    border-radius: 0 6px 6px 0;
}

.locations-search button i {
    font-size: 16px;
    margin: 0;
}

.locations-list {
    padding: 30px 20px 30px 30px;
    height: calc(100% - 110px);
    box-sizing: border-box;
}
.locations-list:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% - 40px);
    height: 200px;
    background-image: linear-gradient(transparent, #fff);
    pointer-events: none;
}

.locations-list-container {
    overflow-y: scroll;
    padding-right: 20px;
    height: 100%;
    scrollbar-color: #a1b982 transparent;
    scrollbar-width: thin;
}
.locations-list-container:after {
    content: '';
    display: block;
    height: 200px;
}
.locations-list-container::-webkit-scrollbar {
    width: 6px;
}
.locations-list-container::-webkit-scrollbar-thumb {
    border-radius: 2px;
    background-color: #a1b982;
}
.locations-list-container::-webkit-scrollbar-thumb:hover {
    background-color: #728a75;
}

.locations-list-container.loading * {
    visibility: hidden;
}

.locations-item {
    font-size: 14px;
    line-height: 1.5em;
    color: #222;
    margin-bottom: 30px;
}

.locations-item .location-details {
    transition: padding-left 300ms ease;
}
.locations-item.highlight .location-details {
    border-left: 3px #a1b982 solid;
    padding-left: 16px;
}

.locations-item h2 {
    font-size: 20px;
    margin: 10px 0;
    cursor: pointer;
}

.location-distance {
    font-size: 12px;
    font-weight: 600;
    color: #728a75;
    margin: -6px 0;
}

.location-address {
    margin: 10px 0;
}

.location-times {
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 10px;
    row-gap: 10px;
    font-size: 12px;
    line-height: 1.5em;
    margin: 10px 0;
}
.location-times h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: inherit;
    line-height: 1.5em;
    font-weight: 600;
    color: #728a75;
    margin: 0;
}

.location-phone i {
    font-size: 12px;
    color: #892c36;
    margin-right: 6px;
}

.location-phone a {
    color: #222;
    text-decoration: none;
}
.location-phone a:hover {
    color: #892c36;
}

.location-buttons {
    display: flex;
    margin: 10px -5px;
}

.location-buttons .btn {
    display: block;
    min-width: calc(50% - 10px);
    width: 100%;
    box-sizing: border-box;
    font-size: 14px;
    padding: 10px 20px;
    margin: 0 5px;
}

.location-buttons .btn.btn-order {
    display: none;
}
.ordering .location-buttons .btn.btn-order {
    display: block;
}

.locations-map {
    position: absolute;
    width: 70%;
    height: 100%;
    top: 0;
    right: 0;
    background-color: #aadaff;
}

.page-template-page-locations footer {
    margin-top: 0;
}

.ordering-notice {
	background-color: #eee;
	font-size: 14px;
	line-height: 1.5em;
	color: #222;
	border-radius: 6px;
    padding: 20px;
    margin: 0 0 30px 0;
    display: flex;
    align-items: center;
}
.ordering-notice.hidden {
    display: none;
}

.ordering-notice i {
    margin-right: 16px;
    color: #728a75;
    font-size: 16px;
}

.ordering-notice strong {
    color: #882c36;
}

/* Gift Cards */

.gift-results {
    padding: 0 240px;
    text-align: center;
}

.gift-results p .card-number {
    color: #666;
    font-size: 12px;
    font-weight: 700;
}

.gift-results .transaction-details {
    background-color: #eee;
    padding: 20px 30px;
    border-radius: 10px;
    margin: 30px 0;
}

.gift-results .transaction-details h2 {
    margin: 0 0 10px 0;
}

.gift-results .transaction-details p {
    margin: 10px 0;
}

.gift-message {
    background-color: #882c36;
    color: #fff;
    font-size: 14px;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 10px;
    box-shadow: 0 4px 0 0 rgba(0,0,0,0.1);
    text-align: center;
}


/* Blog */

.post-list {
    padding: 0 120px;
}

.post-list-item {
    display: flex;
    margin-bottom: 60px;
    justify-content: space-between;
}
.post-list-item.no-thumbnail {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.post-list-item .post-thumbnail {
    width: calc(50% - 30px);
    height: 0;
    padding-top: 35%;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.post-list-item .post-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-list-item .post-details {
    width: calc(50% - 30px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.post-list-item.no-thumbnail .post-details {
    width: 100%;
}

.post-list-item .post-title {
    font-size: 36px;
    margin: 0 0 12px;
}

.post-list-item .post-title a {
    text-decoration: none;
}
.post-list-item .post-title a:hover {
    text-decoration: underline;
}

.post-list-item .post-info {
    font-size: 14px;
    font-weight: 600;
    color: #728a75;
    line-height: 1.5em;
    margin: 0 0 12px;
}

.post-list-item .post-info-item {
    display: inline-block;
}
.post-list-item .post-info-item:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-style: normal;
    display: inline-block;
    text-decoration: inherit;
    font-size: 12px;
    margin-right: 4px;
}

.post-list-item .post-categories {
    margin-right: 15px;
}
.post-list-item .post-categories:before {
    content: '\f07b';
}

.post-list-item .post-categories a {
    color: #728a75;
    text-decoration: underline;
}

.post-list-item .post-date:before {
    content: '\f133';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-style: normal;
    display: inline-block;
    text-decoration: inherit;
    font-size: 12px;
    margin-right: 4px;
}

.post-list-item .post-excerpt {
    margin: 0 0 20px;
}

.post-list-item .btn {
    flex-wrap: nowrap;
}

.archive-info-container {
    text-align: center;
    margin-bottom: 40px;
}

.archive-info {
    background-color: #eee;
    padding: 15px 30px;
    border-radius: 6px;
    display: inline-block;
    color: #728a75;
    font-weight: 600;
    line-height: 1.5em;
}

.archive-info a {
    color: #882c36;
    text-decoration: none;
}
.archive-info a:hover {
    text-decoration: underline;
}

.blog-heading {
    margin-bottom: 0 !important;
}

.blog-heading h1 {
    font-size: 48px;
    margin-bottom: 12px;
}
.blog-heading h1:after {
    display: none !important;
}

.blog-heading .post-info {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-shadow: 0px 2px 0px rgba(0, 0, 0, 0.1);
}

.blog-heading .post-info-item {
    display: inline-block;
}
.blog-heading .post-info-item:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-style: normal;
    display: inline-block;
    text-decoration: inherit;
    font-size: 12px;
    margin-right: 4px;
}

.blog-heading .post-categories {
    margin-right: 15px;
}
.blog-heading .post-categories:before {
    content: '\f07b';
}

.blog-heading .post-categories a {
    color: #fff;
    text-decoration: underline;
}

.blog-heading .post-date:before {
    content: '\f133';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-style: normal;
    display: inline-block;
    text-decoration: inherit;
    font-size: 12px;
    margin-right: 4px;
}

.post-cover {
    width: 1080px;
    height: 360px;
    margin: 0 auto;
    position: relative;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
}
.post-cover:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 18px;
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0));
}

.post-cover img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center center;
}

.post-content {
    padding: 20px calc((100% - 960px) / 2) 0;
}

.wp-block-image {
    margin: 30px auto;
}

.wp-block-image figure {
    border-radius: 10px;
}

.wp-block-image figcaption {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #728a75;
    font-style: italic;
    margin-top: 10px;
}

.post-content .instagram-media {
    margin: 40px auto !important;
}

.post-content .wp-block-table table, .post-content .wp-block-table th, .post-content .wp-block-table td {
    border: 2px #a1b982 solid;
}

.post-content .wp-block-table table {
    border-collapse: collapse;
}

.post-content .wp-block-table td {
    padding: 15px;
}

.post-content .wp-block-table figcaption {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #728a75;
    font-style: italic;
    margin-top: 10px;
}

.post-content .wp-block-quote {
	margin: 20px 60px;
}

.post-content .wp-block-quote p {
    margin: 0 0 10px;
}

.post-content .wp-block-quote cite {
    color: #728a75;
    font-weight: 600;
}

.post-content .wp-block-media-text__media {
    border-radius: 10px;
    overflow: hidden;
}

.post-content .wp-block-media-text {
    margin: 30px 0;
}

.post-content .wp-block-media-text__media img {
    object-fit: contain;
    height: auto;
}

.post-content .wp-block-button__link {
    display: inline-block;
    min-width: 240px;
    background-color: #2a415a;
    color: #fff;
    border-radius: 6px;
    padding: 14px 30px;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    font-size: 16px;
    letter-spacing: 1px;
    margin: 10px 2px;
    box-sizing: border-box;
    box-shadow: 0 4px 0 0 rgba(0,0,0,0.1);
    transition: all 200ms;
    background-position: center center;
}
.post-content .wp-block-button__link:hover {
    background-color: #728a75;
    box-shadow: 0 8px 0 0 rgba(0,0,0,0.1);
    text-decoration: none;
}

.post-content .wp-block-separator {
    max-width: 200px;
    border: 2px #a1b982 solid;
}

.lazyload-fadein {
    animation: fadein 400ms ease;
}

@keyframes fadein {
    from { opacity: 0; }
    to { opacity: 1; }
}


/* Media Queries */

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

    .subscription-form {
        left: 60px;
    }

}

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

    header {
        padding: 30px 60px 20px;
    }

    .locations-sidebar {
        width: 35%;
    }

    .locations-map {
        width: 65%;
    }

}

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

    .section-slider {
        height: 600px;
    }

    .section-lead:before {
        width: 60px;
    }

    .section-lead .lead-content {
        width: calc(50% - 30px);
    }

    footer nav li {
        font-size: 14px;
    }

    .width-medium {
        padding-left: 60px;
        padding-right: 60px;
    }

    .gifts-banner-image {
        width: calc(35% - 45px);
    }

    .gifts-banner-content {
        width: 65%;
    }

    form {
        padding-left: 160px;
        padding-right: 160px;
    }

    .container > p, .container > h1, .container > h2, .container > h3, .container > h4, .container > h5, .container > h6, .container > .wp-block-image, .container > ul {
        padding-left: 60px;
        padding-right: 60px;
    }

    .section-notice {
        margin: 60px;
    }

    .gift-results {
        padding: 0 160px;
    }

    .post-content {
        padding: 20px 60px 0;
    }

    .post-list {
        padding: 20px 60px 0;
    }

}

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

    .section-lead .lead-content {
        width: 60%;
    }

    .section-lead .lead-image {
        width: 40%;
    }

    .post-cover {
        width: 100%;
        border-radius: 0;
    }

}

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

    header nav .menu li {
        margin: 0 10px;
        font-size: 15px;
    }

    .locations-sidebar {
        width: 40%;
    }

    .locations-map {
        width: 60%;
    }

    form {
        padding-left: 60px;
        padding-right: 60px;
    }

    .page-template-page-narrow .container > p, .page-template-page-narrow .container > h1, .page-template-page-narrow .container > h2, .page-template-page-narrow .container > h3, .page-template-page-narrow .container > h4, .page-template-page-narrow .container > h5, .page-template-page-narrow .container > h6, .page-template-page-narrow .container > .wp-block-image {
        padding-left: 160px;
        padding-right: 160px;
    }

    .page-template-page-narrow .width-normal {
        padding-left: 160px;
        padding-right: 160px;
    }

    .gift-results {
        padding: 0 60px;
    }

}

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

    body {
        position: relative;
    }

    .container {
        width: calc(100% - 60px);
    }

    header nav {
        position: absolute;
        top: 0;
        background-color: #fff;
        padding: 60px 30px;
        width: 280px;
        min-height: 100%;
        box-shadow: 0 0 20px rgba(0,0,0,0.2);
        z-index: 8000;
        box-sizing: border-box;
        right: 0;
        pointer-events: none;
        transition: opacity 300ms ease;
        opacity: 0;
    }
    header nav.active {
        opacity: 1;
        pointer-events: all;
    }

    header .mobile-nav-close-btn {
        display: block;
        position: absolute;
        top: 20px;
        right: 30px;
        font-size: 32px;
        color: #728a75;
        cursor: pointer;
    }

    header nav .menu-primary-navigation-container {
        display: none;
    }

    header nav .menu-mobile-navigation-container {
        display: block;
    }

    header nav ul {
        flex-direction: column;
    }

    header nav .menu li {
        margin: 5px 0;
        font-size: 18px;
        font-weight: 700;
        display: block;
        position: relative;
        padding-left: 24px;
    }

    header nav .icon:before {
        margin-right: 0;
        position: absolute;
        left: 0;
        top: 0;
    }

    header nav .menu-item-has-children:after {
        display: none;
    }

    header nav .menu .sub-menu {
        display: block;
        margin: 5px 0 5px;
        padding: 4px 0 4px 10px;
        border-left: #a1b982 3px solid;
        position: relative;
        top: auto;
        background-color: transparent;
        min-width: auto;
        box-shadow: none;
        border-radius: 0;
    }

    header nav .menu .sub-menu li {
        margin: 0;
        padding-left: 0;
    }

    header nav .menu .nav-btn {
        margin-top: 15px;
        padding-left: 0;
    }

    header nav .menu .nav-btn a {
        width: 100%;
        justify-content: center;
        padding: 10px 18px;
    }

    header .mobile-nav-open-btn {
        display: block;
        font-size: 32px;
        color: #a1b982;
        cursor: pointer;
    }

    header .mobile-nav-shadow {
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.6);
        z-index: 7999;
        top: 0;
        left: 0;
        transition: opacity 300ms ease;
        opacity: 0;
        pointer-events: none;
    }
    header .mobile-nav-shadow.active {
        opacity: 1;
        pointer-events: all;
    }

    .section-contact .contact-form {
        width: 60%;
    }

    .section-contact .contact-sidebar {
        width: calc(40% - 60px);
    }

}

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

    .subscription-form {
        width: calc(100% - 60px);
        left: 30px;
    }

    .lead-content h2 {
        font-size: 30px;
    }

    .section-menu .menu-item {
        flex-basis: calc((100% - 90px) / 2);
        max-width: calc((100% - 90px) / 2);
    }

    .post-list-item .post-thumbnail {
        width: 33%;
        padding-top: 33%;
    }

    .post-list-item .post-details {
        width: calc(67% - 60px);
    }

}

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

    .section-locations {
        height: auto;
    }
    .admin-bar .section-locations {
        height: auto;
    }

    .locations-sidebar {
        position: relative;
        width: 100%;
        min-width: auto;
        height: auto;
        top: 0;
        left: 0;
    }

    .locations-search {
        padding: 30px 60px;
    }

    .locations-list {
        margin-top: 400px;
        padding: 30px 60px 90px;
        height: auto;
    }
    .locations-list:after {
        display: none;
    }

    .locations-list-container {
        overflow-y: visible;
        padding-right: 0;
        height: auto;            
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
        column-gap: 30px;
        row-gap: 20px;
    }
    .locations-list-container:after {
        display: none;
    }

    .locations-item {
        margin-bottom: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .locations-map {
        position: absolute;
        width: 100%;
        height: 400px;
        top: 110px;
        right: 0;
        background-color: #aadaff;
    }

    .gifts-banner-content h1 {
        font-size: 48px;
    }

    .gifts-banner-content p {
        margin: 10px 0 20px;
        font-size: 16px;
    }

    .section-gifts-banner .btn {
        display: block;
        margin: 10px 0;
    }

    .gifts-banner-image {
        width: calc(40% - 45px);
    }

    .gifts-banner-content {
        width: 60%;
    }

    .section-contact .contact-form {
        width: 55%;
    }

    .section-contact .contact-sidebar {
        width: calc(45% - 60px);
    }

}

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

    header .logo {
        width: 150px;
        height: 45px;
    }

    .section-lead, .section-lead.lead-left {
        flex-direction: column;
    }
    .section-lead:before {
        display: none;
    }
    .section-lead:after {
        content: '';
        width: 100%;
        height: 40px;
        margin-top: -10px;
        background-image: url(assets/images/bg-green.png);
        border-radius: 0 0 10px 10px;
    }

    .section-lead .lead-content {
        width: 100%;
        text-align: center;
        padding: 0 60px;
        margin: 0 0 60px;
    }

    .lead-content h2 {
        font-size: 36px;
        padding: 0;
        display: flex;
        justify-content: center;
    }
    .lead-content h2:before {
        content: '';
        display: inline-block;
        width: 36px;
        height: 33px;
        background-image: url(assets/images/leaves-1.png);
        background-size: contain;
        background-repeat: no-repeat;
        margin-right: 10px;
        transform: scaleX(-1);
    }
    .lead-content h2:after {
        content: '';
        display: inline-block;
        width: 36px;
        height: 33px;
        background-image: url(assets/images/leaves-1.png);
        background-size: contain;
        background-repeat: no-repeat;
        margin-left: 10px;
        position: relative;
        top: 0;
        transform: none;
    }

    .section-lead .lead-image, .section-lead.lead-left .lead-image {
        width: 100%;
        height: 360px;
        border-radius: 0 0 10px 10px;
        background: #fff;
    }

    .menu-filters {
        flex-direction: column;
        text-align: center;
        margin: 0 0 30px;
    }

    .menu-filters .col {
        margin: 0 0 20px 0;
    }
    .menu-filters .col:nth-child(1), .menu-filters .col:nth-child(2), .menu-filters .col:nth-child(3) {
        width: 100%;
    }

    .section-menu .menu-category {
        padding: 0;
        margin: 30px 0 60px;
    }

    .section-contact {
        flex-direction: column-reverse;
    }

    .section-contact .contact-form {
        width: 100%;
    }

    .section-contact .contact-sidebar {
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
        text-align: center;
    }

    .page-template-page-narrow .container > p, .page-template-page-narrow .container > h1, .page-template-page-narrow .container > h2, .page-template-page-narrow .container > h3, .page-template-page-narrow .container > h4, .page-template-page-narrow .container > h5, .page-template-page-narrow .container > h6, .page-template-page-narrow .container > .wp-block-image {
        padding-left: 60px;
        padding-right: 60px;
    }

    .page-template-page-narrow .width-normal {
        padding-left: 60px;
        padding-right: 60px;
    }

    .page-heading {
        padding: 60px;
    }
    .page-heading:before, .page-heading:after {
        display: none;
    }

    .page-heading h1 {
        white-space: normal;
    }

    .post-list-item {
        flex-direction: column;
        margin-bottom: 40px;
    }

    .post-list-item .post-thumbnail {
        width: 100%;
        margin-bottom: 20px;
    }

    .post-list-item .post-details {
        width: 100%;
        text-align: center;
    }

}

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

    .slide .slide-content {
        min-width: calc(100% - 60px);
    }

    .slide h1 {
        font-size: 48px;
    }

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

    .location-buttons {
        flex-direction: column;
        margin: 10px 0;
    }

    .location-buttons .btn {
        width: 100%;
        margin: 5px 0;
    }

    .section-gifts-banner {
        height: auto;
        padding-bottom: 0;
    }

    .gifts-banner-container {
        position: relative;
        flex-direction: column-reverse;
        text-align: center;
    }

    .gifts-banner-image {
        width: 100%;
        z-index: 1;
    }

    .gifts-banner-image img {
        position: relative;
        width: auto;
        max-width: 100%;
        height: auto;
        margin: 0 auto;
    }

    .gifts-banner-content {
        width: 100%;
        max-width: 480px;
        margin-bottom: 20px;
    }

}

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

    .container {
        width: calc(100% - 20px);
    }

    header {
        padding: 20px 60px 15px;
    }

    .btn, input[type="submit"], button {
        margin: 5px 2px;
    }

    .subscription-form {
        width: calc(100% - 20px);
        left: 10px;
    }

    .subscription-form-container {
        padding: 30px 20px 40px;
    }

    .subscription-form h2 {
        font-size: 18px;
    }

    .subscription-form form input[type="email"] {
        width: 60%;
        min-width: 60%;
    }

    .subscription-form form button {
        width: 40%;
    }

    .page-heading {
        padding: 30px;
        margin-bottom: 30px;
    }

    .section-menu .menu-container, .section-menu .items-without-images.open {
        display: flex;
    }
    .section-menu .items-without-images {
        display: none;
    }

    .section-gifts-banner {
        padding-top: 60px;
    }

    form {
        margin: 30px 0 50px;
    }

    .amount-select {
        display: grid;
        height: auto;
        margin: 10px 0 0;
        justify-content: space-between;
        grid-template-columns: minmax(auto, 100%) minmax(auto, 100%) minmax(auto, 100%) minmax(auto, 100%);
        grid-gap: 10px;
    }

    .amount-select .amount-select-item {
        min-width: auto;
        margin: 0;
        width: 100%;
    }

    .amount-select input[type="number"] {
        width: 100%;
        margin: 0;
        grid-column: 1/-1;
    }

    .design-select {
        height: 102px;
    }

    .design-select-item {
        width: 160px;
        height: 102px;
    }

    .wp-block-image .alignright, .wp-block-image .alignleft {
        float: none !important;
        margin: 20px auto !important;
    }

    .section-notice {
        margin: 30px 60px 50px;
    }

}

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

    .delivery-select button {
        min-width: auto;
        padding: 14px;
    }

}

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

    html #wpadminbar {
        top: -46px;
    }

    header {
        padding: 20px 20px 15px;
    }

    footer {
        padding: 40px 20px 80px;
    }

    .subscription-form-container {
        padding: 50px 20px 40px;
    }

    .subscription-form form {
        flex-direction: column;
        height: auto;
    }

    .subscription-form form input[type="email"] {
        width: 100%;
        min-width: 100%;
        margin: 0 0 10px 0;
    }

    .subscription-form form button {
        width: 100%;
        margin: 0;
    }

    .slide .slide-content {
        padding: 20px;
        top: 50%;
    }

    .section-lead .lead-content {
        padding: 0 20px;
        margin: 0 0 30px;
    }

    .lead-content h2 {
        font-size: 30px;
    }

    .slide p br {
        display: none;
    }

    .section-menu {
        padding: 0 20px;
    }

    .section-menu h2 {
        font-size: 30px;
        display: flex;
        justify-content: center;
    }

    .section-menu .menu-container {
        flex-direction: column;
        margin: 0;
    }

    .section-menu .menu-item {
        width: 100%;
        max-width: 100%;
        margin: 0 0 30px 0;
    }
    .section-menu .menu-item:first-child {
        margin-top: 30px;
    }

    .menu-item .item-title {
        font-size: 24px;
    }

    .menu-item .item-image {
        max-width: 200px;
        padding-top: 0;
        margin: 0  auto 10px;
    }

    .menu-item .item-image img {
        position: relative;
    }

    .section-menu .menu-more {
        margin: 30px auto 0;
    }

    .section-menu .menu-container + .menu-container {
        margin-top: 30px;
    }

    .section-menu .menu-category {
        padding: 0;
        margin: 30px 0 40px;
    }

    .page-heading h1 {
        font-size: 48px;
    }
    .page-heading h1:after {
        content: '';
        display: inline-block;
        width: 23px;
        height: 21px;
        position: relative;
        top: -14px;
        left: auto;
        margin-left: 10px;
    }

    .locations-search {
        padding: 20px;
        height: 86px;
    }

    .locations-map {
        height: 320px;
        top: 86px;
    }

    .locations-list {
        margin-top: 320px;
        padding: 30px 20px 90px;
    }

    .width-medium {
        padding-left: 20px;
        padding-right: 20px;
    }

    form {
        padding-left: 20px;
        padding-right: 20px;
    }

    .container > p, .container > h1, .container > h2, .container > h3, .container > h4, .container > h5, .container > h6, .container > .wp-block-image, .container > ul {
        padding-left: 20px;
        padding-right: 20px;
    }

    .page-template-page-narrow .container > p, .page-template-page-narrow .container > h1, .page-template-page-narrow .container > h2, .page-template-page-narrow .container > h3, .page-template-page-narrow .container > h4, .page-template-page-narrow .container > h5, .page-template-page-narrow .container > h6, .page-template-page-narrow .container > .wp-block-image {
        padding-left: 20px;
        padding-right: 20px;
    }

    .page-template-page-narrow .width-normal {
        padding-left: 20px;
        padding-right: 20px;
    }

    form .row {
        grid-template-columns: 100%;
    }
    
    .section-notice {
        margin: 30px 20px 50px;
    }

    .gift-results {
        padding: 0 20px;
    }

    .post-list {
        padding: 0 20px;
    }

    .archive-info-container {
        padding: 0 20px;
    }

    .archive-info {
        display: block;
        /* width: 100%; */
    }

    .blog-heading h1 {
        font-size: 36px;
    }

    .post-content {
        padding: 0 20px;
    }

    .post-content .wp-block-quote {
        margin: 20px;
    }

    .post-content ol, .post-content ul {
        padding: 0 0 0 20px;
    }

    .post-content .wp-block-table {
        margin: 0;
    }

    .post-list-item .post-thumbnail {
        padding-top: 70%;
    }

    .post-list-item .post-title {
        font-size: 28px;
    }

    .post-list-item .post-info {
        font-size: 12px;
    }

    .post-list-item .post-excerpt {
        font-size: 14px;
    }

}

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

    .delivery-select button {
        font-size: 15px;
    }

}