.checkbox {
    font-size: 26px;
}

.overlay {
    z-index: 1001;
    height: 100%;
    position: fixed;
    background: #f9f9f7;
    padding: 40px 20px 0 20px;
    transform: translateX(-100%);
    transition: all 0.3s ease-in-out;
}

.toggle-overlay {
    position: fixed;
    z-index: 1001;
    width: 15px;
    height: 15px;
    top: 15px;
    left: 15px;
    cursor: pointer;
}

.toggle-label {
    z-index: 1002;
}

.burger-line {
    height: 1px;
    width: 100%;
    background-color: black;
    margin-top: 5px;
}

#toggle-overlay-input {
    display: none;
}

#toggle-overlay-input:checked ~ .overlay {
    transform: translateX(0);
}

#product-capsule-container {
    max-height: 60%;
}

.product-capsule-list {
    overflow-y: scroll;
}

.product-capsule-list li {
    margin-bottom: 10px;
}

.product-capsule-checkbox {
    height: 14px;
    width: 21px;
}

#product-family-container {
    max-height: 50%;
}

.product-family-list {
    overflow-y: scroll;
}

.product-family-list li {
    margin-bottom: 10px;
}

.product-family-checkbox {
    height: 14px;
    width: 21px;
}


.return-icon {
    font-size: 24px;
}