@font-face {
    font-family: Avenir; /* deklarace fontu */
    src: url("/fonts/AvenirNextLTPro-Regular.otf"); /* propojení na umístění souboru */
}

html, body
{
   background: #C2C0B3;
   color: white;
   margin: 0px;
   font-size: 16px;
   font-family: Avenir,Arial,sans-serif;
   font-weight: 300;
}

*
{
   margin: 0px;
   padding: 0px;
   text-decoration: none;
   list-style-type: none;
   border: 0px;
}

hr {
  border-bottom: 1px solid black;
}

h1 {
  font-size: 2rem;
  font-weight: 300;
  padding: 30px 0px 16px 0px;
}

h2 {
  font-size: 1.375rem;
  font-weight: 400;
  padding: 0px 0px 12px 0px;
}

h3 {
  font-size: 1.125rem;
  font-weight: 300;
  padding: 6px;
}

h4 {
  font-size: 1rem;
  font-weight: 300;
  padding: 30px 0px 20px 0px;
}

h5 {
  font-size: 0.875rem;
}

p {
  font-size: 1.125rem;
  font-weight: 200;
  line-height: 1.8;
}

i {
  color: #64bcff;
}

a{
  color: black;
}

.a2 {
  color: #64bcff;
}

.a2:hover {
  color: white;
  text-decoration: underline;
}

.font-light {
  font-weight: 300;
}

.font-regular {
  font-weight: 400;
}

.font-heavy {
  font-weight: 700;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.justify {
  text-align: justify;
}

.displblock {
  display: block !important;
}

.container {
  width: 100%;
  box-sizing: border-box;
  max-width: 1920px;
  margin: 0 auto;
}


.row {
  position: relative;
  width: 100%;
}

.row [class^="col"] {
  float: left;
  margin: 0px;
  min-height: 0.125rem;
/*  box-shadow: -1px 0px 0px black;*/
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
  width: calc(100%);
}

.col-1-sm {
  width: calc(8.33%);
}

.col-2-sm {
  width: calc(16.66%);
}

.col-3-sm {
  width: calc(25%);
}

.col-4-sm {
  width: calc(33.33%);
}

.col-5-sm {
  width: calc(41.66%);
}

.col-6-sm {
  width: calc(49.99%);
}

.col-7-sm {
  width: calc(58.33%);
}

.col-8-sm {
  width: calc(66.66%);
}

.col-9-sm {
  width: calc(74.99%);
}

.col-10-sm {
  width: calc(83.33%);
}

.col-11-sm {
  width: calc(91.66%);
}

.col-12-sm {
  width: calc(100%);
}

.row::after {
  content: "";
  display: table;
  clear: both;
}

.hidden-sm {
  display: none;
}

/*@media only screen and (min-width: 33.75em) {
  .container {
    width: 95%;
  }
}*/

@media only screen and (min-width: 45em) {  /* 720px */
  .col-1 {
    width: calc(8.33%);
  }

  .col-2 {
    width: calc(16.66%);
  }

  .col-3 {
    width: calc(25%);
  }

  .col-4 {
    width: calc(33.33%);
  }

  .col-5 {
    width: calc(41.66%);
  }

  .col-6 {
    width: calc(49.99%);
  }

  .col-7 {
    width: calc(58.33%);
  }

  .col-8 {
    width: calc(66.66%);
  }

  .col-9 {
    width: calc(74.99%);
  }

  .col-10 {
    width: calc(83.33%);
  }

  .col-11 {
    width: calc(91.66%);
  }

  .col-12 {
    width: calc(100%);
  }

  .hidden-sm {
    display: block;
  }
}

/**** header ****/
.header1
{
  box-sizing: border-box;
  position: fixed;
  top: 0;
  width: 100%;
  height: 48px;
  z-index: 1001;
/*  background: #000000a8;*/
}

.header2
{
  box-sizing: border-box;
  position: fixed;
  top: 48px;
  width: 100%;
  height: 1px;
  z-index: 1000;
/*  background: #000000a8;*/
}

.logotext
{
  text-align: center;
  font-size: 11px;
  float: left;
  width: 194px;
  margin-left: 17px;
  display: none;
}

.logo {
  float: left;
  height: 35px;
  margin-top: 6px;
  margin-left: 8px;
}

.menu-button {
  float: right;
  margin-top: 6px;
  margin-right: 8px;
  padding: 2px 0px;
  background: none;
  border: 0;
  color: #fff;
  cursor: pointer;
  display: block;
}

.menu-button:focus {
  outline: none;
}

.hamburger .line{
  width: 42px;
  height: 3px;
  background-color: white;
  display: block;
  margin: 6px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.hamburger:hover{
  cursor: pointer;
}

#hamburger.is-active .line:nth-child(2){
  opacity: 0;
}

#hamburger.is-active .line:nth-child(1){
  -webkit-transform: translateY(9px) rotate(45deg);
  -ms-transform: translateY(9px) rotate(45deg);
  -o-transform: translateY(9px) rotate(45deg);
  transform: translateY(9px) rotate(45deg);
}

#hamburger.is-active .line:nth-child(3){
  -webkit-transform: translateY(-9px) rotate(-45deg);
  -ms-transform: translateY(-9px) rotate(-45deg);
  -o-transform: translateY(-9px) rotate(-45deg);
  transform: translateY(-9px) rotate(-45deg);
}

.search-div-b {
  margin-top: 4px;
  margin-left: 8px;
  margin-right: 8px;
}

.search {
  box-sizing: border-box;
  width: calc(100% - 42px);
  height: 36px;
  font-size: 15px;
  font-weight: 500;
  padding: 9px 8px;
  background: #efefef;
  border: 0px;
}

.search::placeholder {
  color: black;
}

.search-button {
  box-sizing: border-box;
  position: absolute;
  width: 42px;
  height: 36px;
  margin-top: 0px;
  background: white;
  border: 0px;
}

.menu-u {
  position: absolute;
  width: 100%;
  max-height: calc(100vh - 48px);
  overflow: auto;
  background: white;
  color: black;
  top: -100vh;
  transition: .3s;
}

.menu-m {
  position: absolute;
  width: 100%;
  height: calc(100vh - 48px);
  overflow: auto;
  background: white;
  color: black;
  top: -100vh;
  transition: .3s;
}

.menu-m a{
  color: black;
  font-size: 18px;
  font-weight: 300;
}

.m2 {
  top: 0px;
}

.square {
width: 100%;
float:left;
position: relative;
color: black;
}

.square:before {
content: "";
display: block;
padding-top: 100%;
}

.user-camera {
  background: url(/img/icon/camera.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 90%;
  border: 1px solid black;
}

.user-menu {
    position: absolute;
    top: 8px;
    right: 58px;
    width: 31px;
    height: 31px;
    border: 1px solid #f6ba17;
    border-radius: 50%;
}

.button {
  position: relative;
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 20px;
  color: black;
  background: #54514e;
  border: 2px solid white;
/*  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;*/
    border-radius: 0;
    -webkit-appearance: none;
  outline: none;
}


.cs-video {
  position: relative; margin-top: 48px; min-width: 100%; min-height: 100%; text-align: center; background-color: #525252;
}

  .video {
    width: 100%;
  }

@media only screen and (min-width: 45em) {  /* 720px */
  .cs-video {
  margin-top: 0px; position: fixed; top: 0; left: 0; min-width: 100%; min-height: 100%; text-align: center; background-color: #525252;
}

  .video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
  }
}


.fotoshowroom {
  overflow: auto; position: relative; width: 100%; background: #00000070; text-align: center; padding-top: 10px; padding-bottom: 18px;
}

.fotoshowroom2 {
  overflow: auto; width: 90%; margin: 0px auto;
}

.fotoshowroom3 {
  overflow: auto; width: 90%; margin: 0px auto; display: block;
}

.fotoshowroom4 {
  width: calc(20% - 8px); float: left; margin: 4px; border-radius: 4px;
}

@media only screen and (min-width: 720px) {  /* 720px */
.fotoshowroom {
  overflow: auto; position: fixed; bottom: 87px; width: 100%; background: #00000070; text-align: center; padding-top: 10px; padding-bottom: 0px;
}

.fotoshowroom2 {
  overflow: auto; width: 55%; margin: 0px auto;
}

.fotoshowroom3 {
  display: none;
}

.fotoshowroom4 {
  width: calc(10% - 8px); float: left; margin: 4px; border-radius: 4px;
}


}


@media only screen and (min-width: 900px) {  /* 720px */
.fotoshowroom {
  bottom: 59px;
    padding-bottom: 0px;
}
}

@media only screen and (min-width: 1006px) {  /* 720px */
.fotoshowroom {
  bottom: 31px;
    padding-bottom: 0px;
}
}

.page {
  margin-top: 49px;
}

@media (min-width: 992px) {

.page {
  margin-top: 84px;
}

}


.galrel {
  position: relative;
  padding-top: 22px;
}


.flex-images {
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
}


.flex-images .item {
    float: left;
    margin: 4px;
    /*border: 1px solid #eee;*/
    box-sizing: content-box;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.flex-images .item img {
    display: block;
    width: auto;
    height: 100%;
}




input {
    box-sizing: border-box;
    width: 100%;
    line-height: 1.5;
    font-size: 15px;
    padding: 4px;
    outline: none;
    border: 1px solid #857c77;
        border-radius: 0;
/*    -webkit-appearance: none;*/
}


.material-icons {
  color: black;
  padding-top: 0px;
  position: relative;
  top: 5px;
  padding-right: 8px;
}

.menu-m2 .material-icons {
  color: white;
}

.category-icon .material-icons {
  color: black;
  padding: 8px;
  margin-top: -5px;
  margin-left: 0.5px;
  font-size: 34px;
}

.navigation .material-icons {
  font-size: 18px;
  padding-right: 1px;
  color: #696969;
}

.l-category2 .material-icons {
  font-size: 30px;
  padding-right: 1px;
  color: white;
  float: right;
  position: relative;
  top: -6px;
}

.button .material-icons {
  font-size: 22px;
  line-height: 0.3;
}

.fa, .fas, .fab, .far { 
  color: black;
  padding: 8px;
  margin-top: 3px;
  margin-left: 0.5px;
  font-size: 28px;
}

.png-icons {
  width: 40px;
  height: 40px;
  margin-top: 5px;
}

.icon-search
{
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    margin-top: 1px;
    width: 24px;
    height: 22px;
    background: url(/img/icon/search.svg);
    background-size: 100%;
}

.icon-camera
{
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    margin-top: 1px;
    width: 24px;
    height: 22px;
    background: url(/img/icon/camera.svg);
    background-size: 100%;
}




.button-wrapper {
  position: relative;
  width: 150px;
  text-align: center;
  margin: 0px auto;
}

.button-wrapper span.label {
  position: relative;
  z-index: 0;
  display: inline-block;
  width: 100%;
  background: #ffd57a;
  cursor: pointer;
  color: black;
  padding: 10px 0;
  text-transform:uppercase;
  font-size:12px;
}

#fileinput {
    display: inline-block;
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 50px;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}
.ga-up-im img {
    display: block;
    width: 100%;
}

.fo-up-im {
    box-sizing: border-box;
    width: 24%;
    margin: 0.5%;
    float:left;
    position: relative;
    color: black;
    background-size: auto 100%;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid rgba(0, 0, 0, 0.38);
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.19);
}

.fo-up-im:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.nac {
    position: relative;
}

.nac .loadupinz {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #0000009e;
    top: 0;
    left: 0;
}

.nac .loadupinz2 {
    border: 6px solid rgba(255, 255, 255, 0.42);
    border-top: 6px solid rgba(246, 186, 23, 0.78);
    border-radius: 100%;
    width: 50%;
    padding-top: 50%;
    -webkit-animation: fancybox-rotate 1.2s infinite linear;
    animation: fancybox-rotate 1.2s infinite linear;
    background: transparent;
    position: absolute;
    top: calc(25% - 6px);
    left: calc(25% - 6px);
}

.fo-del-im {
    display: none;
    box-sizing: border-box;
    width: 24%;
    margin: 0.5%;
    float:left;
    position: relative;
    color: black;
    background-color: #e4e4e4;
    background: url(/img/icon/trash.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 90%;
    border: 1px solid rgba(0, 0, 0, 0.38);
    box-shadow: inset 0px 0px 20px rgba(0, 0, 0, 0.24);  
}

.fo-del-im:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.fo-del-hover {
    background-color: red;
}

.page input[type="text"] {
    box-sizing: border-box;
    width: 100%;
    line-height: 1.5;
    font-size: 15px;
    padding: 4px;
    outline: none;
    border: 1px solid #857c77;
}

textarea {
    box-sizing: border-box;
    width: 100%;
    height: 200px;
    line-height: 1.5;
    font-size: 15px;
    padding: 4px;
    outline: none;
    border: 1px solid #857c77;
}

select {
    box-sizing: border-box;
    width: 100%;
    line-height: 1.5;
    font-size: 15px;
    padding: 4px;
    outline: none;
    border: 1px solid #857c77;
}

.select-css {
    display: block;
    font-size: 16px;
    font-family: sans-serif;
    font-weight: 700;
    color: #444;
    line-height: 1.3;
    padding: .6em 1.4em .5em .8em;
    width: 100%;
    max-width: 100%; 
    box-sizing: border-box;
    margin: 0;
    border: 1px solid #aaa;
    box-shadow: 0 1px 0 1px rgba(0,0,0,.04);
    border-radius: .5em;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='50' fill='gold'><polygon points='0,0 100,0 50,50'/></svg>"), linear-gradient(to bottom, #ffffff 0%,#e5e5e5 100%);
    background-repeat: no-repeat, repeat;
    background-position: right .7em top 50%, 0 0;
    background-size: .65em auto, 100%;
}
.select-css::-ms-expand {
    display: none;
}
.select-css:hover {
    border-color: #888;
}
.select-css:focus {
    border-color: #aaa;
    box-shadow: 0 0 1px 3px rgba(59, 153, 252, .7);
    box-shadow: 0 0 0 3px -moz-mac-focusring;
    color: #222; 
    outline: none;
}
.select-css option {
    font-weight:normal;
}


.echo {
    position: fixed;
    left: 10%;
    width: 80%;
    padding-top: 40px;
    font-size: 20px;
    text-align: center;
    min-height: 100px;
    z-index: 1000;
    background-color: #efeeee;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
/*    -moz-box-shadow: 0 0 10px 1px #404142;
    -webkit-box-shadow: 0 0 10px 1px #404142;*/
    box-shadow: 0 0 10px 1px #404142;
    -moz-animation: cssAnimation 0s ease-in 5s forwards;
    /* Firefox */
    -webkit-animation: cssAnimation 0s ease-in 5s forwards;
    /* Safari and Chrome */
    -o-animation: cssAnimation 0s ease-in 5s forwards;
    /* Opera */
    animation: cssAnimation 0s ease-in 5s forwards;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
@keyframes cssAnimation {
    to {
        width:0;
        height:0;
        box-shadow: none;
        overflow:hidden;
    }
}
@-webkit-keyframes cssAnimation {
    to {
        width:0;
        height:0;
        box-shadow: none;
        visibility:hidden;
    }
}

footer {
position: fixed; bottom: 0; left: 0; width: 100%; min-height: 23px; background: black; color: white; text-align: center; font-size: 14px; padding-top: 3px; padding-top: 3px;
}

footer a{
  font-size: 14px;
  padding: 4px;
  line-height: 28px;
}

footer div{
  float: none;
  padding-top: 4px;
}





.menu {
  display: none;
}

.search-div-t {
  display: none;
}

.search-div-t  .search {
  width: calc(68% - 42px);
  height: 34px;
}

.search-div-t  .search-button {
  height: 34px;
}
  
@media (min-width: 992px) {



  footer {
    text-align: left;
  }

footer div{
  float: right;
}

  .header2 {
    height: 36px;
  }

  .logo {
    margin-left: 24px;  }

  .logotext {
    display: block;
  }

  .menu-button {
    display: none;
  }

  .menu {
  font-size: 19px;
  display: block;
  float: right;
  margin-right: 24px;
  margin-top: 24px;
  color: white;
  }

.menu > a{
  padding-left: 12px;
  }

.menu > a > i {
  color: white !important;
  padding-right: 0px; 
  }

  .l-category {
    width: calc(100% / 7);
  }

  .menu-category {
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.19);
    -moz-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.19);
    -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.19);
  }

  .n-b .menu-category {
    box-shadow: 0 1px 4px rgba(255, 255, 255, 0.26);
    -moz-box-shadow: 0 1px 4px rgba(255, 255, 255, 0.26);
    -webkit-box-shadow: 0 1px 4px rgba(255, 255, 255, 0.26);
    background: #131313;
  }






}






.n-b {
  background: black;
  color: white !important;
}

.n-b a {
  color: white !important;
}

.n-b .search {
  background: #cecece;
}

.n-b .menu-m {
  background: #131212;
}

.n-b .menu-m .material-icons{
  color: white;
}

.n-b .l-category2 {
  border: 1px solid rgb(247, 186, 24);
}

.n-b .pa-item {
    background: #757575;
}

.s-nadpis {
  font-size: 22px;
}

@media only screen and (min-width: 960px) and (max-width: 1300px){  /* 720px */
.col-sort {
  /*width: calc(33.33% - 1rem);*/
}

.s-nadpis {
  font-size: 19px;
}

}

@media only screen and (min-width: 720px) and (max-width: 959px){  /* 720px */
.col-sort {
   /*width: calc(49.99% - 1rem);*/
}
}