

.register {
	background-color: white;
	color: black;
	border: 1px solid white; 
}

a {
	color: var(--blue);
}

input,
select,
textarea
 {
    padding: 12px 20px;
    padding-right: 40px; 
    border: 0px solid #aaa;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    font-size: 15px;
	
	background-color: #F0F2F5;
	
}

input[type=checkbox] {
    width: 30px;
}

.container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 10px;
  margin-top: 5px;
  cursor: pointer;
  text-align: left; 
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-left: 20px; 
  padding-top: 3px; 
  max-width: 100%;  
}

/* Hide the browser's default checkbox */
.container input {
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;  
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #ccc;  
  // border: 2px solid silver;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #ccc;
  
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: #0F4C81;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;  
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
  display: block;  
}

/* Style the checkmark/indicator */
.container .checkmark:after {
  left: 8px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);  
}


form {
	max-width: 600px; 
}

input, 
select  {
	width: 95%;
}

ol li {
	margin-bottom: 10px; 
}


.mygrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-gap: 1rem;
}

.vysgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 10px;
  width: 100%;           /* roztáhne se přes celý viewport */
}

.vysgrid img {
  width: 100%;           /* obrázky vyplní buňku */
  height: auto;
  object-fit: cover;     /* udrží proporce */
}

.obchodnik {
    width: 100%;
    height: auto;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;    
    background-color: #F0F2F5;
    padding: 20px; 
    margin-right: 20px;       
}

.reg_infobox_info {
	padding: 10px;
	background-color: silver; 	
	background-color: var(--blue);
	color: white;
}

ul.std {
	text-align: left; 
}

ul.std li {
	margin-bottom: 10px;
	padding-left: 20px; 
}



.tooltip .tooltiptext {
  visibility: hidden;
  width: 200px;
  background-color: #0F4C81;
  color: white;
  text-align: center;
  -webkit-border-radius: 10px;
  -webkit-border-top-left-radius: 0;
  -moz-border-radius: 10px;
  -moz-border-radius-topleft: 0;
  border-radius: 10px;
  border-top-left-radius: 0;
  padding: 5px 10px;
  font-size: 14px;
  position: absolute;
  left: 24px;
  top: 18px; 
  z-index: 1;
  text-align: left;
  line-height:18px;
  border: 1px dashed white; 
}

.tooltip.top .tooltiptext {
  top: auto;
  bottom: 45px; 
  left: -80px;
  border-radius: 10px !important;
  text-align: center;
}

@media only screen and (max-width: 950px) {
  .tooltip .tooltiptext {
     left: -205px; 
    -webkit-border-radius: 10px;
    -webkit-border-top-right-radius: 0;
    -moz-border-radius: 10px;
    -moz-border-radius-topright: 0;
    border-radius: 10px;
    border-top-right-radius: 0;
  }
}

@media only screen and (max-width: 400px) {
  .tooltip .tooltiptext {
     display: none;
  }
}


.tooltip:hover .tooltiptext {
  visibility: visible;
}


.lineinfo {
    position: absolute;
    display: inline-block;
    font-family: sans-serif;
    font-weight: 500;
    text-align: center;
    width: 25px;
    height: 25px;
    font-size: 17px;
    border-radius: 1.4ex;
    margin-right: 4px;
    margin-top: 9px;
    margin-left: -33px;  
    padding: 2px;
	padding-bottom: 5px; 
    color: white;
    background-color: #0F4C81;
    cursor: pointer;
    text-decoration: none;    
}

.circletag {
    display: block;
    width: 200px;
    height: 200px;
    background: #E6E7ED;
    -moz-border-radius: 100px;
    -webkit-border-radius: 100px;
    background-image: url(no.png);
    background-position:50% 50%;
    background-repeat:no-repeat; 
	background-size: cover;
}

 .video-container {
    overflow: hidden;
    position: relative;
    width:100%;
    max-width: 700px; 
	max-height: 100%;	
}

.video-container::after {
    padding-top: 56.25%;
    display: block;
    content: '';
	max-height: 100%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;	
}