/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/


.show_km_price{
    font-size: 14px;
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-top: 10px;
    position: relative;
    width: fit-content;
}


.show_km_price input{
    right: 0px;
    width: 40px;
    height: 20px;
    z-index: 2;
    opacity: 0;
    cursor: pointer;
}

.show_km_price::before{
    content: '';
    background: #eaeaea;
    width: 40px;
    height: 20px;
    right: 5px;
    position: absolute;
    border-radius: 20px;
    border: 1px solid #cfcfcf;
}

.show_km_price input:checked + .slider{
    right: 9px;
    background: #e48888;
}

.show_km_price:has(input:checked)::before{
    background: #ffe7e7;
    border: 1px solid #e48888;
}

.show_km_price .slider{
    width: 15px;
    height: 15px;
    display: inline-block;
    background: #a7a7a7;
    z-index: 1;
    position: absolute;
    right: 27px;
    border-radius: 50%;
    transition: .3s;
}

.single_variation_wrap .show_km_price{
    display: none;
}

.hidden-fields-container{
    display: none;
}