
.product-container {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    width: 60%;
    margin: auto;
}
.product-item {
    flex: 0 0 33.333333%;
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}



.choose-product-title {
    color: #07AA51 !important;
    font-size: 34px !important;
    font-weight: bold !important;
    text-transform: uppercase;
    text-align: center;
    padding: 30px 0px 10px 0px;
    margin: 20px 0px 0px 0px !important;
}
.choose-product-subtitle {
    text-align: center;
    color: #333333 !important;
    font-size: 20px !important;
    font-weight: bold !important;
    max-width: 450px;
    margin: 0 auto;
    padding-bottom: 80px;
}
.product-title {
    text-align: center;
    color: #333333 !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    margin: 15px 0px 40px 0px;
    width: 220px;
}
.product-item-details {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0px);
    width: 220px;
    height: 100px;
    opacity: 0;
}
.product-item-details:hover {
    opacity: 1;
}
.product-item:hover .product-item-details {
    opacity: 1;
}

.product-hint {
    background-image: url("./product-thumbnails/hint-image.png");
    width: 175px;
    height: 53px;
    margin-left: 5px;
    position: relative;
}

.product-hint>p {
    position: absolute;
    bottom: 1px;
    left: 5px;
    margin: 0;
    color: white;
    font-size: 13px;
}

.checkbox {
    width: 100%;
    margin: 15px auto;
    position: relative;
    display: block;
}

.checkbox input[type="checkbox"] {
    width: auto;
    opacity: 0.00000001;
    position: absolute;
    left: 0;
    margin-left: -20px;
}
.checkbox label {
    position: relative;
}
.checkbox label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    margin: 4px;
    width: 22px;
    height: 22px;
    transition: transform 0.28s ease;
    border-radius: 3px;
    background-color: white;
    border: 2px solid #7bbe72;
}
.checkbox label:after {
  content: '';
    display: block;
    width: 10px;
    height: 5px;
    border-bottom: 2px solid #7bbe72;
    border-left: 2px solid #7bbe72;
    -webkit-transform: rotate(-45deg) scale(0);
    transform: rotate(-45deg) scale(0);
    transition: transform ease 0.25s;
    will-change: transform;
    position: absolute;
    top: 12px;
    left: 10px;
}
.checkbox input[type="checkbox"]:checked ~ label::before {
    color: #7bbe72;
}

.checkbox input[type="checkbox"]:checked ~ label::after {
    -webkit-transform: rotate(-45deg) scale(1);
    transform: rotate(-45deg) scale(1);
}

.checkbox label {
    min-height: 34px;
    display: block;
    padding-left: 40px;
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer;
    vertical-align: sub;
}
.checkbox label span {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.checkbox input[type="checkbox"]:focus + label::before {
    outline: 0;
}

/** LIGHTBOX MARKUP **/

.lightbox {
	/** Default lightbox to hidden */
	display: none;

	/** Position and style */
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100%;
	text-align: center;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.8);
}

.lightbox img {
	/** Pad the lightbox image */
	object-fit: contain;
    height: 100%;
    margin: auto;
}

.lightbox:target {
	/** Remove default browser outline */
	outline: none;

	/** Unhide lightbox **/
	display: block;
}

.food-buttons {
    font-family: 'Dosis', sans-serif;
    font-weight:bold;
    display: flex; justify-content: space-between;
    width:60%;
    margin: auto;
     padding: 50px 0px;
}

@media (max-width: 900px) {
  .product-item {
        flex: 0 0 50%;
    }
    .lightbox-button {
        display: none
    }
    .product-item-details {
        opacity: 1;
    }
}

@media (max-width: 650px) {
  .product-item {
        flex: 0 0 100%;
    }

    .food-next {
        width: auto;
        height: auto;
        padding: 10px 40px;
        border-radius: 40px;
        margin: 0;
    }
    .food-prev {
        width: auto;
        height: auto;
        margin-top: 20px;
    }
    .food-buttons {
        flex-direction: column;
        align-items: center;
    }
}