/* fonts */
@font-face {
  font-family: 'PT Sans';
  src: url('../template/fonts/PT_Sans-Web-Regular.woff');
}

@font-face {
  font-family: 'PT Sans';
  src: url('../template/fonts/PT_Sans-Web-Bold.woff');
  font-weight: bold;
}

@font-face {
  font-family: 'Oswald';
  src: url('../template/fonts/Oswald-Regular.woff');
}

@font-face {
  font-family: 'Oswald';
  src: url('../template/fonts/Oswald-Bold.woff');
  font-weight: bold;
}

@font-face {
  font-family: 'Oswald';
  src: url('../template/fonts/Oswald-SemiBold.woff');
  font-weight: 600;
}

/* general */
html {
  font-size: 100%;
  font-family: 'PT Sans', sans-serif;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

body {
  text-align: center;
  margin: 0px;
  background-color: #f9f9f9;
}

body>* {
  text-align: left;
}


h1,
h2,
h3,
.header nav a,
#lng_select a {
  font-family: 'Oswald', sans-serif;
}


#lng_select {
  position: absolute;
  top: 0px;
  right: 20px;
  height: 90px;
  line-height: 90px;
}

#lng_select>a {
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
  padding: 0 10px;
}

#lng_select>a:hover p {
  color: white;
}

#lng_select>a:hover p.selected {
  color: #737373;
}

#lng_select>a>* {
  display: block;
}

#lng_select p {
  margin: 0;
  height: 1.8rem;
  line-height: 1.8rem;
  font-size: 0.9rem;
  color: #737373;
}

#lng_select p.selected {
  color: white;
}

#lng_select span {
  width: 100%;
  height: 2px;
  background: #737373;
}

.header,
main,
#footer,
#mark_list>div {
  width: 100%;
  max-width: 1400px;
}


button,
input[type="submit"],
input[type="reset"] {
  cursor: pointer;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 1px;
  padding: 13px 45px;
  background: #1c1c1c;
  border-width: 1px;
  border-style: solid;
  border-color: #333333;
}

button:hover,
input[type="submit"]:hover {
  background: black;
}

input,
optgroup,
select,
textarea {
  background-color: white;
  border: 1px solid #cccccc;
  padding: 16px 16px;
  font-family: 'PT Sans', sans-serif;
  font-size: 0.9rem;
}


select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

select::-ms-expand {
  display: none;
  /* hide the default arrow in ie10 and ie11 */
}

select option {
  padding: 16px 16px;
  font-family: 'PT Sans', sans-serif;
  font-size: 0.9rem;
}

.select_wrap {
  position: relative;
  display: inline-block;
}

.select_wrap:after {
  content: "\276E";
  font-family: 'PT Sans', sans-serif;
  font-size: 1rem;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}


.custom_checkbox {
  display: inline-block;
  cursor: pointer;
}

.custom_checkbox:hover .label {
  color: black;
}

.custom_checkbox .checkbox {
  display: inline-flex;
  align-items: center;
  width: 28px;
  height: 15px;
  border-radius: 8px;
  border: 1px solid #737373;
}

.custom_checkbox .checkbox>div {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  margin: 0 1px;
  background-color: #737373;
}

.custom_checkbox .checkbox.active {
  border-color: #29C32D;
  background-color: #29C32D;
  justify-content: flex-end;
}

.custom_checkbox .checkbox.active>div {
  background-color: white;
}

.custom_checkbox .label {
  font-size: 0.8rem;
  color: #737373;
  display: inline-block;
  padding-left: 5px;
  margin-right: 1rem;
}

.custom_checkbox.big .checkbox {
  width: 40px;
  height: 22px;
  border-radius: 11px;
  border-color: #cccccc;
  background-color: #cccccc;
}

.custom_checkbox.big .checkbox>div {
  width: 18px;
  height: 18px;
  border-radius: 10px;
  margin: 0 1px;
  background-color: white;
}

.custom_checkbox.big .checkbox.active {
  border-color: #29C32D;
  background-color: #29C32D;
}

.custom_checkbox.big .checkbox.active>div {
  background-color: white;
}

.custom_link {
  color: black;
  cursor: pointer;
  font-size: 0.9rem;
}

.big_links {
  display: flex;
  align-items: center;
}

.big_links>a {
  flex-basis: 100%;
  height: 150px;
  line-height: 150px;
  padding-left: 30px;
  text-decoration: none;
  font-size: 1.2rem;
  font-family: oswald;
  box-sizing: border-box;
  margin-right: 20px;
  background-color: #e8e8e8;
}

.big_links>a:hover {
  background-color: black;
  color: white;
}

.servisLinks .big_links a {
  margin: 20px;
}


/*        */
/* header */
/*        */

header {
  display: block;
  height: 90px;
  background: #1c1c1c;
  text-align: center;
}

.header {
  height: 100%;
  font-size: 0px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header>* {
  font-size: 1rem;
  display: inline-block;
  vertical-align: middle;
}

.header .logo {
  height: 75px;
  vertical-align: middle;
}

.header nav {
  height: 90px;
  vertical-align: middle;
  margin-right: 1%;
  color: #737373;
}

.header nav a {
  color: inherit;
  line-height: 90px;
  font-size: 0.9rem;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  padding: 0px 14px;

  -webkit-transition: color .6s, background-color .6s;
  -moz-transition: color .6s, background-color .6s;
  -o-transition: color .6s, background-color .6s;
  transition: color .6s, background-color .6s;
}

.header nav a:hover {
  background: black;
  color: white;
  -webkit-transition: color .2s, background-color .2s;
  -moz-transition: color .2s, background-color .2s;
  -o-transition: color .2s, background-color .2s;
  transition: color .2s, background-color 0.2s;
}


#prihlasovaci_formular_wrap {
  position: relative;
}

#prihlasovaci_formular {
  display: none;
  position: absolute;
  top: -15px;
  right: -15px;
  z-index: 9999;
  padding: 30px 20px;
  background-color: #e8e8e8;
  -webkit-box-shadow: 0px 9px 20px -10px rgba(0, 0, 0, 0.8);
  -moz-box-shadow: 0px 9px 20px -10px rgba(0, 0, 0, 0.8);
  box-shadow: 0px 9px 20px -10px rgba(0, 0, 0, 0.8);
}

#prihlasovaci_formular.error {
  display: block;
}

#prihlasovaci_formular .info {
  min-height: 30px;
  line-height: 30px;
  font-size: 0.8rem;
}

#prihlasovaci_formular input[name="phone"] {
  display: none;
}

#prihlasovaci_formular .zabudbute_heslo_button {
  display: inline-block;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
  font-size: .8rem;
  letter-spacing: 1px;
  padding: 13px 0px;
  background: #1c1c1c;
  border-width: 1px;
  border-style: solid;
  width: 150px !important;
  border-color: #333;
  position: relative;
  right: 2px;
}

#odhlasovaci_formular_wrap {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 1px;
}

#odhlasovaci_formular_wrap>div {
  display: inline-block;
  vertical-align: middle;
}

#odhlasovaci_formular_wrap>div.login {
  font-size: 0.8rem;
  padding: 0px;
  min-width: 80px;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#odhlasovaci_formular_wrap>div.login a {
  color: white;
}

#odhlasovaci_formular_wrap button {
  display: inline-block;
  line-height: 100%;
  padding: 13px 8px;
}

#odhlasovaci_formular_wrap button>span {
  background: url("../template/icons/account-logout.svg") no-repeat top left;
  background-size: 0.8rem;
  display: inline-block;
  height: 0.8rem;
  width: 0.8rem;
  vertical-align: middle;
  -webkit-filter: invert(100%);
  filter: invert(100%);
}

.header .shopping_card {
  position: relative;
  padding: 20px 0px;
  width: 170px;
}

.header .shopping_card img {
  display: inline-block;
  height: 25px;
  position: relative;
  right: -10px;
}

.header .shopping_card .value {
  display: inline-block;
}

.header .shopping_card .value span:nth-of-type(1) {
  border-radius: 50%;
  color: white;
  position: relative;
  left: -7px;
  top: -1px;
  display: inline-block;
  width: 15px;
  height: 15px;
  font-size: 0.61rem;
  padding: 2px;
}

.header .shopping_card .value span:nth-of-type(2) {
  position: relative;
  top: -5px;
  color: white;
  font-size: 1.25rem;
}

.header .shopping_card .value span:nth-of-type(3) {
  color: white;
  content: "€";
  position: relative;
  font-size: 0.68rem;
  top: -12px;
  left: -3px;
}

.header .shopping_card #mini_kosik_header {
  position: absolute;
  background: #e8e8e8;
  border: 3px solid #cccccc;
  width: 536px;
  top: 60px;
  z-index: 2;
  left: -160px;
  box-sizing: border-box;
  padding: 5px 0px;
  display: none;
}

.header .shopping_card .kosik_before {
  position: absolute;
  right: 80px;
  top: 53px;
  display: none;
}

.header .shopping_card .kosik_before .kosik_graf_element {
  width: 20px;
  height: 20px;
  transform: rotate(45deg);
  display: inline-block;
  background: #ccc;
}

.header .shopping_card #mini_kosik_header .polozka {
  display: inline-block;
  width: 530px;
  text-decoration: none;
  padding: 3px 0px;
}

.header .shopping_card #mini_kosik_header .polozka:first-child {
  font-weight: bold;
}

.header .shopping_card #mini_kosik_header .polozka .nazov {
  width: 130px;
  display: inline-block;
  text-decoration: none;
  color: black;
  cursor: pointer;
}

.header .shopping_card #mini_kosik_header .polozka .cena {
  width: 90px;
  display: inline-block;
}

.header .shopping_card #mini_kosik_header .polozka .kusy {
  width: 85px;
  display: inline-block;
}

.header .shopping_card #mini_kosik_header .polozka .cena_kusy {
  width: 90px;
  display: inline-block;
}

.delete_item {
  width: 20px;
  display: inline-block;
  background: black;
  color: #eeeeee;
  font-size: 15px;
  line-height: 20px;
  cursor: pointer;
}

.header .shopping_card #mini_kosik_header .header_kosik_button {
  color: white;
  width: unset;
  display: inline-block;
  float: right;
  margin: 10px 3px -2px 3px;
  text-decoration: none;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 1px;
  padding: 13px 45px;
  background: #1c1c1c;
  border-width: 1px;
  border-style: solid;
  border-color: #333333;
}

.pocet_form_custom {
  display: inline-block;
  position: relative;
}

.pocet_form_custom input {
  display: inline-block;
  width: 80px;
  padding: 10px;
}

.pocet_form_custom button {
  display: inline-block;
  width: 30px;
  height: 50%;
  padding: 0px;
  position: absolute;
  right: 0px;
}

.pocet_form_custom .pridaj_kus {
  top: 0px;
}

.pocet_form_custom .uber_kus {
  bottom: 0px;
}

.heading_wrap {
  background: linear-gradient(to bottom, #1c1c1c 0%, #1c1c1c 50%, white 50%, white 100%);
}

.heading {
  max-width: 2000px;
  width: 100%;
  max-height: 90px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 0 15px;
  box-sizing: border-box;
}

.heading .image {
  width: 100%;
  max-height: 90px;
  text-align: center;
  background-color: black;
}

.heading .image img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  margin: 0 auto;
}

.heading .text {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  padding-left: 15%;
}

.heading .text .elem {
  font-family: 'Oswald', sans-serif;
  color: #f9f9f9;
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: bold;
  text-shadow: 1px 2px 1px black;
}

/* Uprava 16.4.2024 */
.vyrobca .top {
  width: 100%;
}

.vyrobca .top img {
  width: 30%;
  float: left;
  margin-right: 3rem;
  margin-bottom: 1rem;
}

/* **************** */


/*           */
/* slideshow */
/*           */

.slideshow_wrap {
  background: linear-gradient(to bottom, #1c1c1c 0%, #1c1c1c 50%, white 50%, white 100%);
}

.slideshow {
  max-width: 2000px;
  width: 100%;
  max-height: 650px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 0 15px;
  box-sizing: border-box;
}

.slideshow .slides {
  background-color: black;
}

.slideshow .slide {
  display: block;
  opacity: 0;
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 32.5%;
  text-align: center;
  background-color: black;
}

.slideshow .slide.active {
  opacity: 1;
  transition: opacity 0.5s;
}

.slideshow .slide img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}


.control_wrap {
  position: absolute;
  right: 15px;
  bottom: 0;
}

.control_wrap .control {
  color: white;
  background-color: black;
}

.control_wrap .control>div {
  display: inline-block;
}

.control_wrap .button {
  cursor: pointer;
  padding: 16px 10px;
}

.control_wrap .button.left {
  padding-left: 17px;
}

.control_wrap .button.right {
  padding-right: 17px;
}

.control_wrap span {
  vertical-align: middle;
}

.control_wrap span.active,
.control_wrap span.total {
  font-size: 0.8rem;
}


.get_more {
  display: inline-block;
  position: relative;
  border: 1px solid;
  cursor: pointer;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 1px;
  padding: 11px 75px 11px 35px;

}

.get_more_shadow {
  text-shadow: 0px 0px 40px black;
}

.get_more .arrow {
  color: white;
  font-size: 1rem;
  text-align: center;
  display: inline-block;
  line-height: 35px;
  width: 40px;
  position: absolute;
  right: -1px;
  top: -1px;
  bottom: -1px;
}

.get_more.highlighted_black {
  color: #1c1c1c;
  padding: 11px 35px 11px 75px;
}

.get_more.highlighted_black .arrow {
  right: unset;
  left: -1px;
  color: white;
}

/*         */
/* sidebar */
/*         */

main {
  margin: 0 auto;
}

main .nav_kat,
#mark_list .text {
  float: left;
  width: 300px;
}

main .nav_kat {
  /*margin-bottom: 60px;*/
}

main .nav_kat>div {
  background-color: #e8e8e8;
}

/*  main .nav_kat ul li:not(:last-child){
    border-bottom: 1px solid #cccccc;
  }*/

main .nav_kat>div>p {
  padding: 33px 8% 10px 8%;
  margin: 0;
  font-size: 1.2rem;
  color: black;
  font-family: 'Oswald', sans-serif;
}

main .nav_kat .fb_wrap {
  box-sizing: border-box;
  padding: 4%;
  min-height: 675px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}


.finder {
  display: flex;
  padding: 0 8%;
}

.finder input[type="text"] {
  width: 228px;
}

.finder button {
  padding: 10px 13px;
}

.finder button img {
  width: 20px;
  height: 20px;
}

.main .popis {
  padding: 2rem 4rem 0 4rem;
  font-size: 0.9rem;
  text-align: justify;
  line-height: 1.5;
}


/*                */
/* menu kategorii */
/*                */

.category {
  width: 100%;
  list-style: none;
  padding: 0px;
}

/*.category:not(.depth_0) {display: none;}*/

.category li.wrap {}

.category li a {
  position: relative;
  color: black;
  /*font-weight: bold;*/
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  text-overflow: ellipsis;
  cursor: pointer;
}

.category.depth_0>li>a {
  /*font-weight: bold;*/
}

/*.category li a:hover {text-decoration: underline;}*/

.category li a {
  padding: 17px 40px 17px 10px;
  display: inline-block;
  width: 100%;
}

.category li a .counter {
  font-size: 0.8rem;
  position: absolute;
  display: flex;
  align-items: center;
  top: 0;
  right: 20px;
  bottom: 0;
  color: #737373;
}

.category li.selected {
  background-color: #cccccc;
  /*font-weight: bold;*/
}

.category li.selected+.ulwrap {
  background-color: #cccccc;
}


.category {
  font-size: 1rem;
}

.category.depth_0 {
  margin: 0;
  padding: 1rem 0;
}

/*  .category.depth_1 {font-size: 0.9rem;}
  .category.depth_2 {font-size: 0.9rem;}
  .category.depth_3 {font-size: 0.9rem;}
  .category.depth_4 {font-size: 0.9rem;}*/

.category>li {
  padding: 0;
  display: flex;
  align-items: center;
}

.category>li>.unwrap {
  margin-left: 70px;
}

.category.depth_0>li>.unwrap {
  margin-left: 10px;
}

.category.depth_1>li>.unwrap {
  margin-left: 25px;
}

.category.depth_2>li>.unwrap {
  margin-left: 45px;
}

.category.depth_3>li>.unwrap {
  margin-left: 60px;
}

.category.depth_4>li>.unwrap {
  margin-left: 70px;
}

.category>li:not(.wrap)>a {
  padding-left: 110px;
}

.category.depth_0>li:not(.wrap)>a {
  padding-left: 50px;
}

.category.depth_1>li:not(.wrap)>a {
  padding-left: 65px;
}

.category.depth_2>li:not(.wrap)>a {
  padding-left: 85px;
}

.category.depth_3>li:not(.wrap)>a {
  padding-left: 100px;
}

.category.depth_4>li:not(.wrap)>a {
  padding-left: 110px;
}


/*.category.depth_0>li:not(:last-of-type) {border-bottom: 1px solid #cccccc;}*/
.category.depth_0>li:not(.active) {
  border-bottom: 1px solid #cccccc;
}

.category.depth_0>li:last-of-type {
  border-bottom: none;
}

.category li:not(.ulwrap) {
  -webkit-transition: color .6s, background-color .6s;
  -moz-transition: color .6s, background-color .6s;
  -o-transition: color .6s, background-color .6s;
  transition: color .6s, background-color .6s;
}

.category li:not(.ulwrap):hover {
  background-color: white !important;
  -webkit-transition: color .2s, background-color .2s;
  -moz-transition: color .2s, background-color .2s;
  -o-transition: color .2s, background-color .2s;
  transition: color .2s, background-color 0.2s;
}

/*  .category:not(.depth_0)>li.wrap:hover {background-color: #a8a8a8 !important;}
  .category>li.wrap.active{background-color: #b3b3b3;}
  .category>li.wrap.active+.ulwrap {background-color: #b3b3b3;}
  .category.depth_0>li.wrap.active{background-color: #cccccc;}
  .category.depth_0>li.wrap.active+.ulwrap {background-color: #cccccc;}*/

/*.category li:not(.wrap) {padding-top: 0; padding-bottom: 0;}*/
.category li>.unwrap {
  display: inline-block;
  flex: 0 0 30px;
  text-align: center;
}

.category li.wrap>.unwrap {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.category li.wrap.active>.unwrap {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.category li.ulwrap {
  display: none;
  padding: 0;
}

.category li.ulwrap.visible {
  display: list-item;
  /* docasna classa pri vygenerovani; kategorie sa rozbaluju cez jquery*/
}

#fb_page {
  padding: 10%;
}



/*                 */
/* filter vyrobcov */
/*                 */

#vyrobcovia_filter_wrap {
  padding: 0 8%;
}

#vyrobcovia_filter {
  position: relative;
}

#vyrobcovia_filter .option {
  min-height: 50px;
  font-size: 0.9rem;
  border: 1px solid #cccccc;
  cursor: pointer;
  border-top: none;
  border-bottom: none;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 16px;
}

#vyrobcovia_filter .current {
  background-color: white;
  border: 1px solid #cccccc;
}

#vyrobcovia_filter .current .arrow {
  -webkit-transform: rotate(-90deg);
  transform: rotate-(90deg);
  font-size: 1rem;
}

#vyrobcovia_filter .current .image img {
  vertical-align: middle;
  max-width: 100%;
  max-height: 30px;
}

#vyrobcovia_filter .options .option:last-child {
  border-bottom: 1px solid #cccccc;
}

/*  #vyrobcovia_filter .option {padding: 2px 16px;}
  #vyrobcovia_filter .option.noimage{padding: 16px 16px;}*/
#vyrobcovia_filter .options .option.selected {
  background-color: #e8e8e8;
}

#vyrobcovia_filter .options:hover .option {
  background-color: white;
}

#vyrobcovia_filter .options .option:hover {
  background-color: #e8e8e8 !important;
}

#vyrobcovia_filter .option .text {
  display: inline-block;
  width: 50%;
  text-align: left;
  vertical-align: middle;
}

#vyrobcovia_filter .option .image {
  display: inline-block;
  width: 50%;
  text-align: center;
}

#vyrobcovia_filter .options .option img {
  vertical-align: middle;
  max-width: 100%;
  max-height: 30px;
}

#vyrobcovia_filter .options {
  display: none;
  position: absolute;
  width: 100%;
  z-index: 9999;
  max-height: 350px;
  overflow-y: auto;
  -webkit-box-shadow: 0px 9px 20px -10px rgba(0, 0, 0, 0.8);
  -moz-box-shadow: 0px 9px 20px -10px rgba(0, 0, 0, 0.8);
  box-shadow: 0px 9px 20px -10px rgba(0, 0, 0, 0.8);
}

/* main */


main>#content {
  overflow: hidden;
}

.main {
  width: 100%;
  padding: 2.5rem 0 4rem 2.5rem;
}

.main h1 {
  /*text-transform: uppercase;*/
  font-size: 3rem;
  font-weight: normal;
  margin-top: 0;
}

.main>h1 {
  font-size: 2.2em;
  font-weight: normal;
  color: black;
}

.main>h1#news_h1_uvod {
  font-size: 3.5em;
  font-weight: bold;
  text-transform: uppercase;
  color: #d9d9d9;
}



/*         */
/* novinky */
/*         */

/* head news*/

.main #head_new {
  display: block;
  width: calc(100% - 3px);
  height: 400px;
  border: 4px solid;
  border-color: #d9d9d9;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0px;
  text-decoration: none;
  color: black;
  margin-bottom: 15px;
  color: #333333;
}

.main #head_new .get_more {
  margin-top: 30px;
}

/*    .main #head_new:hover div .get_more{ background: #c3292b; }
    .main #head_new:hover div .get_more span:first-child{ color: white; }*/
/*.main #head_new:hover div .get_more span:last-child{ border-left: 2px solid black; }*/
.main #head_new>* {
  font-size: 1rem;
}

.main #head_new .img_wrap {
  /*width: 60%;*/
  height: 100%;
  overflow: hidden;
}

.main #head_new .img_wrap img {
  height: auto;
  margin-left: 50%;
  transform: translateX(-50%);
  max-width: 100%;
}

.main #head_new>.text_wrap {
  width: 45%;
  padding: 40px;
  text-align: left;
  position: relative;
}

.main #head_new div>h2 {
  font-size: 2.2em;
  font-weight: normal;
  margin-top: 0px;
}

.main #head_new div>p {
  color: inherit;
  font-size: 0.9em;
  max-height: 97px;
  overflow: hidden;
  text-align: justify;
  margin: 0;
}

.main #head_new .ellipsis {
  position: absolute;
  right: 39px;
  bottom: 108px;
  padding-left: 15px;
  background: linear-gradient(to right, rgba(249, 249, 249, 0), rgba(249, 249, 249, 1), rgba(249, 249, 249, 1));
}

/*.main #head_new:hover .ellipsis {color: white; background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1), rgba(0, 0, 0, 1));}*/
.main #head_new:hover {
  border-color: black;
}



/* news*/
.main .new_wrap {
  display: inline-block;
  width: 33%;
}

.main .new_wrap .new {
  display: inline-block;
  width: 100%;
  padding: 0px;
  padding-top: 262px;
  text-align: center;
  text-decoration: none;
  color: black;
  background: #f9f9f9;
  border: 4px solid;
  border-color: #d9d9d9;
  overflow: hidden;
  position: relative;
  height: 450px;
  transition: padding-top 0.5s;
}

.main .new:hover {
  padding-top: 230px;
  background: black;
  color: white;
  border-color: black;
  transition: padding-top 0.3s;
}

.main .new_wrap:nth-child(3n-1) {
  padding: 15px 15px 15px 0px;
}

.main .new_wrap:nth-child(3n) {
  padding: 15px 15px 15px 15px;
}

.main .new_wrap:nth-child(3n+1) {
  padding: 15px 15px 15px 0px;
}

.main .new_welcome_page:nth-child(3n) {
  padding: 15px 15px 15px 0;
}

.main .new_welcome_page:nth-child(3n+1) {
  padding: 15px 15px 15px 15px;
}

.main .new_welcome_page:nth-child(3n-1) {
  padding: 15px 0 15px 15px;
}

.main .new>.text_wrap {
  color: inherit;
  background: inherit;
  text-align: left;
  padding: 25px;
  position: relative;
}

.main .new div>div:last-child {
  text-align: center;
}

.main .new div .div_text {
  height: 120px;
  position: relative;
}

.main .new div .div_text h2 {
  height: 42px;
  font-size: 1.5em;
  font-weight: normal;
  margin: 0px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.main .new .ellipsis {
  position: absolute;
  right: 0;
  bottom: 29px;
  padding-left: 15px;
  background: linear-gradient(to right, rgba(249, 249, 249, 0), rgba(249, 249, 249, 1), rgba(249, 249, 249, 1));
}

.main .new:hover .ellipsis {
  color: white;
  background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1), rgba(0, 0, 0, 1));
}

.main .new div .div_text p {
  margin: 0;
  font-size: 0.9em;
  height: 50px;
  overflow: hidden;
  text-align: justify;
}

.main .new .img_wrap {
  height: 262px;
  position: absolute;
  /*left: 50%;*/
  top: 0;
}

.main .new img {
  position: relative;
  /* left: -50%;*/
  height: 100%;
  width: 100%;
}

.img_wrap .play_button {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1.5rem;
  display: flex;
  align-items: center;
}

#head_new>.img_wrap {
  position: relative;
}

.img_wrap .play_button.alt {
  margin-left: 50%;
}

.img_wrap .play_button>div {
  width: 0;
  height: 0;
  border-top: 2rem solid transparent;
  border-bottom: 2rem solid transparent;
  border-left: 3rem solid rgba(255, 255, 255, 0.7);
}

.new_get_more {
  padding: 13px 0px;
  text-transform: uppercase;
  color: white;
  display: inline-block;
  height: 40px;
  width: 130px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: normal;
  letter-spacing: 1px;
}

.main #more_news {
  text-align: center;
  margin-top: 50px;
}

.main #more_news {
  color: black;
}

/*                 */
/* detail noviniek */
/*                 */

.novinka_detail .top {
  background-color: #e8e8e8;
}

.novinka_detail .top .aside {
  width: 240px;
  min-height: 380px;
  float: right;
  display: flex;
  align-items: center;
}

.novinka_detail .top .aside p {
  margin: 0;
  padding: 2rem;
  /*text-align: justify;*/
  font-weight: bold;
  color: #575757;
  background-color: #e8e8e8;
  line-height: 1.5;
}

.novinka_detail .top .custom_gallery {
  overflow: hidden;
}

.novinka_detail .top .custom_gallery .big {
  position: relative;
  background-color: white;
  width: 100%;
  height: 0;
  padding-bottom: 80%;
}

.novinka_detail .top .custom_gallery .big img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  cursor: zoom-in;
}

.novinka_detail .top .custom_gallery .frame {
  background-color: white;
  height: 110px;
  overflow: hidden;
}

.novinka_detail .top .custom_gallery .frame ul {
  list-style: none;
  margin: 0;
  padding: 0
}

.novinka_detail .top .custom_gallery .frame li {
  float: left;
  width: 150px;
}

.novinka_detail .top .custom_gallery .frame li img {
  width: 100%;
  display: block;
  cursor: pointer;
}

.novinka_detail .top .custom_gallery .scrollbar {
  height: 4px;
  background-color: white;
}

.novinka_detail .top .custom_gallery .handle {
  height: 4px;
  background-color: #cccccc;
}

.novinka_detail .text {
  font-size: 0.9rem;
  padding: 2rem 4rem;
  text-align: justify;
  clear: both;
}

.novinka_detail .text iframe {
  width: 100%;
  height: 366px;
}

.novinka_detail .video_wrap {
  position: relative;
  padding-bottom: 80%;
  height: 0;
  overflow: hidden;
}

.novinka_detail .video_wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  background-color: white;
}

.novinka_detail .play_button {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 60px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.novinka_detail .play_button>div {
  width: 0;
  height: 0;
  border-top: 1rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 2rem solid rgba(255, 255, 255, 0.7);
}

.novinka_detail .frame li {
  position: relative;
}



/*               */
/* lišta značiek */
/*               */
#mark_list {
  background-color: #e8e8e8;
  clear: both;
}

#mark_list>div {
  margin: 0 auto;
  padding: 40px 0;
  position: relative;
}

#mark_list .logos {
  display: flex;
  flex-wrap: wrap;
}

#mark_list .logo {
  display: block;
  width: 20%;
  box-sizing: border-box;
  padding: 20px;
  max-height: 120px;
  min-height: 120px;
  -webkit-transition: color .6s, background-color .6s;
  -moz-transition: color .6s, background-color .6s;
  -o-transition: color .6s, background-color .6s;
  transition: color .6s, background-color .6s;
}

#mark_list .logo .helper {
  display: flex;
  align-items: center;
  height: 100%;
}

#mark_list .logo img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.6;
  max-width: 100%;
  max-height: 100%;
  display: block;
  margin: 0 auto;
}

/*#mark_list .logo:not(:hover)*/
#mark_list .logo:hover {
  background-color: white;
  -webkit-transition: color .2s, background-color .2s;
  -moz-transition: color .2s, background-color .2s;
  -o-transition: color .2s, background-color .2s;
  transition: color .2s, background-color 0.2s;
  -webkit-box-shadow: 0px 21px 80px -15px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 21px 80px -15px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 21px 80px -15px rgba(0, 0, 0, 0.75);
}

#mark_list .logo:hover img {
  -webkit-filter: none;
  filter: none;
  opacity: 1;
}


#mark_list .text {
  height: 1px;
}

#mark_list .text .helper {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
}

#mark_list .text .helper span {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #b3b3b3;
}


/*#mark_list .logo {position: relative;}
#mark_list .logo:after{
    content: "+";
    color: #a2a2a2;
    position: absolute;
    font-size: 1.25rem;
    bottom: -11px;
    right: -6px;
  }

#mark_list .logo:nth-child(5n):after, #mark_list .logo:nth-last-child(-n+5):after {
  content: none;
}*/




/*        */
/* footer */
/*        */

footer {
  width: 100%;
  text-align: center;
  background: #1c1c1c;
  clear: both;
}

#footer {
  text-align: center;
  margin: 0 auto;
  color: white;
}

#pre_footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  padding-top: 25px;
  padding-bottom: 25px;
}

#pre_footer>* {
  text-align: left;
}

/*    #pre_footer > *:first-child{
      width: 22%;
    }

    #pre_footer > *:nth-child(3){
      padding-left: 40px;
    }*/

#pre_footer .logo img {
  height: 77px;
  position: relative;
  top: 15px;
}

#pre_footer div p {
  font-size: 0.9rem;
  color: #e8e8e8;
  margin: 5px 0px;
}

#pre_footer div p:first-child {
  font-size: 0.8rem;
  color: #7d7d7d;
  margin: 9px 0px;
}

/*    #pre_footer div h3{
      font-weight: 100;
      font-size: 1.125rem;
      margin: 4px 0px;
    }*/


#pre_footer .fb_info {
  font-weight: bold;
  margin-bottom: 9px;
  font-size: 1.1rem;
}

#pre_footer a.fb_link {
  font-family: 'Oswald', sans-serif;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
}

#fb_icon {
  display: inline-block;
  color: white;
  margin: 3px 10px 3px 0px;
  padding: 5px 12px;
  font-family: 'PT Sans', sans-serif;
}

#post_footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #737373;
  font-size: 0.75rem;
  margin-top: 8px;
}

#post>* {
  display: inline-block;
}

#post_footer nav a {
  color: #737373;
  line-height: 3.75rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  text-decoration: none;
  text-transform: uppercase;
  padding: 0px 20px;
}

#post_footer nav a:last-child {
  padding-right: 0;
}

#post_footer nav a:hover {
  color: white;
}

#post_footer nav a:after {
  content: "|";
  position: relative;
  right: -20px;
  color: #737373;
}

#post_footer nav a:last-child::after {
  content: "";
}

#footer hr {
  width: 100%;
  position: absolute;
  left: 0px;
  border: none;
  height: 1px;
  background: #333333;
}




/*               */
/* modely zoznam */
/*               */
/*#zoznam_modelov {display: flex; flex-wrap: wrap; justify-content: space-between; padding-right: 4px;}*/
#zoznam_modelov {
  padding-right: 4px;
}

#zoznam_modelov .produkt {
  float: left;
  width: 33%
    /* (!) nemoze byt 33.33 a pod. */
  ;
  padding-bottom: 1.2rem;
  box-sizing: border-box;
  height: 352px;
}

#zoznam_modelov .produkt .obj_form_opener {
  width: 100%;
}

#zoznam_modelov .produkt:nth-child(3n - 2) {
  padding-right: 0.8rem;
}

#zoznam_modelov .produkt:nth-child(3n - 1) {
  padding-right: 0.4rem;
  padding-left: 0.4rem;
}

#zoznam_modelov .produkt:nth-child(3n) {
  padding-left: 0.8rem;
  padding-right: 0;
}

#zoznam_modelov .produkt>a {
  display: block;
  position: relative;
  background-color: #e8e8e8;
  text-decoration: none;
  color: black;
  outline: 1px solid #ccc;
  -webkit-transition: color .3s, outline-color .3s, background-color .3s;
  -moz-transition: color .3s, outline-color .3s, background-color .3s;
  -o-transition: color .3s, outline-color .3s, background-color .3s;
  transition: color .3s, outline-color .3s, background-color .3s;
}

#zoznam_modelov .produkt>a:hover {
  outline: 4px solid;
  background-color: black;
  color: white;
  outline-color: black;
}

#zoznam_modelov .produkt .image {
  background-color: white;
  width: 100%;
  /*height: 0; padding-bottom: 60%;*/
}

#zoznam_modelov .produkt .image img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

#zoznam_modelov .produkt .text {
  font-family: 'Oswald', sans-serif;
  padding: 0 1rem 0 1rem;
  height: 5.5rem;
}

#zoznam_modelov .produkt .name {
  font-size: 1.3rem;
  padding: 0.6rem 0 0.6rem 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#zoznam_modelov .produkt .price {
  padding: 0.4rem 0 0.4rem 0;
  border-top: 1px solid #cccccc;
  line-height: 1.9rem;
}

#zoznam_modelov .produkt .price .price_text {
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 400;
  margin-right: 0.4em;
}

#zoznam_modelov .produkt .price .price_old {
  display: inline-block;
  font-size: 0.9rem;
  color: #737373;
  text-decoration: line-through;
  padding-left: 10px;
}

#zoznam_modelov .produkt .price .price_old.long {
  font-size: 0.7rem;
}

#zoznam_modelov .produkt .price .price_value {
  display: inline-block;
  float: right;
  font-weight: 600;
  font-size: 1.5rem;
}

#zoznam_modelov .produkt .price .price_value.long {
  font-size: 1.2rem;
}

#zoznam_modelov .produkt .tags {
  position: absolute;
  left: 2px;
  top: 2px;
  z-index: 100;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
}

#zoznam_modelov .produkt .tags>span {
  display: inline-block;
  padding: 8px 12px;
  box-shadow: 2px 2px 3px #888;
}

#zoznam_modelov .produkt .tags>span:not(:first-of-type) {
  margin-left: 4px;
}

#zoznam_modelov .produkt .tags>span.novinka {
  background-color: #29C32D;
}

#zoznam_modelov .produkt .tags>span.top {
  background-color: #08ace8;
}

#zoznam_modelov .produkt .tags>span.novinka.newline,
#zoznam_modelov .produkt .tags>span.top.newline {
  display: table;
  margin: 4px 0 0 0;
}

#zoznam_modelov .produkt .tags>span.zlava {
  letter-spacing: normal;
}

#zoznam_modelov .produkt .nedostupne {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.2);
}

#zoznam_modelov .produkt .nedostupne>div {
  color: white;
  font-size: 0.8rem;
  text-shadow: 1px 1px 1px black;
  text-transform: uppercase;
}

.tab #zoznam_modelov .produkt .image {
  overflow: hidden;
}

.custom_gallery .nedostupne {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.2);
}

.custom_gallery .nedostupne>div {
  color: white;
  font-size: 0.8rem;
  text-shadow: 1px 1px 1px black;
  text-transform: uppercase;
}

.popis_kategorie {
  font-size: 0.8rem;
  text-align: justify;
}

.popis_kategorie p {
  margin: 0;
}

.prislusenstvo_title {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 5rem 0 2rem 0;
}

.search_results_info {
  font-size: 0.9rem;
  color: #575757;
}

.search_results {}

.search_results .prislusenstvo_title {
  padding-top: 3rem;
}

.search_results .not_found {
  text-transform: none;
}

.kategorie_box {
  display: flex;
  flex-wrap: wrap;
}

.kategoria_link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  text-align: left;
  color: #1c1c1c;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-size: 0.9rem;
  padding: 15px 10px;
  width: calc(25% - 20px);
}

.kategoria_link img {
  width: 30%;
}

.kategoria_link .text {
  text-align: right;
}

.kategoria_link:hover {
  text-decoration: underline;
  background-color: #eee;
}


/*              */
/* model detail */
/*              */
.model {}

.model h1.nomargin {
  margin: 0;
  padding: 15px 15px 0px 15px;
}

.model .obj_kod {
  color: #737373;
  font-size: 0.8rem;
  margin: 0.7rem 0 0.7rem 0;
  width: 100%;
}

.model .obj_kod.popisny_nazov {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0px;
}

.model .model_heading {
  display: flex;
  justify-content: space-between;
  padding: 0px 15px 0px 15px;
  align-items: start;
}

.model .model_heading>div:first-child {
  display: inline-flex;
  align-items: flex-end;
  flex-wrap: wrap;
  max-width: 230px;
}

.model .model_heading .info_o_dostupnosti {
  display: flex;
  align-items: flex-end;
  margin-bottom: 0.2rem;
  flex-wrap: wrap;
}

.model .model_heading .info_o_dostupnosti>div {
  width: 100%;
}

.model .model_heading .info_o_dostupnosti.dostupnost_bez_externych {
  margin-bottom: 0.9rem;
}

.model .model_heading .dostupnost {
  color: #29C32D;
  font-size: 0.8rem;
  text-align: right;
  font-weight: bold;
}

.model .model_heading .dostupnost_externy {
  font-size: 0.8rem;
  text-align: right;
}

.model .model_heading .logo_obj_button {
  width: 330px;
  display: inline-block;
}

.model .model_heading .logo_obj_button .logo {
  display: block;
  width: 100px;
  margin-left: 30 0px;
  float: right;
}

.model .model_heading .logo_obj_button .logo img {
  max-width: 100%;
}

.model .model_heading .logo_obj_button .obj_form_model_detail {
  display: inline-flex;
  width: 100%;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 10px;
}

.model .model_heading .logo_obj_button .obj_form_model_detail input {
  padding: 13px 16px;
  width: 80px;
}

.model .obj_form {
  margin-bottom: 25px;
  padding: 20px 15px 25px 15px;
  background-color: #e8e8e8;
  display: none;
}

.model .obj_form_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
}

.model .obj_form_head h2 {
  margin: 0px;
}

.model .obj_form_head img {
  width: 15px;
  filter: invert(50%);
  margin-right: 5px;
  cursor: pointer;
}

.model .obj_form_content {
  display: flex;
  justify-content: space-between;
}

.model .top {
  background-color: #e8e8e8;
}

.model .top .info {
  padding: 0 2%;
  padding-bottom: 5px;
  background-color: #e8e8e8;
}

.model .top .info .leftBlock {
  width: 33%;
  display: inline-block;
  vertical-align: top;
}

.model .top .info .rightBlock {
  width: 66%;
  display: inline-block;
  vertical-align: top;
}

.model .top .info table {
  width: 100%;
  border-collapse: collapse;
}

.model .top .info table tr:not(:last-child) td {
  border-bottom: 1px solid #cccccc;
}

.model .top .info table tr.border_top td {
  border-top: 1px solid #cccccc;
}

.model .top .info table td {
  vertical-align: middle;
  height: 2.5rem;
}

.model .top .info table tr.tall td {
  height: 4rem;
}

.model .top .info table tr.tall .partner_infotext {
  color: #f79304;
}

.model .top .info .infotext {
  font-size: 0.8rem;
}

.model .top .info .suma {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: bold;
  text-align: right;
}

.model .top .info .suma.long {
  font-size: 1.1rem;
}

.model .top .info .suma .suma_alt {
  font-size: 1.1rem;
  font-weight: normal;
  color: #737373;
  padding-top: 4px;
}

.model .top .info .old {}

.model .top .info .old .suma {
  color: #737373;
  font-size: 1.1rem;
  text-decoration: line-through;
  font-weight: normal;
}

.model .top .info .ostatne_modely {
  margin-bottom: 1rem;
  padding-top: 1rem;
}

.model .top .info .ostatne_modely .infotext {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.model .top .info .ostatne_modely .img_wrap {
  display: block;
  float: left;
  width: 33.3333%;
  box-sizing: border-box;
  position: relative;
  border: 1px solid #cccccc;
  background-color: white;
}

.model .top .info .ostatne_modely .img_wrap:nth-child(3n - 2)+.img_wrap {
  border-left: 1px solid transparent;
  border-top: 1px solid transparent;
}

.model .top .info .ostatne_modely .img_wrap:nth-child(3n - 1)+.img_wrap {
  border-left: 1px solid transparent;
  border-top: 1px solid transparent;
}

.model .top .info .ostatne_modely .img_wrap:nth-child(3n)+.img_wrap {
  border-top: 1px solid transparent;
}

.model .top .info .ostatne_modely .img_wrap:nth-child(1)+.img_wrap {
  border-top: 1px solid #cccccc;
}

.model .top .info .ostatne_modely .img_wrap:nth-child(2)+.img_wrap {
  border-top: 1px solid #cccccc;
}

.model .top .info .ostatne_modely .img_wrap:hover {
  outline: 4px solid black;
  z-index: 1;
}

.model .top .info .ostatne_modely a {
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 60%;
}

.model .top .info .ostatne_modely a img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.model .top .info .link_vyrobca {
  padding: 5px 0;
  text-align: center;
}

.model .top .info .link_vyrobca a {
  color: #777;
  font-size: 0.8rem;
}

.model .top #priceTable td {
  min-width: 15px;
}

.model .top #priceTable .infotext {
  font-size: 15px;
}

.model .top #priceTable .partner_infotext {
  color: #000;
  font-weight: bold;
}

.model .top .custom_gallery {
  overflow: hidden;
}

.model .top .custom_gallery .big {
  position: relative;
  background-color: white;
  width: 100%;
  height: 0;
  padding-bottom: 45%;
}

.model .top .custom_gallery .big img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  cursor: zoom-in;
}

.model .top .custom_gallery .big .button {
  position: absolute;
  bottom: 16px;
  right: 10px;
  width: 42px;
  height: 42px;
  filter: invert(50%);
  cursor: zoom-in;
  background-repeat: no-repeat;
  background-size: 60%;
  background-position: center;
  border-radius: 16px;
  pointer-events: none;
}

.model .top .custom_gallery .big .button.zoomstart {
  background-image: url(../template/icons/zoom-in.svg);
}

.model .top .custom_gallery .frame {
  background-color: white;
  height: 115px;
  overflow: hidden;
  padding-top: 15px;
}

.model .top .custom_gallery .frame ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.model .top .custom_gallery .frame li {
  float: left;
  width: 150px;
}

.model .top .custom_gallery .frame li:not(:first-child) {
  box-shadow: -25px 0px 0px -24px #e8e8e8;
}

.model .top .custom_gallery .frame li:first-child {
  box-shadow: -25px 0px 0px -24px white;
}

.model .top .custom_gallery .frame li img {
  width: 100%;
  display: block;
  cursor: pointer;
}

.model .top .custom_gallery .scrollbar {
  height: 4px;
  background-color: white;
}

.model .top .custom_gallery .handle {
  height: 4px;
  background-color: #cccccc;
}

.model .text.tab_wrap {
  padding-top: 1rem;
  clear: both;
}

.model .text .video_wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin-bottom: 3rem;
}

.model .text .video_wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  background-color: white;
}

.model .text .file_wrap {
  margin-bottom: 1rem;
}

.model .text .file_wrap iframe {
  border: none;
  background-color: white;
}

.model .text .file_wrap a {
  text-decoration: none;
  color: black;
  opacity: 0.7;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  padding: 0 1.5rem 1rem 1.5rem;
}

.model .text .file_wrap a:hover {
  opacity: 1.0;
}

.model .text .file_wrap:not(:last-of-type) a {
  border-bottom: 1px solid #cccccc;
}

.model .text .file_wrap a>div {
  display: inline-block;
}

.model .text .file_wrap .nazov {
  font-weight: bold;
}

.model .text .file_wrap .icon {
  font-weight: bold;
  text-transform: uppercase;
  color: white;
  background-color: black;
  padding: 6px;
  border-radius: 6px;
  font-size: 0.8rem;
  text-align: center;
}

.model .text .file_wrap .text {
  padding: 0 0 0 1.5rem;
  min-width: 170px;
}

.model .text .file_wrap .text .small {
  font-size: 0.8em;
  color: #7d7d7d;
}

.model .tabs {
  display: inline-block;
}

.model .tabs .tab {
  display: inline-block;
  padding: 2.5rem 2rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #575757;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: color .6s, background-color .6s;
  -moz-transition: color .6s, background-color .6s;
  -o-transition: color .6s, background-color .6s;
  transition: color .6s, background-color .6s;
}

.model .tabs .tab.active {
  background-color: #575757;
  color: white;
}

.model .tabs:hover .tab {
  background-color: transparent;
  color: #575757;
  -webkit-transition: color .2s, background-color .2s;
  -moz-transition: color .2s, background-color .2s;
  -o-transition: color .2s, background-color .2s;
  transition: color .2s, background-color 0.2s;
}

.model .tabs .tab:hover {
  background-color: #575757;
  color: white;
  -webkit-transition: color .2s, background-color .2s;
  -moz-transition: color .2s, background-color .2s;
  -o-transition: color .2s, background-color .2s;
  transition: color .2s, background-color 0.2s;
}

.model .tabs_contents {
  padding: 2rem 3rem 0 3rem;
}

.model .tabs_contents .tab {
  display: none;
}

.model .tabs_contents .tab.active {
  display: block;
}

.model .text .popis {
  padding-left: 1rem;
  padding-right: 1rem;
}

.model .text .popis iframe {
  width: 100%;
  height: 366px;
}

.model .top .tags {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
}

.model .top .tags>span {
  display: inline-block;
  padding: 8px 12px;
}

.model .top .tags>span:not(:first-of-type) {
  margin-left: 4px;
}

.model .top .tags>span.novinka {
  background-color: #29C32D;
}

.model .top .tags>span.top {
  background-color: #08ace8;
}

.model .top .tags>span.novinka.newline,
.model .top .tags>span.top.newline {
  display: table;
  margin: 4px 0 0 0;
}

.model .top .tags>span.zlava {
  letter-spacing: normal;
  float: right;
}

.model .top .big .gallery_sipka {
  font-size: 2.5rem;
  color: #232323;
  opacity: 0.1;
  box-shadow: 0px 0px 5px black;
  position: absolute;
  background: white;
  width: 40px;
  height: 40px;
  top: calc(50% - 20px);
  text-align: center;
  padding-bottom: 5px;
  cursor: pointer;
  border-radius: 40%;
  box-sizing: content-box;
  z-index: 2;
}

.model .top .custom_gallery:hover .gallery_sipka {
  opacity: 0.7;
}

.model .top .big .sipka_pred {
  left: 10px;
}

.model .top .big .sipka_dalsia {
  right: 10px;
}

.model .tabs_contents .tab iframe {
  max-width: 75%;
  margin: 0% 12%;
}

.big_zoomed {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  overflow: hidden;
  text-align: center;
  z-index: 99999;
}

.big_zoomed img {
  max-width: 100%;
  max-height: 100%;
  cursor: initial;
  vertical-align: middle;
}

.big_zoomed .buttons {
  position: fixed;
  top: 50px;
  right: 50px;
  white-space: nowrap;
  z-index: 9999;
}

.big_zoomed .buttons .button {
  width: 32px;
  height: 32px;
  filter: invert(100%);
  cursor: pointer;
  display: inline-block;
  margin-left: 16px;
  background-repeat: no-repeat;
  background-size: 60%;
  background-color: rgba(255, 255, 255, 0.5);
  background-position: center;
  border-radius: 16px;
}

.big_zoomed .buttons .button.close {
  background-image: url('../template/icons/x.svg');
}

.big_zoomed .buttons .button.zoom_in {
  background-image: url('../template/icons/zoom-in.svg');
}

.big_zoomed .buttons .button.zoom_out {
  background-image: url('../template/icons/zoom-out.svg');
}

.big_zoomed .buttons .button.show_next {
  background-image: url('../template/icons/gallery_arrow.png');
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.big_zoomed .buttons .button.show_prew {
  background-image: url('../template/icons/gallery_arrow.png');
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.big_zoomed img.b-loaded {
  background-color: white;
}

.big_zoomed .helper {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}





/*                  */
/* vyrobca - detail */
/*                  */
.vyrobca {}

.vyrobca .top img {
  max-width: 100%;
  display: block;
}

.vyrobca .popis iframe {
  width: 100%;
  height: 366px;
}



/*           */
/* formulare */
/*           */
.kontaktny_formular .required {
  color: #c3292b;
  font-weight: bold;
  font-size: 1.2rem;
}

.kontaktny_formular table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.kontaktny_formular table .separator {
  color: #737373;
}

.kontaktny_formular table .separator>td {
  border-bottom: 1px solid #cccccc;
  font-family: oswald;
  font-size: 1.2rem;
  padding-top: 2rem;
  padding: 2rem 0 0.5rem 0;
}

.kontaktny_formular table>tbody>tr>td {
  padding: 8px;
}

.kontaktny_formular table .separator+tr>td {
  padding-top: 16px;
}

.kontaktny_formular table>tbody>tr>td:first-child {
  text-align: right;
  width: 20%;
}

.kontaktny_formular table>tbody>tr>td input,
textarea {
  padding: 8px;
  width: 100%;
}

.kontaktny_formular table>tbody>tr>td textarea {
  resize: vertical;
  min-height: 150px;
}

.kontaktny_formular .error {
  outline: 1px solid #ff000070;
}

.kontaktny_formular .hint {
  color: #737373;
  font-size: 0.9rem;
  padding-top: 4px;
}

.kontaktny_formular .buttons {
  padding-top: 2.5rem;
  display: flex;
  justify-content: space-between;
}

/*.kontaktny_formular .buttons .print {background-image: url('../template/icons/print.svg'); background-repeat: no-repeat; background-position: left center;}*/
.kontaktny_formular .buttons .print img {
  -webkit-filter: invert(100%);
  filter: invert(100%);
  width: 0.7rem;
}

.kontaktny_formular .status {
  font-size: 0.9rem;
  padding-top: 2.5rem;
  color: #29C32D;
  font-weight: bold;
  text-align: center;
}

.kontaktny_formular .status.red {
  color: #c3292b;
}

.dp-below .dp {
  padding-top: 0;
}

/*.dp-below .dp-day.dp-current {}
.dp-below .dp-day.dp-selected {}*/
.kontaktny_formular select {
  padding: 8px;
  width: 100%;
}

#servisny_formular {}

#kontaktny_formular {}

#kontaktny_formular .buttons {
  justify-content: flex-end;
}


/*                           */
/* registracny form          */
/*                           */
#regForm .error,
#kosikForm .error {
  border: 1px solid red;
}


/*                           */
/* zoznamy - kontrolne prvky */
/*                           */
.zoznamy_controls {
  padding: 12px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
}

.zoznamy_controls .select_wrap select {
  padding: 8px 16px;
  min-width: 150px;
}

.zoznamy_price_control {
  padding: 12px 4px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 0;
}

.zoznamy_price_control .select_wrap select {
  padding: 8px 16px;
  min-width: 150px;
}

.zoznamy_price_control_heading {
  padding-top: 30px;
  padding-bottom: 0;
  margin: 0;
  opacity: 0.75;
}

.zoznamy_price_control.zoznamy_price_control_heading {
  padding-top: 0;
}

.zoznamy_price_control_values {
  min-width: 80px;
  font-weight: 600;
  font-size: 18;
  margin: 0 18px
}

.zoznamy_price_control .musicpark_slider {
  width: 45%;
}

@media only screen and (max-width: 1580px) {
  #prihlasovaci_formular_wrap {
    margin-right: 80px;
  }
}

@media only screen and (max-width: 1200px) {
  .zoznamy_price_control .musicpark_slider {
    width: 75%;
  }
}


/* sidery */
.musicpark_slider {
  width: 100%;
}





/*              */
/* strankovanie */
/*              */
.pagination {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  font-family: 'Oswald', sans-serif;
}

.pagination a {
  text-decoration: none;
}

.pagination .page {
  display: inline-block;
  padding: 1px 5px;
  margin: 0 2px;
  color: #737373;
}

.pagination .page.active {
  color: white;
  background-color: #c3292b;
}

.pagination .page:not(.active):hover {
  color: black;
}

.pagination .button {
  text-transform: uppercase;
  color: #737373;
}

.pagination a.button:hover {
  color: black;
}

.pagination span.button {
  color: #e8e8e8;
}

.pagination .button span {
  font-size: 0.9rem;
}





/* autocomplete plugin */
.autocomplete-suggestions {
  text-align: left;
  cursor: default;
  border: 1px solid #ccc;
  border-top: 0;
  background: #fff;
  box-shadow: -1px 1px 3px rgba(0, 0, 0, .1);

  /* core styles should not be changed */
  position: absolute;
  display: none;
  z-index: 9999;
  max-height: 254px;
  overflow: hidden;
  overflow-y: auto;
  box-sizing: border-box;
}

.autocomplete-suggestion {
  position: relative;
  padding: 0 .6em;
  line-height: 32px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.02em;
  color: #333;
}

.autocomplete-suggestion b {
  font-weight: normal;
  color: #1f8dd6;
}

.autocomplete-suggestion.selected {
  background: #f0f0f0;
}




/*             */
/* Predajcovia */
/*             */
.sellers table {
  width: 100%;
  text-align: left;
  background: #ffffff;
  border-collapse: collapse;
  margin-bottom: 40px;
}

.sellers table tr:before,
.sellers tr:after {
  content: "";
  width: 20px;
  display: inline-block;
}

.sellers table tr:first-child th {
  font-weight: normal;
  font-size: 0.9em;
  border-bottom: 1px solid #e8e8e8;
  padding: 16px 0px;
}

.sellers table tr {
  border-bottom: 1px solid #e8e8e8;
  padding: 18px 0px;
}

.sellers table tr td {
  padding: 10px 0px;
  width: 28%;
  vertical-align: middle;
}

.sellers table tr td:last-child {
  width: 16%;
}

.sellers table tr:last-child {
  border-bottom: none;
}

.sellers table tr td .info img {
  width: 12px;
  height: 12px;
  display: block;
  border-radius: 50%;
}

.sellers table tr td.map_pointer img {
  width: 16px;
  height: 21px;
  vertical-align: middle;
}

.sellers table tr td.map_pointer .nazov {
  display: inline-block;
  padding-left: 12px;
  white-space: normal;
  vertical-align: middle;
}

.sellers table tr td .info {
  display: inline-block;
  border-radius: 50%;
  padding: 3px;
  background-color: black;
}

.sellers table tr td:first-child {
  font-weight: bold;
  font-size: 0.9rem;
  font-family: 'Oswald', sans-serif;
  white-space: nowrap;
  height: 72px;
}

.sellers table tr td:nth-child(2),
.sellers tr td:nth-child(3) {
  font-size: 0.8em;
  line-height: 1.4em;
}

.sellers table tr td:last-child {
  text-align: center;
}

.sellers .select_filters {
  float: right;
  margin-bottom: 40px;
  padding-right: 4px;
}

.sellers .select_filters .select_wrap {
  font-size: 0.9em;
  margin-left: 10px;
}

.sellers .select_filters .select_wrap select {
  padding: 8px 16px;
  min-width: 150px;
  display: inline-block;
  margin-left: 5px;
}

#vyrobcovia {
  border-radius: 0px;
  background: #e8e8e8;
  color: black;
}

.tippy-tooltip {
  border-radius: 0px;
  background: white;
  color: black;
  border: 1px solid #cccccc;
}

.zoznam_vyrobcov {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 190px;
  height: 52px;
  border-bottom: 1px solid #e8e8e8;
}

.zoznam_vyrobcov img {
  max-width: 250px;
}

.zoznam_vyrobcov:last-child {
  border-bottom: none;
}

.zoznam_vyrobcov span:last-child {
  min-width: 80px;
}

.sellers .info {
  padding: 10px;
}

#predajcovia_mapa {
  width: 100%;
  height: 400px;
  margin-bottom: 35px;
}

.gmap_label_title {
  font-family: 'Oswald', sans-serif;
  font-weight: bold;
  font-size: 1rem;
}




/*        */
/* Umelci */
/*        */


/* zoznam */
.umelci_page .select_filters {
  float: right;
  margin-bottom: 40px;
  padding-right: 4px;
}

.umelci_page .select_filters .select_wrap {
  font-size: 0.9em;
  margin-left: 15px;
}

.umelci_page .select_filters .select_wrap select {
  padding: 8px 16px;
  min-width: 150px;
  display: inline-block;
}

.umelci_page .umelci_zoznam {
  clear: both;
  padding-right: 4px;
}

.umelci_page .umelci_zoznam .umelec_wrap {
  width: 25%;
  float: left;
  margin-bottom: 1.2rem;
  box-sizing: border-box;
}

.umelci_page .umelci_zoznam .umelec_wrap:nth-child(4n - 3) {
  padding-right: 0.9rem;
}

.umelci_page .umelci_zoznam .umelec_wrap:nth-child(4n - 2) {
  padding-right: 0.6rem;
  padding-left: 0.3rem;
}

.umelci_page .umelci_zoznam .umelec_wrap:nth-child(4n - 1) {
  padding-right: 0.3rem;
  padding-left: 0.6rem;
}

.umelci_page .umelci_zoznam .umelec_wrap:nth-child(4n) {
  padding-left: 0.9rem;
}

.umelci_page .umelci_zoznam .umelec_wrap .umelec {
  background-color: #e8e8e8;
  color: black;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  -webkit-transition: color .3s, outline-color .3s, background-color .3s;
  -moz-transition: color .3s, outline-color .3s, background-color .3s;
  -o-transition: color .3s, outline-color .3s, background-color .3s;
  transition: color .3s, outline-color .3s, background-color .3s;
}

.umelci_page .umelci_zoznam .umelec_wrap .umelec:hover {
  background-color: black;
  color: white;
  outline: 4px solid;
  outline-color: black;
}

.umelci_page .umelci_zoznam .umelec_wrap .umelec .image {
  width: 100%;
  height: 150px;
  background-color: white;
  position: relative;
  overflow: hidden;
}

.umelci_page .umelci_zoznam .umelec_wrap .umelec .image_wrap {
  position: absolute;
  left: 50%;
  top: 0;
}

.umelci_page .umelci_zoznam .umelec_wrap .umelec img {
  display: block;
  height: 100%;
  position: relative;
  left: -50%;
}

.umelci_page .umelci_zoznam .umelec_wrap .umelec h2 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: normal;
  padding: 0.5rem 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.umelci_page .umelci_zoznam .umelec_wrap .umelec .text {
  height: 4.8rem;
  padding: 0 1rem;
}

.umelci_page .umelci_zoznam .umelec_wrap .umelec .kapely {
  border-top: 1px solid #cccccc;
  font-size: 0.8rem;
  padding: 0.5rem 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


/* detail */
.umelci_detail .top {
  background-color: #e8e8e8;
}

.umelci_detail .top .aside {
  width: 300px;
  float: right;
}

.umelci_detail .top .aside p {
  margin: 0;
  padding: 0 2rem;
  /*text-align: justify;*/
  font-weight: bold;
  color: #575757;
  background-color: #e8e8e8;
  line-height: 2;
}

.umelci_detail .top .aside p a {
  color: black;
  font-size: 0.9rem;
  font-weight: normal;
  text-decoration: none;
}

.umelci_detail .top .custom_gallery {
  overflow: hidden;
}

.umelci_detail .top .custom_gallery .big {
  position: relative;
  background-color: white;
  width: 100%;
  height: 0;
  padding-bottom: 80%;
}

.umelci_detail .top .custom_gallery .big img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  cursor: zoom-in;
}

.umelci_detail .top .custom_gallery .frame {
  background-color: white;
  height: 110px;
  overflow: hidden;
}

.umelci_detail .top .custom_gallery .frame ul {
  list-style: none;
  margin: 0;
  padding: 0
}

.umelci_detail .top .custom_gallery .frame li {
  float: left;
  width: 150px;
}

.umelci_detail .top .custom_gallery .frame li img {
  width: 100%;
  display: block;
  cursor: pointer;
}

.umelci_detail .top .custom_gallery .scrollbar {
  height: 4px;
  background-color: white;
}

.umelci_detail .top .custom_gallery .handle {
  height: 4px;
  background-color: #cccccc;
}

.umelci_detail .text {
  font-size: 0.9rem;
  padding: 2rem 4rem;
  text-align: justify;
  clear: both;
}

.umelci_detail .text iframe {
  width: 100%;
  height: 366px;
}

.umelci_detail .video_wrap {
  position: relative;
  padding-bottom: 80%;
  height: 0;
  overflow: hidden;
}

.umelci_detail .video_wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  background-color: white;
}

.umelci_detail .play_button {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 60px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.umelci_detail .play_button>div {
  width: 0;
  height: 0;
  border-top: 1rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 2rem solid rgba(255, 255, 255, 0.7);
}

.umelci_detail .frame li {
  position: relative;
}

.umelci_detail .infotext {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  padding: 1rem 8% 0 8%;
}




/*               */
/*  Loga zoznam  */
/*               */
#mark_list_tiles {}

#mark_list_tiles .logo {
  box-sizing: border-box;
  width: 33%;
  height: 250px;
  float: left;
  padding: 0 2.5rem 2.5rem 2.5rem;
}

#mark_list_tiles .logo a {
  width: 100%;
  height: 100%;
  display: block;
}

#mark_list_tiles .logo .helper {
  display: flex;
  align-items: center;
  height: 100%;
  padding-top: 2.5rem;
}

#mark_list_tiles .logo img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  margin: 0 auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s
}

#mark_list_tiles .logo:nth-child(3n),
#mark_list_tiles .logo:nth-child(3n - 1) {
  box-shadow: -51px 0px 0px -50px #e8e8e8;
}

#mark_list_tiles .logo:nth-child(n+4) a {
  border-top: 1px solid #e8e8e8;
}

#mark_list_tiles .logo a:hover {}

#mark_list_tiles .logo a:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.1);
}


/*               */
/* privatna zona */
/*               */
.pzona .tabs {
  display: inline-block;
}

.pzona .tabs .tab {
  display: inline-block;
  padding: 2.5rem 2rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #575757;
  cursor: pointer;
  -webkit-transition: color .6s, background-color .6s;
  -moz-transition: color .6s, background-color .6s;
  -o-transition: color .6s, background-color .6s;
  transition: color .6s, background-color .6s;
}

.pzona .tabs .tab.active {
  background-color: #575757;
  color: white;
}

.pzona .tabs:hover .tab {
  background-color: transparent;
  color: #575757;
  -webkit-transition: color .2s, background-color .2s;
  -moz-transition: color .2s, background-color .2s;
  -o-transition: color .2s, background-color .2s;
  transition: color .2s, background-color 0.2s;
}

.pzona .tabs .tab:hover {
  background-color: #575757;
  color: white;
  -webkit-transition: color .2s, background-color .2s;
  -moz-transition: color .2s, background-color .2s;
  -o-transition: color .2s, background-color .2s;
  transition: color .2s, background-color 0.2s;
}

.pzona .tabs_contents {
  padding: 2rem 3rem 0 3rem;
  font-size: 0.9rem;
}

.pzona .tabs_contents .tab {
  display: none;
}

.pzona .tabs_contents .tab.active {
  display: block;
}

.pzona .file_wrap {
  margin-bottom: 1rem;
}

.pzona .file_wrap a {
  text-decoration: none;
  color: black;
  opacity: 0.7;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  padding: 0 1.5rem 1rem 1.5rem;
}

.pzona .file_wrap a:hover {
  opacity: 1.0;
}

.pzona .file_wrap a>div {
  display: inline-block;
}

.pzona .file_wrap:not(:last-of-type) a {
  border-bottom: 1px solid #cccccc;
}

.pzona .file_wrap .vyrobca {
  font-weight: bold;
}

.pzona .file_wrap .icon {
  font-weight: bold;
  text-transform: uppercase;
  color: white;
  background-color: black;
  padding: 6px;
  border-radius: 6px;
  font-size: 0.8rem;
  text-align: center;
}

.pzona .file_wrap .text {
  padding-left: 1.5rem;
  min-width: 170px;
}

.pzona .file_wrap .text .small {
  font-size: 0.8em;
  color: #7d7d7d;
}

.pzona .partner_file_wrap {
  margin: 2rem 0rem;
  float: right;
}

.pzona .partner_file_wrap .text {
  padding-left: 0.5rem;
  min-width: unset;
}

.pzona .export_file_wrap {
  margin: 0px;
}

.pzona .predajna {
  padding: 1rem;
  background-color: white;
}

.pzona .predajna {
  margin-bottom: 3rem;
  border-bottom: 1px solid #cccccc;
}

.pzona .predajna:not(:first-of-type) {
  margin-top: 3rem;
}

.pzona .predajna table {
  width: 100%;
  border-collapse: collapse;
}

.pzona .predajna table td {
  padding: 4px;
}

.pzona .predajna table td:nth-of-type(1),
.pzona .predajna table td:nth-of-type(5) {
  text-align: right;
}

.pzona .predajna input,
.pzona .predajna select {
  padding: 4px;
}

.pzona .predajna input[type='text'],
.pzona .predajna select {
  width: 100%;
}

.pzona .predajna .select_wrap {
  width: 100%;
}

.pzona .predajna .select_wrap:after {
  right: 5px;
}

.pzona .predajna input[type='file'] {
  border: none;
  background-color: transparent;
}

.pzona .predajna button.save {
  background-color: #29C32D;
  border-color: #29C32D;
}

.pzona .predajna button.save:disabled {
  background-color: #e8e8e8;
  border-color: #e8e8e8;
  color: #737373;
  cursor: initial;
}

.pzona .predajna button.delete {
  background-color: #c3292b;
  border-color: #c3292b;
}

.pzona .predajna .required {
  color: #c3292b
}

.pzona .predajna .znacky_title {
  text-align: left !important;
}

.pzona .predajna .znacky {
  text-align: left !important;
  line-height: 1.5;
}

.pzona .predajna .znacky label {
  margin-right: 15px;
  cursor: pointer;
  display: inline-block;
  font-size: 0.8rem;
}

.pzona .predajna .znacky label input {
  vertical-align: middle;
}

.pzona .predajna .buttons {
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
}

.pzona .predajna .fotka_err {
  color: #c3292b;
}

.pzona .predajna .fotka_wrap {
  min-height: 60px;
  width: 100px;
  display: flex;
  align-items: center;
  position: relative;
}

.pzona .predajna .fotka_wrap .delete_button {
  position: absolute;
  top: -10px;
  right: -10px;
  background: black;
  border: none;
  color: white;
  padding: 0;
  width: 12px;
  height: 12px;
  font-size: 8px;
  border-radius: 6px;
}

.pzona .predajna img.fotka {
  display: block;
  max-width: 100px;
}

.pzona .add {
  padding-top: 5rem;
  text-align: center;
}

.pzona .add button {
  padding: 13px 20px;
}

.pzona .ucet .required {
  color: #c3292b;
}

.pzona .ucet td {
  padding: 4px;
}

.pzona .ucet td.right {
  text-align: right;
}

.pzona .ucet input {
  padding: 4px;
}

.pzona .ucet table {
  width: 100%;
}

.pzona .ucet .buttons {
  text-align: center;
}

.pzona .ucet .info {
  min-height: 3rem;
  text-align: center;
  padding: 1rem 0;
  color: #c3292b;
}

.pzona .ucet .info.ok {
  color: #29C32D;
}

.pzona .rezervacie {
  width: 100%;
  border-collapse: collapse;
}

.pzona .rezervacie tr.hdr {
  font-weight: bold;
}

.pzona .rezervacie td {
  padding: 4px;
}

.pzona .rezervacie tr:nth-child(odd) td {
  background-color: #eee;
}

.pzona .rezervacie tr.vybavene td {
  color: #ccc;
}

.pzona .rez_filters {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  justify-content: space-between;
}

.pzona .rez_filters .file_wrap a {
  border-bottom: none;
}

.pzona .rez_filters .file_wrap:first-child a {
  padding: 0 0.5rem 0rem 0rem;
}

.pzona .rez_filters .file_wrap:last-child a {
  padding: 0 0 0rem 0.5rem;
}

.pzona .rez_filters .file_wrap:first-child a .icon {
  padding: 1px 7px;
  font-size: 1.3rem;
}

.pzona .rez_filters .file_wrap:first-child a .text {
  width: 80px;
}

.pzona .rez_filters .select_filters {
  display: flex;
  align-items: center;
}

.pzona .rez_filters .select_filters select {
  padding: 16px 30px 16px 16px;
}

.pzona .rez_filters .select_filters .select_wrap {
  margin: 0px 2px;
}

.obj_popup_big_wrap_background {
  display: inline-flex;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0px;
  left: 0px;
  background: black;
  z-index: 1000;
  opacity: 0.8;
}

.obj_popup_big_wrap {
  display: inline-flex;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 1001;
  justify-content: space-around;
  align-items: center;
}

.obj_popup_big_wrap .obj_popup_big {
  display: inline-block;
  width: 1100px;
  background: white;
  opacity: 1;
  padding: 20px;
  max-width: 100%;
}

.obj_popup_big_wrap .obj_popup_big h2 {
  color: green;
  margin-bottom: 30px;
}

.buttons_layout {
  width: 100%;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
}

.kosik_velky_zoznam {
  margin-bottom: 15px;
}

.obj_popup_big .kosik_velky_zoznam {
  overflow: auto;
  max-height: 600px;
  padding-right: 5px;
}

.kosik_velky_zoznam .polozka {
  display: inline-block;
  width: 100%;
  display: inline-flex;
  justify-content: space-between;
  height: 100px;
  align-items: center;
  border-bottom: 1px solid #eaeaea;
}

.kosik_velky_zoznam .polozka>* {
  display: inline-block;
  text-align: center;
}

.kosik_velky_zoznam .polozka .img {
  width: 200px;
}

.kosik_velky_zoznam .polozka .nazov {
  width: 250px;
  font-size: 22px;
  font-weight: bold;
  color: black;
  text-decoration: none;
}

.kosik_velky_zoznam .polozka .dostupnost {
  width: 150px;
  color: #29C32D;
  font-weight: bold;
  font-size: 0.8rem;
}

.kosik_velky_zoznam .polozka .cena {
  width: 150px;
  font-size: 26px;
  font-weight: bold;
}

.kosik_velky_zoznam .polozka .kusy {
  width: 150px;
}

.kosik_velky_zoznam .polozka .cena_kusy {
  width: 200px;
  font-size: 26px;
  font-weight: bold;
}

.kosik_velky_zoznam .polozka_head {
  align-items: center;
  height: 50px;
}

.kosik_velky_zoznam .polozka:not(.polozka_head) .cena {
  font-weight: normal;
}

.kosik_velky_zoznam .polozka_head,
.kosik_velky_zoznam .polozka_head .nazov,
.kosik_velky_zoznam .polozka_head .dostupnost,
.kosik_velky_zoznam .polozka_head .cena,
.kosik_velky_zoznam .polozka_head .cena_kusy {
  font-size: 16px !important;
  font-weight: normal;
  color: black;
}

.kosik_velky_zoznam .polozka .nazov>div {
  font-size: 15px;
  font-weight: normal;
}

.kosik_velky_zoznam .polozka_spolu {
  background: #e8e8e8;
  text-align: right;
  font-weight: normal;
  justify-content: space-between;
}

.kosik_velky_zoznam .polozka_spolu div div {
  margin-right: 30px;
}

.kosik_velky_zoznam .polozka_spolu div div:last-child {
  font-weight: bold;
}

.kosik_velky_zoznam .polozka_spolu div div span {
  font-size: 25px;
  margin-top: 8px;
}

.kosik_velky_zoznam .polozka_spolu .poznamka {
  font-size: 14px;
  margin-top: 8px;
  margin-right: 30px;
  color: #575757;
}

.kosik_velky_zoznam .polozka.doprava {
  height: 78px;
}

.kosik_velky_zoznam .polozka.doprava .nazov {
  font-weight: normal;
}

.kosik_page_buttons div button {
  background: none !important;
}

.kosik_suhlasy_povolenia {
  text-align: right;
  margin: 24px 0;
}




/* pouzite farby

tmava #1c1c1c
tmavy border #333333
tmavy text #575757
sedy text #737373
bledy text #d9d9d9
bleda #e8e8e8
bledy border #cccccc
tmavsia bleda #b3b3b3
blede body #f9f9f9
cervena #c3292b
zelena #29C32D

*/

.highlighted_c {
  color: #c3292b !important;
}

.highlighted_back {
  background-color: #c3292b !important;
}

.highlighted_border {
  border-color: #c3292b !important;
}

.highlighted_back_black {
  background-color: #1c1c1c !important;
}

.highlighted_border_black {
  border-color: #1c1c1c !important;
}


.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}


.smallbloader {
  background-image: url('../template/images/bloader.svg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
}


@-webkit-keyframes down {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(90deg);
  }

  50% {
    -webkit-transform: translate(0px, 5px) rotate(90deg);
  }

  100% {
    -webkit-transform: translate(0px, 0px) rotate(90deg);
  }
}

@-webkit-keyframes up {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(-90deg);
  }

  50% {
    -webkit-transform: translate(0px, -5px) rotate(-90deg);
  }

  100% {
    -webkit-transform: translate(0px, 0px) rotate(-90deg);
  }
}

.category li.wrap:not(.active)>.unwrap:hover {
  -webkit-animation-name: down;
  -webkit-animation-duration: 0.3s;
  -webkit-transform-origin: 50% 50%;
  -webkit-animation-iteration-count: 1;
}

.category li.wrap.active>.unwrap:hover {
  -webkit-animation-name: up;
  -webkit-animation-duration: 0.3s;
  -webkit-transform-origin: 50% 50%;
  -webkit-animation-iteration-count: 1;
}

.category li.kategorie_accent a {
  color: #c3292b;
  font-weight: 600;
}

/*.category li.wrap>.unwrap {-webkit-transform: rotate(90deg); transform: rotate(90deg);}
  .category li.wrap.active>.unwrap {-webkit-transform: rotate(-90deg); transform: rotate(-90deg);}*/


.mp-col-6 {
  display: inline-block;
  width: 49.5%;
  vertical-align: top;
}


.alt_logo {
  display: none;
}

.close_button {
  display: none;
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 9999;
  width: 35px;
  height: 35px;
  background: url("../template/icons/x.svg") no-repeat center center;
  background-size: 1.2rem;
  background-color: rgba(255, 255, 255, 0.5) !important;
  border-radius: 20px;
}

.open_button {
  display: none;
  vertical-align: middle;
  width: 35px;
  height: 35px;
  background: url("../template/icons/menu.svg") no-repeat center center;
  background-size: 1.2rem;
  -webkit-filter: invert(100%);
  filter: invert(100%);
}

.fb_like_wrap {
  padding-top: 8px;
}

#cookies_info {
  position: fixed;
  left: 0px;
  right: 0px;
  height: auto;
  min-height: 21px;
  z-index: 2147483647;
  background: #fff;
  color: #1c1c1c;
  line-height: 21px;
  padding: 8px 18px;
  font-size: 14px;
  text-align: center;
  bottom: 0px;
  opacity: 1;
}

#cookies_info .close {
  float: right;
  display: block;
  padding: 5px 8px;
  min-width: 100px;
  margin-left: 5px;
  border-radius: 5px;
  cursor: pointer;
  color: #fff;
  background: #1c1c1c;
  text-align: center;
  font-family: verdana;
  font-weight: bold;
}

#cookies_info span {
  display: block;
  padding: 5px 0 5px 0;
}

#cookies_info a {
  text-decoration: none;
  color: #c3292b;
}

@media only screen and (max-width: 1200px) {

  /*body {background: red;}*/
  .header,
  main,
  #footer,
  #mark_list>div {
    width: 100%;
  }

  .slideshow {
    padding: 0;
  }

  .slideshow .control_wrap {
    right: 0;
  }

  .header>a {
    display: none;
    overflow: hidden;
  }

  header,
  header nav {
    height: auto !important;
  }

  /*.header {justify-content: flex-start;}*/
  .header .logo {}

  .alt_logo {
    display: block;
    text-align: left;
    padding: 10px 0 0 15px;
  }

  .alt_logo .logo {
    height: 40px;
  }

  .header nav a {
    line-height: 60px;
  }

  #lng_select {
    height: 60px;
    line-height: 60px;
  }

  #lng_select>a>* {
    display: inline-block;
  }

  #lng_select span {
    width: 0;
  }

  #odhlasovaci_formular_wrap,
  #prihlasovaci_formular_wrap {
    margin-right: 20px;
  }

  .heading {
    padding: 0;
  }

  .heading .text .elem {
    font-size: 2rem;
  }

  .main {
    padding: 1.5rem 2rem 4rem 2rem;
  }

  #mark_list .text .helper {
    padding-left: 40px;
  }

  #post_footer {
    flex-direction: column-reverse;
    padding: 20px 0 30px 0;
  }

  #post_footer nav a {
    display: inline-block;
    line-height: 2rem;
  }

  #post_footer>span {
    display: inline-block;
    padding-top: 20px;
  }

  #pre_footer {
    padding: 30px 20px;
  }

  #zoznam_modelov .produkt .price .price_value {
    font-size: 1rem;
  }

  #zoznam_modelov .produkt .price .price_value.long {
    font-size: 0.8rem;
  }
}




@media only screen and (max-width: 1000px) {
  #zoznam_modelov .produkt {
    width: 50%;
    padding: 0 0.6rem 1.2rem 0.6rem !important;
  }

  #zoznam_modelov .produkt .price .price_text {
    display: none;
  }

  .select_filters .select_wrap {
    padding: 8px 0;
  }

  .umelci_page .umelci_zoznam .umelec_wrap {
    width: 50%;
    padding: 0 0.6rem !important;
  }

  .pzona .tabs_contents {
    padding: 2rem 0rem 0 0rem;
  }

  .model .tabs_contents {
    padding: 2rem 0rem 0 0rem;
  }

  .vyrobca .tabs_contents {
    padding: 2rem 0rem 0 0rem;
  }

  .model .text .popis {
    padding-left: 0;
    padding-right: 0;
  }

  .umelci_detail .text {
    padding: 2rem 0;
  }

  .novinka_detail .text {
    padding: 2rem 0;
  }

  .main .popis {
    padding: 2rem 0 0 0;
  }

  .model .text {
    overflow: hidden;
  }

  .model .top .aside .info .ostatne_modely .img_wrap {
    width: 20%;
    border: 1px solid transparent !important;
    background-color: transparent;
  }

  .pzona button {
    padding: 13px 20px;
  }

  .pzona .predajna input[type='file'] {
    font-size: 0.7rem;
  }

  .novinka_detail .text {
    padding: 2rem 1.5rem;
  }

  .novinka_detail .top .aside {
    width: 100%;
    float: none;
    min-height: 0;
  }

  .model .top {
    display: flex;
    flex-flow: column-reverse;
  }

  .model .top .aside {
    width: 100%;
    float: none;
  }

  .kategoria_link .text p {
    font-size: 0.8rem;
  }
}




@media only screen and (max-width: 768px) {
  header nav {
    text-align: left;
  }

  #mark_list .text {
    display: none;
  }

  #mark_list .logo {
    padding: 8px;
  }

  #mark_list>div {
    padding: 25px 25px;
  }

  .footer_logo {
    display: none;
  }

  .alt_logo {
    padding: 10px 0 15px 15px;
  }

  main .nav_kat {
    width: 240px;
  }

  .finder input[type="text"] {
    width: 153px;
  }

  main .nav_kat .fb_wrap {
    display: none;
  }

  .main .new_wrap {
    width: 100%;
    padding: 15px 0 !important;
  }

  .main .new .img_wrap {
    width: 100%;
  }

  .main .new img {
    object-fit: contain;
  }

  .main #head_new .get_more {
    display: none;
  }

  #mark_list_tiles .logo {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }

  .zoznamy_controls {
    flex-flow: column;
  }

  .zoznamy_controls .filters {
    padding-bottom: 15px;
  }

  .zoznamy_controls .custom_checkbox {
    padding: 15px 8px;
  }

  .model .top .aside .info .ostatne_modely .img_wrap {
    width: 25%;
  }

  .main #head_new .ellipsis {
    bottom: 40px;
  }

  .mp-col-6 {
    width: 100%;
  }

  .umelci_detail .top .aside {
    float: none;
  }

  .kategoria_link {
    width: calc(50% - 12px);
  }
}




@media only screen and (max-width: 700px) {
  #zoznam_modelov .produkt .price .price_old {
    display: none;
  }

  .select_filters {
    width: 100%;
  }

  .select_filters>.txt {
    display: block;
    padding-bottom: 10px;
  }
}




@media only screen and (max-width: 600px) {

  /*pri zmene 600px je nutne zmenit aj kod v main.js riadok 101*/
  main .nav_kat {
    width: 100%;
    float: none;
    position: fixed;
    top: 0;
    z-index: 9998;
    display: none;
    bottom: 0;
    overflow: auto;
  }

  main .nav_kat .close_button {
    display: block;
  }

  .open_button {
    display: inline-block;
  }

  #zoznam_modelov .produkt {
    width: 50%;
    padding: 0 0.6rem 1.2rem 0.6rem !important;
  }

  .category {
    font-size: 0.9rem;
  }

  .finder input[type="text"] {
    width: 100%;
  }

  footer {
    padding-bottom: 1rem;
  }

  #lng_select {
    right: 10px;
  }

  .model .tabs_contents .tab iframe {
    max-width: 100%;
    margin: 0%;
  }

  .main #head_new {
    height: 557px;
    flex-flow: column;
    background-color: black;
    color: white;
    border-color: black;
  }

  .main #head_new .img_wrap {
    width: 100%;
  }

  .main #head_new>.text_wrap {
    width: 100%;
    padding: 25px;
  }

  .main #head_new div>h2 {
    font-size: 1.5rem;
  }

  .main #head_new .ellipsis {
    bottom: 25px;
    right: 24px;
    color: white;
    background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1), rgba(0, 0, 0, 1));
  }

  #zoznam_modelov .produkt .price .price_old {
    display: inline-block;
  }
}




@media only screen and (max-width: 480px) {
  .header {
    flex-flow: column-reverse;
    align-items: flex-end;
  }

  #prihlasovaci_formular_wrap button {
    padding: 13px 25px;
  }

  #mark_list>div {
    padding: 15px 15px;
  }

  .footer_adresa {
    display: none;
  }

  .control_wrap .control {
    background-color: transparent;
    text-shadow: 1px 1px 1px black;
  }

  .heading .text {
    padding-right: 15%;
    right: 0;
  }

  .heading .text .elem {
    font-size: 1rem;
  }

  #mark_list_tiles .logo {
    width: 100%;
    box-shadow: none !important;
  }

  #mark_list_tiles .logo>a {
    border-top: none !important;
  }

  .main {
    padding: 1.5rem 0.6rem 4rem 0.6rem
  }

  #zoznam_modelov .produkt {
    padding: 0 0.4rem 1.2rem 0.4rem !important;
  }

  #zoznam_modelov .produkt .price .price_old {
    display: none;
  }

  #zoznam_modelov .produkt .price .dostupnost {
    font-size: 0.7rem;
  }

  .pagination {
    font-size: 0.8rem;
  }

  .umelci_page .umelci_zoznam .umelec_wrap {
    width: 100%;
    padding: 0 14% !important;
  }

  .novinka_detail .text {
    padding: 2rem 0;
  }

  .model .top .aside .info .ostatne_modely .img_wrap {
    width: 33%;
  }

  .kategoria_link {
    width: calc(100% - 12px);
  }
}

.tags .stockb {
  background-color: rebeccapurple;
}

@media only screen and (max-width: 480px) {
  .smalltag.stockb {
    display: none !important;
  }

  .kosik_velky_zoznam .polozka .nazov,
  .kosik_velky_zoznam .polozka .cena,
  .kosik_velky_zoznam .polozka .cena_kusy,
  .kosik_velky_zoznam .polozka .kusy,
  .kosik_velky_zoznam .polozka .dostupnost,
  .kosik_velky_zoznam .polozka_spolu div div span {
    font-size: 10px !important;
  }

  .kosik_velky_zoznam span.img,
  .kosik_velky_zoznam a.nazov div {
    display: none;

  }

  .kosik_velky_zoznam input {
    max-width: 100px;
    max-height: 30px;
  }

  .obj_popup_big_wrap .kosik_coupon {
    display: none;
  }

  .obj_popup_big_wrap .price_tag div {
    justify-content: center;
  }

  .polozka.doprava .nazov>div {
    font-size: 10px;
  }

  .kosik_coupon a {
    padding: 5px 15px 5px 15px !important;
    margin-top: 3px;
  }

  .price_tag>div {
    margin-right: 0 !important;
  }

  .price_tag div div {
    margin-right: 4px !important;
  }

  .price_tag .poznamka {
    font-size: 10px !important;
  }

}

.smalltag.stockb {
  display: block;
  position: absolute;
  margin: 2px;
  color: white;
  background-color: rebeccapurple;
  padding: 2px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

#vyrobcovia_filter.hide {
  display: none;
}

.option.others .text {
  width: 100% !important;
}

.kosik_coupon a.get_more {
  padding: 11px 35px 11px 35px;
}

.kosik_coupon {
  margin-left: 15px;
}

#zoznam_modelov .produkt .price {
  display: flex;
  flex-direction: row;
  width: 100%;
}

#zoznam_modelov .produkt .price .price_value {
  margin-left: auto;
  white-space: nowrap;
}

#zoznam_modelov .produkt .price .dostupnost {
  padding-right: 2px;
}

@media only screen and (max-width: 1138px) and (min-width: 1000px) {
  #zoznam_modelov .produkt .price {
    display: flex;
    flex-direction: row;
    width: 100%;
  }

  #zoznam_modelov .produkt .price .price_text {
    display: none;
  }

  #zoznam_modelov .produkt .price .dostupnost {
    font-size: 0.7rem;
  }
}

.dodatok {
  padding: 0 15px;
  font-size: 1rem;
  font-weight: normal;
  color: #575757;
}

.download {
  /*text-align: right;
  justify-content: flex-end;*/
  display: flex;
  align-items: center;
  align-content: flex-end;
  gap: 1rem;
}

.download a:link,
.download a:visited {
  text-decoration: none;
  color: #1c1c1c;
  border: none;
}

.download a:hover {
  text-decoration: underline;
}

#mark_list_tiles .logo:nth-child(n+4) div a {
  border-top: none;
}

#prislusenstvo-box,
.prislusenstvo {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;    
}
.prislusenstvo {
    width: calc(50% - 5px);
    box-sizing: border-box;
    outline: 1px solid #ddd;
}
.prislusenstvo .text {
  width: calc(50% - 30px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.prislusenstvo .text a {
  margin-bottom: 1rem;
  text-align: left;
  text-decoration: none;
  font-weight: bold;
  color: #333;
}
#prislusenstvo-box .prislusenstvo .image.smallbloader {
  position: relative; 
  display: inline-block; 
}
#prislusenstvo-box .prislusenstvo .image.smallbloader img {
  display: block; 
  width: 100%; 
  height: auto;
}  
#prislusenstvo-box .prislusenstvo .nedostupne {
  position: absolute; 
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
}

#prislusenstvo-box .prislusenstvo .nedostupne div {
  margin-bottom: 10%;
  color: white;
  text-align: center;
  text-shadow: 1px 1px 1px black;
 text-transform: uppercase;
}
