/* --------------------------------------------------------------------------------------------------------------------------------------------------
THEME.LESS
-------------------------------------------------------------------------------------------------------------------------------------------------- */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu7GxP.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local('Roboto Bold'), local('Roboto-Bold'), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmWUlfChc9.ttf) format('truetype');
}
/* --------------------------------------------------------------------------------------------------------------------------------------------------
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: 223px;
    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;
}
