

/* Globalni styly */

* {
    vertical-align: baseline;
    font-weight: inherit;
    font-family: inherit;
    font-style: inherit;
    font-size: 17px;
    line-height: 24px;
    border: 0 none;
    outline: 0;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    cursor: default;
    max-width: 100%;
}


html {
    background-color: #ffffff;
}

head {
    display: none;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: #000;
    opacity: 0;
    min-width: 250px;


    -webkit-animation-name: usvit;
    -webkit-animation-duration: 0.5s;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-fill-mode: forwards;

    -moz-animation-name: usvit;
    -moz-animation-duration: 0.5s;
    -moz-animation-iteration-count: 1;
    -moz-animation-timing-function: ease-in-out;
    -moz-animation-fill-mode: forwards;

    -ms-animation-name: usvit;
    -ms-animation-duration: 0.5s;
    -ms-animation-iteration-count: 1;
    -ms-animation-timing-function: ease-in-out;
    -ms-animation-fill-mode: forwards;

    -o-animation-name: usvit;
    -o-animation-duration: 0.5s;
    -o-animation-iteration-count: 1;
    -o-animation-timing-function: ease-in-out;
    -o-animation-fill-mode: forwards;

    animation-name: usvit;
    animation-duration: 0.5s;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;

}


nav,header,footer,main,article,aside,section,figure,figcaption{
    display: block;
}

@-webkit-keyframes usvit{
    0% {opacity: 0;}
    100% {opacity: 1;}
}
@-moz-keyframes usvit{
    0% {-moz-opacity: 0;}
    100% {-moz-opacity: 1;}
}
@-sm-keyframes usvit{
    0% {-moz-opacity: 0;}
    100% {-moz-opacity: 1;}
}
@-o-keyframes usvit{
    0% {-moz-opacity: 0;}
    100% {-moz-opacity: 1;}
}
@keyframes usvit{
    0% {opacity: 0;}
    100% {opacity: 1;}
}

input:not([type=file]),
textarea,
select{
    border: 1px solid #a9a9a9;
    padding: 5px;
    margin: 0px 1px 1px 0px;
}


input[type=text],
input[type=password]{
    color: #666666;
}

input[type=text]:focus,
input[type=password]:focus{
    color: #111111;
}

*::-webkit-input-placeholder {
    color: silver;
}
*:-moz-placeholder {
    color: silver;
}
*::-moz-placeholder {
    color: silver;
}
*:-ms-input-placeholder {
    color: silver;
}

h1,h2,h3{
    font-weight: 900!important;
    padding-bottom: 10px;
    color: #454545;
}

h1{
	padding: 0 0 20px 20px;
    margin: 0 auto 20px auto;
    border-bottom: 1px solid #2A4A8B;
}
h1,
h1 *{
	font-size: 1.5rem!important;
	line-height: 2rem;
}
h2:not(:first-child){
    margin-top: 1rem;
}
h2,
h2 *{
    font-size: 1.2rem!important;
    line-height: 1.5rem;
}
h3,
h3 *{
    font-size: 1rem;
    line-height: 1.5rem;
}
h1:not(:first-child),
h2:not(:first-child),
h3:not(:first-child),
h4:not(:first-child){
    padding-top: 0px;
}





p{
    padding-bottom: 10px;
    overflow: auto;
}
p strong{
	font-weight: bold;
}
p.stylPoznamka{
	/*font-weight: 300;*/
	/*font-style: italic;*/
	font-size: 18px;
}
a{
    text-decoration: underline;
}
a, a *{
	cursor: pointer;
	color: #2A4A8B;
}
a:hover{
	/*text-decoration: underline;*/
}
.komponentaFotogalerie > .polozka > a,
.komponentaFotogalerie > .polozka > a *{
    text-decoration: none;
}

main a[href*='.pdf']{
    padding-left: 25px;
    background: url(img/icons8-pdf-24.png) scroll no-repeat left center;
}
main a[href*='.jpg'],
main a[onclick*='.jpg']{
    padding-left: 25px;
    background: url(img/icons8-jpg-24.png) scroll no-repeat left center;
}

main a[href*='.png'],
main a[onclick*='.png']{
    padding-left: 25px;
    background: url(img/icons8-png-24.png) scroll no-repeat left center;
}
main a[href*='.doc'],
main a[href*='.docx']{
    padding-left: 25px;
    background: url(img/icons8-doc-40.png) scroll no-repeat left center/24px auto;
}
main a[href*='.xls'],
main a[href*='.xlsx']{
    padding-left: 25px;
    background: url(img/icons8-xls-48.png) scroll no-repeat left center/24px auto;
}

label{
    cursor: pointer;
}

ul, ol{
    list-style-position: inside;
    list-style-type: none;
}

.panelObsah .text ul{
    list-style-type: disc;
    padding-bottom: 10px;
}
.panelObsah .text ol{
    list-style-type: decimal;
    padding-bottom: 10px;
}
.panelObsah .text img{
    height: auto!important;
}
input[type=button],
input[type=submit],
.button{
    background-color: #2A4A8B;
    color: #FFFFFF;
    line-height: 36px;
    padding: 0 20px;
    border: none;
    text-align: center;
    min-width: 100px;
    font-weight: bold;
    cursor: pointer;
    filter: brightness(100%);
    transition: filter 0.2s, box-shadow 0.2s;
}
.button *{
    background-color: #868f91;
    color: #FFFFFF;
    border: none;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
}
input[type=button]:hover,
input[type=submit]:hover,
input[type=button]:focus,
input[type=submit]:focus,
input[type=image]:hover,
.button:hover
{

}

.text.editor img{
    height: auto !important;
}
.text.editor td{
    vertical-align: top;
}
.text.editor .sloupcovaSazba td:first-child:not(:last-child){
    padding-right: 10px;
}
.text.editor .prilohaL{
    margin: 0 10px 5px 0;
}
.text.editor .prilohaP{
    margin: 0 0 5px 10px ;
}
.text.editor .priloha .text{
    display: none;
}

.vnitrek:after,
ul:after,
.panelObsah:after,
.zbozi:after,
.zbozi:before,
.cistic,
.prepinacStranek:after,
.tlacitkoDalsiStrana:after,
.seznamStranek:after,
.formularRazeni:before,
.formularRazeni:after,
.komponentaNahledProduktu:after
{
    content: ' ';
    display: block;
    clear: both;
    font-size: 0px;
    line-height: 0px;
}


.msg{
    text-align: center;
    padding: 5px;
    background-color: rgba(0, 142, 227, 0.5);
    color: #ffffff;
    font-weight: bold;
    margin: 1% 0% 1% 0%;
    box-shadow: 0px 0px 3px 1px rgba(0, 142, 227, 0.5);
}
.err{
    text-align: center;
    padding: 5px;
    background-color: rgba(255, 0, 0, 0.5);
    color: #ffffff;
    font-weight: bold;
    margin: 1% 0% 1% 0%;
    box-shadow: 0px 0px 3px 1px rgba(255, 0, 0, 0.5);
}
strong, b{
    font-weight: bold;
}

script{
    display: none !important;
}

hr{
    border-bottom: 1px solid #2A4A8B;
    margin: 20px auto 30px auto;
}

.vnitrek{
    display: block;
    width: 1300px;
    max-width: 100%;
    padding: 0px 10px 0px 10px;
    margin: 0px auto;
}

/*****************************************************************************/





/* prologo */
.prologo{
    padding: 10px 0;
}
.prologo:after{
    content: ' ';
    clear: both;
    display: block;
}
.prologo > *{
    display: block;
    float: left;
    text-align: center;
    height: 60px;
    max-height: 60px;
    overflow: hidden;
    width: 30%;
}
.prologo .imglogo{
    width: 40%;
}
.prologo .prohledat{
    width: 35%;
    padding: 0 20px;
}
.prologo .dokosiku{
    width: 25%;
}
.prologo .logo{
    display: block;
    background: url('img/elektro-unima.png') scroll no-repeat left center/contain;
    padding-top: 60px;
    margin: auto;
    width: 400px;
}
.prologo .komponentaHledat{
    text-align: center;
    height: 60px;
    display: inline-block;
    margin: auto;
    width: 300px;
}
.prologo .komponentaHledat .text input{
    width: calc(100% - 60px);
    float: left;
    border: 5px solid #00A746;
    border-radius: 10px;
    line-height: 34px;
    padding: 0 5px;
    margin-top: 7px;
    width: calc(100% - 55px);
}
.prologo .komponentaHledat .odesli input{
    background: url(img/lupa.svg) scroll no-repeat 20% center/auto 60%;
    color: transparent;
    line-height: 60px;
    width: 50px;
    min-width: 0px;
    padding: 0;
    float: right;
}
.prologo .komponentaKosik{
    background: url(img/kosik.png) scroll no-repeat 97% top/auto 50px;
    display: block;
    line-height: 60px;
    padding: 0 65px 0 10px;
    color: #2A4A8B;
    float: right;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 10px;
}
.prologo .komponentaKosik:hover{
    background-color: #efefef;
}
@media only screen and (max-width:900px){
    .prologo > *{
        float: none;
        margin: auto;
        width: auto !important;
        padding: 0 0 10px 0!important;
        height: auto !important;
        max-height: unset !important;
    }
    .prologo .komponentaKosik{
        float: none;
        display: inline-block;

    }
}
/* prologo */




/* 2019 slideshow */
.slideshow{
	position: relative;
    margin: 0 auto 10px auto;
    width: 1920px;
}
body[data-cizi-referer='1'] .slideshow,
body.homepage .slideshow{
    height: 23vw;
    min-height: 200px;
    max-height: 350px;
}
body[data-cizi-referer='0'] .slideshow:after,
body:not(.homepage) .slideshow:after{
    height: 6px;
    content: ' ';
    display: block;
	border-radius: 3px;
	max-width: 1300px;
    background-color: #30b76a;
    margin: auto;
}
.slideshow .slozky {
    display: block;
}
.slideshow .slozka{
    display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	opacity: 0;
	transition: opacity 1s;
}
.slideshow .slozka div{
    background-size: contain;
    background-position: center center;
    display: table;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
}
.slideshow .nahled{
	opacity: 1;
}
.slideshow .nazev{
    /*display: table-cell;*/
    display: none;
    text-align: center;
    vertical-align: middle;
    color: #fff;
    text-shadow: 1px 1px black, 0px 0px 30px black, 0px 0px 50px black, 0px 0px 30px black;
    font-size: 30px;
    line-height: 34px;
}
.slideshow .buttons{
	height: 100%;
	margin: 0px auto;
	opacity: 0;
	transition: opacity 0.5s;
}
.slideshow:hover .buttons{
	opacity: 1;
	transition: opacity 0.3s;
}
.slideshow .buttons #prevSlide,
.slideshow .buttons #nextSlide{
	position: absolute;
	font-size: 20px;
	line-height: 48px;
	color: rgba(255,255,255,0.75);
    top: 100px;
	top: calc(50% - 25px);
	cursor: pointer;
	z-index: 1;
	display: block;
	width: 50px;
	height: 50px;
	background-color: rgba(0,0,0,0.15);
    border-radius: 25px;
    padding: 0;
    border: 1px solid rgba(255,255,255,0.75);
}
.slideshow .buttons #prevSlide {
	left: 20px;
	min-width: 0px;
}
.slideshow .buttons #nextSlide {
	right: 20px;
	min-width: 0px;
}
.slideshow .odkaz{
    position: absolute;
    display: block;
    height: 100%;
    top: 0px;
    width: 80%;
    width: calc(100% - 200px);
    left: 10%;
    left: calc(0% + 100px);
}
.slideshow .odkaz:hover{
    background-color: rgba(0,0,0,0) !important;
}
@media only screen and (max-width:700px){
    .slideshow{
        /*min-height: 250px;*/
    }
    .slideshow .nazev{
        font-size: 17px;
        padding: 0 10px;
        line-height: inherit;
    }
}
/* 2019 slideshow */





/* levyPanel */
.levyPanel{
    float: left;
    width: 340px;
}
body .Navigace001 ul .polozka {
    background-color: #F0F0F0;
    position: relative;
}
body .Navigace001 .polozka:hover,
body .Navigace001 .polozka.vybrana {
    background-color: #2A4A8B;
}
body .Navigace001 ul .polozka > img {
    display: inline;
    position: relative;
    top: -2px;
}
body .Navigace001 .bezPotomku.polozka:hover:before,
body .Navigace001 .vybrana.bezPotomku.polozka:before{
    content: ' ';
    position: absolute;
    width: 16px;
    height: 16px;
    background: url(img/BezPotomku.gif);
    margin-top: -2px;
    z-index: 1;
}
body .Navigace001 .zabalena.polozka:hover:before,
body .Navigace001 .vybrana.zabalena.polozka:before{
    content: ' ';
    position: absolute;
    width: 16px;
    height: 16px;
    background: url(img/Zabalena.gif);
    margin-top: -2px;
    z-index: 1;
}
body .Navigace001 .rozbalena.polozka:hover:before,
body .Navigace001 .rozbalena.vybrana.polozka:before{
    content: ' ';
    position: absolute;
    width: 16px;
    height: 16px;
    background: url(img/Rozbalena.gif);
    margin-top: -2px;
    z-index: 1;
}
@media only screen and (max-width:900px){
    .levyPanel{
        clear: both;
        float: none;
        margin: auto;
        position: relative;
    }
}
/* levyPanel */





/* produkt katalogu */
body .NahledProduktu003{
    width: calc(100% / 3);
	box-shadow: none;
	border: 1px solid transparent;
	border-bottom: 1px solid #2A4A8B;
	margin: 0 0 10px 0;
    padding: 0 0 20px 0;
}
body .NahledProduktu003 .priznaky .probihaAkce {
    background-color: #00A746;
    text-align: center !important;
}
body .NahledProduktu003 .puvodni {
    display: none
}
body .NahledProduktu003 .ceny{
    padding-left: 50px;
}
body .NahledProduktu003 .cena:not(.puvodni) {
    color: #2A4A8B;
}
body .NahledProduktu003 input[type=submit] {
    position: absolute;
    bottom: 15px;
    width: 30px;
    overflow: hidden;
    min-width: 0px;
    left: 10px;
    margin: 0;
    font-size: 0px;
    padding: 0;
    height: 30px;
    background: #00A746 url(img/kosikWhite.svg) scroll no-repeat center center/60%;
    border-radius: 5px;
}
body .NahledProduktu003 .nazev *,
body .NahledProduktu003 .ceny {
    text-align: left;
}
/* novela */
body .NahledProduktu003 .probihaAkce,
body .NahledProduktu003 .priznakDoporucujeme{
    display: none !important;
}
/* produkt katalogu */





/* komponentaNahledProduktu - nabizene zbozi v kosiku */
.komponentaNahledProduktu{
    width: 650px;
    margin: 200px auto 100px auto;
}
.komponentaNahledProduktu .NahledProduktu002 .priznaky{
    display: none;
}
@media only screen and (max-width:600px){
    .komponentaNahledProduktu{
        display: none;
    }
}
/* komponentaNahledProduktu - nabizene zbozi v kosiku */





/* prepinacStranek */
body .KatalogFiltryRazeni001 .prepinacStranek.horni {
    border-bottom: 1px solid #2A4A8B;
    padding: 0 5px 10px 5px;
}
body .KatalogFiltryRazeni001 .razeni .popis{
    display: none;
}
/* prepinacStranek */






/* rozchodnik */
.rozchodnik{
    margin: 0 auto 10px auto;
}
.rozchodnik:after{
    display: block;
    clear: both;
    content: ' ';
}
.rozchodnik .slozka{
    width: calc((100% / 3) - 10px);
    float: left;
    background-color: #eee;
    margin: 0 5px 10px 5px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}
.rozchodnik .slozka .nahled{
    padding-top: 48%;
    background-size: cover;
}
.rozchodnik .slozka .nazev{
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding: 10px;
    background-color: rgb(42 74 139 / 50%);
    text-align: center;
    color: #fff;
    font-weight: bold;
    transition: all 0.3s;
}
.rozchodnik .slozka:hover .nazev{
    background-color: rgb(42 74 139 / 85%);
}
@media only screen and (max-width:700px){
    .rozchodnik .slozka{
        width: calc((100% / 2) - 10px);
    }
}
@media only screen and (max-width:500px){
    .rozchodnik {
        width: 300px;
    }
    .rozchodnik .slozka{
        width: 100%;
    }
}
/* rozchodnik */





/* menu */
.menu{
    margin: 30px 0;
    text-align: center;
}
.menu li{
    display: inline-block;
}
.menu .polozka{
    display: block;
    padding: 5px 10px;
    text-decoration: none;
    transition: all 0.2s;
    font-weight: bold;
}
.menu .hloubka2,
.menu .pocetPolozek,
.menu img{
    display: none;
}
.menu .polozka:hover{
    background-color: #2A4A8B;
    color: white;
}
/* menu */



/* webauthor */
.webauthor{
    background-color: #2A4A8B;
    text-align: center;
}
.webauthor a{
    line-height: 40px;
    color: white;
    font-size: 12px;
    text-decoration: none;
}
/* webauthor */



/* footer */
footer{
    background: #00A746 url(img/podtisk.jpg) scroll no-repeat left bottom/100% 100%;
}
footer .vnitrek{
    width: 800px;
}
footer *{
    font-size: 14px;
    line-height: 18px;
    color: white;
}
footer table{
    width: 100%;
}
footer .sloupcovaSazba > tbody > tr > td{
    padding: 20px 0;
}
footer .komponentaFormular table{
    border-spacing: 10px;
    border-collapse: separate;
    background-color: #262626;
    border: 20px solid #262626;
}
footer .komponentaFormular .popis{
    display: none;
}
footer .komponentaFormular .hodnota *{
    width: 100%;
}
footer .komponentaFormular .hodnota input[type=text],
footer .komponentaFormular .hodnota textarea{
    color: black !important;
}
footer .komponentaFormular .skryte,
footer .komponentaFormular .povinnePolickoInfo{
    display: none;
}
footer .komponentaFormular .upozorneni{
    background: red;
    padding: 10px;
    font-size: 1.2rem;
    color: white;
    line-height: 1.5rem;
}
footer .komponentaFormular p strong{
    background: #00A746;
    padding: 10px;
    font-size: 1.2rem;
    color: white;
    line-height: 1.5rem;
    display: block;
}
@media only screen and (max-width:700px){
    footer .vnitrek{
        width: 400px;
        margin: auto;
    }
    footer .text > table,
    footer .text > table > thead,
    footer .text > table > tbody,
    footer .text > table > tfoot,
    footer .text > table > tbody > tr,
    footer .text > table > tbody > tr > td{
        display: block;
        width: 100%;
    }
}
/* footer */



/* panelAkce */
.panelAkce .slozka{
    display: block;
    margin: 10px auto;
    text-decoration: none;
    border-radius: 5px;
    overflow: hidden;
}
.panelAkce .slozka .existujeNahled{
    padding-top: 100%;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.panelAkce .slozka .existujeNahled .nazev{
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    background: rgba(0,0,0,0.25);
    color: white;
    text-align: center;
    padding: 10px;
}
.panelAkce .slozka .neexistujeNahled{
    background: #30b76a;
}
.panelAkce .slozka .neexistujeNahled .nazev,
.panelAkce .slozka .neexistujeNahled .text,
.panelAkce .slozka .neexistujeNahled .text *{
    color: white;
    text-align: center;
    padding: 10px;
}
.panelAkce .slozka .neexistujeNahled .nazev{
    background: rgba(0,0,0,0.25);

}
/* panelAkce */




/* panelObsah */
main{
    margin: 0 auto;
}
.panelObsah{
    float: right;
    width: calc(100% - 370px);
    min-height: 30vw;
}
main .infoProZakazniky .text > *:last-child{
    margin-bottom: 10px;
}

@media only screen and (max-width:900px){
    .panelObsah{
        float: none;
        width: auto;
        margin-top: 20px;
    }
    .panelObsah .katalog h1 {
        text-align: center;
        margin-top: 20px;
    }
    .panelObsah .sloupcovaSazba,
    .panelObsah .sloupcovaSazba thead,
    .panelObsah .sloupcovaSazba tbody,
    .panelObsah .sloupcovaSazba tfoot,
    .panelObsah .sloupcovaSazba tr,
    .panelObsah .sloupcovaSazba td{
        display: block;
    }
    .panelObsah .sloupcovaSazba,
    .panelObsah .sloupcovaSazba tr,
    .panelObsah .sloupcovaSazba td{
        padding-bottom: 2rem;
    }
}
/* panelObsah */




/* filtry razeni */
.KatalogFiltryRazeni001 .pomocnaNavigace .podslozky {
    display: none;
}
.KatalogFiltryRazeni001 .pomocnaNavigace {
    padding: 0 5px;
}
.KatalogFiltryRazeni001 .pomocnaNavigace .drobeckova:not(:empty) * {
    font-size: 0.8rem;
}
/* filtry razeni */



/* detail */
body .DetailProduktu001 h1 {
    font-size: 2em !important;
}
body .DetailProduktu001 .parametr.transports.neosobniOdberZdarma{
    background-color: #30b76a; /*zvyraznit dopravu zdarma*/
}
body .DetailProduktu001 .parametr.transports.neosobniOdberZdarma td{
    padding: 5px 10px; /*zvyraznit dopravu zdarma*/
    border-radius: 5px; /*zvyraznit dopravu zdarma*/
}
body .DetailProduktu001 .parametr.transports.neosobniOdberZdarma *{
    color: white; /*zvyraznit dopravu zdarma*/
}
body[data-spravce="ipspravce"] .DetailProduktu001 .parametr.transports:not(.neosobniOdberZdarma){
    opacity: 0.25; /*zobrazeni pro programatora pri vyvoji webu*/
}
body[data-spravce=""] .DetailProduktu001 .parametr.transports:not(.neosobniOdberZdarma){
    display: none; /*majitel si preje nezobrazovat dopravne, pokud neni zdarma*/
}
body .DetailProduktu001 .parametr.transports{
    /*display: none !important;*/ /*posledne nastaveno, 2022-04-15 opet zruseno*/
}
body .DetailProduktu001.DetailProduktu001SklademNe .vlozdokosiku,
body .DetailProduktu001.DetailProduktu001SklademNe .textUpresneni,
body .DetailProduktu001.DetailProduktu001SklademNe .vypln50{
    display: none;
}
/* novela 2023*/
body .DetailProduktu001 .cenapuvodni{
    display: none;
}
body .DetailProduktu001 .cenaakcni .popis{
    font-size: 0px;
}
body .DetailProduktu001 .cenaakcni .popis:before{
    content: 'Cena s DPH';
    display: inline-block;
    font-size: initial;
}
/* EnergStitek*/
body .DetailProduktu001 .EnergStitek{
    text-align: center;
}
body .DetailProduktu001 .EnergStitek img{
    width: 160px;

}
body .DetailProduktu001 .EnergStitek span{
    display: block;
    font-size: 0.75em;
}

/* detail */




/* data uzivatele */
.tabulkaDoprava .dopravaPlacena ~ .dopravaid5.dopravaZdarma{
    display: none;
}



/* kosik */
@media only screen and (max-width:900px){
    body.strankaKosik .kosik tr.polozka {
        border: 1px solid #2A4A8B;
    }
}


.proFacebook .fb{
    background: url(img/fb.png) scroll no-repeat center center/contain;
    padding: 25px 25px;
    display: inline-block;
}
@media only screen and (max-width:900px){
    .proFacebook .fb{
        position: absolute;
        top: 0px;
    }
}


.ecokotle{
    box-shadow: 0 0 5px 2px rgb(0 0 0 / 10%);
    margin: 99px auto;
    width: 260px;
}
.ecokotle img{
    width: auto !important;
    height: auto !important;
}