a {
    text-decoration: none;
    
}

.form-check-input {
    border: 2px solid var(--bg-color-gray4)
}

/* .form-check-input:checked {} */

.form-check-input:checked[type=checkbox] {
    background-color: white;
    border: 2px solid var(--bg-color-gray4);
    background-size: 0.75em 0.75em;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('/public/images/Product/Product-final/check-mark-black-solid.svg');
}

.form-check-input:checked[type=radio] {
    background-color: #16c353;
    border: 2px solid var(--bg-color-gray4);
    --bs-form-check-bg-image: url('data:image/svg+xml,<svg width="256px" height="256px" viewBox="0 0 16.00 16.00" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <circle cx="8" cy="8" r="8" fill="#16c353"></circle> </g></svg>');
}

.text-title{
    font-size: 30px;
    font-weight: 500
}

.text-subtitle{
    font-size: 20px;
    font-weight: 300;

}


.form-check-input:focus {
    box-shadow: none;
}

.btn.bg-color-primary:hover {
    background-color: var(--bg-color-primary);
}

.btn.bg-color-secondary:hover {
    background-color: var(--bg-color-secondary);
}

.btn.bg-color-tertiary:hover {
    background-color: var(--bg-color-tertiary);
}

.btn.bg-color-quaternary:hover {
    background-color: var(--bg-color-quaternary);
}

.btn.bg-color-tertiary:hover {
    background-color: var(--bg-color-tertiary);
}

.form-range::-webkit-slider-runnable-track {
    height: 1.5rem;
    background-color: transparent;
    border-radius: 1rem;
}

.form-range::-webkit-slider-thumb {
    width: 2rem;
    height: 2rem;
    background-color: #5aa9ff;
    border-radius: 50%;
}

/* button hander range */
.form-range::-webkit-slider-thumb {
    /* Webkit (Chrome, Safari, Opera, Edge) */
    width: 50px;
    height: 30px;
    border-radius: 25%;
    background: var(--bg-color-secondary);
    /* Example color */
    cursor: pointer;
    /* Add other desired styles */
}

.form-range::-moz-range-thumb {
    /* Webkit (Chrome, Safari, Opera, Edge) */
    width: 50px;
    height: 30px;
    border-radius: 25%;
    background: var(--bg-color-secondary);
    /* Example color */
    cursor: pointer;
    /* Add other desired styles */
}


.form-range::-moz-range-track {
    /* Firefox */
    width: 100%;
    height: 5px;
    background: green;
    /* Example color */
    cursor: pointer;
    /* Add other desired styles */
}

.custom-range {
    background: linear-gradient(to right,
            #5aa9ff 0%,
            #5aa9ff 30%,
            #e5e5e5 30%,
            #e5e5e5 100%);
    height: 6px;
    border-radius: 999px;
}

.card {
    border: 1px solid var(--bg-color-gray4);
}

.card:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.card ul li::marker {
    color: var(--bg-color-black);
    font-size: 1.5rem;
}