/* --------------------------------------------------------------------------------------------------------------------------------------------------
THEME.LESS
-------------------------------------------------------------------------------------------------------------------------------------------------- */
/* Roboto - lokalni variabilni font (woff2), vaha 100-900 z jednoho souboru. */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: local('Roboto'), url(../assets/fonts/roboto-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: local('Roboto'), url(../assets/fonts/roboto-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* --------------------------------------------------------------------------------------------------------------------------------------------------
VARIABLES.LESS
-------------------------------------------------------------------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------------------------------------------------------------------
MEDIA QUERIES
-------------------------------------------------------------------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------------------------------------------------------------------
SLOŽKY
-------------------------------------------------------------------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------------------------------------------------------------------
BARVY
-------------------------------------------------------------------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------------------------------------------------------------------
ODKAZY
-------------------------------------------------------------------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------------------------------------------------------------------
BASE
-------------------------------------------------------------------------------------------------------------------------------------------------- */
body {
  background-color: #FFF;
  color: #101010;
  font-family: roboto, arial, sans-serif;
}
@media only screen and (min-width: 960px) {
  body {
    background-image: url("../design/bg.gif");
    background-repeat: repeat-x;
  }
}
/* --------------------------------------------------------------------------------------------------------------------------------------------------
ODKAZY
-------------------------------------------------------------------------------------------------------------------------------------------------- */
a {
  color: #006BCF;
  cursor: pointer;
}
a:visited {
  color: #00519D;
}
a:hover,
a:active,
a:focus {
  color: #00519D;
}
/* --------------------------------------------------------------------------------------------------------------------------------------------------
NADPISY
-------------------------------------------------------------------------------------------------------------------------------------------------- */
h2 {
  color: #00519D;
}
/* --------------------------------------------------------------------------------------------------------------------------------------------------
TABULKY
-------------------------------------------------------------------------------------------------------------------------------------------------- */
table th,
table td {
  border: 1px solid #BFE1fE;
}
table th {
  border-bottom: 2px solid #BFE1fE;
}
table tr:nth-child(even) td {
  background-color: #ecf6ff;
}
/* --------------------------------------------------------------------------------------------------------------------------------------------------
SEZNAMY
-------------------------------------------------------------------------------------------------------------------------------------------------- */
dl dt {
  color: #00519D;
}
dl dd {
  color: #7F7F7F;
}
/* --------------------------------------------------------------------------------------------------------------------------------------------------
TLAČÍTKA
-------------------------------------------------------------------------------------------------------------------------------------------------- */
button,
.button {
  background-color: #006BCF;
  color: #FFF;
}
button:hover,
.button:hover {
  background-color: #00519D;
  color: #FFF;
}
/* --------------------------------------------------------------------------------------------------------------------------------------------------
LAYOUT
-------------------------------------------------------------------------------------------------------------------------------------------------- */
.header {
  border-bottom: 1px solid #74befd;
  background-color: #BFE1fE;
}
@media only screen and (min-width: 960px) {
  .header {
    border: 0;
    background-image: url("../design/header.jpg");
  }
  .header .header-logo > a {
    width: 226px;
    height: 90px;
    background-image: url("../design/logo.gif");
  }
}
.header .header-toggle {
  background-color: #FFF;
  color: #006BCF;
}
.header .header-toggle:hover {
  background-color: #00519D;
  color: #FFF;
}
.nav ul li a {
  border-top: 1px solid #d8edfe;
  color: #006BCF;
}
.nav ul li a:hover {
  background-color: #ecf6ff;
  color: #00519D;
}
.nav ul li.nav-current > a {
  background-color: #ecf6ff;
  color: #00519D;
}
.footer {
  border-top: 1px solid #BFE1fE;
}
/* --------------------------------------------------------------------------------------------------------------------------------------------------
MODULE_FORM.LESS
-------------------------------------------------------------------------------------------------------------------------------------------------- */
fieldset {
  border: 1px solid #BFE1fE;
}
fieldset legend {
  color: #00519D;
}
select {
  background-color: #FFF;
  border: 1px solid #DFDFDF;
  color: #101010;
}
select:focus {
  border-color: #006BCF;
}
input[type="checkbox"] + label span {
  border: 1px solid #DFDFDF;
}
input[type="checkbox"]:checked + label span:after {
  color: #006BCF !important;
}
input[type="radio"] + label span {
  border: 1px solid #DFDFDF;
}
input[type="radio"]:checked + label span:after {
  background-color: #006BCF;
}
.input-text,
.input-textarea {
  border: 1px solid #DFDFDF;
}
.input-text:focus,
.input-textarea:focus {
  border-color: #006BCF;
}
