﻿/* General ------------------------------------------------*/
:root {
    --font-family-default: system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    --font-family-heading: Raleway, sans-serif;
    --link-color: rgb(0, 102, 204);
    --button-color: #fff;
    --button-background: #202f3c;
    --border-color: lightgrey;
}

html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    min-height: 100vh;
    margin: 0px;
    font-family: var(--font-family-default);
}

input.border {
    border: solid 1px var(--border-color);
    padding: 0.25em 0.5em;
}

input[type=submit] {
    cursor: pointer;
}

    input[type=submit]:disabled {
        cursor: default;
    }

input[type="text"], textarea {
    background-color: white !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}

.hidden {
    display: none;
}

.pagebody {
    height: auto !important;
}

@font-face {
    font-family: 'Raleway';
    src: url('../fonts/Raleway-VariableFont_wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Index Header ------------------------------------------------*/
.beerclubheader {
    background: rgba(255, 255, 255, .9);
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 25px 0px 45px 0px;
}

@media only screen and (max-width: 768px) {
    .beerclubheader {
        display: none;
    }
}

.beerclubmobilebutton {
    display: none;
    border-style: none;
    background: white;
    align-items: center;
    padding: 6px 15px 6px 15px;
}

@media only screen and (max-width: 768px) {
    .beerclubmobilebutton {
        display: flex;
    }
}

.beerclubheaderlink {
    align-content: normal;
    display: inline-block;
    font-family: var(--font-family-heading);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    color: #202f3c;
    position: relative;
    display: block;
    letter-spacing: 2px;
    padding: 1px 4px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    text-decoration: none;
    margin: 0px 5px;
}

.icon-menutext {
    display: inline-block;
    margin-left: 5px;
    font-family: var(--font-family-heading);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    color: #202f3c;
    position: relative;
    display: block;
    letter-spacing: 2px;
    padding: 10px 4px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    background-color: black;
    border-radius: 1px;
}

    .icon-bar + .icon-bar {
        margin-top: 4px;
    }

.beerclubheaderdropdown {
    background: rgba(255, 255, 255, .9);
    justify-content: center;
    width: 100%;
    position: absolute;
}

.beerclubheaderdropdownlink {
    display: block;
    font-family: var(--font-family-heading);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    color: #202f3c;
    position: relative;
    display: block;
    letter-spacing: 2px;
    padding: 10px 4px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    text-decoration: none;
    border-style: none none solid none;
    border-width: 2px;
    border-color: var(--border-color);
    margin-left: 10px;
}

/* Index Page------------------------------------------------*/
.indexframeouter {
    margin: 0px 25px 0px 25px;
}

@media only screen and (max-width: 1024px) {
    .indexframeouter {
        margin: 0px 15px 0px 15px;
    }
}

@media only screen and (max-width: 768px) {
    .indexframeouter {
        margin: 0px 5px 0px 5px;
    }
}

.indexframeinner {
    margin: 0 auto;
    width: 940px;
    display: grid;
    grid-template-columns: 3fr 2fr;
    grid-gap: 35px;
    padding-bottom: 28px;
}

@media only screen and (max-width: 1024px) {
    .indexframeinner {
        grid-template-columns: auto 1fr;
        grid-gap: 10px;
        width: 730px;
    }
}

@media only screen and (max-width: 768px) {
    .indexframeinner {
        display: grid;
        width: 100%;
        text-align: center;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        justify-items: center;
        margin: 0 auto;
    }
}

.indexpicsframe {
    display: inline-block;
    width: 520px;
    margin: 0 auto;
}

@media only screen and (max-width: 1024px) {
    .indexpicsframe {
        width: 360px;
    }
}

@media only screen and (max-width: 768px) {
    .indexpicsframe {
        width: 320px;
    }
}

.indexmenuframe {
    display: inline-block;
    width: 400px;
    text-align: left;
}

@media only screen and (max-width: 1024px) {
    .indexmenuframe {
        width: 320px;
    }
}

@media only screen and (max-width: 768px) {
    .indexmenuframe {
        width: 320px;
    }
}

.shopifyframe {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
    justify-items: center;
    margin-bottom: 30px;
}

@media only screen and (max-width: 768px) {
    .shopifyframe {
        display: block;
        text-align: center;
    }
}

.chooseplanbutton {
    margin-top: 18px;
    padding: 10px 20px;
    border: 0;
    border-radius: 2px;
    color: #fff;
    background: #202f3c;
    text-align: center;
    text-transform: uppercase;
    font-family: var(--font-family-heading);
    width: 100%;
    font-weight: 700;
    font-size: 20px;
}

.chooseplanbuttonhighlight:hover {
    background: #304d66;
}

ul {
    padding-inline-start: 15px;
    padding-inline-end: 15px;
}

li {
    margin: 0 12px 15px;
}

.socialmediatextlink {
    display: inline-block;
    color: #202f3c !important;
    font-size: 10px;
    text-decoration: none;
    border: 1px solid #202f3c;
    padding: 5px;
    border-radius: 100px;
    margin-right: 5px;
}

.shopifylink {
    text-align: center;
    text-decoration: none;
    color: black;
    font-family: var(--font-family-heading);
}


/* Index Footer ------------------------------------------------*/
.footertext {
    display: inline-block;
    font-family: var(--font-family-heading);
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    color: #202f3c;
    display: block;
    letter-spacing: 2px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.socialmedialink {
    display: inline-block;
    color: #202f3c !important;
    font-size: 19px;
    text-decoration: none;
    border: 1px solid #202f3c;
    padding: 11px;
    border-radius: 100px;
    margin-right: 18px;
}

.footercopyright {
    display: inline-block;
    text-decoration: none;
    color: #202f3c !important;
    font-family: var(--font-family-heading);
    font-weight: 400;
    font-size: 15px;
    text-transform: none;
    line-height: 1.8em;
}


/* Index Choose Plan Menu ------------------------------------------------*/
.indexchooseplanlabel {
    display: block;
    font-weight: 700;
    font-size: 13px;
    font-family: var(--font-family-default);
    padding-bottom: 8px;
    text-transform: uppercase;
}

.indexchooseplanselect {
    display: block;
    width: 100%;
    border-radius: 3px;
    border: 1px solid #d9dbdc;
    padding: 7px 9px;
    margin: 0 0 15px;
    font-family: inherit;
    font-size: 14px;
    line-height: inherit;
    font-family: var(--font-family-default);
    color: #8b94a4;
    background: white;
}

    .indexchooseplanselect > option {
        display: block;
        width: 100%;
        height: auto;
        min-height: 40px;
        padding: 0 9px;
        margin: 0 0 15px;
        border-radius: 2px;
        outline: none;
        background: #fff;
        color: #8b94a4;
        font-size: 12px;
        font-family: var(--font-family-default);
    }

input[type=checkbox] {
    /* -webkit-appearance: checkbox; */
    transform: scale(1.3);
}


/* Index Pics ------------------------------------------------*/
.beerclubpicthumbnail {
    display: inline-block;
    float: left;
    width: 16%;
    vertical-align: top;
    margin: 15px 5% 0 0;
    cursor: pointer;
}

/* SignUp Frame ------------------------------------------------*/
.signupframe {
    margin: 0 auto;
    width: 940px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 25px;
    padding: 0px 0px 40px 0px;
}

@media only screen and (max-width: 1024px) {
    .signupframe {
        width: 740px;
        grid-template-columns: 1fr 1fr;
        grid-gap: 20px;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 768px) {
    .signupframe {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        width: 100%;
        text-align: center;
    }
}

.signupformframe {
}

@media only screen and (max-width: 768px) {
    .signupformframe {
        grid-row: 2;
        text-align: left;
        padding: 0 18px;
    }
}

.invoiceframe {
    position: relative;
}

@media only screen and (max-width: 768px) {
    .invoiceframe {
        grid-row: 1;
        padding: 0 18px;
    }
}

.invoiceframeinner {
    position: fixed;
    background: #fafafa;
    border-color: #dadada;
    border-style: solid solid solid solid;
    border-radius: 4px;
    border-width: 1px;
    padding: 30px 20px 0px 20px;
    align-items: start;
    width: 416px;

    display: grid;
    grid-template-columns: 1fr auto;
    grid-gap: 7px 5px;
}

@media only screen and (max-width: 1024px) {
    .invoiceframeinner {
        width: 320px;
    }
}

@media only screen and (max-width: 768px) {
    .invoiceframeinner {
        position: relative;
        margin-top: 20px;
        text-align: left;
        width: 100%;
        box-sizing: border-box;
    }
}

.creditcardlogo {
    display: inline-block;
    height: 20px;
}

.creditCardImagesContainer {
    text-align: right;
}

.invoicehr {
    grid-column: span 2;
    border-top: 1px solid lightgray;
    border-left: none;
    margin: 5px 0px 5px 0px;
}

input[type="date"].empty {
    color: #999;
}

/* SignUp Form ------------------------------------------------*/
.signupfield {
    display: grid;
    grid-template-columns: 2fr 3fr;
    border: 1px solid #d8d8d8;
    border-style: solid solid none solid;
    border-radius: 0px;
    padding: 15px 1.25em 15px 1.25em;
    font-family: var(--font-family-default);
}

    .signupfield:focus-within {
        border: 2px solid #d8d8d8;
        border-radius: 4px;
        margin-top: -1px;
        margin-bottom: -1px;
    }

@media only screen and (max-width: 768px) {
    .signupfield {
        grid-template-columns: 1fr 3fr;
    }
}

.signupfieldfirst {
    border-radius: 4px 4px 0px 0px;
}

.signupfieldlast {
    border-radius: 0px 0px 4px 4px;
    border-style: solid solid solid solid;
}

.signuplabel {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    font-family: var(--font-family-default);
}

.signupinput {
    font-size: 14px;
    line-height: 1.5em;
    border: none;
    outline: none;
    color: black;
    font-weight: 400;
    font-family: var(--font-family-default);
    background: white;
}

    .signupinput::placeholder {
        color: #999;
    }

.recurly-element {
    font-size: 14px;
    height: 1.5em !important;
    line-height: 1.5em !important;
    border: none !important;
    margin-top: 0px !important;
    outline: none;
    color: #777;
    font-weight: 100;
    font-family: Helvetica,Arial,sans-serif;
    padding: 0px !important;
}

.signupcheckboxcontainer {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-gap: 5px;
}

.checkbox-container {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-gap: 5px;
}

    /* Contentstack multi-line text fields always surround text with p  */
    .checkbox-container p {
        margin: 0;
    }

.signupcheckbox {
    -webkit-appearance: none;
    background-color: #fafafa;
    border: 1px solid #cacece;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05);
    padding: 9px;
    border-radius: 3px;
    display: inline-block;
    position: relative;
}

    .signupcheckbox:active, .regular-checkbox:checked:active {
        box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px 1px 3px rgba(0,0,0,0.1);
    }

    .signupcheckbox:checked {
        background-color: blue;
        border: 1px solid #adb8c0;
        box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05), inset 15px 10px -12px rgba(255,255,255,0.1);
        color: #99a1a7;
    }

        .signupcheckbox:checked:after {
            content: '\2714';
            font-size: 14px;
            position: absolute;
            top: 0px;
            left: 3px;
            color: white;
        }

.signupcheckboxlabel {
    font-size: 13px;
    font-family: var(--font-family-default);
}

button {
    padding: 0.25em 1em;
    border: 0;
    border-radius: 2px;
    color: var(--button-color);
    background: var(--button-background);
    text-align: center;
    font-family: var(--font-family-heading);
    font-weight: 700;
    font-size: 15px;
    font-weight: 700;
}

button.link {
    display: inline;
    background: inherit;
    color: var(--link-color);
    text-decoration: underline;
    border: none;
    padding: 0;
    cursor: pointer;
    font-weight: normal;
}

.signuporderbutton {
    display: block;
    width: 100%;
    margin-top: 20px;
    padding: 10px 40px;
    border: 0;
    border-radius: 2px;
    color: #fff;
    background: #202f3c;
    text-align: center;
    font-family: var(--font-family-heading);
    font-weight: 700;
    font-size: 15px;
}

@media only screen and (max-width: 768px) {
    .signuporderbutton {
        display: block;
        width: 100%;
        padding: 15px 40px;
    }
}

.signuporderbutton:hover {
    background: #304d66;
}

/*ThankYou Page ------------------------------------------------*/
.thankyouframe {
    margin: 0 auto;
    width: 940px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    padding-bottom: 20px;
}

@media only screen and (max-width: 1024px) {
    .thankyouframe {
        width: 680px;
    }
}

@media only screen and (max-width: 768px) {
    .thankyouframe {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        width: 100%;
        text-align: center;
        min-height: auto;
    }
}

.printrecieptframe {
}

@media only screen and (max-width: 768px) {
    .printrecieptframe {
        grid-row: 1;
    }
}

.thankyouinvoiceframe {
}

@media only screen and (max-width: 768px) {
    .thankyouinvoiceframe {
        grid-row: 2;
    }
}

.printrecieptbutton {
    display: inline-block;
    background: none;
    border: none;
    color: #202f3c;
    font-weight: 700;
    font-family: var(--font-family-heading);
    font-size: 13px;
    margin-top: 16px;
    cursor: pointer;
}

.continueshoppingbutton {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    border: 0;
    border-radius: 2px;
    color: #fff;
    background: #202f3c;
    text-align: center;
    font-family: var(--font-family-heading);
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
}

    .continueshoppingbutton:hover {
        background: #304d66;
    }

/* Simple Header/Footer ------------------------------------------------*/
.simpleheader {
}

@media only screen and (max-width: 768px) {
    .simpleheader {
        text-align: center;
        padding-left: 10px;
    }
}

.simpleheaderinner {
    margin: 0 auto;
    width: 940px;
}

@media only screen and (max-width: 1024px) {
    .simpleheaderinner {
        width: 740px;
    }
}

@media only screen and (max-width: 768px) {
    .simpleheaderinner {
        width: 100%;
        margin-left: 0px;
    }
}

.simpleheaderlogo {
    height: 100px;
    padding: 20px 0px 20px 0px;
}

.simplefooter {
    margin: 0 auto;
    padding: 30px 0px 30px 0px;
    border-style: solid none none none;
    border-width: 1px;
    border-color: lightgray;
    text-align: center;
    height: auto;
    width: 100%;
}

@media only screen and (max-width: 768px) {
    .simplefooter {
    }
}

.simplefooterthankyou {
    position: absolute;
    bottom: 0;
}

@media only screen and (max-width: 768px) {
    .simplefooter {
        position: relative;
    }
}

.simplefooterinner {
    display: inline-block;
    width: 940px;
    text-align: left;
}

@media only screen and (max-width: 1024px) {
    .simplefooterinner {
        width: 740px;
    }
}

@media only screen and (max-width: 768px) {
    .simplefooterinner {
        width: 90%;
    }
}

.productDescriptionStyle {
    font-family: var(--font-family-heading);
    font-weight: 400;
    font-size: 15px;
    text-align: left;
    margin-top: 20px;
}


/* Style for the Member Profile header */
.checkoutHeading {
    font-weight: 600;
    font-family: var(--font-family-default);
    font-size: 100%;
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
    line-height: 1.5em;
    letter-spacing: 1px;
}

/* Style for the phone number note */
.checkoutPhoneNumberNote {
    grid-column: span 2;
    font-size: 13px;
    margin-top: 6px;
}

/* Style for the Card Expiration section */
.checkoutCardExpiration {
    display: grid;
    grid-template-columns: 35px auto auto;
    justify-content: flex-start;
}

/* Style for the slash symbol in Card Expiration */
.checkoutCardExpirationSlash {
    font-size: 20px;
    line-height: .8em;
    padding-top: 2px;
}

/* Style for the Year part in Card Expiration */
.checkoutCardExpirationYear {
    margin-left: 10px;
}

/* Style for the general agreement section */
.checkoutAgreement {
    color: dimgrey;
    font-size: 13px;
    margin: 20px 10px 10px 10px;
}

/* Style for the error display */
.checkoutErrorDisplay {
    color: red;
}

/* Style for the Order Summary header */
.checkoutOrderSummaryHeading {
    grid-column: span 2;
}

/* Style for the Product Image in Order Summary */
.checkoutProductImageContainer {
    display: grid;
    grid-template-columns: auto 1fr auto;
    padding: 10px 0px 10px 0px;
    grid-gap: 8px;
}

.checkoutProductImage img {
    height: 70px;
    width: 70px;
    border-radius: 8px;
    margin-right: 8px;
}

.checkoutProductDetails {
    color: #777;
    margin-top: 4px;
    font-size: 13px;
}

/* Style for Financial Details Section */
.checkoutFinancialDetails {
    background: #fafafa;
    font-weight: 400;
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 10px 0px 10px 0px;
    grid-gap: 10px;
}

.checkoutFinancialText {
    color: #777;
    text-align: right;
}

/* Style for Payment Due and Next Charge Section */
.checkoutPaymentSummary {
    background: #fafafa;
    font-weight: 400;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr auto;
    padding: 10px 0px 5px 0px;
    grid-gap: 8px;
}

.checkoutPaymentAmount {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 24px;
    color: #8fc243;
}

.checkoutNextChargeDate {
    text-transform: uppercase;
    color: dimgrey;
    font-size: 13px;
    padding: 0px 0px 10px 10px;
    text-align: right;
    grid-column: span 2;
}

/* Extracted Index.cshtml inline styles */
.beerclubHeaderDropdownStyle {
    display: block;
    justify-content: center;
}

.indexIconBarStyle {
    display: inline-block;
}

.indexHiddenHeaderLinks {
    display: block;
}

.indexLinkHeaderDisplay {
    display: flex;
    justify-content: center;
}

.productImageThumbnailsContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px 10px;
}

.mainProductImage {
    width: 100%;
}

.indexMenuFrameStyle {
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 26px;
    line-height: 1.5em;
    font-family: var(--font-family-heading);
}

.purchasePriceStyle {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 15px;
    margin-bottom: 10px;
    font-family: var(--font-family-heading);
}

.relatedItemsSection {
    text-align: center;
    font-weight: 400;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 110%;
    line-height: 1.5em;
    font-family: var(--font-family-heading);
}

.simpleFooterStyle {
    width: 100%;
    background: #d7d7cc;
    padding: 15px 0 35px;
    text-align: center;
}

.socialMediaLinksContainer {
    display: inline-block;
}

.indexSocialLinks {
    margin-top: 15px;
}
