/* FORM STYLING */
.lef-epo__form-holder {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
}

.lef-epo__form-holder .lef-epo__form-field {
    width: 100%;
}

.lef-epo__form-holder .lef-epo__form-field.half-width {
    width: calc(50% - 7.5px); 
}

.lef-epo__form-holder .lef-epo__form-field .lef-epo__field-description {
    margin-bottom: 15px;
}

.lef-epo__form-holder .lef-epo__form-field .lef-epo__field-description p {
    margin-bottom: 6px;
}

.lef-epo__form-holder .lef-epo__form-field .lef-epo__field-description p:last-child {
    margin-bottom: unset;
}

.lef-epo__form-holder .lef-epo__form-field .lef-epo__field-input-holder {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.lef-epo__form-holder .lef-epo__form-field .lef-epo__field-input-holder.wrap {
    flex-wrap: wrap;
    gap: 6px;
}

.lef-epo__form-holder .lef-epo__form-field .lef-epo__field-input-holder .lef-epo__field__person-label {
    width: 100%;
    font-weight: 700;
}

.lef-epo__form-holder .lef-epo__form-field .lef-epo__field-input-holder .lef-epo__field-input-inner {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.lef-epo__options-pricing {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.lef-epo__options-pricing .lef-epo__option-pricing {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.lef-epo__options-pricing .lef-epo__option-pricing .label {
    display: block;
    font-weight: 700;
}

/* CARD STYLINGS */

.lef-epo__card {
    overflow: hidden;
    display: block;
    width: calc((100% - 20px) / 3);
    box-sizing: border-box;
    transition: opacity .3s ease-in-out;
}

@media only screen and (max-width: 767px) {
    .lef-epo__card {
        width: calc((100% - 10px) / 2);
    }
}

@media only screen and (max-width: 449px) {
    .lef-epo__card {
        width: 100%;
    }
}

.lef-epo__card.disabled {
    pointer-events: none;
    opacity: .6;
}

.lef-epo__card .lef-epo__card-image-holder {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
}

.lef-epo__card .lef-epo__card-image-holder img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.lef-epo__card .lef-epo__card-content-holder {
    padding: 25px;
}

.lef-epo__card .lef-epo__card-content-holder .lef-epo__quantity-holder:not(:has(.lef-epo__add-product-in-product)) {
    display: flex;
    flex-direction: row;
    border: 1px solid lightgray;
    border-radius: 3px;
    margin-top: 10px;
}

.lef-epo__card .lef-epo__card-content-holder .lef-epo__quantity-holder .lef-epo__quantity-minus,
.lef-epo__card .lef-epo__card-content-holder .lef-epo__quantity-holder .lef-epo__quantity-plus {
    outline: unset;
    border: unset;
    background: unset;
    padding: 10px 20px;
}

.lef-epo__card .lef-epo__card-content-holder .lef-epo__quantity-holder .lef-epo__quantity-field {
    border: unset;
    text-align: center;
}

.lef-epo__card .lef-epo__card-content-holder .lef-epo__quantity-holder .lef-epo__add-product-in-product {
    cursor: pointer;
    margin: unset;
    margin-top: 10px;
}