/** Shopify CDN: Minification failed

Line 951:0 Unexpected "}"

**/
.custom-option-lable {
    position: absolute;
    background: #872325;
    color: white;
    font-size: 10px;
    text-transform: uppercase;
    border-radius: 15px;
    padding: 0px 10px;
    top: -8px;
    right: -2px;
}
.product h2 {
    margin-block-start: 0;
    margin-block-end: 0;

    color: #000;
    margin-top: 2rem;
}

.review {
    background-color: rgb(243, 243, 243);
    align-items: start;
    justify-items: start;
    margin: 1rem;
    border-radius: 10px;
    text-align: start;
    padding: 1rem;
}



.review h2 {
    font-size: 2rem;
    font-weight: 600;
    font-style: italic;
    color: #872325;
}

.reviewer {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    color: #000;
}

.name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
}

.reviewer img {
    width: 30%;
    height: 100%;
}

.verified {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.verified svg {
    width: 20px;
    height: 20px;
    fill: green;
}

.verified div {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.product {
    padding: 1rem;
}

.product-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #000;
    margin-top: 1rem;
}

.product-reviews {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: -1rem;
    color: #000;
    font-weight: 500;
    font-size: 1.75rem;
}

.product-reviews img {
    width: 30%;
    height: 100%;
}

.custom-radio {
    display: none;
}

.product-price {
    margin: 0;
    font-size: 2.25rem;
    font-weight: 600;
    color: #000;
}

.croev-options {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
}

.croev-buy-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    margin-top: 0.5rem;
}

.croev-options > :first-child{
    border: 2px dashed #000;
}

.option {
    position: relative;
    font-size: 1.3rem;
    border-radius: 8px;
    color: #000;
    display: flex;
    flex-direction: row;
    cursor: pointer;
    border: 1px solid #884546;
    box-shadow: #00000017 0px 0px 1px 1px;
    transition: all 0.1s ease-in-out;
}

.custom-radio[data-available="disabled"] + label .option {
    opacity:0.4;
}

.custom-radio[data-available="disabled"] + label .option img {
    filter: grayscale(100%);
}

.buy-option {
    display: flex;
    justify-content: center;
    position: relative;
    font-size: 1.3rem;
    padding: 1rem 0;
    margin-top: 2rem;
    border-radius: 8px;
    color: #000;
    display: flex;
    flex-direction: row;
    cursor: pointer;
    border: 1px solid #884546;
    box-shadow: #00000017 0px 0px 1px 1px;
    transition: all 0.1s ease-in-out;
}

.buy-option-text {
    display: flex;
    font-size: 1.5rem;
    flex-direction: column;
    align-items: center;
}

.buy-option-discount {
    position: absolute;
    top: -15px;
    background-color: #872325;
    color: #fff;
    font-size: 1.3rem;
    padding-left: 4px;
    padding-right: 4px;
    border-radius: 5px;
}

.buy-option-price {
    display: flex;
    align-items: center;
}

.buy-option-product-price {
    color: #000;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.buy-option-price > .buy-option-product-price:first-child {
    text-decoration: line-through;
    font-weight: 400;
    margin-right: 0.5rem;
    color: #000;
}

.option img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.option-text {
    display: flex;
    font-size: 1.2rem;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
}

.option:hover {
    border: #872325 1px solid;
    background-color: #ffbdbe;
  }
  
.custom-radio:checked + label .option {
    border: #872325 2px solid;
    background-color: #ffbdbe;
}

.buy-option:hover {
    border: #872325 1px solid;
    background-color: #ffbdbe;
  }
  
.custom-radio:checked + label .buy-option {
    border: #872325 2px solid;
    background-color: #ffbdbe;
}

.croev-add-to-cart {
    display: block;
    width: 100%;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    border-radius: 5px;
    font-weight: 600;
    background-color: #872325;
    padding: 14px 28px;
    cursor: pointer;
    text-align: center;
    margin-top: 2rem;
}
.croev-add-to-cart:disabled{
  opacity:0.5;
  cursor:not-allowed;
  pointer-events:none;
}
.croev-crossell {
    border: #872325 2px dashed;
    border-radius: 10px;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.1s ease-in-out;
}

.croev-crossell img {
    width: 20%;
    border: 0;
    margin: 0.5rem;
}

.croev-crossell-text {
    display: flex;
    flex-direction: column;
    color: #000;
}

.croev-crossell-text h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0;
}

.croev-crossell-text p {
    font-size: 1.2rem;
    font-weight: 400;
    color: #000;
    margin-top: -1rem;
}

.custom-crossell-checkbox {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 1rem;
    background-color: #fff; /* White background */
    border: 2px solid #ccc; /* Gray border */
    border-radius: 4px; /* Rounded border */
    padding: 16px; /* Some padding */
    position: relative; /* Position relative for the pseudo-element */
    cursor: pointer; /* Pointer cursor on hover */
    transition: all 0.1s ease-in-out;
  }
  
/* When the checkbox is checked, change the background color and display the checkmark */
.custom-crossell-checkbox:checked {
    background-color: #872325; /* Green background */
    border-color: #872325; /* Green border */
}

/* Create the checkmark using a pseudo-element only when the checkbox is checked */
.custom-crossell-checkbox:checked::before {
    content: '\2713';
    position: absolute;
    left: 7px;
    top: 1px;
    color: white;
    font-size: 25px;
}

.croev-crossell:has(input:checked) {
    transition: all 0.1s ease-in-out;
    border: #872325 2px solid;
    background-color: #ffbdbe;
}

.croev-crossell:has(input:checked) img {
    border: #872325 1px dashed;
    background-color: #ffbdbe;
}

.croev-features {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
}

.feature img {
    width: 35%;
}

.feature h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #872325;
    margin: 0;
}

.croev-product-desktop {
    display: none;
}

.croev-product-mobile {
    display: block;
}

.croev-product-desc {
    max-width: 550px;
    gap: 1rem;
    margin-top: 3rem;
    text-overflow: ellipsis;
    color: #000;
}

.croev-product-desc p {
    word-wrap: break-word; /* Older browsers */
    overflow-wrap: break-word; /* As of CSS3 */
}

.subscriptions {
    border-radius: 4px;
}
  
.custom-sub-option {
    margin-top: 1rem;
    position: relative;
    padding: 1rem 0.5rem;
    border: 1px solid #872325;
    border-radius: 10px;
    transition: border-width 0.2s, background-color 0.2s;
}

.custom-sub-radio:checked + label .custom-sub-option {
    border: 2px solid #872325; /* Thicker border for the selected option */
    background-color: #ffbdbe; /* Background color for the selected option */
}

/* Hide the default radio button */
.custom-sub-radio {
    display: none;
}

.custom-sub-option label {
    display: block;
    position: relative;
    cursor: pointer;
    padding-left: 35px;
    font-size: 1.75rem;
    margin-bottom: 0;
    user-select: none;
}

/* Create a custom radio button */
.custom-sub-radio-actual {
    position: absolute;
    top: 0;
    left: 0;
    height: 26px;
    width: 26px;
    background-color: #fff;
    border-radius: 50%;
    border: 2px solid #872325;
    transition: all 0.5s ease-in-out;
}

/* When the radio button is checked, add a dot inside it */
.custom-sub-radio:checked + label .custom-sub-radio-actual {
    background-color: #fff;
    transition: all 0.5s ease-in-out;
}

.custom-sub-radio-actual:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-sub-radio:checked + label .custom-sub-radio-actual:after {
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #872325;
    box-sizing: border-box;
    transition: all 0.5s ease-in-out;
}

.sub-option {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease-in-out;
}

.sub-option-price {
    font-size: 2rem;
    font-weight: 600;
    color: #872325;
}

.sub-option-text {
    color: #000;
}

.details {
    border-top: 1px solid #872325;
    display: none;
}

/* Styling for when details are shown */
.details.show {
    display: block;
}

.frequency-selector {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.frequency-label {
    font-size: 1.5rem;
    font-weight: 600;
    color: #872325;
    padding: 0 !important;
}

.frequency-wrapper {
    position: relative;
}

.croev-tallow-options {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
}

.option-title {
    display: flex;
    font-size: 1.5rem;
    font-weight: 600;
    gap: 1rem;
    align-items: center;

}

.option-text-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    padding-left: 1rem;
    font-size: 1.5rem;
}

.option_image {
    width: 80px !important;
    height: 110% !important;
    object-fit: cover !important;
}

.option-prices {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 0.2rem;
}

.option-compare-at-price {
    font-size: 1.2rem;
    font-weight: 400;
    color: #000;
    text-decoration: line-through;
}

.option-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #872325;
}

.tallow-buy-option-discount {
    position: absolute;
    bottom: -5px;
    left: -3px;
    background-color: #872325;
    color: #fff;
    font-size: 1.2rem;
    padding-left: 4px;
    padding-right: 4px;
    border-radius: 5px;
}

.select-wrapper select {
    width: 100%;
    padding: 10px;
    background-color: #872325;
    color: white;
    border: 1px solid #872325;
    border-radius: 5px;
    -webkit-appearance: none; /* Important for removing default arrow */
    -moz-appearance: none;
    appearance: none;
  }
  
  .select-wrapper::after {
    content: '\25BC'; /* Unicode for downward arrow */
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    font-size: 12px;
    color: white; /* Arrow color */
    pointer-events: none; /* Ensures the arrow doesn't interfere with the select functionality */
    display: flex;
    align-items: center;
  }
  
  .frequency-el:hover {
    opacity: 0.8;
  }
  
  .frequency-el:focus {
    outline: none; /* Removes the default focus outline */
    border-color: darken(#872325, 10%); /* A darker border for focus, adjust as needed */
  }

@media screen and (min-width: 840px) {
    .croev-tallow-options {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }

    .option-title {
        display: flex;
        font-size: 2rem;
        font-weight: 600;
        gap: 1rem;
        align-items: center;

    }

    .option-text-info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 0.5rem;
        padding-left: 1rem;
        font-size: 1.5rem;
    }

    .option_image {
        width: 100px !important;
        height: 120% !important;
        object-fit: cover !important;
    }

    .option-prices {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0.7rem;
    }

    .option-compare-at-price {
        font-size: 1.5rem;
        font-weight: 400;
        color: #000;
        text-decoration: line-through;
    }

    .option-price {
        font-size: 1.75rem;
        font-weight: 600;
        color: #872325;
    }

    .tallow-buy-option-discount {
        background-color: #872325;
        color: #fff;
        font-size: 1.3rem;
        padding-left: 4px;
        padding-right: 4px;
        border-radius: 5px;
    }

    .product-info h2 {
        margin-block-start: 0;
        margin-block-end: 0;

        color: #000;
        margin-top: 1rem;
    }

    .croev-product-desktop {
        display: block;
        max-width: 1200px;
        margin: auto;
    }

    .croev-product-mobile {
        display: none;
    }
    
    .product {
        padding: 0;
        margin-top: 5rem;
        display: flex;
        gap: 2rem;
        justify-content: space-between;
    }

    .product-image-div {
        flex-basis: 50%;
    }

    .product-image {
        width: 100%;
        height: 600px;
        object-fit: cover;
        border-radius: 10px;
    }

    .product-info {
        flex-basis: 50%;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .product-title {
        font-size: 3rem;
        font-weight: 600;
        color: #000;
        margin-top: 0;
    }

    .product-reviews {
        display: flex;
        gap: 1rem;
        align-items: center;
        margin-top: -2rem;
        color: #000;
        font-weight: 500;
        font-size: 2rem;
    }

    .product-reviews img {
        width: 20%;
        height: 70%;
    }

    .product-price {
        margin: 0;
        font-size: 2.5rem;
        font-weight: 600;
        color: #000;
    }

    .croev-options {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
    }

    .option img {
        width: 60px;
        height: 70px;
        object-fit: cover;
        border-radius: 8px;
    }

    .option-text {
        display: flex;
        font-size: 1.4rem;
        flex-direction: column;
        justify-content: center;
        gap: 0.5rem;
        padding-left: 1rem;
    }

    .croev-buy-options {
        align-items: start;
        justify-content: start;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        margin-top: -1rem;
    }

    .buy-option {
        display: flex;
        justify-content: center;
        position: relative;
        font-size: 2rem;
        padding: 1rem 0;
        margin-top: 2rem;
        border-radius: 8px;
        color: #000;
        display: flex;
        flex-direction: row;
        cursor: pointer;
        border: 1px solid #884546;
        box-shadow: #00000017 0px 0px 1px 1px;
        transition: all 0.1s ease-in-out;
    }

    .buy-option-text {
        display: flex;
        font-size: 2rem;
        flex-direction: column;
        align-items: center;
    }

    .buy-option-discount {
        position: absolute;
        top: -18px;
        background-color: #872325;
        color: #fff;
        font-size: 1.2rem;
        padding-left: 5px;
        padding-right: 5px;
        border-radius: 5px;
    }

    .buy-option-price {
        display: flex;
        align-items: center;
    }

    .buy-option-product-price {
        color: #000;
        font-size: 2rem;
        font-weight: 600;
        margin: 0;
    }

    .croev-add-to-cart {
        display: block;
        width: 100%;
        border: none;
        color: #fff;
        font-size: 2.5rem;
        border-radius: 5px;
        font-weight: 600;
        background-color: #872325;
        padding: 14px 28px;
        cursor: pointer;
        text-align: center;
        margin-top: 2rem;
        transition: all 0.25s ease-in-out;
    }

    .croev-add-to-cart:hover {
        scale: 1.025;
    }

    .croev-crossell {
        border: #872325 2px dashed;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: space-around;
        gap: 1rem;
    }

    .croev-crossell img {
        width: 15%;
        border: 0;
        border-radius: 10px;
    }

    .croev-crossell-text {
        display: flex;
        flex-direction: column;
    }

    .croev-crossell-text h2 {
        font-size: 2.5rem;
        font-weight: 600;
        color: #872325;
        margin: 0;
    }

    .croev-crossell-text p {
        font-size: 1.2rem;
        font-weight: 400;
        color: #000;
        margin-top: -1rem;
    }

    .custom-crossell-checkbox {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-color: #fff; /* White background */
        border: 2px solid #ccc; /* Gray border */
        border-radius: 4px; /* Rounded border */
        padding: 19px; /* Some padding */
        position: relative; /* Position relative for the pseudo-element */
        cursor: pointer; /* Pointer cursor on hover */
        transition: all 0.1s ease-in-out;
    }

    .croev-features {
        display: flex;
        align-items: center;
        margin-top: 1rem;
    }

    .feature {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .feature img {
        width: 30%;
    }

    .feature h2 {
        font-size: 1.5rem;
        font-weight: 400;
        color: #872325;
        margin: 0;
    }

    .review h2 {
        font-size: 2rem;
        margin: 0;
        font-weight: 600;
        font-style: italic;
        color: #872325;
    }

    .description {
        font-weight: 400;
        color: #000;
    }

    .reviewer img {
        width: 60%;
        height: 100%;
    }

    .review-desktop {
        background-color: rgb(243, 243, 243);
        align-items: start;
        justify-items: start;
        border-radius: 10px;
        text-align: start;
        padding: 1rem;
    }

    .review-desktop h2 {
        font-size: 2rem;
        font-weight: 600;
        font-style: italic;
        color: #872325;
      margin-top:0px;
    }
}

}




/* Default: snippets css*/
.review-desktop {
  display: block;
}

.review-mobile-only {
  display: none;
}
.review-mobile-only  {
        background-color: #f3f3f3;
        align-items: start;
        justify-items: start;
        margin-bottom: 1rem;
        border-radius: 10px;
        text-align: start;
        padding: 1rem;
    } 


/* On screens below 750px (mobile): reverse visibility */
@media screen and (max-width: 839px) {
  .review-desktop {
    display: none !important;
  }

  .review-mobile-only {
    display: block !important;
  }

   .review-desktop  {
        background-color: #f3f3f3;
        align-items: start;
        justify-items: start;
        margin-bottom: 1rem;
        border-radius: 10px;
        text-align: start;
        padding: 1rem;
    }  
  
  .review-mobile-only h2{
    font-size: 12px;    
    color:#872325;
    margin-top: 0rem;
}
  .review-mobile-only .description
  {
    color:black;
    font-size: 10px;
  }
  .name {
    font-size: 12px;
    font-weight: 600;
    color: #000;
}
  p.customer {
        font-size: 12px;

}
  .reviewer img {
    width: 20%;
    height: 100%;
}
}
