@cache-version: `(new Date()).getTime()`;
/* OUR PRODUCTS SECTIONS */

.all-products {
    background-color: #fff;
    /* background-image: url(../media/hero9.png); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
}

.all-products-wrapper {
    max-width: 1600px;
    width: 100%;
    margin: auto;
    padding-top: 50px;
}

.all-products-title {
    padding-bottom: 50px;
}

.all-products-title .sub-title-additional, .all-products-title .title-additional {
    text-align: center;
    background-position: center bottom;
}

.all-products-inner-wrapper {
    width: 100%;
    /* display: flex; */
    padding-bottom: 50px;
    /* flex-wrap: wrap; */
    /* justify-content: space-between; */
    display: grid;
    grid-template-columns: repeat(auto-fit, 350px);
    grid-template-rows: auto;
    grid-column-gap: 60px;
    justify-content: center;
}

.all-product-item {
    max-width: 350px;
    width: 100%;
    border: 1px solid rgb(245, 245, 245);
    text-align: center;
    background-color: rgba(249, 249, 249, .5);
    transition: all .5s ease;
    display: grid !important;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    margin-bottom: 50px;
    transition: all 0.5s ease-in-out;
}

.all-product-item:hover {
    box-shadow: 0 12px 16px rgb(0 0 0 / 20%);
    transition: all 0.5s ease-in-out;
}

.all-product-image {
    /* max-width: 150px; */
    width: 100%;
    margin: auto;
    padding: 15px;
    height: 220px;
}

.all-product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.all-product-description {
    font-size: 13px;
    /* text-align: center; */
    padding: 20px 0;
    background-color: rgba(249, 249, 249);
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 0fr 0fr 1fr 0fr;
    grid-column-gap: 0px;
    grid-row-gap: 5px;

}

.all-product-description p {
    font-size: 13px;
    padding: 0 20px;
    /* text-align: justify; */
}

.product-name {
    color: #575757;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

.product-type {
    color: #445E39;
    font-size: 22px;
    font-weight: 500;
    text-align: center;
    font-family: 'Bad Script', cursive;
}
.single-product-disclaimer {
    color: #AD415B;
    font-size: 13.5px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 15px;
}
.price {
    color: #445E39;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price>s, .old-price {
    color: #575757;
}

.new-price {
    font-size: 20px;
}

.buttons-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    margin-top: 15px;
}

.all-product-button {
    width: 45%;
    padding: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.all-product-button:first-child {
    background-color: #445E39;
    border: 1px solid #445E39;
    color: #f9f9f9;
    transition: all 0.5s ease-in-out
}

.all-product-button:last-child {
    border: 1px solid #575757;
    color: #445E39;
    background-color: rgba(249, 249, 249, .5);
    transition: all 0.5s ease-in-out
}

.all-product-button:first-child:hover {
    background-color: rgba(249, 249, 249, .5);
    border: 1px solid #575757;
    color: #445E39;
    transition: all 0.5s ease-in-out;
    box-shadow: 0 12px 16px rgb(0 0 0 / 20%);

}

.all-product-button:last-child:hover {
    background-color: #445E39;
    border: 1px solid #445E39;
    color: #f9f9f9;
    transition: all 0.5s ease-in-out;
    box-shadow: 0 12px 16px rgb(0 0 0 / 20%);

}

@media screen and (max-width:715px) {
    .all-products-inner-wrapper {
        justify-content: center;
    }
}

@media screen and (max-width:500px) {
    .buttons-wrapper {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .all-product-button {
        width: 90%;
    }

    .all-product-button:first-child {
        margin-bottom: 15px;
    }

    .all-product-item {
        grid-template-rows: 0fr 1fr;
    }

    .all-product-description {
        grid-template-rows: 0fr 0fr 0fr 0fr;
    }

    .all-product-image {
        max-width: 100px;
    }
}

/* SINGLE PRODUCT PAGE */

.single-products {
    background-color: #fff;
    /* background-image: url(../media/about-us2.png?version=@{cache-version}); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.single-products-wrapper {
    max-width: 1600px;
    width: 100%;
    margin: auto;
    /* padding-top: 50px; */
}

.single-products-title {
    padding-bottom: 50px;
}

.product-name-title {
    color: #575757;
    font-size: 20px;
    font-weight: 700;
}

.single-products-title .sub-title-additional, .single-products-title .title-additional {
    text-align: center;
    background-position: center bottom;
}

.single-products-inner-wrapper {
    width: 100%;
    display: flex;
    padding-bottom: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.single-product-left {
    max-width: 550px;
    width: 100%;
    padding: 100px;
    border-radius: 5px;
    border: 1px solid rgb(245, 245, 245);
    background-color: rgba(249, 249, 249, .5);
    display: flex;
}

.single-product-image {
    max-width: 200px;
    width: 100%;
    padding: 20px;
    margin: auto;
}

.single-product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all .5s ease;
    margin: auto;
}

.single-product-image:hover .single-product-img {
    transform: scale(1.1);
    transition: all .5s ease;
}

.single-product-description {
    max-width: 600px;
    width: 100%;
    font-size: 15px;
    text-align: center;
    padding: 0 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.single-product-description p {
    font-size: 15px;
    text-align: left;
    margin-bottom: 15px;
}

.single-product-name {
    color: #575757;
    font-size: 20px;
    font-weight: 700;
}

.star-wrapper {}

.star {
    max-width: 20px;
    width: 100%;
    object-fit: contain;
}

.single-price {
    color: #445E39;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-price>s {
    color: #575757;
}

.form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    width: 100%;
    justify-content: center;
    text-align: left;
}

.form label{
    margin-top: 15px;
}

.form select, .form input {
    width: 100%;
    background-color: #fff;
    border: 1px solid #dcdde1;
    text-align: left;
    box-shadow: none;
    width: 100%;
    color: #575757;
    border-radius: 5px;
    padding: 10px;
    /* margin-bottom: 15px; */
    outline: none;
    background-color: rgba(249, 249, 249, .7);
    -webkit-appearance: none;
}

select {
    padding: 12px 10px;
}

select:hover, input:hover, select:focus, input:focus {
    outline: none;
}


#orderForm>label.error {
    position: unset;
    display: block;
    background: #A52A2A;
    color: white;
    font-size: 13px;
    margin: 5px auto 0px;
    margin-top: unset!important;
    padding: 5px 10px;
    border-radius: 5px;
    width: 80%;
    text-align: center;
}


.item-gift {
    display: none;
    margin: 10px 0;
    font-weight: 800;
    font-size: 20px;
    line-height: 35px;
    text-align: center;
    color: #445E39;
}

.item-gift>.old {
    color: #575757;
    font-weight: 500;
    font-size: 16px;
}

.order-btn {
    padding: 10px 20px;
    font-weight: 500;
    color: #fff;
    border: 1px solid #445E39;
    background-color: #445E39;
    text-align: center;
    display: flex;
    max-width: 150px;
    width: 100%;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    transition: all .5s ease;
    cursor: pointer;
    margin: 15px 0 0 auto;
}

.order-btn:hover {
    border: 1px solid #575757;
    color: #575757;
    background-color: transparent;
    transition: all .5s ease;
}

.check-other-products {
    text-align: right;
    margin-top: 15px;
    color: #445E39;
}

.product-information {
    max-width: 1600px;
    width: 100%;
    padding: 50px 0;
    display: flex;
    margin: auto;
    border-top: 1px solid #cfcfcf;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.product-information-wrapper {
    width: 87.5%;
    margin-bottom: 50px;
}

.product-information-image-wrapper {
    display: flex;
    width: 90%;
    margin-bottom: 50px;
}

.product-information-image {
    max-width: 200px;
    width: 100%;
    padding: 20px;
    margin: auto;
}

.product-information-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin: auto;
}

.product-information-left {
    /* max-width: 220px; */
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.product-information-right {
    /* max-width: 220px; */
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.product-information-description {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 10px;
    justify-content: center;
}

.product-information-description-text {
    font-size: 14px;
    width: 90%;
    padding: 0 10px;
}

.product-info-img {
    max-width: 70px;
    width: 100%;
    max-height: 70px;
    height: 100%;
}

.product-information-title {
    color: #575757;
    font-size: 18px;
    font-weight: 700;
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 15px;
}

.product-information-title:before, .product-information-title:after {
    position: absolute;
    content: '';
    width: 30px;
    left: 15px;
    top: 100%;
    height: 2px;
    background-color: #445E39;
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.product-information-title:before {
    width: 30px;
}

.product-information-title:after {
    width: 2px;
    margin-left: 20px;
}

.product-information-list {
    font-size: 14px;
    margin-left: 15px;
}

.product-information-list li::marker {
    color: #445E39;
}

.product-benefit-wrapper {
    max-width: 1600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 50px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.product-benefit-inner-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px 50px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.product-benefit-image-wrapper {
    display: flex;
    align-items: center;
    max-width: 30%;
    width: 100%;

}

.product-benefit-image {
    max-width: 130px;
    width: 100%;
    position: relative;
    height: fit-content;
}

.product-benefit-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-benefit-description p {
    font-size: 15px;
}

@media screen and (max-width: 1200px) {
    .single-product-left {
        max-width: 800px;
        margin: 0 50px;
    }

    .single-product-description {
        margin-top: 50px;
        max-width: 900px;
    }

    .form {
        max-width: 900px;
    }

    .product-information-image {
        display: none;
    }

    .product-benefit-image-wrapper {
        display: flex;
        align-items: center;
        width: 100%;
        max-width: 70%;
    }

    .product-benefit-inner-wrapper {
        justify-content: center;
    }
}

@media screen and (max-width: 1060px) {
    .product-information-image-wrapper {
        flex-direction: column;
    }
}

@media screen and (max-width: 650px) {
    .product-benefit-image-wrapper {
        display: flex;
        align-items: center;
        width: 100%;
        max-width: 100%;
    }
}

@media screen and (max-width: 500px) {
    .single-product-left {
        padding: 25px;
    }

    .all-product-item {
        max-width: 300px;
        margin: auto auto 50px auto;
    }

    .product-info-img {
        display: none;
    }

    .product-information-description-text {
        width: 100%;
        padding: 0;
    }

    .product-information-description {
        padding: 10px 0;
    }

    .product-information-wrapper {
        width: 90%;
    }

    .order-btn {
        max-width: unset;
    }

}


.form-checkbox-inputs {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto 0;
}


/* The container */

.container {
    display: flex;
    position: relative !important;
    padding-left: 35px !important;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #575757;
    margin-bottom: 15px;
}

.container a {
    color: #445E39;
}

.container {
    padding: unset;
    top: unset;
    left: unset;
    -webkit-transition: unset;
    transition: unset;
    pointer-events: unset;
    font-size: unset;
}


/* Hide the browser's default checkbox */

.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */

.checkmark {
    position: absolute;
    top: 0px;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 100%
}

/* On mouse-over, add a grey background color */

.container:hover input~.checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add an orange background */

.container input:checked~.checkmark {
    background-color: #445E39;
}



/* Create the checkmark/indicator (hidden when not checked) */

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}


/* Show the checkmark when checked */

.container input:checked~.checkmark:after {
    display: block;
}



/* Style the checkmark/indicator */

.container .checkmark:after {
    left: 8px;
    top: 4px;
    width: 7px;
    height: 11px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


label#privacy-error {
    top: 10px;
    left: 35px;
}