/******************* STEPS ********************************/

#content .step{  
  color: var(--black);
  font-size: 18px;
  line-height: 1.6em; 
  margin: 0px; 
  font-weight: 400;  
}

#content .sipka{
  font-size: 20px;
  margin-right: 10px;
  color: var(--lightGrayHover);
  display: inline-block;
  vertical-align: middle;  
}

#content .step.selected{
  font-weight: bold;  
}

#content .step.faded{  
  color: var(--grayHover);
}


/******************* TABLE FORM ********************************/

#content table.form td.left-column{  
  width:40%;
  padding:2px;
  padding-right: 15px;
  text-align: right;
}

#content table.form td.radio-column{  
  width:20px;  
  padding-right:10px;
  text-align: left;  
}


/******************* TABLE FORM INPUT ********************************/

#content table.form input[type=text],
#content table.form input[type=date],
#content table.form input[type=password]{  
  max-width: 300px;
  border-radius: 6px;
  border-color:#d1d2d4;    
  border-color: var(--gray);
  color: var(--black);
  font-weight: 400;
  height: 36px;
}
#content table.form input[type=radio]{  
  margin:0px;
  padding: 0px;  
}

/******************* SWITCH ********************************/

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
  flex-shrink: 0;
}

/* Hide default HTML checkbox */
.switch input {display:none;}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .2s;
  transition: .2s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .2s;
  transition: .2s;
}

input:checked + .slider {
  background-color: #00ca65;
  background-color: var(--blue);
}

input:focus + .slider {
  box-shadow: 0 0 1px #00ca65;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(16px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}


/******************* FORMS VOLNE PLUJICI ********************************/
input[type=text],
input[type=email],
input[type=date],
input[type=password], textarea {
  font-size: 16px;
  line-height: 2em;
  padding-left: 10px;
  border: 1px solid #D1D2D4;
  border-radius: 3px;
  display: inline-block;
  width: 100%;
  min-width: 350px;
  font-size: inherit;
  font-family: inherit;
  outline: 3px solid transparent;
  transition: .15s
}

@media (max-width: 550px) {input[type=text],
  input[type=date],
  input[type=password], textarea {
    width: 100%;
    min-width: auto;
  }}

input[type=text]:focus,
#content input[type=email]:focus,
#content input[type=date]:focus,
#content input[type=password]:focus,
.secondary-box input[type=text]:focus,
.secondary-box input[type=email]:focus,
.secondary-box input[type=date]:focus,
.secondary-box input[type=password]:focus,
.secondary-box textarea:focus
{
  border: 1px solid var(--blue);
  outline-color: rgba(52, 152, 219, 0.3);
}

input.mandatory{
  border:1px solid orange;
}

input[type=submit]{
  font-size: 16px;    
  border:0px;
}

/* textarea{
  font-size: 16px;  
  line-height:1.4em;    
  padding-left:10px; 
  border: 1px solid #D1D2D4;
  border-radius: 3px;
  display:inline-block;  
  width:100%;    
} */

select {font-family: inherit; color: var(--black)}

select.big {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;  

  display:inline-block;
  font-size: 16px;  
  line-height:2em;    
  height:2em;    
  padding-left:10px; 
  padding-right:50px; 
  border: 1px solid var(--gray);
  border-radius: 3px;  
  width:auto;
  margin: 0px; 
  margin-right: 10px; 

  background-image: url("https://www.umimeto.org/asset/global/img/down-arrow.svg"); 
  background-repeat: no-repeat;
  background-position: 160px 8px;   
  background-position: right 6px top 6px;
  background-size: 25px 15px;

} 

/******************* LOGIN INPUTGROUP -- SHOW PASSWORD ********************************/
.inputgroup {
  display: grid;
  grid-template-columns: 5fr minmax(120px, 1fr);
  gap: 0;
}

.inputgroup a {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inputgroup input[type="text"], .inputgroup input[type="password"] {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  z-index: 5;
}

/********************** NOVY CHECK BOX *****************************/

/* Customize the label (the container) */
.container.check {    
  position: relative;
  padding-left: 25px;  
  cursor: pointer;  
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;  
}

/* Hide the browser's default checkbox */
.container.check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark.check {
  position: absolute;
  top: 2px;
  left: 2px;
  height: 16px;
  width: 16px;
  border-radius: 3px;
  background-color: #eee;
  background-color: #ccc;
}

/* On mouse-over, add a grey background color */
.container.check:hover input ~ .checkmark {
  background-color: #ccc;
  background-color: #2196F3;
  background-color: #eee;
}

/* When the checkbox is checked, add a blue background */
.container.check input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark.check:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container.check input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container.check .checkmark:after {
  left: 5px;
  top: 1px;
  width: 4px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*********************** simpler checkbox by TK ********************/
.checknew, .radionew {
  display: flex;
  gap: .4em;
  align-items: center;
}

.checknew:hover input[type="checkbox"] {
  /* background-color: #eeeeee; */
}

.checknew label, .radionew label {
  cursor: pointer;
  text-wrap: wrap;
}

.checknew input[type="checkbox"] {
  cursor: pointer;
  appearance: none;
  font-size: inherit;
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  background-color: #bdc3c7;
  border-radius: 3px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-image: none;
  transition: .1s;
  margin: 0;
}

.checknew input[type="checkbox"]:checked {
  background-image: url('https://umimeto.org/asset/global/img/icons-umime/tickmark.svg');
}

/* .checknew:hover input[type="checkbox"] {background-color: #bdc3c7;} */

.checknew input[type="checkbox"]:checked {background-color: var(--blue);}

.radionew input[type="radio"] {
  cursor: pointer;
  appearance: none;
  font-size: inherit;
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  background-color: #bdc3c7;
  border: 5px solid #bdc3c7;
  border-radius: 100%;
  transition: .1s;
  margin: 0;
}

.radionew input[type="radio"]:hover {
  background: white;
}

.radionew input[type="radio"]:checked {
  background: white;
  border-color: var(--blue);
}





/********************** NOVY RADIO BUTTON *****************************/

/* Customize the label (the container) */
.container.radio {      
  position: relative;
  padding-left: 25px;    
  margin-bottom: 4px;
  margin-right: 20px;
  cursor: pointer;  
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.container.radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;  
}

/* Create a custom radio button */
.checkmark.radio {
  position: absolute;
  top: 1px;
  left: 0;
  height: 17px;
  width: 17px;
  background-color: #eee;
  background-color: #ccc;
  background-color: #bdc3c7;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.container.radio:hover input ~ .checkmark {
  background-color: #ccc;
  background-color: #eee;
}

/* When the radio button is checked, add a blue background */
.container.radio input:checked ~ .checkmark {
  background-color: #2196F3;
  display: flex;
    align-items: center;
    justify-content: center;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark.radio:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.container.radio input:checked ~ .checkmark:after {
  display: block;
  
}

/* Style the indicator (dot/circle) */
.container.radio .checkmark:after {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: white;
}

/********************** MOBILNI VERZE *****************************/

@media screen and (max-width: 550px) {

  input[type=text],input[type=password]{
    min-width: auto;
  }  

}