:root {
    --main-color: #8a2332;
    --second-color: #f9a639;
    --main-color-rgb: 138, 35, 50;
    --second-color-rgb: 249, 166, 57;
}
body {
    padding: 0px;
    margin: 0px;
    font-family: "Jost", sans-serif;
}
.unusedcontainer {
    background-color: var(--main-color);
    min-width: 100vw;
    min-height: 100vh;
}
.big-co {
    background: #fff;
    min-width: 300px;
    width: 100%;
    /*width: 80vw;*/
    max-width: 1200px;
    /*position: fixed;*/
    /*top: calc(50% - 50px);*/
    /*left: 50%;*/
    /*transform: translateX(-50%) translateY(-50%);*/
    border-radius: 4px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: 0 1px 1px hsl(0deg 0% 0% / 0.075),
    0 2px 2px hsl(0deg 0% 0% / 0.075), 0 4px 4px hsl(0deg 0% 0% / 0.075),
    0 8px 8px hsl(0deg 0% 0% / 0.075), 0 16px 16px hsl(0deg 0% 0% / 0.075);
    box-shadow: 0 1px 1px hsl(0deg 0% 0% / 0.075),
    0 2px 2px hsl(0deg 0% 0% / 0.075), 0 4px 4px hsl(0deg 0% 0% / 0.075),
    0 8px 8px hsl(0deg 0% 0% / 0.075), 0 16px 16px hsl(0deg 0% 0% / 0.075);
}
.big-co-bounds {
    overflow: hidden;
    min-height: 100px;
}
.big-co-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0rem;
}
.big-co-part {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 2rem;
    overflow: auto;
    /*max-height: calc(90vh - 200px);*/
}
@media (max-width: 800px) {
    .big-co-inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .big-co-part {
        overflow: initial;
        padding: 1rem;
        max-height: -webkit-fit-content;
        max-height: -moz-fit-content;
        max-height: fit-content;
    }
}

.part-info {
    -webkit-box-flex: 2;
    -ms-flex-positive: 2;
    flex-grow: 2;
}
.big-co-sec {
    padding: 4rem 2rem 2rem 2rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 2rem 0;
    border-top: 1px solid #777;
    width: 100%;
}
.big-co-part .big-co-sec:first-of-type {
    border-top: none;
    padding-top: 2rem;
    margin-top: 0;
}
/*.big-co-part .big-co-sec:last-of-type {*/
/*    padding-bottom: 0;*/
/*}*/
.big-co-sec-header {
    font-size: 2rem;
    padding-bottom: 2rem;
}
.sec-num {
    padding-right: 10px;
}
.hidden {
    display: none;
}

.big-co-icon {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 32px;
    right: 5px;
    pointer-events: none;
    z-index: 2;
}
.big-co-icon.icon-success {
    fill: green;
}
.big-co-icon.icon-error {
    fill: red;
}
.big-co-label {
    font-weight: bold;
    display: block;
    color: #333;
    margin-bottom: 0.25rem;
    color: #333;
}
.smallsize {
    font-size: 0.76rem;
}
.big-co-input,select.big-co-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    color: #333;
    border: 1px solid #cbd5e0;
    line-height: 1.25;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: white;
    padding: 0.65rem 0.75rem;
    border-radius: 0.25rem;
    -webkit-box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}

.input::-moz-placeholder {
    color: #a0aec0;
}
.input:-ms-input-placeholder {
    color: #a0aec0;
}
.input::-webkit-input-placeholder {
    color: #a0aec0;
}
.input::-ms-input-placeholder {
    color: #a0aec0;
}
.input::placeholder {
    color: #a0aec0;
}
.input.input-error {
    border: 1px solid red;
}
.input.input-error:focus {
    border: 1px solid red;
}
.input:focus {
    outline: none;
    border: 1px solid #a0aec0;
    -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    background-clip: padding-box;
}

.big-co-field {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
.big-co-field * {
    font-family: 'Jost';
}
.big-co-field-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 1rem;
    gap: 20px;
}
.big-co-sec .big-co-field-group:last-of-type {
    margin-bottom: 0;
}
.big-co-error-message {
    font-size: 0.85rem;
    color: red;
}

.big-co-button {
    background-color: var(--second-color) !important;
    padding: 1rem 2rem !important;
    border: none !important;
    border-radius: 0.25rem !important;
    color: white !important;
    font-weight: bold !important;
    display: block !important;
    font-size: 1.27rem !important;
    text-transform: capitalize !important;
    width: 100% !important;
    text-align: center !important;
    cursor: pointer !important;
    font-family: "Jost", sans-serif !important;
}
.button:hover {
    -webkit-filter: brightness(130%);
    filter: brightness(130%);
}

.big-co-promotion {
    color: white;
    opacity: 0.75;
    margin: 1rem auto;
    max-width: 460px;
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 0.25rem;
    position: fixed;
    bottom: -120px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    left: 50%;
}
.big-co-promotion a {
    color: white;
}
.part-summary {
    padding:2rem;
    background: #f0f0f0;
    min-width:300px;
    max-width: 400px;
}
.bigcart-promo {
    position: relative;
    bottom: 0rem;
    padding-bottom: 0rem;
    padding: 0rem;
    margin: 0.5rem 0 2rem 0;
    border-radius: 4px;
    border-bottom: none;
    background-color: rgba(255, 255, 255, 0.5);
}
.big-co-promosubmit.disabled {
    opacity: 0.3;
    background-color: #ccc;
    pointer-events: none;
}
.big-co-promosubmit {
    position: absolute;
    top: 0px;
    background-color: transparent;
    padding: 0px 10px;
    right: 0px;
    vertical-align: middle;
    height: 100%;
    color: #333;
    font-weight: 900;
    font-size: 20px;
    text-align: center;
    cursor: pointer;
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
}

.bigcheckout-error {
    background-color: red;
    padding: 10px;
    margin-bottom: 10px;
    display: none;
}

.bigcheckout-error h5 {
    color: white;
}

.bigcart__footer {
    font-size: 22px;
    border-bottom: none;
    border-top: none;
    padding: 0 0;
    position: relative;
}

.bigcart__items {
    position: relative;
}

.bigcart__footer__totals__block {
    padding: 3px 0;
    font-size: 16px;
    color: #777;
}
div#global_cart_total {
    font-size: 20px;
    color: #333;
}
.big-co-promoinput {
    background-color:#e5e5e5 !important;
    color: #333;
    outline: none;
    border: none;
    padding: 1rem 1rem;
}
.big-co-promoinput::-webkit-input-placeholder {
    color: #777;
    opacity: 1;
}
.big-co-promoinput::-moz-placeholder {
    color: #777;
    opacity: 1;
}
.big-co-promoinput:-ms-input-placeholder {
    color: #777;
    opacity: 1;
}
.big-co-promoinput::-ms-input-placeholder {
    color: #777;
    opacity: 1;
}
.big-co-promoinput::placeholder {
    color: #777;
    opacity: 1;
}

.big-co-giftcard-btn,.big-co-subscriptions-btn{
    position: relative;
    padding: 5px 10px;
    background-color: var(--second-color);
    color: #fff;
    text-align: center;
    border-radius: 5px;
    margin-top: 5px;
    cursor: pointer;
    border: 1px solid var(--second-color);
}
.big-co-giftcard-btn:hover,.big-co-subscriptions-btn:hover{
    background-color:#fff;
    color:var(--second-color);
}
input#checkoutsubmit.disabled {
    pointer-events: none;
    opacity: 0.4;
    background-color: #333 !important;
}
.big-co-giftcard-btn.disabled,.big-co-subscriptions-btn.disabled {
    pointer-events: none;
    opacity: 0.4;
    background-color: #333 !important;
}
.big-co-sec.subscription{
    display: none;
}
.big-qty.small{

}
.big-co-sec.subscriptions{
    display: none;
}
.subscriptions .big-co-field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.subscriptions .big-co-fields .subslabel {
    text-align: left;
}
.small .big-qty-controls button {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 1rem;
    border-radius: 50%;
    -webkit-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}
.small .big-qty-controls .bigsubqtyselector {
    height: 2rem;
    width: 2rem;
    padding: 0;
    margin: 0 0.5rem;
    text-align: center;
    font-size: 1rem;
    opacity: 0.7;
    -webkit-transition: all 0.7s ease-in-out;
    -o-transition: all 0.7s ease-in-out;
    transition: all 0.7s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: 4px;
}

.small .big-qty-controls:before {
    content: "Apply How Many?";
    position: absolute;
    top: -25px;
    white-space: nowrap;
}
.checkout-status-notif{
    padding: 0px 10px;
    background-color: var(--second-color);
    text-align: center;
    border-radius: 0 0 6px 6px;
    margin-top: 0px;
    font-size: 11px;
    margin: 0 20px;
    display: none;
}

.subs-contactus{
    color: #333333;
    text-align: center;
    width: 100%;
    padding-top: 20px;
}
.checkout-neg-notif{
    padding: 20px;
    background-color: #ff0000;
    color: #fff;
    border-radius: 6px;
    margin-bottom: 50px;
    text-align: center;
    display: none;
}
.checkout-neg-notif-header{
    font-size: 20px;
    font-weight: 600;
}
.checkout-neg-notif-header a{
    color: #fff;
    text-decoration: underline;
}
.checkout-neg-notif-body{
    padding-top:20px;
}
.big-co .bigcart-item-subitem-name-drop {
    display: none;
}

.big-co .big-co-promotion{
    display: none !important;
}

















/* Base for label styling */
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
    position: absolute;
    left: 0;
    opacity: 0.01;
}
[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label {
    position: relative;
    padding-left: 2.3em;
    font-size: 1.05em;
    line-height: 1.7;
    cursor: pointer;
}

/* checkbox aspect */
[type="checkbox"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1.4em;
    height: 1.4em;
    border: 1px solid #cbd5e0;
    background: #fff;
    border-radius: 0.2em;
    -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1),
    0 0 0 rgba(var(--main-color-rgb) 0.2);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1),
    0 0 0 rgba(var(--main-color-rgb) 0.2);
    -webkit-transition: all 0.275s;
    -o-transition: all 0.275s;
    transition: all 0.275s;
}

[type="checkbox"]:checked + label:before {
    border: 1px solid #333;
}

/* checked mark aspect */
[type="checkbox"]:not(:checked) + label:after,
[type="checkbox"]:checked + label:after {
    content: "\f00c";
    position: absolute;
    top: 0.525em;
    font-family: "Font Awesome 5 Pro";
    left: 0.18em;
    font-size: 1.375em;
    color: var(--main-color);
    line-height: 0;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

/* checked mark aspect changes */
[type="checkbox"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0) rotate(45deg);
    -ms-transform: scale(0) rotate(45deg);
    transform: scale(0) rotate(45deg);
}

[type="checkbox"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1) rotate(0);
    -ms-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
}

/* Disabled checkbox */
[type="checkbox"]:disabled:not(:checked) + label:before,
[type="checkbox"]:disabled:checked + label:before {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #d1d1d1;
    background-color: #e9e9e9;
}

[type="checkbox"]:disabled:checked + label:after {
    color: #777;
}

[type="checkbox"]:disabled + label {
    color: #777;
}

/* Accessibility */
[type="checkbox"]:checked:focus + label:before,
[type="checkbox"]:not(:checked):focus + label:before {
    -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1),
    0 0 0 6px rgba(var(--main-color-rgb), 0.2);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1),
    0 0 0 6px rgba(var(--main-color-rgb), 0.2);
}

#creditcard::-webkit-outer-spin-button,
#creditcard::-webkit-inner-spin-button,#cvv::-webkit-outer-spin-button,
#cvv::-webkit-inner-spin-button{
    -webkit-appearance: none;
    margin: 0;
}
#creditcard, #cvv{
    -moz-appearance: textfield;
}

@media (max-width:600px){
    .big-co-field {
        flex-basis:100%;
    }
    .big-co-field-group{
        flex-direction: column;
    }
    .big-co-field input{
        border: 1px solid #d1d1d1;
    }
}

[data-tickets="yes"][data-subscriptions="yes"]{
    display:block !important;
}


.autodonation {
    flex-wrap: wrap;
    background-color: transparent;
    border: 1px solid #d1d1d1;
}
.autodonation-question {
    flex-basis: 100%;
    background-color: #8a2332;
    border-radius: 8px;
    padding: 10px;
    color: #fff;
    margin-top: 10px;
    display: flex;
    align-items: center;
    opacity: 1 !important;
}
.autodonation.donation-maybe > div {
    opacity: .4;
}
.autodonation.donation-no {
    display: none;
}
.autodonation.donation-yes {
    opacity: 1;
}
.donation-yes .autodonation-question {
    display:none;
}
.autodonation-questionanswers {
    white-space: nowrap;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    flex-grow: 1;
}
.autodonation-question i {
    font-size: 26px;
    padding: 5px;
    float: right;
    cursor: pointer;
    border-radius: 6px;
}
.autodonation-question i:hover {
    background-color: #6f1f2d;
}
select.autodonation-select {
    width: auto;
    color: #fff;
    background-color: #ffffff15;
    padding: 3px 2px;
    cursor: pointer;
    margin: 0 4px;
    font-weight: 500;
    border: 1px solid #ffffff66;
}
select.autodonation-select option {
    background-color: #8a2332;
}

.nocart {
    color: #fff;
    text-align: center;
    font-size: 22px;
}