.choose_options > .options
{
    display: flex;
    flex-direction: column-reverse;
}



.choose_options .option
{
    --padding-y: 0.5em;
    
    display: flex;
    gap: 1em;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 0 1px rgba(0,0,0,0.1);
    position: relative;
    cursor: pointer;
    padding: var(--padding-y) 1em;
}

.choose_options .option:not(:last-child)
{
    --offset: 0.5em;
    
    margin-top: calc( 0em - var(--offset) );
    padding-top: calc( var(--padding-y) + var(--offset) ) ;
}

.choose_options .option.checked
{
    background-color: #f8f8f8;
    z-index: 1;
    margin-top: 0;
    padding-top: var(--padding-y);
}

.choose_options .option.checked + .option
{
    --offset: 0.5em;
    
    margin-bottom: calc( 0em - var(--offset) );
    padding-bottom: calc( var(--padding-y) + var(--offset) ) ;
}




.choose_options .check
{
    --size: 1.5em;
    
    width: var(--size);
    height: var(--size);
    background-color: #fff;
    border: 1px solid #bbb;
    border-radius: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.7em 0;
}

.choose_options .check .icon
{
    display: none;
}

.choose_options .option.checked .check
{
    background-color: #000;
    border-color: transparent;
}

.choose_options .option.checked .check .icon
{
    display: block;
    color: #fff;
}




.choose_options .image img
{
    --w-img: 3em;
    --h-img: 2em;
    
    width: var(--w-img);
    height: var(--h-img);
    max-width: var(--w-img);
    max-height: var(--h-img);
    object-fit: contain;
    object-position: center;
}

.choose_options .option:not(.checked) .image img
{
    filter: grayscale(1);
    opacity: 0.7;
}



.choose_options .content_item .main
{
    font-size: 1.1em;
    font-weight: 500;
}

.choose_options .content_item .sub
{
    font-size: 0.8em;
}




.choose_options .option .content_item_right
{
    font-weight: 500;
    margin-left: auto;
}




.choose_options .option.disabled
{
    border-color: #eee;
    box-shadow: 0 0 1px rgba(50,50,50,0.1);
    cursor: not-allowed;
}

.choose_options .option.disabled > *
{
    opacity: 0.2;
}