/*
Theme Name:   The7 Child
Template:     dt-the7
*/

 /*Hide the default dropdown */
.variations select {
    display: none;
}

.my-variation-label {
    font-weight: bold;
}

.my-variation-options label {
    display: inline-block;
    margin: 5px 5px 5px 0;
    padding: 5px 10px;
    min-width: 36px;
    text-align: center;
    cursor: pointer;
    border-radius: 2px;
    border: 1px solid #ddd;
    background-color: #ffffff;
    transition: background-color 0.3s;
}

.my-variation-options input[type="radio"] {
    display: none;
}

.my-variation-options label:hover {
    background-color: #e0e0e0;
}

.my-variation-options input[type="radio"]:checked + label {
    background-color: #000;
    color: #fff;
}

.my-variation-options input[type="radio"]:disabled + label {
    border-color: #ccc;
    background-color: #eee;
    color: #ccc;
    cursor: not-allowed;
}
