button#wccs-popup-btn {
    background: rgba(229, 35, 41, 1) !important;
    color: #fff !important;
}

h3#wccs-popup-colour {
    padding-top: 20px !important;
    display: block !important;
}

body .variation dt.variation-SampleColour {
    display: none !important;
}

.wccs-wrapper {
    margin: 25px 0;
}

.wccs-group {
    margin-bottom: 25px;
}

.wccs-group h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 15px;
    text-transform: uppercase;
}

.wccs-option {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    border-radius: 8px;
    transition: .3s;
}

.wccs-option:hover {
    border-color: #000;
}

.wccs-option.active {
    background: #fafafa;
}

.wccs-option input[type=radio] {
    margin: 0;
}

.wccs-name {
    font-size: 15px;
    font-weight: 500;
}

.wccs-swatch {
    width: 36px;
    height: 36px;
    border: 1px solid #ccc;
    object-fit: cover;
}

.wccs-color {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #ccc;
    display: inline-block;
}

@media(max-width:767px) {
    .wccs-option {
        padding: 10px;
    }

    .wccs-name {
        font-size: 14px;
    }
}

.wccs-error {
    display: none;
    color: #b81c23;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 600;
}

#wccs-popup {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
}

.wccs-popup-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .55);
}

.wccs-popup-box {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 25px;
    width: 320px;
    text-align: center;
}

#wccs-popup-img {
    width: 220px;
    height: auto;
    margin: auto;
    display: block;
}

#wccs-close-popup {
    position: absolute;
    right: 15px;
    top: 10px;
    cursor: pointer;
    font-size: 28px;
}

#wccs-popup button {
    width: 100%;
    margin-top: 20px;
}

.wccs-group {
    margin-bottom: 28px;
}

.wccs-heading {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    font-size: 15px;
}

.wccs-title {
    font-weight: 700;
    text-transform: uppercase;
    color: #111;
}

.wccs-selected-name {
    font-weight: 500;
    color: #666;
}

.wccs-group label {
    margin: 0;
}

.wccs-option {
    display: inline-flex;
    margin-right: 10px;
    cursor: pointer;
}

.wccs-option input {
    display: none;
}

.wccs-swatch,
.wccs-color {
    width: 34px;
    height: 34px;
    border: 2px solid #d9d9d9;
    transition: .25s;
    box-sizing: border-box;
}

.wccs-color {
    display: block;
}

.wccs-option.active .wccs-swatch,
.wccs-option.active .wccs-color {
    border-color: #000;
    transform: scale(1.05);
}

.wccs-option:hover .wccs-swatch,
.wccs-option:hover .wccs-color {
    border-color: #000;
}