﻿.StylesContainer {
    display: block;
    width: 350px; 
    position: relative;
    padding: 5px 60px;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default radio button */
    .StylesContainer input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }
    .StylesContainer > label {
        margin: 0;
        padding: 0;
    }

/* Create a custom radio button */
.checkmark {
    position: absolute;
    margin: -2px -40px;
    height: 20px;
    width: 20px;
    background-color: var(--NeutralColor);
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.StylesContainer:hover input ~ .checkmark {
    background-color: var(--SecondaryColor);
}

.StylesContainer:hover label{
    color: var(--PrimaryColor);
}

/* When the radio button is checked, add a blue background */
.StylesContainer input:checked ~ .checkmark {
    background-color: var(--SecondaryColor);
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.StylesContainer input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.StylesContainer .checkmark:after {
    top: 5px;
    left: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--BodyColorDarkMode);
}
