/* Layout */
.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.inline {
    display: inline;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }    /* 24px */
.gap-7 { gap: 1.75rem; }   /* 28px */
.gap-8 { gap: 2rem; }      /* 32px */

.hidden {
    display: none;
}

.flex-row {
    flex-direction: row;
}

.flex-col {
    flex-direction: column;
}

.flex-1 {
    flex: 1;
}

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

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

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

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.sticky {
    position: sticky;
}

.top-0 {
    top: 0;
}

.left-0 {
    left: 0;
}

/* Spacing - Margin */
.m-4 {
    margin: 1rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.ml-1 {
    margin-left: 0.25rem;
}

.-ml-1 {
    margin-left: -0.25rem;
}

/* Spacing - Padding */
.p-4 {
    padding: 1rem !important;
}

.pt-2 {
    padding-top: 0.5rem !important;
}

.px-6 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}

.py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

/* Sizing */
.w-full {
    width: 100%;
}

.w-1\/2 {
    width: 50%;
}

.w-screen {
    width: 100vw;
}

.w-64 {
    width: 16rem;
}

.h-full {
    height: 100%;
}

.h-screen {
    height: 100vh;
}

.h-10 {
    height: 2.5rem;
}

/* Typography */
.text-xs {
    font-size: 0.75rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-base {
    font-size: 1rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.font-light {
    font-weight: 300;
}

.font-normal {
    font-weight: 400;
}

.font-medium {
    font-weight: 500;
}

.font-bold {
    font-weight: 700;
}

.text-left {
    text-align: left;
}

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

.text-right {
    text-align: right;
}

.text-yellow {
    color: #edcc77;
}

.text-black {
    color: #000 !important;
}

.text-white {
    color: #ffffff;
}

.text-gray-700 {
    color: #374151;
}

.text-red-500 {
    color: #ef4444;
}

.leading-tight {
    line-height: 1.25;
}

.leading-loose {
    line-height: 2;
}

/* Backgrounds */
.bg-white {
    background-color: #ffffff;
}

.bg-yellow {
    background-color: #edcc77;
}

.bg-gray-100 {
    background-color: #f3f4f6;
}

.bg-blue-500 {
    background-color: #3b82f6;
}

.hover\:bg-blue-600:hover {
    background-color: #2563eb;
}

.hover\:bg-opacity-75:hover {
    opacity: 0.75;
}

/* Border & Radius */

.border-0 {
    border: 0;
}

.border {
    border: 1px solid #d1d5db;
}

.border-2 {
    border-width: 2px;
}

.border-t-4 {
    border-top-width: 4px;
}

.border-gray-300 {
    border-color: #d1d5db;
}

.border-red-500 {
    border-color: #ef4444;
}

.rounded {
    border-radius: 0.25rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-full {
    border-radius: 9999px;
}

/* Effects */
.shadow {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.shadow-md {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.shadow-lg {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.opacity-0 {
    opacity: 0;
}

.opacity-50 {
    opacity: 0.5;
}

.opacity-100 {
    opacity: 1;
}

.transition {
    transition: all 0.2s ease-in-out;
}

.duration-300 {
    transition-duration: 300ms;
}

.ease-in-out {
    transition-timing-function: ease-in-out;
}

/* Interactivity */
.cursor-pointer {
    cursor: pointer;
}

.cursor-default {
    cursor: default;
}

.pointer-events-none {
    pointer-events: none;
}

.pointer-events-auto {
    pointer-events: auto;
}

.focus\:outline-none:focus {
    outline: none;
}

.focus\:ring:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}

/* Space Between Children */
.space-x-1>*+* {
    margin-left: 0.25rem;
}

.space-x-2>*+* {
    margin-left: 0.5rem;
}

.space-x-4>*+* {
    margin-left: 1rem;
}

.space-x-6>*+* {
    margin-left: 1.5rem;
}

.space-x-8>*+* {
    margin-left: 2rem;
}

.space-y-1>*+* {
    margin-top: 0.25rem;
}

.space-y-2>*+* {
    margin-top: 0.5rem;
}

.space-y-4>*+* {
    margin-top: 1rem;
}

.space-y-6>*+* {
    margin-top: 1.5rem;
}

ul li {
    list-style-type: none;
}

ul {
    padding: 0;
}

@media(max-width: 768px) {
    .product-page__wrapper table.variations {
        width: 100% !important;
    }
}

.includes_tax {
    display: none !important;
}

.woocommerce-checkout-review-order-table .woocommerce-Price-amount {
    font-size: 20px !important;
}

.woocommerce-shipping-totals {
    display: none;
}

.checkout-inline-error-message {
	color: red;
}

.woocommerce-message {
	display: none !important;
}

.wpcf7-form-control-wrap {
/* 	position: relative; */
}

#ui-datepicker-div.hide {
	display: none !important;
}

.woocommerce-notice--success {
	display: none !important;
}

.thank-you-msg {font-family: 'Zen Kaku Gothic New'; margin-bottom: 20px;}

.wc_payment_method {
border: 0 !important;
}

#purpose_of_use h3 {
font-size: 20px !important;
}

#terms_and_conditions h4 {
font-size: 20px !important;
}

.woocommerce-table__product-total.product-total.product-subtotal {
text-align: left !important;
}

body.menu-scroll-locked .thegem-template-header .thegem-te-menu .thegem-te-menu__hamburger .hamburger-menu-back.active, body.menu-scroll-locked .thegem-template-header .thegem-te-menu .overlay-menu-back.active {
	z-index: 9999 !important;
}

.overlay-menu-wrapper {
top: 102px !important;
}

.woocommerce-order-overview__email {
	display: none !important;
}

.woocommerce-order-overview__payment-method {
	display: none !important;
}