.wdr-free-item-badge {
    display: inline-block;
    padding: 4px 8px;
    line-height: 1;
    background-color: #3d9cd2;
    color: white;
    border-radius: 3px;
}

.wdr-cart-item-variant-select-toggle {
    color: grey;
    cursor: pointer;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1em;
    transition: 0.5s;
}

.wdr-cart-item-variant-select-toggle-active,
.wdr-cart-item-variant-select-toggle:hover {
    color: #444;
}

.wdr-cart-item-variant-select-toggle:after {
    content: '\02795'; /* unicode character for "plus" sign (+) */
    font-size: 12px;
    color: #777;
    margin-left: 10px;
}

.wdr-cart-item-variant-select-toggle-active:after {
    content: "\2796"; /* unicode character for "minus" sign (-) */
}

.wdr-cart-item-variant-select {
    padding: 0 18px;
    display: none;
    background-color: white;
    overflow: hidden;
}

.wdr-cart-item-variant {
    display: flex;
    padding: 5px;
    cursor: pointer;
}

.wdr-cart-item-variant-name {
    padding-left: 10px;
}


.wdr-modal {
    display: none;
    position: fixed;
    padding-top: 100px;
    top: 0;
    left: 0;
    z-index: 1000000;
    overflow: auto;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}
.wdr-modal .wdr-modal-content {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    width: 80%;
    margin: auto;
    background-color: #fff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.wdr-modal .wdr-modal-close {
    margin-left: auto;
    padding: 0 6px;
    color: #4a5568;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.wdr-modal .wdr-modal-close:hover,
.wdr-modal .wdr-modal-close:focus {
    color: #e53e3e;
    text-decoration: none;
    cursor: pointer; }
.wdr-modal .wdr-modal-header,
.wdr-modal .wdr-modal-footer {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    background-color: #f7fafc;
    color: #1a202c;
}
.wdr-modal .wdr-modal-header h1,
.wdr-modal .wdr-modal-header h2,
.wdr-modal .wdr-modal-header h3,
.wdr-modal .wdr-modal-header h4,
.wdr-modal .wdr-modal-footer h1,
.wdr-modal .wdr-modal-footer h2,
.wdr-modal .wdr-modal-footer h3,
.wdr-modal .wdr-modal-footer h4 {
    padding: 0;
    margin: 0;
}
.wdr-modal .wdr-modal-body {
    padding: 8px 16px;
}
.wdr-animate-top {
    animation-name: wdr-animate-top;
    animation-duration: 0.3s;
}
.wdr-animate-fade {
    animation-name: wdr-animate-fade;
    animation-duration: 0.3s;
}
.wdr-modal .sku_wrapper {
    display: block;
}
@keyframes wdr-animate-top {
    from {
        top: -300px;
        opacity: 0; }
    to {
        top: 0;
        opacity: 1; }
}

@keyframes wdr-animate-fade {
    0% {
        opacity: 0; }
    100% {
        opacity: 1; }
}

.wdr-products {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0;
    transition: opacity .4s ease-in-out;
}

.wdr-products .wdr-product {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
    max-width: 256px;
}

.wdr-product .wdr-product-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: auto;
}