@import url('font-awesome.min.css');
.ekko-lightbox {
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-right: 0 !important;
}
.ekko-lightbox-container {
  position: relative;
}
.ekko-lightbox-container > div.ekko-lightbox-item {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
}
.ekko-lightbox iframe {
  width: 100%;
  height: 100%;
}
.ekko-lightbox-nav-overlay {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
}
.ekko-lightbox-nav-overlay a {
  -ms-flex: 1;
  flex: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s;
  color: #fff;
  font-size: 30px;
  z-index: 1;
}
.ekko-lightbox-nav-overlay a > * {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.ekko-lightbox-nav-overlay a > :focus {
  outline: none;
}
.ekko-lightbox-nav-overlay a span {
  padding: 0 30px;
}
.ekko-lightbox-nav-overlay a:last-child span {
  text-align: right;
}
.ekko-lightbox-nav-overlay a:hover {
  text-decoration: none;
}
.ekko-lightbox-nav-overlay a:focus {
  outline: none;
}
.ekko-lightbox-nav-overlay a.disabled {
  cursor: default;
  visibility: hidden;
}
.ekko-lightbox a:hover {
  opacity: 1;
  text-decoration: none;
}
.ekko-lightbox .modal-dialog {
  display: none;
}
.ekko-lightbox .modal-footer {
  text-align: left;
}
.ekko-lightbox-loader {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
}
.ekko-lightbox-loader > div {
  width: 40px;
  height: 40px;
  position: relative;
  text-align: center;
}
.ekko-lightbox-loader > div > div {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  animation: a 2s infinite ease-in-out;
}
.ekko-lightbox-loader > div > div:last-child {
  animation-delay: -1s;
}
.modal-dialog .ekko-lightbox-loader > div > div {
  background-color: #333;
}
@keyframes a {
  0%,
  to {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
* {
  font-family: 'Source Sans Pro', sans-serif;
}
html,
body {
  height: 100%;
}
body {
  background-color: #fafafa;
  padding: 0;
}
a:hover {
  color: #7c77c3;
}
.shadow {
  box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.15);
}
.clearfix {
  clear: both;
}
.alert-wrapper {
  position: absolute;
  left: 50%;
  width: 40%;
  margin-left: -20%;
  bottom: 20px;
  animation-name: hide;
  opacity: 0;
  z-index: 1;
  animation-duration: 7s;
}
.alert-wrapper .alert {
  martgin-top: 5px;
  border-radius: 0px;
  padding-bottom: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  border: 0px none;
  position: relative;
}
.alert-wrapper .alert .fa {
  position: relative;
  left: -5px;
  top: 5px;
  font-size: 2em;
}
.alert-wrapper .alert:before {
  animation-name: loading;
  animation-duration: 5s;
  content: "";
  height: 5px;
  position: absolute;
  left: 0px;
  bottom: 0px;
  background: #7c77c3;
  width: 100%;
}
@keyframes loading {
  from {
    width: 0px;
  }
  to {
    width: 100%;
  }
}
@keyframes hide {
  15% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  90% {
    opacity: 1;
    left: 50%;
  }
  100% {
    opacity: 0;
    left: -1500px;
  }
}
nav.navbar {
  padding: 0;
  margin-bottom: 1em;
  position: relative;
}
nav.navbar .navbar-brand {
  margin-top: 10px;
}
nav.navbar .navbar-brand img {
  height: 50px;
}
nav.navbar li {
  position: relative;
}
nav.navbar li ul {
  display: none;
}
nav.navbar li.nav-item:hover a {
  color: #7c77c3 !important;
}
nav.navbar li.nav-item:hover ul {
  box-shadow: 2px 2px 10px 5px rgba(50, 50, 50, 0.25);
  display: block;
  position: absolute;
  z-index: 100;
  left: -50px;
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  width: 250px;
  list-style-type: none;
}
nav.navbar li.nav-item:hover ul li:last-child a {
  border-bottom: 0;
}
nav.navbar li.nav-item:hover ul li a {
  font-weight: normal;
  color: #777 !important;
  padding: 5px !important;
  display: block;
  border-bottom: 1px solid #fafafa;
}
nav.navbar li.nav-item:hover ul li a:hover {
  text-decoration: none;
  color: #7c77c3 !important;
}
nav.navbar li a,
nav.navbar li span {
  color: #777 !important;
  padding: 20px 10px !important;
  cursor: pointer;
}
nav.navbar li a.active,
nav.navbar li span.active {
  color: #7c77c3 !important;
  font-weight: 600;
}
nav.navbar li.login {
  border-top: 0;
}
nav.navbar li.login > a,
nav.navbar li.login > span {
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.15);
  padding: 8px 18px !important;
  background-color: #fff;
  border: 1px solid #7c77c3;
  color: #7c77c3 !important;
  margin: 12px 0 10px 25px !important;
  display: block;
  border-radius: 3px;
}
nav.navbar li.login > a i,
nav.navbar li.login > span i {
  margin-left: 10px;
}
nav.navbar li.login > a:hover,
nav.navbar li.login > span:hover {
  text-decoration: none;
}
@media only screen and (max-width: 1199px) {
  nav.navbar li a {
    padding: 20px 8px !important;
  }
  nav.navbar li.login > a,
  nav.navbar li.login > span {
    padding: 8px 10px !important;
  }
  nav.navbar li.login > a i,
  nav.navbar li.login > span i {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  nav.navbar #navbarNavDropdown {
    background-color: #fff;
    position: absolute;
    box-shadow: 2px 2px 10px 5px rgba(50, 50, 50, 0.5);
    top: 80px;
    width: 90%;
    border: 1px solid #ccc;
    border-radius: 5px;
    left: 5%;
    z-index: 100;
    padding: 20px 0;
  }
  nav.navbar #navbarNavDropdown li {
    border-bottom: 1px solid #fafafa;
  }
  nav.navbar #navbarNavDropdown li a,
  nav.navbar #navbarNavDropdown li span {
    color: #444 !important;
    font-weight: bold;
    padding: 5px 0px !important;
    text-align: center;
  }
  nav.navbar #navbarNavDropdown li ul {
    position: relative;
    box-shadow: none;
    width: auto;
    padding: 0 0 10px 0;
    left: 0px;
  }
  nav.navbar #navbarNavDropdown li ul li {
    border-bottom: 0 !important;
  }
  nav.navbar #navbarNavDropdown li ul li a {
    font-weight: normal;
    border-bottom: 0 !important;
  }
  nav.navbar #navbarNavDropdown li.login > a,
  nav.navbar #navbarNavDropdown li.login > span {
    box-shadow: none;
    padding: 5px 8px !important;
    border: 0;
    margin: 0 !important;
    color: #444 !important;
  }
  nav.navbar #navbarNavDropdown li.login > a i,
  nav.navbar #navbarNavDropdown li.login > span i {
    display: none;
  }
}
#main {
  padding-top: 2em;
  padding-bottom: 4em;
}
#main h1 {
  font-weight: 100;
  font-size: 2.5em;
  margin-bottom: 0.75em;
}
#main h2,
#main .h2 {
  margin-top: 1.5em;
  font-weight: 300;
  font-size: 1.7em;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
  border-bottom: 1px solid #eee;
}
#main em.podnadpis {
  margin-top: -1.8em;
  font-size: 1.2em;
  margin-bottom: 1.8em;
  color: #aaa;
  display: block;
}
#main ul {
  list-style-type: square;
  margin-left: 0;
  padding-left: 1em;
}
#main ol {
  margin-left: 0;
  padding-left: 1em;
}
#main ol li {
  margin-bottom: 0.5em;
}
#main ol li ol {
  list-style-type: lower-alpha;
}
#main ol li ol li {
  margin-bottom: 0.25em;
}
#main a {
  color: #7c77c3;
}
#content {
  padding-bottom: 2em;
}
#content .newsitem {
  margin-bottom: 1em;
  border-bottom: 1px solid #eee;
}
#content .newsitem .date {
  float: left;
  margin: 0 10px 5px 0;
  background-color: #fff;
  border: 1px solid #eee;
  border-top: 4px solid #7c77c3;
  text-align: center;
  color: #7c77c3;
  display: block;
  font-size: 0.9em;
  padding: 8px 4px;
}
#content .newsitem .date span {
  width: 50px;
  line-height: 0.7em;
  display: block;
  font-weight: bold;
}
#content .newsitem .date span.year {
  padding: 5px;
  display: block;
}
#content .newsitem h3 {
  font-weight: 400;
  font-size: 1.1em;
  margin-bottom: 0.5em;
}
#content .newsitem p {
  font-size: 0.8em;
}
#content .card {
  position: relative;
  background-color: #fff;
  box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.15);
  overflow: hidden;
  color: #222;
}
#content .card:hover {
  text-decoration: none !important;
}
#content .card .date {
  float: left;
  margin: 0 10px 5px 0;
  background-color: #f5f5f5;
  border: 1px solid #eee;
  border-top: 4px solid #7c77c3;
  text-align: center;
  color: #7c77c3;
  display: block;
  font-size: 0.9em;
  padding: 8px 4px;
}
#content .card .date span {
  width: 50px;
  line-height: 0.7em;
  display: block;
  font-weight: bold;
}
#content .card .date span.year {
  padding: 5px;
  display: block;
}
#content .card .date2 {
  float: left;
  margin: 0 0 5px 0;
  background-color: #f5f5f5;
  border: 1px solid #eee;
  border-top: 4px solid #7c77c3;
  text-align: center;
  color: #7c77c3;
  display: block;
  font-size: 0.9em;
  padding: 8px 4px;
}
#content .card .date2 span {
  width: 50px;
  line-height: 0.7em;
  display: block;
  font-weight: bold;
}
#content .card .date2 span.year {
  padding: 5px;
  display: block;
}
#content .card h3 {
  font-size: 1.6em;
  font-weight: 300;
  color: #7c77c3;
}
#content .card h2 {
  font-size: 1.6em;
  font-weight: 300;
  border-bottom: 0;
  margin: 0;
}
#content .lektor {
  font-size: 1.5em;
  font-weight: 300;
  text-align: center;
  margin-bottom: 2em;
  display: block;
}
#content .lektor:hover {
  text-decoration: none;
}
#content .lektor img {
  max-width: 70%;
  margin: 0 auto 0.3em auto;
  display: block;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.15);
}
#content .lektor img:hover {
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.25);
}
#content .btn-default {
  background-color: #7c77c3;
  color: #fff;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.5);
}
#content .btn-default:hover {
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.25);
}
#content .btn-default:active {
  background-color: #444;
  box-shadow: none;
}
#content .registrationForm .group {
  position: relative;
  margin: 1em 0 2em 0;
}
#content .registrationForm .group input,
#content .registrationForm .group textarea {
  font-size: 1em;
  padding: 10px 10px 10px 5px;
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid #757575;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.05);
}
#content .registrationForm .group input:focus,
#content .registrationForm .group textarea:focus {
  outline: none;
}
#content .registrationForm .group textarea {
  height: 100px;
}
#content .registrationForm .group label {
  color: #999;
  font-size: 1em;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 25px;
  top: 10px;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}
#content .registrationForm .group input:focus ~ label,
#content .registrationForm .group input.notEmpty ~ label,
#content .registrationForm .group textarea:focus ~ label,
#content .registrationForm .group textarea.notEmpty ~ label {
  top: -20px;
  left: 20px;
  font-size: 14px;
  color: #7c77c3;
}
#content .registrationForm .group .bar {
  position: relative;
  display: block;
  width: 100%;
}
#content .registrationForm .group .bar:before,
#content .registrationForm .group .bar:after {
  content: '';
  height: 2px;
  width: 0;
  bottom: 1px;
  position: absolute;
  background: #7c77c3;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}
#content .registrationForm .group .bar:before {
  left: 50%;
}
#content .registrationForm .group .bar:after {
  right: 50%;
}
#content .registrationForm .group input:focus ~ .bar:before,
#content .registrationForm .group input:focus ~ .bar:after,
#content .registrationForm .group textarea:focus ~ .bar:before,
#content .registrationForm .group textarea:focus ~ .bar:after {
  width: 50%;
}
#sidebar h2 {
  font-weight: 200;
}
#sidebar .newsitem {
  margin-bottom: 1em;
  border-bottom: 1px solid #eee;
}
#sidebar .newsitem .date {
  float: left;
  margin: 0 10px 5px 0;
  background-color: #fff;
  border: 1px solid #eee;
  border-top: 4px solid #7c77c3;
  text-align: center;
  color: #7c77c3;
  display: block;
  font-size: 0.8em;
  padding: 4px 4px;
}
#sidebar .newsitem .date span {
  width: 50px;
  line-height: 0.7em;
  display: block;
  font-weight: bold;
}
#sidebar .newsitem .date span.year {
  padding: 5px;
  display: block;
}
#sidebar .newsitem h3 {
  font-weight: 400;
  font-size: 1.1em;
  margin-bottom: 0.5em;
}
#sidebar .newsitem p {
  font-size: 0.8em;
}
#sidebar .btn {
  color: #7c77c3;
  float: right;
}
footer {
  border-top: 8px solid #7c77c3;
  background-color: #444;
  padding: 2em 0;
  color: #ccc;
  visibility: hidden;
}
footer a {
  color: #fff;
}
footer a:hover {
  color: #fff;
  text-decoration: underline;
}
footer .col2 {
  text-align: right;
}
footer input.form-control {
  background-color: #383838;
  padding: 2px 8px;
  border-radius: 0;
  display: inline-block;
  width: 220px;
  color: #fff;
  border: 0;
  border-bottom: 2px solid #777;
}
footer .btn {
  background-color: #666;
  border-radius: 0;
  display: inline-block;
  color: #fff;
  margin-top: -2px;
  position: relative;
}
footer .btn:hover {
  color: #fff;
  background-color: #7c77c3;
}
@media only screen and (max-width: 1199px) {
  .navbar-brand img {
    height: 40px !important;
  }
  .col1 {
    margin-bottom: 2em;
  }
  footer .col2 {
    text-align: left !important;
  }
  footer .col2 input.form-control {
    width: 180px;
  }
}
@media only screen and (max-width: 991px) {
  #main .lektor img {
    max-width: 50%;
  }
  #main .lektorImg {
    max-width: 50%;
    margin: 0 auto;
  }
}
/*# sourceMappingURL=front.css.map */