/*------- formuláře v článku ------------------------------------------------------------------------------*/

/*------- 0 - tabulka s labely - základní formulář ------------------------------------------------------------------------------*/

/*------- formuláře - kostra ------------------------------------------------------------------------------*/

.form_div{
  text-align: center;
}

fieldset{
  margin: 0;
  padding: 0;
  border: 0;
}

.form_div .form_message{
  display: block;
  padding: 2px 10px;
  text-align: left;
}

.form_div .form_alert, .form_div .form_info, .form_div .form_tip{
  display: block;
  padding: 2px 10px;
  text-align: center;
}

.form_div form{
  margin: 0;
  text-align: center;
}

.form_div table{
  border-collapse: collapse;
  width: 100%;
  margin: 0px auto;
}

.form_div tr{
  border: 0px;
}

.form_div td{
  border: 0px;
  padding: 2px 6px 2px 6px;
}

/*------- ! formuláře - kostra ------------------------------------------------------------------------------*/

/*------- formuláře - prvky ------------------------------------------------------------------------------*/

.form_div input, .form_div textarea, .form_div select, .form_div button{
  margin: 4px;
  padding: 6px;
  background: #eee;
  border: 1px solid #aaa;
  border-radius: 3px;
  outline: none;
 	-webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.3) inset;
	   -moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.3) inset;
	        box-shadow: 0 0 8px rgba(0, 0, 0, 0.3) inset;
}

.form_div input:hover, .form_div textarea:hover{
  background: #fdfdfd;
 	-webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3) inset;
	   -moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3) inset;
	        box-shadow: 0 0 4px rgba(0, 0, 0, 0.3) inset;
}

.form_div select {
  background: #FFFFCC;
}

.form_div input[type="radio"]{
 	-webkit-box-shadow: unset;
	   -moz-box-shadow: unset;
	        box-shadow: unset;
}

.form_div input[type="submit"]{
  padding: 4px 10px;
 	-webkit-box-shadow: unset;
	   -moz-box-shadow: unset;
	        box-shadow: unset;
  border-radius: 5px;
  cursor: pointer;
  cursor: _hand;
}

.form_div input[type="submit"]:hover{
 	-webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3) inset;
	   -moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3) inset;
	        box-shadow: 0 0 4px rgba(0, 0, 0, 0.3) inset;
}

.form_div textarea{
  padding: 4px;
  font-size: 10pt;
}

.form_div label.checkswitch {
  margin: 0;
  position: relative;
  width: 40px;
  height: 24px;
  left: unset;
  top: unset;
  padding: unset;
  border: 0;
  background: initial;
  font-size: initial;
}

.form_div .checkswitch input[type="radio"], .form_div .checkswitch input[type="checkbox"]{
  display:none;
}

.checkslider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  border-radius: 24px;
  -webkit-transition: .4s;
  transition: .4s;
}

.checkslider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  border-radius: 50%;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .checkslider {
  background-color: #2196F3;
}

input:focus + .checkslider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .checkslider:before {
  -webkit-transform: translateX(16px);
  -ms-transform: translateX(16px);
  transform: translateX(16px);
}

.radio_group{
}

.radio_group div{
  margin: 0 0 .6em 0;
}

.radio_group div:last-child{
  margin: 0;
}

.radio_group input:checked + .checkslider {
  background-color: #6FE273;
}

.radio_group input:focus + .checkslider {
  box-shadow: 0 0 1px #6FE273;
}

/*------- ! formuláře - prvky ------------------------------------------------------------------------------*/

/*------- formuláře - validace ------------------------------------------------------------------------------*/

.form_div .form_valid_info{
  position: relative;
  display: inline-block;
  _float: right;
  max-height: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 13px;
}

.form_div .form_info_span, .form_div .form_info_help{
}

.form_div .form_info_help{
}

.form_div .form_info_span{
  position: absolute;
  top: 0;
  padding: 2px;
  line-height: 0px;
}

.form_div img.form_info_img_err, .form_div img.form_info_img_ok{
  padding: 0px;
  margin: 0px;
  border: 0px;
  max-height: 16px;
  max-width: unset;
  z-index: 10;
}

.form_div .form_info_help .form_info_help_err, .form_div .form_info_help .form_info_help_ok{
  padding: 0 4px 0 20px;
  background: #fff;
  color: #333;
  white-space: nowrap;
}

.form_div .captcha_wrap{
  display: inline-block;
  position: relative;
  padding: 0 18px 0 0;
  height: 36px;
  line-height: 36px;
  background: #423E39;
}

.form_div .captcha_wrap_inner{
  display: flex;
  height: 100%;
}

.form_div img.captcha_img_regen{
  display: block;
  position: absolute;
  top: 11px;
  right: 2px;
  cursor: pointer;
}

/*------- ! formuláře - validace ------------------------------------------------------------------------------*/

/*------- ! 0 - tabulka s labely -základní formulář ------------------------------------------------------------------------------*/

/*------- 1 - tabulka bez labelů - jednosloupcová tabulka ------------------------------------------------------------------------------*/

.form_div.form_mode_1{
  text-align: center;
}

.form_div.form_mode_1 .form_message{
  display: block;
  padding: 2px 10px;
  text-align: left;
}

.form_div.form_mode_1 form{
  margin: 0;
  text-align: center;
}

.form_div.form_mode_1 table{
  border-collapse: separate;
  border-spacing: 2px;
  margin: 0px auto;
}

.form_div.form_mode_1 tr{
  border: 0px;
}

.form_div.form_mode_1 td{
  padding: 0;
  position: relative;
  text-align: left;
  padding-top: 6px;
}

.form_div.form_mode_1 td div.intd_group{
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.form_div.form_mode_1 td div.intd_group div.intd{
  flex-grow: 2;
  flex-shrink: 2;
  flex-basis: 33.33%;
  margin-left: 14px;
}

.form_div.form_mode_1 td div.intd_group div.intd{
  flex-grow: 2;
  flex-shrink: 2;
  flex-basis: 33.33%;
}

.form_div.form_mode_1 td div.intd{
  position: relative;
}

.form_div.form_mode_1 td label{
}

.form_div.form_mode_1 .confirmed label{
}

.form_div.form_mode_1 .alerted label{
}

.form_div.form_mode_1 .bunka-label{
}

/*------- ! formuláře - kostra ------------------------------------------------------------------------------*/

/*------- formuláře - prvky ------------------------------------------------------------------------------*/

.form_div.form_mode_1 input, .form_div.form_mode_1 textarea, .form_div.form_mode_1 select, .form_div.form_mode_1 button{
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  overflow: hidden;
  background: none;
  border-radius: 0;
  outline: none;
 	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
	        box-shadow: none;
}

.form_div.form_mode_1 input{
  display: inline-block;
  width: 100%;
}

.form_div.form_mode_1 input#code{
  display: inline-block;
  width: unset;
  height: 42px;
  line-height: 42px;
  margin: 0 0 0 4px;
}

.form_div.form_mode_1 input:hover{
}

.form_div.form_mode_1 select {
  background: none;
}
.form_div.form_mode_1 input[type="checkbox"]{
  width: unset;
}

.form_div.form_mode_1 input[type="submit"]{
}

.form_div.form_mode_1 input[type="submit"]:hover{
}

.form_div.form_mode_1 textarea{
}

/*------- ! formuláře - prvky ------------------------------------------------------------------------------*/

/*------- formuláře - validace ------------------------------------------------------------------------------*/

.form_div.form_mode_1 .hightlight{
}


.form_div.form_mode_1 .form_valid_info{
  float: right;
}

.form_div.form_mode_1 .form_info_span{
  top: 0;
  right: 0;
}

.form_div.form_mode_1 img.captcha_img{
  border: 0;
  height: 31px;
  width: auto;
}

.form_div.form_mode_1 img.captcha_img_regen{
  position: absolute;
  bottom: .4em;
  width: 16px;
  height: auto;
}

/*-------  ! formuláře - validace ------------------------------------------------------------------------------*/

/*------- ! 1 - tabulka bez labelů ------------------------------------------------------------------------------*/

/*------- 2 - bloky s labely ------------------------------------------------------------------------------*/


.form_div.form_mode_2 label{
  display: inline-block;
  width: 30%;

}



/*------- ! 2 - bloky s labely ------------------------------------------------------------------------------*/

/*------- ! formuláře v článku ------------------------------------------------------------------------------*/
