/* Stars Elementor - Color Option */

.stars-color-option {
    display: grid;
    grid-template-columns: 30% 70%;
    width: 100%;
}


.stars-color-option-image > .color-option-image {
    display: none;
    pointer-events: none;
}

.stars-color-option-image > .color-option-image.active {
    display: block;
}

.stars-color-option > .stars-color-option-list {
    padding: 20px;
}

.stars-color-option > .stars-color-option-list > ul {
    display: flex;
    gap: 10px;
    flex-grow: 1;
    width: 100%;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 4px 15px 10px rgba(0, 0, 0, 0.05);
    list-style: none;
    flex-wrap: wrap;
    margin: unset;
    background: #fff;
}

.stars-color-option > .stars-color-option-list > ul > li {
    border-radius: 10px;
    border: 3px solid rgb(215, 215, 215);
    transition: 300ms;
    cursor: pointer;
}

.stars-color-option > .stars-color-option-list > ul > li.active {
    border: 3px solid #EB0A1E;
    transform: scale(1.05);
    
}

/* .stars-color-option > .stars-color-option-list > ul > li.active::after {
    content: "\2713";
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 15px;
    padding: 4px 5px;
    border-radius: 5px;
    height: 20px;
    background: #fff;
    line-height: 13px;
    font-weight: 900;
} */

.stars-color-option > .stars-color-option-list > .color-name {
    background: #252525;
    width: 100%;
    margin: 30px 0px;
    padding: 30px;
    box-shadow: 0px 4px 15px 10px rgba(0, 0, 0, 0.05);
    border-radius: 15px;
}


.stars-color-option > .stars-color-option-list > .color-name > h3 {
    color: #fff;
    text-transform: capitalize;
    text-align: center;
    padding: 0;
    margin: 0;
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.stars-color-option > .stars-color-option-list > .color-name > span {
    color: #fff;
    text-align: center;
    padding: 0;
    margin: 0;
    font-family: Poppins;
    font-size: 16px;
    font-weight: 300;
    display: block;
}

.stars-color-option > .stars-color-option-image {
    align-self: center;
}


.stars-color-option > .stars-color-option-list > p {
    padding:30px;
    background: #fff;
    border-radius: 15px;
    color: #EB0A1E;
    font-family: Poppins;
    font-style: normal;
    line-height: normal;
    box-shadow: 0px 4px 15px 10px rgba(0, 0, 0, 0.05);
    font-size: 16px;
    text-align: center;
}

@media screen and (max-width: 1024px) {
    
}


@media screen and (max-width: 786px) {

    .stars-color-option {
        display: grid;
        grid-template-columns: 100%;
    }

    .stars-color-option > .stars-color-option-list {
        order: 1;
    }
    .stars-color-option > .stars-color-option-list > ul,
    .stars-color-option > .stars-color-option-list > .color-name,
    .stars-color-option > .stars-color-option-list > p {
        padding: 20px;
    }
    .stars-color-option > .stars-color-option-list > .color-name > h3 { 
        font-size: 22px;
    }
    
}


@media screen and (max-width: 640px) {
    .stars-color-option > .stars-color-option-list > .color-name > h3 { 
        font-size: 20px;
    }
}