/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Vars
# Global
# Nagivation
# Footer
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Vars
--------------------------------------------------------------*/

:root {
	--color-gold: #c29e58;
	--color-black: #1a1a1a;
	--color-white: #ffffff;
	--color-grey: #464946;
	--color-light-grey: #d8d8d8;
	--color-medium-grey: #1c1e1c;
	--color-dark-grey: #161816;
	--transition: 0.35s ease all;
}

/*--------------------------------------------------------------
# Global
--------------------------------------------------------------*/

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body * {
	scroll-margin-top: 85px;
	-webkit-font-smoothing: antialiased;
}

body {
	font-family: "Open Sans", sans-serif;
	display: fallback; 
	overflow-x: hidden !important;
	overscroll-behavior: none;
}

h1 {
	font-family: "Cormorant Upright", serif;
	color: var(--color-black);
	font-size: 60px;
	font-weight: 700;
	line-height: 1.08;
	margin: 0 0 10px;
	text-transform: uppercase;
}

h2 {
	font-family: "Cormorant Upright", serif;
	color: var(--color-black);
	font-size: 46px;
	font-weight: 700;
	margin: 0 0 10px;
	line-height: 1.1;
	text-transform: uppercase;
}

h3 {
	font-family: "Open Sans", serif;
	color: var(--color-gold);
	margin: 5px 0;
	font-weight: 600;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

h4 {
	font-size: 12px;
	font-weight: 600;
	color: var(--color-gold);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 0;
}

p {
	font-size: 15px;
	color: var(--color-black);
	line-height: 1.5;
	font-weight: 300;
	margin: 15px 0;
}

a,
a:active,
a:focus {
	outline: none;
}

#primary {
	margin: 0 0 90px;
}

.home #primary {
	margin: 0;
}

.post,
.page {
	margin: 0;
}

.home .entry-header,
.entry-footer {
	display: none;
}

.entry-content,
.hentry {
	margin: 0;
}

.max-width {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
}

body:not(.home) #primary.max-width {
	margin: 120px auto 70px;
}

.error-404 {
    margin-top: 190px;
}

#primary>div.black:last-child {
	margin-bottom: -90px;
}

.flex {
	display: flex;
}

.flex-wrap {
	flex-wrap: wrap;
}

.space-between {
	justify-content: space-between;
}

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

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

.grey {
	background-color: var(--color-light-grey);
}

.black h1,
.black h2,
.black p {
	color: var(--color-white);
}

.more {
	display: inline-block;
	text-transform: uppercase;
	color: var(--color-gold);
	font-weight: 600;
	letter-spacing: 1px;
	font-size: 14px;
}

.diamond-line {
	position: relative;
	margin: 0;
	transform-origin: top center;
}

.diamond-line.vertical.animate {
	transform: scaleY(0);
}

.diamond-line.horizontal.animate {
	transform: scaleX(0);
}

.diamond-line.white {
	background-color: var(--color-white);
}

.diamond-line.black {
	background-color: var(--color-black);
}

.diamond-line.gold {
	background-color: var(--color-gold);
}

.diamond-line.horizontal {
	height: 1px;
}

.diamond-line.vertical {
	width: 1px;
}

.diamond-line::before,
.diamond-line::after {
	content: "";
	position: absolute;
	width: 4px;
	height: 4px;
	transform: rotate(45deg);
}

.diamond-line.white::before,
.diamond-line.white::after {
	background-color: var(--color-white);
}

.diamond-line.black::before,
.diamond-line.black::after {
	background-color: var(--color-black);
}

.diamond-line.gold::before,
.diamond-line.gold::after {
	background-color: var(--color-gold);
}

.diamond-line.horizontal::before,
.diamond-line.horizontal::after {
	top: -1.5px;
}

.diamond-line.horizontal::before {
	left: -2px;
}

.diamond-line.horizontal::after {
	right: -2px;
}

.diamond-line.vertical::before,
.diamond-line.vertical::after {
	left: -1.5px;
}

.diamond-line.vertical::before {
	top: -2px;
}

.diamond-line.vertical::after {
	bottom: -2px;
}

.fade-in-up,
.fade-in-down,
.fade-in-left,
.fade-in-right {
	opacity: 0;
}

.gd-buttons {
	margin-top: 30px;
}

.gd-buttons .gd-button:not(:last-child) {
	margin-right: 10px;
}

.gd-button {
	font-family: "Open Sans", sans-serif;
	display: inline-block;
	text-decoration: none;
	background-color: transparent;
	border: 1.5px solid;
	padding: 11px 18px;
	font-size: 15px;
	font-weight: 600;
	text-shadow: none;
	box-shadow: none;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: var(--transition);
}

.gd-button.gold {
	color: var(--color-white);
	border-color: var(--color-gold);
	background-color: var(--color-gold);
}

.gd-button.gold:hover {
	color: var(--color-gold) !important;
	border-color: var(--color-gold);
	background-color: transparent;
}

.gd-button.gold-o {
	color: var(--color-gold);
	border-color: var(--color-gold);
	background-color: transparent;
}

.gd-button.gold-o:hover {
	color: var(--color-white);
	border-color: var(--color-gold);
	background-color: var(--color-gold);
}

.gd-button.white {
	color: var(--color-gold);
	border-color: var(--color-white);
	background-color: var(--color-white);
}

.gd-button.white:hover {
	color: var(--color-white);
	border-color: var(--color-white);
	background-color: transparent;
}

.gd-button.white-o {
	color: var(--color-white);
	border-color: var(--color-white);
	background-color: transparent;
}

.gd-button.white-o:hover {
	color: var(--color-black);
	border-color: var(--color-white);
	background-color: var(--color-white);
}

.gd-button.black-o {
	border-color: var(--color-black);
	color: var(--color-black);
	background-color: transparent;
}

.gd-button.black-o:hover {
	border-color: var(--color-black);
	color: var(--color-white);
	background-color: var(--color-black);
}

::-webkit-input-placeholder {
	/* WebKit, Blink, Edge */
	color: var(--color-black) !important;
}

:-moz-placeholder {
	/* Mozilla Firefox 4 to 18 */
	color: var(--color-black) !important;
	opacity: 1;
}

::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	color: var(--color-black) !important;
	opacity: 1;
}

:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: var(--color-black) !important;
}

/*--------------------------------------------------------------
# Nagivation
--------------------------------------------------------------*/

#masthead {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 999;
	padding: 14px 0;
	/*background-color: rgba(26, 26, 26, 0.6);*/
	background-color: #000;
	height: 117px;
	transition: var(--transition);
}

.home #masthead {
	height: 170px;
	background-color: transparent;
}

.home #masthead.scroll {
	height: 117px;
	background-color: #000;
}

#site-navigation {
	position: relative;
}

.logo {
	max-width: 200px;
}

.logo a {
	padding: 0 !important;
}

.logo img {
	display: block;
	transition: var(--transition);
	-webkit-transform: translate3d(0, 0, 0);
}

.home-logo {
	opacity: 0;
}

.home .home-logo {
	opacity: 1;
}

.home #masthead.scroll .home-logo {
	opacity: 0;
}

.scroll-logo {
	position: absolute;
	top: -3px;
	left: 38px;
	opacity: 1;
	transition: var(--transition);
	filter: brightness(0) invert(1);
}

.home .scroll-logo {
	opacity: 0;
}

.home #masthead.scroll .scroll-logo {
	opacity: 1;
}

.main-navigation ul {
	align-items: center;
}

.main-navigation li {
	position: relative;
	margin: 0 16px;
}

.main-navigation li:last-child {
	margin-right: 0;
}

.main-navigation a {
	font-size: 15.5px;
	font-weight: 600;
	padding: 20px 0;
	color: var(--color-white);
	transition: var(--transition);
}

.main-navigation a:hover,
.main-navigation .current_page_item>a,
.main-navigation .current-menu-parent>a,
.tax-product_brand .menu-item-194 a,
.single-post .menu-item-195 a {
	color: var(--color-gold);
}

.main-navigation .menu-item-has-children>a::after {
	content: "";
	display: inline-block;
	background-image: url("/wp-content/uploads/2025/05/down.svg");
	width: 10px;
	height: 8px;
	margin-left: 10px;
}

.main-navigation li.gd-button a {
	font-size: 15px;
	font-weight: 600;
}

.main-navigation ul ul {
	box-shadow: none;
	background-color: var(--color-white);
	padding: 12px 0;
	display: block;
}

.main-navigation ul ul a {
	width: 200px;
	padding: 6px 2px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 400;
	font-size: 12px;
	color: var(--color-black);
}

.menu-main-menu-container {
	align-self: baseline;
	margin-top: -8px;
}

.top-menu {
	background-color: var(--color-black);
	margin-top: -14px;
	padding: 10px 0;
	margin-bottom: 10px;
}

.top-menu .max-width {
	display: flex;
	align-items: center;
	justify-content: end;
}

#top-menu {
	list-style: none;
	display: flex;
	padding: 0;
	margin: 0;
}

#top-menu li {
	margin-left: 28px;
}

#top-menu a {
	color: var(--color-white);
	text-decoration: none;
	font-size: 15px;
	font-weight: 400;
	transition: var(--transition);
}

#top-menu a:hover,
#top-menu .current-menu-item a {
	color: var(--color-gold);
}

.menu-item {
	list-style: none;
}

.menu-item.cart-icon {
	margin: 0 32px 0 28px;
	list-style: none;
}

.menu-item.cart-icon a {
	font-size: 15px;
	font-weight: 400;
	color: var(--color-white);
	text-decoration: none;
	position: relative;
	transition: var(--transition);
}

.menu-item.cart-icon a:hover {
	color: var(--color-gold);
}

.cart-icon a::after {
	content: attr(data-cart-count);
	position: relative;
	font-size: 13px;
	font-weight: 600;
	color: var(--color-white);
	background-color: var(--color-gold);
	line-height: 1.3;
	width: 20px;
	height: 20px;
	text-align: center;
	top: -2px;
	right: 0;
	padding: 1px;
	letter-spacing: 0;
	display: inline-block;
	vertical-align: middle;
	margin-left: 8px;
}

.menu-search img {
	display: block;
}

body.caffeine_search_scheme_dark .caffeine_search-form .search-field,
body.caffeine_search_scheme_dark .caffeine_search-form .search-field::placeholder {
	font-family: "Open Sans", sans-serif;
	color: #fff !important;
}

body.caffeine_search_scheme_dark .caffeine_search-form .search-submit {
	font-family: "Open Sans", sans-serif;
	border-color: var(--color-gold) !important;
	color: var(--color-white) !important;
	background-color: var(--color-gold) !important;
	font-weight: 600;
	cursor: pointer;
	font-size: 16px;
	letter-spacing: 1px;
	transition: var(--transition);
}

body.caffeine_search_scheme_dark .caffeine_search-form .search-submit:hover {
	opacity: 0.8;
}

/*--------------------------------------------------------------
# Home
--------------------------------------------------------------*/

.home-landing {
	height: 100vh;
	position: relative;
	background-position: center center;
	/*background-size: 100% auto;*/
	background-size: cover;
	will-change: background-size;
}

.home-landing::after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(269.81deg,
			rgba(0, 0, 0, 0) 4.05%,
			rgba(0, 0, 0, 0.56) 58.82%,
			rgba(0, 0, 0, 0.8) 104.11%);
	position: absolute;
	top: 0;
}

.home-landing .max-width {
	position: relative;
	top: 60%;
	transform: translateY(-50%);
	z-index: 2;
}

.home-landing h1,
.home-landing p {
	color: var(--color-white);
}

.home-landing h1 {
	max-width: 535px;
}

.home-landing p {
	font-size: 17.5px;
	max-width: 500px;
}

.home-landing .gd-buttons {
	margin-top: 50px;
}

.diamond-line.one {
	position: absolute;
	left: 50%;
	bottom: -90px;
	z-index: 2;
	height: 140px;
	@media screen and (max-width: 440px) {
		height: 110px;
	}
}

.assets {
	padding: 100px 0 130px;
}

.assets .max-width>div {
	width: 30%;
	text-align: center;
	position: relative;
	height: 365px;
}

.assets .asset img {
	height: 365px;
	max-width: unset;
	margin: 0 auto;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}

.assets .asset.bullions img {
	left: calc(50% - 13px);
}

.assets .asset .asset-wrap {
	position: absolute;
	width: 100%;
	bottom: -20px;
}

.assets .asset h2 {
	font-size: 33px;
	margin-bottom: 16px;
}

.assets .max-width .assets-content {
	height: auto;
}

.assets .assets-content .gd-button {
	margin-top: 30px;
}

.assets .assets-content p {
	max-width: 315px;
	margin-left: auto;
	margin-right: auto;
}

.moving-cask {
	position: fixed;
	z-index: 9;
	pointer-events: none;
	margin-top: 50px;
}

.ba-wrapper {
	position: relative;
	height: 100vh;
	overflow: hidden;
}

.panel {
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
}

.panel-1 {
	background: var(--color-white);
	z-index: 1;
}

.panel-2 {
	background: var(--color-black);
	z-index: 2;
	left: 0;
	opacity: 0;
}

.carousel .panel h1 {
	font-size: 200px;
	letter-spacing: 33px;
	text-align: center;
	position: absolute;
	width: 100%;
	top: 15%;
	line-height: 0.8;
	z-index: 3;
}

.carousel .panel-2 h1 {
	color: var(--color-white);
}

.carousel .panel .image {
	position: absolute;
	top: 24%;
	left: 50%;
	transform: translateX(-50%);
	z-index: 4;
	max-width: 470px;
}

.carousel .panel .image .drink {
	position: absolute;
	right: 10px;
	bottom: 25px;
	max-height: 185px;
	max-width: 135px;
}

.carousel .panel img {
	visibility: visible;
}

.panel-content {
	position: absolute;
	bottom: 60px;
	max-width: 415px;
	left: 7%;
	z-index: 5;
}

.panel-content p {
	max-width: 300px;
}

.panel-content .gd-buttons .gd-button:last-child {
	margin-right: 0;
}

.panel-2 .panel-content {
	left: auto;
	right: 7%;
	text-align: right;
}

.panel-2 .panel-content p {
	color: var(--color-white);
	margin-left: auto;
}

.panel-1 .gd-button.white-o {
	color: var(--color-black);
	border-color: var(--color-black);
}

.panel-1 .gd-button.white-o:hover {
	color: var(--color-white);
	background-color: var(--color-black);
	border-color: var(--color-black);
}

.overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100vw;
	background: var(--color-black);
	z-index: 1;
	pointer-events: none;
}

.bullions:not(.asset) {
	padding: 90px 0;
	margin-top: -1px;
	position: relative;
}

.bullions:not(.asset) .max-width>div {
	width: 33%;
}

.bullions .bullion p {
	max-width: 315px;
}

.bullions .bullion .gd-buttons {
	margin-top: 48px;
}

.bullions .bullion.silver {
	text-align: right;
}

.bullions .bullion.silver p {
	margin-left: auto;
}

.bullions .bullion .gd-buttons .gd-button:last-child {
	margin-right: 0;
}

.diamond-line.two {
	position: absolute;
	left: 50%;
	bottom: -110px;
	z-index: 2;
	height: 170px;
}

.about {
	padding: 140px 0 120px;
	position: relative;
	overflow: hidden;
}

.parallax-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
	will-change: background-position;
}

.about .max-width {
	position: relative;
	z-index: 1;
}

.about .about-wrap {
	max-width: 540px;
}

.about .about-wrap p {
	max-width: 510px;
}

.about .about-wrap .gd-buttons {
	margin-top: 48px;
}

.about .steps {
	margin-top: 70px;
}

.steps .step {
	width: 21%;
}

.steps h3 {
	margin: 0;
}

.steps p {
	margin: 5px 0;
}

.steps p strong {
	font-size: 21px;
	font-weight: 600;
}

.steps p a {
	color: var(--color-white);
	font-weight: 600;
	text-decoration: none;
}

.insights {
	padding: 110px 0;
}

.insights .left {
	width: 60%;
}

.insights .left .wrap {
	width: calc(100% - 140px);
	margin: 10px 0 40px;
}

.insights .left .wrap p {
	max-width: 450px;
}

.insights .left .gd-button {
	align-self: flex-start;
	margin-top: 16px;
}

.insight-post {
	width: 48%;
}

.insight-post a {
	text-decoration: none;
	color: inherit;
}

.insight-image {
	height: 175px !important;
	object-fit: cover;
	object-position: center;
	width: 100%;
}

.insight-post img+span,
.distillery-region,
.distillery-asset-type {
	font-size: 11px;
	text-transform: uppercase;
	background-color: var(--color-light-grey);
	color: var(--color-black);
	display: inline-block;
	padding: 5px 8px;
	font-weight: 600;
	letter-spacing: 1px;
	margin: 10px 0 4px;
}

.distillery-meta span:not(:last-child) {
	margin-right: 8px;
}

.insight-post h3 {
	color: var(--color-black);
	text-transform: capitalize;
	line-height: 1.4;
}

.insights .right {
	width: 35%;
}

.market-value {
	background-color: var(--color-black);
	padding: 50px;
}

.market-value h2,
.market-value h3,
.market-value h4,
.market-value p {
	color: var(--color-white);
}

.market-value h2 {
	font-size: 29px;
	margin-bottom: 28px;
}

.market-value h3 {
	margin: 0;
}

.market-value h4 {
	margin-top: 15px;
}

.market-value p {
	margin: 0;
}

.trend {
	margin: 15px 0;
}

.market-value .gd-button {
	width: 100%;
	text-align: center;
	font-size: 13px;
	margin-top: 20px;
}

.market-value.horizontal {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	position: relative;
}

.market-value.horizontal .wrap {
	width: 28%;
}

.market-value.horizontal .trends {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 71%;
}

.market-value.horizontal .trends .trend {
	width: 25%;
	padding: 25px 35px 35px;
	position: relative;
	margin: 0;
}

.market-value.horizontal .trends .trend:last-child {
	padding-right: 0;
}

.market-value.horizontal .trends .trend .diamond-line {
	position: absolute;
	left: 0;
	height: 100%;
	top: 0;
}

.market-value.horizontal .gd-button {
	position: absolute;
	left: 50px;
	bottom: 50px;
	width: auto;
}

/*--------------------------------------------------------------
# Secondary
--------------------------------------------------------------*/

.secondary-banner+.max-width>#primary {
	margin: 80px 0;
}

.secondary-banner {
	height: 525px;
	position: relative;
}

.secondary-banner:before {
	content: "";
	background-color: var(--color-black);
	top: 0px;
	bottom: 0px;
	width: 100%;
	position: absolute;
	z-index: -999;
}

.secondary-banner::after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(269.81deg,
			rgba(0, 0, 0, 0) 4.05%,
			rgba(0, 0, 0, 0.42) 58.82%,
			rgba(0, 0, 0, 0.6) 104.11%);
	position: absolute;
	top: 0;
}

.secondary-banner .max-width {
	position: absolute;
	bottom: 70px;
	left: 0;
	right: 0;
	width: 100%;
	margin: 0 auto;
	z-index: 2;
}

.secondary-banner h1,
.secondary-banner p {
	color: var(--color-white);
}

/*--------------------------------------------------------------
# Shop
--------------------------------------------------------------*/

.woocommerce-breadcrumb {
	display: none;
}

.woocommerce-shop #main,
.tax-product_cat #main {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.shop-sidebar {
	width: 24%;
}

.shop-sidebar .dramcoin-promo.gold {
	width: 100%;
	background-color: var(--color-gold);
}

.shop-sidebar .dramcoin-promo.gold h2 {
	max-width: unset;
}

.shop-sidebar .dramcoin-promo.gold .gd-button {
	color: var(--color-white);
	border-color: var(--color-white);
	width: 100% !important;
	margin: 25px 0 0;
	text-align: center;
}

.shop-sidebar .dramcoin-promo.gold .gd-button:hover {
	background-color: var(--color-white);
	border-color: var(--color-white);
	color: var(--color-gold);
}

.shop-wrap {
	width: 72%;
}

.product-wrap {
	display: grid;
	grid-template-columns: repeat(auto-fill, 30%);
	grid-gap: 30px;
	justify-content: space-between;
}

.pagination-links {
	grid-column: 1 / -1;
	text-align: center;
}

.pagination-links span.current {
	font-weight: bold;
}

.pagination-links span.current:not(:last-child)::after {
	content: "";
	margin-left: 10px;
	margin-right: 10px;
	height: 2px;
	width: 55px;
	background-color: var(--color-black);
	display: inline-block;
	margin-bottom: 4px;
}

.pagination-links span.current:last-child::before {
	content: "";
	margin-left: 10px;
	margin-right: 10px;
	height: 2px;
	width: 55px;
	background-color: var(--color-black);
	display: inline-block;
	margin-bottom: 4px;
}

.pagination-links a {
	text-decoration: none;
	color: #d8d8d8;
	font-weight: bold;
	margin-right: 2px;
	margin-left: 2px;
}

a.page-prev {
	margin-right: 30px !important;
}

a.page-next {
	margin-left: 30px !important;
}

.products-per-page,
.products-sort {
	display: flex;
}

.products-per-page p,
.products-sort p {
	font-size: 15px;
	font-weight: 400;
}

#products-per-page,
#product-sorting {
	font-family: "Open Sans", sans-serif;
	background-color: transparent;
	text-align: center;
	border: none;
	font-size: 15px;
	font-weight: 700;
}

.woocommerce div.product {
	padding-bottom: 50px;
}

.woocommerce div.product a:not(.gd-button) {
	color: var(--color-black);
	text-decoration: none;
}

.woocommerce div.product .product-brand-logo {
	position: absolute;
	right: 0;
	top: 0;
	max-width: 75px;
}

.woocommerce div.product .product-image {
	text-align: center;
	padding-top: 30px;
}

.woocommerce div.product .product-image img {
	max-height: 210px;
	object-fit: cover;
	object-position: center;
	display: block;
	margin: 0 auto;
}

.woocommerce div.product .gd-button {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	text-align: center;
}

.woocommerce div.product .gd-button:hover {
	color: var(--color-gold);
}

.woocommerce div.product .product-name {
	display: block;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	margin-top: 15px;
}

.woocommerce div.product .product-date {
	display: block;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
}

.woocommerce div.product .product-description p {
	margin: 8px 0 0;
}

.woocommerce div.product p.price,
.woocommerce ul.products li.product .price {
	color: var(--color-black);
	font-size: 21px;
	font-weight: 600;
	margin: 8px 0 18px;
	display: inline-block;
}

.woocommerce div.product p.cut-price {
	font-size: 16px;
	font-weight: 600;
	color: var(--color-light-grey);
	display: inline-block;
	text-decoration: line-through;
	margin: 8px 0 18px 5px;
}

.woocommerce span.onsale {
	min-height: unset;
	min-width: unset;
	padding: 9px 12px;
	font-weight: 600;
	line-height: 1;
	top: 0;
	left: 0;
	margin: 0;
	border-radius: 0;
	background-color: var(--color-gold);
	color: var(--color-white);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.shop-banner {
	padding: 140px 0 120px;
	position: relative;
	overflow: hidden;
}

.shop-banner .max-width {
	position: relative;
	z-index: 1;
}

.shop-banner .wrap h2 {
	max-width: 600px;
}

.shop-banner .wrap p {
	max-width: 510px;
}

.shop-banner .wrap .gd-buttons {
	margin-top: 35px;
}

.shop-banner .wrap .gd-buttons .gd-button {
	margin-top: 12px;
}

#product-filters {
	background-color: var(--color-black);
	padding: 35px;
	margin-bottom: 15px;
	@media screen and (max-width: 900px) {
		padding: 20px 35px;
		cursor: pointer;
	}
}

#product-filters .top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: center;
}

#product-filters .top i {
	color: var(--color-white);
	text-transform: uppercase;
	margin: 0;
	font-size: 22px;
	padding-top: 5px;
}

#product-filters .top i,
#product-filters .top .count {
	display: none;
	position: relative;
	@media screen and (max-width: 900px) {
		display: block;
	}
}

#product-filters .top .count {
    position: absolute !important;
    color: var(--color-white);
	top: 33px;
    right: 14px;
    background: var(--color-gold);
    width: 25px;
    height: 25px;
    text-align: center;
    border-radius: 100%;
    z-index: 9;
	@media screen and (max-width: 900px) {
		top: 17px;
	}
}

#product-filters > *:not(.top) {
	@media screen and (max-width: 900px) {
		display: none;
	}
}

#product-filters h2 {
	color: var(--color-white);
	font-size: 27px;
	margin-bottom: 25px;
	letter-spacing: 1px;
	@media screen and (max-width: 900px) {
		margin-bottom: 0;
	}
}

#product-filters .filter-section {
	margin-bottom: -1px;
}

#product-filters .filter-section .filter-toggle {
	font-family: "Open Sans", sans-serif;
	background-color: transparent;
	border: navajowhite;
	color: var(--color-white);
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.5px;
	padding: 14px 0;
	cursor: pointer;

	width: 100%;
	display: flex;
	justify-content: space-between;
}

#product-filters .filter-section .filter-toggle .fa-chevron-down {
	font-size: 10px;
	transition: all 0.2s linear;
}

#product-filters .filter-section .filter-toggle .fa-chevron-down.active {
	transform: rotate(180deg);
}

#product-filters .filter-options {
	display: none;
	padding: 0 0 12px;
}

#product-filters .filter-section select {
	font-family: "Open Sans", sans-serif;
	background-color: var(--color-white);
	width: 100%;
	padding: 6px 10px;
	font-size: 14px;
	border: none;
	font-weight: 400;
	height: auto;
	margin: 3px 0 8px;
	cursor: pointer;
}

#clear-filters {
	font-family: "Open Sans", sans-serif;
	width: 100%;
	background-color: transparent;
	border: none;
	color: var(--color-white);
	text-transform: uppercase;
	font-weight: 600;
	font-size: 12px;
	letter-spacing: 0.5px;
	margin: 20px 0 12px;
	cursor: pointer;
}

#product-filters .gd-button {
	text-align: center;
	font-size: 13px;
	width: 100%;
}

.custom-radio {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	margin: 0;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	position: relative;
	cursor: pointer;
	vertical-align: middle;
	background-color: var(--color-white);
}

.custom-radio:checked::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 8px;
	height: 8px;
	background: var(--color-gold);
	border-radius: 50%;
}

.custom-radio-wrapper {
	display: inline-flex;
	align-items: center;
	cursor: pointer;
	user-select: none;
	color: var(--color-white);
	font-size: 14px;
	font-weight: 300;
	margin-right: 10px;
}

.custom-radio-wrapper span {
	margin-left: 8px;
}

.price-inputs .flex input {
	font-family: "Open Sans", sans-serif;
	border-radius: 0;
	border: none;
	background-color: var(--color-white);
	width: 48%;
	outline: none;
	font-size: 13px;
	padding: 4px 4px 4px 10px;
}

#price-slider {
	background: #d8d8d8;
	border-radius: 0;
	border: none;
	box-shadow: none;
	height: 3px;
	margin-top: 18px;
}

#price-slider .noUi-connect {
	background: var(--color-gold);
}

#price-slider .noUi-handle {
	width: 14px;
	height: 14px;
	right: -8px;
	top: -5.5px;
	border-radius: 50%;
	border: 1px solid var(--color-gold);
}

#price-slider .noUi-handle::after,
#price-slider .noUi-handle::before {
	display: none;
}

.post-type-archive-product .cat-description {
	display: none;
}

/*--------------------------------------------------------------
# Single Product
--------------------------------------------------------------*/

.single-product-banner {
	height: 500px;
	overflow: hidden;
	margin-top: 40px;
	position: relative;
	text-align: center;
}

.single-product-banner img {
	max-width: 500px;
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	bottom: -180px;
}

.single-product-banner h1 {
	color: var(--color-white);
	font-size: 300px;
	line-height: 1;
	position: absolute;
	left: 0;
	right: 0;
	margin: 10px auto 0;
	padding: 0 30px;
	letter-spacing: 20px;
}

.single-product #primary {
	margin: 180px 0 90px;
}

.single-product .single-product-banner+.max-width #primary {
	margin-top: 60px;
}

.woocommerce.single-product div.product .summary .product-name {
	font-size: 30px;
	font-weight: 700;
}

.woocommerce.single-product div.product .summary .product-date {
	font-size: 46px;
	font-weight: 700;
	line-height: 1.1;
}

.single-product .product-stock {
	font-size: 16px;
	text-transform: uppercase;
	color: var(--color-light-grey);
	font-weight: 600;
	letter-spacing: 0.5px;
}

.woocommerce.single-product div.product .summary p.price {
	font-size: 38px;
	font-weight: 600;
	color: var(--color-gold);
	margin-bottom: 15px;
}

.woocommerce.single-product div.product .summary p.price .orig-price {
	color: var(--color-light-grey);
	font-size: 28px;
}

.product-attributes {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	position: relative;
}

.product-attributes li {
	width: 31%;
	font-size: 15px;
	font-weight: 300;
	margin-bottom: 15px;
}

.product-attributes li:nth-child(2),
.product-attributes li:nth-child(3) {
	width: 49%;
	font-size: 17px;
	margin-bottom: 30px;
}

.product-attributes li strong {
	display: block;
	color: var(--color-black);
	font-size: 10.5px;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 0.8px;
}

.product-attributes li:nth-child(1) strong,
.product-attributes li:nth-child(2) strong {
	font-size: 12px;
}

.product-attributes .diamond-line {
	position: absolute;
	left: 37%;
	height: 42px;
}

p.wholesale-login {
	margin: -15px 0 40px;
	font-size: 13.5px;
}

p.wholesale-login a,
p.dramcoin-link a,
.product-disclaimer a {
	color: var(--color-gold) !important;
	font-weight: 600;
}

p.dramcoin-link {
	font-size: 13.5px;
	margin: 0 0 20px;
}

.woocommerce div.product div.summary .diamond-line.horizontal {
	margin: 50px 0 35px;
}

.product-disclaimer h3 {
	color: var(--color-black);
	font-size: 12px;
	margin-bottom: 0;
}

.product-disclaimer p {
	font-size: 13.5px;
	margin-top: 4px;
}

.woocommerce div.product div.summary .stock {
	display: none;
}

.woocommerce div.product form.cart {
	margin: 40px 0 20px;
}

.quantity-select,
.single-product .quantity {
	width: 95px;
	border: 2px solid var(--color-gold);
	padding: 5px 0;
	display: inline-block;
	vertical-align: middle;
	float: none !important;
	margin: 0 !important;
	text-align: center;
	padding: 0;
	height: 49px;
}

.sold-individually .quantity {
	display: none;
}

#cdw-li-quantityinput::-webkit-outer-spin-button,
#cdw-li-quantityinput::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.quantity-select input,
.single-product #cdw-li-quantity {
	-moz-appearance: textfield;
	text-align: center;
	border: 0;
	outline: none;
	font-size: 17.5px;
	font-weight: 600;
	display: inline-block;
	width: 40px;
	color: var(--color-black);
	height: 45px;
	text-transform: capitalize;
	padding: 0;
}

.cdw-li-quantity-change {
	color: var(--color-black);
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
}

.woocommerce div.product form.cart .quantity+.single_add_to_cart_button {
	margin-left: -6px;
}

.sold-individually .single_add_to_cart_button {
	margin-left: 0 !important;
}

.woocommerce div.product .incart-etc {
    margin: 40px 0 20px;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
}

.woocommerce div.product form.cart .single_add_to_cart_button,
.woocommerce div.product .incart-etc {
	font-family: "Open Sans", sans-serif;
	border: 2px solid var(--color-gold);
	background-color: transparent;
	color: var(--color-gold);
	border-radius: 0;
	text-transform: uppercase;
	font-size: 15px;
	font-weight: 600;
	padding: 15px 50px;
	float: none;
	height: 49px;
	transition: var(--transition);
}

.woocommerce div.product form.cart .single_add_to_cart_button:hover,
.woocommerce div.product .incart-etc:hover {
	background-color: var(--color-gold);
	border-color: var(--color-gold);
	color: var(--color-white);
}

.gd-cat-thumb {
	position: absolute;
	max-width: 140px;
	left: calc(45% - 148px);
	z-index: 2;
}

.woocommerce div.product div.images.woocommerce-product-gallery {
	position: relative;
	padding-top: 50px;
	width: 45%;
}

.custom-related-products {
	clear: both;
	padding-top: 70px;
}

.related-content {
	width: 60%;
}

.custom-related-products .wrap {
	margin-bottom: 20px;
}

.custom-related-products .related-title,
.custom-related-products .related-desc {
	width: 100%;
}

.custom-related-products .related-title {
	margin-bottom: 0;
}

.custom-related-products .related-desc strong {
	font-weight: 600;
}

.related-buttons {
	width: 33%;
	text-align: right;
}

.related-buttons .gd-button {
	position: relative !important;
	width: auto !important;
	margin-bottom: 8px;
}

.related-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, 30%);
	grid-gap: 30px;
	justify-content: space-between;
	width: 72%;
}

.dramcoin-promo {
	width: 25%;
	background-color: var(--color-black);
	padding: 35px;
	position: relative;
}

.dramcoin-promo h3 {
	color: var(--color-white);
	margin: 0;
}

.dramcoin-promo h2 {
	color: var(--color-white);
	font-size: 29px;
	max-width: 175px;
}

.dramcoin-promo p {
	color: var(--color-white);
}

.dramcoin-promo .gd-button {
	margin: 35px;
	width: calc(100% - 70px) !important;
}

.dramcoin-promo.gold .gd-button:hover {
	color: var(--color-black) !important;
}

/*--------------------------------------------------------------
# Insights / Distilleries Archive
--------------------------------------------------------------*/

.insights-grid-wrap,
.distilleries-grid-wrap {
	margin: 70px 0 90px;
}

.insights-filter .filter-wrap,
.insights-filter .secondary-filter-wrap,
.distilleries .filter-wrap,
.distilleries .secondary-filter-wrap {
	display: flex;
}

.filter-wrap span,
.secondary-filter-wrap span {
	font-size: 15px;
	font-weight: 400;
}

#asset-type-filter,
#region-filter {
	font-family: "Open Sans", sans-serif;
	background-color: transparent;
	font-weight: 300;
	border: 1px solid var(--color-light-grey);
	padding: 14px 25px;
	width: 25%;
	text-align: left;
	margin-bottom: 25px;
	font-size: 15px;
	height: 51px;
}

.filter-wrap .search-wrap {
	width: 46%;
}

.filter-wrap .search-wrap input {
	font-family: "Open Sans", sans-serif;
	background-color: transparent;
	font-weight: 300;
	border: 1px solid var(--color-light-grey);
	padding: 14px 25px;
	text-align: left;
	margin-bottom: 25px;
	font-size: 15px;
	outline: none;
	border-radius: 0;
	width: calc(100% - 158px);
	height: 51px;
	margin-right: -5px;
}

.filter-wrap .search-wrap input::placeholder {
	color: var(--color-black) !important;
	opacity: 1;
}

.filter-wrap .search-wrap .gd-button {
	height: 51px;
}

.filter-wrap .search-wrap .gd-button:hover {
	color: var(--color-gold);
}

.insights-filter #asset-type-filter {
	width: 31%;
}

.insights-filter .search-wrap {
	width: 67%;
}

#posts-per-page select,
#sort-order select {
	font-family: "Open Sans", sans-serif;
	background-color: transparent;
	text-align: center;
	border: none;
	font-size: 15px;
	font-weight: 700;
}

#insights-grid,
#distilleries-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, calc(33% - 20px));
	grid-gap: 30px;
	justify-content: space-between;
}

#insights-grid .insight-post,
#distilleries-grid .insight-post {
	width: 100%;
}

.insights-filter .filter-wrap,
.distilleries-filter .filter-wrap {
	width: 100%;
	text-align: left;
	margin-bottom: 20px;
}

.insights-filter .secondary-filter-wrap,
.distilleries-filter .secondary-filter-wrap {
	margin-bottom: 20px;
}

.pagination-insights,
.pagination-distilleries {
	margin-top: 25px;
}

/*--------------------------------------------------------------
# Single Insight
--------------------------------------------------------------*/

.single-post-container {
	margin-top: 190px;
}

.post-main-content {
	width: 63%;
}

.post-featured-image img {
	width: 100%;
	height: 385px;
	object-fit: cover;
	object-position: center;
}

.post-main-content ul,
.post-main-content ol {
	margin: 20px 0;
	padding-left: 20px;
	font-size: 15px;
	font-weight: 300;
}

.post-date {
	font-size: 11px;
	text-transform: uppercase;
	background-color: var(--color-light-grey);
	color: var(--color-black);
	display: inline-block;
	padding: 5px 8px;
	font-weight: 600;
	letter-spacing: 1px;
	margin: 15px 0;
}

.post-content h3 {
	font-size: 21px;
	text-transform: none;
	color: var(--color-black);
}

.post-content ol {
	margin: 25px 0 5px;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.post-content ol li {
	width: 47.5%;
	list-style-position: inside;
	font-size: 15px;
	font-weight: 300;
	margin-bottom: 25px;
}

.post-content ol li::marker {
	font-weight: 600;
	font-size: 16px;
}

.post-content ol li strong {
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.5px;
}

.post-content a {
	color: var(--color-gold);
	text-decoration: none;
	font-weight: 500;
}

.post-sidebar {
	width: 32%;
}

.sidebar-section.table-of-contents {
	padding: 50px;
	margin-bottom: 20px;
}

.sidebar-section.table-of-contents h2 {
	font-size: 29px;
	margin-bottom: 22px;
}

.sidebar-section.table-of-contents ul {
	margin: 0;
	list-style: none;
	padding: 0;
}

.sidebar-section.table-of-contents li a {
	position: relative;
	padding: 15px 0 15px 22px;
	display: block;
	color: var(--color-white);
	text-decoration: none;
	font-weight: 600;
}

.sidebar-section.table-of-contents li:last-child a {
	padding-bottom: 0;
}

.sidebar-section.table-of-contents li a::before {
	content: "";
	display: inline-block;
	background-image: url("/wp-content/uploads/2025/06/arrow-down.svg");
	width: 10px;
	height: 21px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.sidebar-section.related-posts {
	background-color: var(--color-light-grey);
	padding: 50px;
}

.sidebar-section.related-posts h3 {
	color: var(--color-black);
	margin: 0;
}

.sidebar-section.related-posts h2 {
	font-size: 29px;
	margin-bottom: 25px;
}

.sidebar-section.related-posts ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.sidebar-section.related-posts ul a {
	padding: 15px 0;
	display: block;
	color: var(--color-black);
	text-decoration: none;
	font-weight: 600;
}

.sidebar-section.related-posts ul li:last-child a {
	padding-bottom: 0;
}

.sidebar-section.related-posts ul a span.more {
	font-size: 12px;
	display: block;
	margin-top: 10px;
}

.post-author-section {
	background-color: var(--color-light-grey);
	padding: 50px 50px 40px;
	margin-top: 45px;
}

.post-author-section .author-meta {
	width: calc(100% - 150px);
}

.post-author-section .author-meta .author-name {
	color: var(--color-black);
	margin: 0;
	text-transform: capitalize;
}

.post-author-section .author-description p {
	margin: 10px 0;
}

/*--------------------------------------------------------------
# Single Distillery
--------------------------------------------------------------*/

.distillery-container {
	padding: 90px 0;
}

.distillery-main {
	width: 66%;
	margin-top: 40px;
}

.distillery-sidebar {
	width: 29%;
}

.distillery-main>span {
	font-size: 25px;
	text-transform: uppercase;
	color: var(--color-gold);
	display: block;
	line-height: 1;
	margin: 0 0 25px;
}

.sidebar-section.logo {
	width: 100%;
	background-color: var(--color-white);
	text-align: center;
	max-width: unset;
	padding: 25px;
	margin-bottom: 15px;
}

.sidebar-section.logo .logo {
	margin: 0 auto;
	width: 100%;
}

.sidebar-section.map iframe {
	display: block;
	width: 100%;
	height: 300px;
}

.sidebar-section.find-us {
	background-color: var(--color-light-grey);
	padding: 50px;
}

.sidebar-section.find-us h3 {
	color: var(--color-black);
	margin: 0;
}

.sidebar-section.find-us h2 {
	font-size: 29px;
	color: var(--color-black);
}

.sidebar-section.find-us .gd-button {
	width: 100%;
	text-align: center;
	margin-top: 20px;
}

.sidebar-section.sidebar-buttons {
	margin-top: 15px;
}

.sidebar-section.sidebar-buttons .gd-button {
	width: 100%;
	text-align: center;
	margin-bottom: 15px;
}

.custom-related-products.distillery .related-grid {
	width: 100%;
	grid-template-columns: repeat(auto-fill, calc(25% - 25px));
	margin-bottom: 50px;
}

.custom-related-products.distillery .dramcoin-promo {
	width: 100%;
	padding: 50px 60px;
}

.custom-related-products.distillery .dramcoin-promo .wrap {
	width: 73%;
	margin: 0;
}

.custom-related-products.distillery .dramcoin-promo h2 {
	max-width: unset;
}

.custom-related-products.distillery .dramcoin-promo p {
	margin-bottom: 0;
}

.custom-related-products.distillery .dramcoin-promo .buttons {
	width: 23%;
}

.custom-related-products.distillery .dramcoin-promo .buttons .gd-button {
	margin: 0;
	text-align: center;
	width: 100% !important;
}

.custom-related-products.distillery .dramcoin-promo .buttons .gd-button:first-child {
	margin-bottom: 15px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.page-id-188 #primary {
	margin-bottom: 0;
}

.contact-forms {
	padding: 100px 0;
	text-align: center;
}

.contact-forms h2 strong {
	color: var(--color-gold);
}

.contact-forms p {
	max-width: 625px;
	margin-left: auto;
	margin-right: auto;
}

.contact-details {
	padding: 0 0 75px;
	margin-bottom: 90px;
}

.contact-details .steps {
	margin-top: 50px;
}

.contact-details .steps p {
	margin: 15px 0;
}

.contact-details .steps p strong {
	font-size: 15px;
}

.contact-details .steps .step {
	width: auto;
}

.contact-details h2 {
	max-width: 500px;
}

.contact-details a {
	color: var(--color-white);
	text-decoration: none;
}

.contact-details .steps h3 {
	margin-bottom: -10px;
}

.follow-us h3 {
	color: var(--color-white);
	text-align: right;
	font-size: 12px;
}

.sm a {
	color: var(--color-white);
	background-color: var(--color-gold);
	text-decoration: none;
	width: 54px;
	height: 47px;
	text-align: center;
	font-size: 27px;
	line-height: 1.6;
	margin-left: 5px;
	opacity: 1;
	transition: var(--transition);
}

.sm a:hover {
	opacity: 0.8;
}

.tab-container #gform_wrapper_2 {
	display: none;
}

.tabs {
	position: relative;
	display: flex;
	border-radius: 30px;
	overflow: hidden;
	margin: 40px 0 20px;
}

.tab {
	flex: 1;
	text-align: center;
	padding: 12px 0;
	cursor: pointer;
	font-weight: 500;
	user-select: none;
	position: relative;
	background-color: #8c8c8c;
	color: var(--color-black);
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.5px;
}

.tab span {
	position: relative;
	z-index: 2;
}

.slider {
	position: absolute;
	bottom: 0;
	height: 100%;
	width: 0;
	background-color: #d8d8d8;
	border-radius: 30px;
	z-index: 1;
	transition: left 0.3s ease, width 0.3s ease;
}

body .gform_wrapper.gravity-theme .gform_fields {
	grid-column-gap: 1%;
	grid-row-gap: 14px;
}

body .gform_wrapper.gravity-theme .gfield input.large,
body .gform_wrapper.gravity-theme .gfield select.large,
body .gform_wrapper.gravity-theme .gfield textarea.small,
body .gform_wrapper.gravity-theme .gfield textarea.medium,
body .gform_wrapper.gravity-theme .gfield textarea.large {
	font-family: "Open Sans" sans-serif;
	outline: none;
	border-radius: 0;
	padding: 12px 20px;
	font-weight: 300;
	background-color: var(--color-white);
}

body .gform_wrapper.gravity-theme .gfield select.large {
	padding: 14px 20px;
}

body .gform_button {
	font-family: "Open Sans", sans-serif;
	display: inline-block;
	text-decoration: none;
	color: var(--color-white);
	background-color: var(--color-gold);
	border: 1.5px solid var(--color-gold);
	padding: 11px 18px;
	font-size: 15px;
	font-weight: 600;
	text-shadow: none;
	box-shadow: none;
	border-radius: 0;
	line-height: 1.4;
	margin: 0 0 0 auto !important;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: var(--transition);
}

body .gform_button:hover {
	color: var(--color-gold);
	border-color: var(--color-gold);
	background-color: transparent;
}

body .gform_required_legend,
body .gform_wrapper.gravity-theme .gfield_required {
	display: none;
}

body .gform_wrapper.gravity-theme .gsection {
	border-bottom: none;
	padding: 0;
}

body .gsection_title {
	margin-bottom: 0;
}

body .gform_wrapper.gravity-theme .gfield_label {
	font-weight: 600;
	letter-spacing: 0.4px;
	color: var(--color-black);
}

body .gform_wrapper.gravity-theme .gfield-choice-input+label {
	color: var(--color-black);
}

body .black .gform_wrapper.gravity-theme .gfield_label,
body .black .gform_wrapper.gravity-theme .gfield-choice-input+label {
	color: var(--color-white);
}

body .gfield_consent_label {
	color: var(--color-black);
	font-size: 14px;
	letter-spacing: 0.3px;
	margin-left: 5px;
	font-weight: 300;
}

body .black .gfield_consent_label {
	color: var(--color-white);
}

body .gform_save_link {
	font-family: "Open Sans", sans-serif;
	display: inline-block;
	text-decoration: none;
	color: var(--color-gold) !important;
	background-color: transparent !important;
	border: 1.5px solid var(--color-gold) !important;
	padding: 11px 18px;
	font-size: 15px;
	font-weight: 600;
	text-shadow: none;
	box-shadow: none;
	border-radius: 0;
	line-height: 1.4;
	margin: 0 0 0 auto !important;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: var(--transition);
}

body .gform_save_link:hover {
	color: var(--color-white) !important;
	background-color: var(--color-gold) !important;
	border: 1.5px solid var(--color-gold) !important;
}

body .gform_wrapper.gravity-theme .gform_save_link.button svg {
	display: none;
}

body .form_saved_message {
	text-align: center;
}

body a.resume_form_link {
	color: var(--color-gold);
	font-weight: 600;
	text-decoration: none;
}

body .gform_send_resume_link_button {
	font-family: "Open Sans", sans-serif;
	position: absolute;
	right: 0;
	bottom: -30px;
	margin: 0;
	background-color: var(--color-gold);
	border: none;
	border-radius: 0;
	color: var(--color-white);
	text-transform: uppercase;
	font-weight: 700;
	height: 48.5px;
	padding: 0 25px;
	cursor: pointer;
}

body .gform_confirmation_wrapper {
	text-align: center;
}

body .gform_confirmation_message {
	color: var(--color-white);
	font-weight: 500;
}

body #register .gform_confirmation_message {
    color: var(--color-black);
}

body .gform_wrapper.gravity-theme .gfield_description {
	color: var(--color-black);
	font-size: 12px;
	padding: 5px 0 0;
}

body .black .gform_wrapper.gravity-theme .gfield_description {
	color: var(--color-white);
}

body .gform_wrapper.gravity-theme .gfield-choice-input+label {
	max-width: unset;
}

body .gform_wrapper.gravity-theme .gform_drop_area {
	background: #d8d8d8;
	border: 1px dashed #ccc;
	border-radius: 0;
}

body .gform_wrapper.gravity-theme .gform_drop_instructions {
	font-size: 17px;
	font-weight: 600;
	color: var(--color-black);
}

body .gform_wrapper.gravity-theme .gform_drop_instructions::before {
	content: "";
	display: block;
	content: "";
	background-image: url("/wp-content/uploads/2025/07/file-upload.svg");
	width: 48px;
	height: 51px;
	margin: 0 auto 20px;
}

body .gform_button_select_files {
	font-family: "Open Sans", sans-serif;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--color-white);
	background-color: var(--color-gold);
	border: 1.5px solid var(--color-gold);
	border-radius: 0;
	padding: 11px 20px;
	letter-spacing: 0.8px;
	font-size: 13px;
	cursor: pointer;
	transition: var(--transition);
}

body .gform_button_select_files:hover {
	color: var(--color-gold);
	background-color: transparent;
	border: 1.5px solid var(--color-gold);
}

body .gfield--input-type-radio .gfield_label,
body .gfield--input-type-checkbox .gfield_label {
	float: left;
	margin-right: 20px !important;
}

body .gfield--input-type-radio .ginput_container_radio,
body .gfield--input-type-checkbox .ginput_container_checkbox {
	display: inline-block;
}

body .gfield_radio,
body .gfield_checkbox {
	display: flex;
}

body .gfield_radio .gchoice,
body .gfield_checkbox .gchoice {
	margin-right: 15px;
}

body .ginput_preview {
	color: var(--color-white);
	font-size: 12px;
}

body #register .ginput_preview {
	color: var(--color-black);
}

body .ginput_preview a {
	color: var(--color-gold);
	text-decoration: none;
}

body .gform_delete_file {
	filter: invert(1);
	position: relative;
	top: -3px;
}

#field_3_27,
#field_4_27,
#field_6_27 {
	max-width: 300px;
}

#field_3_26,
#field_4_26,
#field_6_26 {
	position: absolute;
	bottom: 0;
	right: 0;
}

#field_6_30::before {
	content: "Business Details";
	display: block;
	color: var(--color-gold);
	text-transform: uppercase;
	font-weight: 600;
	font-size: 16px;
	letter-spacing: 0.5px;
	margin: 5px 0 14px;
}

a.form-link {
	color: var(--color-gold);
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 0.5px;
	font-size: 14px;
}

#gform_wrapper_3 .gform-footer,
#gform_wrapper_4 .gform-footer,
#gform_wrapper_6 .gform-footer {
	margin: 0;
	padding: 0;
	position: absolute;
	bottom: 30px;
	right: 0;
	display: flex;
}

#gform_submit_button_3,
#gform_submit_button_4,
#gform_submit_button_6 {
	order: 2;
	margin-left: 12px !important;
}

/*--------------------------------------------------------------
# Information
--------------------------------------------------------------*/

.page-template-information #page {
	background-color: var(--color-black);
}

.page-template-information #masthead {
	background-color: #000;
}

.information {
	padding-top: 200px;
	padding-bottom: 80px;
	@media screen and (max-width: 950px) {
		padding-top: 120px;
	}
}

.sibling-pages-list {
	width: 29.5%;
	background-color: var(--color-light-grey);
	padding: 50px;
	align-self: flex-start;
	@media screen and (max-width: 950px) {
		width: 100%;
		margin-bottom: 30px;
	}
}

.sibling-pages-list h2 {
	font-size: 29px;
	margin-bottom: 22px;
}

.sibling-list-wrap {
	margin: 0 auto 38px;
	padding: 0;
	list-style: none;
}

.sibling-list-wrap a {
	display: block;
	padding: 15px 0;
	font-size: 12px;
	text-transform: uppercase;
	color: var(--color-black);
	font-weight: 700;
	letter-spacing: 0.7px;
	text-decoration: none;
}

.sibling-list-wrap li.active a {
	color: var(--color-gold);
}

.sibling-pages-list .gd-button {
	width: 100%;
	text-align: center;
}

.sibling-pages-list .gd-button:hover {
	color: var(--color-gold);
}

.information-content {
	width: 66%;
}

.information-content h2 {
	color: var(--color-white);
}

.information-content h3 {
	color: var(--color-white);
	text-transform: none;
}

.information-content p {
	color: var(--color-white);
}

.information-content .diamond-line {
	margin: 30px 0 25px;
}

/*--------------------------------------------------------------
# Trade
--------------------------------------------------------------*/

.about-content-row {
	padding: 100px 0;
	position: relative;
	z-index: 2;
	margin-top: -1px;
}

.about-content-row .image-left {
	width: 33%;
}

.about-content-row .image-left img {
	display: block;
	margin-left: -50px;
}

.about-content-row .content-right {
	width: 58%;
}

.about-content-row .content-right h2 {
	max-width: 430px;
}

.about-content-row .content-right .gd-buttons {
	margin-top: 50px;
}

.benefits {
	position: relative;
	padding: 120px 0;
}

.benefits .diamond-line.one {
	bottom: auto;
	top: -45px;
	z-index: 17;
}

.benefits .parallax-bg {
	top: -2px;
}

.benefits .max-width {
	position: relative;
	z-index: 1;
}

.benefits-wrap {
	text-align: center;
	max-width: 850px;
	margin: 0 auto 60px;
}

.benefits .steps .step {
	width: 13%;
}

.benefits .steps p {
	margin: 5px 0 0;
}

.benefits .steps p strong {
	line-height: 1.1;
}

.trade-form {
	padding: 80px 0;
}

.trade-form .wrap {
	text-align: center;
	margin: 0 auto 50px;
	max-width: 585px;
}

.trade-form .form {
	max-width: 950px;
	margin: 0 auto;
}

/*--------------------------------------------------------------
# DramCoin
--------------------------------------------------------------*/

.page-id-183 .about-content-row .content-right h2 {
	max-width: 500px;
}

.page-id-183 .about-content-row .content-right h2:first-of-type {
	display: none;
}

.page-id-183 .about-content-row .content-right h2 strong {
	color: var(--color-gold);
}

.earn-redeem {
	position: relative;
	padding: 120px 0;
}

.earn-redeem .diamond-line.one {
	bottom: auto;
	top: -45px;
	z-index: 17;
}

.earn-redeem .parallax-bg {
	top: -2px;
}

.earn-wrap {
	text-align: center;
	max-width: 850px;
	margin: 0 auto 60px;
}

.redeem {
	margin: 100px 0 0;
}

.redeem-wrap {
	width: 68%;
}

.redeem-wrap h2 {
	max-width: 500px;
}

.redeem-wrap h2+div {
	max-width: 520px;
}

.redeem-wrap .steps {
	margin-top: 55px;
}

.redeem-wrap .steps .step {
	width: 28%;
}

.redeem .rules {
	background-color: var(--color-gold);
	padding: 40px;
	width: 29%;
}

.redeem .rules h3 {
	margin: 0;
	color: var(--color-white);
}

.redeem .rules p strong {
	font-weight: 600;
}

.redeem .rules .gd-buttons {
	margin-top: 0;
}

.redeem .rules .gd-buttons .gd-button {
	width: 100%;
	text-align: center;
	margin: 10px 0 0;
}

.redeem .rules .gd-buttons .gd-button.white-o:hover {
	color: var(--color-gold);
}

.terms-conditions {
	position: relative;
	margin-top: -4px;
	z-index: 2;
	padding-bottom: 90px;
}

.terms-conditions .max-width {
	padding: 50px;
	max-width: 1140px;
}

.terms-conditions h2 {
	color: var(--color-black);
	margin-bottom: 0;
}

.terms-conditions p {
	color: var(--color-black);
	font-size: 17px;
}

.terms-conditions .gd-button {
	font-size: 13px;
}

.terms-conditions ol {
	margin: 0;
	padding-left: 20px;
	font-size: 17px;
	color: var(--color-black);
	font-weight: 300;
}

.terms-conditions ol li::marker {
	font-weight: 600;
}

.terms-conditions ol strong {
	font-weight: 600;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about.landing {
	padding: 120px 0;
	position: relative;
	margin-top: -1px;
	z-index: 3;
}

.about .about-image {
	width: 25%;
}

.about .about-image img {
	display: block;
}

.about .about-content {
	width: 38%;
	text-align: center;
}

.about .about-content .gd-buttons {
	margin-top: 50px;
}

.journey {
	position: relative;
	padding: 120px 0;
}

.journey .diamond-line.one {
	bottom: auto;
	top: -45px;
	z-index: 17;
}

.journey-wrap {
	text-align: center;
	max-width: 850px;
	margin: 0 auto 60px;
}

.company {
	padding: 30px 0 100px;
}

.company .company-wrap {
	margin-bottom: 55px;
	max-width: 915px;
}

.content-blocks .content-block {
	width: 31.5%;
	padding: 50px 50px 125px;
	position: relative;
}

.content-blocks .content-block h3 {
	color: var(--color-black);
	margin-top: 0;
	text-transform: none;
	font-size: 21px;
	line-height: 1.2;
}

.content-blocks .content-block p {
	color: var(--color-black);
}

.content-blocks .content-block .gd-button {
	position: absolute;
	bottom: 50px;
	width: calc(100% - 100px);
	text-align: center;
}

.content-blocks .content-block .gd-button.gold:hover {
	color: var(--color-black);
}

.meet-the-team {
	padding: 100px 0 0;
}

.meet-the-team .head-wrap .left {
	width: calc(100% - 250px);
}

.meet-the-team .head-wrap>div:last-child p:first-child {
	margin-top: 0;
}

.team-members-carousel {
	margin: 50px -6.4% 0;
}

.team-members-carousel .slick-track {
	min-height: 565px;
	min-width: 100%;
}

.team-members-carousel .slick-track::before,
.team-members-carousel .slick-track::after {
	display: none !important;
}

.team-members-carousel .team-member {
	background-color: var(--color-black);
	margin: 0;
	transform-origin: center top;
	transform: scale(0.65);
	transition: 0.35s ease all;
}

.team-members-carousel .team-member .team-member-wrap {
	padding: 40px;
}

.team-members-carousel .team-member.slick-current:not(.slick-cloned) .team-member-wrap {
	padding: 30px;
}

.team-members-carousel .team-member.slick-current:not(.slick-cloned) {
	transform: scale(1.25);
}

.team-members-carousel .team-member-wrap>div {
	overflow: hidden;
}

.team-members-carousel .team-member .member-content p {
	color: var(--color-white);
	font-size: 11px;
}

.team-members-carousel .team-member img {
	display: block;
	width: 100%;
	height: 390px;
	object-fit: cover;
	object-position: center;
	margin-top: -2px;
}

.team-members-carousel .team-member.slick-current:not(.slick-cloned) img {
	display: block;
	width: 40%;
	height: 160px;
	object-fit: cover;
	object-position: center;
}

.team-members-carousel .team-member .member-info {
	width: 100%;
	text-align: center;
}

.team-members-carousel .team-member.slick-current:not(.slick-cloned) .member-info {
	width: 52%;
	text-align: left;
}

.team-members-carousel .team-member .member-info p {
	color: var(--color-white);
	text-align: center;
	font-size: 25px;
	font-weight: 400;
	margin: 20px 0 0;
}

.team-members-carousel .team-member.slick-current:not(.slick-cloned) .member-info p {
	text-align: left;
	font-size: 16px;
	margin: 0;
}

.team-members-carousel .team-member .member-info h3 {
	text-align: center;
	margin: 0;
	font-size: 18px;
}

.team-members-carousel .team-member.slick-current:not(.slick-cloned) .member-info h3 {
	text-align: left;
	font-size: 14px;
}

.team-members-carousel .team-member .member-info span {
	font-size: 12px;
	margin-top: 20px;
}

.team-members-carousel .team-member.slick-current:not(.slick-cloned) .member-info span {
	display: none;
}

.team-members-carousel .team-member .gd-button {
	display: none;
	font-size: 9px;
	padding: 5px 10px 6px;
	margin: 20px 0 0;
}

.team-members-carousel .team-member.slick-current:not(.slick-cloned) .gd-button {
	display: inline-block;
}

.team-members-carousel .team-member .member-content {
	height: 0;
	overflow: hidden;
}

.team-members-carousel .team-member.slick-current:not(.slick-cloned) .member-content {
	height: auto;
}

.team-members-carousel .slick-prev,
.team-members-carousel .slick-next {
	width: 56px;
	bottom: 28%;
	top: auto;
	z-index: 10;
	transform: none;
}

.team-members-carousel .slick-prev {
	left: 6%;
	right: auto;
}

.team-members-carousel .slick-next {
	left: auto;
	right: 6%;
}

/*--------------------------------------------------------------
# Craft Your Own Bottle
--------------------------------------------------------------*/

.package-options {
	padding: 120px 0;
	position: relative;
}

.package-options .diamond-line.one {
	bottom: auto;
	top: -45px;
	z-index: 10;
}

.package-options .parallax-bg {
	top: -3px;
}

.package-options-wrap {
	text-align: center;
	max-width: 850px;
	margin: 0 auto;
}

.tiers {
	height: 100vh;
	width: 100%;
	position: relative;
}

.tiers-carousel {
	height: 100%;
}

.tiers-carousel .slick-track,
.tiers-carousel .slick-list {
	display: flex !important;
	height: 100%;
}

.tiers-carousel .slick-slide {
	display: flex;
}

.tiers-carousel .slick-slide .max-width {
	align-self: center;
}

.tiers .tier-content {
	width: 36%;
}

.tiers .tier-content>h3 {
	font-size: 21px;
}

.tiers .tier-content h1 {
	font-size: 64px;
	letter-spacing: 10px;
}

.tiers .tier-content .tier-info {
	margin-top: 100px;
}

.tiers .tier-content .tier-info h2 {
	font-family: "Open Sans", sans-serif;
	font-size: 16px;
	text-transform: none;
	color: var(--color-gold);
	font-weight: 600;
	letter-spacing: 1px;
	margin: 0;
	max-width: 315px;
}

.tiers .tier-content .tier-info p {
	max-width: 280px;
	margin: 8px 0 20px;
}

.tiers .tier-content .tier-info h3 {
	color: var(--color-black);
	text-transform: none;
	font-size: 21px;
}

.tiers .tier-content .tier-info p em strong {
	font-weight: 400;
	font-size: 12px;
	display: block;
	margin-top: -5px;
}

.tiers .tier-content .tier-info h3,
.tiers .tier-content .tier-info p:last-child {
	display: none;
}

.tiers .tier-content .gd-button.gold:hover {
	color: var(--color-gold);
}

.tiers .tier-image img {
	display: block;
}

.tiers .tier-features {
	margin: 0;
}

.tiers .tier-features .feature {
	width: 100%;
	text-align: right;
}

.tiers .tier-features p {
	max-width: 180px;
	margin: 50px 0 8px auto;
}

.tiers .tier-features .feature:first-child p {
	margin-top: 0;
}

.tiers-carousel .slick-prev {
	display: none;
}

.tiers-carousel .slick-next {
	top: auto;
	left: auto;
	right: 165px;
	bottom: 40px;
	z-index: 10;
	width: 56px;
}

.tiers .tier-1 .tier-image {
	width: 26%;
	margin-left: -50px;
}

.tiers .tier-1 .tier-features {
	width: 33%;
	margin-top: -110px;
}

.tiers .tier-1 .tier-features .diamond-line:nth-child(2),
.tiers .tier-1 .tier-features .diamond-line:nth-child(4) {
	width: 133%;
	margin-left: -33%;
}

.tiers .tier-1 .tier-features .diamond-line:nth-child(6),
.tiers .tier-1 .tier-features .diamond-line:nth-child(8),
.tiers .tier-1 .tier-features .diamond-line:nth-child(10) {
	width: 108%;
	margin-left: -8%;
}

.tiers .tier-2 .tier-image {
	width: 34%;
	margin-left: -40px;
	position: relative;
	top: 20px;
}

.tiers .tier-2 .tier-features {
	width: 24%;
	margin-top: -80px;
}

.tiers .tier-2 .tier-features p {
	margin-top: 25px;
}

.tiers .tier-2 .tier-features .diamond-line:nth-child(2) {
	width: 145%;
	margin-left: -45%;
}

.tiers .tier-2 .tier-features .diamond-line:nth-child(4),
.tiers .tier-2 .tier-features .diamond-line:nth-child(6) {
	width: 148%;
	margin-left: -48%;
}

.tiers .tier-2 .tier-features .diamond-line:nth-child(8),
.tiers .tier-2 .tier-features .diamond-line:nth-child(10) {
	width: 115%;
	margin-left: -15%;
}

.tiers .tier-2 .tier-features .diamond-line:nth-child(12),
.tiers .tier-2 .tier-features .diamond-line:nth-child(14) {
	width: 113%;
	margin-left: -13%;
}

.tiers .tier-3 .tier-image {
	width: 39%;
	margin-left: -50px;
}

.tiers .tier-3 .tier-features {
	width: 22%;
	margin-top: -60px;
}

.tiers .tier-3 .tier-features p {
	margin-top: 28px;
}

.tiers .tier-3 .tier-features .diamond-line:nth-child(2) {
	width: 217%;
	margin-left: -117%;
}

.tiers .tier-3 .tier-features .diamond-line:nth-child(4),
.tiers .tier-3 .tier-features .diamond-line:nth-child(6) {
	width: 148%;
	margin-left: -48%;
}

.tiers .tier-3 .tier-features .diamond-line:nth-child(8) {
	width: 151%;
	margin-left: -51%;
}

.tiers .tier-3 .tier-features .diamond-line:nth-child(10) {
	width: 113%;
	margin-left: -13%;
}

.tiers .tier-3 .tier-features .diamond-line:nth-child(12) {
	width: 109%;
	margin-left: -9%;
}

.tiers .tier-3 .tier-features .diamond-line:nth-child(14) {
	width: 105%;
	margin-left: -5%;
}

.tiers .tier-3 .tier-features .diamond-line:nth-child(16) {
	width: 108%;
	margin-left: -8%;
}

.tier-nav {
	position: absolute;
	z-index: 10;
	transform: rotate(-90deg);
	bottom: 50%;
	width: 100vh;
	left: calc(100vw - 50vh);
	transform-origin: bottom;
}

.tier-nav .slick-track {
	padding-top: 20px;
	transform: none !important;
}

.tier-nav .slick-slide {
	background-color: var(--color-black);
	border-left: 1px solid var(--color-white);
	border-right: 1px solid var(--color-white);
	color: var(--color-white);
	font-size: 26px;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 6px;
	padding: 25px 40px;
	cursor: pointer;
	position: relative;
	transition: var(--transition);
}

.tier-nav .slick-slide::before {
	content: "";
	width: calc(100% + 1px);
	height: 20px;
	background-color: var(--color-gold);
	position: absolute;
	top: 0;
	left: 0;
	border-left: 1px solid var(--color-white);
	border-radius: 1px solid var(--color-white);
	transition: var(--transition);
	transform: rotate(180deg);
	z-index: -1;
}

.tier-nav .slick-slide.slick-current {
	background-color: var(--color-gold);
}

.tier-nav .slick-slide.slick-current::before {
	top: -15px;
}

.tier-4 {
	padding: 120px 0;
	position: relative;
}

.tier-4 .diamond-line.two {
	top: -10px;
	height: 100px;
}

.tier-4 .parallax-bg {
	top: -2px;
}

.tier-4 .tier-content p {
	max-width: 500px;
}

.tier-4 .tier-content p strong {
	font-weight: 600;
	margin-bottom: 2px;
	display: block;
	font-size: 16px;
}

.tier-4 .tier-content div h3 {
	color: var(--color-white);
	text-transform: none;
	font-size: 19px;
}

.tier-features {
	margin-top: 65px;
}

.tier-features .feature {
	width: 21%;
}

.tier-features .feature .image-wrap {
	overflow: hidden;
}

.tier-features .feature .image-wrap img {
	width: calc(100% + 4px);
	max-width: unset;
	margin-left: -2px;
	margin-top: -2px;
	height: 150px;
	object-fit: cover;
	object-position: center;
}

.tier-4 .tier-content .feature h3 {
	line-height: 1.2;
	margin: 12px 0 0;
}

.tier-4 .tier-content .feature p {
	margin: 5px 0 0;
}

#craft-form,
#register {
	padding-bottom: 30px;
}

.craft-form {
	padding: 100px 0;
	position: relative;
	z-index: 2;
	margin-top: -3px;
}

.craft-form .wrap {
	text-align: center;
	margin: 0 auto 50px;
}

.craft-form .wrap p {
	max-width: 580px;
	margin-left: auto;
	margin-right: auto;
}

.craft-form .form {
	max-width: 950px;
	margin: 0 auto;
}

.tier-options {
	margin-top: 80px;
}

.tier-options span {
	color: var(--color-gold);
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-align: left;
	display: block;
}

.tier-options h3 {
	font-family: "Cormorant Upright", serif;
	color: var(--color-white);
	text-align: left;
	font-size: 25px;
	line-height: 1.2;
	max-width: 215px;
}

.tier-options .feature {
	width: 21%;
}

.tier-options .gd-button {
	font-size: 12px;
	padding: 8px 16px;
	margin-top: 12px;
}

/*--------------------------------------------------------------
# Assets
--------------------------------------------------------------*/

img.cask {
	visibility: hidden;
}

.moving-cask {
	position: fixed;
	z-index: 1;
	width: 500px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* .moving-cask {
    width: 27%;
}

.moving-cask {
    z-index: 1;
    left: 33%;
    width: 27%;
} */

.site-header+.asset>div:first-of-type {
	padding-top: 117px;
}

.page-template-bullions .site-header+.asset .about-asset {
	padding-top: 200px;
}

.page-template-casks .asset::before,
.page-template-bullions .asset::before {
	content: "";
	display: block;
	width: 100%;
	height: 117px;
	background-color: #000;
	position: absolute;
}

.asset-header {
	text-align: center;
}

.asset-header h1 {
	font-size: 200px;
	letter-spacing: 30px;
	margin-top: 40px;
	line-height: 0.8;
}

.asset-header .wrap {
	position: relative;
	max-width: 500px;
	margin: -175px auto 0;
	z-index: 1;
}

.page-id-201 .asset-header .wrap {
	margin-top: -300px;
}

.asset-header img.drink {
	position: absolute;
	bottom: 0;
	right: 0;
	max-height: 39%;
}

.page-id-201 .asset-header img.drink {
	max-height: 33%;
	bottom: 7%;
}

.about-asset {
	padding: 50px 0;
}

.asset .about-asset .asset-info {
	width: 32%;
}

.page-template-bullions .about-asset .asset-info {
	width: 32%;
}

.about-asset .asset-info h1 {
	max-width: 300px;
	margin-bottom: 20px;
}

.about-asset img {
	width: 35%;
}

.page-template-bullions .about-asset img {
	width: 33%;
}

.about-asset .asset-content {
	width: 32%;
}

.page-template-bullions .about-asset .asset-content {
	width: 30%;
}

.about-asset .asset-content h3 {
	color: var(--color-white);
	text-transform: none;
	font-size: 21px;
	line-height: 1.2;
	max-width: 340px;
}

.asset-tabs {
	padding: 60px 0 100px;
	min-height: 600px;
}

.asset-tabs .max-width {
	position: relative;
}

.tab-controls {
	width: 51%;
	float: right;
}

.tab-controls .tab-control {
	font-family: "Open Sans", sans-serif;
	background-color: transparent;
	padding: 0;
	border: none;
	color: #747370;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.2px;
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
}

.tab-controls .tab-control::after {
	content: "";
	display: block;
	height: 1.5px;
	width: 100%;
	background-color: transparent;
	margin-top: 5px;
	margin-bottom: 3px;
	transition: var(--transition);
}

.tab-controls .tab-control:hover {
	color: var(--color-white);
}

.tab-controls .tab-control:hover::after {
	background-color: var(--color-white);
}

.tab-controls .tab-control.active {
	color: var(--color-gold);
	font-size: 16px;
}

.tab-controls .tab-control.active::after {
	background-color: var(--color-gold);
}

.tab-controls .tab-control:not(:last-child) {
	margin-right: 9px;
}

.tab-panel {
	display: none;
	width: 100%;
	align-items: flex-start;
}

.tab-panel.active {
	display: flex;
}

.tab-image {
	width: 46%;
	display: flex;
	flex-wrap: wrap;
	position: relative;
}

.tab-image img:first-child {
	width: 52%;
}

.tab-image img:last-child {
	width: 70%;
	position: absolute;
	bottom: -10%;
	right: 0;
}

.page-template-bullions .tab-image img:last-child {
	bottom: -25%;
	right: 5%;
}

.tab-content {
	width: 51%;
	margin-top: 5px;
}

.tab-content h2 {
	max-width: 475px;
}

.tab-content ul,
.tab-content ol {
    font-size: 14px;
    color: white;
    padding-left: 10px;
    margin-left: 10px;
}

.tab-content a {
	color: var(--color-white);
	font-weight: 600;
	text-decoration: none;
}

.page-template-bullions .tab-content h2 {
	max-width: unset;
}

#tab-next {
	border: none;
	padding: 0;
	background-color: transparent;
	position: absolute;
	right: 30px;
	bottom: -55px;
	cursor: pointer;
}

#tab-next::before {
	font-family: "Open Sans", sans-serif;
	content: "Read More";
	display: block;
	color: var(--color-gold);
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 0.5px;
	font-size: 9px;
	margin-bottom: 7px;
}

.asset-benefits {
	position: relative;
	padding: 120px 0;
	margin-bottom: -3px;
	position: relative;
	z-index: 2;
}

.asset-benefits .content-blocks .content-block {
	margin-bottom: 3%;
	padding: 50px;
}

.asset-benefits .content-blocks .content-block:not(.col-4):nth-last-child(1):nth-child(3n + 1) {
    width: 100%;
}

.asset-benefits .content-blocks .content-block.col-4 {
	width: 23.5%;
	padding: 30px;
}

.asset-benefits .market-value {
	background-color: var(--color-gold);
}

.asset-benefits .market-value .gd-button.gold {
	border-color: var(--color-white);
}

.asset-benefits .market-value .gd-button.gold:hover {
	border-color: var(--color-white);
	background-color: var(--color-white);
	color: var(--color-gold);
}

.page-template-bullions .benefits-wrap {
	max-width: unset;
}

.page-template-bullions .benefits-wrap h2+div {
	max-width: 800px;
	margin: 0 auto;
}

.story {
	position: relative;
	padding: 120px 0;
}

.story .diamond-line.one {
	bottom: auto;
	top: -45px;
	z-index: 17;
}

.story-wrap {
	max-width: 535px;
	margin-bottom: 60px;
}

.page-template-casks .about-content-row .image-left,
.page-template-bullions .about-content-row .image-left {
	width: 25%;
}

.page-template-casks .about-content-row .image-left img,
.page-template-bullions .about-content-row .image-left img {
	margin: 0;
}

.page-template-casks .about-content-row .content-right,
.page-template-bullions .about-content-row .content-right {
	width: 64%;
}

.page-template-casks .about-content-row .content-right h2,
.page-template-bullions .about-content-row .content-right h2 {
	max-width: unset;
}

.related-casks .custom-related-products:last-child {
	margin-bottom: 55px;
}

.page-template-casks .custom-related-products {
	padding-top: 100px;
}

.custom-related-products.distillery.col-3 .related-content {
	width: calc(100% - 200px);
}

.custom-related-products.distillery.col-3 .related-buttons {
	width: 115px;
}

.custom-related-products.distillery.col-3 .related-grid {
	grid-template-columns: repeat(auto-fill, calc(25% - 25px));
}

.custom-related-products.distillery .related-grid .insight-post.distillery {
	width: 100%;
}

.page-id-199 .about-content-row {
	display: none;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.cta-blocks {
	position: relative;
	padding: 100px 0 80px;
	margin-bottom: 80px;
	overflow: hidden;
}

body.page-template-bullions .cta-blocks,
body.page-template-casks .cta-blocks {
	margin-bottom: 0px;
	padding: 100px 0 0px;
}

.cta-blocks .parallax-bg {
	height: calc(100% + 2px);
	bottom: -2px;
}

.cta-blocks.about {
	margin-bottom: 40px;
}

.cta-blocks h2 {
	text-align: center;
	margin-bottom: 40px;
}

.cta-blocks .feature {
	width: 21%;
	position: relative;
	padding-bottom: 60px;
}

.cta-blocks .feature .image-wrap {
	overflow: hidden;
}

.cta-blocks .feature .image-wrap img {
	width: calc(100% + 4px);
	max-width: unset;
	margin-left: -2px;
	margin-top: -2px;
	height: 150px;
	object-fit: cover;
	object-position: center;
}

.cta-blocks .feature h3 {
	line-height: 1.2;
	color: var(--color-white);
	text-transform: none;
	font-size: 20px;
	margin: 12px 0 0;
}

.cta-blocks.about .feature h3 {
	color: var(--color-black);
}

.cta-blocks .feature p {
	margin: 5px 0 0;
}

.cta-blocks .feature .gd-button {
	position: absolute;
	bottom: 0;
	font-size: 13px;
}

.ctas {
	padding: 0 0 110px;
}

.home .ctas,
.page-id-210 .ctas,
.page-id-186 .ctas {
	padding-top: 70px;
}

.ctas .max-width {
	position: relative;
}

.ctas .cta-content {
	text-align: center;
	width: 53%;
	max-width: 585px;
	margin: 0 auto;
	position: absolute;
	left: 0;
	right: 0;
	margin-top: 30px;
}

.ctas .cta-content h2 strong {
	color: var(--color-gold);
}

.ctas .cta-content p {
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

.ctas .cta {
	width: 40%;
}

.ctas .cta img {
	margin-bottom: 35px;
	display: block;
}

.ctas .cta h2 {
	font-size: 29px;
	margin-bottom: 0;
	max-width: 390px;
}

.ctas .cta p {
	max-width: 435px;
	margin: 5px 0;
}

.ctas .cta .gd-button {
	margin-top: 22px;
}

.ctas .cta.craft {
	text-align: right;
}

.ctas .cta.craft img,
.ctas .cta.craft h2,
.ctas .cta.craft p {
	margin-left: auto;
}

.ctas .cta.wholesale+.diamond-line {
	height: 265px;
	position: absolute;
	left: 50%;
	bottom: 0;
}

.site-footer {
	background-color: var(--color-black);
}

.site-info {
	padding: 80px 0 60px;
	position: relative;
	background-color: var(--color-black);
}

.site-info .max-width {
	z-index: 2;
	position: relative;
}

.site-info p,
.site-info a {
	color: var(--color-white);
	text-decoration: none;
}

.site-info p strong {
	font-weight: 600;
}

.site-info img {
	max-width: 160px;
	margin: -7px 0 0 auto;
}

.site-info .menu {
	margin: 0;
	list-style: none;
	padding: 0;
}

.site-info .menu a {
	text-transform: uppercase;
	font-size: 15px;
	font-weight: 300;
	display: block;
	margin: 5px 0;
	transition: var(--transition);
}

.site-info .menu a:first-child {
	margin-top: 0;
}

.site-info .menu a:hover {
	opacity: 0.7;
}

#footer-menu-1 {
	column-count: 2;
	column-gap: 35px;
}

.footer-col {
	width: 19%;
}

.footer-col:first-child {
	width: 20%;
	margin-right: 2%;
}

.footer-col:last-child {
	text-align: right;
}

.footer-left p {
	color: var(--color-white);
	max-width: 500px;
}

#footer-menu {
	list-style: none;
	max-width: 300px;
	padding: 0;
	margin: 0;
	-webkit-column-gap: 20px;
	-moz-column-gap: 20px;
	column-gap: 20px;
	-webkit-column-count: 2;
	-moz-column-count: 2;
	column-count: 2;
}

#footer-menu a {
	color: var(--color-white);
	text-decoration: none;
	padding: 3px 0;
	display: block;
	font-size: 14px;
	font-weight: 300;
}

.site-info .footer-col .gd-button {
	width: 100%;
	text-align: center;
	margin: 5px 0;
}

.sub-footer {
	padding: 15px 0;
	background-color: var(--color-black);
	position: relative;
	border-top: 1px solid var(--color-gold);
}

.sub-footer .max-width {
	position: relative;
	z-index: 2;
}

#footer-sub-menu {
	margin: 0;
	list-style: none;
	padding: 0;
	display: flex;
}

#footer-sub-menu a {
	color: var(--color-white);
	text-decoration: none;
	font-size: 15px;
	font-weight: 400;
	display: block;
}

#footer-sub-menu li:not(:last-child) a {
	margin-right: 42px;
}

.coffee-foot a {
	color: var(--color-white);
	text-decoration: none;
	font-size: 15px;
	font-weight: 400;
	margin-right: 10px;
}

/*--------------------------------------------------------------
# Quick Order
--------------------------------------------------------------*/

#wqo-products-table {
	border-collapse: collapse;
	margin-top: 25px;
}

#wqo-products-table th {
	background-color: var(--color-black);
	color: var(--color-white);
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 1px;
	padding: 15px;
}

#wqo-products-table td {
	padding: 15px;
	font-size: 12px;
}

#wqo-products-table td p {
	margin: 0;
	font-size: 12px;
	display: block;
}

#wqo-products-table .product-attributes {
	justify-content: flex-start;
	min-width: 200px;
}

#wqo-products-table .product-attributes li {
	font-size: 10.5px;
	margin-bottom: 4px;
	width: 50%;
	line-height: 1.2;
}

#wqo-products-table .product-attributes li strong {
	font-size: 10.5px;
}

#wqo-products-table .product-attributes .diamond-line {
	display: none;
}

#wqo-products-table .product-attributes li a {
	color: var(--color-gold);
	text-decoration: none;
	font-weight: 400;
}

#wqo-products-table td:nth-child(1) {
	font-weight: 600;
}

#wqo-products-table .wqo-qty {
	outline: none;
	border-radius: 0;
	font-size: 12px;
	text-align: center;
	max-width: 70px;
	padding: 10px 5px;
}

button.wqo-add-to-cart {
	font-family: "Open Sans", sans-serif;
	background-color: var(--color-gold);
	color: var(--color-white);
	border: 1.5px solid var(--color-gold);
	text-transform: uppercase;
	font-weight: 600;
	font-size: 13px;
	border-radius: 0;
	line-height: 1.2;
	width: 114px;
	padding: 10px;
	cursor: pointer;
	transition: var(--transition);
}

button.wqo-add-to-cart:hover {
	background-color: transparent;
	border-color: var(--color-gold);
	color: var(--color-gold);
}

#wqo-pagination {
	margin-top: 35px;
}

.wqo-notice {
	display: block;
	text-align: center;
	text-transform: uppercase;
	margin-top: 5px;
}

/*--------------------------------------------------------------
# My Account
--------------------------------------------------------------*/

#post-18 {
	padding-top: 50px;
}

.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
	border-radius: 0;
}

.woocommerce-account .entry-title {
	margin-bottom: 25px;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
	width: 22%;
	text-align: center;
}

.woocommerce-account .woocommerce-MyAccount-content {
	float: right;
	width: 74%;
}

.woocommerce-account {
	#primary {
		margin-top: 160px;
	}
	.woocommerce h2 {
		font-size: 28px;
	}
	.woocommerce-MyAccount-navigation {
		ul {
			padding: 0;
			margin: 0;
			list-style: none;
		}
		li {
			&:not(:last-child) {
				margin-bottom: 5px;
			}
			a {
				font-family: "Open Sans", sans-serif;
				display: inline-block;
				text-decoration: none;
				width: 100%;
				background-color: transparent;
				border: 1.5px solid;
				padding: 11px 18px;
				font-size: 15px;
				font-weight: 600;
				text-shadow: none;
				box-shadow: none;
				cursor: pointer;
				text-transform: uppercase;
				letter-spacing: 1px;
				color: var(--color-white);
				border-color: var(--color-gold);
				background-color: var(--color-gold);
				transition: var(--transition);
				&:hover {
					color: var(--color-gold);
					background-color: transparent;
				}
			}
		}
	}
	.woocommerce-MyAccount-content {
		p {
			a {
				color: var(--color-gold);
				font-weight: 500;
			}
		}
		.woocommerce-Address {
			border: 1px solid var(--color-gold);
			padding: 10px 20px;
			margin-bottom: 20px;
			h2 {
				font-size: 28px;
			}
			a {
				color: var(--color-gold);
			}
		}
	}
	form {
		h2 {
			font-size: 28px;
		}
		.form-row {
			input {
				outline: none !important;
				border-radius: 0 !important;
				padding: 12px 20px !important;
				font-weight: 300 !important;
				background-color: var(--color-white) !important;
			}
			.select2-container .select2-dropdown,
			.select2-container .select2-selection {
				border-radius: 0 !important;
			}
		}
	}
	button {
		border-radius: 0 !important;
		border: 1.5px solid !important;
		color: var(--color-white) !important;
		border-color: var(--color-gold) !important;
		background-color: var(--color-gold) !important;
		text-transform: uppercase;
		font-family: "Open Sans", sans-serif;
		transition: var(--transition);
		&:hover {
			color: var(--color-gold) !important;
			background-color: transparent !important;
		}
	}
	.woocommerce-LostPassword a,
	.woocommerce-register-link a {
		color: var(--color-gold);
		font-weight: 500;
	}
}

.woocommerce-account .addresses .title .edit {
	float: none;
	margin-bottom: 10px;
	display: block;
}

.woocommerce-info {
	border-top-color: var(--color-gold);
	padding: 1em 2em 1em 3.5em;
	background-color: var(--color-black);
	color: var(--color-white);
	&::before {
		color: var(--color-gold);
	}
	.wc-forward.button {
		border-radius: 0 !important;
		border: 1.5px solid !important;
		color: var(--color-white) !important;
		border-color: var(--color-gold) !important;
		background-color: var(--color-gold) !important;
		&:hover {
			background-color: transparent !important;
		}
	}
}

.woocommerce .wc-backward.button {
	border-radius: 0 !important;
	border: 1.5px solid !important;
	color: var(--color-white) !important;
	border-color: var(--color-gold) !important;
	background-color: var(--color-gold) !important;
}

.woocommerce .wc-backward.button:hover {
	color: var(--color-gold) !important;
	background-color: transparent !important;
}

form.woocommerce-form-register>a {
	display: none;
}

form.woocommerce-form-register a.woocommerce-privacy-policy-link {
	color: var(--color-gold);
}

.woocommerce-MyAccount-content .woocommerce-orders-table a {
	color: var(--color-white);
	text-decoration: none;
}

.woocommerce-orders-table__cell .woocommerce-button.button,
.order-again a.button,
.woocommerce-MyAccount-content a.button {
	border: 1.5px solid var(--color-gold);
	border-radius: 0;
	text-transform: uppercase;
	background-color: var(--color-gold);
	color: var(--color-white) !important;
	font-weight: 600 !important;
	transition: var(--transition);
}

.woocommerce-orders-table__cell .woocommerce-button.button:hover,
.order-again a.button:hover,
.woocommerce-MyAccount-content a.button:hover {
	border-color: var(--color-gold);
	background-color: var(--color-white);
	color: var(--color-gold) !important;
}

.woocommerce table.shop_table td a {
	color: var(--color-gold);
	text-decoration: none;
}

.woocommerce .woocommerce-customer-details address {
	border-radius: 0;
	padding: 15px;
}

.p-Select .p-Select-select {
	color: #cbcbcb;
}

/*--------------------------------------------------------------
# Cart
--------------------------------------------------------------*/

.woocommerce-cart {
	#primary {
		margin-top: 160px;
	}
	.woocommerce h2 {
		font-size: 28px;
	}
	.woocommerce-cart-form {
		a {
			color: var(--color-gold);
			font-weight: 500;
			text-decoration: none;
		}
		.coupon {
			input {
				min-width: 160px;
			}
		}
		button {
			border-radius: 0 !important;
			border: 1.5px solid !important;
			color: var(--color-white) !important;
			border-color: var(--color-gold) !important;
			background-color: var(--color-gold) !important;
			text-transform: uppercase;
			letter-spacing: 0.2px;
			font-family: "Open Sans", sans-serif;
			font-size: 13px;
			padding: 11px;
			transition: var(--transition);
			&:hover {
				background-color: transparent !important;
				color: var(--color-gold) !important;
			}
		}
	}
	.cart-collaterals {
		a.checkout-button {
			background-color: var(--color-gold);
			color: #ffffff;
			text-transform: uppercase;
			text-align: center;
			font-weight: 600;
			border-radius: 0;
			font-size: 16px;
			cursor: pointer;
			transition: all 0.35s ease 0s;

			&:hover {
				background-color: var(--color-black);
			}
		}
		.dram-coin-table {
			margin-bottom: 50px !important;
		}
	}
	.wp-block-woocommerce-cart {
		display: none;
	}
}

.woocommerce-message {
	outline: none;
	border-top-color: var(--color-gold);
}

.woocommerce-message::before {
	color: var(--color-gold);
}

.woocommerce-message .button {
	background-color: var(--color-gold) !important;
	color: var(--color-white) !important;
	text-transform: uppercase;
	border-radius: 0 !important;
	font-size: 13px !important;
	padding: 12px 15px !important;
}

.woocommerce-cart .entry-title {
	margin-bottom: 25px;
}

.woocommerce table.shop_table {
	border-collapse: collapse;
	border-radius: 0;
}

.woocommerce table.shop_table th,
.dram-coin-table th {
	background-color: var(--color-black);
	color: var(--color-white);
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 1px;
}

.dram-coin-table {
	border-collapse: collapse !important;
}

#coupon_code {
	text-transform: uppercase;
	font-size: 12px;
	border-radius: 0;
	padding: 9px;
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/

#coffeerm-button {
	background-color: transparent;
	top: 6px;
	right: 25px;
	display: none;
	position: absolute;
	bottom: 0;
	transition: var(--transition);
}

#coffeerm-button span {
	width: 33px;
	background-color: var(--color-white);
}

#responsive-menu {
	display: none;
}

#responsive-menu-items {
	display: none;
	max-width: 200px;
}

ul.responsive-menu-items {
	background-color: var(--color-black);
	padding: 0;
	right: 0;
	left: auto;
	top: 80px;
	-webkit-transform: translateX(100%);
	-moz-transform: translateX(100%);
	-ms-transform: translateX(100%);
	-o-transform: translateX(100%);
	transform: translateX(100%);
}

ul.responsive-menu-items li {
	list-style: none;
	position: relative;
	margin: 0;
	text-align: left;
}

ul.responsive-menu-items a {
	text-align: left;
	text-decoration: none;
	padding: 9px 28px;
	display: block;
	border: none;
	margin: 0;
	color: var(--color-white);
	transition: 0.35s ease all;
}

ul.responsive-menu-items a::after {
	display: none;
}

ul.responsive-menu-items>li>a.active,
ul.responsive-menu-items>li>a:hover {
	background-color: var(--color-gold);
	color: var(--color-white);
}

ul.responsive-menu-items li.menu-item-has-children::after {
	display: none;
}

ul.responsive-menu-items li ul.sub-menu {
	padding: 8px 25px;
}

@media (max-width: 1380px) {
	.tier-nav .slick-slide {
		font-size: 18px;
		padding: 10px 40px;
	}
	.tier-nav .slick-slide::before {
		height: 10px;
	}
	.tier-nav .slick-slide.slick-current::before {
		top: -10px;
	}
	.tiers-carousel .slick-slide .max-width {
		padding-right: 75px;
	}
}

@media (max-width: 1280px) {
	.about-content-row .image-left img {
		margin-left: 0;
	}
	.panel-content {
		left: 30px;
	}
	.panel-2 .panel-content {
		right: 30px;
	}
	.panel-content p {
		max-width: 260px;
	}
}

@media (max-width: 1200px) {
	#coffeerm-button,
	#responsive-menu-items,
	.responsive-menu-items,
	#responsive-menu {
		display: block !important;
	}
	#primary-menu,
	.top-menu {
		display: none;
	}
	#masthead {
		height: 80px;
	}
	.home #masthead.scroll {
		height: 80px;
	}
	.single-post-container {
		margin-top: 145px;
	}
	.woocommerce-account #primary {
		margin-top: 100px;
	}
	.steps p strong {
		font-size: 18px;
	}
	.terms-conditions .max-width {
		margin: 0 30px;
	}
	.tiers .tier-content h1 {
		font-size: 50px;
	}
	.tier-content .gd-button {
		font-size: 12px;
	}
	.assets .asset img {
		height: 310px;
		top: 40px;
	}
	#bullions .gd-button {
		font-size: 13px;
	}
	.bullions .bullion .gd-buttons {
		margin-top: 30px;
	}
	.page-template-casks .asset::before, 
	.page-template-bullions .asset::before {
		height: 80px;
	}
	.site-header + .asset > div:first-of-type {
		padding-top: 80px;
	}
	.asset-header .wrap {
		margin: -125px auto 0;
	}
	.page-id-201 .asset-header .wrap {
		margin-top: -230px;
	}
	.asset-header img.drink {
		opacity: 1 !important;
	}
	.error-404 {
	    margin-top: 145px;
	}
}

@media (max-width: 1199px) {
	img.cask {
		visibility: visible;
	}
	.moving-cask {
		display: none;
		visibility: hidden;
	}
}

@media (max-width: 1050px) {
	#casks {
		height: auto;
		.overlay {
			display: none;
		}
		.panel {
			position: relative;
			padding: 65px 30px;
			height: auto;
			&.panel-2 {
				opacity: 1;
			}
			h1 {
				font-size: 100px;
				letter-spacing: 10px;
				position: relative;
			}
			.image {
				position: relative;
			}
			.panel-content {
				position: relative;
				bottom: auto;
				left: auto;
				text-align: center;
        		margin: 0 auto;
				p {
					max-width: 400px;
  					margin-left: auto;
  					margin-right: auto;
				}
			}
		}
	}
	.carousel .panel h1 {
		top: auto;
	}
	.panel-2 .panel-content {
		right: 0;
	}
	.carousel .panel .image {
		top: auto;
	}
	.asset-benefits .content-blocks .content-block.col-4 {
		width: 48.5%;
	}
}

@media (max-width: 1023px) {
	.footer-col {
		width: 32%;
	}
	.footer-col:first-child {
		width: 30%;
		margin-right: 5%;
	}
	.footer-col:last-child {
		display: none;
	}
	.footer-col:nth-child(4) {
		width: 440px;
		margin-top: 25px;
		display: flex;
		justify-content: space-between;
	}
	.site-info .footer-col .gd-button:first-child {
		margin-right: 20px;
	}
	.about .about-content .gd-buttons {
		margin-top: 30px;
	}
	.content-blocks .content-block {
		padding: 35px 35px 125px;
	}
	.content-blocks .content-block .gd-button {
		bottom: 40px;
		width: calc(100% - 70px);
	}
	.tiers {
		height: auto;
		width: 100%;
		padding: 50px 0;
	}
	.tiers .tier-content {
		width: 100%;
		margin-bottom: 50px;
	}
	.tiers .tier-content .tier-info {
		margin-top: 30px;
	}
	.tiers .tier-content .tier-info h2,
	.tiers .tier-content .tier-info p {
		max-width: unset;
	}
	.tiers .tier-1 .tier-image {
		width: 55%;
		margin-left: 0;
	}
	.tiers .tier-2 .tier-image {
		width: 55%;
		margin-left: 0;
		top: 0;
	}
	.tiers .tier-3 .tier-image {
		width: 55%;
		margin-left: 0;
	}
	.tiers .tier-image img {
		max-height: 500px;
		margin: 0 auto;
	}
	.tiers .tier-features {
		width: calc(42% - 50px) !important;
		margin-right: 50px;
	}
	.tiers .tier-features .diamond-line {
		display: none;
	}
	.tiers-carousel .slick-next {
		right: 30px;
		bottom: 0;
	}
	.tiers .tier-features p {
		max-width: unset;
		margin: 20px 0 8px auto !important;
	}
	.tiers .tier-features {
		margin-top: 0 !important;
	}
	.tier-nav {
		display: none;
	}
	.tiers-carousel .slick-slide .max-width {
		padding-right: 30px;
	}
	.assets .max-width > div {
		width: 100%;
	}
	.assets .max-width > div:first-child {
		margin-bottom: 75px;
	}
	.assets .assets-content .gd-button {
		margin-top: 12px;
		margin-bottom: 18px;
	}
	.bullions:not(.asset) .max-width > div {
		width: 100%;
		text-align: center;
	}
	.bullions .bullion p {
		max-width: 500px;
		margin-left: auto;
		margin-right: auto;
	}
	.bullions:not(.asset) .max-width .bullions-image {
		margin: 30px auto 10px;
	}
	.insights .left {
		width: 100%;
		margin-bottom: 40px;
	}
	.insights .right {
		width: 100%;
	}
	.insights {
		padding: 70px 0;
	}
	.asset-header h1 {
		font-size: 100px;
		margin-top: 60px;
	}
	.asset-header .wrap {
		margin: -70px auto 0;
	}
	.page-id-201 .asset-header .wrap {
		margin-top: -80px;
	}
	.about-asset .asset-info h1 {
		font-size: 50px;
	}
	.custom-related-products.distillery.col-3 .related-grid {
		grid-template-columns: repeat(auto-fill, calc(50% - 25px));
	}
}

@media (max-width: 950px) {
	.about .about-content {
		width: 100%;
		order: 1;
		margin-bottom: 50px;
	}
	.about .about-image {
		width: 46%;
		order: 2;
	}
	#story .max-width {
		max-width: 650px;
	}
}

@media (max-width: 900px) {
	
	.shop-sidebar {
		width: 100%;
		margin-bottom: 20px;
		.dramcoin-promo.gold {
			display: none;
		}
	}
	.shop-wrap {
		width: 100%;
	}
	.cta-blocks .feature {
		width: 45%;
		margin-bottom: 40px;
	}
	.ctas .features .diamond-line {
		margin-bottom: 40px;
	}
	.ctas .features .diamond-line:nth-child(4) {
		display: none;
	}
	.cta-blocks .diamond-line {
		margin-bottom: 40px;
	}
	.cta-blocks .diamond-line:nth-child(4) {
		display: none;
	}
	.ctas .cta-content {
		max-width: unset;
		position: relative;
		width: 100%;
		margin-top: 0;
		width: 100%;
		margin-bottom: 35px;
	}
	.ctas .cta,
	.ctas .cta.craft {
		width: 46%;
		text-align: center;
	}
	.ctas .cta img {
		margin-left: auto;
		margin-right: auto;
	}
	.secondary-banner+.max-width>#primary {
		margin: 60px 0;
	}
	.site-info {
		padding: 50px 0;
	}
	.related-grid {
		width: 100%;
		margin-bottom: 30px;
	}
	.related-product-wrap .dramcoin-promo {
		width: 100%;
	}
	.related-product-wrap .dramcoin-promo h2 {
		max-width: unset;
	}
	.related-product-wrap .dramcoin-promo .gd-button {
		margin: 35px;
		width: auto !important;
		position: relative !important;
		margin: 10px 0 0;
	}
	.single-product #primary {
		margin: 60px 0 0;
	}
	.contact-details .steps .step {
		width: 48%;
	}
	.contact-details .steps .step:nth-child(1) {
		width: 100%;
	}
	.contact-details .steps .diamond-line {
		display: none;
	}
	#insights-grid,
	#distilleries-grid {
		grid-template-columns: repeat(auto-fill, calc(50% - 20px));
	}
	.market-value.horizontal .gd-button {
		display: none;
	}
	.market-value.horizontal .wrap {
		width: 100%;
	}
	.market-value.horizontal .trends .trend:first-child .diamond-line {
		display: none;
	}
	.market-value.horizontal .trends {
		width: calc(100% + 23px);
		margin: 0 -23px;
	}
	.market-value.horizontal .trends .trend {
		width: 25%;
		padding: 0 25px;
	}
	.distillery-main {
		width: 100%;
		margin-bottom: 40px;
	}
	.distillery-sidebar {
		width: 100%;
	}
	.sidebar-section.logo .logo {
		max-width: 400px;
		max-height: 400px;
	}
	.custom-related-products.distillery .related-grid {
		grid-template-columns: repeat(auto-fill, calc(50% - 25px));
	}
	.custom-related-products.distillery .dramcoin-promo .wrap {
		width: 100%;
		margin: 0 0 30px;
	}
	.custom-related-products.distillery .dramcoin-promo .buttons {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.custom-related-products.distillery .dramcoin-promo .buttons .gd-button {
		width: 49% !important;
	}
	.custom-related-products.distillery .dramcoin-promo .buttons .gd-button:first-child {
		margin-bottom: 9;
	}
	.post-main-content {
		width: 100%;
	}
	.post-sidebar {
		width: 100%;
		margin-top: 30px;
	}
	.sidebar-section.table-of-contents {
		display: none;
	}
	.woocommerce-account .woocommerce-MyAccount-navigation {
		width: 100%;
		text-align: center;
		float: none;
	}
	.woocommerce-account .woocommerce-MyAccount-navigation ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}
	.woocommerce-account .woocommerce-MyAccount-navigation li a {
		padding: 8px 14px;
		font-size: 13px;
	}
	.woocommerce-account .woocommerce-MyAccount-navigation li:not(:last-child) {
		margin-right: 5px;
	}
	.woocommerce-account .woocommerce-MyAccount-content {
		float: none;
		width: 100%;
		margin-top: 40px;
	}
	.about-content-row .image-left {
		width: 37%;
	}
	.about-content-row .content-right .gd-buttons {
		margin-top: 30px;
	}
	.benefits .steps .step {
		width: 30%;
		margin-bottom: 30px;
	}
	.benefits .steps .diamond-line {
		margin-bottom: 30px;
	}
	.benefits .steps .diamond-line:nth-child(6) {
		display: none;
	}
	.terms-conditions .head-wrap {
		flex-wrap: wrap;
		margin-bottom: 30px;
	}
	.terms-conditions h2 {
		width: 100%;
		margin-bottom: 10px;
	}
	.terms-conditions p,
	.terms-conditions ol {
		font-size: 16px;
	}
	.tier-features .feature {
		width: 48%;
		margin-bottom: 40px;
	}
	.tier-features .diamond-line {
		display: none;
	}
	.tier-features .feature .image-wrap img {
		height: 220px;
	}
	.content-blocks .content-block {
		width: 100%;
		margin-bottom: 20px;
	}
	.team-members-carousel {
		margin: 50px 0 0;
	}
	.team-members-carousel .team-member.slick-current:not(.slick-cloned) {
		transform: scale(1);
	}
	.team-members-carousel .team-member.slick-current:not(.slick-cloned) img {
		width: 40%;
		height: 335px;
	}
	.team-members-carousel .team-member.slick-current:not(.slick-cloned) .member-info p {
		font-size: 23px;
	}
	.team-members-carousel .team-member.slick-current:not(.slick-cloned) .member-info h3 {
		font-size: 18px;
	}
	.team-members-carousel .team-member .gd-button {
		font-size: 13px;
		padding: 7px 12px 8px;
	}
	.team-members-carousel .team-member .member-content p {
		font-size: 14px;
	}
	.team-members-carousel .slick-prev,
	.team-members-carousel .slick-next {
		bottom: auto;
		top: -35px;
	}
	.team-members-carousel .slick-prev {
		left: 0;
	}
	.team-members-carousel .slick-next {
		right: 0;
	}
	.tiers .tier-features .feature {
		margin-bottom: 0;
	}
	.asset-benefits .content-blocks .content-block {
		margin-bottom: 12px;
		padding: 35px;
	}
	#product-filters .filter-section:nth-child(2) {
		margin-top: 20px;
	}
	#clear-filters {
		text-align: left;
		padding: 0;
		margin-bottom: 25px;
	}
	#product-filters .gd-button {
		display: none !important;
	}
}

@media (max-width: 899px) {
	.redeem-wrap {
		width: 100%;
		margin-bottom: 40px;
	}
	.redeem .rules {
		padding: 35px;
		width: 100%;
	}
	.asset .about-asset .asset-info {
		width: 100%;
		text-align: center;
		margin-bottom: 35px;
	}
	.about-asset .asset-info h1 {
		margin-left: auto;
		margin-right: auto;
	}
	.about-asset img {
		width: 45%;
	}
	.about-asset .asset-content {
		width: 50% !important;
	}
	.tab-controls {
		width: 100%;
		float: none;
		margin-bottom: 20px;
	}
	.tab-image {
		width: 100%;
		order: 2;
		margin-top: 45px;
		max-width: 500px;
		margin-left: auto;
		margin-right: auto;
		position: relative;
  		right: -30px;
	}
	.tab-content {
		width: 100%;
		margin-top: 0;
	}
	.asset-tabs {
		padding: 20px 0 100px;
		min-height: 600px;
		text-align: center;
	}
	.tab-content h2 {
		max-width: unset;
	}
}

@media (max-width: 767px) {
	.steps .step {
		width: 45%;
		margin-bottom: 20px;
	}
	.steps .diamond-line {
		display: none;
	}
	.product-wrap {
		grid-template-columns: repeat(auto-fill, 46%);
	}
	.product-wrap span.date-stamp {
		right: 28%;
	}
	.sub-footer .max-width {
		display: block;
		text-align: center;
	}
	#footer-sub-menu {
		justify-content: center;
		margin-bottom: 15px;
	}
	.coffee-foot {
		justify-content: center;
	}
	.shop-banner {
		padding: 90px 0;
	}
	.single-product-banner h1 {
		font-size: 200px;
		margin: 25px auto 0;
	}
	.woocommerce div.product div.images.woocommerce-product-gallery {
		width: 100%;
		max-width: 400px;
		margin: 0 auto;
	}
	.gd-cat-thumb {
		left: auto;
		right: 30px;
	}
	.custom-related-products .wrap {
		margin-bottom: 30px;
		display: block;
	}
	.related-content {
		width: 100%;
		margin-bottom: 30px;
	}
	.related-buttons {
		width: 100%;
		text-align: left;
	}
	.custom-related-products {
		padding-top: 20px;
	}
	.ctas {
		padding: 0 0 75px;
	}
	.cta-blocks {
		padding: 70px 0 35px;
		margin-bottom: 65px;
	}
	.contact-forms {
		padding: 65px 0;
	}
	.contact-details {
		padding: 0 0 45px;
	}
	.insights-grid-wrap,
	.distilleries-grid-wrap {
		margin: 60px 0 50px;
	}
	#primary {
		margin: 0 0 70px;
	}
	.insights-filter .filter-wrap,
	.distilleries-filter .filter-wrap {
		flex-wrap: wrap;
	}
	.insights-filter #asset-type-filter,
	.insights-filter .search-wrap,
	#asset-type-filter,
	#region-filter,
	.filter-wrap .search-wrap {
		width: 100%;
		margin-bottom: 12px;
	}
	.market-value.horizontal .trends {
		width: 100%;
		margin: 0;
	}
	.market-value.horizontal .trends .trend {
		width: 100%;
		padding: 0;
	}
	.market-value.horizontal .trends .trend .diamond-line {
		display: none;
	}
	.market-value {
		padding: 35px;
	}
	.market-value h2 {
		margin-bottom: 10px;
	}
	.sidebar-section.find-us {
		padding: 35px;
	}
	.custom-related-products.distillery .dramcoin-promo .buttons .gd-button {
		width: 100% !important;
	}
	.custom-related-products.distillery .dramcoin-promo .buttons .gd-button:first-child {
		margin-bottom: 12px;
	}
	.custom-related-products.distillery .dramcoin-promo {
		padding: 35px;
	}
	.custom-related-products.distillery {
		padding-top: 50px;
	}
	.sidebar-section.related-posts {
		padding: 35px;
	}
	.about-content-row .image-left {
		width: 100%;
		margin-bottom: 40px;
	}
	.about-content-row .image-left img {
		margin: 0 auto;
		max-height: 400px;
	}
	.page-id-210 .about-content-row .image-left img {
		left: -30px;
		position: relative;
	}
	.about-content-row .content-right {
		width: 100%;
		text-align: center;
	}
	.about-content-row .content-right h2 {
		margin-left: auto;
		margin-right: auto;
	}
	.about-content-row .content-right p {
		max-width: 500px;
		margin-left: auto;
		margin-right: auto;
	}
	.about-content-row {
		padding: 75px 0 100px;
	}
	.benefits {
		padding: 120px 0 55px;
	}
	.trade-form {
		padding: 60px 0 20px !important;
	}
	#gform_wrapper_3 .gform-footer,
	#gform_wrapper_4 .gform-footer,
	#gform_wrapper_6 .gform-footer {
		position: relative;
		bottom: auto;
		right: auto;
		margin-top: 20px;
	}
	body .gform_save_link {
		margin: 0 !important;
	}
	#field_3_26,
	#field_4_26,
	#field_6_26 {
		bottom: -32px;
		right: auto;
		left: 0;
	}
	.benefits .steps .step {
		width: 44%;
	}
	.benefits .steps .diamond-line:nth-child(4),
	.benefits .steps .diamond-line:nth-child(8) {
		display: none;
	}
	.benefits .steps .diamond-line:nth-child(6) {
		display: block;
	}
	.terms-conditions .max-width {
		padding: 35px;
	}
	.redeem {
		margin: 50px 0 0;
	}
	.redeem-wrap .steps .step {
		width: 100%;
	}
	.earn-redeem {
		padding: 120px 0 50px;
	}
	.tier-options .feature {
		width: 48%;
		margin-bottom: 25px;
		text-align: center;
	}
	.tier-options .diamond-line {
		display: none;
	}
	.tier-options span {
		text-align: center;
	}
	.tier-options h3 {
		text-align: center;
		margin-left: auto;
		margin-right: auto;
	}
	.package-options {
		padding: 120px 0 55px;
	}
	.tier-4 {
		padding: 120px 0 55px;
	}
	.craft-form {
		padding: 65px 0;
	}
	.cta-blocks.about {
		margin-bottom: 0;
		padding: 65px 0 45px;
	}
	.journey {
		padding: 120px 0 30px;
	}
	.company {
		padding: 30px 0 65px;
	}
	.meet-the-team {
		padding: 65px 0 0;
	}
	.team-members-carousel .team-member.slick-current:not(.slick-cloned) img {
		height: 250px;
	}
	.meet-the-team .head-wrap .left {
		width: 100%;
	}
	.meet-the-team .head-wrap .right {
		margin-bottom: 25px;
	}
	#casks {
		.panel-content {
			max-width: 500px;
			width: 100%;
			text-align: center !important;
			margin-top: 20px;
			p {
				max-width: unset;
			}
			.gd-buttons a {
				width: 100%;
				&:first-child {
					margin-bottom: 20px;
				}
			}
		}
	}
	.tiers .tier-features {
		margin-right: 0;
	}
	.about.landing {
		padding: 65px 0;
	}
	.assets {
		padding: 80px 0 100px;
	}
	.bullions:not(.asset) {
		padding: 50px 0 100px;
	}
	.about {
		padding: 140px 0 60px;
	}
	.insights {
		padding: 60px 0 65px;
	}
	.about-asset img {
		width: 100%;
		max-width: 400px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 30px;
		display: none;
	}
	.about-asset .asset-content {
		width: 100% !important;
		text-align: center;
	}
	.about-asset .asset-content h3 {
		max-width: unset;
	}
	#tab-next {
		display: none;
	}
	.page-template-casks .about-content-row .image-left, 
	.page-template-bullions .about-content-row .image-left {
		width: 100%;
		margin: 0 auto 35px;
	}
	.page-template-casks .about-content-row .image-left img, 
	.page-template-bullions .about-content-row .image-left img {
		margin: 0 auto;
	}
	.page-template-casks .about-content-row .content-right, 
	.page-template-bullions .about-content-row .content-right {
		width: 100%;
	}
	.story {
		padding: 120px 0 35px;
	}
	.custom-related-products.distillery.col-3 .related-grid {
		margin-bottom: 15px;
	}
	.asset-benefits {
		padding: 70px 0 90px;
	}
	.asset-benefits .content-blocks .content-block.col-4 {
		width: 100%;
	}
	.woocommerce-account #primary {
		margin-top: 80px;
		margin-bottom: 55px;
	}
}

@media (max-width: 660px) {
	.related-grid {
		grid-template-columns: repeat(auto-fill, 100%);
	}
	.related-grid span.date-stamp {
		transform: translateX(-50%);
		right: unset;
		left: 55%;
		top: 25%;
	}
}

@media (max-width: 639px) {
	h1 {
		font-size: 45px;
	}
	h2 {
		font-size: 35px;
	}
	.cta-blocks .feature {
		width: 100%;
	}
	.ctas .features .diamond-line,
	.cta-blocks .diamond-line {
		display: none;
	}
	.ctas .cta,
	.ctas .cta.craft {
		width: 100%;
	}
	.ctas .cta h2,
	.ctas .cta p {
		margin-left: auto;
		margin-right: auto;
	}
	.ctas .cta.wholesale+.diamond-line {
		display: none;
	}
	.ctas .cta.craft {
		margin-top: 50px;
	}
	.cta-blocks .feature .image-wrap img {
		height: 180px;
	}
	.footer-col {
		width: calc(50% - 20px);
	}
	.footer-col:first-child {
		width: 100%;
		margin-right: 0;
		margin-bottom: 22px;
	}
	.footer-col:nth-child(4) {
		width: 100%;
		display: block;
	}
	#footer-sub-menu li:not(:last-child) a {
		margin-right: 10px;
	}
	.products-filters {
		display: block;
		text-align: center;
	}
	.products-per-page,
	.products-sort {
		justify-content: center;
	}
	.products-per-page p,
	.products-sort p {
		margin: 7px 0;
	}
	.product-wrap {
		margin-top: 20px;
	}
	.single-product-banner {
		height: 310px;
	}
	.single-product-banner h1 {
		font-size: 140px;
	}
	.single-product-banner img {
		max-width: 300px;
		bottom: -95px;
	}
	.gd-cat-thumb {
		left: auto;
		right: 0;
		max-width: 120px;
	}
	.single-product .single-product-banner+.max-width #primary {
		margin-top: 40px;
	}
	.related-buttons .gd-button {
		width: 100% !important;
		text-align: center;
	}
	#footer-sub-menu a {
		font-size: 11px;
	}
	body .gform_wrapper.gravity-theme .gfield input.large,
	body .gform_wrapper.gravity-theme .gfield select.large,
	body .gform_wrapper.gravity-theme .gfield textarea.small,
	body .gform_wrapper.gravity-theme .gfield textarea.medium,
	body .gform_wrapper.gravity-theme .gfield textarea.large {
		padding: 10px 14px;
		font-size: 13px;
	}
	body .gform_wrapper.gravity-theme .gfield select.large {
		padding: 15px 14px;
	}
	#gform_submit_button_1 {
		width: 100%;
	}
	#insights-grid,
	#distilleries-grid {
		grid-template-columns: repeat(auto-fill, 100%);
	}
	.custom-related-products.distillery .related-grid {
		grid-template-columns: repeat(auto-fill, 100%);
	}
	.single-post-container {
		margin-top: 120px;
	}
	.post-featured-image img {
		height: 300px;
	}
	.woocommerce-account .woocommerce-MyAccount-navigation li {
		width: 47%;
	}
	.woocommerce-account .woocommerce-MyAccount-navigation li a {
		padding: 8px;
		font-size: 11px;
	}
	body .gfield_radio,
	body .gfield_checkbox {
		flex-wrap: wrap;
	}
	body .gfield_radio .gchoice,
	body .gfield_checkbox .gchoice {
		margin-right: 0;
		width: 100%;
	}
	.tier-features .feature {
		width: 100%;
	}
	#casks {
		.panel {
			h1 {
				font-size: 60px;
			}
			.image .drink {
				max-width: 95px;
			}
		}
	}
	.tiers .tier-content h1 {
		font-size: 38px;
	}
	.tiers .tier-1 .tier-image,
	.tiers .tier-2 .tier-image,
	.tiers .tier-3 .tier-image {
		width: 100%;
	}
	.tiers .tier-image img {
		max-height: 350px;
	}
	.tiers .tier-features {
		margin-top: 25px !important;
		width: 100% !important;
	}
	.tiers .tier-features .feature {
		text-align: center;
	}
	.tiers .tier-features p {
		margin: 8px 0 8px auto !important;
		font-size: 14px;
	}
	.asset-header h1 {
		font-size: 55px;
		letter-spacing: 15px;
	}
	.asset-header .wrap {
		margin: -30px auto 0;
	}
	.page-id-201 .asset-header .wrap {
		margin-top: -30px;
	}
	.custom-related-products.distillery.col-3 .related-grid {
		grid-template-columns: repeat(auto-fill, 100%);
	}
}

@media (max-width: 440px) {
	.steps .step {
		width: 100%;
	}
	.product-wrap {
		grid-template-columns: repeat(auto-fill, 100%);
	}
	.gd-button {
		padding: 10px 15px;
		font-size: 14px;
	}
	.gd-buttons .gd-button {
		width: 100%;
		text-align: center;
	}
	.gd-buttons .gd-button:not(:last-child) {
		margin-right: 0;
		margin-bottom: 12px;
	}
	.product-attributes li:nth-child(2),
	.product-attributes li:nth-child(3) {
		width: 100%;
	}
	.product-attributes .diamond-line {
		display: none;
	}
	.contact-details .steps .step {
		width: 100%;
	}
	.tab {
		font-size: 12px;
	}
	.insights-filter .secondary-filter-wrap,
	.distilleries-filter .secondary-filter-wrap {
		flex-wrap: wrap;
	}
	.insights-filter #posts-per-page,
	.distilleries-filter #posts-per-page,
	.insights-filter #sort-order,
	.distilleries-filter #sort-order {
		width: 100%;
		justify-content: center;
		display: flex;
		margin-bottom: 12px;
	}
	.filter-wrap .search-wrap input {
		margin-bottom: 0;
		width: 100%;
	}
	.filter-wrap .search-wrap .gd-button {
		height: 45px;
		width: 100%;
		margin-bottom: 20px;
	}
	.benefits .steps .step {
		width: 100%;
	}
	.benefits .steps .diamond-line {
		display: none !important;
	}
	.about-content-row .content-right .gd-buttons .gd-button:not(:last-child) {
		margin-bottom: 12px;
	}
	.tier-options .feature {
		width: 100%;
	}
	.team-members-carousel .team-member.slick-current:not(.slick-cloned) img {
		width: 100%;
		height: 350px;
		margin-bottom: 20px;
	}
	.team-members-carousel .team-member.slick-current:not(.slick-cloned) .member-info {
		width: 100%;
	}
}