/* ivn.cz/eshop */
/* přemapování hlavní definice*/
/* definice oblastí stránky */
#hlavni {
    width: 1150px; /* 980px , 1150px*/
    margin: 0 auto;
}
#content { min-height: 450px; }
h1, .h1, h2, .h2, h3, .h3 {
    margin-top: 0px;
    margin-bottom: 10px;
}
h1 { font-size: 2.5rem; }
.txtFrontpageHome img { 
    padding: 10px;
}
.navbar {
    border-bottom: 1px #444444 solid;
}
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
    /* background-color: #444444; */
}
.navbar-default .navbar-toggle .icon-bar {
    /* background-color: #cccccc; */
}

a {
    text-decoration: none;
}


/* zobrazování­ menu kategorií­ v xs/deskotop verzi */
@media (min-width: 0px) and (max-width: 768px) {
    #category-menu {
        display: none;
    }
    h1 {
        font-size: 1.5rem;
        padding-top: 0.5rem;
    }
}
@media (min-width: 768px) {
    #category-menu-xs {
        display: none;
    }
}
/*
.menu-eshop-sm {
    position: absolute;
    display: none;
    position: fixed;
    top: 0;
    height: 50px;
    width: 100%;
    background-color: red;
    z-index: 1030;
    -webkit-transition: 1000; -moz-transition: 1000; transition: 1000;    
}
*/
.breadcrumb {
    background-color: #000000;
    border-radius: 0;
    font-size:85%;
}
.category-menu {
    padding: 1rem 0rem;
}
.row {
    margin: 0 0 2px 0;
}
.list-group {
    margin: 0;
    border-radius: 0;
}
.list-group .list-group-item{
    font-size: 90%;
    /*padding: 0.4rem 0 0 0.5rem;*/
    padding: 0.1rem 0;
    margin: 0;
    border: 0;
}
.list-group a:hover {
    /* 
    background-color: #eeeeee;
    border-bottom: 1px solid #b09a62;
    */
    color: #000000;
    font-weight: bold;
}
.category-active {
    font-weight: bold;
}

.footer {
    color: #888888;
    background-color: #111111;
    font-size: 80%;
    line-height: 150%;
    border-top: 1px #444444 solid;
    margin-top: 4rem;
}
.footer-2 {
    color: #888888;
    font-size: 80%;
    line-height: 150%;
}

.odkaz-product a {color: #000000;}
.priority-color { 
    color: #000000; 
    font-weight: normal; 
}
.katalog {
    float: left;
    width: 220px;
    height: 340px;
    text-align: center;
    font-size: 75%;
}
/*
.category {
    float: left;
    text-align: center;
    font-size: 90%;
}
.category-name {
    position: relative;
    display: block;
    top: -32px;
    width: 100%;
    line-height: 28px;
    padding: 2px 0px 2px 0px;
    color: #ffffff;
    background-color: #111111;
    opacity: 0.7;
    transition: all 0.5s ease 0s;   
}
*/
@font-face {
    font-family: 'Open Sans ExtraBold';
    src: url("/fonts/opensans-extrabold.ttf");
}

.flexbox {
    display: flex;
    flex-wrap: wrap; 
    place-content: center;
}
.category {
    float: left;
    text-align: center;
    padding: 0.5vh;
}
@media (max-width: 768px) {
    .col-xs-12 {
        padding: 0;
    }
    .category {
        margin: 0;
        padding: 0.3vh;
    }
}

/* category */
.category-name {
    position: relative;
    display: block;
    top: -32px;
    width: 100%;
    line-height: 28px;
    padding: 2px 0px 2px 0px;
    color: #ffffff;
    background-color: #111111;
    opacity: 0.7;
    transition: all 0.5s ease 0s;   
}
.category:hover .category-name {
    background-color: #b09a62;
    opacity: 1.0;
    color: #000000;
    font-weight: bold;
    transition: all 0.5s ease 0s;
}

.category a {
    font-weight: normal;
    color: #444444;
}

/* brand */ 
.brand {
    float: left;
    text-align: center;
    font-size: 70%;
    margin-bottom: 1rem;
}
.brand .highlight {
    border:1px solid #111111;
}
.brand .highlight:hover {
    border:1px solid #b09a62;
}
.brand-name {
    position: relative;
    display: block;
    /* top: -40px; */
    width: 100%;
    height: 40px;
    line-height: 18px;
    padding: 2px 0px 2px 0px;
    color: #ffffff;
    background-color: #111111;
    opacity: 0.7;
    transition: all 0.5s ease 0s;   
}
.brand:hover .brand-name {
    background-color: #b09a62;
    opacity: 1.0;
    color: #000000;
    font-weight: bold;
    transition: all 0.5s ease 0s;
}
.brand a {
    font-weight: normal;
    color: #444444;
}
#katalog {
    float: left;
    width: 100%;
}
#katalog h1 {
    padding-bottom: 5px;
}
#katalog-item {
    background-color: #000000;
}
/* loader */
#loader {
    position:fixed;
    top: calc(48%);
    left:calc(48%);
    z-index:550;
    width: 50px;
    aspect-ratio: 1;
    display: grid;
    border: 4px solid #0000;
    border-radius: 50%;
    border-color: #ccc #0000;
    animation: loader 1s infinite linear;
}
#loader::before,
#loader::after {    
    content: "";
    grid-area: 1/1;
    margin: 2px;
    border: inherit;
    border-radius: 50%;
}
#loader::before {
    border-color: #b09a62 #0000;
    animation: inherit; 
    animation-duration: .5s;
    animation-direction: reverse;
}
#loader::after {
    margin: 8px;
}

@keyframes loader { 
    100%{transform: rotate(1turn)}
}

/* animace foto */
.highlight { 
    overflow: hidden; 
}
.highlight img {
    max-width: 100%;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s; /* Firefox */
    -ms-transition: all 0.5s ease 0s; /* IE 9 */
    -o-transition: all 0.5s ease 0s; /* Opera */
    transition: all 0.5s ease 0s;
}
.highlight:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
/* panel koĹˇĂ­ku */
.basket {
    border: 1px #333333 solid;
    /*border-radius: 4px; */
    padding: 10px 20px 5px 20px;
    margin-top: 20px;
}

/* StrĂˇnkovĂˇnĂ­ */
.list-page { text-align: center; width: 90%; padding: 10px 0px 10px 0px;}
.page {
    background-color: #111111;
    background: url("/data/skin/bg-btn-menu.png") repeat left top;
    color: #cccccc;
    font-size: 80%;
    text-align: center;
    width: 20px;
    margin: 2px;
    padding: 2px 2px 2px 2px;
    text-decoration: none;
    border: 1px solid #444444;

}
.page:hover {
    background-color: #444444;
    background: url("/data/skin/bg-btn-menu-hover.png") repeat left top;
    color:#cccccc;
    text-decoration: none;
    cursor: hand;
    cursor: pointer;
}
.page:disabled { background-color: #111111; color: #808080; }
/*  */

/* vĂ˝bÄ›r barvy pod obrĂˇzkem produktu */
#color-select a img {
    border: 0px solid #aaaaaa;
}
/* formulare */
.form { padding: 2px; }

.form-control {
    font-weight: bold;
}
.form-control:focus {
    /* outline: 0;
    /*
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
    box-shadow: inset 0 0px 1px rgba(0,0,0,.075), 0 0 0px rgba(102, 175, 233, 0.6); 
    */
}
.form-control:read-only {
    font-weight: bold;
}
.input-group-text {
    font-weight: bold;
}

.quantity {
    padding: 1rem;
    border: 1px #b09a62 solid;
    background-color: #fafafa;
    color: #000000;
    font-weight: bold;
    border-radius: 2px;
}

.btn-form, .btn-form:focus { 
    background-color: #111111; 
    border: solid #b09a62 1px;
    /* 
     background-image: linear-gradient(top, #e4c224 0%, #af7407 100%);
     background-image: -o-linear-gradient(top, #e4c224 0%, #af7407 100%);
     background-image: -moz-linear-gradient(top, #e4c224 0%, #af7407 100%);
     background-image: -webkit-linear-gradient(top, #e4c224 0%, #af7407 100%);
     background-image: -ms-linear-gradient(top, #e4c224 0%, #af7407 100%);
     background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #e4c224), color-stop(1, #af7407));
    */
    background-position: center bottom;
    cursor: hand; cursor: pointer;
    font-weight: normal;
    padding: 6px;
    color: #b09a62;
    border-radius: 0px;
}
.btn-form:hover { 
    background-color: #b09a62; 
    border: 1px solid #b09a62; 
    color:#000000; 
    /* 
     text-decoration: none;
     background-image: linear-gradient(top, #af7407 0%, #e4c224 100%);
     background-image: -o-linear-gradient(top, #af7407 0%, #e4c224 100%);
     background-image: -moz-linear-gradient(top, #af7407 0%, #e4c224 100%);
     background-image: -webkit-linear-gradient(top, #af7407 0%, #e4c224 100%);
     background-image: -ms-linear-gradient(top, #af7407 0%, #e4c224 100%);
     background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #af7407), color-stop(1, #e4c224));
    */
    background-position: center bottom;
    cursor: hand; cursor: pointer;
}
.btn-form:disabled {
    border: 1px solid #b0a5a0; 
    background-image: none;
    background-color: #b0a5a0;
    color: #555555;
}

/* select pomoci radio button */
/*
.btn-radio { }
.btn {
    float: left;
    display: inline;
    list-style-type: none;
    text-align: center;
    color: #cccccc;
    background-color: #111111;
    padding: 3px 6px;
    margin: 3px;
    border: 1px solid #cccccc;
    cursor: hand; cursor: pointer;
    border-radius: 0px;
}
.btn:hover {
    color: #ffffff;
    border: 2px solid #ffffff;
    box-shadow: 0px 0px 5px 2px #ffffff !important;
}
.btn-circle {
    float: left;
    display: inline;
    list-style-type: none;
    text-align: center;
    padding: 0px;
    margin: 3px;
    cursor: hand; cursor: pointer;
    border-radius: 50%;
}
/*
.active, .active:hover {
    border: 2px solid #b09a62;
    box-shadow: 0px 0px 5px 2px #b0a5a0 !important;
    background-color: rgb(176,154,98,0.25);
    font-weight: bold;
}
.carousel-indicators .active {
    border: none;
}
*/

/* tlačítka selectu*/
.btn-div {
    border: 1px #b09a62 solid;
    padding: 8px;
    margin: 0px 10px 10px 0px;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out
}
.btn-div:hover {
    background-color: #dddddd;
    border-width: 2px;
    cursor: hand;
    cursor: pointer;
}
.btn-selected {
    /* background-color: #000000; /* #d5bd94 */
    border-width: 4px;
    padding: 5px;
    border-color: #b09a62;
    /* box-shadow: 0px 0px 5px 2px #b0a5a0 !important; */
}

.btn-border-weight {
    border-width: 4px;
}
.btn-outline-gold {
    border-color: #b09a62;
    border-radius: 2px;
    margin-right: 6px;
    margin-bottom: 8px;
    padding: 4px;
    width: 55px;
    height: 55px;
    font-weight: bold;
    line-height: 42px;
}
.btn-outline-gold:hover {
    border-color: #b09a62;
    background-color: #dddddd;
    border-width: 2px;
}
.btn-outline-gold img {
    width: 100%;
    height: 100%;
    border: 0;
}
.btn-outline-line {
    border-color: #b09a62;
    border-radius: 2px;
    margin-right: 6px;
    margin-bottom: 8px;
    padding: 4px 12px !important;
    width: auto;
    height: 55px;
    font-weight: bold;
    line-height: 42px;
}
.btn-outline-line:hover, .btn-outline-line:focus {
    background-color: #dddddd;
    border-color: #b09a62;
}
.btn-submit-gold {
    border-color: #b09a62;
    background-color: #eeeeee;
    border-width: 2px;
    border-radius: 2px;
    margin-right: 6px;
    margin-bottom: 8px;
    padding: 4px 8px;
    width: auto;
    height: 55px;
    font-weight: bold;
    line-height: 42px;
}
.btn-submit-gold:hover, .btn-submit-gold:focus {
    border-color: #b09a62;
    background-color: #dddddd;
    border-width: 3px;
}

.btn-submit-gray {
    border-color: #aaaaaa;
    background-color: #f5f5f5;
    border-width: 2px;
    border-radius: 2px;
    margin-right: 6px;
    margin-bottom: 8px;
    padding: 0px 8px;
    width: auto;
    height: 55px;
    font-weight: bold;
    line-height: 42px;
}
.btn-submit-gray:hover, .btn-submit-gray:focus {
    border-color: #aaaaaa;
    background-color: #aaaaaa;
}

.item-active {
    border-width: 4px; /* zvýraznění vybrané položky */
    padding: 1px;
}

/* odkaz najít moji velikost */
.btn-size {
    text-decoration: underline;
    color: #000000;
}
.btn-size:hover {
    color: #b09a62;
}

/* plovoucí box polozky, zarovnany nalevo */
.item {
    margin-bottom: 1rem; 
    padding: 0 0.2rem 0 0.2rem;
    /* 
    border-radius: 2px; 
    */
}
@media (max-width: 768px) {
    .item {
        /* border: 1px solid #eeeeee;    */
    }
}
.item:hover {
    /*
    border: 1px solid #cccccc;
    -webkit-box-shadow: 0px 0px 3px 3px rgba(0,0,0,0.20);
    -moz-box-shadow: 0px 0px 3px 3px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 3px 3px rgba(0,0,0,0.2);
    */
}
.item-colors {
    overflow: hidden;
    line-height: 0.8rem;
}
.item-color {
    margin: 0 1px 0 0;
}
.item-color img {
    width: 0.8rem;
    height: 0.8rem;
    margin: 0 0.04rem 0 0;
    border-radius: 0.8rem;
    border: 1px solid #666666;

}
.item-title {
    height: 1.2rem; 
    word-wrap: break-word; 
    text-align: left; 
    overflow: hidden; 
    font-size: 82%; 
    white-space: nowrap;
    padding-top: 0.2rem; 
}
.item-description {
    z-index: 800;
    position: relative;
    display: block;
    top: -225px;
    font-size: 80%; padding: 5px; text-align: left;
    overflow: hidden;
    padding: 2px 2px 2px 2px;
    color: #cccccc;
    background-color: #111111;
    opacity: 0.8;
}
.item-title a { text-decoration: none; color:#000000; }
.item-photo	{ text-align: center; padding-top: 2rem; }
.item-photo:hover { padding-top: 1rem; padding-bottom: 1rem; animation: 800; } 
.item-price	{ overflow: hidden; color: #000000; }
.item-price-money { float:right; text-align: right; font-size: 75%; padding-top: 0.25rem; padding-right: 0.4rem !important; }
.item-code { float: right; font-size: 75%;}
.item-price-btn { float: right; padding:5px 0px 0px 0px; font-size: 85%; width: 70px; text-align: right; }

input, textarea, select { width: auto; }

#photo-color img { border: 1px solid #888888;}
#product-info { }

.product-specification { font-size: 80%; }
.product-price { font-size: 80%; }
.price { font-size: 150%; font-weight: bold; color: #000000; }
.price-vat { font-size: 125%; font-weight: normal; color: #000000;  }
#product-symbol img { padding: 0px; margin: 2px; }
#global-code { display:none; color: #555555; }

.line-top { 
    border-top: 1px rgb(0,0,0,0.2) solid; 
}
.line-bottom { 
    margin-top: 1rem;
    border-bottom: 1px rgb(0,0,0,0.2) solid; 
}
.product-tip { z-index: 700; height: 187px; float: left; width: 125px; margin: 0px 10px 10px 0px;}
.tip-name {
    z-index: 800;
    position: relative;
    display: block;
    top: -187px;
    min-height: 10px;
    font-size: 80%; padding: 5px; text-align: left;
    overflow: hidden;
    padding: 2px 2px 2px 2px;
    color: #ffffff;
    background-color: #111111;
    opacity: 0.8;
}

#basket { width: 696px; }


#foto-lupa {
    height: 28px;
    padding: 0px 0px 5px 20px;
    margin: 0px 5px 0px 0px;
    background: url("/data/img/lens.png") no-repeat left top;

}
#foto-produktu a {
    color: #000000;
    text-decoration:underline;
    font-weight:  normal;
}
#foto-produktu a:hover {
    text-decoration:none;
}
#popis-produktu {
    float: left;
    width: 500px;
    min-height: 120px;
    text-align: justify;
    margin: 0px 0px 0px 0px;
}
#technicka-specifikace { /* tabulka technicke spefifikace na kartÄ› produktu*/
    float: right;
    width: 200px;
    color: #000000;
    margin: 0px 0px 5px 5px;
    font-size: 90%;
    border: 1px solid #b0a5a0;
}
#technicka-specifikace tr {
    background-color: #dddddd;
}
#parametry-produktu {
    float: left;
    width: 285px;
    min-height: 60px;
    text-align: justify;
    margin: 0px 0px 0px 0px;
}
#nadpis-parametry-produktu  {
    text-align: center;
    font-weight: bold;
    padding: 5px 0px 5px 0px;
    background-color: #dddddd;
}
/* okno nĂˇpovÄ›dy u produktu */
.parametr {
    float: left;
    position: relative;
    width:100%;
    z-index: 51;
}
.napoveda {
    display:none;
    position: absolute;
    z-index:99999;
    color:#000000;
    background-color: #ffffff;
    font-size: 90%;
    text-align:left;
    padding: 5px 5px 5px 5px;
    border: 1px dotted #888888;
}

#odesilaci-lista {
    width:100%;
    float: left;
    margin: 10px 0px 0px 0px;
}
#cena-produktu { /* cena a poÄŤet mj - odeslĂˇnĂ­*/
    float: right;
    text-align: center;
    width: 200px;
    color: #000000;
    margin: 0px 0px 10px 10px;
}
#cena-produktu  span {
    font-size: 150%;
    font-weight: bold;
}
#pocet-produktu {
    width: 500px;
    text-align: center;
    /*	background: yellow;
            opacity: 0.5;*/
}

/*  plovoucĂ­ box koĹˇĂ­ku, zarovnany nalevo */
.basket-head { float: left; width: 700px; color: #cccccc; text-align: center; margin:3px; padding: 3px;
               background-color: #000000; }
.basket-item { float: left; width: 700px; min-height: 80px; color: #cccccc; margin: 3px; padding: 3px; border-bottom: 1px dotted #cccccc; }
.basket-summary { float: left; width: 700px; min-height: 40px; color: #cccccc; margin: 3px; padding: 3px; border-bottom: 1px dotted #cccccc;}
.basket-item-foto { float: left; width: 86px; text-align: center; }
.basket-item-foto  img { padding: 0px; }
.basket-item-text{ float: left; width:280px; margin-left:3px; text-align: left; }
.basket-item-kusu{ float: left; width:80px; margin-left:3px; text-align: center; }
.basket-item-cena{ float: left; width:100px; margin-left:3px; text-align: right; }
.basket-item-celkem{ float: left; width:100px; margin-left:3px; text-align: right; }
.basket-item-delete{ float: left; width:26px; margin-left:3px; text-align: center; }


.tbl-vat { border-collapse: collapse; font-size: 80%; border:1px solid #000000; }
.tbl-vat td{ padding: 3px; border:1px solid #000000; }


#obsah-text { /* doplnÄ›ni k base.css */
    background-color: #ffffff;
    color: #333333;
    width: 710px;
    _height: 340px;
    min-height:340px;
    padding: 0px 10px 0px 10px;
    margin: 0px 10px 20px 10px;
}

#obsah-text h1, #obsah-text h2 { font-size: 150%; color: #333333; }
.w20 { width: 20px; }

.btn-basket  { padding: 0px 15px 0px 15px; height: 30px; line-height:30px; font-size: 1.2em; }
.btn-navig { text-align: center; width: 200px; line-height: 30px; font-size: 1em;}
.btn-navig a { color:#000000; display: block; width:200px; line-height:30px; text-decoration: none;}
/* .pokracovat { float: right; text-align: center; 	width: 200px; height: 30px; line-height: 30px;}
.pokracovat a { color:000000; display: block; width:200px; height:30px; text-decoration: none;}
*/
/* .odkaz-text a {
        color: #cccccc;
}
.odkaz-text a:hover {
        color: #f17919;
        text-decoration:none;
} */
#order {
    text-align: center;
    padding: 10px 10px 10px 10px;
}

/* navigace v produktech a košíku */
/*
#navig {
    height: 36px;
    line-height: 36px;
}
*/

/* navigace v objednávce */
/* navigace objednávkou */
.ordernav {
    min-height: 4rem;
    line-height: 4rem;
    background-color: #fafafa;
    border: 1px solid #cccccc;
    text-align: center;
    margin-top: 1rem;
}
@media (min-width: 0px) and (max-width: 768px) {
    .ordernav {
        font-size: 80%;
        line-height: 1rem;
        min-height: 3rem;
        padding-top: 0.4rem;
    }
}

.order {
    background-color: #111111;
    border: 1px solid #444444;
}
.order-active {
    border: 1px solid #b09a62;
    border-bottom: 4px solid #b09a62;
    color:#000000;
    text-decoration: none;
    background-color: #fafafa;
    /*
    background-image: linear-gradient(top, #444444 0%, #111111 100%);
    background-image: -o-linear-gradient(top, #444444 0%, #111111 100%);
    background-image: -moz-linear-gradient(top, #444444 0%, #111111 100%);
    background-image: -webkit-linear-gradient(top, #444444 0%, #111111 100%);
    background-image: -ms-linear-gradient(top, #444444 0%, #111111 100%);
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #444444), color-stop(1, #111111));
    background-position: center bottom;
    */
}
/* === */
.order-active a {color: #000000;}
/*  plovoucĂ­ boxy objednĂˇvky, zarovnany nalevo */
.order-item-payment {
    float: left;
    width:330px;
    margin-left:3px;
    text-align: left;
}
.order-item-shipping {
    float: left;
    width:330px;
    margin-left:3px;
    text-align: left;
}
.error_msg {
    padding: 5px 5px 5px 5px;
    text-align: left;
    font-size: 90%;
    font-weight: bold;
    color: #dc3545;
    /* border: 1px dotted #ff0000;*/
    /* background-color: #ffdddd; */
}

/* rolovĂˇnĂ­ nahoru */
.back-top {
    display: none;
    position: fixed;
    bottom: 30px;
    margin-left: 89%;
    padding: 2px;
    background-color: #111111;
    /* border: 1px solid #b09a62;*/
    /* zpomalovĂˇnĂ­ */ 
    -webkit-transition: 1000; -moz-transition: 1000; transition: 1000;

}
.back-top:hover { background-color: #444444; }
.back-top a { width: 28px; display: block; text-align: center; -webkit-transition: 1000; -moz-transition: 1000; transition: 1000; }
.back-top span { width: 28px; height: 28px; display: block; background: url("/data/skin/up-arrow.png") no-repeat center center; }

.popis-dopravy a {color: #000000;}
.bold, .bold a { font-weight: bold; }
.left { text-align: left;}
.right { text-align: right; }
.center { text-align: center; }
.red { color: #fcb55f; }
.br { margin-bottom: 1rem; }

.b1 { background-color: red; }
.b2 { background-color: yellow; }
.b3 { background-color: greenyellow; }
.b4 { background-color: blue; }