﻿
@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

.product_widgets {
    background: var(--white);
    border-radius: 10px;
    padding: .5625rem 3.125rem 1.875rem 1.875rem;
    margin-bottom: 1.875rem
}

    .product_widgets:last-child {
        margin-bottom: 0
    }

.product_widgets--title {
    font-family: "Comic Neue", cursive;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 177.1%;
    color: #232020;
    padding-bottom: .75rem
}

.product_widgets--list {
    border-bottom: 1px solid #e3e3e3;
    padding: .75rem 0 .9375rem
}

    .product_widgets--list:last-child {
        border-bottom: none
    }

.widget_label {
    font-family: "Comic Neue", cursive;
    font-style: normal;
    font-weight: 400;
    color: #878787;
    display: block;
    position: relative;
    padding-left: 1.5625rem;
    margin-bottom: 0;
    cursor: pointer;
    font-size: 14px;
    line-height: 115%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.total_items {
    font-size: 10px
}

.widget_label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 14px;
    width: 14px;
    background-color: transparent;
    border: 1px solid #a7a7a7;
    border-radius: 4px
}

.widget_label:hover input ~ .checkmark {
    background-color: #a7a7a7
}

.widget_label input:checked ~ .checkmark {
    background-color: transparent;
    border-color: var(--light-green)
}

    .widget_label input:checked ~ .checkmark:after {
        display: block
    }

.widget_label .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 10px;
    height: 10px;
    background: var(--light-green);
    border-radius: 3px
}
