/**
* RADIO control
* 
* Nahrazení HTML radio pro mobilní zařízení
* 
* @category   Komponenty
* @copyright  Copyright (c) 2016 Foxtrot Technologies s.r.o. (www.foxtrot.cz)
* @version    1.7, 2024-02-21
* */

.mobile_radio_cont {
	display: flex;
	flex-direction: row;
	margin: 0 0 5px 0;
	cursor: pointer;
	align-items: center;
	flex-grow: 0;
	flex-shrink: 0;
}

.mobile_radio_separator {
	flex-shrink: 0;
	height: 10px;
}

.mobile_radio_button {
	border: solid 1px #000;
	border-radius: 50%;
	-webkit-border-radius: 50%;
    box-sizing: border-box;
    -webkit-user-select: none;
    user-select: none;
    height: 15px;
    width: 15px;
    display: flex;
    flex-direction: column;
    margin: 0 10px 0 0;
	flex-grow: 0;
	flex-shrink: 0;
}

.mobile_radio_button:hover {
    border: solid 1px #585858;
}

.mobile_radio_button:active {
    flex: 0 0 17px;
    height: 17px;
}

.mobile_radio_img {
	display: block;
	width: 0%;
	height: 0%;
	margin: auto;
}

.mobile_radio_img_checked {
	background-color: #eee;
}

.mobile_radio_text_cont {
	display: flex;
	flex-direction: column;
	margin: 0;
}

.mobile_radio_price {
	font-size: 14px;
	color: #000;
	-webkit-user-select: none;
	user-select: none;
	margin: 0 10px 0 0;
	font-weight: bold;
	white-space: nowrap;
}

.mobile_radio_text {
	flex: 1 100%;
	color: #000;
	-webkit-user-select: none;
	user-select: none;
	margin: 0 0 0 10px;
	font-family: 'Avenir';
	font-size: 12pt;
	flex-grow: 0;
	flex-shrink: 0;
}

.mobile_radio_text_w_desc {
	font-size: 14px;
	color: #000;
	font-weight: bold;
	-webkit-user-select: none;
	user-select: none;
}

.mobile_radio_desc {
	font-size: 12px;
	color: #000;
	-webkit-user-select: none;
	user-select: none;
	margin: 5px 0 0 0;
}

.mobile_radio_text_icon {
	width: 20px;
	flex-shrink: 0;
	flex-grow: 0;
}

.mobile_radio_text_prepend_icon {
	width: 40px;
	flex-shrink: 0;
	flex-grow: 0;
	margin: 0 10px 0 0;
}

.mobile_radio_text_line_cont {
	display: flex;
	flex-direction: row;
}