/**
* CHECKBOX control
* 
* Nahrazení HTML checkboxu pro mobilní zařízení
* 
* @category   Komponenty
* @copyright  Copyright (c) 2016 Foxtrot Technologies s.r.o. (www.foxtrot.cz)
* @version    1.6, 2020-04-28
*/

.mobile_checkbox_checkbox {
    border: solid 1px #000;
    background-color: #fff;
    border-radius: 15%;
    -webkit-border-radius: 15%;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    flex: 0 0 15px;
    height: 15px;
    display: flex;
    flex-direction: column;
}

.mobile_checkbox_checkbox:hover {
    border: solid 1px #585858;
}

.mobile_checkbox_checkbox:active {
    flex: 0 0 17px;
    height: 17px;
}

.mobile_checkbox_text_icon {
	margin: 0 -5px 0 10px;
}

.mobile_checkbox_text {
	flex: 1 100%;
	font-size: 14px;
	color: #000;
	-webkit-user-select: none;
	user-select: none;
	margin: auto 0 auto 10px;
	cursor: pointer;
}

.mobile_checkbox_text a {
	font-size: 14px;
	color: #000;
}

.mobile_checkbox_img {
	display: block;
	width: 0%;
	height: 0%;
	margin: auto;
}

.mobile_checkbox_img_checked {
	background-color: #eee;
}

.mobile_checkbox_text_cont {
	display: flex;
	flex-direction: column;
	margin: 0 0 0 10px;
}

.mobile_checkbox_text_w_desc {
	font-size: 14px;
	color: #000;
	font-weight: bold;
	-webkit-user-select: none;
	user-select: none;
}

.mobile_checkbox_desc {
	font-size: 12px;
	color: #000;
	-webkit-user-select: none;
	user-select: none;
	margin: 5px 0 0 0;
}
