/* MODAL CSS  */

.cols-12,
.cols-11,
.cols-10,
.cols-9,
.cols-8,
.cols-7,
.cols-6,
.cols-5,
.cols-4,
.cols-3,
.cols-2,
.cols-1 {
    float: left;
}

.cols-12 {
    width: 100%;
}

.cols-11 {
    width: 91%;
}

.cols-10 {
    width: 83%;
}

.cols-9 {
    width: 75%;
}

.cols-8 {
    width: 66%;
}

.cols-7 {
    width: 58%;
}

.cols-6 {
    width: 50%;
}

.cols-5 {
    width: 41%;
}

.cols-4 {
    width: 33.333333%;
}

.cols-3 {
    width: 25%;
}

.cols-2 {
    width: 16%;
}

.cols-1 {
    width: 8%;
}

.full-width {
    width: 100% !important;
}

.half-width {
    width: 50% !important;
}

.ingredients .cols {
    padding: 15px;
}
.ingredients{
    clear:both;
}
button.myBtn_multi h3,
button.myBtn_multi p,
.myBtn_multi h3,
.myBtn_multi p {
    z-index: 9 !important;
}

button.myBtn_multi .image,
.myBtn_multi .image {
    z-index: 0 !important;

}

#ingredients p {
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
    position: relative;
}
#ingredients p:before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    border: 1px dotted #000;
    content: '';
    transform: translateY(50%);
}

#ingredients p span {
    background: #FFF;
    z-index: 9;
    padding: 0 10px;
}
.site-content {
    display: block !important;

}
.site-content.all-ingredients-btn {
    width: 100%;
    display: block;
    overflow: auto;
    text-align: center;
}
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 80px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: black;
    background-color: rgba(0, 0, 0, 0.4);
    color: #838383;
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    text-align: left;
    line-height: 1.35;
    max-width: 950px;
    position: relative;
    overflow: auto;
    margin-top: 3rem;
    overflow: auto;
}

.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 1rem;
    top: 1rem;
    cursor: pointer;
}

.modal-content h2 {
    font-size: 2rem;
    font-weight: 200;
    text-align: center;
    line-height: 1;
    margin: 1rem 0 1rem;
    margin-bottom: 2rem;
}

.modal-content img.modal-img {
    max-width: 100%;
    padding-right: 2rem;
}

.modal-content a.button {
    margin-top: 1.5rem;
}

.show-modal {
    display: block !important;
}

button.myBtn_multi,
.myBtn_multi {
    position: relative;
    display: flex;
    padding: 2rem;
    color: #fff !important;
    line-height: 1;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    text-decoration: none;
    height: 20vh;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    -webkit-flex-direction: column;
    flex-direction: column;
    width: 100%;
    background: transparent;
    margin-bottom: 0;
    font-size: 1.1rem;
}

.custom-btn {
    clear: both;
}

button.myBtn_multi h3,
button.myBtn_multi p,
.myBtn_multi h3,
.myBtn_multi p {
    width: 100%;
    margin: 0;
    color: #FFF;
}

button.myBtn_multi h3 {
    line-height: 1.2;
    margin-bottom: 4px;
}

button.myBtn_multi .image,
.myBtn_multi .image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    z-index: -1;
    transform: scale(1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

#ingredients {
    padding-top: 40px;
    text-align: center;
    padding-bottom: 40px;
}

.ingredients h2 {
    font-size: 2rem;
    font-weight: 200;
    text-align: center;
    line-height: 1;
    margin: 1rem 0 1rem;
}

#ingredients p {
    margin-bottom: 5px;
}

.readmore {
    text-transform: uppercase;
    position: relative;
    padding-right: 2.5rem !important;
    transition: all 0.3s ease;
    margin-top: 2vh !important;
    margin-bottom: 1rem !important;
}

.site-content.all-ingredients-btn {
    text-align: center;
    margin-top: 30px;
}

.ingredients a.button.readmore {
    margin-bottom: 0 !important;
}

.readmore:before {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 9px 6px 0 6px;
    border-color: #FFF transparent transparent transparent;
    content: "";
    position: absolute;
    right: 20px;
    top: 18px;
    transition: all 0.3s ease;
    transform: rotate( -180deg);
}

small .readmore:before {
    top: calc(50% - 4px);
}

.readmore.showing:before {
    transform: rotate( 0deg);
}

.moreinfo {
    overflow: hidden;
    /* max-height: 0;
    transition: max-height 0.5s ease; */
    padding: 0 2rem;
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    transition: all 0.2s ease-in;
}

.moreinfo.show {
    /* max-height: 100000px;
    transition: max-height 1s ease; */
    visibility: visible;
    opacity: 1;
    max-height: 100%;
    transition: all 0.2s ease-in;
}

body.single-product .site-content,
body.woocommerce.tax-product_cat .site-content {
    background: transparent;
}

.paypal-buttons iframe {
    z-index: 1 !important;
}

.myBtn_multi:hover .image {
    transform: scale(1.1);
}

@media (max-width:767px) {
    .ingredients .cols {
        padding: 1rem;
    }
    .cols-4 {
        width: 100%;
    }
}

/* Content Boxes
------------------------------------------------------------ */
 
.content-box-blue,
.content-box-gray,
.content-box-green,
.content-box-purple,
.content-box-red,
.content-box-yellow {
    margin: 0 0 25px;
    overflow: hidden;
    padding: 20px;
}
 
.content-box-blue {
    background-color: #d8ecf7;
    border: 1px solid #afcde3;
}
 
.content-box-gray {
    background-color: #e2e2e2;
    border: 1px solid #bdbdbd;
}
 
.content-box-green {
    background-color: #d9edc2;
    border: 1px solid #b2ce96;
}
 
.content-box-purple {
    background-color: #e2e2f9;
    border: 1px solid #bebde9;
	padding: 3%;
	margin-bottom: -5%;
}
 
.content-box-red {
    background-color: #f9dbdb;
    border: 1px solid #e9b3b3;
}
 
.content-box-yellow {
    background-color: #fef5c4;
    border: 1px solid #fadf98;
}