@import url(fontawesome-all.min.css);
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300italic,600italic,300,600");

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  -webkit-text-size-adjust: none;
}

mark {
  background-color: transparent;
  color: inherit;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input,
select,
textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
}

/* Basic */

@-ms-viewport {
  width: device-width;
}

@media screen and (max-width: 480px) {
  html,
  body {
    min-width: 320px;
  }
}

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  background: #1b1f22;
}

/* Type */

html {
  font-size: 16pt;
}

@media screen and (max-width: 1680px) {
  html {
    font-size: 12pt;
  }
}

@media screen and (max-width: 736px) {
  html {
    font-size: 11pt;
  }
}

@media screen and (max-width: 360px) {
  html {
    font-size: 10pt;
  }
}

body,
input,
select,
textarea {
  color: #ffffff;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.65;
}

a {
  -moz-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out,
    border-bottom-color 0.2s ease-in-out;
  -webkit-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out,
    border-bottom-color 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out,
    border-bottom-color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out,
    border-bottom-color 0.2s ease-in-out;
  border-bottom: dotted 1px rgba(255, 255, 255, 0.5);
  text-decoration: none;
  color: inherit;
}

a:hover {
  border-bottom-color: transparent;
}

strong,
b {
  color: #ffffff;
  font-weight: 600;
}

em,
i {
  font-style: italic;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #ffffff;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
  text-decoration: none;
}

h1.major,
h2.major,
h3.major,
h4.major,
h5.major,
h6.major {
  border-bottom: solid 1px #ffffff;
  width: -moz-max-content;
  width: -webkit-max-content;
  width: -ms-max-content;
  width: max-content;
  padding-bottom: 0.5rem;
  /* margin: 0 0 2rem 0; */
}

h1 {
  font-size: 2.25rem;
  line-height: 1.3;
  letter-spacing: 0.5rem;
}

h2 {
  font-size: 1.5rem;
  line-height: 1.4;
  letter-spacing: 0.5rem;
}

h3 {
  font-size: 1rem;
}

h4 {
  font-size: 0.8rem;
}

h5 {
  font-size: 0.7rem;
}

h6 {
  font-size: 0.6rem;
}

@media screen and (max-width: 736px) {
  h1 {
    font-size: 1.75rem;
    line-height: 1.4;
  }

  h2 {
    font-size: 1.25em;
    line-height: 1.5;
  }
}

sub {
  font-size: 0.8rem;
  position: relative;
  top: 0.5rem;
}

sup {
  font-size: 0.8rem;
  position: relative;
  top: -0.5rem;
}

blockquote {
  border-left: solid 4px #ffffff;
  font-style: italic;
  /* margin: 0 0 2rem 0; */
  padding: 0.5rem 0 0.5rem 2rem;
}

code {
  background: rgba(255, 255, 255, 0.075);
  border-radius: 4px;
  font-family: "Courier New", monospace;
  font-size: 0.9rem;
  /*  margin: 0 0.25rem; */
  padding: 0.25rem 0.65rem;
}

pre {
  -webkit-overflow-scrolling: touch;
  font-family: "Courier New", monospace;
  font-size: 0.9rem;
  /* margin: 0 0 2rem 0; */
}

pre code {
  display: block;
  line-height: 1.75;
  padding: 1rem 1.5rem;
  overflow-x: auto;
}

hr {
  border: 0;
  border-bottom: solid 1px #ffffff;
  /* margin: 2.75rem 0; */
}

.align-left {
  text-align: left;
}

.align-center {
  text-align: center;
}

.align-right {
  text-align: right;
}

/* Table */

.table-wrapper {
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
}

table {
  width: 100%;
}

table tbody tr {
  border: solid 1px #ffffff;
  border-left: 0;
  border-right: 0;
}

table tbody tr:nth-child(2n + 1) {
  background-color: rgba(255, 255, 255, 0.075);
}

table td {
  padding: 0.75em 0.75em;
}

table th {
  color: #ffffff;
  font-size: 0.9em;
  font-weight: 600;
  padding: 0 0.75em 0.75em 0.75em;
  text-align: left;
}

table thead {
  border-bottom: solid 2px #ffffff;
}

table tfoot {
  border-top: solid 2px #ffffff;
}

table.alt {
  border-collapse: separate;
}

table.alt tbody tr td {
  border: solid 1px #ffffff;
  border-left-width: 0;
  border-top-width: 0;
}

table.alt tbody tr td:first-child {
  border-left-width: 1px;
}

table.alt tbody tr:first-child td {
  border-top-width: 1px;
}

table.alt thead {
  border-bottom: 0;
}

table.alt tfoot {
  border-top: 0;
}

/* Button */

input[type="submit"],
input[type="reset"],
input[type="button"],
button,
.button {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  -moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  -ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  background-color: transparent;
  border-radius: 7px;
  /* border: 0; */
  box-shadow: inset 0 0 0 1px #ffffff47;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  /*font-size: 0.8rem; */
  font-size: 90%;
  font-weight: 300;
  height: 2.75rem;
  letter-spacing: 0.2rem;
  /* line-height: 2.75rem; */
  outline: 0;
  padding: 0 1.25rem 0 1.35rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
button:hover,
.button:hover {
  background-color: rgba(255, 255, 255, 0.075);
}

input[type="submit"]:active,
input[type="reset"]:active,
input[type="button"]:active,
button:active,
.button:active {
  background-color: rgba(255, 255, 255, 0.175);
}

/*
input[type="submit"].icon:before,
input[type="reset"].icon:before,
input[type="button"].icon:before,
button.icon:before,
.button.icon:before {
   margin-right: 0.5em; 
}
*/

input[type="submit"].fit,
input[type="reset"].fit,
input[type="button"].fit,
button.fit,
.button.fit {
  width: 100%;
}

input[type="submit"].small,
input[type="reset"].small,
input[type="button"].small,
button.small,
.button.small {
  font-size: 0.6rem;
  height: 2.0625rem;
  line-height: 2.0625rem;
}

input[type="submit"].primary,
input[type="reset"].primary,
input[type="button"].primary,
button.primary,
.button.primary {
  background-color: #ffffff;
  color: #1b1f22 !important;
  font-weight: 600;
  float: right;
  /* margin-top: 1%; */
}

input[type="submit"].disabled,
input[type="submit"]:disabled,
input[type="reset"].disabled,
input[type="reset"]:disabled,
input[type="button"].disabled,
input[type="button"]:disabled,
button.disabled,
button:disabled,
.button.disabled,
.button:disabled {
  pointer-events: none;
  cursor: default;
  opacity: 0.25;
}

input[type="submit"],
input[type="reset"],
input[type="button"],
/*
button {
  line-height: calc(2.75rem - 2px);
}
*/

/* BG */

#bg {
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  /*-webkit-backface-visibility: hidden;*/
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#bg:before,
#bg:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

#bg:before {
  -moz-transition: background-color 2.5s ease-in-out;
  -webkit-transition: background-color 2.5s ease-in-out;
  -ms-transition: background-color 2.5s ease-in-out;
  transition: background-color 2.5s ease-in-out;
  -moz-transition-delay: 0.75s;
  -webkit-transition-delay: 0.75s;
  -ms-transition-delay: 0.75s;
  transition-delay: 0.75s;
  background-image: linear-gradient(
      to top,
      rgba(19, 21, 25, 0.5),
      rgba(19, 21, 25, 0.5)
    ),
    url("../../images/overlay.png");
  background-size: auto, 256px 256px;
  background-position: center, center;
  background-repeat: no-repeat, repeat;
  z-index: 2;
}

#bg:after {
  -moz-transform: scale(1.125);
  -webkit-transform: scale(1.125);
  -ms-transform: scale(1.125);
  transform: scale(1.125);
  -moz-transition: -moz-transform 0.325s ease-in-out,
    -moz-filter 0.325s ease-in-out;
  -webkit-transition: -webkit-transform 0.325s ease-in-out,
    -webkit-filter 0.325s ease-in-out;
  -ms-transition: -ms-transform 0.325s ease-in-out,
    -ms-filter 0.325s ease-in-out;
  transition: transform 0.325s ease-in-out, filter 0.325s ease-in-out;
  background-image: url("../../images/bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}

body.is-article-visible #bg:after {
  -moz-transform: scale(1.0825);
  -webkit-transform: scale(1.0825);
  -ms-transform: scale(1.0825);
  transform: scale(1.0825);
  -moz-filter: blur(0.2rem);
  -webkit-filter: blur(0.2rem);
  -ms-filter: blur(0.2rem);
  filter: blur(0.2rem);
}

body.is-preload #bg:before {
  background-color: #000000;
}

/* ################################################# */
/* ################################################# */
/* ################################################# */

/* Wrapper */
#wrapper {
  /*display: grid;
		flex-direction: column;
		align-items: center;
		justify-content: space-between;
		position: fixed; */
  position: relative;
  /*top: 0;*/
  width: 100%;
  height: 100%;
  z-index: 3;
}

/* Banner */
#banner {
  display: none;
}

/* Header */

#header {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 100%;
  height: 5%;
  position: relative;
  top: 0;
  margin-top: 20px;
  z-index: 3;
}

#logoImg {
  align-self: center;
  max-width: 100%;
  max-height: 100%;
}

.langButtons{
  position: absolute;
  height: 40pt;
  width: 50pt;
}

#skBtn{
  /* https://www.iconarchive.com/show/all-country-flag-icons-by-custom-icon-design/Slovakia-Flag-icon.html */
  top: 1%;
  left: 2%;
  background-image: url("../../images/icons/flag_sk.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 20;
}

#enBtn{
  /* https://www.iconarchive.com/show/all-country-flag-icons-by-custom-icon-design/United-Kingdom-flag-icon.html */
  top: 1%;
  left: 92%;
  background-image: url("../../images/icons/flag_en.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 20;
}

#introText {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 100%;
  position: relative;
  top: 0;
  z-index: 3;
}

.hiddenDiv {
  width: 100%;
  height: 1%;
}

#bannerImg {
  border: solid 1px #000000;
  align-self: center;
  max-width: 100%;
  max-height: 100%;
}

#navBar {
  display: flex;
  flex-direction: row;
  text-align: center;
  width: 100%;
  height: 5%;
  position: relative;
  z-index: 2;
}

.navBarDiv {
  width: 100%;
  height: 100%;
  font-size: 50%;
  text-align: center;
  display: flex;
}

.navBarButtons {
  width: 33%;
  height: 100%;
  background-color: #2b2b2b6e;
  border-color: #000000;
}

.showedSection {
  height: 77%;
  max-width: 100%;
}

#map {
  display: none;
  /*
  display: flex;
  flex-direction: column;
  text-align: center;
  max-width: 100%;
  height: 74%;
  position: relative;
  padding-left: 0pt;
  padding-right: 0pt;
  margin-left: 5pt;
  margin-right: 5pt;
  border: ridge;
  z-index: 2;
  */
}

#myPos {
  background-image: url(../../images/icons/artboard.png);
    background-size: cover;
    background-position: left;
    background-color: #ffffff80;
    display: flex;
    position: absolute;
    text-align: left;
    margin-left: 15pt;
    top: 0;
    outline: none;
    outline-width: 0;
    cursor: pointer;
    z-index: 4;


  /* background-image: url(../../images/icons/artboard.png);
  background-size: cover;
  background-position: center;
  background-color: #ffffff80;
  display: inline-block;
  position: absolute;
  text-align: center;
  top: 0;
  outline: none;
  outline-width: 0;
  cursor: pointer;
  z-index: 4; */
}

#placesFrame{
  position: absolute;
  margin-top: -8%;
  height: 100%;
  width: 100%;
}

#poslucharne{
  height: 25%;
}

#poslucharneSelect{
  width: 50%;
  height: 20%;
  padding-left: 10pt;
  background-color: #2b2b2b6e;
  border-color: #000000;
  font-size: x-large;
}

#searchPoslucharenBtn{
  height: 5%;
    width: 120pt;
    right: 7%;
    text-align: center;
    position: absolute;
}

.description{
  display: block;
  background-size: cover;
  background-position: center;
  background-color: #ffffffde;
  border-left: 1px outset #00000050;
  border-top: 1px outset #00000050;
  border-right: 1px outset #00000094;
  border-bottom: 1px outset #00000094;
  border-radius: 10px;
  position: absolute;
  align-self: center;
  text-align: center;
  /* top: 0; */
  bottom: 1%;
  outline: none;
  outline-width: 0;
  color: #000000;
  z-index: 4;
  height: auto;
  width: auto;
  margin-top: 3px;
  opacity: 0;
  font-size: 80%;
  padding-left: 40px;
  padding-right: 40px;
}

#closeDescBtn{
  position: absolute;
  top: 2px;
  right: 2px;
  height: auto;
  width: auto;
  padding: 3px;
  text-align: center;
  font-weight: bold;
  align-content: center;
  z-index: 4;
  color: #000000;
}

#descriptionImageFrame{
  position: inherit;
    left: 0%;
    height: 100px;
    padding: 0px;
    margin-left: 30pt;
    margin-top: 10px;
    text-align: left;
    font-weight: bold;
    align-content: center;
    z-index: 4;
    color: #000000;

  /* position: relative;
    left: 0%;
    height: 100px;
    padding: 0px;
    margin-top: 10px;
    text-align: left;
    font-weight: bold;
    align-content: center;
    z-index: 4;
    color: #000000; */
}

#descriptionImage{
  max-height: 100%;
}

#descriptionQRFrame{
  position: relative;
    left: 0%;
    height: 100px;
    padding: 0px;
    margin-top: 10px;
    text-align: right;
    font-weight: bold;
    align-content: center;
    z-index: 4;
    color: #000000;
}

#descriptionQRImage{
  max-height: 100%;
}

/*
#myPos:active{
  outline: none;
  outline-width: 0;
}
*/

#search {
  display: none;
}

#in_put {
  display: flex;
  flex-direction: row;
  text-align: center;
  width: 100%;
  height: 7%;
  position: relative;
  margin-top: 2pt;
  margin-bottom: 5pt;
  z-index: 2;
}

.inputDiv {
  width: 100%;
  height: 100%;
  font-size: 50%;
  text-align: center;
}

#inputField {
  background-color: transparent;
  height: 100%;
  text-align: center;
  font-size: 150%;
  min-width: 33%;
  color: #ffffff;
}

#findBtn {
  background-image: url(../../images/icons/magnifying_glass.png);
  background-size: cover;
  background-position: center;
  background-color: #ffffff21;
  height: 100%;
  position: absolute;
  margin-left: 5pt;
  width: 100px;
}
.searchListDiv {
  overflow-x: auto;
  position: relative;
  align-self: center;
  align-content: center;
  width: 100%;
  height: 93%;
  margin-top: 10px;
}

#interests {
  display: none;
}

.descInterest{
  opacity: 0;
}

.carouselBtn{
  height: 100%;
  width: 30%;
  align-self: center;
  position: absolute;
  cursor: pointer;
  z-index: 100;
  opacity: 0;
}

.interestGroup{
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 100%;
  height: 50%;
  position: relative;
  z-index: 2;
}

.descInterest{
  height: 0;
}

/* Footer */
/*
#footer {
  width: 100%;
  max-width: 100%;
  text-align: center;
  z-index: 3;
  position: absolute;
  bottom: 0;
  //border: 3px solid #8AC007;
}

#footer .copyright {
  letter-spacing: 0.1rem;
  font-size: 0.6rem;
  opacity: 0.75;
  margin-bottom: 2pt;
  text-transform: uppercase;
}
*/

/*
fhd PC 1920x1080 px 
SWLT-32K8-A2 kiosk 3840x2160px
*/

::placeholder {
  color: rgb(255, 255, 255);
  opacity: 1;
}

@media only screen and (max-width: 1920px) {
  #wrapper {
    padding: 0;
  }
}

@media screen and (max-width: 1680px) {
  #wrapper {
    padding: 0;
  }
}

@media only screen and (max-width: 736px) {
  #wrapper {
    padding: 0;
  }
}

@media only screen and (max-width: 480px) {
  #wrapper {
    padding: 0;
  }
}

/* kiosk */
@media only screen and (orientation:portrait) and (min-height: 1900px) {
  h1 {
    font-size: 3rem;
  }
  .hiddenDiv {
    height: 2%;
  }
  #banner {
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 100%;
    height: 23.5%;
    position: relative;
    z-index: 2;
    margin-top: 0;
  }
  .navBarButtons {
    font-size: 1.2rem !important;
    white-space: normal;
    padding: inherit;

  }
  .showedSection {
    height: 57.1%;
    max-width: 100%;
  }
  #myPos{
    width: 60px;
    height: 60px;
  }
  #inputField{
    font-size: 1.25rem;
  }
  #findBtn {
    width: 10%;
  }
  .description{
    font-size: 1.2rem;
    max-width: 60%;
  }

  .descInterest{
    opacity: 1;
    width: 100%;
    height: 5%;
    z-index: 2;
    color: #ffffff;
    font-weight: bold;
    font-size: 130%;
    padding-top: 10px;
    /*
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 100%;
    height: 5%;
    position: relative;
    z-index: 2;
    color: #ffffff;
    font-size: 100%;
    bottom: 2;
    */
  }

  .interestGroup{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 50%;
    position: relative;
    z-index: 2;
    border-bottom:1px solid #ffffffab;
  }
}

/* other */
@media only screen and (max-height: 1900px) {
  #findBtn {
    width: 50px;
    height: 50px;
  }
  #inputField {
    min-width: 20%;
    height: 50px;
  }
  .navBarButtons {
    font-size: 150%;
  }
}

/* mobile */
@media only screen and (orientation:portrait) and (max-height: 1600px) { 
  .navBarButtons {
    font-size: 80%;
  }
  .description{
    font-size: 60%;
  }
  .table-wrapper{
    font-size: 55%;
    align-items: center;
  }
  #in_put{
    margin-bottom: 15px;
  }
}

/* small mobile */
@media only screen and (orientation:portrait) and (max-height: 600px) { 
  .navBarButtons {
    font-size: 80%;
  }
  .description{
    font-size: 60%;
  }
  .table-wrapper{
    font-size: 50%;
    align-items: center;
    margin: 0;
    padding: 0;
    width: auto;
  }
  .showOnMapBtn{
    height: auto;
    width: auto;
    margin: 0;
    padding: 1px;
  }
  #searchListDiv{
    margin-top: 500px;
  }
  #in_put{
    margin-bottom: 20px;
  }
}

@media only screen and (orientation:landscape) and (min-width: 480px) { 
  #interests{
    align-items: center;
  }
  .interestGroup{
    width: 50%;
  }
}
