@keyframes zoomInCircle {
    0% {
        opacity: 0;
        transform: scale3d(.3,.3,.3);
    }
    50% {
        opacity: 1;
    }
}

@keyframes pulseCircle {
    0% {
        transform: scale3d(1,1,1);
    }
    50% {
        transform: scale3d(1.05,1.05,1.05);
    }
    100% {
        transform: scale3d(1,1,1);
    }
}

.phone-bubble {
    position: fixed;
    left: 15px;
    bottom: 20px;
}

.phone-bubble__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: calc(4rem + 0.8vw);
    height: calc(4rem + 0.8vw);
    border-radius: 50%;
    background-color: var(--link-hover-color);
    color: #FFF;
    font-size: calc(1.6rem + 0.5vw);
    z-index: 2;
}

.phone-bubble__link > i {
    position: relative;
    z-index: 2;
}

.phone-bubble__link:hover {
    color: #FFF !important;
}

.phone-bubble__number {
    display: none;
}

.phone-bubble__animation {
    position: absolute;
    opacity: 0.5;
    border-radius: 50%;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
}

.phone-bubble__circle-outline {
    width: calc(5rem + 0.8vw);
    height: calc(5rem + 0.8vw);
    top: -0.5rem;
    left: -0.5rem;
    border: 1px solid var(--link-hover-color);
    z-index: 1;
    animation-name: zoomInCircle;
}

.phone-bubble__circle-fill {
    width: calc(6rem + 0.8vw);
    height: calc(6rem + 0.8vw);
    top: -1rem;
    left: -1rem;
    background-color: var(--link-hover-color);
    z-index: 0;
    animation-name: pulseCircle;
}

@media ( min-width: 768px ) {
    .phone-bubble__number {
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        background-color: var(--link-hover-color);
        white-space: nowrap;
        transform: translate3d(0,-50%,0);
        padding: 0.4rem 2rem 0.4rem 3rem;
        font-size: 0.7em;
        font-weight: 700;
        border-radius: 0 50px 50px 0;
        transition: all 0.3s ease;
        z-index: 1;
    }

    .phone-bubble__number:hover {
        left: 70%;
    }
}
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3rem 0;
    padding: 0;
    list-style: none;
}

.pagination__item {
    display: inline-flex;
    margin: 0 2px;
    width: 40px;
    height: 40px;
    color: #999;
}

.pagination__item > .page-numbers {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    border: 1px solid #e5e5e5;
    color: inherit;
    text-decoration: none;
}

.pagination__item > .page-numbers:hover {
    border-color: var(--link-color);
}

.pagination__item > .page-numbers.current {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #FFF;
}
.owl-carousel .owl-nav > button {
    position: absolute;
    top: calc(50% - 20px);
    left: 0;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: rgba(0,0,0,0.5) !important;
    color: #FFF !important;
    opacity: 0.5;
    z-index: 2;
    transition: all 0.3s ease;
}

.owl-carousel .owl-nav > button:hover {
    opacity: 0.9;
}

.owl-carousel .owl-nav > button.owl-next {
    right: 0;
    left: auto;
}

.owl-carousel .owl-nav > button > span {
    font-size: 3rem;
    line-height: 30px;
    vertical-align: middle;
    position: relative;
    top: -2px;
}
/** For Admin Editor */

body#tinymce { /* In Admin */
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    padding: 1.5rem !important;
}

body#tinymce .mceTemp {
    margin: 0 0 1.5rem 0;
}

body#tinymce .wp-caption-dd {
    font-size: 1.5rem;
    text-align: center;
    margin: 1rem 0 0;
}

/** For FE side */

.mce-content-body {
    font-size: 1.5rem;
    line-height: 1.5;
}

.mce-content-body ul,
.mce-content-body ol {
    margin: 0 0 2rem 0;
    padding: 0 0 0 1.8rem;
}

.mce-content-body ul li,
.mce-content-body ol li {
    margin: 0 0 0.5rem 0;
}

.mce-content-body p {
    margin: 0 0 1.5rem 0;
    text-align: justify;
}

.mce-content-body img {
    max-width: 100%;
    width: auto;
    height: auto;
}

.mce-content-body figure {
    max-width: 100%;
    margin: 0 0 1.5rem 0;
}

.mce-content-body figcaption {
    font-size: 1.3rem;
    text-align: center;
    margin: 0.5rem 0 0;
}

.mce-content-body .gallery {
    margin: 0 0 1.5rem 0;
}

.mce-content-body .gallery figure {
    margin-bottom: calc(var(--bs-gutter-x) * .5);
}

.mce-content-body .aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.mce-content-body .alignright {
    float: right;
    margin: 1.5rem 0 1.5rem 1.5rem;
}

.mce-content-body .alignleft {
    float: left;
    margin: 1.5rem 1.5rem 1.5rem 0;
}

.mce-content-body h2 {
    font-size: 3rem;
    font-weight: 700;
    margin: 3rem 0 1.5rem 0;
    color: var(--primary-color);
}

.mce-content-body h3 {
    font-size: 2.4rem;
    font-weight: 700;
    margin: 3rem 0 1.5rem 0;
}

.mce-content-body h4 {
    font-size: 2rem;
    font-weight: 700;
    margin: 3rem 0 1.5rem 0;
}

.mce-content-body h5 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 3rem 0 1.5rem 0;
}

.mce-content-body table {
    table-layout: auto !important;
    height: auto !important;
    width: 100% !important;
    border: 2px solid var(--text-light-color);
    border-collapse: collapse;
    margin: 0 0 1.5rem 0;
}

.mce-content-body table td {
    height: auto !important;
    width: auto !important;
    padding: 0.5rem 1rem;
    border: 1px solid var(--light-color);
}

.mce-content-body table td:first-child {
    white-space: nowrap;
    font-weight: 600;
}

@media ( min-width: 768px ) {
    .mce-content-body .gallery[class*="gallery-columns"] {
        display: flex;
        flex-wrap: wrap;
        margin-left: calc(var(--bs-gutter-x) * -.25);
        margin-right: calc(var(--bs-gutter-x) * -.25);
    }

    .mce-content-body .gallery > .gallery-item {
        flex: 0 0 auto;
        width: auto;
        padding: 0 calc(var(--bs-gutter-x) * .25);
    }

    .mce-content-body .gallery-columns-2 > .gallery-item {
        flex: 0 0 50% !important;
        width: 50% !important;
    }

    .mce-content-body .gallery-columns-3 > .gallery-item {
        flex: 0 0 33.333333%;
        width: 33.333333%;
    }
}
.product-item {
    padding: 15px;
}

.product-item__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.product-item__thumbnail {
    position: relative;
    padding-bottom: 100%;
    margin: 0 0 30px;
}

.product-item__thumbnail-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.product-item__add-to-cart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.product-item:hover .product-item__add-to-cart {
    opacity: 1;
    pointer-events: auto;
}

.product-item__add-to-cart .stock {
    position: static !important;
    background: none !important;
    -webkit-transform: none !important;
        -ms-transform: none !important;
            transform: none !important;
    margin-bottom: 10px !important;
    color: #FFF;
}

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

.product-item__category a {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.5;
    color: #7E7E7E;
}

.product-item__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    margin: 15px 0;
}

.product-item__title a {
    color: var(--theme-dark-color);
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.25;
}

.product-item__price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1;
    color: var(--theme-red-color);
    margin: 0 0 30px;
}

.product-item__price ins {
    text-decoration: none;
}

.product-item__price del {
    font-size: 1.5rem;
    color: #7E7E7E;
    margin: 0 0 5px;
}

.product-item__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.product-detail__wrapper {
    position: relative;
    width: auto;
    padding: 15px;
    margin: 65px 15px 15px;
    -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
    background-color: #FFF;
    border-radius: 4px;
    overflow: auto;
    max-height: calc(100vh - 80px);
}

.product-detail__template {
    padding: 15px 0;
}

.product-detail__preloader {
    position: absolute;
    top: 65px;
    bottom: 0;
    left: 0;
    right: 0;
    background: #FFF;
    z-index: 1;
}

#product-detail-column-image {
    margin-bottom: 30px;
}

#product-detail-column-add-to-cart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.product-detail__attribute-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-bottom: 1px solid #eaeaea;
}

.product-detail__attribute-item:last-child {
    border-bottom: none;
}

.product-detail__attribute-item-label {
    width: 120px;
    padding: 20px 0;
    margin: 0;
    font-weight: 700;
}

.product-detail__attribute-item[data-slider] .label {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
    padding-bottom: 10px;
}

.product-detail__attribute-item[data-slider] .value {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    font-size: 1.4rem;
    margin-bottom: 15px;
    border-top: 10px solid #eaeaea;
}

.product-detail__attribute-item[data-slider] .value > .point {
    position: relative;
    padding: 5px 0 0;
}

.product-detail__attribute-item[data-slider] .value > .point:before {
    display: block;
    content: "";
    position: absolute;
    top: -10px;
    left: calc(50% - 5px);
    width: 10px;
    height: 10px;
    background: #eaeaea;
}

.product-detail__attribute-item[data-slider] .value > .point:first-child:before {
    left: 0;
}

.product-detail__attribute-item[data-slider] .value > .point:last-child:before {
    left: auto;
    right: 0;
}

.product-detail__attribute-item[data-slider] .value > .point[data-selected] {
    font-weight: 700;
    color: var(--theme-primary-color);
}

.product-detail__attribute-item[data-slider] .value > .point[data-selected]:before {
    background: var(--theme-primary-color);
}

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

.product-detail__add-to-cart-form {
    position: relative;
    padding: 30px 15px 15px;
    text-align: center;
    border-top: 1px solid #eaeaea;
}

.product-detail__add-to-cart-form .stock {
    position: absolute;
    top: -12px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    height: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0;
    padding: 0 10px;
    background-color: #FFF;
}

.product-detail__add-to-cart-form form.cart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 15px;
}

.product-detail__add-to-cart-form form.cart .button {
    color: #FFF;
    border-color: var(--theme-primary-color);
    background-color: var(--theme-primary-color);
}

.product-detail__add-to-cart-form form.cart .button:hover {
    border-color: var(--theme-primary-hover-color);
    background-color: var(--theme-primary-hover-color);
}

.product-detail__gallery-thumbnail {
    margin: 5px 0 0;
}

.product-detail__gallery-thumbnail img {
    cursor: pointer;
    opacity: 0.5;
}

.product-detail__gallery-thumbnail img:hover,
.product-detail__gallery-thumbnail img.selected {
    opacity: 1;
}

.product-detail__title {
    font-size: 2rem;
}

.product-detail__description {
    margin: 30px 0;
}

.product-detail__description p:last-child {
    margin-bottom: 0;
}

.product-detail__attribute-text {
    padding: 10px 20px;
    background: #f5f5f5;
    margin: 0 0 15px;
}

.product-main-brewery {
    margin: 30px 0;
    padding: 15px 0;
    background: #f5f5f5;
}

.product-main-brewery__thumbnail {
    position: relative;
    padding-bottom: 75%;
    margin: 0 0 30px;
    background: #eaeaea;
}

.product-main-brewery__thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.product-main-brewery__label {
    font-weight: 700;
    margin: 0 0 5px;
}

.product-main-brewery__name {
    font-size: 3rem;
    margin: 0 0 15px;
}

.product-main-brewery__description p:last-child {
    margin-bottom: 0;
}

.woocommerce-mini-cart {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-mini-cart-item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 40px 15px 0;
    margin: 0 0 15px 0;
    border-bottom: 1px solid #eaeaea;
}

.woocommerce-mini-cart-item .remove {
    position: absolute;
    top: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 40px;
    height: 80px;
    font-size: 2rem;
    color: var(--theme-red-color);
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
}

.woocommerce-mini-cart-item .quantity {
    position: absolute;
    bottom: 15px;
    left: 95px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    line-height: 1;
    color: var(--theme-primary-color);
}

.woocommerce-mini-cart-item a:nth-child(2) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    color: var(--theme-dark-color);
    line-height: 1.25;
}

.woocommerce-mini-cart-item a:nth-child(2) img {
    width: 80px;
    height: 80px;
    -o-object-fit: cover;
       object-fit: cover;
    margin-right: 15px;
}

.woocommerce-mini-cart__total {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-size: 2rem;
    line-height: 1;
    margin: 30px 0;
}

.woocommerce-mini-cart__total .amount {
    font-weight: 700;
    color: var(--theme-primary-color);
}

.woocommerce-mini-cart__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0;
    gap: 15px;
}

.woocommerce-mini-cart__buttons .button {
    display: none;
    color: #FFF !important;
    border-color: var(--theme-primary-color);
    background-color: var(--theme-primary-color);
}

.woocommerce-mini-cart__buttons .button:hover {
    border-color: var(--theme-primary-hover-color);
    background-color: var(--theme-primary-hover-color);
}

.woocommerce-mini-cart__buttons .button.checkout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media (min-width: 768px) {

    .product-detail__wrapper {
        margin: 80px 30px 15px;
        max-height: calc(100vh - 95px);
    }

    .product-detail__template {
        padding: 0 20px 20px;
    }

    .product-detail__attribute-text {
        margin: 0;
    }

    .product-main-brewery {
        background: none;
        border: 1px solid #eaeaea;
    }

    .product-main-brewery__thumbnail {
        height: 100%;
        padding: 0;
        margin: 0;
    }

}

@media (min-width: 992px) {

    .product-detail__wrapper {
        max-width: 768px;
        margin: 110px auto 15px;
        max-height: calc(100vh - 125px);
    }

    .product-detail__title,
    .product-detail__price {
        font-size: 2.5rem;
    }

    .product-detail__attribute-text {
        padding: 15px 30px;
    }

    .product-detail__attribute-slider {
        padding-right: 60px;
    }

    .product-main-brewery {
        margin: 60px 0 0;
    }

}
#homepage-slider {
    padding: 0;
    background: var(--theme-primary-color);
}

#homepage-quiz {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--theme-primary-color);
    color: #FFF;
}

.homepage-quiz__wrapper {
    padding: 30px 0;
    text-align: center;
}

.homepage-quiz__heading {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5;
    margin: 0 0 20px;
}

.homepage-quiz__link {
    color: #FFF !important;
    border-color: #FFF !important;
}

.homepage-quiz__link:after {
    content: "";
    display: block;
    width: 14px;
    height: 12px;
    margin-left: 5px;
    background: var(--arrow-right-white-icon) no-repeat center/14px 12px;
}

.homepage-quiz__link:hover {
    color: var(--theme-primary-color) !important;
    background: #FFF !important;
}

.homepage-quiz__link:hover:after {
    background: var(--arrow-right-color-icon) no-repeat center/14px 12px;
}

.home-section__heading {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 30px 0 15px;
    text-align: center;
}

.home-section__products {
    padding: 0;
}

.homepage-staff-picks__column {
    position: relative;
    overflow: hidden;
    padding-bottom: 56.25%;
    margin: 15px 0;
}

.homepage-staff-picks__column-wrapper,
.homepage-staff-picks__column-background,
.homepage-staff-picks__column:after {
    position: absolute;
    top: 0;
    left: 15px;
    right: 15px;
    bottom: 0;
    width: calc(100% - 30px);
}

.homepage-staff-picks__column-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.homepage-staff-picks__column-background {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: 0;
}

.homepage-staff-picks__column:after {
    content: "";
    display: block;
    background: rgba(255, 255, 255, 0.6);
    z-index: 1;
}

.homepage-staff-picks__heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
    padding: 0 15px;
    margin-bottom: 15px;
    text-align: center;
}

.homepage-staff-picks__heading b,
.homepage-staff-picks__heading strong {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.homepage-staff-picks__button,
.homepage-staff-picks__link {
    width: 100%;
    height: 50px;
    max-width: 300px;
    font-weight: 400;
    text-transform: uppercase;
}

.homepage-brewery-highlight__column {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vw;
    overflow: hidden;
}

.homepage-brewery-highlight__column-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
    color: #FFF;
    background: rgba(0,0,0,0.6);
    padding: 30px;
    margin: 0 15px;
    border-radius: 6px;
    text-align: center;
}

.homepage-brewery-highlight__heading {
    font-size: 2rem;
    margin-bottom: 15px;
}

.homepage-brewery-highlight__column-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: 0;
}

.homepage-our-values__column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    margin-bottom: 30px;
}

.homepage-our-values__column:before,
.homepage-our-values__column:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 15px;
    right: 15px;
    bottom: 0;
    border: 3px solid var(--theme-dark-color);
    background: #f5f5f5;
    pointer-events: none;
    z-index: 0;
}

.homepage-our-values__column:after {
    top: 8px;
    left: 23px;
    right: 23px;
    bottom: 8px;
    border: 1px solid var(--theme-dark-color);
}

.homepage-our-values__column-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 45px 30px;
    z-index: 1;
}

.homepage-our-values__heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--theme-primary-color);
}

.homepage-our-values__description {
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-style: italic;
}

@media (min-width: 768px) {

    .homepage-quiz__heading {
        font-size: 2rem;
    }

    .homepage-quiz__link {
        font-size: 1.4rem;
    }

    .home-section__heading {
        font-size: 3.6rem;
    }

    .homepage-staff-picks__column {
        padding-bottom: 50%;
    }

    .homepage-staff-picks__heading {
        font-size: 2.4rem;
    }

    .homepage-staff-picks__heading b,
    .homepage-staff-picks__heading strong {
        font-size: 2.6rem;
    }

    #homepage-brewery-highlight {
        margin-top: 30px;
    }

    .homepage-brewery-highlight__column {
        height: 50vw;
    }

    .homepage-brewery-highlight__column-wrapper {
        max-width: 50%;
    }

    .homepage-brewery-highlight__heading {
        font-size: 2.6rem;
    }

    .homepage-our-values__heading {
        font-size: 2.6rem;
    }

    .homepage-our-values__description {
        font-size: 2rem;
    }
}

@media (min-width: 992px) {

    #homepage-top-banners {
        margin-bottom: 20px;
    }

    .homepage-quiz__wrapper {
        max-width: 250px;
    }

    .home-section__heading {
        margin: 40px 0 15px;
    }

    .homepage-staff-picks__column {
        padding-bottom: 33.3333%;
    }

    .homepage-staff-picks__heading {
        font-size: 2.6rem;
    }

    .homepage-staff-picks__heading b,
    .homepage-staff-picks__heading strong {
        font-size: 3rem;
    }

    #homepage-brewery-highlight {
        margin-top: 40px;
    }

    .homepage-brewery-highlight__column {
        height: 33.333vw;
    }

}

@media (min-width: 1366px) {

    #homepage-brewery-highlight {
        margin: 60px 0;
    }

    .homepage-brewery-highlight__column-wrapper {
        padding: 60px;
    }

    .homepage-our-values__column-wrapper {
        padding: 60px;
    }

}
.category-item__wrap {
    margin: 0 1rem 3rem;
}

.category-item__thumbnail-link {
    display: block;
    position: relative;
    padding-bottom: 56.25%;
    background-color: #f1f1f1;
}

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

.category-item__title-link {
    font-size: calc(1.6rem + 0.2vw);
    font-weight: 700;
    color: var(--text-color);
}
.contact-detail__item {
    position: relative;
    padding-left: 30px;
}

.contact-detail__icon {
    position: absolute;
    left: 0;
    top: 5px;
    max-width: 15px;
    max-height: 15px;
}

#contact-detail,
#contact-form {
    margin-bottom: 3rem;
}
#footer {
    background: #F1F1F1;
}

.footer-column {
    margin-bottom: 30px;
}

#site-footer h3,
.footer-column__heading {
    color: #000;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    margin: 30px 0 20px;
}

.footer-column__content {
    font-size: 1.3rem;
    color: #000;
}

.footer-column__content ul,
.footer-column__content ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column__content li {
    margin-top: 10px;
}

.footer-column__content a {
    color: #000;
}

#footer-copyright-text {
    display: flex;
    justify-content: center;
    padding: 10px 15px;
    font-size: 1.2rem;
    color: #FFF;
    background: var(--theme-secondary-color);
}

@media (min-width: 768px) {
    
    .site-footer__wrapper {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0 30px;
        width: 100%;
        justify-content: space-between;
    }
}

@media (min-width: 1200px) {
    .site-footer__wrapper {
        margin: 40px 0 0;
    }

    #site-footer h3,
    .footer-column__heading {
        margin: 20px 0;
    }

    .footer-column__content {
        font-size: 1.4rem;
    }
}
.sidebar-widget {
    margin-top: 30px;
}

.sidebar-widget__wrap {
    padding: 0 24px;
    box-shadow: 0 2px 16px 0 rgba(170,170,170,0.2);
    border: solid 1px rgba(204,204,204,0.4);
}

#sidebar-contact-box {
    text-align: center;
}

.sidebar-contact-box__title {
    font-size: 2rem;
    line-height: 1.5;
    font-weight: 700;
    margin: 30px 0;
    text-transform: capitalize;
}

.sidebar-contact-box__featured-image {
    margin: 0 0 30px;
}

.sidebar-contact-box__description,
.sidebar-contact-box__property-code  {
    position: relative;
    font-size: 1.4rem;
    line-height: 1.2;
    color: var(--text-light-color);
    margin: 0 0 30px;
}

.sidebar-contact-box__description strong,
.sidebar-contact-box__property-code strong {
    color: var(--text-color);
}

.sidebar-contact-box__property-code-text {
    position: relative;
    background-color: #FFF;
    padding: 5px 10px;
}

.sidebar-contact-box__divider {
    border-bottom: 1px solid #ccc;
}

.sidebar-contact-box__property-code .sidebar-contact-box__divider {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
}

.sidebar-contact-box__icon {
    display: inline-block;
    max-width: 25px;
    max-height: 25px;
    margin-right: 7px;
}

.sidebar-contact-box__cta {
    margin-bottom: 30px;
}

.sidebar-contact-box__phone-button {
    width: 100%;
    height: 45px;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 15px;
}

.sidebar-contact-box__zalo-button,
.sidebar-contact-box__whatsapp-button  {
    display: flex;
    margin: 0 0 15px;
    color: var(--text-color);
    font-weight: 700;
    justify-content: center;
}

.sidebar-contact-box__whatsapp-button .sidebar-contact-box__icon {
    font-size: 25px;
    color: #30D24E;
}

.sidebar-contact-box__chat-button,
.sidebar-contact-box__form-button {
    position: relative;
    display: inline-block;
    width: 48%;
    padding: 15px 0;
    font-weight: 700;
    color: #337588;
    text-transform: capitalize;
}

.sidebar-contact-box__chat-button:after {
    content: "";
    display: block;
    position: absolute;
    top: 15px;
    bottom: 15px;
    right: 0;
    border-right: 1px solid #ccc;
}

@media (min-width: 992px) {
    .sidebar-sticky {
        position: sticky;
        top: 30px;
    }
}

@media (min-width: 1200px) {
    .property-right-column__wrap {
        margin-left: 30px;
    }
}
#cart-sidebar {
    top: 50px;
}

.cart-sidebar__wrapper {
    background: #FFF;
    overflow-y: auto;
    height: 100%;
}

.cart-sidebar__heading {
    background: #eaeaea;
    padding: 5px 5px 5px 15px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.cart-sidebar__title {
    color: var(--theme-dark-color);
    font-size: 2rem;
    font-weight: 500;
    margin: 0;
}

.cart-sidebar__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 15px;
}

@media (min-width: 768px) {

    .cart-sidebar__wrapper {
        position: absolute;
        right: 0;
        width: 400px;
        -webkit-box-shadow: -2px 0 10px rgba(0,0,0,0.15);
                box-shadow: -2px 0 10px rgba(0,0,0,0.15);
    }
    
}

@media (min-width: 992px) {

    #cart-sidebar {
        top: 0;
    }
}
.login-form__wrapper {
    position: relative;
    margin: 80px 20px 20px;
    padding: 0 0 10px;
    max-height: calc(100% - 110px);
    background-color: #FFF;
    border-radius: 4px;
    overflow-y: auto;
}

.login-form__header {
    position: absolute;
    padding: 5px 5px 0;
    top: 0;
    right: 0;
    z-index: 1;
}

.login-form__section {
    padding: 45px 20px 10px;
}

.login-form__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    font-size: 2.6rem;
    font-weight: 500;
    margin: 0 0 15px;
    height: 30px;
}

.login-form__field {
    margin: 0 0 15px;
}

.login-form__label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
}

.login-form__label-text {
    display: inline-block;
    margin: 0;
}

.login-form__input {
    width: 100%;
}

.login-form__input-checkbox,
.login-form__input-radio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
    gap: 7px;
}

.login-form__radio-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
}

.login-form__input-group {
    gap: 5px;
    margin: 0;
    width: 100%;
}

.login-form__input-group > [class*="col"] {
    padding: 0;
}

.login-form__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 0 10px;
    gap: 15px;
}

.login-form__buttons .button {
    width: 100%;
}

.login-form__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.login-form__link {
    color: var(--theme-dark-color);
    cursor: pointer;
}

.login-form__ajax-message {
    padding: 0 20px;
    text-align: center;
}

.login-form__ajax-message .success {
    color: var(--theme-green-color);
    border: 1px solid var(--theme-green-color);
    padding: 6px 12px;
    border-radius: 4px;
}

.login-form__ajax-message .error {
    color: var(--theme-red-color);
    border: 1px solid var(--theme-red-color);
    padding: 6px 12px;
    border-radius: 4px;
}

[data-address-hidden] {
    display: none;
}

@media( min-width: 768px ) {
    .login-form__wrapper {
        width: 480px;
        margin: 0 auto;
        padding-bottom: 25px;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
    }

    .login-form__section {
        padding: 50px 50px 25px;
    }

    .login-form__ajax-message {
        padding: 0 50px;
    }
}