
body {
   font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
   font-size: 18px;
   color: #656565;
   margin : 0;   
   background-color : #fff;
   max-width: 100%;
   overflow-x: hidden;      
}

.rezervacia {
    background-color: #fcef8b;
    color: #1967ac;
    border: none;
    border-radius: 30px;
    padding: 20px 20px;
    font-size: 17px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.5s ease, color 0.5s ease, transform 0.5s ease;
    margin-top: 0px;
}

.rezervacia svg {
    margin-right: 5px;
    fill: #fff;
    transition: transform 0.5s ease;
}

.rezervacia:hover {
    background-color: #1967ac;
    color: #fcef8b;
}

.rezervacia:hover svg {
    fill: #1967ac;
    transform: rotate(180deg);
}


    .buttons-container {
        display: flex;
        gap: 10px;
        flex-wrap: wrap; /* Umožní presun gombíkov na nový riadok */
        justify-content: center; /* Zarovná gombíky na stred */
    }
    .button {
        display: flex;
        align-items: left;
        justify-content: left;
        background-color: #1967ac;
        color: #fff;
        border: none;
        border-radius: 30px;
        padding: 20px 20px;
        font-size: 18px;
        text-align: center;
        cursor: pointer;
        transition: transform 0.2s ease;
        flex: 1 1 auto; /* Flexibilná šírka pre gombíky */
    }
    .button svg {
        margin-right: 5px;
        fill: #fff;
    }

    @media (max-width: 768px) {
        .buttons-container {
            flex-direction: column; /* Usporiadanie gombíkov pod sebou */
            align-items: center;
            gap: 5px;
        }
        .button {
            flex: none; /* Zruší šírku určenú flex */
            width: 100%; /* Gombíky zaberú plnú šírku kontajnera */           
            padding: 20px 20px;
            align-items: left;
            justify-content: left;
            text-align: left;
        }
        .rezervacia {
            flex: none; /* Zruší šírku určenú flex */
            width: 100%; /* Gombíky zaberú plnú šírku kontajnera */           
            padding: 20px 0px;
        }
    }

.rectangle-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center; /* Zarovnanie na stred */
}

.rectangle {
    background-color: #fff;
    border: 4px solid #0067ac;
    border-radius: 40px;
    flex: 1 1 calc(25% - 15px); /* Štandardne 4 vedľa seba */
    max-width: calc(25% - 15px);
    min-width: 250px; /* Minimálna šírka, aby sa zabránilo stlačeniu na tenký obdĺžnik */
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}

.rectangle img {
    width: 55px;
    height: 55px;
    margin-bottom: 20px;
}

.rectangle .title {
    color: #0067ac;
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 20px 0;
}

.rectangle .text {
    color: #0067ac;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

.rectangle .button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1967ac;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 18px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.5s ease, color 0.5s ease, transform 0.5s ease;
    margin-top: 20px;
}

.rectangle .button svg {
    margin-right: 5px;
    fill: #fff;
    transition: transform 0.5s ease;
}

.rectangle .button:hover {
    background-color: #fcef8b;
    color: #0067ac;
}

.rectangle .button:hover svg {
    fill: #0067ac;
    transform: rotate(180deg);
}


/* Pre najmenšie rozlíšenia: 4 pod sebou */
@media (max-width: 1000px) {
    .rectangle {
        flex: 1 1 100%; /* Každý na samostatnom riadku */
        max-width: 100%;
    }
}
    @media (max-width: 768px) {

        .rectangle .button {
            flex: none; /* Zruší šírku určenú flex */
            width: 100%; /* Gombíky zaberú plnú šírku kontajnera */           
            padding: 20px 0px;
        }
    }


.header { text-align: center; }
.header a { padding: 50px 0; display: block; font-size: 48px; text-decoration: none; color: #656565; }

.content {
      display: none;
      margin: 10px 0;
    }

    /* Štýl pre skrytý checkbox */
    input[type="checkbox"] {
      display: none;
    }

    /* Zobrazí obsah iba ak je checkbox označený */
    #rozbal1:checked ~ #content1,
    #rozbal2:checked ~ #content2,
    #rozbal3:checked ~ #content3 {
      display: block;
    }

    /* Štýl pre label */
    label {
      cursor: pointer;
      color: blue;
      text-decoration: underline;
    }

    label:hover {
      color: darkblue;
    }
    
.contact-icons {
    position: fixed;
    top: 110px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10000; /* Pridajte z-index aby boli ikony viditeľné na vrchu */
}

.icons {
    width: 80px;
    height: 80px;
    background-color: #0067ac;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s, width 0.3s, height 0.3s, font-size 0.3s;
    text-decoration: none;
    color: #fff;
    font-size: 50px;
}

.icons img {
    width: 50%;
    height: 50%;
}

.icons:hover {
    background-color: #f7dd19;
}

/* Media queries for responsive design */
@media (max-width: 1200px) {
    .icons {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }

    .icons img {
        width: 50%;
        height: 50%;
    }
}

@media (max-width: 992px) {
    .contact-icons {
    display: none;
  }
    .icons {
        width: 60px;
        height: 60px;
        font-size: 30px;        
    }
    .contact-icons {
        top: 110px;
    }

    .icons img {
        width: 50%;
        height: 50%;
    }
}

@media (max-width: 768px) {
    .icons {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
    .contact-icons {
        top: 110px;
    }

    .icons img {
        width: 50%;
        height: 50%;
    }
}

@media (max-width: 576px) {

    .icons {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .icons img {
        width: 50%;
        height: 50%;
    }
}

/* Media queries for responsive design */
@media (max-width: 1200px) {
    .icons {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }
}

@media (max-width: 992px) {
    .icons {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .icons {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}

@media (max-width: 576px) {
    .icons {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}


textarea {
   font-size: 18px;  
}

p.vsetkynovinky {
  float: right; 
}


.ciara {
  background-color: #eee;
  height: 1px;
  width: 100%;
}
.tretina {
  display: inline-block; 
  width: 33%;   
  vertical-align: top;
  padding-top: 0px;
  padding-bottom: 0px;
  min-width: 300px;
}
.modratretina {
  display: inline-block;
  border: 0px;
  margin: 0px;
  padding: 0px;
  vertical-align: middle;
  width: 33%;
  min-width: 333px;
  height: 100%;
  min-height: 380px;
  background-color: #b0d8ec;
}

.cube1 { display: inline-block; padding: 0px; margin: 0px; padding-bottom: 40px; padding-top: 20px; width: 33%; max-width: 390px; min-width: 300px; vertical-align: top; text-align: center; margin: 0 auto; } 
.cube2 { display: inline-block; padding: 0px; margin: 0px; padding-bottom: 40px; padding-top: 20px; width: 33%; max-width: 390px; min-width: 300px; vertical-align: top; text-align: center; margin: 0 auto; }
.cube3 { display: inline-block; padding: 0px; margin: 0px; padding-bottom: 40px; padding-top: 20px; width: 33%; max-width: 390px; min-width: 300px; vertical-align: top; text-align: center; margin: 0 auto; }
.icon_footer  { margin-bottom: 30px; margin-top: 20px; }

div.footer_icon { 
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  background-color: #0067ac;
  width: 50px;
  height: 50px;
  margin: 0px;
  border-radius: 50%;
  padding: 0px;
  transition: 0.6s;
}
div.footer_icon:hover {
  background-color: #cb296b;
}
img.footer_icon { 
  margin: 14px;
  width: 22px;
  padding: 0px;
}



div.cubes { width: 100%; margin: 0 auto; text-align: center; padding: 0px; margin: 0px; }
div.icon { display: inline-block; min-width: 190px; padding: 0px; margin: 0 auto; }
img.icon { width: 170px; padding: 0px; margin: 0px; }
img.icon_footer  { margin-bottom: 30px; }


img.gallery {
  border:0px; 
  padding: 10px; 
  width:100%;
  max-width: 160px;
  min-width: 120px; 
}

img.obrazok {
display: inline-block; width: 49%; padding: 0px; margin: 0px; padding-right: 5px;  
}

div.kontaktleft {
  display: inline-block;
  vertical-align: top;
  width: 49%;
  padding: 0px;
  margin: 0px;
}
div.kontaktright {
   display: inline-block;
   vertical-align: top;
   width: 49%;
   padding: 0px;
   margin: 0px;
}

#galeria {  
  margin: 0px;  
  height: auto;
  background-color: #fff;    
  padding-bottom: 20px;
}
#galeria1 {  
  text-align: center;
  margin: 0 auto;  
  padding: 0px;
  padding-top: 0px;  
  max-width: 1200px;
  width: 100%;
}
div.galeria2 { 
  display: inline-block;
  padding: 3px;
}
img.galeria2 {
  transition: 1s ease;
  height: 125px;  
  width: 180px;
  margin: 0px;
  padding: 0px;
  border: 1px solid #eee;
  border-radius:10%;
  filter: gray;
  filter: grayscale(100%);
 -webkit-filter: grayscale(100%);

}
img.galeria2:hover {
  filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
  filter: none;
 -webkit-transition: all 1s ease;
 transition: 0.3s ease;
 border-radius:30%;
}
div.galeria3 { 
  margin: 0 auto;
  text-align: center;
  width: 50%;
  display: inline-block;
  vertical-align: top;
  padding: 0px;  
}
a.galeria        { font-size: 16px; color: #0067ac; text-decoration: none; letter-spacing: -1px; } 
a.galeria:hover  { font-size: 16px; color: #656565; text-decoration: none; letter-spacing: -1px; } 
a                { color: #ee0000; } 
a:hover          { color: #0067ac; text-decoration: underline; } 

 .pcontainer {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 10px;
        }
        .text-field {
            width: 100%;
            padding: 40px;
            box-sizing: border-box;
            margin-top: 20px;
            border: 1px solid #ccc;
            background-color: #f8f8f8;
            box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.2);
            opacity: 0;
            transition: opacity 0.2s ease;
        }
        .text-field.show {
            opacity: 1;
        }

/* STRUCTURE */
* {
  box-sizing: border-box;
}

/* Create three equal columns that floats next to each other */
.column {
  float: left;
  width: 33.33%;
  padding: 0px;  
  height: auto; /* Should be removed. Only for demonstration */
}

/* Create three equal columns that floats next to each other */
.column50 {
  float: left;
  width: 50%;
  padding: 10px;  
  height: auto; /* Should be removed. Only for demonstration */
}

/* Create three equal columns that floats next to each other */
.column100 {
  float: left;
  width: 100%;
  padding: 10px;  
  height: auto; /* Should be removed. Only for demonstration */
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

#minilogo {
  display: inline-block;
  vertical-align:middle;
  width: 100%;
  height: 100%;
  max-width: 60px;
  padding: 0px;
  margin: 0px;
  padding-right: 15px;
  margin-top: -10px;
}

#nadpis         { padding-top: 40px; font-size: 24px; color: #fff; text-align: left; }
#novinkynadpis  { padding-top: 20px; padding-bottom: 20px; font-size: 24px; color: #0067ac; }

p.novinkanadpis { 
  display: inline-block;
  font-size: 40px;
  color: #0067ac;
  text-align: center;
  padding: 0; //top right bottom left
  margin-top: 0 0 0 0; //top right bottom left
}

p.novinkatext   { padding: 0px; font-size: 18px; text-align: left;}

div.novinka        { width: 100%; height: 200px; margin-bottom: 20px; }

div.novinka2 {
  width: 100%;
  height: auto; 
}
#novinka2 {
  width: 100%;
  max-width: 1200px;  
  margin: 0px auto;    
  padding: 0px;
  text-align: center;

}

.container {
   display: flex;
   margin: 0px;
}

.container2 {
   display: flex;
   flex-wrap: wrap;
   margin: 0px;
   margin-top: 0px;
}

.section {
   padding: 0px;
   -o-transition:.5s;  -ms-transition:.5s;  -moz-transition:.5s;  -webkit-transition:.5s;  transition:.5s;
   flex: 1; /*grow*/
   border: 0px solid;
}
.section:hover {
  filter:alpha(opacity=60);-moz-opacity:.60;opacity:.60; cursor: pointer; 
}
.section_middle {
   padding: 0px 20px 0px 20px;
   -o-transition:.5s;  -ms-transition:.5s;  -moz-transition:.5s;  -webkit-transition:.5s;  transition:.5s;
   flex: 1; /*grow*/
   border: 0px solid;
}
.section_middle:hover {
  filter:alpha(opacity=60);-moz-opacity:.60;opacity:.60; cursor: pointer; 
}


.section2 {
   margin: 10px;
   flex: 1; /*grow*/
   border: 0px solid;
}
.section2:hover {
}

.break {
  flex-basis: 100%;
  width: 0;
}


@media (max-width: 1000px) { /*breakpoint*/
  .container {
    flex-direction: column;
  }
}

.section3 {
  width: 100%;
  padding-left: 0px;
  margin-left: 0px;
  padding-right: 0px;
  margin-right: 0px;
  margin-top: 20px;  
  padding-top: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  text-align: justify;
}

.outer {
  position: relative;  
  padding: 0px;
  margin: 0px;
  height: auto;
  width: 100%;
}
.inner {  
  margin: 0 auto;  
  text-align: center;
  padding-top: 0px;  
  padding-bottom: 30px;  
  max-width: 1200px;
  width: 100%;
}


#napistenam {
  position: relative;  
  padding: 0px;
  margin: 0px;
  height: auto;
  min-height: 100px;
  background-color: #0067ac;
  background-attachment: fixed; 
  background-size: cover;
  width: 100%;
}
#napistenam1 {  
  margin: 0 auto;  
  padding-top: 0px;  
  padding-bottom: 0px;  
  max-width: 1200px;
  width: 100%;
}

#cenovaponuka1 {
  position: relative;  
  background: url(../pictures/bg_opytajte_sa.webp) no-repeat;
  background-size: cover;
  background-position: center center;

  padding: 0px;
  margin: 0px;
  height: auto;
  min-height: 100px;  
  width: 100%;
}
#cenovaponuka2 {  
  margin: 0 auto;  
  padding-top: 0px;  
  padding-bottom: 0px;  
  max-width: 1200px;
  width: 100%;
  text-align: right;
}

#offer2nadpis {
  font-size: 24px;
  color: #fff;
  text-align: right; 
  margin: 0px auto;
  padding-top: 40px;  
}
#offer2 {
  position: relative;  
  width: 50%;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 20px;
  margin-left: 50%;

}
#offer2 p {  
  font-size: 28px;
  padding: 0px;
  margin: 0px;
  color: #fff;
}
#offer2 p.text {  
  font-size: 14px;  
  margin: 0px;
  padding: 0px;
  color: #fff;
}
#offerbox2 {  
  position: relative;  
  padding-top: 20px;  
  padding-left: 0px;
  padding-right: 0px;
  display: inline-block;
  text-align: center;
  margin: 0 auto;  
  height: auto;
  min-height: 320px; 
  width: 100%;   
}
#offerbox2 input {
  font-size: 18px;
  border: 1px solid #656565;
  height: 39px;
  color: #441e0d;
  background-color: #fff;
  width: 100%;
  padding: 10px;
}
#offerbox2 input:hover {
  background-color: #f3f3f3;
}
#offerbox2 select {
  font-size: 18px;
  border: 2px solid #656565;
  height: 39px;
  color: #441e0d;
  background-color: #fff;
  width: 100%;
  padding: 0px;
}
#offerbox2 select:hover {
  background-color: #fff;
}
textarea.offerbox2 {
  font-size: 18px;
  border: 1px solid #656565;
  height: 235px;  
  color: #441e0d;
  background-color: #fff;
  width: 94%;
  padding: 10px;
}
textarea.offerbox2:hover {
  background-color: #f3f3f3;
}
#offerbox2 input.odeslat {
  float: right;
  font-size: 14px;
  border: 0px solid #fff;
  margin-top: 20px;
  height: 48px;  
  width: 140px;
  color: #000;
  background-color: #f7dd19;
  text-align: center;
  font-size: 18px;
}
#offerbox2 input.odeslat:hover {
  border: 1px solid #fff;
  background-color: #0067ac;
  color: #fff;
}

#offer {
  position: relative;  
  text-align: center;
  margin: 0 auto;
  width: 97%;
  padding: 0px;
}
#offer p {  
  font-size: 28px;
  padding: 0px;
  margin: 0px;
  color: #fff;
}
#offer p.text {  
  font-size: 14px;  
  margin: 0px;
  padding: 0px;
  color: #fff;
}
#offerbox {  
  position: relative;  
  padding-top: 50px;  
  padding-left: 0px;
  padding-right: 0px;
  display: inline-block;
  text-align: center;
  margin: 0 auto;  
  height: auto;
  min-height: 320px; 
  width: 100%;   
}
#offerbox input {
  font-size: 18px;
  border: 2px solid #0067ac;
  height: 39px;
  color: #441e0d;
  background-color: #fff;
  width: 100%;
  padding: 10px;
}
#offerbox input:hover {
  background-color: #f3f3f3;
}
#offerbox select {
  font-size: 18px;
  border: 2px solid #0067ac;
  height: 39px;
  color: #441e0d;
  background-color: #fff;
  width: 100%;
  padding: 0px;
}
#offerbox select:hover {
  background-color: #f3f3f3;
}
textarea.offerbox {
  font-size: 18px;
  border: 2px solid #0067ac;
  height: 135px;  
  color: #441e0d;
  background-color: #fff;
  width: 94%;
  padding: 10px;
}
textarea.offerbox:hover {
  background-color: #f3f3f3;
}
#offerbox input.odeslat {
  float: right;
  font-size: 14px;
  border: 0px solid #fff;
  margin-top: 20px;
  height: 48px;  
  width: 140px;
  color: #000;
  background-color: #f7dd19;
  text-align: center;
  font-size: 18px;
}
#offerbox input.odeslat:hover {
  border: 1px solid #fff;
  background-color: #0067ac;
  color: #fff;
}



.demo_wrapper {
  width: 50%;
  margin: 0 auto;
}
@media only screen and (max-width: 800px) {

  .demo_wrapper {
    width: 80%;
  }  

}
.demo_block {
  width: 100%;
}

#pagewrap {
  padding: 0px;
  width: 100%;
  margin: 0px auto;
}

#slogan2                { color: #000; margin-top: 40px; padding: 80px; margin: 0px; font-size: 32px; font-weight: normal; }


#kdesom1 {    
  width: 100%;
  height: 91px;
  background-color: #0067ac;    
  vertical-align: middle;  
  padding: 0px;
  margin: 0px;
}

#kdesom2 {   
  vertical-align: middle;  
  margin: 0 auto;
  padding: 0px;
  width: 100%;
  height: 100%;
  max-width: 1200px;   
}

#kdesom_left { 
  height: 100%;  
  padding: 0px;
  margin: 0px;
  display: inline-block;  
  vertical-align: top;
  width: 100%;      
}

#kdesom_right {  
  height: 100%;
  padding: 0px;
  margin: 0px; 
  display: inline-block;
  width: 15%;  
  text-align: right;
}

a.kdesom {   
  font-size: 24px; 
  color: #fff;
}
a.kdesom:hover {
  font-size: 24px; 
}


p.kdesom {   
  float: left; 
  color: #fff; 
  font-size: 24px; 
  font-weight: normal; 
  margin-top: 34px;
  padding: 0px;
}

#socialnesiete {
  display: inline-block;  
  width: auto;
  height: 100%;
  padding-top: 30px;
}

#facebook               { float: right; width: 35px; height: 35px; cursor: pointer; background: url(/pictures/facebook_icon.svg) no-repeat; background-size: cover; margin-right: 5px; -o-transition:.5s;  -ms-transition:.5s;  -moz-transition:.5s;  -webkit-transition:.5s;  transition:.5s;}
#facebook:hover         { filter:alpha(opacity=60);-moz-opacity:.60;opacity:.60; }
#instagram              { float: right; width: 35px; height: 35px; cursor: pointer; background: url(/pictures/instagram_icon.svg) no-repeat; background-size: cover; margin-right: 14px;  padding: 0px; -o-transition:.5s;  -ms-transition:.5s;  -moz-transition:.5s;  -webkit-transition:.5s;  transition:.5s;}
#instagram:hover        { filter:alpha(opacity=60);-moz-opacity:.60;opacity:.60; }
#youtube                { float: right; width: 35px; height: 35px; cursor: pointer; background: url(/pictures/youtube_icon.svg) no-repeat; background-size: cover; margin-right: 14px;  padding: 0px; -o-transition:.5s;  -ms-transition:.5s;  -moz-transition:.5s;  -webkit-transition:.5s;  transition:.5s;}
#youtube:hover          { filter:alpha(opacity=60);-moz-opacity:.60;opacity:.60; }
#whatsapp               { float: right; width: 35px; height: 35px; cursor: pointer; background: url(/pictures/whatsapp_icon.svg) no-repeat; background-size: cover; margin-right: 5px; -o-transition:.5s;  -ms-transition:.5s;  -moz-transition:.5s;  -webkit-transition:.5s;  transition:.5s;}
#whatsapp:hover         { filter:alpha(opacity=60);-moz-opacity:.60;opacity:.60; }


.parallax-window {
    height: 100%;
    max-height: 796px;
    min-height: 796px;
    background: transparent;
}
.parallax-window-bottom {
    height: 100%;
    max-height: 547px;
    min-height: 500px;
    background: transparent;
}

#header1 {   
  position: fixed;
  max-width: 1170px;
  width: 100%;
  margin: 0px auto; 
  padding: 0px;      
}
#header2 {
  display: inline-block;
  vertical-align: top;
  float: left;
  width: auto; 
  height: 100%;
  padding: 0px; 
}
#header3 {
  display: inline-block;
  vertical-align: top;
  float: right;
  text-align: right;
  width: auto; 
  height: 100%;
  padding: 0px;   
}

#slider_header1 {  
  position: fixed;  
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 9800;
  max-width: 1170px;
  width: 100%;
  margin: 0px auto; 
  padding: 0px;      
}
#slider_header2 {
  display: inline-block;
  vertical-align: top;
  float: left;
  width: auto; 
  height: 100%;
  padding: 0px; 
}
/*
#slider_header3 {
  display: inline-block;
  vertical-align: top;
  float: right;
  text-align: right;
  width: auto; 
  height: 100%;
  padding: 0px;   
}
*/
#slider_header3 {

  clear: both;
  text-align: left;
  width:400px;   
  padding: 0px;   
}


#logo                   { margin-top: 100px; width: 550px; height: 226px; background:url(../pictures/logo_autosklo_jurista.webp) no-repeat; cursor: pointer; background-size: 100%; -o-transition:.5s;  -ms-transition:.5s;  -moz-transition:.5s;  -webkit-transition:.5s;  transition:.5s; }
#logo:hover             { margin-top: 100px; width: 550px; height: 226px; background:url(../pictures/logo_autosklo_jurista.webp) no-repeat; cursor: pointer; background-size: 100%; filter:alpha(opacity=50);-moz-opacity:.50;opacity:.50;  }

#gradient {
  position: absolute;
  opacity: 0.9;
  pointer-events: none;
  z-index: 9700;
  background:url(../pictures/bg_gradient_transparent.png) repeat-y; 
  background-size: contain;
  height: auto;
  width: 100%;
}

#telefon                { color: #fff; margin-top: 60px; font-size: 26px; padding-left: 28px; display: block; text-align: left; cursor: pointer; -o-transition:.5s;  -ms-transition:.5s;  -moz-transition:.5s;  -webkit-transition:.5s;  transition:.5s;}
#telefon:hover          { color: #ee0000; filter:alpha(opacity=50);-moz-opacity:.50;opacity:.50; }
#mail                   { color: #fff; margin-top: 4px; font-size: 26px; padding-left: 28px; display: block; text-align: left; cursor: pointer; -o-transition:.5s;  -ms-transition:.5s;  -moz-transition:.5s;  -webkit-transition:.5s;  transition:.5s;}
#mail:hover             { color: #ee0000; filter:alpha(opacity=50);-moz-opacity:.50;opacity:.50; }
#kontakt                { color: #fff; margin-top: 4px; font-size: 26px; padding-left: 28px; display: block; text-align: left; cursor: pointer; -o-transition:.5s;  -ms-transition:.5s;  -moz-transition:.5s;  -webkit-transition:.5s;  transition:.5s;}
#kontakt:hover          { color: #ee0000; filter:alpha(opacity=50);-moz-opacity:.50;opacity:.50; }


#scroll {
    position:fixed;
    right:30px;
    bottom:30px;
    cursor:pointer;
    width:50px;
    height:50px;
    background-color:#0067ac; 
    text-indent:-9999px;
    display:none;

}
#scroll span {
    position:absolute;
    top:50%;
    left:50%;
    margin-left:-8px;
    margin-top:-12px;
    height:0;
    width:0;
    border:8px solid transparent;
    border-bottom-color:#fff;
}
#scroll:hover {
    background-color:#0067ac;
    opacity:1;
    filter:alpha(opacity=100);-moz-opacity:.100;opacity:.100;     
}

.fakty {
  overflow: hidden;
  text-align: center;
  float: left;
  padding: 0px;
  width: 50%;
  margin: auto 5px;
}
.fakty2 {
  float: left;
  width: 50%;
  overflow: hidden;
  margin: auto 5px;
}
.prihovor1 {
  display: inline-block;
  width: 100%;
  max-width: 1200px;
  min-width: 300px;
  overflow: hidden;
  text-align: justify;  
  padding: 30px;

}
.prihovorimg {
  float: left;
  width: 100%;
  padding: 0px;
  padding-right: 20px;
  max-width: 300px;  
}

.prihovor {
  display: inline-block;
  width: 100%;
  max-width: 1200px;
  min-width: 500px;
  overflow: hidden;
  text-align: justify;  
  padding: 0px;
  padding-top: 30px;
  padding-bottom: 30px;
  margin: 0 auto;
}
.prihovor_img {
  float: left;
  width: 100%;
  padding: 0px;
  padding-right: 20px;
  max-width: 400px;  
}

.container_prihovor {   
  background-repeat: no-repeat;
  background-color: #fff;
  background-attachment: fixed;   
  background-size: cover;
  height: auto;
  width: 100%;  
  text-align: center;
  margin: 0px auto;  
  padding: 0px;  
}

.container_prihovor2 {
  display: inline-flex;
  width: 100%;
  max-width: 1200px;  
  text-align: center;
  margin: 0px auto;    
  padding-top: 20px;  
  padding-bottom: 20px;  
  background-color: red;
}

#text0 {
  background: url(../pictures/bg_novinky.webp) bottom right no-repeat;
  background-attachment: fixed; 
  width: 100%;  
  margin: 0 auto;  
  padding: 0;  
}
#text1 {
  background-size: cover;
  background-position: center right;
  width: 100%;  
  margin: 0px auto;  
  padding: 0px;  
}
#text2 {
  margin: 0 auto; /* Zarovnanie na stred */
  width: 100%;
  max-width: 1200px;  
  padding-top: 0;  
  padding-bottom: 20px;  
  text-align: center; /* Zarovná obsah na stred */
}
#textview {   
  margin: 40px auto; /* Zarovnanie na stred */
  width: 100%; /* Ponechajte, ak má byť šírka dynamická */
  padding: 0;
  text-align: left; /* Ak chcete obsah v textview zarovnať doľava */
}

div.modul1 {
  background-color: #fff;
  background-repeat: repeat-y;
  background-size: cover;
  background-attachment: fixed; 
  width: 100%;  
  text-align: center;
  margin: 0px auto;  
  padding: 0px;  
}

div.modul2 {
  display: inline-block;
  width: 100%;
  max-width: 1200px;  
  text-align: center;
  margin: 0px auto;    
  padding-top: 0px;  
  padding-bottom: 20px;  
}

#novinka1 {
  background:url(../pictures/bg_novinky.webp); 
  background-position: bottom right;
  background-repeat: no-repeat;
  background-color: #fff;  
  background-attachment: fixed; 
  width: 100%;  
  text-align: center;
  margin: 0px auto;  
  padding: 0px;  
  padding-bottom: 20px;
  margin-bottom: 0px;
}



#novinka { 
  min-height: 200px;
  margin: 0 auto;
  width: 100%;
  text-align: left; 
  padding: 0px;
}

#imgtext         { z-index: 999999; right: 0px; width: 50%; margin-top: -260px; padding-left: 20px; position: absolute; text-align: left; height: auto; background-color: #0067ac;  -o-transition:.5s;  -ms-transition:.5s;  -moz-transition:.5s;  -webkit-transition:.5s;  transition:.5s; cursor: pointer; } 
#imgtext:hover   { background-color: #376f0d;  filter:alpha(opacity=70);-moz-opacity:.70;opacity:.70; cursor: pointer; } 

#panel1                 { position: absolute; width: 100%; height: 450px; float: left; }
#panel2                 { width: auto; height: 450px; text-align: right; }

#slogan                 { color: #fff; margin-top: 50px; margin-left: 50px; font-size: 40px; font-weight: normal; letter-spacing: -1px; line-height: 1.2; }

p.slogan        { color: #fff; margin-top: 50px; margin-left: 50px; font-size: 40px; font-weight: normal; letter-spacing: -1px; line-height: 1.2;  }

#panel3                 { width: 100%; min-height: 120px; float: right; }
#panel4                 { width: auto; height: auto; text-align: left; opacity: 0.95; }
#imgtext2               { display: inline-block; width: 40%; margin-top: 150px; left: 0px; position: absolute; text-align: right; height: auto; background-color: #0067ac;  } 
#slogan2                { color: #000; margin-top: 40px; padding: 60px; margin: 0px; font-size: 32px; font-weight: normal; }

footer {
  position: relative;
  display: block;
  width: 100%;
  text-align: center;
  margin: 0px auto;  
  background-color: #fff; 
  background:url(../pictures/bg_footer.webp);
  background-size: cover;
  clear: both;
  padding: 0px;
}

h1                        { display: inline; color: #0067ac; font-weight: normal; font-size: 34px; padding: 0px; }
h2                        { display: inline; font-size: 34px; color: #0067ac; font-weight: normal; }
h3                        { display: inline; font-size: 30px; color: #0067ac; font-weight: bold; }
h4                        { display: inline; font-size: 30px; color: #0067ac; font-weight: normal; }
p                         { font-size: 14pt; color: #656565; }
p.nadpis                  { font-size: 28px; color: #0067ac; font-weight: normal; }

span                      { font-size: 14pt; color: #656565; }
li                        { font-size: 14pt; color: #656565; }
a.novinky2                { font-size: 16pt; color: #0067ac; text-decoration: none; } 
a.novinky2:hover          { font-size: 16pt; color: #0067ac; text-decoration: none; } 
a.novinky                 { font-size: 14pt; color: #656565; text-decoration: none; text-align: justify; } 
a.novinky:hover           { font-size: 14pt; color: #0067ac; text-decoration: none; text-align: justify;  } 

a.white                   { font-size: 18px; color: #fff; text-decoration: none; }
a.white:hover             { font-size: 18px; color: #fff; text-decoration: underline; }
a.whitebig                   { font-size: 24px; color: #fff; padding-top: 5px; text-decoration: none; }
a.whitebig:hover             { font-size: 24px; color: #fff; padding-top: 5px;  text-decoration: underline; }

a.nadpis                  { font-size: 18px; color: #0067ac; text-decoration: none; } 
a.nadpis:hover            { font-size: 18px; color: #0067ac; text-decoration: underline; } 
table.dj                  { cursor: pointer;  }
table.djhover             { cursor: pointer;   filter:alpha(opacity=80);-moz-opacity:.80;opacity:.80; }
input[type=submit]        { font-size: 17px; color: #ffffff; border: 1px solid #000000; background-color: #0067ac; height:40px; min-width: 120px; cursor: pointer; } 
input:hover[type=submit]  { font-size: 17px; color: #ffffff; border: 1px solid #000000; background-color: #21252a; height:40px; min-width: 120px; cursor: pointer; } 
p.oznam                   { font-size: 17px; color: #0067ac; } 
input.text                { font-size: 15px; color: #0067ac; text-align: center; border: 1px solid #0067ac; background-color: #ffffff; height:40px; min-width: 200px; cursor: pointer; } 
input.text_hover          { font-size: 15px; color: #0067ac; text-align: center; border: 1px solid #0067ac; background-color: #fbf5f7; height:40px; min-width: 200px; cursor: pointer; } 

#menucopyright {

  width: 100%;
  max-width: 1200px;  
  text-align: center;
  margin: 0px auto;  
  clear: both;
  padding: 0px;
  height: 150px;
}

#menucopyright2 {
  max-width: 1200px;  
  text-align: center;
  margin: 0px auto;  
  clear: both;
  padding: 0px;
}

#copyright1 {
  width: auto;
  float: none;
  margin: 0px;
  padding-top: 30px;
  padding-bottom: 30px; 
}

.middle {
  display: inline-block;
  width: 100%;  
  margin: 0px auto;    
  padding: 0px;
}

#myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: #21252a; /* Set a background color */  
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
}

#myBtn:hover {
    background-color: #0067ac; /* Add a dark-grey background on hover */ 
}

.scrollingElement {
  overflow: scroll;
  position: absolute;
  top: 213px;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow-y: auto;
}


/************************************************************************************
MEDIA QUERIES
*************************************************************************************/
/* for 1050px or less */
@media screen and (max-width: 1050px) {

.prihovor {
  display: inline-block;
  width: 100%;
  max-width: 1200px;
  min-width: 300px;
  overflow: hidden;
  text-align: justify;  
  padding: 20px;
}
.prihovor_img {
  float: left;
  width: 100%;
  padding-right: 20px;
  max-width: 200px;  
}


.section3 {
  width: 100%;
  padding: 20px;
  margin: 20px;  
  text-align: justify;
}

.section,.section2, .section_middle {  
  margin-top: 0px;
  padding-left: 20px;
  padding-right: 20px;
}

#offer2 {
  width: 100%;
  clear: both;
  margin: 0px auto; 
}


#cenovaponuka1 {
  position: relative;  
  background-color: #0067ac;
  background: url(../pictures/bg_opytajte_sa.webp) no-repeat;
  padding: 0px;
  margin: 0px;
  height: auto;
  background-size: cover;
  background-position: middle center;
  width: 100%;
}

div.produkt { 
  clear: both;
  display: block; 
  padding: 20px;
  margin: 0px;
  margin-top: 20px;
  width: 100%;  
}

.prihovor1 {
  display: inline-block;
  width: 100%;
  max-width: 1200px;
  min-width: 300px;
  overflow: hidden;
  text-align: justify;  
  padding: 20px;
}
.prihovorimg {
  float: left;
  width: 100%;
  padding-right: 20px;
  max-width: 200px;  
}


.prihovor2 {
  width: 100%;
  display: inline-block;
  text-align: justify;
  padding: 20px;
}


#offerbox input {
  display: inline-block;
  font-size: 18px;
  border: 0px solid #e3e3e3;
  height: 29px;
  margin-bottom: 10px;
  color: #21252a;
  background-color: #fff;
  padding: 5px;
  margin-right: 5px;
  width: 98%;
}
#offerbox input:hover {
  background-color: #f3f3f3;
}
#offerbox textarea {  
  font-size: 18px;
  border: 1px solid #e3e3e3;
  height: 135px;  
  color: #21252a;
  background-color: #fff;
  width: 98%;
  padding: 5px;
    margin-right: 5px;
}
#offerbox textarea:hover {
  background-color: #f3f3f3;
}  
  
  #vlajky { position: absolute; top: 10px; left: 20px; }  


  #logo                   { margin-bottom: 0px; margin-top: 40px; padding: 0px; margin-left: 40px; min-width: 350px; width: 100%; max-width: 400px; background:url(../pictures/logo_autosklo_jurista.webp) no-repeat; background-position: center center; cursor: pointer; background-size: 100%; -o-transition:.5s;  -ms-transition:.5s;  -moz-transition:.5s;  -webkit-transition:.5s;  transition:.5s; }
  #logo:hover             { margin-bottom: 0px; margin-top: 40px; padding: 0px; margin-left: 40px; min-width: 350px; width: 100%; max-width: 400px; background:url(../pictures/logo_autosklo_jurista.webp) no-repeat; background-position: center center; cursor: pointer; background-size: 100%; filter:alpha(opacity=60);-moz-opacity:.60;opacity:.60;  }
  #telefon                { margin-right: 20px; font-size: 21px; }
  #mail                   { margin-right: 20px; font-size: 21px; }
  #kontakt                { margin-right: 20px; font-size: 21px; }
  #menuoff p { margin-top: 10px; }
  #menuon  p { margin-top: 10px; }      
  
  #pagewrap { width: 100%; margin: 0px; padding: 0px; margin: 0px; }
  
.middle {    
 
    padding: 0px;
    margin: 0px;    
  }

 #kdesom1 {    
    width: 100%;
    height: 70px;
    background-color: #0067ac;    
    vertical-align: middle;  
    padding: 0px;
    margin: 0px;
  }

#socialnesiete {   
  padding-top: 20px;
  display: block;     
}

#kdesom_left { 
  height: 100%; 
  padding: 0px;
  margin: 0px;  
  display: inline-block;  
  vertical-align: top;
  width: 100%;    
}

#kdesom_right {  
  height: 100%;
  padding: 0px;
  margin: 0px; 
  display: inline-block;
  width: 30%;  
  text-align: right;
}


p.kdesom {     
  float: left; 
  padding: 0px;  
  color: #fff;
  font-size: 18px; 
  font-weight: normal; 
  margin-left: 10px;
  margin-top: 22px;
}    
a.kdesom {   
  font-size: 16px; 
}

  
  #panel1                 { width: 100%; height: 450px; float: left; }
  #panel2                 { width: auto; height: 450px; text-align: right; }
  #slogan                 { color: #fff; margin-top: 20px; margin-left: 20px; font-size: 20px; font-weight: normal; letter-spacing: -1px; line-height: 1.2; }
  #imgtext                { z-index: 999999; right: 0px; width: 50%; margin-top: -100px; padding-left: 20px; position: absolute; text-align: left; height: auto; background-color: #0067ac;   }
  
  #text {
    clear: both;
    padding: 0px;
    width: auto;
    float: none;
  }

  #panel4                 { width: 80%; height: auto; text-align: left; opacity: 0.95;}
  #imgtext2               { display: inline-block; width: 80%; margin-top: 120px; left: 0px; position: absolute; text-align: right; height: auto; background-color: #0067ac;  } 
  #slogan2                { color: #000; margin-top: 40px; padding: 40px; margin: 0px; font-size: 32px; font-weight: normal; }

 #textview { 
  width: 100%;
  padding: 0px;
}

#text2 {
  padding-left: 20px;
  padding-right: 20px;
}

 #novinka1 { 
  margin: 0 auto;
  width: 100%;
  text-align: left; 
  padding: 0px;
}

 #novinka2 { 
  width: 100%;
  min-width: 300px;
}

  #telefon                { display: none; }
  #mail                   { display: none; }
  #kontakt                { display: none; }

#text1 {
	background: none;
}

   #facebook          { width: 26px; height: 26px; margin-top: 0px; margin-right: 5px; }         
   #instagram         { width: 26px; height: 26px; margin-top: 0px; margin-right: 10px; }         
   #whatsapp          { width: 26px; height: 26px; margin-top: 0px; margin-right: 10px; }   
   #youtube           { width: 26px; height: 26px; margin-top: 0px; margin-right: 10px; }   

}

/* for 650px or less */
@media screen and (max-width: 650px) {
   
.tretina {
  width: 100%;
}

   .prihovor_img {
      float: left;
      width: 100%;
      padding: 0px;
      padding-right: 20px;
      min-width: 80px; 
      max-width: 150px;  
   }

   .prihovor {
    padding: 30px 20px 0px 20px;
   }
   .inner {
    padding-bottom: 20px;
   }

   h3 { 
      display: inline;
      font-size: 18px;
      color: #0067ac;
      letter-spacing: -1px;
   }

   .icon_footer  { 
       margin-bottom: 0px;
       margin-top: 20px;
       padding: 0px;
   }

 p.vsetkynovinky {
    float: right; padding-right: 20px;
 }


 div.novinka { 
   width: 100%; 
   height: 200px;
   margin-bottom: 0px; 
 }

 #novinka2 { 
  width: 100%;
  padding: 0px;
}

a.kdesom {
    display: none;
  }
  
p.nadpis                  { font-size: 24px; }


#offer2 {
  width: 100%;
  clear: both;
  margin: 0px auto;	
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;  
}

#text1 {
	background: none;
}

.container {
  margin: 0px;
  margin-left: 10px;
  margin-right: 10px;
}

.section2 {  
  margin: 0px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 0px;
  padding-bottom: 40px;
}
.section, .section_middle {
  min-width: 300px;
  width: 100%;
}

.vlajkaon {
  margin-left: 2px; display: inline-block; height: 26px; line-height: 26px; padding-top: 0px; padding-bottom: 3px; padding-left: 4px; padding-right: 4px;
}
.vlajkaoff {
  margin-left: 2px; display: inline-block; height: 26px; line-height: 26px; padding-top: 0px; padding-bottom: 3px; padding-left: 4px; padding-right: 4px;
}


 #logo                   { margin-top: 0px; margin-left: 30px; min-width: 250px; width: 50%; max-width: 300px; background:url(../pictures/logo_autosklo_jurista.webp) no-repeat; background-position: center center; cursor: pointer; background-size: 100%; -o-transition:.5s;  -ms-transition:.5s;  -moz-transition:.5s;  -webkit-transition:.5s;  transition:.5s; }
 #logo:hover             { margin-top: 0px; margin-left: 30px; min-width: 250px; width: 50%; max-width: 300px; background:url(../pictures/logo_autosklo_jurista.webp) no-repeat; background-position: center center; cursor: pointer; background-size: 100%;  filter:alpha(opacity=60);-moz-opacity:.60;opacity:.60;  }

 #textview { 
  width: 100%;
}

 #novinka { 
  margin: 0 auto;
  width: 90%;
  text-align: left; 
  padding: 0px;
}

#novinka2 {
  padding: 0px;
}


  #slider_header1 {  
    position: fixed;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 9800;
    max-width: 1170px;
    width: 100%;
    margin: 0px auto; 
    padding: 0px;      
  }
  #slider_header2 {
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 100%; 
    height: 100%;
    padding: 0px; 
  }
  #slider_header3 {
    display: none;  
  }

  #panel4                 { width: 80%; height: auto; text-align: left; opacity: 0.95;}
  #imgtext2               { display: inline-block; width: 80%; margin-top: 220px; left: 0px; position: absolute; text-align: right; height: auto; background-color: #0067ac;  } 
  #slogan2                { color: #000; margin-top: 20px; padding: 30px; margin: 0px; font-size: 26px; font-weight: normal; }

  #menuoff p { margin-top: 7px; }
  #menuon  p { margin-top: 7px; }    
   
  .icon {
     margin-top: 0px;
     margin-bottom: 0px;
  }

  .cube1 { padding-bottom: 20px; padding-top: 0px; }
  .cube2 { padding-bottom: 20px; }
  .cube3 { padding-bottom: 20px; }
  .cube4 { padding-bottom: 20px; }

  .middle {  
    float: none;
    margin-left: 0px;
  }

p.novinkanadpis { font-size: 24px; text-align: center; width: 100%; }
h2              { font-size: 24px; color: #0067ac; font-weight: normal;  margin-left: 20px;  }

#copyright1 { padding: 0px; }

  #socialnesiete {   
  padding-right: 20px;
  display: block;     
}

   #facebook          { width: 20px; height: 20px; margin-top: 5px; margin-right: 3px; }      
   #instagram         { width: 20px; height: 20px; margin-top: 5px; margin-right: 8px; }         
   #whatsapp          { width: 20px; height: 20px; margin-top: 5px; margin-right: 3px; }   
   #youtube           { width: 20px; height: 20px; margin-top: 5px; margin-right: 3px; }   

}

/* for 480px or less */
@media screen and (max-width: 480px) {  


#galeria1 {  
  padding-top: 0px; 
}

ul {
  padding-left: 20px;
}

div.novinka2 {
  margin: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
}

.section_middle {
  margin: 0px;
  padding-bottom: 0px;
}

.section {
  margin: 0px;

}

.logo {
flex: 1 1 calc(50% - 10px);
                min-width: calc(50% - 10px);
}

h1                        { font-size: 24px; }

p.kdesom {     
  float: left; 
  padding: 0px;  
  font-size: 18px; 
  margin-left: 0px;
  margin-top: 22px;
}    

  a.kdesom {
    display: none;
  }

div.kontaktleft {
  text-align: center;
  display: block;
  width: 100%;
  padding: 0px;
  margin: 0px;
}
div.kontaktright {
  text-align: center;
   display: block;   
   width: 100%;
   padding: 0px;
   margin: 0px;
}

   #cenovaponuka1 {
       background-image: none;
       background-color: #0067ac;
   }

  .section2 {
    padding: 20px;
    margin: 0px;
  }

  #minilogo {
     display: inline-block;
     vertical-align:middle;
     width: 100%;
     max-width: 45px;
     margin-left: 18px;
     padding-right: 10px;
  }  

.fakty {
  overflow: hidden;
  text-align: justify;
  float: left;
  padding: 20px;
  width: 90%;
}
.fakty2 {
  float: left;
  width: 10%;
  overflow: hidden;
}


  #logo                   { margin-top: 0px; margin-left: 30px; padding-left: 0px; min-width: 150px; width: 50%; max-width: 200px; background:url(../pictures/logo_autosklo_jurista.webp) no-repeat; background-position: center center; cursor: pointer; background-size: 100%; -o-transition:.5s;  -ms-transition:.5s;  -moz-transition:.5s;  -webkit-transition:.5s;  transition:.5s; height: 120px;}
  #logo:hover             { margin-top: 0px; margin-left: 30px; padding-left: 0px; min-width: 150px; width: 50%; max-width: 200px; background:url(../pictures/logo_autosklo_jurista.webp) no-repeat; background-position: center center; cursor: pointer; background-size: 100%; filter:alpha(opacity=60);-moz-opacity:.60;opacity:.60; height: 120px; }

   #facebook          { width: 23px; height: 23px; margin-top: 5px; margin-right: 4px; }      
   #instagram         { width: 23px; height: 23px; margin-top: 5px; margin-right: 6px; }         
   #whatsapp          { width: 23px; height: 23px; margin-top: 5px; margin-right: 4px; }   
   #youtube           { width: 23px; height: 23px; margin-top: 5px; margin-right: 4px; }   


  .middle {  
    float: none;
    margin-left: 0px;
  }

  #panel1                 { width: 100%; height: 321px; float: left; }
  #panel2                 { width: auto; height: 321px; text-align: right; }
  #panel3                 { width: 100%; min-height: 321px; float: right; }
  #panel4                 { width: 100%; height: auto; text-align: left; opacity: 0.95;}
  #imgtext2               { display: inline-block; width: 80%; margin-top: 220px; left: 0px; position: absolute; text-align: right; height: auto; background-color: #0067ac;  } 
  #slogan2                { color: #000; margin-top: 20px; padding: 20px; margin: 0px; font-size: 22px; font-weight: normal; }

  #slogan               { color: #fff; margin-top: 0px; margin-left: 0px; padding: 20px; padding-bottom: 20px; margin-bottom: 0px; font-size: 14px; font-weight: normal; letter-spacing: -1px; line-height: 1.2; }
  #imgtext                { z-index: 999999; right: 0px; width: 55%; margin-top: -96px; padding-left: 0px; padding-bottom: 0px; margin-bottom: 0px; position: absolute; text-align: left; height: auto; background-color: #0067ac;   }
#menucopyright            { display: none; }


div.icon { min-width: 300px; padding: 0px; margin: 0 auto; }
img.icon { width: 170px; padding: 0px; margin: 0px; }

  #menucopyright {
    display: none;
  }

}

.middle, #text {
  margin-bottom: 0px;
}

p.textwhite               { color: #ffffff; }
p.nadpiswhite             { font-size: 15px; color: #ffffff; }
p.copyright               { font-size: 15px; color: #ffffff; }

a.module_novinka2         { font-weight: normal;        font-size: 13px;    color: #e94351;    text-decoration: none; }
a.module_novinka2:hover   { font-weight: normal;        font-size: 13px;    color: #1c1b20;    text-decoration: none; }
a.module_novinka          { font-weight: normal;        font-size: 13px;    color: #1c1b20;    text-decoration: none; }
a.module_novinka:hover    { font-weight: normal;        font-size: 13px;    color: #e94351;    text-decoration: none; }

td.backtotop              { width: 53px; height: 53px; cursor: pointer;   background: transparent url(../pictures/backtotop_off.jpg) no-repeat; }
td.backtotop_hover        { width: 53px; height: 53px; cursor: pointer;   background: transparent url(../pictures/backtotop_on.jpg) no-repeat; }


select {
height: 36px;
padding:0px;
border-radius: 6px; 
-moz-border-radius: 6px; 
-webkit-border-radius: 6px; 
border: 1px solid #03325E;

   margin: 0;
    background: #e5eaee;
    color:#03325e;
        outline:none;
    display: inline-block;

}


td.tip                    { height: 22px; background-color:#ffcc33;}
td.gray                   { height: 22px; background-color:#dddddd;}
a.oznam                   { font-size: 15px; color: #21252a; }
a.oznam:hover             { font-size: 15px; color: #03325e; }
a.selected                { font-size: 15px; color: #03325e; }
a.selected:hover          { text-decoration: underline; font-size: 15px; color: #03325e; }
a.notselected             { text-decoration: none; font-size: 15px; color: #03325e; }
a.notselected:hover       { text-decoration: none; font-size: 15px; color: #03325e; }
table.aktivny             { cursor: pointer; }
a.aktivny                 { color: #21252a; font-size: 15px; text-decoration: none; }
a.aktivny:hover           { color: #656565; font-size: 15px; text-decoration: none; }
p.text                    { font-size: 15px; color: #656565; }
input                     { font-size: 15px; color: #000000; }
textarea                  { font-size: 15px; color: #000000; }
img.hlavna                { border-color:#21252a;  border-style:dashed;  border-width:5px; }
p.zlta15                  { font-size: 15px; color: #03325e; }
p.modra15                 { font-size: 15px; color: #03325e; }
a.modra                   { font-size: 18px; }
