body {
    margin: 0px;
    padding: 0px;
    font-size: 14px;
    color: #000000;
    font-family: 'Play', sans-serif;
    background: #ffffff;
    text-align: center;
}
ul,li {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}
a img {
    border: none;
}
.no-mobile {
    display: inline-block;
}
.mobile-only {
    display: none !important;
}
hr.cleaner {
    clear: both;
    margin: -1px 0 0 0;
    padding: 0;
    height: 1px;
    border: none;
    visibility: hidden;
}
.flash.success {
    border: 1px solid green;
    color: green;
    font-weight: bold;
    padding: 20px;
    border-radius: 5px;
    background: #ccffcc;
    margin-bottom: 15px;
}
.flash.error {
    display: block;
    border: 1px solid red;
    color: red;
    font-weight: bold;
    padding: 20px;
    border-radius: 5px;
    background: #ffcccc;
    margin-bottom: 15px;
}
.flash.blue {
    display: block;
    padding: 15px;
    line-height: 1.6em;
    border-radius: 5px;
    margin-bottom: 15px;
    color: #004085;
    background-color: #e2f0ff;
    border: 2px solid #b8daff;
}
ul.error li {
    border: 1px solid red;
    color: red;
    font-weight: bold;
    padding: 20px;
    border-radius: 5px;
    background: #ffcccc;
}

/* OVERLAY */
#overlay {
    z-index: 20; 
    position: fixed; 
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    left:0px;
    top:0px;
    text-align: center;
}
#window {
    background: white;
    text-align: left;
    margin: 0px 0px 0px 0px;
    padding: 30px 15px 15px 15px;
    z-index: 30;
    position: absolute;
    width: 500px;
    top: 150px;
    border-radius: 8px;
    border: 2px solid #c2cbdc;
}
#window a.closeOverlay {
    background: url("../pictures/layout/close.png") no-repeat;
    padding: 5px 0px 5px 30px;
    position: absolute;
    top: 10px;
    right: 15px;
    color: #000000;
}
#window h3 {
    margin: 0 0 20px 0;
    padding: 0;
    color: red;
    font-size: 25px;
    line-height: 1em;
}

 #window.balikovna {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 45px;
}
#window.balikovna iframe {
    border: none;
}

/* HEADER */
header {
    width: 876px;
    margin: 0px auto;
    height: 112px;
    position: relative;
    text-align: left;
}
header #logo {
    float: left;
    margin-top: 41px;
}
header > ul {
    float: right;
    display: inline-block;
    width: 260px;
    margin-top: 23px;
}
header > ul li {
    margin-bottom: 12px;
}
header > ul li a {
    font-weight: 700;
    text-decoration: underline;
    display: inline-block;
    padding: 3px 0px 4px 35px;
}
header li a.login {
    background: url("../pictures/layout/ico-user.png") no-repeat;
}
header li a.register {
    background: url("../pictures/layout/ico-register.png") no-repeat;
}
header .user-box {
    border: 1px solid #cccccc;
    border-radius: 6px;
    background: url("../pictures/layout/ico-user.png") no-repeat;
    background-position: 14px 15px;
    position: absolute;
    top: 20px;
    right: 0px;
    padding: 10px 10px 10px 50px;
}
header .user-box div {
    border-left: 1px solid #cccccc;
    padding-left: 15px;
}
header .user-box div strong {
    display: block;
    margin-bottom: 5px
}
header .user-box div p {
    margin-bottom: 0px;
    line-height: 18px;
}
header .user-box div p span {
    color: #cccccc;
    margin: 0px 8px;
}

/* NAV */
nav {
    background: #0168a5;
    background: -moz-linear-gradient(left,  #0168a5 0%, #3385b7 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%,#0168a5), color-stop(100%,#3385b7));
    background: -webkit-linear-gradient(left,  #0168a5 0%,#3385b7 100%);
    background: -o-linear-gradient(left,  #0168a5 0%,#3385b7 100%);
    background: -ms-linear-gradient(left,  #0168a5 0%,#3385b7 100%);
    background: linear-gradient(to right,  #0168a5 0%,#3385b7 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0168a5', endColorstr='#3385b7',GradientType=1 );
    height: 53px;
}
nav .wrapper > ul > li {
    display: inline-block;
    vertical-align: top;
    background-position: right center;
}
nav .wrapper > ul > li:last-child {
    background: none;
    border: none;
}
nav .wrapper > ul > li > a {
    color: #ffffff;
    text-decoration: none;
    font-size: 120%;
    display: block;
    padding: 16px 40px;
    border-right: 1px solid #4b90b7;
}
nav .wrapper > ul > li > a.selected {
    text-decoration: none;
    color: #ffffff;
    text-shadow: 0px 0px 5px #444444;
    background: #0d5f90;
}
nav .wrapper > ul > li > a:hover {
    text-decoration: none;
    color: #ffffff;
    text-shadow: 0px 0px 5px #444444;
}
nav .wrapper > ul > li > a:focus {
    color: #ffffff;
    text-decoration: none;
}
nav .wrapper > ul > li.dropdown ul {
    display: none;
    position: absolute;
    top: 52px;
    width: 300px;
    text-align: left;
    border-bottom: 1px solid #08c;
    z-index: 10;
}
nav .wrapper > ul > li.dropdown ul > li {
    display: block;
}
nav .wrapper > ul > li.dropdown ul > li a {
    display: block;
    background: #ffffff;
    padding: 12px 20px;
    border: 1px solid #08c;
    border-bottom: none;
}
nav .wrapper > ul > li.dropdown ul > li a:hover {
    text-decoration: none;
    background: #08c;
    color: #ffffff;
}
nav .wrapper > ul > li.dropdown:hover ul {
    display: block;
}
nav .wrapper > ul > li.dropdown ul > li a.de {
    background-image: url('../pictures/countries/de.gif');
    background-repeat: no-repeat;
    background-position: 262px 16px;
}
nav .wrapper > ul > li.dropdown ul > li a.pl {
    background-image: url('../pictures/countries/pl.gif');
    background-repeat: no-repeat;
    background-position: 262px 16px;
}

/* FOOTER */
footer {
    height: 620px;
    padding-top: 30px;
    background: url("../pictures/layout/footer.gif") repeat-x;
}
footer .wrapper {
    width: 895px;
    height: 620px;
    margin: 0px auto;
    text-align: left;
    position: relative;
}
footer .wrapper .newsletter {
    display: inline-block;
    border-right: 1px solid #ffffff;
    margin: 37px 0px 30px 5px;
    width: 350px;
    vertical-align: top;
    padding-right: 10px;
}
footer .wrapper .newsletter h3 {
    font-size: 140%;
    font-weight: 700;
    margin: 0px 0px 10px 0px;
}
footer .wrapper .newsletter input[type=text] {
    float: left;
    margin-right: 5px;
    margin-top: 10px;
}
footer .wrapper .newsletter input[type=submit] {
    float: left;
    margin-top: 10px;
}
footer .wrapper .facebook {
    display: inline-block;
    width: 495px;
    vertical-align: top;
    float: right;
}
footer .wrapper .facebook iframe {
    width: 100%;
    height: 432px;
}
footer .wrapper .news {
    display: inline-block;
    width: 330px;
    height: 400px;
    background: #ebe4de;
    border: 1px solid #d1c5b6;
    border-radius: 10px;
    padding: 15px 23px;
}
footer .wrapper .news h3 {
    font-size: 140%;
    font-weight: 700;
    margin: 0px 0px 10px 0px;
}
footer .wrapper .news ul li {
    display: block;
    border-bottom: 1px solid #e0d7cd;
    margin-bottom: 15px;
}
footer .wrapper .news ul li p {
    color: #333333;
} 
footer .wrapper .news ul li p.title {
    color: #114c85;
} 
footer .wrapper .news ul li:last-child {
    border: none;
    padding: 0;
}
footer .wrapper .news ul li span {
    color: #d2c6b7;
}
footer .wrapper .copyright {
    position: absolute;
    right: 74px;
    bottom: 95px;
    background: #114c85;
    color: #ffffff;
    padding: 0px 10px;
    font-size: 90%;
}
footer .wrapper .copyright a {
    color: #ffffff;
    text-decoration: underline;
}
footer .wrapper .copyright span {
    margin: 0px 10px;
}
footer .wrapper #slideTop {
    position: absolute;
    right: 20px;
    bottom: 88px;
    width: 34px;
    height: 34px;
    background: url("../pictures/layout/footer-top.gif") no-repeat;
}
footer .wrapper a.feedback {
    display: block;
    background: #ffffff;
    padding: 16px 20px;
    margin-bottom: 15px;
    position: relative;
    transition: all 0.20s ease;
}
footer .wrapper a.feedback:hover {
    background: #fafafa;
}
footer .wrapper a.feedback:after {
        content: '4,9';
    font-size: 25px;
    position: absolute;
    top: -18px;
    right: -18px;
    width: 94px;
    height: 48px;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgaWQ9IkxheWVyXzEiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDYxMiA3OTI7IiB2ZXJzaW9uPSIxLjEiIHZpZXdCb3g9IjAgMCA2MTIgNzkyIiB4bWw6c3BhY2U9InByZXNlcnZlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj48c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLnN0MHtmaWxsOiNGQ0FGMTc7fQo8L3N0eWxlPjxnPjxwb2x5Z29uIGNsYXNzPSJzdDAiIHBvaW50cz0iMzA2LDE1MyAyMTYuNCwyOTguOSA1MCwzMzkgMTYxLDQ2OS4zIDE0Ny44LDYzOS45IDMwNiw1NzQuNiA0NjQuMiw2MzkuOSA0NTEsNDY5LjMgNTYyLDMzOSAgICAzOTUuNiwyOTguOSAzMDYsMTUzICAiLz48L2c+PC9zdmc+);
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: -23px;
    line-height: 1em;
    padding-top: 29px;
    text-align: center;
    color: #ffffff;
    transform: rotate(-5deg);
    transition: all 0.20s ease;
}
footer .wrapper a.feedback:hover:after {
    transform: rotate(10deg);
}

/* SLIDER */
#slider {
    background: #e7e0d8;
    background: -moz-linear-gradient(top,  #e7e0d8 0%, #e0d7cd 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e7e0d8), color-stop(100%,#e0d7cd));
    background: -webkit-linear-gradient(top,  #e7e0d8 0%,#e0d7cd 100%);
    background: -o-linear-gradient(top,  #e7e0d8 0%,#e0d7cd 100%);
    background: -ms-linear-gradient(top,  #e7e0d8 0%,#e0d7cd 100%);
    background: linear-gradient(to bottom,  #e7e0d8 0%,#e0d7cd 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e7e0d8', endColorstr='#e0d7cd',GradientType=0 );
    border-bottom: 1px solid #bdab97;
    height: 379px;
    padding-top: 36px;
}
#slider h2 {
    margin: 0px 0px 32px 0px;
    font-size: 180%;
}
#slider img {
    margin: 0px auto;
}
#slider ul.tips {
    background: #e6dfd7;
    background: -moz-linear-gradient(top,  #e6dfd7 0%, #cdc0b0 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e6dfd7), color-stop(100%,#cdc0b0));
    background: -webkit-linear-gradient(top,  #e6dfd7 0%,#cdc0b0 100%);
    background: -o-linear-gradient(top,  #e6dfd7 0%,#cdc0b0 100%);
    background: -ms-linear-gradient(top,  #e6dfd7 0%,#cdc0b0 100%);
    background: linear-gradient(to bottom,  #e6dfd7 0%,#cdc0b0 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6dfd7', endColorstr='#cdc0b0',GradientType=0 );
    width: 846px;
    display: inline-block;
    border: 1px solid #bdab97;
    padding: 21px 15px;
    border-radius: 10px;
    margin-top: 27px;
}
#slider ul.tips li {
    display: inline-block;
    vertical-align: top;
    font-size: 110%;
    text-align: left;
    font-weight: 700;
    border-right: 1px solid #eee9e3;
    background: url("../pictures/layout/tips-li.png") no-repeat;
    background-position: left center;
    height: 40px;
    padding: 0px 10px 0px 50px;
}
#slider ul.tips li.one {
    width: 250px;
    margin-right: 30px;
}
#slider ul.tips li.two {
    width: 172px;
    padding-top: 10px;
    height: 30px;
    padding-right: 30px;
    margin-right: 0px;
}
#slider ul.tips li.three {
    padding: 0px;
    border-right: none;
    width: 190px;
    text-align: right;
    background-image: none;
}
#slider ul.tips li span.circle {
    display: inline-block;
    width: 40px;
    height: 39px;
    background: url("../pictures/layout/tips-li.png") no-repeat;
    margin-right: 18px;
    float: left;
}
.button1 {
    background: #086ba7;
    background: -moz-linear-gradient(top,  #086ba7 0%, #124780 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#086ba7), color-stop(100%,#124780));
    background: -webkit-linear-gradient(top,  #086ba7 0%,#124780 100%);
    background: -o-linear-gradient(top,  #086ba7 0%,#124780 100%);
    background: -ms-linear-gradient(top,  #086ba7 0%,#124780 100%);
    background: linear-gradient(to bottom,  #086ba7 0%,#124780 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#086ba7', endColorstr='#124780',GradientType=0 );
    display: inline-block;
    color: #ffffff;
    text-transform: uppercase;
    padding: 10px 20px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid #12467f;
    font-size: 90%;
    cursor: pointer;
    border-radius: 5px;
}
.button1:hover {
    background: #086ba7;
    color: #ffffff;
    text-decoration: none;
}

/* SCHRANKA MENU */
#schranka-menu {
    background: #005384;
    height: 53px;
}
#schranka-menu .wrapper {
    width: 950px;
    margin: 0px auto;
}
#schranka-menu .title {
    width: 150px;
    height: 36px;
    background: url("../pictures/layout/schranka.png") no-repeat;
    background-position: right bottom;
    color: #ffffff;
    display: inline-block;
    padding-top: 17px;
    line-height: 18px;
    margin-right: 60px;
    text-align: left;
}
#schranka-menu ul {
    display: inline-block;
    vertical-align: top;
    padding-top: 7px;
}
#schranka-menu ul li {
    display: inline-block;
    vertical-align: top;
}
#schranka-menu ul li a {
    color: #ffffff;
    display: inline-block;
    height: 36px;
    padding: 10px 17px 0px 17px;
    border-radius: 5px 5px 0px 0px;
}
#schranka-menu ul li a.active {
    background: #eee9e3;
    color: #005384;
}
#schranka-menu ul li input[type=text] {
    width: 100px;
    margin: 6px 0px 0px 10px;
}

/* SCHRANKA */
#schranka-levy {
    display: inline-block;
    vertical-align: top;
    width: 258px;
    margin-right: 14px;
    margin-top: 30px;
}
#schranka-levy h2 {
    font-size: 130%;
    line-height: 18px;
    margin: 0px 0px 10px 0px;
}
#schranka-levy .box {
    background: #ffffff;
    border: 1px solid #cccccc;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}
#schranka-levy .box.main {
    border: 2px solid #cccccc;
}
#schranka-levy .box p.note {
    text-align: center;
    font-size: 90%;
    border-top: 1px solid #cccccc;
    padding-top: 15px;
    margin-top: 10px;
    margin-bottom: 0px;
}
#schranka-levy .box table.adresa td {
    padding: 5px 5px;
}
#schranka-levy .box ul.podpora li.tel {
    background: url("../pictures/layout/ico-tel.png") no-repeat;
    background-position: left center;
    padding: 2px 0px 2px 35px;
    margin-bottom: 10px;
}
#schranka-levy .box ul.podpora li.email {
    background: url("../pictures/layout/ico-email.png") no-repeat;
    background-position: left center;
    padding: 2px 0px 2px 40px;
}
#schranka-levy .box ul.podpora li.email a {
    color: #000000;
}
#schranka-levy .box ul.podpora li span {
    float: right;
}

#schranka-pravy {
    display: inline-block;
    vertical-align: top;
    width: 660px;
    margin-top: 30px;
}
#schranka-pravy h1 {
    font-size: 130%;
    line-height: 18px;
    margin: 0px 0px 10px 0px;
}
#schranka-pravy .box {
    background: #ffffff;
    border: 1px solid #cccccc;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}
#schranka-pravy .box h2 {
    font-size: 120%;
    line-height: 18px;
    margin: 0px 0px 10px 0px;
    clear: both;
}
#schranka-pravy .box a.more {
    background: url("../pictures/layout/ico-more.png") no-repeat;
    background-position: right center;
    padding: 2px 15px 2px 0px;
    display: inline-block;
    color: #005384;
    text-decoration: underline;
    font-size: 90%;
    float: right;
    margin: -15px 3px 10px 0px;
}
#schranka-pravy .box table.nastaveni {
    border: 1px solid #cccccc;
    display: block;
    margin-bottom: 20px;
}
#schranka-pravy .box table.nastaveni td {
    padding: 10px;
    vertical-align: top;
}
#schranka-pravy .box table.nastaveni th {
    padding: 10px;
    vertical-align: top;
    text-align: right;
}

/* HLAVNI CAST */
article {
    background: url("../pictures/layout/article-bg.gif") repeat-x;
    background-position-y: -1px;
}
article.hp {
    padding-top: 40px;
}
article .wrapper {
    width: 923px;
    margin: 0px auto;
    min-height: 400px;
    text-align: left;
    padding: 1px 0px;
    position: relative;
}
article .wrapper.big {
    width: 936px;
} 
article.hp .wrapper {
    padding-top: 40px;
    width: 890px;
    padding-bottom: 40px;
}
article .hp-box {
    width: 825px;
    margin-left: 35px;
    padding: 1px 0px;
}
article .hp-box h2 {
    font-size: 180%;
    font-weight: 700;
    margin: 20px 0px 15px 0px;
}
article .hp-box img {
    float: right;
    margin: 0px 0px 30px 30px;
}
article .hp-box.left img {
    float: left;
    margin: 0px 30px 30px 0px;
}
article p.link {
    margin-top: 20px;
}
article .hp-line {
    background: url("../pictures/layout/hp-line.png") no-repeat;
    display: block;
    height: 45px;
    background-position: top center;
    clear: both;
}
article h1 {
    font-size: 195%;
    font-weight: 700;
    margin: 37px 0px 29px 0px;
    line-height: 28px;
}
section {
    background: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 10px;
    padding: 29px;
    margin-bottom: 40px;
}
section .cenik {
    width: 410px;
    display: inline-block;
    vertical-align: top;
    margin: 0px 36px 15px 0px;
}
section .cenik:nth-of-type(2n) {
    margin-right: 0px;
}
section .cenik h2 {
    font-size: 115%;
    margin: 0px 0px 5px 0px;
}
section .cenik h2 span {
    display: none;
}
section .cenik h2.cz {
    background: url("../pictures/layout/h2-cz.png") no-repeat;
    background-position: left top;
    padding: 0px 0px 6px 50px;
    margin-left: -10px;
}
section .cenik h2.sk {
    background: url("../pictures/layout/h2-sk.png") no-repeat;
    background-position: left -3px;
    padding: 0px 0px 6px 55px;
    margin-left: -10px;
}
section .cenik .postovne {
    text-align: right;
    padding: 15px;
    font-weight: bold;
    background: #eaeaea url("../pictures/layout/dopravci.png") no-repeat;
    background-position: 15px 10px;
    font-size: 110%;
    margin-top: -15px;
    border-radius: 5px;
}
section .cenik table.table th {
    background: #fafafa;
    text-align: center;
}
section .cenik table.table span.smaller {
    display: block;
    font-size: 80%;
}
section .cenik .kalkulacka-box {
    background: #f3f0ec;
    padding: 47px 15px;
    border-radius: 8px;
}
section .cenik .kalkulacka-box a {
    background: url("../pictures/layout/kalkulacka.png") no-repeat;
    display: inline-block;
    vertical-align: top;
    color: #3183b4;
    padding: 11px 15px 16px 85px;
    width: 75px;
    text-align: center;
    border-right: 1px solid #d5c9b9;
    text-decoration: underline;
    font-size: 95%;
}
section .cenik .kalkulacka-box p {
    display: inline-block;
    width: 175px;
    vertical-align: top;
    margin-left: 20px;
    margin-top: 5px;
}
section .cenik-priklad {
    background: #f3f0ec;
    border-radius: 10px;
    display: inline-block;
    width: 360px;
    margin-right: 36px;
    padding: 15px 25px 25px 25px;
    margin-bottom: 20px;
    min-height: 298px;
    margin-top: 10px;
}
section .cenik-priklad:nth-of-type(2n) {
    margin-right: 0px;
}
section .cenik-priklad h3 {
    margin: 0px;
    font-size: 100%;
    font-weight: 700;
    background: #e8e2d9;
    padding: 5px 63px 5px 30px;
    display: inline-block;
    line-height: 18px;
    color: #096ca8;
    margin: 0px 0px 15px -30px;    
}
section ul.login-menu {
    font-size: 90%;
    margin-left: 235px;
}
section ul.login-menu li {
    display: inline-block;
}
section ul.login-menu a {
    color: #000000;
    font-weight: bold;
    display: inline-block;
    padding: 13px 15px 13px 50px;
    border-radius: 8px 8px 0px 0px;
    text-decoration: underline;
}
section ul.login-menu a.active {
    background: #efebe6;
    text-decoration: none;
}
section ul.login-menu a.login {
    background-image: url("../pictures/layout/ico-user.png");
    background-repeat: no-repeat;
    background-position: 14px 9px;
    margin-right: 10px;
}
section ul.login-menu a.register {
    background-image: url("../pictures/layout/ico-register.png");
    background-repeat: no-repeat;
    background-position: 13px 10px;
    padding: 13px 15px 13px 43px;
    margin-left: 10px;
}
section form#frm-login {
    background: #efebe6;
    border-radius: 0px 10px 10px 10px;
    display: inline-block;
    width: 350px;
    margin-left: 235px;
    padding: 35px 40px;
}
section form#frm-login ul li {
    margin-bottom: 10px;
}
section form#frm-login ul li:last-child {
    margin-bottom: 0px;
}
section form#frm-login label {
    display: inline-block;
    min-width: 82px;
    vertical-align: top;
    margin-top: 5px;
}
section form#frm-login input[type=submit] {
    margin-left: 82px;
}
section p.big {
    text-align: center;
    font-weight: bold;
    margin: 0px 0px 30px 0px;
}
section a.help {
    background: url("../pictures/layout/ico-help.gif") no-repeat;
    display: inline-block;
    padding: 1px 0px 2px 32px;
    color: #1171ab;
    font-size: 90%;
    text-decoration: underline;
}
section form#frm-register {
    background: #efebe6;
    border-radius: 10px;
    display: inline-block;
    width: 626px;
    margin-left: 107px;
    padding: 35px 40px;
}
section form#frm-register h3 {
    font-size: 120%;
    font-weight: 700;
    line-height: 25px;
    margin: 0px 0px 20px 0px;
}
section form#frm-register ul {
    margin-bottom: 15px;
}
section form#frm-register ul li {
    display: inline-block;
    margin-right: 60px;
    margin-bottom: 13px;
}
section form#frm-register ul li:nth-child(2n) {
    margin-right: 0px;
}
section form#frm-register ul.error li {
    display: block;
}
section form#frm-register label {
    display: inline-block;
    min-width: 75px;
    vertical-align: top;
    margin-top: 6px;
    text-align: right;
    padding-right: 15px;
}
section form#frm-register input[type=text] {
    width: 170px;
}
section form#frm-register input[type=password],
section form#frm-register input[type=email] {
    width: 170px;
}
section form#frm-register select {
    width: 185px;
}
section form#frm-register input[type=submit] {
    margin-left: 240px;
}
section .gray-box {
    background: #e6dfd7;
    background: -moz-linear-gradient(top,  #e6dfd7 0%, #cdc0b0 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e6dfd7), color-stop(100%,#cdc0b0));
    background: -webkit-linear-gradient(top,  #e6dfd7 0%,#cdc0b0 100%);
    background: -o-linear-gradient(top,  #e6dfd7 0%,#cdc0b0 100%);
    background: -ms-linear-gradient(top,  #e6dfd7 0%,#cdc0b0 100%);
    background: linear-gradient(to bottom,  #e6dfd7 0%,#cdc0b0 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6dfd7', endColorstr='#cdc0b0',GradientType=0 );
    border-radius: 10px;
    padding: 20px 54px;
    margin: 30px 0px;
}
section .gray-box p {
    display: inline-block;
    vertical-align: top;
    width: 480px;
    font-weight: 700;
    font-size: 110%;
    margin: 0px;
}
section .gray-box a {
    display: inline-block;
    vertical-align: top;
    float: right;
}
section .tabs-content {
    border: 1px solid #cccccc;
    border-radius: 10px;
    padding: 25px 28px;
    margin-bottom: 30px;
}
section .tabs-content#tabs-one  {
    border-top-left-radius: 0px;
}
section .tabs-menu {
    margin-bottom: -1px;
}
section .tabs-menu li {
    display: inline-block;
    margin-right: 5px;
}
section .tabs-menu li a {
    color: #000000;
    text-decoration: underline;
    padding: 8px 20px;
    display: inline-block;
    border-radius: 10px 10px 0px 0px;
}
section .tabs-menu li a.active {
    text-decoration: none;
    background: #ece7e1;
    background: -moz-linear-gradient(top,  #ece7e1 0%, #ffffff 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ece7e1), color-stop(100%,#ffffff));
    background: -webkit-linear-gradient(top,  #ece7e1 0%,#ffffff 100%);
    background: -o-linear-gradient(top,  #ece7e1 0%,#ffffff 100%);
    background: -ms-linear-gradient(top,  #ece7e1 0%,#ffffff 100%);
    background: linear-gradient(to bottom,  #ece7e1 0%,#ffffff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ece7e1', endColorstr='#ffffff',GradientType=0 );
    border: 1px solid #cccccc;
    border-bottom: 1px solid #ffffff;
}
section ul.progres.bigger {
    margin: 40px 0px;
}
section ul.progres li {
    text-align: center;
    display: inline-block;
    width: 238px;
    vertical-align: top;
}
section ul.progres li.arrow {
    background: url("../pictures/layout/progres-arrow.png") no-repeat;
    width: 29px;
    height: 49px;
}
section ul.progres li.arrow-big {
    background: url("../pictures/layout/progres-arrow.png") no-repeat;
    width: 60px;
    height: 49px;
    background-position: top center;
}
section ul.progres li span.ico {
    display: block;
    height: 49px;
    margin-bottom: 15px;
}
section ul.progres li span.ico.register {
    background: url("../pictures/layout/progres-register.png") no-repeat;
    background-position: top center;
}
section ul.progres li span.ico.misto {
    background: url("../pictures/layout/progres-misto.png") no-repeat;
    background-position: top center;
}
section ul.progres li span.ico.auto {
    background: url("../pictures/layout/progres-auto.png") no-repeat;
    background-position: top center;
}
section ul.progres li span.ico.kosik {
    background: url("../pictures/layout/progres-kosik.png") no-repeat;
    background-position: top center;
}
section ul.progres li span.ico.eura {
    background: url("../pictures/layout/progres-eura.png") no-repeat;
    background-position: top center;
}
section h2 {
    font-size: 130%;
    font-weight: 700;
    margin: 0px 0px 20px 0px;
    clear: both;
}
section .reference {
    position: relative;
    padding: 0px 30px;
    margin-bottom: 30px;
}
section .reference ul {
    margin: 0px;
    padding: 0px;
}
section .reference ul li {
    display: inline-block;
    width: 350px;
    border-right: 1px solid #cccccc;
    min-height: 90px;
    padding: 0px 20px;
    vertical-align: top;
}
section .reference ul li span.person {
    display: inline-block;
    background: url("../pictures/layout/ico-referent.png") no-repeat;
    padding: 5px 0px 5px 40px;
    font-weight: 700;
    margin-left: 5px;
}
section .reference a.link-left {
    background: url("../pictures/layout/reference-slider-left.png") no-repeat;
    width: 23px;
    height: 42px;
    position: absolute;
    top: 30px;
    left: 0px;
}
section .reference a.link-right {
    background: url("../pictures/layout/reference-slider-right.png") no-repeat;
    width: 23px;
    height: 42px;
    position: absolute;
    top: 30px;
    right: 0px;
}
section .reference .stinitko {
    position: absolute;
    background: #ffffff;
    width: 20px;
    height: 125px;
    right: 22px;
    top: 0px;
}
section form#frm-kontaktForm {
    background: #efebe6;
    padding: 25px;
    border-radius: 10px;
    width: 620px;
}
section form#frm-kontaktForm ul li {
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 5px;
}
section form#frm-kontaktForm ul li label {
    display: inline-block;
    min-width: 75px;
    text-align: right;
    padding-right: 15px;
    vertical-align: top;
    margin-top: 4px;
}
section form#frm-kontaktForm ul li input[type=text] {
    width: 170px; 
}
section form#frm-kontaktForm ul li input[type=submit] {
    margin-left: 90px;
}
section form#frm-kontaktForm ul li select {
    width: 185px; 
}
section form#frm-kontaktForm ul li textarea {
    width: 468px;
    height: 175px;
    resize: none;
}
section .asist {
    width: 47%;
    margin-right: 10px;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 30px;
}
section .asist h2 {
    margin-bottom: 10px;
}
section .asist p.gray {
    font-size: 90%;
    color: #666666;
    margin-top: -10px;
}
section ul.steps li {
    margin-bottom: 8px;
}
section ul.steps li span {
    background: #1372ac;
    color: #ffffff;
    display: inline-block;
    padding: 5px 10px;
    margin-right: 7px;
    border-radius: 15px;
    vertical-align: middle;
}
section ul.steps li p {
    vertical-align: middle;
    display: inline-block;
    width: 350px;
    margin: 0px;
}
section .kontakt {
    display: inline-block;
    background: #eaeaea;
    padding: 30px 50px 30px 100px;
    border-radius: 10px;
    font-size: 150%;
    vertical-align: top;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    margin-top: 15px;
}
section .kontakt.email {
    background: #eaeaea url("../pictures/layout/email.png") no-repeat;
    background-position: 34px 24px;
    margin-right: 60px;
    margin-left: 60px;
}
section .kontakt.email a {
    color: #000000;
    text-decoration: none;
}
section .kontakt.tel {
    background: #eaeaea url("../pictures/layout/telefon.png") no-repeat;
    background-position: 34px 24px;
    padding: 20px 50px 20px 100px;
}
section .kontakt.tel span {
    display: block;
    font-size: 70%;
    color: #666666;
    font-weight: normal;
}
section .kontakt-box {
    display: inline-block;
    width: 400px;
}
section .kontakt-box img {
    float: left;
    margin: 0px 15px 25px 0px;
}
section .kontakt-box h2 {
    font-size: 130%;
    line-height: 25px;
    margin: 0px 0px 10px 0px;
    clear: both;
}
section .kontakt-box .fakturacni {
    display: inline-block;
    vertical-align: top;
    width: 150px;
    margin-bottom: 20px;
}
section .kontakt-box .fakturacni2 {
    display: inline-block;
    vertical-align: top;
    width: 240px;
}
section .kontakt-mapa {
    display: inline-block;
    vertical-align: top;
    width: 459px;
    margin-top: 30px;
}
article #schranka-pravy .box h3 {
    font-size: 110%;
    font-weight: 700;
    line-height: 18px;
    margin-bottom: 5px;
    background: #eaeaea;
    padding: 8px 10px;
    border-radius: 5px 5px 0px 0px;
}
ul.udaje {
    border: 1px solid #eaeaea;
    background: #fafafa;
    border-radius: 10px;
    padding: 10px 0px;
    margin-bottom: 25px;
}
ul.udaje li {
    display: inline-block;
    margin: 5px 20px;
    vertical-align: top;
}
ul.udaje li label {
    margin-bottom: 0px;
    line-height: 15px;
    font-weight: 700;
    padding-left: 2px;
}
table.table tr.obarveny td {
    background: rgb(243, 195, 106);
}
#administrace > ul > li {
    display: inline-block;
    width: 200px;
    vertical-align: top;
    margin-bottom: 15px;
}
#administrace > ul > li h3 {
    font-size: 110%;
    margin: 0px 0px 10px 0px;
    line-height: 18px;
}
#administrace > ul > li form {
    margin: 0px;
}
#administrace > ul > li input[type=text] {
    width: 100px;
}
.pagination {
    text-align: center;
    width: 100%;
}
.pagination li {
    display: inline-block;
}
.pagination a {
    border: 1px solid #dddddd;
    display: inline-block;
    padding: 2px 4px;
    border-radius: 4px;
    min-width: 20px;
}
.pagination a:hover {
    text-decoration: none;
    background: #eaeaea;
}
.pagination span.current {
    border: 1px solid #dddddd;
    display: inline-block;
    padding: 2px 4px;
    border-radius: 4px;
    min-width: 20px;
    background: rgb(180, 251, 180);
}
.pagination span.button {
    border: 1px solid #dddddd;
    display: inline-block;
    padding: 2px 4px;
    border-radius: 4px;
    min-width: 20px;
    color: #cccccc;
}
select.big {
    width: 100%;
    margin-bottom: 15px;
}
.img-left {
    float: left;
    margin: 0px 15px 15px 0px;
}
.img-right {
    float: right;
    margin: 0px 0px 15px 15px;
}
#frm-form fieldset {
    display: inline-block;
    border: 1px solid #eaeaea;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
    min-width: 450px;
}
#frm-form fieldset label {
    margin-right: 10px;
    min-width: 135px;
}
#frm-form legend {
    border: none;
    margin: 0px 0px 0px 0px;
    color: #005384;
    font-weight: 700;
    width: auto;
    background: #ffffff;
    padding: 0px 10px;
}
.kredit_stav {
    padding: 15px 20px;
    background: #eaeaea;
    border: 1px solid #cccccc;
    border-radius: 5px;
    display: inline-block;
    width: 140px;
    text-align: center;
    margin-bottom: 10px;
}
select[multiple=multiple] {
    width: 250px;
    height: 200px;
}
ul.obchody-menu {
    background: #3385b7;
    height: 40px;
    border-radius: 10px;
    padding: 0px 10px;
    margin-bottom: 25px;
}
ul.obchody-menu li {
    float: left;
}
ul.obchody-menu li a {
    color: #ffffff;
    display: block;
    background: #3385b7;
    font-size: 110%;
    padding: 10px 10px;
}
ul.obchody-menu li a:hover {
    text-decoration: none;
}
ul.obchody-menu li a.active {
    background: #0168a5;
}
ul.obchody-menu li a.home {
    background-image: url("../pictures/ico/home.png");
    background-repeat: no-repeat;
    background-position: center center;
    width: 25px;
    height: 20px;
}

ul.obchody > li {
    display: inline-block;
    width: 46%;
    margin: 0px 10px 20px 0px;
    background: #F7F7F7;
    padding: 10px;
    vertical-align: top;
    border-top: 3px solid #eaeaea;
    color: #333333;
}
ul.obchody > li h3 {
    margin: 0px 0px 10px 0px;
    padding: 0px;
    line-height: 22px;
    font-size: 130%;
}
ul.obchody > li h3 a {
    display: block;
}
ul.obchody > li h3 a:hover {
    text-decoration: none;
    color: #000000;
}
ul.obchody > li img {
    float: left;
    margin: 5px 15px 5px 0px;
}
ul.obchody > li p.detail {
    text-align: right;
    margin-top: 20px;
}
ul.tagy {
    margin: 10px 0px;
}
ul.tagy li {
    display: inline-block;
    margin: 3px;
}
ul.tagy li a {
    display: inline-block;
    padding: 2px 3px;
    font-size: 85%;
    background: #eaeaea;
    color: #999999;
}
div#obchod .left {
    display: inline-block;
    width: 210px;
    margin: 0px 20px 20px 0px;
    vertical-align: top;
    border: 1px solid #eaeaea;
    border-radius: 5px;
    padding: 10px;
}
div#obchod .right {
    display: inline-block;
    width: 500px;
    vertical-align: top;
}
div#obchod ul.tagy li a {
    font-size: 100%;
    padding: 5px 10px;
}
div#obchod h3 {
    font-size: 100%;
    color: #999999;
    margin: 20px 0px 5px 0px;
    padding: 0px;
    line-height: 14px;
}
div#obchod h3:first-child {
    margin-top: 0px;
}
div#obchod a.link {
    font-size: 110%;
}
div#obchod h4 {
    border-bottom: 2px solid #CAE4F0;
    font-size: 120%;
    margin: 30px 0px 10px 0px;
    color: #666666;
}
div#obchod .no-comments {
    display: block;
    background: #f7f7f7;
    color: #999999;
    text-align: center;
    padding: 20px 0px;
    margin: 20px 0px;
}
ul.komentar {
    background: #f7f7f7;
    padding: 20px 10px;
    border-radius: 5px;
    border: 3px solid #eaeaea;
}
ul.komentar li {
    display: block;
}
ul.komentar li label {
    float: left;
    padding-top: 5px;
    margin-right: 5px;
}
ul.komentar li input {
    float: left;
    margin-right: 20px;
}
ul.komentar li input[type=checkbox] {
    margin-top: 8px;
    margin-right: 5px;
}
ul.komentar li input[type=submit] {
    float: none;
}
ul.komentar li textarea {
    width: 98%;
    height: 130px;
}

ul.komentare li {
    margin-bottom: 10px;
    background: #f5f5f5;
    margin: 20px 0px;
    padding: 10px;
    border-radius: 5px;
}
ul.komentare li span.info {
    background: #C7DAE3;
    display: block;
    padding: 5px 10px;
    margin-bottom: 8px;
}
ul.komentare li span.info a.email {
    color: #333333;
    font-size: 90%;
}
ul.obchody_platby li {
    list-style-type: square;
    list-style-position: inside;
    margin-left: 5px;
}
section textarea#frmtodo-text {
    width: 500px;
    height: 100px;
}

ul.faq-temata {
    border: 1px solid #e0e0e0;
    width: 140px;
    padding: 20px;
    border-radius: 5px;
    float: left;
    margin: 0px 0px 0px 0px;
    background: #eaeaea;
}
ul.faq-temata li {
    list-style-type: square;
    margin-bottom: 10px;
    display: block;
    font-weight: bold;
    list-style-type: none;
}

div.faq-odpovedi {
    float: right;
    width: 620px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 20px;
    color: #000000;
    margin-bottom: 25px;
}
div.faq-odpovedi h3 {
    margin: 0px;
    text-shadow: none;
    background: #eaeaea;
    color: #0272A8;
    margin: -20px -20px 10px -20px;
    padding: 10px 15px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    font-size: 130%;
}
div.faq-odpovedi ul li {
    margin-left: 20px;
}
div.hp-tips {
    text-align: center;
}
div.hp-tips h3 {
    font-size: 170%;
    font-weight: 700;
    color: #000000;
    margin: -18px 0px 25px 0px;
}
div.hp-tips ul li {
    display: inline-block;
    width: 169px;
    vertical-align: top;
    height: 80px;
    padding-top: 135px;
    padding: 135px 25px 0px 25px;
    font-size: 115%;
    font-weight: 700;
    color: #086ca8;
    position: relative;
}
div.hp-tips ul li span {
    display: block;
    width: 1px;
    height: 110px;
    background: #dde5e8;
    position: absolute;
    top: 10px;
    right: 0px;
}
div.hp-tips ul li.list1 {
    background: url("../pictures/layout/hp-ico1.png") no-repeat;
    background-position: top center;
}
div.hp-tips ul li.list2 {
    background: url("../pictures/layout/hp-ico2.png") no-repeat;
    background-position: top center;
}
div.hp-tips ul li.list3 {
    background: url("../pictures/layout/hp-ico3.png") no-repeat;
    background-position: top center;
}
div.hp-tips ul li.list4 {
    background: url("../pictures/layout/hp-ico4.png") no-repeat;
    background-position: top center;
}
a.btn-info {
    position: relative !important;
}
a.btn-info span {
    position: absolute;
    top: -10px;
    right: -10px;
    background: red;
    color: white;
    padding: 1px 3px;
    line-height: 12px;
    border-radius: 20px;
    font-size: 90%;
}
td.dopravce.cp {
    background-image: url("../pictures/ico/ico-cp.png");
}
td.dopravce.ppl {
    background-image: url("../pictures/ico/ico-ppl.png");
}
td.dopravce.dpd {
    background-image: url("../pictures/ico/ico-dpd.png");
}
td.dopravce.zs {
    background-image: url("../pictures/ico/ico-zasilkovna.png");
}
td.dopravce {
    background-repeat: no-repeat;
    background-position: 168px 7px;
    font-weight: 700;
}
th.dopis {
    background-image: url("../pictures/ico/dopis.png");
    background-repeat: no-repeat;
    background-position: center 7px;
    padding-top: 35px;
}
th.balik {
    background-image: url("../pictures/ico/balik.png");
    background-repeat: no-repeat;
    background-position: center 7px;
    padding-top: 35px;
}
th.paleta {
    background-image: url("../pictures/ico/paleta.png");
    background-repeat: no-repeat;
    background-position: center 9px;
    padding-top: 35px;
}
section .cenik > ul {
    padding: 0px 0px 0px 20px;
}

section .cenik > ul > li {
    list-style-type: square;
    margin: 0px 0px 10px 0px;
    list-style-position: outside;
}
article span.helpButton {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url("../pictures/ico/info.gif") no-repeat;
    cursor: help;
}

#evidence {
    border: 1px solid #08c; 
    margin: 10px 0 0 0; 
    font-size: 140%; 
    color: #08c; 
    padding: 20px 0 20px 200px; 
    border-radius: 3px;
    background: #ffffff url('../pictures/layout/evidence.gif') no-repeat; 
    background-position: -5px -59px;
}
#evidence span {
    display: block;
    font-size: 75%;
    margin-top: 3px;
    color: #999999;
}
#evidence span a {
    color: #999999;
    text-decoration: underline;
}

article ul.address-chooser {
    margin-bottom: 5px;
}
article ul.address-chooser li {
    display: inline-block;
    width: 48%;
}
article ul.address-chooser li a {
    display: block;
    padding: 5px 0px 5px 32px;
    background: #eaeaea;
    background-repeat: no-repeat;
    background-position: 9px 9px;
    border-radius: 3px;
    text-align: left;
}
article ul.address-chooser li a.active {
    background-color: #45a8da;
    color: #ffffff;
}
article ul.address-chooser li a.de {
    background-image: url('../pictures/countries/de.gif');
}
article ul.address-chooser li a.pl {
    background-image: url('../pictures/countries/pl.gif');
}

div.double {
    display: flex;
    margin: 20px 0 30px 0;
}
div.double div.box {
    padding-right: 60px;
}
div.double div.box h3 {
    font-size: 14px;
    line-height: 1em;
    margin: 0 0 15px 0;
}
div.double div.box ul li {
    background: url('../pictures/layout/aside-li-hover.png') no-repeat;
    background-position: 5px 8px;
    padding: 0 0 0 20px;
    line-height: 1.7em;
}
ul.faq {
    background: #eaeaea;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}
ul.services li {
    display: inline-block;
    vertical-align: top;
    width: 48%;
    margin: 0 3% 30px 0;
}
ul.services li:nth-child(2n) {
    margin-right: 0;
}
ul.services li > a {
    display: block;
    border: 1px solid #08c;
    padding: 10px;
    border-radius: 5px;
    color: #333333;
}
ul.services li > a:hover {
    text-decoration: none;
    background: #eaeaea;
}
ul.services li > a h2 {
    font-size: 16px;
    margin: 0 0 15px 0;
    line-height: 1.5em;
    color: #ffffff;
    background: #08c;
    padding: 10px;
    margin: -10px -10px 15px -10px;
    border-radius: 4px 4px 0 0;
    font-weight: 500;
}

a.zasilkovna-link {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    color: #ffffff;
    background: #ba1b02;
}
a.zasilkovna-link:hover {
    text-decoration: none;
    background: #d22004;
}

#banner {
    padding: 20px 0; 
    background: #ccffcc;
}
#banner h3 {
    font-size: 16px;
    margin: 0 0 10px 0;
    line-height: 1em;
}
#banner ul {
    display: inline-block;
    width: 878px;
}
#banner ul li {
    display: inline-block;
    vertical-align: top;
    color: green;
    margin: 0 10px;
    background: url('../pictures/ico/success.png') no-repeat;
    background-position: 0 2px;
    padding-left: 20px;
}

span.od18 {
    border: 2px solid red;
    display: inline-block;
    padding: 5px;
    font-size: 12px;
    color: red;
    font-weight: 700;
    border-radius: 50%;
    cursor: default;
}

table.kodeslani td,
table.kodeslani th {
    padding: 3px;
}
table.kodeslani tr.selected td {
    background: #87ff87;
}

ul.feedback {
}
ul.feedback li {
    border-bottom: 1px solid #bee0f5;
    margin-bottom: 20px;
    padding: 10px;
    position: relative;
    padding-right: 200px;
    color: #333333;
}
ul.feedback li strong {
    color: #000000;
}
ul.feedback li div.stars {
    position: absolute;
    top: 10px;
    right: 20px;
}
ul.feedback li div.stars span {
    display: block;
    float: left;
    width: 20px;
    height: 24px;
    background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgaWQ9IkxheWVyXzEiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDYxMiA3OTI7IiB2ZXJzaW9uPSIxLjEiIHZpZXdCb3g9IjAgMCA2MTIgNzkyIiB4bWw6c3BhY2U9InByZXNlcnZlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj48c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLnN0MHtmaWxsOiNGQ0FGMTc7fQo8L3N0eWxlPjxnPjxwb2x5Z29uIGNsYXNzPSJzdDAiIHBvaW50cz0iMzA2LDE1MyAyMTYuNCwyOTguOSA1MCwzMzkgMTYxLDQ2OS4zIDE0Ny44LDYzOS45IDMwNiw1NzQuNiA0NjQuMiw2MzkuOSA0NTEsNDY5LjMgNTYyLDMzOSAgICAzOTUuNiwyOTguOSAzMDYsMTUzICAiLz48L2c+PC9zdmc+");
    background-repeat: no-repeat;
}

div.feedback-top {
    background: #eaeaea;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 35px;
    font-size: 1.2em;
    text-align: center;
    line-height: 1.8em;
}

.nav-item a.active {
    background: #ddd;
}
td.relative {
    position: relative;
}
div.ico_cod {
    position: absolute;
    width: 12px;
    height: 12px;
    background: yellow;
    top: 0;
    right: 0;
    border-radius: 20px;
    border: 1px solid #ddd;
}
div.ico_sk {
    position: absolute;
    width: 12px;
    height: 12px;
    background: url(../pictures/countries/sk.gif);
    background-size: cover;
    top: 14px;
    right: 0;
    border-radius: 20px;
}

#balikovnaOverlay {
    width: 100%;
    height: 100%;
    background: #ffffff;
    padding: 30px;
}

/* MOBILE */
@media screen and (max-width: 700px) {
    * {
        box-sizing: border-box 
    }
    .no-mobile {
        display: none;
    }
    .mobile-only {
        display: inline-block;
    }
    img {
        max-width: 100%;
    }
    .button1 {
        display: block;
    }
    input[type=text],
    input[type=password],
    select {
        height: 42px;
    }
    header {
        width: 100%;
        height: auto;
        text-align: center;
        padding: 20px;
        border-bottom: 3px solid #08c;
        min-height: 70px;
    }
    header #logo {
        float: none;
        display: inline-block;
        vertical-align: middle;
        margin: 3px 0px 20px 0px;
        width: 50%;
        float: left;
    }
    header > ul {
        float: none;
        width: auto;
        display: inline-block;
        vertical-align: top;
        margin: 0px 10px;
    }
    header > ul li {
        margin: 0px 10px 0px 0px;
        display: inline-block;
        vertical-align: middle;
    }
    header > ul li a {
        display: inline-block;
        width: 26px;
        height: 28px;
        padding: 0px;
    }
    header > ul li a.login {
        margin-top: -1px;
    }
    header > ul li:last-child {
        margin-right: 0px;
    }
    header  a#mobileNav {
        width: 32px;
        height: 32px;
        display: inline-block;
        vertical-align: top;
        background: url("../pictures/layout/mobile-nav.png") no-repeat;
        float: right;
    }
    nav {
        height: auto;
        padding: 5px;
        display: none;
        width: 100%;
    }
    nav .wrapper ul li {
        display: block;
        border: none;
        padding: 0px;
        margin: 0px 0px 5px 0px;
        height: auto;
        background: none;
    }
    nav .wrapper ul li a {
        display: block;
        padding: 5px 0px;
        font-size: 100%;
        border: 1px solid #4696c5;
    }
    nav .wrapper ul li a.selected {
        background: #4696c5;
    }
    nav .wrapper ul li.dropdown ul {
        display: block;
        position: relative;
        width: 100%;
        top: 0;
        text-align: center;
        border: none;
        margin-top: 5px;
    }
    nav .wrapper ul li.dropdown ul li a {
        background: none;
        color: #ffffff;
        padding: 5px 0;
        border: 1px solid #4696c5;
    }
    nav .wrapper ul li.dropdown ul li.hide-mobile {
        display: none;
    }
    nav .wrapper > ul > li.dropdown ul > li a.de,
    nav .wrapper > ul > li.dropdown ul > li a.pl {
        background-position: 10px 10px;
    }
    footer {
        height: auto;
        background: none;
        background: #114c85;
        color: #ffffff;
    }
    footer .wrapper {
        width: auto;
        height: auto;
        padding: 20px;
    }
    footer .wrapper .newsletter {
        display: none;
    }
    #slider {
        padding: 15px;
        height: auto;
    }
    #slider ul.tips {
        width: auto;
        display: block;
        padding: 15px;
    }
    #slider ul.tips li {
        display: block;
        margin: 0px;
    }
    #slider ul.tips li.one,
    #slider ul.tips li.two,
    #slider ul.tips li.three {
        width: auto;
        margin: 0px;
        text-align: center;
        background: none;
        padding: 0px;
        border: none;
        margin: 5px 0px;
    }
    article.hp {
        padding: 0px;
    }
    article.hp .wrapper {
        padding: 20px 0px;
        width: auto;
    }
    article .hp-line {
        height: 32px;
    }
    div.hp-tips h3 {
        font-size: 130%;
        margin: 0px 0px 15px 0px;
    }
    div.hp-tips ul li.list1,
    div.hp-tips ul li.list2,
    div.hp-tips ul li.list3,
    div.hp-tips ul li.list4 {
        background-size: 50%;
        height: auto;
        width: 45%;
        padding: 90px 10px 0px 10px;
        margin: 10px 5px;
        font-size: 100%;
    }
    div.hp-tips ul li span {
        display: none;
    }
    article .hp-box {
        width: auto;
        padding: 0px 20px;
        margin: 0px 0px 0px 0px;
    }
    article .hp-box img {
        display: none;
    }
    article .hp-box h2 {
        font-size: 130%;
        margin: 0px 0px 15px 0px;
        line-height: 24px;
    }
    article p.link {
        text-align: center;
    }
    article p.link a.button1 {
        margin: 8px 0px;
    }
    footer {
        padding: 0;
    }
    footer .wrapper .news {
        width: 100%;
        padding: 0px;
        margin: 0 0 20px 0;
        background: none;
        border: none;
    }
    footer .wrapper .news ul li {
        display: block;
        width: auto;
        margin: 0px 0px 10px 0px;
        border-bottom: 1px solid #3f7ab3;
        height: auto;
        min-height: fit-content;
    }
    footer .wrapper .news ul li p, 
    footer .wrapper .news ul li p.title {
        color: #ffffff;
    }
    footer .wrapper .facebook {
        float: none;
        margin: 0px 0px 20px 0px;
        width: 100%;
    }
    footer .wrapper .facebook iframe {
        width: 100% !important;
    }
    footer .wrapper #slideTop {
        position: fixed;
        right: 0px;
        bottom: 0px;
        background-color: #086ca8;
        width: 40px;
        height: 40px;
        background-position: center center;
    }
    footer .wrapper .copyright {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        text-align: center;
        font-size: 105%;
        padding-right: 40px;
        margin: 30px 0px 15px 0px;
    }
    section {
        padding: 10px;
    }
    article .wrapper {
        width: 100%;
    }
    section ul.login-menu {
        margin: 0px;
    }
    section form#frm-login {
        margin: 0px 0px 20px 0px;
        padding: 20px;
        width: 100%;
    }
    article h1 {
        margin: 25px 0px 25px 10px;
        font-size: 170%;
    }
    section ul.login-menu a {
        padding: 13px 11px 13px 30px;
    }
    section ul.login-menu a.login {
        margin-right: 2px;
        background-image: none;
        padding: 10px 15px;
    }
    section ul.login-menu a.register {
        margin-left: 2px;
        background-image: none;
        padding: 10px 15px;
    }
    section form#frm-kontaktForm input[type=text],
    section form#frm-kontaktForm input[type=password],
    section form#frm-login input[type=text],
    section form#frm-login input[type=password],
    section form#frm-register input[type=text],
    section form#frm-register input[type=password],
    section form#frm-register select {
        height: 42px;
        width: 100%;
        display: block;
    }
    section form#frm-register {
        margin: 0px 0px 20px 0px;
        width: 100%;
        padding: 20px;
    }
    section form#frm-register ul li {
        margin: 0px 0px 15px 0px;
        display: block;
    }
    section form#frm-register label {
        text-align: left;
    }
    section form#frm-register input[type=submit],
    section form#frm-login input[type=submit]{
        display: block;
        margin: 0px;
        width: 100%;
    }
    article p {
        line-height: 22px;
    }
    section .gray-box {
        padding: 15px;
        margin: 20px 0px;
    }
    section .gray-box p {
        width: auto;
        margin-bottom: 15px;
    }
    section .gray-box a {
        float: none;
        display: block;
        text-align: center;
    }
    section .tabs-menu li {
        display: block;
        margin: 0px;
    }
    section .tabs-menu li a {
        display: block;
        border-radius: 0px;
    }
    section .tabs-menu li a.active {
        background: #08c;
        color: #ffffff;
        border: none;
    }
    section .tabs-content {
        border-radius: 0px;
    }
    section ul.progres li {
        width: 100%;
        display: block;
        margin-bottom: 10px;
    }
    section ul.progres li.arrow {
        display: none;
    }
    section ul.progres li.arrow-big {
        display: none;
    }
    section form#frm-kontaktForm {
        width: 100%;
        padding: 15px;
    }
    section form#frm-kontaktForm ul li {
        width: 100%;
        display: block;
    }
    section form#frm-kontaktForm ul li input[type=text] {
        display: block;
        width: 100%;
    }
    section form#frm-kontaktForm ul li label {
        display: block;
        width: 100%;
        text-align: left;
    }
    section form#frm-kontaktForm ul li select {
        width: 100%;
    }
    section form#frm-kontaktForm ul li textarea {
        width: 100%;
    }
    section form#frm-kontaktForm ul li input[type=submit] {
        margin: 0px;
        display: block;
        width: 100%;    
    }
    ul.faq-temata {
        display: none;
    }
    div.faq-odpovedi {
        float: none;
        width: 100%;
        padding: 0px;
    }
    div.faq-odpovedi h3 {
        margin: 0px 0px 15px 0px;
    }
    div.faq-odpovedi ol {
        margin: 10px;
    }
    section .cenik {
        width: 100%;
        margin: 0px 0px 35px 0px;
    }
    section .cenik-priklad {
        width: 100%;
        margin: 0px 0px 10px 0px;
    }
    section .cenik .kalkulacka-box a {
        width: 100%;
        font-size: 110%;
        height: 80px;
        padding-top: 25px;
        border: none;
    }
    section .cenik .kalkulacka-box p {
        width: 100%;
        margin: 0px;
        text-align: center;
    }
    section .kontakt.email,
    section .kontakt.tel {
        width: 100%;
        margin: 0px 0px 15px 0px;
    }
    section .kontakt-box {
        width: 100%;
        margin: 0px;
    }
    section .kontakt-mapa {
        width: 100%;
        display: block;
        margin: 0px;
    }
    section .kontakt-mapa iframe {
        width: 100%;
        display: block;
    }
    ul.obchody-menu {
        border-radius: 0px;
        height: auto;
    }
    ul.obchody-menu li {
        float: none;
        display: inline-block;
    }
    div#obchod .left,
    div#obchod .right {
        display: block;
        width: 100%;
        float: none;
    }
    #administrace > ul > li {
        width: 100%;
        display: block;
    }
    #schranka-menu {
        height: auto;
        display: none;
    }
    #schranka-menu .wrapper {
        display: block;
        padding: 0;
        width: 100%;
    }
    #administrace > ul > li input[type=text] {
        width: 100%;
    }
    #schranka-menu .title {
        width: 100%;
        height: 45px;
        text-align: center;
        padding: 17px 0px 0px 0px;
        background-position: 10% 5px;
        font-size: 125%;
        margin: 0px;
    }
    #schranka-menu ul {
        width: 100%;
        padding: 0px 10px;
    }
    #schranka-menu ul li {
        width: 49%;
        display: inline-block;
        border: 1px solid #186ea0;
        font-size: 90%;
        margin: 0px 0px 5px 0px;
    }
    #schranka-menu ul li a {
        width: 100%;
        display: block;
        border-radius: 0px;
        padding: 10px 0px;
        font-size: 120%;
    }
    article .wrapper.big {
        width: 100%;
    }
    #schranka-levy,
    #schranka-pravy
    {
        display: block;
        width: 100%;
        padding: 10px;
        margin: 0px 0px 0px 0px;
    }
    #schranka-levy {
        margin-top: 20px;
    }
    #schranka-levy.no-mobile {
        display: none;
    }
    #evidence {
        display: block;
        padding: 5px;
        text-align: center;
        font-size: 110%;
        background-image: none;
        margin: 10px;
    }
    ul.services li {
        display: block;
        width: 100%;
        margin: 0 0 25px 0;
    }
    div.double {
        display: block;
    }
    div.double div.box {
        display: block;
        width: 100%;
        margin: 0 0 35px 0;
        padding: 0;
    }
    div.asist {
        display: block;
        width: 100%;
        margin: 0 0 25px 0;
    }
    section ul.steps li p {
        width: auto;
    }
    #banner {
        padding: 10px 0;
    }
    #banner ul {
        width: 100%;
    }
    #banner ul li {
        margin: 0;
        background: none;
        padding: 0;
    }
    ul.feedback {
    }
    ul.feedback li {
        padding: 10px;
    }
    ul.feedback li div.stars {
        position: relative;
        top: auto;
        right: auto;
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    ul.feedback li div.stars span {
        display: inline-block;
        float: none;
    }



    footer .wrapper .facebook iframe {
        width: 100%;
        overflow: hidden;
    }

}