﻿    
    :root {
        --cs-color: #0079bf;
        --cs-gray: #A1A2A2;
    }

    /*tile checkbox*/
    .tile-checkbox {
        height: 50px;
        width: inherit;
        position: relative;
    }

    .tile-checkbox input[type="checkbox"] {
        -webkit-appearance: none;
        position: relative;
        height: 100%;
        width: 100%;
        background-color: #ffffff;
        border-radius: 5px;
        cursor: pointer;
        border: 1px solid var(--cs-gray);
        outline: none;
    }

    .tile-checkbox label:after {
        position: absolute;
        content: "";
        top: 13px;
        left: -10px;
        border: 1px solid var(--cs-gray);
        height: 15px;
        width: 15px;
        border-radius: 50%;
    }

    .tile-checkbox input[type="checkbox"]:checked {
        border: 1px solid var(--cs-color);
    }

    .tile-checkbox input[type="checkbox"]:checked + label {
        color: var(--cs-color);
    }

    .tile-checkbox input[type="checkbox"]:checked + label:after {
        border: 1px solid var(--cs-color);
        background: var(--cs-color);
    }

    .tile-checkbox input[type="checkbox"]:checked:after {
        position: absolute;
        font-size: 10px;
        color: white;
        top: 18px;
        left: 12px;
        content: "✔";
        z-index: 999;
    }

    .tile-checkbox label {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        height: 80%;
        /*margin-left: 10px;*/
        position: absolute;
        bottom: 0;
        cursor: pointer;
        color: var(--cs-gray);
    }
    /*--end tile checkbox*/

    /*tile radio*/
    .tile-radio {
        height: 3.5rem;
        width: inherit;
        position: relative;
    }

    .tile-radio input[type="radio"] {
        -webkit-appearance: none;
        position: relative;
        height: 100%;
        width: 100%;
        background-color: #ffffff;
        border-radius: 5px;
        cursor: pointer;
        border: 1px solid var(--cs-gray);
        outline: none;
    }

    .tile-radio label:after {
        position: absolute;
        content: "";
        top: 13px;
        left: 0px;
        /*border: 1px solid var(--cs-gray);*/
        border: 1px solid #ABB5BE;
        height: 1.25rem;
        width: 1.25rem;
        border-radius: 50%;
    }

    .tile-radio input[type="radio"]:checked {
        border: 1px solid var(--cs-color);
    }

    .tile-radio input[type="radio"]:checked + label {
        color: var(--cs-color);
    }

    .tile-radio input[type="radio"]:checked + label:after {
        border: 1px solid var(--cs-color);
        background: var(--cs-color);
    }

    .tile-radio input[type="radio"]:checked:after {
        position: absolute;
        font-size: 1rem;
        color: white;
        top: 16px;
        left: 22px;
        content: "✔";
        z-index: 999;
    }

    .tile-radio label {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        height: 80%;
        position: absolute;
        bottom: 0;
        cursor: pointer;
        /*color: var(--cs-gray);*/
    }
    /*--end tile radio*/

#confirm_selected_pref{
    width: 50%;
    height: 3.5rem;
    font-size: 1rem;
    font-weight: 700;
}