/* fonty */

@font-face  {font-family: "Nunito";	src: url("/fonts/Nunito/Nunito-Light.ttf");             font-weight: 300;}
@font-face  {font-family: "Nunito";	src: url("/fonts/Nunito/Nunito-LightItalic.ttf");       font-weight: 300;       font-style: italic;}

@font-face  {font-family: "Nunito";	src: url("/fonts/Nunito/Nunito-Regular.ttf");}
@font-face  {font-family: "Nunito";	src: url("/fonts/Nunito/Nunito-Italic.ttf");                                    font-style: italic;}

@font-face  {font-family: "Nunito";	src: url("/fonts/Nunito/Nunito-Bold.ttf");              font-weight: bold;}
@font-face  {font-family: "Nunito";	src: url("/fonts/Nunito/Nunito-BoldItalic.ttf");        font-weight: bold;	font-style: italic;}

@font-face  {font-family: "Nunito";	src: url("/fonts/Nunito/Nunito-ExtraBold.ttf");         font-weight: 800;}
@font-face  {font-family: "Nunito";	src: url("/fonts/Nunito/Nunito-ExtraBoldItalic.ttf");   font-weight: 800;	font-style: italic;}

@font-face  {font-family: "Nunito";	src: url("/fonts/Nunito/Nunito-Black.ttf");             font-weight: 900;}
@font-face  {font-family: "Nunito";	src: url("/fonts/Nunito/Nunito-BlackItalic.ttf");       font-weight: 900;	font-style: italic;}


@import url("/fonts/awesome/css/font-awesome.min.css");

/* normalize */
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary {
  display: block;
}
article,aside,details,div,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary {
  box-sizing: border-box;
}
audio,canvas,progress,video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],template {
  display: none;
}
a {
  background-color: transparent;
}
a:active,a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,strong {
  font-weight: bold;
}
i,em {
  font-style: italic;
  color: inherit;
}
dfn {
  font-style: italic;
}
mark {
  color: #000;
  background: #ff0;
}
small {
  font-size: 80%;
}
sub,sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sup {
  top: -.5em;
}
sub {
  bottom: -.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  height: 0;
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
}
pre {
  overflow: auto;
}
code,kbd,pre,samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,input,optgroup,select,textarea {
  margin: 0;
  font: inherit;
  color: inherit;
}
button {
  overflow: visible;
}
button,select {
  text-transform: none;
}
button,html input[type="button"],input[type="reset"],input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,input::-moz-focus-inner {
  padding: 0;
  border: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],input[type="radio"] {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
  -webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  padding: .35em .625em .75em;
  margin: 0 2px;
  border: 1px solid #c0c0c0;
}
legend {
  padding: 0;
  border: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
}



/* premenné */
:root {
  --SEDA10: #E2E7E9;
  --SEDA20: #C4CFD4;
  --SEDA30: #A7B7BE;
  --SEDA40: #8B9FA7;
  --SEDA50: #6D8792;
  --SEDA60: #586C74;
  --SEDA70: #425158;
  --SEDA80: #2B363B;
  --SEDA90: #161B1D;
  
  --BELASA: #C7DEF5; 
  --BELASA1: #ECF4FC;
  --BELASA2: #DFECF9;
  --BORDOVA: #A9213D;
  --MODRA: #024E9E;
  --ZLTA: #F2BD00;
  --ZELENA: #006400;
  --TMAVOSEDA: #2B363B;
 
  
  --FIALOVA: #BC7AF1;
  
}




/* základné */

body
  {
    font-family: 'Nunito', sans-serif;
    font-size: 20px;
    font-weight: normal;
    line-height: 150%;
    letter-spacing: 0.02em;
    color: var(--SEDA70); 
    background-color: white;
    position: relative;
    margin: 0px;
    padding: 0px;
    text-rendering: geometricPrecision;
    font-kerning: normal;
  }
a {
    color: var(--BORDOVA);
    text-decoration: none;
    cursor: pointer;
    transition: color .3s;
}
a:hover {
    color: var(--MODRA);
    text-decoration: none;
}
article a {
    color: var(--BORDOVA);
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    transition: color .3s, background-color .3s;
}
article a:hover {
    color: var(--MODRA);
    text-decoration: none;
}
article .WEtext a {
    /*padding: 0 2px;*/
}
h1 {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 50px;
    margin-bottom: 35px;
    letter-spacing: 0.01em;
    line-height: 1.1;
    color: var(--MODRA);
}
h2 {
    font-size: 46px;
    margin-top: 40px;
    line-height: 1.1;
}
h3 {
    font-size: 36px;
    margin-top: 32px;
    line-height: 1.1;
}
h4 {
    font-size: 30px;
    margin-top: 30px;
    line-height: 1.2;
}
h5 {
    font-size: 24px;
    margin-top: 25px;
    line-height: 1.3;
}
h6 {
    font-size: 19px;
    line-height: 1.3;
    margin-top: 22px;
}
h2, h3, h4 {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    text-align: left;
    color: var(--MODRA);
    letter-spacing: 0.03em;
}
h5, h6 {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    text-align: left;
    color: var(--ZLTA);
    letter-spacing: 0.02em;
}
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
    margin-top: 0;
}
h2, h3, h4, h5, h6 {
    letter-spacing: 0.02em;
    margin-bottom: 12px;
}
h1 + h2 {
    margin-top: 31px;
}
p {
    font-size: 20px;
    margin-top: 12px;
    margin-bottom: 12px;
    font-weight: 300;
}
p + ol, p + ul {
    margin-top: 8px;
    margin-bottom: 12px;
}
.perex {
    max-width: 100vw;
    max-width: calc(100vw - 20px);
    margin-left: auto;
    margin-right: auto;
    margin-top: 6px;
    margin-bottom: 28px;
}
.perex, .perex p {
    font-size: 19px;
    font-weight: bold;
    line-height: 140%;
    letter-spacing: 0.02em;
}
.obsah ul, .obsah ol {
    margin-top: 16px;
    margin-bottom: 24px;
}
.obsah ul {
/*    list-style-type: disc;
    list-style-position: outside;*/
    list-style-type: none;
    padding-left: 0;
    padding-right: 0;
}
.obsah ul li {
    background: url('/img/bullet_star.svg') no-repeat 0px 5px transparent;
    background-size: 24px 24px;
    vertical-align: top;
    padding-left: 38px;
    margin-left: 6px;
}
.obsah li {
    margin-top: 8px;
    margin-bottom: 8px;
    padding-left: 10px;
    padding-top: 2px;
}
hr {
    background-color: #DDD;
    height: 1px;
    border: none;
    border-color: #DDD;
}
.WEurl, .WEartc {
    width: 1200px;
    padding: 17px 0 15px 0; 
    position: relative;
    margin-left: auto;
    margin-right: auto;
}
.WEalst .WEartc {
    width: auto;
    display: inline-block;
    padding: 4px 0; 
}
.WEhr {
    background-color: transparent;
    height: 0px;
    border-top: solid 1px var(--SEDA30);
}
.HR100text {
    width: 1200px;
    max-width: calc(100vw - 20px);
    margin: 20px auto;
    border-top: solid 1px var(--SEDA30);
    background-color: transparent;
    height: 0px;
}
hr.bodkovana {
    background-color: transparent;
    width: 100%;
    height: 0px;
    border: none;
    border-top: 7px dotted var(--SEDA30);
    margin: 40px auto 40px auto;
}
.WEtext, .WEalst, .WEyoutube, .WEfile {
    width:100%;
    margin: 0 auto; 
    position: relative;
}
.WEfile a {
    margin-left: 0;
    padding-left: 0;
}
.WEfile a:before {
    padding-right: 15px;
    font-family:'FontAwesome';
    font-style: normal;
    color: var(--TMAVA);
}
.WEfile.nastiahnutie a:before {
    content: '';
}
.WEfile.subor a:before {
    content: '';
}
.WEfile.suborObrazok a:before {
    content: '';
}

.WEyoutube iframe {
    max-width: 100%;
}
.WEimg {
    margin-top: 6px;
    margin-bottom: 20px;
    max-width: 100%;
}
.imgRight {
    width: 36%;
    height: auto;
    float: right;
    margin-right: 3%;
}
.imgLeft {
    width: 36%;
    height: auto;
    float: left;
    margin-right: 3%;
}
.imgVedla {
    display: inline-block;
    margin: 15px 40px 20px 0px;
}
article img.obrVlavo, article img[align="left"], .WEimgLeft {
	margin: 15px 40px 20px 0px !important;
	float:left;
}
article img.obrVpravo, article img[align="right"], .WEimgRight {
	margin: 15px 0px 20px 40px;
	float:right;
}
.WEimgAlone, .WEimgAlone.WEimgRight, .WEimgAlone.WEimgLeft {
    clear: both;
    display: block;
    position: relative;
    width: 100%;
    margin: 0;
    padding-left: calc((100% - 1200px) / 2);
    padding-right: calc((100% - 1200px) / 2);
    float: none;
}
article .WEimgAlone a {
    display: block;
}
.WEimgLeft {
    clear: both;
    display: inline-block;
    margin: 10px 30px 20px 0;
    padding-left: calc((100% - 1200px) / 2);
}
.WEimgRight {
    clear: both;
    display: inline-block;
    margin: 10px 0 20px 30px;
    padding-right: calc((100% - 1200px) / 2);
}
.WEimgLeft a, .WEimgRight a {
    position: relative;
    z-index: 10;
}
.sectionLeft {
    width: 60%;
    float: left;
}
.sectionRight {
    width: 60%;
    float: right;
}
.txtCelaSirka {
    width: 100%;
}
.wideImage {
    display: block;
    width: 100%;
    height: auto;
}
.tl {
    text-align: left;
}
.tr {
    text-align: right;
}
.tc {
    text-align: center;
}
.tj {
    text-align: justify;
}

.obsah {
/*    width: 750px;
    float: left;    */
}
article {
    margin: 60px 0;
}
.poznamka {
    font-size: 17px;
    color: var(--SEDA60);
    padding-top: 20px;
    border-top: solid 1px #BBB;
    margin-top: 30px;
    margin-bottom: 20px;
}
.popis {
    font-style: italic;
    font-size: smaller;
    font-weight: 300;
    color: var(--SEDA60);
}
.mensie {
    font-size: 17px;
    color: var(--SEDA60);
    margin-top: 20px;
    margin-bottom: 20px;
}

.fl {
    float: left;
}
.fr {
    float: right;
}
.cl {
    clear: both;
}
.vyrazny {
    color: var(--TMAVA);
    font-weight: bold;
    font-size: 106%;
    letter-spacing: .03em;
}
.mt {
    margin-top: 30px;
}
.mt60 {
    margin-top: 60px;
}
.mt15 {
    margin-top: 15px;
}
.mb {
    margin-bottom: 30px;
}
.mb60 {
    margin-bottom: 60px;
}
.mb15 {
    margin-bottom: 15px;
}
.pt {
    padding-top: 30px;
}
.pt20 {
    padding-top: 20px;
}
.pt10 {
    padding-top: 10px;
}
.pb {
    padding-bottom: 30px;
}
.pb20 {
    padding-bottom: 20px;
}
.pb10 {
    padding-bottom: 10px;
}
.skryte {
    width: 0;
    height: 0;
    position: absolute;
    bottom:0;
    left: 0;
}
.zobrazene {
    display: block;
    opacity: 1;
}
.nezobrazene {
    display: none;
    opacity: 0;
}
.centerer {
    /*background-color: transparent;*/
    /*position: absolute;*/
    display: flex;
    justify-content: center;
    align-items: center;
    /*width: 100%;*/
    height: 100%;
    top: 0;
    bottom:0;
    left:0;
    right: 0;
/*    margin: 0;
    padding: 0;*/
}
.sekcia {
    padding-bottom: 20px;
    padding-top: 20px;
}
.bordova {
    background-color: var(--BORDOVA);
}
.modra {
    background-color: var(--MODRA);
}
.zlta {
    background-color: var(--ZLTA);
}
.tmavoseda {
    background-color: var(--TMAVOSEDA);
}
.belasa {
    background-color: var(--BELASA);
}
.belasa1 {
    background-color: var(--BELASA1);
}
.belasa2 {
    background-color: var(--BELASA2);
}





/* layout */
.wrapper {
    width: 1200px;
    margin: 0 auto; 
}
.wrapperWide {
    width: 100%;
    margin: 0; 
}
.container {
    width: 1200px;
    max-width: 100%;
    padding: 0; 
    position: relative;
    margin-left: auto;
    margin-right: auto;
}
header {
    width: 100%;
    height: 114px;
    position: relative;
    margin-bottom: 0px;
    background-image: linear-gradient(179deg, rgba(0,34,68,1) 0%, rgba(0,61,115,1) 100%);
}
header, footer {
    /*overflow: hidden;*/
}
.home header {
    margin-bottom: 0;
}
.Inicialy {
    display: inline-block;
    color: white;
    background-color: var(--BORDOVA);
    padding: 2px 4px;
    margin-left: 2px;
    border-radius: 15px;
    font-size: 85%;
    line-height: 1;
    vertical-align: -25px;
}
.Inicialy.PouzivatelNeprihlaseny {
    background-color: var(--BORDOVA);
}
.mobileMenu .ZobrazInicialy {
    position: relative;
}
.mobileMenu .Inicialy {
    display: block;
    position: absolute;
    left: 8px;
    top: 15px;
}

.lista {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 46px;
    opacity: 1;
}
#stick {
    display: block;
    z-index: 100;
    position: fixed;
    bottom: -60px;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: white;
    border-top: solid 3px var(--SEDA10);
    text-align: center;
    -webkit-transition: bottom 1s;
    transition: bottom 1s;
}
.home #stick {
    display:none;
}
#stick.vidno {
    bottom: 0;
}
#stick .mainMenu {
    position: relative;
    width: 100%;
    bottom: 0;
    right: 0;
    margin: 13px auto 0;
    text-align: center;    
}
#stick .mainMenu ul {
    padding: 0;
    margin: 0;
}
#stick .mainMenu li {
    padding: 0;
    margin: 0 16px;
}
#stick .mainMenu li a {
    display: block;
    font-family: 'Nunito';
    font-size: 21px;
    text-transform: uppercase;
    letter-spacing: 0.2em;    
    color: black;
}
#stick .mainMenu li a:hover {  
    color: var(--MODRA);
}
.ikonyMenu.flexContainer, #stick.vidno .ikonyMenu.flexContainer {
/*    display: none;*/
}
#jazycek {
    position: absolute;
    top: -34px;
    left: 20vw;
    z-index: 101;
    cursor: pointer;
}

   
.headerContainer {
/*    max-width: 895px;
    width: calc(100% - 210px);*/
    width: 100%;
    display: flex;
}
.Spacer1 {
    width: 106px;
    min-width: 20px;
    flex-grow: 1;
    flex-shrink: 1;
}
.Spacer2 {
    width: 66px;
    min-width: 20px;
    flex-grow: 1;
    flex-shrink: 1;
}
.Spacer3 {
    width: 36px;
    min-width: 20px;
    flex-grow: 1;
    flex-shrink: 1;
}
.logo {
    display: block;
    padding: 20px 0 0 0;
    width: 196px;
    flex-grow: 0;
    flex-shrink: 0;
}
.logo img {
    display: block;
    width: 100%;
    height: auto;
}
.Rezervacia {
    color: white;
    font-size: 20px;
    text-align: center;
    white-space: nowrap;
    background-color: var(--BORDOVA);
    text-transform: uppercase;
    box-sizing: border-box;
    display: block;
    position: relative;
    height: 39px;
    margin-top: 42px;
    padding: 5px 18px 0;
    border: none;
    border-radius: 20px;
    flex-grow: 0;
    flex-shrink: 0;
    transition: all 0.5s;
}
.Rezervacia:hover {
    color: white;
    background-color: var(--MODRA);
}    
.mainMenu {
    height: 44px;
    width: 274px;
    margin-top: 42px;
    padding: 0;
    flex-grow: 0;
    flex-shrink: 0;
}
.mainMenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.mainMenu li {
    display: inline-block;
    margin: 0;
}
.mainMenu ul {
    margin: 0;
}
.mainMenu .flexContainer {
    justify-content: space-between;
    gap: 10px;
}
.TlacidloVrchne {
    display: block;
    height: 44px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto 44px;
    cursor: pointer;
    transition: filter .3s;
}
.TlacidloVrchne:hover {
    filter: brightness(120%);
}
#TlacidloZazitky{
    background-image: url('/img/TlacidloZazitky.svg');
    width: 46px;
}
#TlacidloOblubene {
    background-image: url('/img/TlacidloOblubene.svg');
    width: 40px;
}
#TlacidloProfil {
    background-image: url('/img/TlacidloProfil.svg');
    width: 31px;
}
#TlacidloKosik {
    background-image: url('/img/TlacidloKosik.svg');
    width: 33px;
}
#TlacidloPomocnik {
    background-image: url('/img/TlacidloPomocnik.svg');
    width: 46px;
}
.bottomMenu {
    position: absolute;
    top: 18px;
    right: 0;
    text-align: right;
}
.bottomMenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.bottomMenu li {
    display: inline-block;
    margin-left: 24px;
}
.bottomMenu li a {
    display: block;
    opacity: 0.6;
}
.bottomMenu li a:hover {
    opacity: 1;
}
.bottomMenu li a img {
    display: inline-block;
    height: 21px;
    width: auto;
    margin-right: 10px;
    vertical-align: -5px;
}

.SearchBox {
    max-width: 345px;
    width: 38.5%;
    height: 42px;
    background-color: white;
    border: solid 1px var(--BELASA);
    margin-top: 40px;
}
.SearchLupa {
    width: 25px;
    height: auto;
    margin-top: 0;
    vertical-align: -4px;
    cursor: pointer;
}
.Search {
    width: calc(100% - 50px);
    height: 30px;
    background-color: transparent;
    border: none;
    font-size: 26px;
    font-weight: normal;
    color: var(--SEDA40);
    margin: 4px 5px 0 5px;
    padding: 0;
}
.Search:active {
    border: none;
}
.Prihlasenie {
    position: absolute;
    top: 5px;
    right: 0;
    font-size: 14px;
    color: white;
}
.Prihlasenie a {
    font-size: 14px;
    color: white;
    transition: color .3s, background-color .3s;
}
.Prihlasenie a:hover {
    color: var(--BELASA);
}



/* mobile menu */

.mobileMenuScreen {
    /*display: none;*/
    width: 300px;
    background-image: linear-gradient(179deg, rgba(0,34,68,1) 0%, rgba(0,61,115,1) 100%);
    position: fixed;
    top: 50px;
    right: -300px;
    border-bottom-left-radius: 9px;
    z-index: 155;
    -moz-transition: all 1.2s;
    transition: all 1.2s;
}
.mobileMenuScreenContent {
    width: 100%;
    /*height: 320px;*/
    /*position:absolute;*/
    top: 0;
    left: 0;
    padding: 20px 0 20px 20px;
    /*border-top: solid 1px black;*/
    /*background-color: var(--MODRA);*/
    color: white;
}
.mobileMenuScreenContent ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.mobileMenuScreenContent ul li {
    margin-bottom: 10px;
    color: white;
}
.mobileMenuScreenContent ul li a {
    text-transform: uppercase;
    font-size: 16px;
    color: white;
    letter-spacing: 0.05em;
}
.mobileMenuScreen .ucho {
    width: 40px;
    position: absolute;
    top: -1px;
/*    left: calc(50vw - 20px);*/
    left: -35px;
    z-index: 160;
    cursor: pointer;
}
.mobileMenuScreen .TlacidloVrchne {
    display: inline-block;
    margin-right: 20px;
    vertical-align: -14px;
}
.mobileMenuScreen #TlacidloZazitky, .mobileMenuScreen #TlacidloOblubene, .mobileMenuScreen #TlacidloProfil, .mobileMenuScreen #TlacidloKosik, .mobileMenuScreen #TlacidloPomocnik  {
    width: 48px;
}
.mobileMenuScreen.vysunute {
    right: 0;
}
.BezIkony {
    margin-left: 68px;
}
.bars {
    position: absolute;
    right: 20px;
    top: 62px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}
.menu_close {
    position: absolute;
    bottom: 13px;
    left: 13px;
    cursor: pointer;
}
.menu_close img {
    width: 45px;
    height: auto;
}


.onlyWideScreen {
    display: block;
}
.onlyNarrowScreen {
    display: none;
}
.inlineBlock {
    display: inline-block;
}
#top {
    position: relative;
}

#map_canvas {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 90vh;
}







/* flex content */

.flexContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    row-gap: 60px;
}

.gridContainer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
}
.gridItem {
    min-width: 200px;
    padding: 0px;
}
.gridItem img {
    max-width: 100%;
}

/* panorama */
.panorama {
    width: 100%;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}
.panorama, .panorama .container {
    height: 500px;
}
.poster {
    width: 100%;
    height: 60vh;
    max-height: 800px;
    background-size: cover;
    background-position: center top;
    position: relative;
}
.poster, .poster .container {
    /*height: auto;*/
}
.headlineContainer h1 {
    font-size: 72px;
    font-weight: 900;
    text-align: center;
    line-height: 1.1;
    margin-top: 0;
    margin-bottom: 4px;
    color: white;
    text-shadow: 0 0 15px rgba(0,0,0,0.9);
}
.headlineContainer h2 {
    position: relative;
    font-size: 50px;
    font-weight: 900;
    text-align: center;
    line-height: 1.1;
    margin-top: 4px;
    margin-bottom: 4px;
    color: var(--ZLTA);
    text-shadow: 0 0 15px rgba(0,0,0,0.9);
}
.RaketaA {
    position: absolute;
    left: 8%;
    bottom: -135px;
    width: 145px;
    height: auto;
}
.PlanetaA {
    position: absolute;
    left: 80%;
    bottom: -26px;
    width: 135px;
    height: auto;
}

.buttonContainer {
    padding: 50px 20px 40px;
    position: absolute;
}
.top {
    top:0;
}
.bottom {
    bottom:0;
}
.left {
    left:0;
}
.left * {
    text-align: left;
}
.right {
    right: 0;
}
.right * {
    text-align: right;
}


/* úprava sekcií pre WE */
section.sekcia {
    width: 100%;
    padding-left: calc((100% - 1200px) / 2);
    padding-right: calc((100% - 1200px) / 2);
}


/* projekt */
.projekt {
    width: 240px;
    max-width: 100%;
}
.projekt a, .projekt img, .projekt h2 {
    display: block;
    width: 100%;
}
.projekt a, .projekt h2 {
    text-align: center;
}
.projekt a, .projekt h2 {
    font-family: 'Nunito';
    font-size: 24px;
    color: var(--SEDA60);  
}
.projekt a {
    padding: 0;
}
.projekt a, .projekt a h2 {
    transition: color .3s;
}
.projekt a:hover, .projekt a:hover h2 {
    background-color: transparent;
    color: var(--MODRA);
}
.home .projekt a:hover img {
    transition: filter 1s;
}
.home .projekt a:hover img {
    filter: saturate(300%);
}


/* formulár */
.formular {
    margin-top: 0;
    margin-bottom: 0;
}
.formular .form-riadok {
    margin-bottom: 10px;
}
.formular label {
    color: var(--SEDA60);
    display: block;
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 10px;
    cursor: pointer;	
}
.formular input, .formular textarea {
    font-family: 'Nunito', sans-serif;
    width: 100%;
    font-size: 21px;
    font-weight: normal;
    color: black;
    background-color: var(--SEDA10);
    border: solid 2px var(--SEDA60);
    border-radius: 0;
    padding: 6px 12px;
    box-sizing: border-box;
}
.formular textarea {
    height: 250px;
}
.formular .button {
    margin-top: 40px;
    max-width: 100%;
}
.formular .button:hover {
    cursor: pointer;
}
.formular input[type="checkbox"] {
    width: auto;
}

.formular input[type="radio"] {
    display: inline-block;
    width: auto;
    vertical-align: middle;
    margin-bottom: 0;
}

.formular input[type="checkbox"].checkbox {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-block;	
    border: none;
    padding: 0;
    width: 30px;
    height: 30px;
    cursor: pointer;	
    background-image: url('/img/symbol-unchecked.svg');
    background-size: 30px 30px;
    -webkit-transition: background 1s;
    -moz-transition: background 1s;
    transition: background 1s;
}

.formular input[type="checkbox"].checkbox:checked {
    background-image: url('/img/symbol-checked.svg');
}
.formular label.label-vpravo {
    display: inline-block;
    margin-left: 15px;
    vertical-align: middle;
    margin-bottom: 0;
}

#newsletter_formular_box_info {
    height: 0px;
    overflow: hidden;
    webkit-transition: height 0.5s;
    transition: height 0.5s;
}
#newsletter_formular_box_info.vidno {
    height: 135px;
}
#newsletter_formular_box_page {  /* form na podstránkach */
    background-color: var(--ZLTA);
    height: 0px;
    overflow: hidden;
    webkit-transition: height 1s;
    transition: height 1s;
}
#newsletter_formular_box_page.vidno {
    height: 384px;
}
#newsletter_formular_box_home {
    display: none;
}
#newsletter_formular_box_home.vidno {
    display: block;
}
.newsletterOdkaz {
    display: none;
}
.newsletterOdkaz.vidno {
    display: block;
}

.alert, .notification {
    margin: 30px 15px;
    padding: 20px;
    text-align: center;
    color: white;
}
.alert, .alert.uk-alert-danger, .notification.error {
/*    position: fixed;
    top:100px;
    left:40px;
    z-index: 10000;
    width: calc(100vw - 120px);
    margin: 0;*/
    border: solid 2px var(--ZLTA);
    background-color: var(--BORDOVA);
    /*box-shadow: 0 0 20px black;*/
}
.alert p, .odberNoviniek .alert p {
    color: white;
}
.alert.alert-success, .notification.success {
    background-color: var(--ZELENA);
}
.notification.warning {
    background-color: var(--ZLTA);
    color: var(--BORDOVA);
    border: solid 2px var(--BORDOVA);
}
.notification {
    display: block;
}
.NovaAkcia input:required, .NovaAkcia textarea:required, .EditaciaAkcie input:required, .EditaciaAkcie textarea:required {
    border: solid 1px var(--BORDOVA);
}


/* modal */

.modal-footer {
    margin-top: 40px;
}
.modal-footer .button {
    display: inline-block;
}
button.uk-modal-close {
    background: var(--SEDA60);
}
button.uk-icon:hover {
    background: inherit;
}

.modal-footer p:last-child {
    margin-bottom: 0;
}
.napoveda {
    color: var(--SEDA30);
    font-size: 15px;
    margin: 8px 0 0;
    line-height: 1.2;
}
.napoveda:not(:first-of-type) {
    margin-top: 0;
}
h2.uk-modal-title {
    margin-bottom: 30px;
}
#modal-prihlasenie label {
    display: block;
    margin: 12px 0 4px;
}

/* profil */

.tableKonto td {
    padding: 10px 0;
    text-align: left;
    vertical-align: 10px;
}
.tableKonto td:not(:first-child) {
    padding: 10px 0 10px 10px;
}
.sirka10pc {
    width: 10%;
}
.sirka20pc {
    width: 20%;
}
.sirka30pc {
    width: 30%;
}
.sirka40pc {
    width: 40%;
}
.sirka50pc {
    width: 50%;
}
.sirka60pc {
    width: 60%;
}
.sirka70pc {
    width: 70%;
}
.sirka80pc {
    width: 80%;
}
.sirka90pc {
    width: 90%;
}
.sirka100pc {
    width: 100%;
}
.sirka100, .formular input.sirka100 {
    width: 100px;
}
.sirka200, .formular input.sirka200 {
    width: 200px;
}
.sirka300, .formular input.sirka300 {
    width: 300px;
}

table.konto.objednavky {
    margin-top: 60px;
    width: 100%;
}
table.konto.objednavky td, table.konto.objednavky th {
    padding: 10px;
    text-align: left;
    border: solid 1px var(--SEDA20);
    vertical-align: top;
}
table.konto.objednavky td.tc, table.konto.objednavky th.tc {
    text-align: center;
}
table.konto.objednavky td.tr, table.konto.objednavky th.tr {
    text-align: right;
}
table.konto.objednavky td p {
    font-size: 16px;
    margin: 0;
}
#buttonySubMenu {
    text-align: left;
}
#buttonySubMenu .button {
    display: inline-block;
    margin-right: 10px;
    height: auto;
    padding: 5px 15px 3px;
    background-color: var(--SEDA30);
    color: white;
}
#buttonySubMenu .button:hover {
    background-color: var(--MODRA);
}
.modal-footer a.button {
    padding-top: 8px;
}


/* newsletter */
.home .Newsletter {
    margin: 0 0 20px;
}
.Newsletter .flexContainer {
    row-gap: 20px;
}
.NewsletterNadpis {
    color: var(--MODRA);
    font-size: 40px;
    font-weight: 900;
    position: absolute;
    top: 50px;
    
}
.Newsletter .col1 {
    padding-top: 135px;
    width: 45%;
    /*width: 540px;*/
    flex-shrink: 5;
}
.Newsletter .col1 p {
   font-size: 20px;
   color: var(--SEDA80);
   margin-top: 0;
}
.Newsletter .col2 {
    padding-top: 135px;
    width: 21%;
    /*width: 252px;*/
    flex-shrink: 1;
}
.Newsletter .col3 {
    padding-top: 20px;
    width: 19%;
    width: 228px;
    position: relative;
    flex-shrink: 0;
}
.formular .button.NewsletterSubmit {
    height: 68px;
    position: absolute;
    top: 140px;
    margin-top: 0;
    padding: 4px 10px 0;
}
.PriserkaC {
    height: 304px;
    width: auto;
    margin: 0 auto;
    display: block;
}

.NewsletterB {
    margin: 60px 0 0;
    background-color: var(--ZLTA);
}
.NewsletterB .flexContainer {
    gap: 10px;
}
.NewsletterB .NewsletterNadpis {
    color: var(--MODRA);
    font-size: 30px;
    font-weight: 900;
    position: static;  
    margin-bottom: 12px;
}
.PriserkaD {
    height: 103px;
    width: auto;
    margin: 0 20px 10px 0;
    display: inline-block;
}
.NewsletterB .col1 {
    padding-top: 30px;
    width: calc(100% - 370px);
}
.NewsletterB .col2 {
    padding-top: 14px;
    width: 360px;
    text-align: right;
}
#rozbalNewsletter {
    width: 227px;
    height: 68px;
    margin: 18px 0 20px 0;
    display: inline-block;
    vertical-align: top;
}

/* úprava simplelightbox */
.sl-prev, .sl-next, .sl-close {
    font-family:'FontAwesome';
    color: var(--TMAVA);
}


/* úprava menu uikit */
.uk-alert {
    font-weight: bold;
}
.uk-alert-danger {
    border: solid 1px #f0506e;
    border-radius: 5px;
}
.uk-navbar-nav > li > a {
    color: white;
    text-transform: none;
}
.uk-navbar-item, .uk-navbar-nav > li > a, .uk-navbar-toggle {
    min-height: 63px;
    padding: 0 15px;
    font-size: 1.28rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 300;
    text-decoration: none;
}
.uk-navbar-nav > li:hover > a, .uk-navbar-nav > li > a.uk-open, .uk-navbar-nav > li > a:focus {
    color: #FAC541; /* zlatá */
}
.uk-navbar-dropdown {
    padding: 15px;
}
.uk-navbar-dropdown-nav > li {
    padding-left: 10px;
    padding-right: 10px;
}
.uk-navbar-dropdown-nav > li:hover {
    background-color: #FFF4CC; /* jemná zlatá */
}
.uk-navbar-dropdown-nav > li > a {
    color: #6C5D47;
}
.uk-navbar-toggle {
    color: #FAC541;
}
.uk-navbar-toggle:hover {
    color: #FAC541;
}
.uk-offcanvas-bar {
    background: #6C5D47; /* hnedá */
}
.uk-offcanvas-bar .uk-nav-default > li > a, .uk-offcanvas-bar .uk-nav-default .uk-nav-sub a {
    color: rgba(250, 197, 65, .8); /* zlatá */
}
.uk-offcanvas-bar .uk-nav-default > li > a:hover, .uk-offcanvas-bar .uk-nav-default .uk-nav-sub a:hover {
    color: rgba(250, 197, 65, 1); /* zlatá */
}
.uk-grid {
  margin-left: -30px;
}
.uk-lightbox {
  background: #fff;
}
article .galeriaNahlady a:hover {
    background-color: transparent;
}
.uk-card {
  padding: 0 10px;
}
.mainMenu li ul.uk-dropdown-nav li {
  display: block;
}



/* button */
button, .button {
    text-align: center;
    font-family: 'Nunito', sans-serif;
    font-size: 20px;
    font-weight: normal;
    color: var(--BELASA);
    background-color: var(--MODRA);
    line-height: 120%;
    text-transform: uppercase;
    box-sizing: border-box;
    display: block;
    position: relative;
    height: 39px;
    padding: 2px 20px 0;
    border: none;
    border-radius: 20px;
    -webkit-transition: background-color .5s;
    transition: background-color .5s;
}
button.buttonStandard, .button.buttonStandard {
    color: white;
    font-size: 19px;
    white-space: nowrap;
    height: 39px;
    padding: 2px 18px 0;
    border: none;
    border-radius: 20px;
    flex-grow: 0;
    flex-shrink: 0;
    transition: all 0.5s;
}
  
.button.transp {
    background: none;
}
.button.semitransp {
    background: rgba(0,0,0,.3);
}
button:hover, .button:hover {
    color: white;
    background-color: var(--BORDOVA);
}
button.transp:hover, .button.transp:hover, button.semitransp:hover, .button.semitransp:hover {

}
.buttonContainer .button {
    display: inline-block;
}
.buttonContainer.right .button {
    margin-left: 20px;
}
.buttonContainer.left .button {
    margin-right: 20px;
}
.button.maly {
    font-weight: 300;
    font-size: 16px;
    padding: 4px 10px;
    height: 26px;
    display: inline-block;
    margin-right: 10px;
}
.button.action_button {
    display: inline-block;
    margin-right: 30px;
}
.ikona_edit {
    color: var(--MODRA);
    margin-right: 10px;
}
a.ikona_edit:hover {
    color: var(--BORDOVA);
}
.ikona_edit_zobrazena {
    color: var(--ZELENA);
}
.ikona_edit_schvalovanie {
    color: var(--BORDOVA);
}
.ikona_edit_uprava {
    color: var(--MODRA);
    font-size: 26px;
    vertical-align: -3px;
}
.fa-pencil.ikona_edit.ikona_edit_uprava {
    font-size: 20px;
}

#totop {
    display: block;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-image: url("/img/totop.png");
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-transition: background-image 1s, opacity 1s;
    transition: background-image 1s, opacity 1s;
    opacity: 0;
}
#totop:hover {
    background-image: url("/img/totop_hover.png");
}
#totop.show {
    opacity: 1;
}

/* XCC cookies */
button.xcc_button {
    text-transform: none;
}

/* karty */
.WEcardWrap {
    clear: both;
/*    margin-top: 60px;*/
}
.uk-card-body h2:first-child, .uk-card-body h3:first-child, .uk-card-body h4:first-child, .uk-card-body h5:first-child {
    margin-top: 0;
}
a .uk-card-body p {
    font-weight: normal;
}
.uk-card-body h2 {
    font-size: 24px;
}
.uk-card-body h3 {
    font-size: 22px;
}
.uk-card-body h4 {
    font-size: 20px;
    font-style: normal;
}
.uk-card-body h5 {
    font-size: 18px;
}
.uk-card-body p, .uk-card-body p.vyrazny {
    font-size: 18px;
}
.tabPolozka table td {
    vertical-align: top;
}

/*zoznam */
.WEalst {
    clear: both;
    margin-top: 15px;
    margin-bottom: 30px;
}
.WEalst .odkaz {
    margin-bottom: 20px;
}
.WEartc {
    text-align: left;
    display: block;
}

/* Pojmy */

.faq li {
    border-bottom: dotted 3px var(--ZLTA);
    padding-bottom: 20px;
}
.faq .uk-accordion-content {
    margin-top: 5px;
}


/* footer */
footer {
    width: 100%;
    padding: 40px 0;
    margin-top: 0;
    background-color: var(--TMAVOSEDA);
}
.home footer {
    margin-top: 0;
}
footer, footer p {
    font-size: 18px;
    font-weight: normal;
    color: var(--SEDA10);
}
footer h6 {
    color: white;
    font-size: 18px;
    font-weight: 800;
}
footer a {
    color: var(--SEDA10);
    font-size: 18px;
    font-weight: 300;
    text-decoration: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
footer a:hover {
    color: white;
    text-decoration: none;
    text-shadow: 0 0 5px rgba(0,0,0,1);
}
.flexContainer.footerMenu {
    gap: 10px;
    justify-content: space-between;
}
.footerMenu, .footerMenu a {
    font-size: 15px;
    font-weight: normal;
    text-transform: uppercase;
}
.bottomLinks .bottomMenu {
    position: static;
    margin: 5px auto 0;
    text-align: center;
}
.bottomLinks {
    /*border-bottom: solid 1px #575C5D;*/    
}
footer .copyright {
    font-size: 15px;
    font-weight: 300;   
    text-align: center;
}
.HviezdyA {
    position: absolute;
    right: 20%;
    bottom: 20px;
    width: 139px;
    height: auto; 
    opacity: 0.85;
}
footer .col1, footer .col2, footer .col3, footer .col4 {
    width: 250px;
    min-width: 23%;
}  
.ikonaHore {
    height: 38px;
    display: block;
    position: fixed;
    bottom: 40px;
    right: 20px;
    opacity: .85;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
footer a:hover .ikonaHore {
    opacity: 1;
} 



/* úvod */
.obsah .suhvezdia.flexContainer {
    padding: 0;
    margin: 40px 0 60px;
    gap: 15px 20px;
    justify-content: space-between;
}
.obsah .suhvezdie {
    height: 110px;
    min-width: 150px; 
    padding: 0;
    margin: 0;  
    background-image: url('/img/HviezdyB.svg');
    background-position: center center;
    background-size: 150px auto;
    background-repeat: no-repeat;
}
.obsah .suhvezdie .button {
    height: 39px;
    padding: 8px 20px 0;
    font-size: 20px;
    font-weight: normal;
    color: var(--BELASA);
    background-color: var(--MODRA);
}
.obsah .suhvezdie .button:hover {
    color: white;
    background-color: var(--BORDOVA);
}
.obsah .bonusy.flexContainer {
    padding: 0;
    margin: 40px 0 60px;
    gap: 15px 20px;
    justify-content: space-between;
}
.obsah .bonus {
    width: 270px;
    max-width: 23%;
    margin: 0;
    padding: 0;
}
.obsah ul li.bonus {
    background: none;
}
.BonusImg {
    height: 62px;
    width: auto;
    margin: 0 auto;
    display: block;
}
.bonus h3 {
    font-size: 20px;
    font-weight: bold;
    color: var(--BORDOVA);
    text-align: center;
    margin: 0 0 5px;
}
.bonus p {
    font-size: 18px;
    font-weight: normal;
    text-align: center;
    margin: 0;
}
.SOdkazomVpravo {
    position: relative;
    padding-right: 215px;
}
h2.SOdkazomVpravo {
    font-size: 36px;
}
.OdkazVpravo {
    display: block;
    position: absolute;
    top: -5px;
    right: 0;
    font-size: 22px;
    font-weight: bold;
}
.OdkazVpravoDole {
    display: block;
    position: relative;
    top: 0;
    right: 0;
    font-size: 22px;
    font-weight: bold;
    text-align: right;
    margin-bottom: 30px;
}
.IkonaZazitky {
    display: inline-block;
    width: 51px;
    margin-right: 14px;
    vertical-align: -17px;
}


/* zážitky */
.zazitky.gridContainer {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 39px;
    margin: 35px 0 30px;
}
.zazitok.gridItem {
    display: block;
    height: 460px;
    border-radius: 30px;
    padding: 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
}
.overlay {
    background-color: rgba(0,0,0,0.2);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 15;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
a.zazitok:hover .overlay, a.zazitok:focus .overlay {
    background-color: rgba(0,0,0,0.6);
}
.zazitokInfo {
    position: absolute;
    z-index: 16;    
    width: 100%;
    height: 100%;
    width: calc(100% - 40px);
    height: calc(100% - 35px);
    margin: 25px 20px 10px;
    box-sizing: border-box;
}
.zazitok h3 {
    color: white;
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    line-height: 1.0;
    margin: 0 0 10px;
}
.zazitok h4 {
    color: white;
    font-size: 20px;
    font-weight: normal;
    text-align: center;
    line-height: 1.2;
    margin: 0 0 5px;
}
.ZnackaNovinka {
    display: inline-block;
    background-color: var(--BORDOVA);
    font-size: 20px;
    font-weight: normal;
    color: white;
    text-transform: uppercase;
    padding: 2px 10px 0 10px;
    position: relative;
    left: -20px;
    opacity: 0;
}
.DoleVlavo {
    position: absolute;
    left: 0;
    bottom: 0;
    color: white;
    text-align: left;
    width: calc(50% - 10px);
}
.FlagPlace {
    margin-right: -3px;
    height: 39px;
    width: auto;
    display: inline-block;
    vertical-align: -3px;
}
.DoleVpravo {
    position: absolute;
    right: 0;
    bottom: 0;
    color: white;
    text-align: right;
    width: calc(50% - 20px);
    width: 50%;
}
.Cena {
    color: white;
    font-size: 23px;
    font-weight: normal;
}
.CenaCislo {
    color: white;
    font-size: 27px;
    font-weight: 900;
}


/* darčeková poukážka */
.PoukazkaObal {
    background-color: var(--ZLTA);   
}
.Poukazka.gridContainer {
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.PoukazkaNadpis {
    color: white;
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    position: absolute;
    top: 30px;
    width: calc(100% - 40px);
}
.PoukazkaButton {
    display: inline-block;
    padding: 8px 20px 0;
}
.PoukazkaStlpec1.gridItem {
    padding: 0 30px 40px 0;
}
.PoukazkaStlpec2.gridItem {
    padding: 132px 0 40px 0;
}
.IlustraciaPoukazka {
    width: 100%;
    height: auto;
}
.PriserkaA {
    width: 158px;
    height: auto;
    margin-top: 30px;
    margin-bottom: 20px;
    display: block;
}
.PriserkaB {
    width: 160px;
    height: auto;
    margin-top: 5px;
    margin-left: 20px;
    display: block;
    float: right;
}
.HviezdyC {
    width: 180px;
    display: block;
    position: absolute;
    top: 42px;
    right: -70px;
}

/* akcia */
.HlavnyObrContainer {
    position: relative;
    width: 100%;
}
.HlavnyObr {
    width: 100%;
    height: auto;
}
.HlavnyObrContainer .ZnackaNovinka {
    position: absolute;
    top: 77px;
    left: auto;
    right: 0;
    padding: 6px 12px 4px 12px;
    font-size: 22px;
    letter-spacing: 0.05em;
}
.BasicInfo {
    margin: 60px 0 40px;
}
.BasicInfo, .BasicInfo p {
    color: var(--SEDA50);    
}
.BasicInfo .col1 {
    width: 50%;
}
.BasicInfo .col2 {
    width: 45%;
}
.BasicInfo h2, .BasicInfo h2 p {
    font-size: 37px;
    font-weight: 800;
    margin: 0 0 40px;
    color: var(--MODRA);
}
.BasicInfo .CenaAkcie {
    font-size: 40px;
    font-weight: normal;
    margin: 0 0 20px;
    color: black;
    text-align: right;
}
.BasicInfo .CenaCislo {
    font-size: 48px;
    font-weight: 900;
    color: black;
}
.BasicInfo .CenaMena {
    font-size: 48px;
    font-weight: normal;
    color: black;
}
button.kupit {
    color: white;
    background-color: var(--BORDOVA);
    padding: 4px 21px 0 56px;
    background-image: url('/img/TlacidloKosik.svg');
    background-size: 26px 32px;
    background-repeat: no-repeat;
    background-position: 17px 7px;
    font-size: 23px;
    letter-spacing: 0.05em;
    height: 46px;
    margin: 20px 0 20px auto;
}
button.kupit:hover {
    color: white;
    background-color: var(--MODRA);
}
.Lokalita {
    margin: 0 0 20px;
}
.Lokalita.flexContainer {
    gap: 0;
}
.Lokalita h3 {
    padding: 15px 0 0 40px;
    background-image: url('/img/Flag.svg');
    background-size: 29px 41px;
    background-repeat: no-repeat;
    background-position: 0px 0px;
    font-size: 22px;
    font-weight: normal;
    color: black;
}
.Lokalita .col1 {
    width: 362px;
    flex-grow: 3;
    flex-shrink: 1;
}
.Lokalita .col2 {
    width: 22%;
    flex-grow: 1;
    flex-shrink: 3;
    text-align: right;
}
.LokalitaIlustracia {
    width:113px;
    height: auto;
    max-width: 100%;
    margin: 6px 16px 0 0;
}
.VariantyAkcie h4 {
    color: black;
    font-size: 22px;
}
.TableAkcia {
    width: 100%;
    margin: 20px 0;
}
.TableAkcia th {
    color: var(--SEDA60);
    font-size: 20px;
    font-weight: bold;
    letter-spacing: -0.01em;
    text-align: left;
    line-height: 1;
    height: 46px;
    padding: 0 4px;
}
.TableAkcia th.tr {
    text-align: right;
}
.TableAkcia td {
    color: var(--SEDA50);
    font-size: 20px;
    font-weight: normal;
    letter-spacing: -0.01em;
    line-height: 1;
    height: 46px;
    padding: 0 4px;
}
.TableAkcia tr:hover td {
    background-color: var(--BELASA);
}
.TableAkcia tr:nth-child(2n+1) {
    background-color: var(--BELASA1);
}
.TableAkcia tr:nth-child(2n) {
    background-color: var(--BELASA2);
}
.TableAkcia tr:nth-child(1) {
    background-color: white;
}
.TableAkcia .CenaAkcie, .TableAkcia .CenaCislo, .TableAkcia .CenaMena {
    color: var(--SEDA50);    
    font-size: 20px;
}
.TableAkcia .NazovAkcie {
    font-weight: 800;
    color: black;
    line-height: 1;
}
.TableAkcia .kupit {
    padding: 3px 10px 0 40px;
    background-size: 23px 28px;
    background-position: 15px 6px;
    font-size: 16px;
    letter-spacing: 0.05em;
    height: 40px;
    margin: 0 0 0 auto;
    border-radius: 0;
}
.TableAkcia td.sTlacidlom {
    padding: 0;
    text-align: right;
}
.Okno {
    width: 100%;
    overflow: scroll;
}
.InfoAkcia {
    position: relative;
    margin: 60px 0 40px;
}
.InfoAkcia, .InfoAkcia p {
    color: var(--SEDA50);    
}
.InfoAkcia h4 {
    color: black;
    font-size: 22px;
}
.InfoAkcia .HviezdyC {
    top: -30px;
    right: -70px;
}
.page .obsah .bonusy.flexContainer {
    margin: 100px 0 60px;
}
.page h2.SOdkazomVpravo {
    margin-top: 100px;
}
.CommonImgContainer {
    text-align: center;
}
.CommonImgContainer img {
    display: inline-block;
    margin: 20px 0;
    height: auto;
    max-height: 300px;
    max-width: 100%;
}

/* úprava akcií */
.table {
    border: none;
    width: 100%;
    margin-bottom: 20px;
}
.table td {
    vertical-align: top;
}
.table tr:hover {
    background-color: #EEF4FB;
}
.table td:first-child {
    width: 22%;
    padding-left: 0;
}
.table tbody th, .table tbody td {
    padding: 10px 10px 10px 10px;
}
.hint, .table .hint, .table .notification.tip {
    font-size: 85%;
    color: #666;
    margin: 8px 0 5px;
    padding: 0;
    text-align: left;
}
.table .hint:first-child {
    margin-top: 4px;
}
.table input[type="text"] {
    box-sizing: border-box;
    width: 100%;
    padding: 4px 8px;
}
.table textarea {
    box-sizing: border-box;
    width: 100%;
    padding: 4px 8px;
}
#product_params {
    font-size: 90%;
}
#product_params .fa {
    color:var(--MODRA);
    margin-left: 10px;
    cursor:pointer;
}


/* galeria */
.galeriaClanok {
    clear: both;
    width: 100%;
}
.galeriaClanok a {
    overflow: hidden;
    display: inline-block;
    box-sizing: border-box;
    width: 23%;
    width: calc(25% - 10px);
    height: 23%;
    height: calc(25% - 10px);
    float: left;
    margin: 5px;
    padding: 0;
}
article .albumy a {
  padding-left: 0;
  padding-right: 0;
}
.albumy .uk-card {
    overflow: hidden;
    
}
.uk-lightbox-toolbar.uk-position-top.uk-text-right.uk-transition-slide-top.uk-transition-opaque {
    width: 50px;
    top:0;
    right: 0;
    left: auto;
}
.galeria .perex {
    font-weight: 300;
}
.albumy {
    margin-bottom: 30px;
}
.galeriaNahlady.uk-grid > * {
  padding-left: 20px;
}

@media only screen and  (min-width: 1200px) {
 
}

@media only screen and  (max-width: 1370px) {
    .HviezdyC {
        top: 42px;
        right: 15px;
    }
}

@media only screen and ( max-width: 1220px ) 
{
    .wrapper {
        width: 100%;
    }
    .container {
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }
    .WEurl, .WEartc {
        width: 90%;
        width: calc(100% - 20px);
        padding: 17px 20px 30px 30px;
        box-sizing: border-box;
        margin-left: 20px;
    }
    header {
/*        padding-left: 20px;
        padding-right: 20px;*/
    }
    .headlineContainer, .buttonContainer {
      padding-left: 20px;
      padding-right: 20px;
    } 
    .Prihlasenie {
        right: 20px;
    }
    body, p, .odberNoviniek p, .odberNoviniek li {
      font-size: 19px;
    } 
    .clipWrapper h2, h2.clipWrapper {
      font-size: 26px;
    }    
    footer, footer p, footer a {
      font-size: 16px;
    }    
    .gridItem {
        min-width: 25%;
    }
    .CD div {
        font-size: 16px;
    }
    section.sekcia, .WEimgAlone, .WEimgAlone.WEimgRight, .WEimgAlone.WEimgLeft {
        width: 100%;
    }
    .WEimgLeft {
    }
   .WEimgRight {
    }
    .uk-grid {
        margin-left: -50px;
        margin-right: -30px;
    }
    .obsah .suhvezdia.flexContainer {
        justify-content: center;
    }
}

@media only screen and ( max-width: 1100px ) 
{
    .Spacer1 {
        width: 50px;
    }
    .Spacer2 {
        width: 50px;
    }
    footer .col1, footer .col2, footer .col3, footer .col4 {
        width: 400px;
    }     
    .zazitky.gridContainer {
        gap: 20px;
    }
    .zazitok.gridItem {
        height: 400px;
        border-radius: 30px;
    }
    .zazitok h3 {
        font-size: 30px;
    }
    .zazitok h4 {
        font-size: 18px;
    }
    .Cena {
        font-size: 20px;
    }
    .CenaCislo {
        font-size: 23px;
    }
    .DoleVlavo {
        font-size: 17px;
    }
    .Lokalita .col2 {
        display: none;
    }
    #newsletter_formular_box_info.vidno {
        height: 155px;
    }
}

@media only screen and ( max-width: 960px ) 
{
    header {
        height: 180px;
    }
    .headerContainer {
        flex-wrap: wrap;
    }
    .logo {
        order: 1;
    }
    .Spacer1 {
        order: 2;
        width: 160px;
        flex-grow: 5;
    }
    .mainMenu {
        order: 3;
    }
    .SearchBox {
        order: 4;
        margin-top: 18px;
        width: 45%;
        max-width: 400px;
    }
    .Spacer2 {
        order: 5;
    }
    .Rezervacia {
        order: 6;
        margin-top: 19px;
    }
    .Spacer3 {
        order: 7;
        width: 0;
        min-width: 0;
        flex-grow: 0;
        flex-shrink: 0;
    }
    
}


@media only screen and ( max-width: 900px ) 
{
    #newsletter_formular input[type="email"], #newsletter_formular input[type="text"], #newsletter_formular textarea {
      width: 25vw;
    }
    .gridContainer {
      gap: 20px;
    }
    .zazitky.gridContainer {
        grid-template-columns: 1fr 1fr;
    }
    .PriserkaC {
        display: none;
    }
    .Newsletter .col1 {
        width: calc(100% - 240px);
    }    
    .Newsletter .col2 {
        width: 220px;
    }    
    .Newsletter .col3 {
        width: 100%;
        padding-top: 0;
    }    
    .formular .button.NewsletterSubmit {
        position: static;
        width: 228px;
    }
}

@media only screen and ( max-width: 860px ) 
{
    .mainMenu li {
      /*margin-left: 10px;*/
    }
    .mainMenu li a {
      font-size: 18px;
    }
    #newsletter_formular input[type="email"], #newsletter_formular input[type="text"], #newsletter_formular textarea {
      width: 20vw;
    }
    .formular input, .formular textarea {
      font-size: 19px;
      padding: 4px 8px;
    }  
    .odberNoviniek p, .odberNoviniek li {
      font-size: 17px;
    } 
    .odberNoviniek .formular label {
      font-size: 17px;
    }
    footer h6 {
        font-size: 18px;
    }
    .blok .headlineContainer, .buttonContainer {
      padding-left: 10px;
      padding-right: 10px;
    }    
    h1 {
      font-size: 48px;
    }
    h2 {
      font-size: 42px;
    }
    section h2 {
      font-size: 36px;
    }    
    h3 {
      font-size: 34px;
    }
    h4 {
        font-size: 28px;
    }
    .vytvarnaTvorba.gridContainer {
      gap: 15px;
    }
    .vytvarnaTvorba .gridItem {
      margin-bottom: 15px;
    } 
    .gridContainer {
      gap: 15px;
    }    
    footer .col1, footer .col2, footer .col3, footer .col4 {
        width: 260px;
    }  
    footer {
        padding-bottom: 100px;
    }
    .bonus h3 {
        font-size: 18px;
    }
    .bonus p {
        font-size: 17px;
    }
}

@media only screen and ( max-width: 800px ) 
{
    .obsah .bonus {
        width: 350px;
        max-width: 48%;
        min-width: 34%;
    }
    .PoukazkaStlpec1.gridItem {
      padding: 100px 0 0 0;
    }
    .PoukazkaStlpec2.gridItem {
      padding: 0 0 20px 0;
    }
    .Poukazka.gridContainer {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    .HviezdyC {
        top: 93px;
        right: 20px;
    }
    .BasicInfo .col1 {
        width: 100%;
    }
    .BasicInfo .col2 {
        width: 100%;
    }
    .BasicInfo .CenaAkcie {
        text-align: left;
        display: inline-block;
        vertical-align: middle;
    }
    button.kupit {
        margin: 0px 0 0px 30px;
        display: inline-block;
        vertical-align: 7px;
    }
    .NewsletterB .col1 {
         width: 100%;
    }
    .NewsletterB .col2 {
        width: 100%;
        text-align: left;
        padding-top: 0;
    }
    #newsletter_formular_box_info.vidno {
        height: 280px;
    }
}


@media only screen and ( max-width: 710px ) 
{
    .headlineContainer h1 {
        font-size: 60px;
    }
    .headlineContainer h2 {
        font-size: 40px;
    }
    .headlineContainer h4 {
        font-size: 22px;
    }
    .RaketaA {
        width: 110px;
        left: 20%;
        bottom: -107px;
    }
    .PlanetaA {
        width: 100px;
        left: 70%;
        bottom: -25px;
    }
    .panorama, .panorama .container {
      height: 400px;
    }    
    .headlineContainer, .buttonContainer {
      padding: 20px 20px 20px;
    }
    .gridContainer {
      grid-template-columns: 1fr 1fr;
      gap: 30px;
    }
    .blok.gridContainer {
      grid-template-columns: 1fr;
    }    
    .eshopUkazky .gridContainer {
      gap: 15px;
    }
    .gridItem > img {
      margin: 0 auto;
    }    
    .gridItem.CD a div {
        margin: 8px 0 0;
    }
    .blok .gridItem.tr {
      text-align: center;
    }    
    .blok .buttonContainer {
      position: relative;
    }    
    .blok .gridContainer, .blok.gridContainer {
      gap: 10px;
    }    
    body, p, .odberNoviniek p, .odberNoviniek li, .formular label {
      font-size: 18px;
    } 
    .clipWrapper h2, h2.clipWrapper {
      font-size: 24px;
    } 
    .polovicnaSirka, h2.clipWrapper.polovicnaSirka {
        width: 100%;
    }
    button, .button {
      font-size: 19px;
      padding: 8px 12px;
    }
    .sekcia {
        padding-bottom: 20px;
    }    
    .blok {
        margin-bottom: 30px;
    } 
    .formular input, .formular textarea {
      font-size: 18px;
      padding: 6px 10px;
    }  
    footer p, footer a {
      font-size: 15px;
    }
    .blok .gridItem {
      min-width: auto;
    }
    .col1, .col2, .col3, .col4 {
      margin-right: 5px;
    }    
    .vytvarnaTvorba.gridContainer {
      grid-template-columns: 1fr 1fr;
      gap: 15px;
    }
    .vytvarnaTvorba .gridItem {
      margin-bottom: 10px;
    }
    .galeriaClanok a {
        width: 30%;
        width: calc(33% - 10px);
        height: 30%;
        height: calc(33% - 10px);
    }
    .WEurl, .WEartc {
        padding-top: 19px; 
    }
    .CDLP .buttonContainer {
        text-align: center;
    }
    .stream.YouTube, .stream.Spotify, .stream.Deezer, .stream.Apple  {
        background-position: top center;
        padding: 35px 0 0 0;
        margin-bottom: 20px;
    }
    .Spacer1 {
       width: 20px;
    }
    .Newsletter .col1 {
        width: 100%;
    }    
    .Newsletter .col2 {
        width: 100%;
        padding-top: 10px;
    }    
    .Newsletter .col3 {
        width: 100%;
    }    
    #newsletter_formular input[type="text"], #newsletter_formular input[type="email"] {
        width: 70vw;
    }
    .home .Newsletter {
      margin: 0 0 50px;
    }
    #newsletter_formular_box_page.vidno {
        height: 500px;
    }
}

@media only screen and ( max-width: 630px ) 
{
    .portret {
      width: 150px;
    }
    .headlineContainer h1 {
      font-size: 40px;
    }
    .headlineContainer h2 {
      font-size: 30px;
    }
    .headlineContainer h4 {
      font-size: 20px;
    }
    .RaketaA {
        width: 80px;
        left: 16%;
        bottom: -76px;
    }
    .PlanetaA {
        width: 80px;
        left: 70%;
        bottom: -25px;
    }

    .ThemeName {
        left: 80px;
        font-size: 30px;
    } 
    #stick .mainMenu li {
      margin: 0 8px;
    }
    .koncertDatum {
        min-width: 140px;
    }    
}







@media only screen and ( max-width: 600px ) 
{

    .txtFloatLeft, .txtFloatRight {
        float: none;
        width: calc(100% - 80px);
        margin-left: auto;
        margin-right: auto;
    }

    .imgLeft, .imgRight {
        float: none;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .eshopUkazky .gridContainer {
      grid-template-columns: 1fr 1fr;
      gap: 15px;
    }
    .eshopUkazky .gridItem {
      margin-bottom: 30px;
    }
    .odberNoviniek p, .odberNoviniek li, .odberNoviniek .formular label {
      font-weight: normal;
    }    
    footer section.cervena h2 {
        width: calc(100% - 60px);
        font-size: 34px;
    }    
    h1 {
      font-size: 42px;
    }
    h2 {
      font-size: 36px;
    }
    h3 {
      font-size: 30px;
    }
    h4 {
      font-size: 26px;
    }
    h5 {
      font-size: 22px;
    }
    section h2 {
      font-size: 33px;
    }
    footer .col1, footer .col3 {
        width: 180px;
    } 
    footer .col2, footer .col4 {
        width: 220px;
    } 
    .SOdkazomVpravo {
        padding-right: 0;
        padding-top: 40px;
    }
    .OdkazVpravo {
        top: -30px;
        right: auto;
        left: 0;
    }
    .zazitky.gridContainer {
        grid-template-columns: 1fr;
    }
    .TableAkcia th {
        font-size: 16px;
    }
    .TableAkcia td {
        font-size: 16px;
    }
    .TableAkcia .CenaAkcie, .TableAkcia .CenaCislo, .TableAkcia .CenaMena {
        font-size: 16px;
    }
    .TableAkcia .kupit {
        padding: 3px 6px 0 6px;
        background-image: none;
        font-size: 14px;
    }

}


@media only screen and ( max-width: 590px ) 
{
    header {
      /*height: 140px;*/
    }
    header .mainMenu {
      /*display: none;*/
    }
    #stick {
      opacity: 1;
    }
    .ThemeName {
      top: 100px;
      left: 60px;
    }    
  
    .gridContainer {
      gap: 20px;
    }    
    
}

@media only screen and ( max-width: 560px ) 
{
    header {
        height: 244px;
    }
    .onlyWideScreen {
        display: none;
    }
    .onlyNarrowScreen {
        display: block;
    }   
    .headerContainer {
        display: block;
    }
    .headerContainer {
        display: block;
    }
    .logo {
        margin: 0 auto;
    }
    .SearchBox, .Rezervacia {
        margin: 20px auto 0;
    }
    .SearchBox {
        width: 70%;
        max-width: 350px;
    }
    .HviezdyC {
        display: none;
    }
}


@media only screen and ( max-width: 540px ) 
{
    .mainMenu li a {
      font-size: 14px;
    } 
    .gridContainer {
      gap: 15px;
    } 
    .galeriaClanok a {
        width: 47%;
        width: calc(50% - 10px);
        height: 47%;
        height: calc(50% - 10px);
    }
    .flexContainer.footerMenu {
        gap: 30px;
        row-gap: 6px;
    }
    .obsah .bonus {
        width: 210px;
    }
    .PoukazkaStlpec1.gridItem {
      padding: 160px 0 0 0;
    }
}

@media only screen and ( max-width: 500px ) 
{
    footer .col1, footer .col2, footer .col3, footer .col4 {
        width: 100%;
    }  
    footer, footer p, footer h6 {
        text-align: center;
    }
    .obsah .bonus {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
    }

    
}

@media only screen and ( max-width: 460px ) 
{

    #stick .ikonyMenu.flexContainer, #stick.vidno .ikonyMenu.flexContainer, .ikonyMenu.flexContainer {
        display: flex;
    }
    #stick .mainMenu li a {
        font-size: 17px;
        letter-spacing: 0.05em;
    }
    #stick .mainMenu {
        /*margin-top: 15px;*/
    }
    #newsletter_formular_box_info.vidno {
        height: 340px;
    }

}

@media only screen and ( max-width: 400px ) 
{
    .BasicInfo .CenaAkcie {
        text-align: left;
        display: block;
    }
    button.kupit {
        margin: 20px 0 20px 0;
        display: block;
    }
    #newsletter_formular_box_page.vidno {
        height: 560px;
    }
    #newsletter_formular_box_info.vidno {
        height: 450px;
    }
}


@media only screen and ( max-width: 320px ) 
{


}


@media only screen and ( max-width: 640px ) /* UIkit menej ako @s */
{


}



@media only screen and ( min-width: 640px ) and ( max-width: 960px ) /* UIkit menej ako @m a viac ako @s */
{


}

@media only screen and ( min-width: 960px ) and ( max-width: 1200px ) 
{

}

@media (orientation: landscape) and ( max-width: 1200px ) {
    .poster {
        width: 100%;
        height: 80vh;
    }
}


