/* Lang button styles */
/**
 * Toggle Switch Globals
 *
 * All switches should take on the class `cmn-toggle-switch` as well as their
 * variant that will give them unique properties. This class is an overview
 * class that acts as a reset for all versions of the icon.
 */
.cmn-toggle-switch {
  display: block;
  position: absolute;
  right: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 45px;
  height: 40px;
  font-size: 0;
  text-indent: -9999px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
  border-radius: none;
  border: none;
  cursor: pointer;
  -webkit-transition: background 0.3s;
          transition: background 0.3s;
}

.cmn-toggle-switch:focus {
  outline: none;
}

.cmn-toggle-switch span {
  display: block;
  position: absolute;
  top: 19px;
  left: 8px;
  right: 8px;
  height: 2px;
  background: white;
}

.cmn-toggle-switch span::before,
.cmn-toggle-switch span::after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  content: "";
}

.cmn-toggle-switch a .lang {
  width: 50px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
}  

.cmn-toggle-switch span::before {
  top: -11px;
}

.cmn-toggle-switch span::after {
  bottom: -11px;
}

/**
 * Style 2
 * 
 * Hamburger to "x" (htx). Takes on a hamburger shape, bars slide
 * down to center and transform into an "x".
 */
.cmn-toggle-switch__htx {
  background-color: transparent;
}

.cmn-toggle-switch__htx span {
  -webkit-transition: background 0s 0.3s;
          transition: background 0s 0.3s;
}

.cmn-toggle-switch__htx span::before,
.cmn-toggle-switch__htx span::after {
  -webkit-transition-duration: 0.3s, 0.3s;
          transition-duration: 0.3s, 0.3s;
  -webkit-transition-delay: 0.3s, 0s;
          transition-delay: 0.3s, 0s;
}

.cmn-toggle-switch__htx span::before {
  -webkit-transition-property: top, -webkit-transform;
          transition-property: top, transform;
}

.cmn-toggle-switch__htx span::after {
  -webkit-transition-property: bottom, -webkit-transform;
          transition-property: bottom, transform;
}

/* active state, i.e. menu open */
.cmn-toggle-switch__htx.active span {
  background: none;
}

.cmn-toggle-switch__htx.active span::before {
  top: 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.cmn-toggle-switch__htx.active span::after {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.cmn-toggle-switch__htx.active span::before,
.cmn-toggle-switch__htx.active span::after {
  -webkit-transition-delay: 0s, 0.3s;
          transition-delay: 0s, 0.3s;
}

@font-face {
  font-family: "gistLight";
  src: url('../fonts/GistLight.otf?1388570101') format('opentype'), url('../fonts/GistLight-webfont.eot?1428423401') format('embedded-opentype'), url('../fonts/GistLight-webfont.ttf?1428423401') format('truetype'), url('../fonts/GistLight-webfont.woff?1428423401') format('woff'), url('../fonts/GistLight-webfont.woff2?1428423401') format('woff2');
}
@font-face {
  font-family: "ffyI";
  src: url('../fonts/KGFallForYouItalics-webfont.eot?1428423401') format('embedded-opentype'), url('../fonts/KGFallForYouItalics-webfont.ttf?1428423401') format('truetype'), url('../fonts/KGFallForYouItalics-webfont.woff?1428423401') format('woff'), url('../fonts/KGFallForYouItalics-webfont.woff2?1428423402') format('woff2');
}
@font-face {
  font-family: "ffy";
  src: url('../fonts/KGFallForYou-webfont.eot?1428423401') format('embedded-opentype'), url('../fonts/KGFallForYou-webfont.ttf?1428423401') format('truetype'), url('../fonts/KGFallForYou-webfont.woff?1428423401') format('woff'), url('../fonts/KGFallForYou-webfont.woff2?1428423401') format('woff2');
}
@font-face {
  font-family: "chapBold";
  src: url('../fonts/ChaparralPro-Bold.eot?1428426366') format('embedded-opentype'), url('../fonts/ChaparralPro-Bold.ttf?1428426366') format('truetype'), url('../fonts/ChaparralPro-Bold.woff?1428426366') format('woff'), url('../fonts/ChaparralPro-Bold.otf?1428426366') format('opentype');
}
@font-face {
  font-family: "chapReg";
  src: url('../fonts/ChaparralPro-Regular.eot?1428507596') format('embedded-opentype'), url('../fonts/ChaparralPro-Regular.ttf?1428507596') format('truetype'), url('../fonts/ChaparralPro-Regular.woff?1428507598') format('woff'), url('../fonts/ChaparralPro-Regular.otf?1428507596') format('opentype'), url('../fonts/ChaparralPro-Regular.svg?1428507596') format('svg');
}
html, body {
  width: 100%;
  height: 100%;
}

.nopadding {
  padding-left: 0;
}

header {
  height: 70px;
  width: 100%;
  background-color: #603912;
  padding: 10px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
header .logoWrap {
  height: 40px;
  background-image: url('../img/logoS.png?1428427873');
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
header .logoWrap a {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
}

.langDropDownWrap {
  min-height: 50px;
  background-color: #dccbbb;
  width: 100%;
  position: fixed;
  top: 70px;
  left: 0;
  z-index: 999;
  -webkit-transition: all 0.4s;
          transition: all 0.4s;
  -webkit-transform: translateY(-70px);
      -ms-transform: translateY(-70px);
          transform: translateY(-70px);
  padding-top: 10px;
}
.langDropDownWrap .lang {
  display: block;
  position: relative;
  float: left;
  width: 60px;
  height: 30px;
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.cf {
  clear: both;
}

.visible {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

footer {
  height: 90px;
  background-color: #603912;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
}
footer .row {
  height: 100%;
}
footer .row > div {
  height: 100%;
  position: relative;
  padding-left: 0;
  padding-right: 0;
  padding-top: 15px;
  padding-bottom: 15px;
}
footer .row > div:first-of-type {
  padding-left: 15px;
}
footer .row > div:last-of-type {
  padding-right: 15px;
}
footer .row > div a {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 9;
}
footer .row .active {
  background-color: #3e2506;
}
footer .row .navIcon {
  height: 60%;
  width: 100%;
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-position: 50% 0%;
  position: relative;
}
footer .row .navIcon + div {
  position: relative;
  color: white;
  text-align: center;
  width: 100%;
  font-family: ffy;
  font-size: 16px;
  line-height: 16px;
  text-transform: uppercase;
  top: 5px;
}
footer .row .dobrote {
  background-image: url('../img/pribor.svg?1430062139');
}
footer .row .zemljevid {
  background-image: url('../img/pin.svg?1430062085');
}
footer .row .klobasa {
  background-image: url('../img/klobasa.svg?1430062239');
}
footer .row .kontakt {
  background-image: url('../img/tel.svg?1430062200');
}

.content {
  width: 100%;
  height: 100%;
  padding-top: 70px;
  padding-bottom: 90px;
  overflow: scroll;
  position: relative;
}

.innerWrap {
  width: 100%;
  min-height: 100%;
  color: #603912;
  font-family: ffy;
  position: relative;
  z-index: 99;
  padding-bottom: 20px;
}

.fullBg {
  background-image: url('../img/firstBg_sm.jpg?1430065098');
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}
.fullBg .napis {
  font-family: chapBold;
  font-size: 40px;
  position: absolute;
  left: 10px;
  bottom: 10px;
  line-height: 40px;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
}

.loadingWrap {
  width: 100%;
  height: 100%;
  background-color: #603912;
  position: absolute;
  z-index: 100;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  opacity: 0;
  -webkit-transition: all 0.6s;
          transition: all 0.6s;
}
.loadingWrap .klobasaLoad {
  width: 50px;
  height: 50px;
  background-image: url('../img/klobasa.svg?1430062239');
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  top: 50%;
  margin-top: -115px;
  -webkit-animation: rotate 1s ease infinite;
          animation: rotate 1s ease infinite;
  opacity: 0;
  -webkit-transition: all 0.4s;
          transition: all 0.4s;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.slideDown {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.loadingWrap .opacityOne {
  opacity: 1;
}

.dobroteWrap {
  color: black;
}

.dobroteWrap ul {
  list-style-type: none;
  padding: 0;
  margin-top: 15px;
  position: relative;
}
.dobroteWrap ul:first-of-type {
  margin-top: 25px;
}
.dobroteWrap ul li {
  font-family: ffy;
  color: #603912;
  font-size: 25px;
  clear: both;
  height: 30px;
}
.dobroteWrap ul li small {
  font-size: 20px;
}
.dobroteWrap ul li span:first-of-type {
  float: left;
  position: relative;
  display: inline-block;
  height: 30px;
}
.dobroteWrap ul li span:nth-of-type(2) {
  float: right;
  position: relative;
  display: inline-block;
  height: 30px;
}

ul.botLine {
  padding-bottom: 10px;
}
ul.botLine:after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #603912;
  position: absolute;
  bottom: -10px;
}

body h3 {
  font-family: ffy;
  font-size: 30px;
  color: #603912;
  text-transform: uppercase;
  margin: 0;
  margin-bottom: 0;
  margin-top: 10px;
  cursor: pointer;
}
body h4 {
  font-family: ffy;
  color: #603912;
  margin-top: 10px;
  padding: 0;
  font-size: 30px;
}
body h2 {
  display: block;
  width: 100%;
  background-color: #603912;
  padding: 8px 0 8px 0;
  text-align: center;
  font-family: ffy;
  color: white;
}
body h2 a {
  color: white;
  text-decoration: none;
}
body h2 a:active {
  color: white;
  text-decoration: none;
}
body h2 a:visited {
  color: white;
  text-decoration: none;
}
body h2 a:active {
  color: white;
  text-decoration: none;
}
body h2 a:link {
  color: white;
  text-decoration: none;
}

.zgodbica .text {
  margin-top: 15px;
}
.zgodbica .kralj {
  background-image: url('../img/kralj.jpg?1429877587');
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-position: 100% 50%;
  height: 200px;
  width: 150px;
  position: relative;
  float: right;
}
.zgodbica p {
  margin-top: 10px;
  font-size: 18px;
  line-height: 20px;
}

body .kakovostWrap {
  margin-top: 20px;
  height: auto;
  border: 3px solid #603912;
  padding: 5px;
}
body .kakovostWrap .kakovostInner {
  border: 1px solid #603912;
  height: 100%;
  padding: 10px;
}
body .kakovostWrap .kakovostInner .badgee {
  width: 50%;
  height: 120px;
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  position: relative;
  float: left;
}
body .kakovostWrap .kakovostInner .kr {
  background-image: url('../img/badge1.jpg?1428517766');
}
body .kakovostWrap .kakovostInner .geo {
  background-image: url('../img/badge2.jpg?1428517819');
}

.clear {
  clear: both;
}

.sonet {
  background-image: url('../img/sonet.jpg?1429877624');
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-position: 50% 0;
  width: 100%;
  height: 300px;
}

.forma .sporocilo {
  margin-top: 15px;
  width: 99%;
}

.input__field {
  position: relative;
  display: block;
  float: right;
  padding: 5px;
  width: 60%;
  border: none;
  border-radius: 0;
  background: #f0f0f0;
  color: #aaa;
  font-family: chapReg;
  -webkit-appearance: none;
  /* for box shadows to show on iOS */
  cursor: pointer;
  z-index: 999;
}

.input__field:focus {
  outline: none;
}

.input__label {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding-left: 10px;
  width: 40%;
  color: #603912;
  font-weight: bold;
  font-family: ffy;
  font-size: 20px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.input__label-content {
  position: relative;
  display: block;
  padding: 14px 0;
  width: 100%;
}

.graphic {
  position: absolute;
  top: 0;
  left: 0;
  fill: none;
}

.icon {
  color: #ddd;
  font-size: 150%;
}

/* Individual styles */
/* Haruki */
.input__field--haruki {
  width: 100%;
  background: transparent;
  color: #603912;
  outline: none;
  border: none;
}

.input__label--haruki {
  position: absolute;
  width: 100%;
  text-align: left;
  pointer-events: none;
}

.input__label-content--haruki {
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
}

.input__label--haruki::before,
.input__label--haruki::after {
  content: '';
  position: absolute;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 1px;
  background: #603912;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
}

.input__label--haruki::before {
  top: 0;
}

.input__label--haruki::after {
  bottom: 0;
}

.input__field--haruki:focus + .input__label--haruki .input__label-content--haruki,
.input--filled .input__label-content--haruki {
  -webkit-transform: translate3d(0, -90%, 0);
  transform: translate3d(0, -90%, 0);
}

.input__field--haruki:focus + .input__label--haruki::before,
.input--filled .input__label--haruki::before {
  -webkit-transform: translate3d(0, -3px, 0);
  transform: translate3d(0, -3px, 0);
}

.input__field--haruki:focus + .input__label--haruki::after,
.input--filled .input__label--haruki::after {
  -webkit-transform: translate3d(0, 3px, 0);
  transform: translate3d(0, 3px, 0);
}

.podatkiWrap {
  margin-top: 15px;
}
.podatkiWrap p {
  font-size: 20px;
  line-height: 22px;
}

#kontakt {
  margin-top: 15px;
}
#kontakt span {
  position: relative;
  display: block;
}
#kontakt .email {
  margin-top: 15px;
}
#kontakt #submit {
  width: 100%;
  background-color: #603912;
  color: white;
  outline: none;
  text-align: center;
  border: none;
  padding: 5px 0 5px 0;
  margin-top: 10px;
  font-size: 20px;
}

::-webkit-input-placeholder {
  font-family: ffy;
  font-size: 16px;
}

:-moz-placeholder {
  /* Firefox 18- */
  font-family: ffy;
  font-size: 16px;
}

::-moz-placeholder {
  /* Firefox 19+ */
  font-family: ffy;
  font-size: 16px;
}

:-ms-input-placeholder {
  font-family: ffy;
  font-size: 16px;
}

.social {
  margin-top: 20px;
  margin-bottom: 20px;
}
.social h4 {
  text-align: center;
}
.social .iconsWrap {
  width: 190px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.social .iconsWrap a {
  display: inline-block;
}
.social .iconsWrap a div {
  width: 50px;
  height: 50px;
  border: 1px solid #603912;
  display: inline-block;
}
.social .iconsWrap a:not(:last-of-type) {
  margin-right: 15px;
}
.social .iconsWrap a:first-of-type {
  background-image: url('../img/tripr.svg?1430062653');
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 80% 80%;
}
.social .iconsWrap a:nth-of-type(2) {
  background-image: url('../img/fbr.svg?1430062674');
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 70% 70%;
}
.social .iconsWrap a:nth-of-type(3) {
  background-image: url('../img/zmajr.svg?1430062696');
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 70% 70%;
}

.catering {
  width: 100%;
  margin-top: 15px;
  margin-bottom: 15px;
  padding: 5px 0 5px 0;
  color: white;
  text-align: center;
  font-size: 20px;
  background-color: #603912;
  text-transform: uppercase;
  font-family: chapBold;
}

body .fullScreen {
  height: 100%;
  padding-bottom: 0;
}
