@charset "UTF-8";
/*
* ArsLuna Web Pages
*
* Main CSS
* All Screens
*
* Author : Sašo Štibelj
* Company: Ars Luna, Helena Štibelj s.p.
* Address: Čepulje 16
*          4000 KRANJ
*          SLOVENIA
* Website: http://www.arsluna.si, http://www.arsluna.com
* Mail   : info@arsluna.si, info@arsluna.com
* License: Commercial
*
*/
/******************************************************************************/
/*
* ArsLuna Web Pages
*
* Main CSS
* All Screens Vars
*
* Author : Sašo Štibelj
* Company: Ars Luna, Helena Štibelj s.p.
* Address: Čepulje 16
*          4000 KRANJ
*          SLOVENIA
* Website: http://www.arsluna.si, http://www.arsluna.com
* Mail   : info@arsluna.si, info@arsluna.com
* License: Commercial
*
*/
/******************************************************************************/
/* Body */
/* font_sizes */
/**/
/* Wrappers */
/**/
/**/
/**/
/**/
/**/
/******************************************************************************/
/* Smartmenus                                                                 */
/******************************************************************************/
/**/
/******************************************************************************/
/**/
/******************************************************************************/
/* Grid                                                                       */
/******************************************************************************/
/* UI Tabs */
/* Autocomplete */
/* Input Fields */
/******************************************************************************/
/* Buttons                                                                    */
/******************************************************************************/
/* Button Primary */
/* Button More */
/* Button More Second */
/* Button News Subscription */
/* Button Search */
/* Pageindex */
/* Button One */
/* Button Two */
/* Button Three */
/* Button Four */
/* Button Five */
/* Button Six */
/******************************************************************************/
/* Ecommerce                                                                  */
/******************************************************************************/
/* Grid */
/******************************************************************************/
/* Responsive                                                                 */
/******************************************************************************/
/* Size xl                                                                    */
/******************************************************************************/
/* font_sizes */
/**/
/******************************************************************************/
/* Size l                                                                     */
/******************************************************************************/
/* font_sizes */
/**/
/******************************************************************************/
/* Size m                                                                     */
/******************************************************************************/
/* font_sizes */
/**/
/******************************************************************************/
/* Size s                                                                     */
/******************************************************************************/
/* font_sizes */
/**/
/******************************************************************************/
/* Size xs                                                                    */
/******************************************************************************/
/* font_sizes */
/**/
/******************************************************************************/
/* Spaces                                                                     */
/******************************************************************************/
/******************************************************************************/
/* Partials                                                                   */
/******************************************************************************/
/*
* ArsLuna Web Pages
*
* Main CSS
* All Screens
* Common Partial
*
* Author : Sašo Štibelj
* Company: Ars Luna, Helena Štibelj s.p.
* Address: Čepulje 16
*          4000 KRANJ
*          SLOVENIA
* Website: http://www.arsluna.si, http://www.arsluna.com
* Mail   : info@arsluna.si, info@arsluna.com
* License: Commercial
*
*/
*,
*:after,
*:before {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none !important;
}

[contenteditable=true]:focus {
  outline: none !important;
}

input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=checkbox],
input[type=radio] {
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
}

:not([type=checkbox]) *:focus {
  outline: none;
}

/******************************************************************************/
/* Wrappers                                                                   */
/******************************************************************************/
/*
* Flexbox removed because of IE 11BUG:
* Workaround for a bug in IE11, where a proportionally sized image wouldn't shrink the height of its parent flex-item. See https://connect.microsoft.com/IE/feedbackdetail/view/891815
*/
/******************************************************************************/
.left {
  float: left !important;
}

.left-content {
  text-align: left;
}

.right {
  float: right !important;
}

.right-content {
  text-align: right;
}

.centered {
  display: inline-block;
  left: 50%;
  position: relative;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.centered-content {
  text-align: center;
}

.middle {
  vertical-align: middle;
}

.block {
  display: block;
}

.left-top {
  bottom: auto;
  left: 0;
  right: auto;
  top: 0;
  -webkit-transform: translate(0%, 0%);
  -moz-transform: translate(0%, 0%);
  -ms-transform: translate(0%, 0%);
  -o-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
}

.center-top {
  bottom: auto;
  left: 50%;
  right: auto;
  top: 0;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.right-top {
  bottom: auto;
  left: auto;
  right: 0;
  top: 0;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

.left-center {
  bottom: auto;
  left: 0;
  right: auto;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.center-center {
  bottom: auto;
  left: 50%;
  right: auto;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(-50%, -50%);
}

.right-center {
  bottom: auto;
  left: auto;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.left-bottom {
  bottom: 0;
  left: 0;
  right: auto;
  top: auto;
  transform: translate(0%, 0%);
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

.center-bottom {
  bottom: 0;
  left: 50%;
  right: auto;
  top: auto;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.right-bottom {
  bottom: 0;
  left: auto;
  right: 0;
  top: auto;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}

.display-none {
  display: none !important;
}

.striketrough {
  text-decoration: line-through;
}

.alert,
.error,
.errormessage {
  color: #FF0000 !important;
}

/* div displayed as table */
.div-table {
  display: table;
}

.div-inline-table {
  display: inline-table;
  margin-right: 10px;
}

.div-table-caption-top {
  caption-side: top;
  display: table-caption;
}

.div-table-caption-bottom {
  caption-side: bottom;
  display: table-caption;
}

.div-table-row {
  display: table-row;
}

.div-table-cell {
  display: table-cell;
}

.div-inline-block {
  display: inline-block;
  vertical-align: top;
}

ul.ul-listed-outside {
  list-style-position: outside;
  padding-left: 1.3em;
}
ul.ul-listed-outside.disc {
  list-style-type: disc;
}
ul.ul-listed-outside.circle {
  list-style-type: circle;
}
ul.ul-listed-outside.square {
  list-style-type: square;
}

.no-overflow {
  overflow: hidden;
}

.no-padding-top {
  padding-top: 0 !important;
}

.no-padding-bottom {
  padding-bottom: 0 !important;
}

.upn_qr_code {
  text-align: center;
}
.upn_qr_code img {
  height: auto;
  width: 250px;
}

/*
* ArsLuna Web Pages
*
* Smartmenus Core CSS
* All Screens
* Common Partial
*
* Author : Sašo Štibelj
* Company: Ars Luna, Helena Štibelj s.p.
* Address: Čepulje 16
*          4000 KRANJ
*          SLOVENIA
* Website: http://www.arsluna.si, http://www.arsluna.com
* Mail   : info@arsluna.si, info@arsluna.com
* License: Commercial
*
*/
/* Mobile first layout SmartMenus Core CSS (it's not recommended editing these rules)
   You need this once per page no matter how many menu trees or different themes you use.
-------------------------------------------------------------------------------------------*/
.sm {
  position: relative;
  z-index: 9999;
}

.sm,
.sm li,
.sm ul {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: normal;
  direction: ltr;
  text-align: left;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.sm-rtl,
.sm-rtl li,
.sm-rtl ul {
  direction: rtl;
  text-align: right;
}

.sm > li > h1,
.sm > li > h2,
.sm > li > h3,
.sm > li > h4,
.sm > li > h5,
.sm > li > h6 {
  margin: 0;
  padding: 0;
}

.sm ul {
  display: none;
}

.sm a,
.sm li {
  position: relative;
}

.sm a {
  display: block;
}

.sm a.disabled {
  cursor: not-allowed;
}

.sm:after {
  content: " ";
  display: block;
  height: 0;
  font: 0px/0 serif;
  clear: both;
  visibility: hidden;
  overflow: hidden;
}

.sm,
.sm *,
.sm *:after,
.sm *:before {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*
* ArsLuna Web Pages
*
* Main CSS
* All Screens
* Template Partial
*
* Author : Sašo Štibelj
* Company: Ars Luna, Helena Štibelj s.p.
* Address: Čepulje 16
*          4000 KRANJ
*          SLOVENIA
* Website: http://www.arsluna.si, http://www.arsluna.com
* Mail   : info@arsluna.si, info@arsluna.com
* License: Commercial
*
*/
/******************************************************************************/
/* Basic                                                                      */
/******************************************************************************/
#arsluna_pagecontent_edit_area,
body {
  background: #F9F0DF;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  color: #423100;
  font-family: "Roboto", sans-serif;
  font-size: 100%;
  font-weight: 400;
  line-height: 1.5em;
  text-align: justify;
}

#arsluna_pagecontent_edit_area.homepage,
#skel-layers-wrapper,
.homepage {
  background: #F9F0DF;
  background-position: top center;
  background-size: cover;
}

#cart-print,
#cart-print #skel-layers-wrapper {
  background: #fff none !important;
}

/******************************************************************************/
/* Container                                                                  */
/******************************************************************************/
.container {
  display: block;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
.container.full {
  width: 100%;
}

/******************************************************************************/
/* Default texts                                                              */
/******************************************************************************/
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #423100;
  font-weight: normal;
  line-height: 1.5em;
  text-align: center;
  margin: 0 0 1em;
}

h1 {
  font-family: "Fondamento", cursive;
  font-size: 44px;
}

h2 {
  font-family: "Fondamento", cursive;
  font-size: 40px;
}

h3 {
  font-family: "Fondamento", cursive;
  font-size: 36px;
}

h4 {
  font-family: "Fondamento", cursive;
  font-size: 32px;
}

h5 {
  font-family: "Fondamento", cursive;
  font-size: 28px;
}

h6 {
  font-family: "Fondamento", cursive;
  font-size: 24px;
}

h1 a,
h1 a:hover,
h1 a:visited,
h2 a,
h2 a:hover,
h2 a:visited,
h3 a,
h3 a:hover,
h3 a:visited,
h4 a,
h4 a:hover,
h4 a:visited,
h5 a,
h5 a:hover,
h5 a:visited,
h6 a,
h6 a:hover,
h6 a:visited {
  color: inherit;
  text-decoration: none;
}

p {
  font-size: 16px;
  line-height: 1.5em;
}

a,
a:hover a:visited {
  color: inherit;
  text-decoration: none;
}

b,
strong {
  font-weight: bold;
}

em,
i {
  font-style: italic;
}

sub {
  font-size: 0.8em;
  position: relative;
  top: 0.5em;
}

sup {
  font-size: 0.8em;
  position: relative;
  top: -0.5em;
}

/******************************************************************************/
/* Wrappers                                                                   */
/******************************************************************************/
#header-wrapper {
  background: transparent none;
  border-bottom: 0 none;
  color: inherit;
  height: 180px;
  line-height: 110px;
  position: relative;
  z-index: 4;
}
#header-wrapper .container {
  overflow: visible;
  padding: 0;
}
#header-wrapper h1,
#header-wrapper h2,
#header-wrapper h3,
#header-wrapper h4,
#header-wrapper h5,
#header-wrapper h6 {
  color: inherit;
  margin-bottom: 0;
}
#header-wrapper h1 {
  font-size: 56px;
}

#banner-wrapper {
  background: transparent;
  color: inherit;
  position: relative;
}
#banner-wrapper .container {
  padding: 0;
}
#banner-wrapper h1,
#banner-wrapper h2,
#banner-wrapper h3,
#banner-wrapper h4,
#banner-wrapper h5,
#banner-wrapper h6 {
  color: inherit;
}

#nav-wrapper {
  background: #423100;
  color: #F9F0DF;
  height: 70px;
  position: relative;
}
#nav-wrapper .container {
  background-color: #423100;
  height: 70px;
  overflow: visible;
  padding: 0;
}
#nav-wrapper h1,
#nav-wrapper h2,
#nav-wrapper h3,
#nav-wrapper h4,
#nav-wrapper h5,
#nav-wrapper h6 {
  color: #F9F0DF;
}

#features-wrapper {
  background: transparent;
  color: inherit;
  display: none;
  position: relative;
}
#features-wrapper .container {
  padding: 0;
}

#main-wrapper {
  background: #F9F0DF;
  color: inherit;
  overflow: hidden;
  position: relative;
}
#main-wrapper .container {
  padding: 20px 0;
}
#main-wrapper .container:first-child {
  padding: 40px 0 20px;
}
#main-wrapper .container:last-child {
  padding: 20px 0 40px;
}
#main-wrapper h1,
#main-wrapper h2,
#main-wrapper h3,
#main-wrapper h4,
#main-wrapper h5,
#main-wrapper h6 {
  color: #423100;
}

#footer-wrapper {
  background: #423100;
  color: #F9F0DF;
  font-size: 16px;
  position: relative;
}
#footer-wrapper .container {
  padding: 0;
}
#footer-wrapper p {
  font-size: 16px;
}
#footer-wrapper h1,
#footer-wrapper h2,
#footer-wrapper h3,
#footer-wrapper h4,
#footer-wrapper h5,
#footer-wrapper h6 {
  color: #F9F0DF;
}

dl,
ol,
p,
table,
ul {
  margin-bottom: 0.5em;
}

hr {
  border: 0;
  border-top: solid 1px #ddd;
}

blockquote {
  border-left: solid 0.5em #ddd;
  font-style: italic;
  padding: 1em 0 1em 2em;
}

br.clear {
  clear: both;
}

/* Sections/Articles */
article,
section {
  overflow: hidden;
}

article > :last-child,
section > :last-child {
  margin-bottom: 0;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

/* Images */
img {
  line-height: 0;
  vertical-align: middle;
}
img.scale-with-grid {
  height: auto;
  max-width: 100%;
  outline: 0;
}

.arsluna-image-wrapper {
  display: block;
}
.arsluna-image-wrapper.image-full img {
  display: block;
  width: 100%;
}
.arsluna-image-wrapper.image-left {
  text-align: left;
}
.arsluna-image-wrapper.image-center {
  text-align: center;
}
.arsluna-image-wrapper.image-center img {
  margin: 0 auto;
  width: auto;
}
.arsluna-image-wrapper.image-right {
  text-align: right;
}
.arsluna-image-wrapper img {
  display: block;
  width: auto;
}

.arsluna-button-wrapper {
  display: block;
}
.arsluna-button-wrapper.button-left {
  text-align: left;
}
.arsluna-button-wrapper.button-center {
  text-align: center;
}
.arsluna-button-wrapper.button-right {
  text-align: right;
}

.slika {
  display: block;
  margin-top: 10px;
  margin-bottom: 0;
  padding: 5px 0;
  text-align: center;
}

.slikamidleft {
  float: left;
  margin: 0;
  padding: 5px 10px 5px 0;
  position: relative;
}

.slikamidright {
  float: right;
  margin: 0;
  padding: 5px 0 5px 10px;
  position: relative;
}

.slikatablecentered {
  margin: 0 auto;
}

.page-type-foto-image-link {
  cursor: url("images/zoomin.png"), auto;
}

.photo-mid-image-link-block {
  cursor: url("images/zoomin.png"), auto;
  display: block;
  text-align: center;
}

.photo-mid-image-link-left {
  cursor: url("images/zoomin.png"), auto;
  float: left;
  overflow: hidden;
  padding-right: 0.5em;
  max-width: 50%;
}

.photo-mid-image-link-right {
  cursor: url("images/zoomin.png"), auto;
  float: right;
  overflow: hidden;
  padding-left: 0.5em;
  max-width: 50%;
}

/******************************************************************************/
/* UI Tabs                                                                    */
/******************************************************************************/
.ui-tabs .ui-widget-content {
  background: transparent none;
  border: 0 none;
}

.ui-tabs-nav {
  border-bottom: #E0E0E0;
}

.ui-tabs-nav > li.ui-state-default {
  /*
  background: #267376;
  background: -moz-linear-gradient(#267376 0%, #37aaae 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #267376), color-stop(100%, #37aaae));
  background: -webkit-linear-gradient(#267376 0%, #37aaae 100%);
  background: linear-gradient(#267376 0%, #37aaae 100%);
  */
  background: #FFF;
  background: -moz-linear-gradient(#FFF 0%, #F0F0F0 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #FFF), color-stop(100%, #F0F0F0));
  background: -webkit-linear-gradient(#FFF 0%, #F0F0F0 100%);
  background: linear-gradient(#FFF 0%, #F0F0F0 100%);
  border: 1px solid #000;
  color: #000;
  font-weight: normal;
}

.ui-tabs-nav > li.ui-state-default a,
.ui-tabs-nav > li.ui-state-default a:link {
  color: #000 !important;
}

.ui-tabs-nav > li.ui-state-default:hover {
  background: #F0F0F0;
  background: -moz-linear-gradient(#F0F0F0 0%, #E0E0E0 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #E0E0E0));
  background: -webkit-linear-gradient(#F0F0F0 0%, #E0E0E0 100%);
  background: linear-gradient(#F0F0F0 0%, #E0E0E0 100%);
  border: 1px solid #000;
  color: #000;
  font-weight: normal;
}

.ui-tabs-nav > li.ui-state-active {
  background: #F0F0F0;
  background: -moz-linear-gradient(#F0F0F0 0%, #E0E0E0 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #E0E0E0));
  background: -webkit-linear-gradient(#F0F0F0 0%, #E0E0E0 100%);
  background: linear-gradient(#F0F0F0 0%, #E0E0E0 100%);
  border: 1px solid #000;
  color: #000;
  font-weight: normal;
}

.ui-tabs-nav > li.ui-state-active a,
.ui-tabs-nav > li.ui-state-active a:link,
.ui-tabs-nav > li.ui-state-focus a:link {
  color: #000 !important;
}

/******************************************************************************/
/* Autocomplete                                                               */
/******************************************************************************/
.ui-autocomplete {
  background: #FFF;
  border: 1px solid #000;
}
.ui-autocomplete > li {
  color: #000;
}
.ui-autocomplete > li.ui-state-focus {
  background: #F0F0F0;
  background: -moz-linear-gradient(#F0F0F0 0%, #E0E0E0 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #E0E0E0));
  background: -webkit-linear-gradient(#F0F0F0 0%, #E0E0E0 100%);
  background: linear-gradient(#F0F0F0 0%, #E0E0E0 100%);
  color: #000;
}

/******************************************************************************/
/* Partials                                                                   */
/******************************************************************************/
/*
Smartmenus *****/
/*
* ArsLuna Web Pages
*
* Smartmenus CSS
* All Screens
* Common Partial
*
* Author : Sašo Štibelj
* Company: Ars Luna, Helena Štibelj s.p.
* Address: Čepulje 16
*          4000 KRANJ
*          SLOVENIA
* Website: http://www.arsluna.si, http://www.arsluna.com
* Mail   : info@arsluna.si, info@arsluna.com
* License: Commercial
*
*/
/******************************************************************************/
.sm-blue {
  background: transparent;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  display: block;
  margin-bottom: 0;
  padding-top: 7px;
  position: relative;
}

.sm-blue a {
  color: #F9F0DF;
  font-family: "Fondamento", cursive;
  display: block;
  overflow: hidden;
}

.sm-blue a,
.sm-blue a:active,
.sm-blue a:focus,
.sm-blue a:hover {
  padding: 10px 20px;
  /* make room for the toggle button (sub indicator) */
  padding-right: 58px;
  color: #F9F0DF;
  font-size: 24px;
  font-weight: normal;
  line-height: 1.5em;
  text-decoration: none;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}

.sm-blue a.current {
  color: #FFF;
}

.sm-blue a.current .menuitem-text .menuitem-text-main {
  border-bottom: 1px solid #FFF;
}

.sm-blue a.disabled {
  color: #a1d1e8;
}

.sm-blue a span.sub-arrow {
  background: rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  bottom: 0;
  font: bold 24px/48px monospace !important;
  height: 48px;
  left: auto;
  margin-top: -17px;
  overflow: hidden;
  position: absolute;
  right: 4px;
  text-align: center;
  text-shadow: none;
  top: auto;
  width: 48px;
}

.sm-blue a.highlighted span.sub-arrow:before {
  display: block;
  content: "-";
}

/* Leva manijska opcija - zaokroževanje */
.sm-blue > li:first-child > :not(ul) a,
.sm-blue > li:first-child > a {
  -webkit-border-radius: 0 0 0 0;
  -moz-border-radius: 0 0 0 0;
  -ms-border-radius: 0 0 0 0;
  -o-border-radius: 0 0 0 0;
  border-radius: 0 0 0 0;
}

/* Desna manijska opcija - zaokroževanje */
.sm-blue > li:last-child > *:not(ul) a,
.sm-blue > li:last-child > a,
.sm-blue > li:last-child > ul,
.sm-blue > li:last-child > ul > li:last-child > *:not(ul) a,
.sm-blue > li:last-child > ul > li:last-child > a,
.sm-blue > li:last-child > ul > li:last-child > ul,
.sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > *:not(ul) a,
.sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > a,
.sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > ul,
.sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > *:not(ul) a,
.sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > a,
.sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > ul,
.sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > *:not(ul) a,
.sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > a,
.sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > ul {
  -webkit-border-radius: 0 0 0 0;
  -moz-border-radius: 0 0 0 0;
  -ms-border-radius: 0 0 0 0;
  -o-border-radius: 0 0 0 0;
  border-radius: 0 0 0 0;
}

.sm-blue > li:last-child > *:not(ul) a.highlighted,
.sm-blue > li:last-child > a.highlighted,
.sm-blue > li:last-child > ul > li:last-child > *:not(ul) a.highlighted,
.sm-blue > li:last-child > ul > li:last-child > a.highlighted,
.sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > *:not(ul) a.highlighted,
.sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > a.highlighted,
.sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > *:not(ul) a.highlighted,
.sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > a.highlighted,
.sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > *:not(ul) a.highlighted,
.sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > a.highlighted {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}

.sm-blue ul {
  background: #FFFDEC;
}

.sm-blue ul a,
.sm-blue ul a:active,
.sm-blue ul a:focus,
.sm-blue ul a:hover {
  background: transparent;
  color: #423100 !important;
  font-size: 24px;
  text-shadow: none;
  border-left: 8px solid transparent;
}

.sm-blue ul a.current,
.sm-blue ul a:active,
.sm-blue ul a:focus,
.sm-blue ul a:hover {
  /* background: rgba(102, 102, 102, 0.1); */
  /*
  background: -moz-linear-gradient(#fff 0%, #fff 100%);
  background: -o-linear-gradient(#fff 0%, #fff 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #fff));
  background: -webkit-linear-gradient(#fff 0%, #fff 100%);
  background: linear-gradient(#fff 0%, #fff 100%);
  */
  border-bottom: 1px solid #423100 !important;
  color: #423100 !important;
}

.sm-blue ul a.current {
  /*
  background: #006892;
  background-image: -webkit-gradient(linear, to bottom, to top, color-stop(0%, #006188), color-stop(100%, #006f9c));
  background-image: -webkit-linear-gradient(to bottom, #006188, #006f9c);
  background-image: -moz-linear-gradient(to bottom, #006188, #006f9c);
  background-image: -o-linear-gradient(to bottom, #006188, #006f9c);
  background-image: linear-gradient(to bottom, #006188, #006f9c);
  */
  color: #FFF;
}

.sm-blue ul a.disabled {
  color: #b3b3b3;
}

.sm-blue ul ul {
  background: #FFFDEC;
  margin: 0 auto;
}

.sm-blue ul ul a,
.sm-blue ul ul a:active,
.sm-blue ul ul a:focus,
.sm-blue ul ul a:hover {
  border-left: 16px solid transparent;
}

.sm-blue ul ul ul a,
.sm-blue ul ul ul a:active,
.sm-blue ul ul ul a:focus,
.sm-blue ul ul ul a:hover {
  border-left: 24px solid transparent;
}

.sm-blue ul ul ul ul a,
.sm-blue ul ul ul ul a:active,
.sm-blue ul ul ul ul a:focus,
.sm-blue ul ul ul ul a:hover {
  border-left: 32px solid transparent;
}

.sm-blue ul ul ul ul ul a,
.sm-blue ul ul ul ul ul a:active,
.sm-blue ul ul ul ul ul a:focus,
.sm-blue ul ul ul ul ul a:hover {
  border-left: 40px solid transparent;
}

.sm-blue ul li {
  /* border-top: 1px solid rgba(0, 0, 0, 0.05); */
}

.sm-blue ul li:first-child {
  border-top: 0;
}

/* hide menu state checkbox (keep it visible to screen readers) */
#main-menu-state {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

@media (min-width: 943px) {
  /* Switch to desktop layout
  -----------------------------------------------
     These transform the menu tree from
     collapsible to desktop (navbar + dropdowns)
  -----------------------------------------------*/
  .sm {
    position: relative;
    z-index: 9999;
  }
  /* start... (it's not recommended editing these rules) */
  .sm-blue ul {
    position: absolute;
    width: 12em;
  }
  .sm-blue li {
    float: left;
  }
  .sm-blue.sm-rtl li {
    float: right;
  }
  .sm-blue ul li,
  .sm-blue.sm-rtl ul li,
  .sm-blue.sm-vertical li {
    float: none;
  }
  .sm-blue a {
    white-space: nowrap;
  }
  .sm-blue ul a,
  .sm-blue.sm-vertical a {
    white-space: normal;
  }
  .sm-blue .sm-nowrap > li > :not(ul) a,
  .sm-blue .sm-nowrap > li > a {
    white-space: nowrap;
  }
  /* ...end */
  .sm-blue {
    background: transparent;
    /*
    background-image: -webkit-gradient(linear, to bottom, to top, color-stop(0%, #3298c8), color-stop(100%, #2e8cb8));
    background-image: -webkit-linear-gradient(to bottom, #3298c8, #2e8cb8);
    background-image: -moz-linear-gradient(to bottom, #3298c8, #2e8cb8);
    background-image: -o-linear-gradient(to bottom, #3298c8, #2e8cb8);
    background-image: linear-gradient(to bottom, #3298c8, #2e8cb8);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 8px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    */
  }
  .sm-blue a,
  .sm-blue a.highlighted,
  .sm-blue a:active,
  .sm-blue a:focus,
  .sm-blue a:hover {
    background: transparent;
    color: #F9F0DF;
    padding: 10px 24px;
    /*
    background: #3092c0;
    background-image: -webkit-gradient(linear, to bottom, to top, color-stop(0%, #3298c8), color-stop(100%, #2e8cb8));
    background-image: -webkit-linear-gradient(to bottom, #3298c8, #2e8cb8);
    background-image: -moz-linear-gradient(to bottom, #3298c8, #2e8cb8);
    background-image: -o-linear-gradient(to bottom, #3298c8, #2e8cb8);
    background-image: linear-gradient(to bottom, #3298c8, #2e8cb8);
    */
    text-align: center;
  }
  .sm-blue > li.active a,
  .sm-blue a.highlighted,
  .sm-blue a:active,
  .sm-blue a:focus,
  .sm-blue a:hover {
    /*
    background: #2b82ac;
    background-image: -webkit-gradient(linear, to bottom, to top, color-stop(0%, #2d89b4), color-stop(100%, #297ca3));
    background-image: -webkit-linear-gradient(to bottom, #2d89b4, #297ca3);
    background-image: -moz-linear-gradient(to bottom, #2d89b4, #297ca3);
    background-image: -o-linear-gradient(to bottom, #2d89b4, #297ca3);
    background-image: linear-gradient(to bottom, #2d89b4, #297ca3);
    */
    color: #FFF;
  }
  .sm-blue > li.active a .menuitem-text .menuitem-text-main,
  .sm-blue a.highlighted .menuitem-text .menuitem-text-main,
  .sm-blue a:active .menuitem-text .menuitem-text-main,
  .sm-blue a:focus .menuitem-text .menuitem-text-main,
  .sm-blue a:hover .menuitem-text .menuitem-text-main {
    border-bottom: 1px solid #FFF;
  }
  .sm-blue a.current {
    /*
    background: #006892;
    background-image: -webkit-gradient(linear, to bottom, to top, color-stop(0%, #006188), color-stop(100%, #006f9c));
    background-image: -webkit-linear-gradient(to bottom, #006188, #006f9c);
    background-image: -moz-linear-gradient(to bottom, #006188, #006f9c);
    background-image: -o-linear-gradient(to bottom, #006188, #006f9c);
    background-image: linear-gradient(to bottom, #006188, #006f9c);
    */
    color: #FFF;
  }
  .sm-blue a.current .menuitem-text .menuitem-text-main {
    border-bottom: 1px solid #FFF;
  }
  .sm-blue a.disabled {
    background: #3092c0;
    background-image: -webkit-gradient(linear, to bottom, to top, color-stop(0%, #3298c8), color-stop(100%, #2e8cb8));
    background-image: -webkit-linear-gradient(to bottom, #3298c8, #2e8cb8);
    background-image: -moz-linear-gradient(to bottom, #3298c8, #2e8cb8);
    background-image: -o-linear-gradient(to bottom, #3298c8, #2e8cb8);
    background-image: linear-gradient(to bottom, #3298c8, #2e8cb8);
    color: #a1d1e8;
  }
  .sm-blue a span.sub-arrow {
    background: transparent;
    border-width: 5px;
    border-color: #F9F0DF transparent transparent transparent;
    border-style: solid dashed dashed dashed;
    bottom: 0;
    height: 0;
    left: 50%;
    margin-left: -5px;
    margin-top: -17px;
    position: absolute;
    right: auto;
    top: auto;
    width: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
  }
  .sm-blue a.highlighted span.sub-arrow:before {
    display: none;
  }
  .sm-blue a.highlighted span.sub-arrow,
  .sm-blue a:active span.sub-arrow,
  .sm-blue a:focus span.sub-arrow,
  .sm-blue a:hover span.sub-arrow,
  sm-blue > li.active a span.sub-arrow {
    border-top-color: #FFF;
  }
  .sm-blue > li:first-child > :not(ul) a,
  .sm-blue > li:first-child > a {
    -webkit-border-radius: 0 0 0 0;
    -moz-border-radius: 0 0 0 0;
    -ms-border-radius: 0 0 0 0;
    -o-border-radius: 0 0 0 0;
    border-radius: 0 0 0 0;
  }
  .sm-blue > li:last-child > :not(ul) a,
  .sm-blue > li:last-child > a {
    -webkit-border-radius: 0 0 0 0 !important;
    -moz-border-radius: 0 0 0 0 !important;
    -ms-border-radius: 0 0 0 0 !important;
    -o-border-radius: 0 0 0 0 !important;
    border-radius: 0 0 0 0 !important;
  }
  .sm-blue > li {
    border-left: 0;
    width: 25%;
  }
  .sm-blue > li:first-child {
    border-left: 0;
  }
  .sm-blue ul {
    border: 1px solid #a8a8a8;
    padding: 7px 0;
    background: #FFFDEC;
    -webkit-border-radius: 0 0 4px 4px;
    -moz-border-radius: 0 0 4px 4px;
    -ms-border-radius: 0 0 4px 4px;
    -o-border-radius: 0 0 4px 4px;
    border-radius: 0 0 4px 4px;
    -webkit-box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
    margin: 0 auto !important;
  }
  .sm-blue ul li {
    display: block;
  }
  .sm-blue ul ul {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    background: #FFFDEC;
  }
  .sm-blue ul a,
  .sm-blue ul a.highlighted,
  .sm-blue ul a:active,
  .sm-blue ul a:focus,
  .sm-blue ul a:hover {
    background: transparent;
    border: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important;
    border-radius: 0 !important;
    color: #423100 !important;
    display: block;
    padding: 9px 23px;
    text-align: center;
  }
  .sm-blue ul a.highlighted,
  .sm-blue ul a:active,
  .sm-blue ul a:focus,
  .sm-blue ul a:hover {
    /* background: rgba(255,255,255,0.5); */
    /*
    background-image: -webkit-gradient(linear, to bottom, to top, color-stop(0%, #3298c8), color-stop(100%, #2e8cb8));
    background-image: -webkit-linear-gradient(to bottom, #3298c8, #2e8cb8);
    background-image: -moz-linear-gradient(to bottom, #3298c8, #2e8cb8);
    background-image: -o-linear-gradient(to bottom, #3298c8, #2e8cb8);
    background-image: linear-gradient(to bottom, #3298c8, #2e8cb8);
    */
    color: #423100 !important;
  }
  .sm-blue ul a.highlighted .menuitem-text-main,
  .sm-blue ul a:active .menuitem-text-main,
  .sm-blue ul a:focus .menuitem-text-main,
  .sm-blue ul a:hover .menuitem-text-main {
    border-bottom: 1px solid #423100 !important;
  }
  .sm-blue ul a.current {
    /* background: rgba(255,255,255,0.5); */
    /*
    background-image: -webkit-gradient(linear, to bottom, to top, color-stop(0%, #006188), color-stop(100%, #006f9c));
    background-image: -webkit-linear-gradient(to bottom, #006188, #006f9c);
    background-image: -moz-linear-gradient(to bottom, #006188, #006f9c);
    background-image: -o-linear-gradient(to bottom, #006188, #006f9c);
    background-image: linear-gradient(to bottom, #006188, #006f9c);
    */
    border-bottom: 1px #423100 !important;
    color: #423100 !important;
  }
  .sm-blue ul a.disabled {
    background: white;
    color: #b3b3b3;
  }
  .sm-blue ul a span.sub-arrow {
    top: 50%;
    margin-top: -5px;
    bottom: auto;
    left: auto;
    margin-left: 0;
    right: 10px;
    border-style: dashed dashed dashed solid;
    border-color: transparent transparent transparent #a1d1e8;
  }
  .sm-blue ul li {
    border: 0;
  }
  .sm-blue span.scroll-down,
  .sm-blue span.scroll-up {
    position: absolute;
    display: none;
    visibility: hidden;
    overflow: hidden;
    background: white;
    height: 20px;
  }
  .sm-blue span.scroll-down-arrow,
  .sm-blue span.scroll-up-arrow {
    position: absolute;
    top: -2px;
    left: 50%;
    margin-left: -8px;
    width: 0;
    height: 0;
    overflow: hidden;
    border-width: 8px;
    border-style: dashed dashed solid dashed;
    border-color: transparent transparent #2b82ac transparent;
  }
  .sm-blue span.scroll-down-arrow {
    top: 6px;
    border-style: solid dashed dashed dashed;
    border-color: #FFF transparent transparent transparent;
  }
  .sm-blue.sm-rtl.sm-vertical a span.sub-arrow {
    right: auto;
    left: 10px;
    border-style: dashed solid dashed dashed;
    border-color: transparent #a1d1e8 transparent transparent;
  }
  .sm-blue.sm-rtl > li:first-child > :not(ul) a,
  .sm-blue.sm-rtl > li:first-child > a {
    -webkit-border-radius: 0 8px 8px 0;
    -moz-border-radius: 0 8px 8px 0;
    -ms-border-radius: 0 8px 8px 0;
    -o-border-radius: 0 8px 8px 0;
    border-radius: 0 8px 8px 0;
  }
  .sm-blue.sm-rtl > li:last-child > :not(ul) a,
  .sm-blue.sm-rtl > li:last-child > a {
    -webkit-border-radius: 8px 0 0 8px !important;
    -moz-border-radius: 8px 0 0 8px !important;
    -ms-border-radius: 8px 0 0 8px !important;
    -o-border-radius: 8px 0 0 8px !important;
    border-radius: 8px 0 0 8px !important;
  }
  .sm-blue.sm-rtl > li:first-child {
    border-left: 1px solid #2b82ac;
  }
  .sm-blue.sm-rtl > li:last-child {
    border-left: 0;
  }
  .sm-blue.sm-rtl ul a span.sub-arrow {
    right: auto;
    left: 10px;
    border-style: dashed solid dashed dashed;
    border-color: transparent #a1d1e8 transparent transparent;
  }
  .sm-blue.sm-vertical {
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  }
  .sm-blue.sm-vertical a {
    padding: 9px 23px;
  }
  .sm-blue.sm-vertical a span.sub-arrow {
    top: 50%;
    margin-top: -5px;
    bottom: auto;
    left: auto;
    margin-left: 0;
    right: 10px;
    border-style: dashed dashed dashed solid;
    border-color: transparent transparent transparent #a1d1e8;
  }
  .sm-blue.sm-vertical > li:first-child > :not(ul) a,
  .sm-blue.sm-vertical > li:first-child > a {
    -webkit-border-radius: 8px 8px 0 0;
    -moz-border-radius: 8px 8px 0 0;
    -ms-border-radius: 8px 8px 0 0;
    -o-border-radius: 8px 8px 0 0;
    border-radius: 8px 8px 0 0;
  }
  .sm-blue.sm-vertical > li:last-child > :not(ul) a,
  .sm-blue.sm-vertical > li:last-child > a {
    -webkit-border-radius: 0 0 8px 8px !important;
    -moz-border-radius: 0 0 8px 8px !important;
    -ms-border-radius: 0 0 8px 8px !important;
    -o-border-radius: 0 0 8px 8px !important;
    border-radius: 0 0 8px 8px !important;
  }
  .sm-blue.sm-vertical > li {
    border-left: 0 !important;
  }
  .sm-blue.sm-vertical ul {
    -webkit-border-radius: 4px !important;
    -moz-border-radius: 4px !important;
    -ms-border-radius: 4px !important;
    -o-border-radius: 4px !important;
    border-radius: 4px !important;
  }
  .sm-blue.sm-vertical ul a {
    padding: 9px 23px;
  }
  /* Mobile Button **************************************************************/
  /* hide the button in desktop view */
  .main-menu-btn {
    position: absolute;
    text-align: center;
    top: -99999px;
  }
  /* always show the menu in desktop view */
  #main-menu-state:not(:checked) ~ #main-menu {
    display: block;
  }
  .sm-blue .menuitem-text {
    display: block;
    text-align: center;
  }
  .sm-blue .menuitem-text .menuitem-text-main {
    display: inline-block;
    margin: 0 auto;
  }
}
/* Mega menus */
/* make mega menus take the full width of .main-nav */
.sm,
.sm > .has-mega-menu {
  position: static !important;
}

#main-menu .mega-menu {
  margin-left: 0 !important;
  right: 0 !important;
  width: auto !important;
  max-width: none !important;
}

#main-menu > .has-mega-menu .scroll-down,
#main-menu > .has-mega-menu .scroll-up {
  margin-left: 0 !important;
}

/* clear any floats inside the mega menus */
#main-menu .mega-menu > li {
  overflow: auto;
}

/* reset mega menu list/link styles (which are inherited from the SmartMenus core/theme styles) */
#main-menu .mega-menu {
  color: #F9F0DF;
}

#main-menu .mega-menu ul {
  position: static;
  display: block;
  margin: 0;
  border: 0;
  padding: 5px;
  width: auto;
  background: transparent;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

#main-menu .mega-menu ul li {
  display: block;
  list-style-type: none;
  border: 0;
}

#main-menu .mega-menu a {
  background: transparent;
  border: 0;
  color: inherit;
  display: block;
  padding: 9px 23px;
  text-decoration: none;
}

#main-menu .mega-menu .mega-menu-item a:active,
#main-menu .mega-menu .mega-menu-item a:focus,
#main-menu .mega-menu .mega-menu-item a:hover,
#main-menu .mega-menu .mega-menu-item.active a,
#main-menu .mega-menu li > a:active,
#main-menu .mega-menu li > a:focus,
#main-menu .mega-menu li > a:hover,
#main-menu .mega-menu li.active > a {
  /* background: rgba(102, 102, 102, 0.1); */
  /*
  background: -moz-linear-gradient(#fff 0%, #fff 100%);
  background: -o-linear-gradient(#fff 0%, #fff 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #fff));
  background: -webkit-linear-gradient(#fff 0%, #fff 100%);
  background: linear-gradient(#fff 0%, #fff 100%);
  */
  color: #FFF;
}

#main-menu .mega-menu .mega-menu-item {
  border: 1px solid #777;
  padding: 5px;
}
#main-menu .mega-menu .mega-menu-item h2 {
  margin-bottom: 0.25em;
}
#main-menu .mega-menu .mega-menu-item p {
  color: #777;
  font-size: 14px;
}
#main-menu .mega-menu .mega-menu-item .mega-menu-text {
  padding: 5px 23px;
}
#main-menu .mega-menu ul ul {
  padding-left: 20px;
}
#main-menu .mega-menu ul ul li a {
  color: #777;
  font-size: 16px;
  padding-left: 20px;
}

/* simple columns inside the mega menus */
#main-menu .mega-menu .column-1-2,
#main-menu .mega-menu .column-1-3,
#main-menu .mega-menu .column-1-4 {
  padding: 0 20px;
}

@media (min-width: 943px) {
  #main-menu .mega-menu .column-1-2 {
    float: left;
    width: 50%;
  }
  #main-menu .mega-menu .column-1-3 {
    float: left;
    width: 33.33%;
  }
  #main-menu .mega-menu .column-1-4 {
    float: left;
    width: 25%;
  }
}
/* Sample image placeholder */
.mega-menu-sample-image {
  margin: 0.83em 0;
  border: 1px solid;
  height: 80px;
  line-height: 80px;
  text-align: center;
}

/*
Nav ************/
/*
* ArsLuna Web Pages
*
* Main CSS
* All Screens
* Template Partial
* Navigation Partial
*
* Author : Sašo Štibelj
* Company: Ars Luna, Helena Štibelj s.p.
* Address: Čepulje 16
*          4000 KRANJ
*          SLOVENIA
* Website: http://www.arsluna.si, http://www.arsluna.com
* Mail   : info@arsluna.si, info@arsluna.com
* License: Commercial
*
*/
/******************************************************************************/
#main-nav {
  display: block;
  margin-top: 0;
  overflow: visible;
  text-align: center;
}

/******************************************************************************/
/* Menu 001                                                                   */
/******************************************************************************/
.menu-001 {
  padding: 10px;
}
.menu-001 > ul > li {
  border-bottom: 1px transparent none;
}
.menu-001 > ul > li.first {
  border-top: 1px transparent none;
}
.menu-001 > ul > li > a {
  color: #fff;
  display: block;
  font-size: 16px;
  height: 40px;
  line-height: 40px;
  padding-left: 10px;
  position: relative;
  text-decoration: none;
}

/*
.menu-001 > ul > li > a:before {
    -webkit-transition: all 500ms linear;
    -moz-transition: all 500ms linear;
    -o-transition: all 500ms linear;
    -ms-transition: all 500ms linear;
    transition: all 500ms linear;
}

.menu-001 > ul > li > a:after,
.menu-001 > ul > li > a:after,
.menu-001 > ul > li > a:before,
.menu-001 > ul > li > a:before {
    left: 0;
    top: 8px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.menu-001 > ul > li > a:before {
    border-color: transparent;
    border-left-color: transparent;
    border-width: 10px;
    margin-left: -10px;
}

.menu-001 > ul > li:hover > a:before {
    border-color: rgba(255, 255, 255, 0);
    border-left-color: #ffffff;
}
*/
/* END Menu 001 */
/*
Forms **********/
/*
* ArsLuna Web Pages
*
* Main CSS
* All Screens
* Template Partial
* Forms Partial
*
* Author : Sašo Štibelj
* Company: Ars Luna, Helena Štibelj s.p.
* Address: Čepulje 16
*          4000 KRANJ
*          SLOVENIA
* Website: http://www.arsluna.si, http://www.arsluna.com
* Mail   : info@arsluna.si, info@arsluna.com
* License: Commercial
*
*/
/******************************************************************************/
input[type=email],
input[type=number],
input[type=password],
input[type=select],
input[type=tel],
input[type=text],
textarea {
  background: #FFF;
  border: 1px solid #AFAFAF;
  box-shadow: 0 0 5px #FFF inset;
  color: #000;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.5em;
}
input[type=email]:required:after,
input[type=number]:required:after,
input[type=password]:required:after,
input[type=select]:required:after,
input[type=tel]:required:after,
input[type=text]:required:after,
textarea:required:after {
  content: "*";
  display: block;
  position: absolute;
  right: -5px;
  top: 0;
}

form label {
  display: inline-block;
  margin: 0 auto;
  text-align: left;
}

form .formerize-placeholder {
  color: #555 !important;
}

form::-webkit-input-placeholder {
  color: #555 !important;
}

form:-moz-placeholder {
  color: #555 !important;
}

form::-moz-placeholder {
  color: #555 !important;
}

form:-ms-input-placeholder {
  color: #555 !important;
}

form::-moz-focus-inner {
  border: 0;
}

.form-group {
  display: block;
  overflow: hidden;
}
.form-group .form-input-wrapper {
  padding: 5px;
}

.form-group .info,
.form-group .label,
.form-group label {
  font-size: 16px;
  line-height: 1.5em;
  margin: 0;
  overflow: hidden;
  padding: 16px 5px;
  text-align: right !important;
  vertical-align: middle;
}

.form-group.no-grid .info,
.form-group.no-grid .label,
.form-group.no-grid label {
  line-height: 1em;
  padding: 0 5px;
  text-align: left !important;
}

.form-group.no-grid .form-input-wrapper {
  padding: 0 5px 5px 5px;
}

#contact_form,
#registration_form {
  text-align: center;
}

.login {
  background: #fff;
  margin-bottom: 20px;
  overflow: hidden;
  padding: 20px;
}

.sidebar-news-reg-form {
  overflow: hidden;
}

.col2_form_input_100,
.col2_form_input_25,
.col2_form_input_50,
.col2_form_input_75,
.col2_form_textarea_100,
.contact_form_input_100,
.contact_form_input_25,
.contact_form_input_50,
.contact_form_input_75,
.contact_form_textarea_100,
.input_kol,
.textinput-full-width,
.textinputbel {
  background: #FFF;
  border: 1px solid #AFAFAF;
  box-shadow: 0 0 5px #FFF inset;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  box-shadow: 0 0 5px #FFF inset;
  color: #000;
  font-size: 16px;
  line-height: 1.5em;
  margin: 5px 0 !important;
  padding: 5px;
}

.form-group {
  display: block;
  overflow: hidden;
}
.form-group .form-input-wrapper {
  padding: 5px 0;
  text-align: left;
}
.form-group .info,
.form-group .label,
.form-group label {
  font-size: 16px;
  line-height: 1.5em;
  margin: 0;
  overflow: hidden;
  padding: 16px 5px;
  text-align: right !important;
  vertical-align: middle;
}
.form-group.no-grid .info,
.form-group.no-grid .label,
.form-group.no-grid label {
  line-height: 1em;
  padding: 0 5px;
  text-align: left !important;
}
.form-group.no-grid .form-input-wrapper {
  padding: 0 5px 5px;
}
.form-group .form-input-wrapper .textinput-full-width {
  max-width: 500px;
}
.form-group .form-input-wrapper .zip-input-full-width {
  display: table;
  max-width: 500px;
  vertical-align: top;
  width: 100%;
}
.form-group .form-input-wrapper .zip-input-full-width .zip-input-row {
  display: table-row;
}
.form-group .form-input-wrapper .zip-input-full-width .zip-input-row .textinput-zip-code {
  display: table-cell;
  vertical-align: top;
  width: 25%;
}
.form-group .form-input-wrapper .zip-input-full-width .zip-input-row .textinput-zip {
  padding-left: 10px;
  display: table-cell;
  vertical-align: top;
  width: 75%;
}
.form-group .form-input-wrapper input[type=checkbox] {
  margin-top: 18px;
}
.form-group label {
  padding-right: 15px;
  position: relative;
}
.form-group.required label::after {
  color: #FF0000;
  content: "*";
  font-weight: bold;
  font-size: 1.5em;
  position: absolute;
  top: 15px;
  right: 5px;
}
.form-group.checkbox-right label {
  text-align: left !important;
}
.form-group.checkbox-right.required label::after {
  display: inline;
  position: relative;
  right: auto;
  top: auto;
  vertical-align: top;
}

.textinput-full-width {
  width: 100%;
}

.col2_form_input_25,
.contact_form_input_25 {
  width: 95px;
}

.col2_form_input_50,
.contact_form_input_50 {
  width: 195px;
}

.col2_form_input_75,
.contact_form_input_75 {
  width: 295px;
}

.col2_form_input_100,
.col2_form_textarea_100,
.contact_form_input_100,
.contact_form_textarea_100 {
  /*margin: 5px auto 5px auto !important;*/
  width: 400px;
}

#p_captcha,
#p_captcha_img {
  float: left;
}

#p_captcha_img {
  margin: 5px;
}

/* Search *********************************************************************/
.search {
  display: inline-block;
  float: right;
  margin: 45px 0 0;
  position: relative;
  text-align: center;
}

.search_condit {
  background: #FFF;
  border-top: 1px solid #565656;
  border-bottom: 1px solid #565656;
  border-left: 1px solid #565656;
  border-top-left-radius: 5px;
  -webkit-border-top-left-radius: 5px;
  -moz-border-radius-topleft: 5px;
  border-bottom-left-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -moz-border-radius-bottomleft: 5px;
  box-shadow: 0 0 3px #565656 inset;
  float: left;
  font-size: 12px;
  height: 40px;
  padding: 10px;
  width: 250px;
}

#bottom-content-page .news-registration-sidebar .gumb_mali {
  float: right;
  margin-right: 0;
}

.sidebar .contact_form_input_100 {
  width: 100%;
}

.sidebar-news-reg-form .contact_form_input_100 {
  width: 100%;
}

/*
Tables *********/
/*
* ArsLuna Web Pages
*
* Main CSS
* All Screens
* Template Partial
* Tables Partial
*
* Author : Sašo Štibelj
* Company: Ars Luna, Helena Štibelj s.p.
* Address: Čepulje 16
*          4000 KRANJ
*          SLOVENIA
* Website: http://www.arsluna.si, http://www.arsluna.com
* Mail   : info@arsluna.si, info@arsluna.com
* License: Commercial
*
*/
/******************************************************************************/
table {
  border-collapse: collapse;
}

td,
th {
  text-align: left;
}

.align-right {
  text-align: right;
}

.td_right,
.th_right {
  text-align: right;
}

.col-content-width {
  white-space: nowrap;
  width: 1%;
}

/**************************************/
table.style1 {
  width: 100%;
}

table.style1 tbody tr:nth-child(2n+2) {
  background: #f4f4f4;
}

table.style1 td {
  padding: 0.5em 1em;
}

table.style1 th {
  font-weight: bold;
  padding: 0.5em 1em;
  text-align: left;
}

table.style1 thead {
  background: #444;
  color: #fff;
}

table.style1 tfoot {
  background: #eee;
}

/**************************************/
table.style2 thead {
  background: #444;
  color: #fff;
}

table.style2 th {
  font-weight: bold;
  padding: 0.5em 1em;
  text-align: left;
}

table.style2 td {
  padding: 0.5em 1em;
}

table.style2 td.alignright {
  text-align: right;
}

table.style2 tbody tr:nth-child(2n+2) {
  background: #bebebe;
}

table.style2 tfoot {
  background: #eee;
}

/**************************************/
tr.strikeout td {
  position: relative;
  /* vertical-align: middle; */
}

tr.strikeout td:before {
  content: " ";
  position: absolute;
  top: 50%;
  left: 0;
  border-bottom: 2px solid #ff0000;
  width: 100%;
}

/*
Buttons ********/
/*
* ArsLuna Web Pages
*
* Main CSS
* All Screens
* Template Partial
* Buttons Partial
*
* Author : Sašo Štibelj
* Company: Ars Luna, Helena Štibelj s.p.
* Address: Čepulje 16
*          4000 KRANJ
*          SLOVENIA
* Website: http://www.arsluna.si, http://www.arsluna.com
* Mail   : info@arsluna.si, info@arsluna.com
* License: Commercial
*
*/
/******************************************************************************/
.btn-awesome,
.button {
  background: #F9F0DF;
  background: -moz-linear-gradient(#F9F0DF 0%, #F9F0DF 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F9F0DF), color-stop(100%, #F9F0DF));
  background: -webkit-linear-gradient(#F9F0DF 0%, #F9F0DF 100%);
  background: linear-gradient(#F9F0DF 0%, #F9F0DF 100%);
  border: 1px solid #423100;
  margin: 10px 10px 0 0;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  color: #423100 !important;
  float: left;
  font-size: 16px;
  height: 2.5em;
  line-height: 2.5em;
  padding: 0 10px;
  text-align: center;
  text-decoration: none;
  text-shadow: 0 0 0 #000;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.btn-awesome:hover,
.button:hover {
  background: #FFF;
  background: -moz-linear-gradient(#FFF 0%, #FFF 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #FFF), color-stop(100%, #FFF));
  background: -webkit-linear-gradient(#FFF 0%, #FFF 100%);
  background: linear-gradient(#FFF 0%, #FFF 100%);
  border: 1px solid #423100;
  color: #423100 !important;
}

.btn-awesome:active,
.button:active {
  background: #FFF;
  background: -moz-linear-gradient(#FFF 0%, #FFF 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #FFF), color-stop(100%, #FFF));
  background: -webkit-linear-gradient(#FFF 0%, #FFF 100%);
  background: linear-gradient(#FFF 0%, #FFF 100%);
  border: 1px solid #423100;
  color: #423100 !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

/* Button More */
.button-more {
  background: #F9F0DF;
  background: -moz-linear-gradient(#F9F0DF 0%, #F9F0DF 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F9F0DF), color-stop(100%, #F9F0DF));
  background: -webkit-linear-gradient(#F9F0DF 0%, #F9F0DF 100%);
  background: linear-gradient(#F9F0DF 0%, #F9F0DF 100%);
  border: 1px solid #423100;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  color: #423100 !important;
  float: left;
  font-family: "Fondamento", cursive;
  font-size: 16px;
  height: 2.5em;
  line-height: 2.5em;
  padding: 0 10px;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-shadow: 0 0 0 #000;
  -webkit-transition: all 1s linear;
  -moz-transition: all 1s linear;
  -o-transition: all 1s linear;
  -ms-transition: all 1s linear;
  transition: all 1s linear;
  top: 50%;
}

.button-more:hover {
  background: #FFF;
  background: -moz-linear-gradient(#FFF 0%, #FFF 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #FFF), color-stop(100%, #FFF));
  background: -webkit-linear-gradient(#FFF 0%, #FFF 100%);
  background: linear-gradient(#FFF 0%, #FFF 100%);
  border: 1px solid #423100;
  color: #423100 !important;
}

/* Button More */
.button-more-secondary {
  background: #F9F0DF;
  background: -moz-linear-gradient(#F9F0DF 0%, #F9F0DF 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F9F0DF), color-stop(100%, #F9F0DF));
  background: -webkit-linear-gradient(#F9F0DF 0%, #F9F0DF 100%);
  background: linear-gradient(#F9F0DF 0%, #F9F0DF 100%);
  border: 1px solid #423100;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  color: #423100 !important;
  float: right;
  font-size: 24px;
  height: 50px !important;
  line-height: 50px;
  margin: 0;
  padding: 0 5px;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-shadow: 0 0 0 #000;
  -webkit-transition: all 1s linear;
  -moz-transition: all 1s linear;
  -o-transition: all 1s linear;
  -ms-transition: all 1s linear;
  transition: all 1s linear;
  width: auto !important;
}

.button-more-secondary:hover {
  background: #F9F0DF;
  background: -moz-linear-gradient(#F9F0DF 0%, #F9F0DF 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F9F0DF), color-stop(100%, #F9F0DF));
  background: -webkit-linear-gradient(#F9F0DF 0%, #F9F0DF 100%);
  background: linear-gradient(#F9F0DF 0%, #F9F0DF 100%);
  border: 1px solid #423100;
  color: #423100 !important;
}

/* Button News Subscribe */
.button-news-subscribe {
  background: #F9F0DF;
  background: -moz-linear-gradient(#F9F0DF 0%, #F9F0DF 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F9F0DF), color-stop(100%, #F9F0DF));
  background: -webkit-linear-gradient(#F9F0DF 0%, #F9F0DF 100%);
  background: linear-gradient(#F9F0DF 0%, #F9F0DF 100%);
  border: 1px solid #423100;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  color: #423100 !important;
}

.button-news-subscribe:hover {
  background: #F0F0F0;
  background: -moz-linear-gradient(#F0F0F0 0%, #E0E0E0 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F0F0F0), color-stop(100%, #E0E0E0));
  background: -webkit-linear-gradient(#F0F0F0 0%, #E0E0E0 100%);
  background: linear-gradient(#F0F0F0 0%, #E0E0E0 100%);
  border: 1px solid #423100;
  color: #423100 !important;
}

/* Button Search */
.button-search {
  background: #F9F0DF;
  background: -moz-linear-gradient(#F9F0DF 0%, #F9F0DF 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F9F0DF), color-stop(100%, #F9F0DF));
  background: -webkit-linear-gradient(#F9F0DF 0%, #F9F0DF 100%);
  background: linear-gradient(#F9F0DF 0%, #F9F0DF 100%);
  border-top: 1px solid #423100;
  border-right: 1px solid #423100;
  border-bottom: 1px solid #423100;
  border-top-right-radius: 4px;
  -webkit-border-top-right-radius: 4px;
  -moz-border-radius-topright: 4px;
  border-bottom-right-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  border-top-left-radius: 0;
  -webkit-border-top-left-radius: 0;
  -moz-border-radius-topleft: 0;
  border-bottom-left-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -moz-border-radius-bottomleft: 0;
  color: #423100;
  float: left;
  font-size: 16px;
  height: 2.5em;
  line-height: 2.5em;
  margin-top: 0;
  margin-left: -3px;
  padding: 0 10px;
  text-align: center;
  text-decoration: none;
  text-shadow: 0 0 0 #000;
  -webkit-transition: transform 1s;
  -moz-transition: transform 1s;
  -o-transition: transform 1s;
  -ms-transition: transform 1s;
  transition: transform 1s;
  width: 63px;
}

.button-search:hover {
  background: #F9F0DF;
  background: -moz-linear-gradient(#F9F0DF 0%, #F9F0DF 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F9F0DF), color-stop(100%, #F9F0DF));
  background: -webkit-linear-gradient(#F9F0DF 0%, #F9F0DF 100%);
  background: linear-gradient(#F9F0DF 0%, #F9F0DF 100%);
  border-color: #423100;
  color: #423100;
}

/*********************************************************************************/
/* Page Index                                                                    */
/*********************************************************************************/
.pageindex {
  clear: both;
  display: block;
}

.pageindex > ul {
  list-style-type: none;
}

.pageindex > ul > li {
  float: left;
  margin-left: 5px;
}

.pageindex > ul > li a {
  background: #F9F0DF;
  background: -moz-linear-gradient(#F9F0DF 0%, #F9F0DF 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F9F0DF), color-stop(100%, #F9F0DF));
  background: -webkit-linear-gradient(#F9F0DF 0%, #F9F0DF 100%);
  background: linear-gradient(#F9F0DF 0%, #F9F0DF 100%);
  border: 1px solid #423100;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  color: #423100;
  display: inline-block;
  font-weight: 700;
  height: 30px;
  letter-spacing: 0.1em;
  line-height: 30px;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  width: 30px;
}

.pageindex > ul > li a span {
  display: block;
}

.pageindex > ul > li a:hover {
  background: #423100;
  background: -moz-linear-gradient(#423100 0%, #423100 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #423100), color-stop(100%, #423100));
  background: -webkit-linear-gradient(#423100 0%, #423100 100%);
  background: linear-gradient(#423100 0%, #423100 100%);
  border: 1px solid #423100;
  color: #F9F0DF;
}

.pageindex > ul > li a.active {
  background: #423100;
  background: -moz-linear-gradient(#423100 0%, #423100 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #423100), color-stop(100%, #423100));
  background: -webkit-linear-gradient(#423100 0%, #423100 100%);
  background: linear-gradient(#423100 0%, #423100 100%);
  border: 1px solid #423100;
  color: #F9F0DF;
}

/******************************************************************************/
#scroll-to-top {
  background: url("images/gumb-to-top.png") left top no-repeat;
  bottom: 1em;
  cursor: pointer;
  display: none;
  height: 50px;
  position: fixed;
  right: 1em;
  width: 50px;
  z-index: 999;
}

#scroll-to-top:hover {
  background-position: left bottom;
}

.btn-awesome.btn-icon-only {
  font-size: 20px;
  text-align: center;
  width: 40px;
}

.button-big {
  font-size: 1.1em !important;
  line-height: 3.5em;
  padding: 0 3em;
}

.button-add-to-cart-small {
  margin: 10px 10px 0;
}

.button-add-to-favorites-big,
.button-add-to-favorites-small,
.button-att-selection,
.button-is-favorites-big,
.button-is-favorites-small,
.button-remove-from-favorites-big,
.button-remove-from-favorites-small {
  margin: 10px 10px 0 0;
}

.button-add-to-favorites-big-txt,
.button-add-to-favorites-small-txt,
.button-is-favorites-big-txt,
.button-is-favorites-small-txt,
.button-remove-from-favorites-big-txt,
.button-remove-from-favorites-small-txt {
  display: none;
}

.button-add-to-cart-big-img,
.button-add-to-cart-small-img,
.button-add-to-favorites-big-img,
.button-add-to-favorites-small-img,
.button-is-favorites-big-img,
.button-is-favorites-small-img,
.button-remove-from-favorites-big-img,
.button-remove-from-favorites-small-img {
  display: inline-block;
  float: left;
  height: 40px;
  width: 40px;
}

.button-add-to-cart-big-img,
.button-add-to-cart-small-img {
  background: transparent url("images/cart_bel_25_x_30.png") left center no-repeat;
}

.button-add-to-favorites-big-img,
.button-add-to-favorites-small-img {
  background: transparent url("images/favorite_buttons.png") left top no-repeat;
}

.button-remove-from-favorites-big-img,
.button-remove-from-favorites-small-img {
  background: transparent url("images/favorite_buttons.png") left center no-repeat;
}

.button-is-favorites-big-img,
.button-is-favorites-small-img {
  background: transparent url("images/favorite_buttons.png") left bottom no-repeat;
}

.button-delete-small {
  background: transparent url("images/trash-20_x_20.png") center center no-repeat;
  display: inline-block;
  line-height: 20px;
  padding: 0 10px;
  height: 20px;
  width: 20px;
}

.button-delete-big {
  background: transparent url("images/trash-40_x_40.png") center center no-repeat;
  display: inline-block;
  line-height: 40px;
  padding: 0 20px;
  height: 40px;
  width: 40px;
}

#button-login {
  width: 300px;
}

#button_register_company,
#button_register_personal {
  width: 150px;
}

/******************************************************************************/
.gumbi {
  display: block;
  margin-top: 5px;
  overflow: hidden;
  text-align: left;
  vertical-align: middle;
  width: 100%;
}

.arsluna-button-one {
  background: #F9F0DF;
  background: -moz-linear-gradient(#F9F0DF 0%, #F9F0DF 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F9F0DF), color-stop(100%, #F9F0DF));
  background: -webkit-linear-gradient(#F9F0DF 0%, #F9F0DF 100%);
  background: linear-gradient(#F9F0DF 0%, #F9F0DF 100%);
  border: 1px solid #423100;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  color: #423100;
  display: inline-block;
  font-family: "Fondamento", cursive;
  font-size: 24px;
  height: 60px;
  line-height: 60px;
  margin-left: 0;
  padding: 0 20px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 1s linear;
  -moz-transition: all 1s linear;
  -o-transition: all 1s linear;
  -ms-transition: all 1s linear;
  transition: all 1s linear;
}

.arsluna-button-one:hover {
  background: #FFF;
  background: -moz-linear-gradient(#FFF 0%, #FFF 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #FFF), color-stop(100%, #FFF));
  background: -webkit-linear-gradient(#FFF 0%, #FFF 100%);
  background: linear-gradient(#FFF 0%, #FFF 100%);
  border: 1px solid #5C4B1A;
  color: #5C4B1A;
}

.arsluna-button-two {
  background: #F9F0DF;
  background: -moz-linear-gradient(#F9F0DF 0%, #F9F0DF 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F9F0DF), color-stop(100%, #F9F0DF));
  background: -webkit-linear-gradient(#F9F0DF 0%, #F9F0DF 100%);
  background: linear-gradient(#F9F0DF 0%, #F9F0DF 100%);
  border: 1px solid #423100;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  color: #423100;
  display: block;
  font-family: "Fondamento", cursive;
  font-size: 24px;
  height: 60px;
  line-height: 60px;
  margin-left: 0;
  padding: 0 20px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 1s linear;
  -moz-transition: all 1s linear;
  -o-transition: all 1s linear;
  -ms-transition: all 1s linear;
  transition: all 1s linear;
}

.arsluna-button-two:hover {
  background: #F9F0DF;
  background: -moz-linear-gradient(#F9F0DF 0%, #F9F0DF 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F9F0DF), color-stop(100%, #F9F0DF));
  background: -webkit-linear-gradient(#F9F0DF 0%, #F9F0DF 100%);
  background: linear-gradient(#F9F0DF 0%, #F9F0DF 100%);
  border: 1px solid #5C4B1A;
  color: #5C4B1A;
}

.arsluna-button-three {
  background: transparent;
  background: -moz-linear-gradient(transparent 0%, transparent 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, transparent), color-stop(100%, transparent));
  background: -webkit-linear-gradient(transparent 0%, transparent 100%);
  background: linear-gradient(transparent 0%, transparent 100%);
  border: 1px solid #FFF;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  color: #FFF;
  display: inline-block;
  font-family: "Fondamento", cursive;
  font-size: 24px;
  height: 60px;
  line-height: 60px;
  margin-left: 0;
  padding: 0 10px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 1s linear;
  -moz-transition: all 1s linear;
  -o-transition: all 1s linear;
  -ms-transition: all 1s linear;
  transition: all 1s linear;
}

.arsluna-button-three:hover {
  background: rgba(255, 255, 255, 0.25);
  background: -moz-linear-gradient(rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.25) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.25)), color-stop(100%, rgba(255, 255, 255, 0.25)));
  background: -webkit-linear-gradient(rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.25) 100%);
  background: linear-gradient(rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.25) 100%);
  border: 1px solid #FFF;
  color: #FFF;
}

.arsluna-button-four {
  background: #F9F0DF;
  background: -moz-linear-gradient(#F9F0DF 0%, #F9F0DF 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F9F0DF), color-stop(100%, #F9F0DF));
  background: -webkit-linear-gradient(#F9F0DF 0%, #F9F0DF 100%);
  background: linear-gradient(#F9F0DF 0%, #F9F0DF 100%);
  border: 1px solid #423100;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  color: #423100;
  display: inline-block;
  font-family: "Fondamento", cursive;
  font-size: 24px;
  height: 60px;
  line-height: 60px;
  margin-left: 0;
  padding: 0 10px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 1s linear;
  -moz-transition: all 1s linear;
  -o-transition: all 1s linear;
  -ms-transition: all 1s linear;
  transition: all 1s linear;
}

.arsluna-button-four:hover {
  background: #F9F0DF;
  background: -moz-linear-gradient(#F9F0DF 0%, #F9F0DF 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F9F0DF), color-stop(100%, #F9F0DF));
  background: -webkit-linear-gradient(#F9F0DF 0%, #F9F0DF 100%);
  background: linear-gradient(#F9F0DF 0%, #F9F0DF 100%);
  border: 1px solid #5C4B1A;
  color: #5C4B1A;
}

.arsluna-button-five {
  background: #F9F0DF;
  background: -moz-linear-gradient(#F9F0DF 0%, #F9F0DF 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F9F0DF), color-stop(100%, #F9F0DF));
  background: -webkit-linear-gradient(#F9F0DF 0%, #F9F0DF 100%);
  background: linear-gradient(#F9F0DF 0%, #F9F0DF 100%);
  border: 1px solid #423100;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  color: #423100;
  display: inline-block;
  font-family: "Fondamento", cursive;
  font-size: 24px;
  height: 60px;
  line-height: 60px;
  margin: 0;
  padding: 0 10px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 1s linear;
  -moz-transition: all 1s linear;
  -o-transition: all 1s linear;
  -ms-transition: all 1s linear;
  transition: all 1s linear;
}

.arsluna-button-five:hover {
  background: #F9F0DF;
  background: -moz-linear-gradient(#F9F0DF 0%, #F9F0DF 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F9F0DF), color-stop(100%, #F9F0DF));
  background: -webkit-linear-gradient(#F9F0DF 0%, #F9F0DF 100%);
  background: linear-gradient(#F9F0DF 0%, #F9F0DF 100%);
  border: 1px solid #5C4B1A;
  color: #5C4B1A;
}

.arsluna-button-six {
  background: #F9F0DF;
  background: -moz-linear-gradient(#F9F0DF 0%, #F9F0DF 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F9F0DF), color-stop(100%, #F9F0DF));
  background: -webkit-linear-gradient(#F9F0DF 0%, #F9F0DF 100%);
  background: linear-gradient(#F9F0DF 0%, #F9F0DF 100%);
  border: 1px solid #423100;
  /*
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  */
  color: #423100;
  display: inline-block;
  font-family: "Fondamento", cursive;
  font-size: 24px;
  height: 60px;
  line-height: 60px;
  margin: 0;
  padding: 0 10px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 1s linear;
  -moz-transition: all 1s linear;
  -o-transition: all 1s linear;
  -ms-transition: all 1s linear;
  transition: all 1s linear;
}

.arsluna-button-six:hover {
  background: #F9F0DF;
  background: -moz-linear-gradient(#F9F0DF 0%, #F9F0DF 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F9F0DF), color-stop(100%, #F9F0DF));
  background: -webkit-linear-gradient(#F9F0DF 0%, #F9F0DF 100%);
  background: linear-gradient(#F9F0DF 0%, #F9F0DF 100%);
  border: 1px solid #5C4B1A;
  color: #5C4B1A;
}

/*
Elements *******/
/*
* ArsLuna Web Pages
*
* Main CSS
* All Screens
* Template Partial
* Elements Partial
*
* Author : Sašo Štibelj
* Company: Ars Luna, Helena Štibelj s.p.
* Address: Čepulje 16
*          4000 KRANJ
*          SLOVENIA
* Website: http://www.arsluna.si, http://www.arsluna.com
* Mail   : info@arsluna.si, info@arsluna.com
* License: Commercial
*
*/
/******************************************************************************/
/* Header                                                                     */
/******************************************************************************/
#header-wrapper header {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  padding: 0;
}
#header-wrapper #header-center {
  -webkit-flex: 1;
  flex: 1;
  margin: 0 0 17px 20px;
}
#header-wrapper header h2 {
  font-size: 1.2em;
  letter-spacing: 0.1em;
  text-transform: none;
}

/*********************************************************************************/
/* Features                                                                      */
/*********************************************************************************/
#features {
  display: block;
  overflow: hidden;
}

#featurescartheader,
#pageheadercartheader,
.sidebar header {
  background: #2e2e2e;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  display: block;
  font-size: 1.2em;
  font-weight: 700;
  line-height: 40px;
  padding: 0 10px;
}

#featurescart a,
#pageheadercart a,
.sidebar header a {
  text-decoration: none;
}

#featurescart,
#pageheadercart {
  overflow: hidden;
  padding: 10px;
  position: absolute;
  right: 50px;
  top: 10px;
  width: 180px;
  z-index: 999999;
}

#featurescart > ul,
#pageheadercart > ul {
  background: #2e2e2e;
  border-radius: 20px;
  display: none;
  overflow: hidden;
  padding: 10px;
}

/******************************************************************************/
/* Main Content                                                               */
/******************************************************************************/
#content,
#sidebar-left,
#sidebar-right {
  border: 0 none;
  padding: 0.25em;
}

.main-center,
.main-left,
.main-right {
  overflow: hidden;
  padding: 15px;
}

/******************************************************************************/
#sidebar-left .middle-content {
  background: transparent;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

/******************************************************************************/
#sidebar_left_header {
  background: #bbbbbb;
  color: #000000;
  display: none;
  padding: 5px;
}

#sidebar_left_content {
  display: block;
}

/******************************************************************************/
.page-type-content-wrapper {
  background: transparent none;
  padding: 30px 0;
}

/******************************************************************************/
.sidebar {
  padding: 0.5em !important;
}

/******************************************************************************/
.certificate_text {
  font-size: 0.7em;
  margin-top: 10px;
}

/******************************************************************************/
/* Content Bottom All Pages                                                   */
/******************************************************************************/
.contentbottomall {
  margin: 60px 0 50px;
}

/******************************************************************************/
.template-001 {
  padding: 20px 0;
  border-bottom: 1px solid #375f26;
}
.template-001.last {
  border-bottom: 0 none transparent;
}
.template-001 .image-photo-album a {
  display: block;
  text-align: center;
}

.template-002 {
  padding: 20px 0;
  border-bottom: 1px solid #375f26;
}
.template-002.last {
  border-bottom: 0 none transparent;
}
.template-002 .image-photo-album a {
  display: block;
  text-align: center;
}

.template-003 {
  padding: 20px 0;
  border-bottom: 1px solid #375f26;
}
.template-003.last {
  border-bottom: 0 none transparent;
}
.template-003 .content-first {
  display: block;
  overflow: hidden;
}
.template-003 .image-main {
  float: left;
  padding-right: 5%;
  max-width: 50%;
}
.template-003 .image-photo-album a {
  display: block;
  text-align: center;
}

.template-004 {
  padding: 20px 0;
  border-bottom: 1px solid #375f26;
}
.template-004.last {
  border-bottom: 0 none transparent;
}
.template-004 .content-first {
  display: block;
  overflow: hidden;
}
.template-004 .image-main {
  float: left;
  padding-right: 5%;
  max-width: 50%;
}
.template-004 .image-photo-album a {
  display: block;
  text-align: center;
}

.template-005 {
  padding: 20px 0;
  border-bottom: 1px solid #375f26;
}
.template-005.last {
  border-bottom: 0 none transparent;
}
.template-005 .content-first {
  display: block;
  overflow: hidden;
}
.template-005 .image-main {
  float: right;
  padding-left: 5%;
  max-width: 50%;
}
.template-005 .image-photo-album a {
  display: block;
  text-align: center;
}

.template-006 {
  padding: 20px 0;
  border-bottom: 1px solid #375f26;
}
.template-006.last {
  border-bottom: 0 none transparent;
}
.template-006 .content-first {
  display: block;
  overflow: hidden;
}
.template-006 .image-main {
  float: right;
  padding-left: 5%;
  max-width: 50%;
}
.template-006 .image-photo-album a {
  display: block;
  text-align: center;
}

.template-007 {
  border-bottom: 1px solid #375f26;
  padding: 20px 0;
}
.template-007.last {
  border-bottom: 0 none transparent;
}

.messages-wrapper {
  background: rgba(125, 125, 125, 0.5) url("images/loading-ring.gif") center center no-repeat;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999999;
}
.messages-wrapper .message-box {
  background: #FFF;
  border: 2px solid #2D2D2D;
  float: left;
  margin: auto;
  max-height: 90%;
  max-width: 90%;
  overflow: auto;
  padding: 20px;
  position: relative;
}
.messages-wrapper .message-box .half-left {
  display: inline-block;
  width: 50%;
}
.messages-wrapper .message-box .half-right {
  display: inline-block;
  width: 50%;
}
.messages-wrapper .message-box .half-right .button {
  float: right;
}

.arsluna-bookmark {
  display: block;
  /*same height as header*/
  /*height: 70px;*/
  /*same height as header*/
  /*margin-bottom: -70px;*/
  position: relative;
  top: -70px;
  visibility: hidden;
}

.arsluna-portlet {
  border: 0 none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  clear: both;
  display: block;
  float: none;
  margin-bottom: 10px;
  /*
  &:first {
      .arsluna-portlet-content {
          display: block;
      }
  }
  */
}
.arsluna-portlet .arsluna-portlet-header {
  background: #F9F0DF;
  border: 1px solid #423100;
  color: #423100 !important;
  font-size: 1.25em;
  min-height: 2.5em;
  line-height: normal;
  padding: 10px 25px 10px 40px;
  position: relative;
  text-align: left;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  vertical-align: middle;
}
.arsluna-portlet .arsluna-portlet-header::after {
  border-bottom: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #423100;
  display: block;
  margin-top: -5px;
  content: " ";
  position: absolute;
  height: 0;
  right: 25px;
  top: 50%;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  width: 0;
}
.arsluna-portlet .arsluna-portlet-header:hover {
  background: #FFF;
  border: 1px solid #423100;
  color: #423100 !important;
}
.arsluna-portlet .arsluna-portlet-header:hover::after {
  border-top: 10px solid #423100;
}
.arsluna-portlet .arsluna-portlet-header.portlet-opened {
  background: #FFF;
  border: 1px solid #423100;
  color: #423100 !important;
}
.arsluna-portlet .arsluna-portlet-header.portlet-opened::after {
  border-bottom: 10px solid #423100;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 0;
}
.arsluna-portlet .arsluna-portlet-content {
  padding: 1em 0 0;
}
.arsluna-portlet .arsluna-portlet-content.arsluna-portlet-widget-content {
  display: none;
}

/*
Grid Elements **/
.grid-element {
  padding: 0.83333%;
  position: relative;
}

.grid-element-content {
  background: transparent none;
  border: 0 none transparent;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.grid-element-content header {
  text-align: center;
}
.grid-element-content header h2 {
  display: block;
  overflow: hidden;
  margin-bottom: 0;
  text-align: center;
  width: 100%;
}
.grid-element-content header a {
  display: block;
  text-decoration: none;
}

.grid-element-content-related {
  background: transparent none;
  border: 0 none transparent;
  overflow: hidden;
  margin: 0.5em;
  padding: 0;
}
.grid-element-content-related header {
  text-align: center;
}
.grid-element-content-related h2 {
  display: block;
  overflow: hidden;
  margin-bottom: 0;
  text-align: center;
  width: 100%;
}
.grid-element-content-related a {
  text-decoration: none;
}

.grid-element-content-header-number {
  background: #FFF;
  border: 1px solid #000;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  color: #000;
  display: none;
  font-family: Arial, sans-serif;
  font-weight: 700;
  height: 40px;
  letter-spacing: 0.1em;
  line-height: 40px;
  text-align: center;
  width: 40px;
}

.grid-element-title {
  background: transparent;
  color: #FFF;
  display: block;
  font-family: "Fondamento", cursive;
  font-size: 32px;
  line-height: 1.5em;
  margin: 0;
  vertical-align: middle;
}

.grid-element-title .title {
  display: block;
}

.grid-element-title .sub-title {
  display: block;
  font-size: 0.9em;
}

.grid-element-content-header-image,
.grid-element-content-related-header-image {
  display: block;
  overflow: hidden;
  position: relative;
}

.grid-element-content-detail {
  padding-top: 20px;
}

.product-grid-related {
  font-size: 0.5em;
  height: auto;
  line-height: 1.5em;
}

.product-grid-related .button-more {
  font-size: 12px;
  height: 30px;
}

.grid-element-content-single header {
  margin: 0;
  text-align: center;
}
.grid-element-content-single header h2 {
  margin-top: 0 !important;
  margin-bottom: 0.5em !important;
}
.grid-element-content-single header h2 .grid-element-title {
  color: #000;
  font-weight: 400;
  text-align: left;
}
.grid-element-content-single .grid-element-content-single-image a {
  display: block;
  line-height: 0;
  overflow: hidden;
  position: relative;
  border: 1px #fff;
  /*
  border-radius: 50% 50% 50% 50%;
  -moz-border-radius: 50% 50% 50% 50%;
  -webkit-border-radius: 50% 50% 50% 50%;

  border-radius: 20px 20px 20px 20px;
  -moz-border-radius: 20px 20px 20px 20px;
  -webkit-border-radius: 20px 20px 20px 20px;
  */
}
.grid-element-content-single .grid-element-content-single-image a img {
  padding: 0;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.grid-element-content-single .grid-element-content-single-image:hover a img {
  -webkit-transform: scale(1.3, 1.3);
  -moz-transform: scale(1.3, 1.3);
  -o-transform: scale(1.3, 1.3);
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}
.grid-element-content-single .grid-element-content-single-content {
  padding: 10px;
}

.grid-menu-item a {
  overflow: hidden;
  position: relative;
}
.grid-menu-item .grid-element-content-header-image {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.grid-menu-item .grid-element-title {
  overflow: hidden;
  padding: 4.54545%;
  text-align: center;
  vertical-align: middle;
}
.grid-menu-item.grid-menu-item-003 .grid-element-title-wrapper {
  background: rgba(66, 49, 0, 0.65);
  bottom: 0;
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: auto;
  -webkit-transition: all 0.6s ease 0s;
  -moz-transition: all 0.6s ease 0s;
  -ms-transition: all 0.6s ease 0s;
  -o-transition: all 0.6s ease 0s;
  transition: all 0.6s ease 0s;
}
.grid-menu-item.grid-menu-item-003 .grid-element-title-wrapper .grid-element-title {
  position: relative;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0 -50%);
}

#footer-wrapper .grid-element-content {
  background: transparent;
}

.news-list.news-list-004 article {
  border: 1px solid #423100;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  padding: 10px;
}
.news-list.news-list-004 .page-type-foto-image-link {
  display: block;
  overflow: hidden;
  margin-bottom: 10px;
}
.news-list.news-list-004 .buttons-wrapper {
  text-align: right;
}
.news-list.news-list-004 .buttons-wrapper .button-more {
  display: inline-block;
  float: right;
}
.news-list.news-list-005 article {
  border: 0 transparent none;
  padding: 10px 0;
  position: relative;
}
.news-list.news-list-005 article a {
  display: block;
  overflow: hidden;
  position: relative;
  vertical-align: middle;
}
.news-list.news-list-005 article a img {
  display: block;
  overflow: hidden;
}
.news-list.news-list-005 article a .header-wrapper {
  background: transparent none;
  bottom: 0;
  display: block;
  left: 0;
  opacity: 1;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all 1s ease 0s;
  -moz-transition: all 1s ease 0s;
  -ms-transition: all 1s ease 0s;
  -o-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
  vertical-align: middle;
}
.news-list.news-list-005 article a .header-wrapper .header-content {
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
}
.news-list.news-list-005 article a .header-wrapper .header-content .title {
  color: #FFF !important;
  display: block;
  font-family: "Sacramento", cursive;
  font-size: 48px;
  line-height: 1.5em;
  margin: 0;
  text-align: center;
}
.news-list.news-list-005 article a .header-wrapper .header-content .datetime {
  color: #FFF;
  display: block;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5em;
  text-align: center;
}
.news-list.news-list-005 article .content-wrapper {
  background: rgba(255, 255, 255, 0.75);
  bottom: 10px;
  display: none;
  left: 0;
  opacity: 0;
  padding: 10px;
  position: absolute;
  right: 0;
  top: 10px;
  -webkit-transition: all 1s ease 0s;
  -moz-transition: all 1s ease 0s;
  -ms-transition: all 1s ease 0s;
  -o-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
}
.news-list.news-list-005 article .content-wrapper .content {
  display: block;
  left: 0;
  padding: 10px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 100%;
}
.news-list.news-list-005 article .content-wrapper .button-more {
  display: inline-block;
}
.news-list.news-list-005 article:hover .header-wrapper {
  display: none;
  opacity: 0;
}
.news-list.news-list-005 article:hover .content-wrapper {
  display: block;
  opacity: 1;
}
.news-list.news-list-005 .buttons-wrapper {
  display: block;
  overflow: hidden;
  text-align: center;
}
.news-list.news-list-010 article {
  padding: 0;
  position: relative;
}
.news-list.news-list-010 .page-type-foto-image-link {
  display: block;
  overflow: hidden;
}
.news-list.news-list-010 .news-content-wrapper {
  background: rgba(66, 49, 0, 0.65);
  bottom: 0;
  color: #FFF;
  padding: 4.54545% 4.54545% 9.0909% 4.54545%;
  position: absolute;
  left: 0;
  right: 0;
  top: auto;
}
.news-list.news-list-010 .news-content-wrapper .datetime {
  font-size: 12px;
  margin: 0;
  padding: 0;
}
.news-list.news-list-010 .news-content-wrapper h6 {
  color: #FFF;
  font-size: 20px;
  margin: 0;
  text-align: left;
}
.news-list.news-list-010 .news-content-wrapper h6 a {
  color: #FFF;
}
.news-list.news-list-010 .read-more {
  bottom: 13.63635%;
  margin: 0;
  position: absolute;
  right: 4.54545%;
  text-align: right;
}
.news-list.news-list-010 .read-more a {
  color: #FFF;
  display: inline-block;
  font-family: "Fondamento", cursive;
}

/*
Widgets ********/
/*
* ArsLuna Web Pages
*
* Main CSS
* All Screens
* Template Partial
* Widgets Partial
*
* Author : Sašo Štibelj
* Company: Ars Luna, Helena Štibelj s.p.
* Address: Čepulje 16
*          4000 KRANJ
*          SLOVENIA
* Website: http://www.arsluna.si, http://www.arsluna.com
* Mail   : info@arsluna.si, info@arsluna.com
* License: Commercial
*
*/
/******************************************************************************/
.widget-login-form {
  padding: 30px 0 0;
  position: relative;
}
.widget-login-form .close {
  color: #423100;
  cursor: pointer;
  font-size: 35px;
  font-weight: bold;
  line-height: 1em;
  position: absolute;
  right: 0;
  top: 0;
}
.widget-login-form .title {
  font-size: 24px;
}
.widget-login-form .form-group label {
  padding: 0;
  text-align: left !important;
}
.widget-login-form #pass-forgotten {
  display: inline-block;
  padding: 10px;
  text-decoration: underline;
}
.widget-login-form .new-user {
  border-top: 1px solid #423100;
  margin-top: 20px;
}
.widget-login-form .buttons-wrapper {
  text-align: center;
}
.widget-login-form .button {
  margin: 10px !important;
}

/* 
Ecommerce ******/
/*
* ArsLuna Web Pages
*
* Main CSS
* All Screens
* Template Partial
* Ecommerce Partial
*
* Author : Sašo Štibelj
* Company: Ars Luna, Helena Štibelj s.p.
* Address: Čepulje 16
*          4000 KRANJ
*          SLOVENIA
* Website: http://www.arsluna.si, http://www.arsluna.com
* Mail   : info@arsluna.si, info@arsluna.com
* License: Commercial
*
*/
/******************************************************************************/
/* cart-001
*
* Force table to not be like tables anymore
*
*/
#products-table-001,
#products-table-005 {
  display: block;
  /* Hide table headers (but not display: none;, for accessibility) */
}
#products-table-001 tbody,
#products-table-001 td,
#products-table-001 th,
#products-table-001 thead,
#products-table-001 tr,
#products-table-005 tbody,
#products-table-005 td,
#products-table-005 th,
#products-table-005 thead,
#products-table-005 tr {
  display: block;
}
#products-table-001 thead tr,
#products-table-005 thead tr {
  position: absolute;
  top: -9999px;
  left: -9999px;
}
#products-table-001 tr,
#products-table-005 tr {
  border: 1px solid #ccc;
}
#products-table-001 tbody td,
#products-table-005 tbody td {
  /* Behave  like a "row" */
  border: 0 transparent none !important;
  position: relative;
}
#products-table-001 tbody.cart-product-list td,
#products-table-005 tbody.cart-product-list td {
  padding-left: 90px !important;
}
#products-table-001 .product_image,
#products-table-005 .product_image {
  display: none;
}
#products-table-001 .cart_row_delete,
#products-table-001 .product_name,
#products-table-005 .cart_row_delete,
#products-table-005 .product_name {
  text-align: right;
}
#products-table-001 .product_ammount:before,
#products-table-001 .product_name:before,
#products-table-001 .product_price:before,
#products-table-001 .product_quantity:before,
#products-table-005 .product_ammount:before,
#products-table-005 .product_name:before,
#products-table-005 .product_price:before,
#products-table-005 .product_quantity:before {
  content: attr(data-th);
  /* Now like a table header */
  position: absolute;
  /* Top/left values mimic padding */
  top: 6px;
  left: 6px;
  width: 80px;
  padding-right: 10px;
  white-space: nowrap;
}

.my-shopping-list {
  display: block;
}
.my-shopping-list tbody,
.my-shopping-list td,
.my-shopping-list th,
.my-shopping-list thead,
.my-shopping-list tr {
  display: block;
}
.my-shopping-list thead tr {
  position: absolute;
  top: -9999px;
  left: -9999px;
}
.my-shopping-list tbody td {
  /* Behave  like a "row" */
  border: 0 transparent none !important;
  padding-left: 110px;
  position: relative;
}
.my-shopping-list tbody td:before {
  content: attr(data-th);
  /* Now like a table header */
  position: absolute;
  /* Top/left values mimic padding */
  top: 0;
  left: 0;
  /* same as td padding-left */
  width: 110px;
  padding: 0.5em;
  text-align: right;
  white-space: nowrap;
}
.my-shopping-list tbody td.td-buttons {
  padding-left: 0.5em;
}

.product-grid-product,
.product-grid-related {
  padding: 5px;
}

.product-grid-product .grid-element-content,
.product-grid-related .grid-element-content-related {
  background: #FFF;
  border: 1px solid #000;
  padding: 10px 5px;
  position: relative;
}

.product-grid-product header,
.product-grid-related header {
  margin-bottom: 0;
}

.product-grid-element-content h2,
.product-grid-element-content-related h2 {
  display: block;
  overflow: hidden;
  margin-bottom: 0;
  text-align: center;
  width: 100%;
}

.product-grid-element-content a,
.product-grid-element-content-related a {
  text-decoration: none;
}

.product-grid-element-content-header-number {
  background: #FFF;
  border: 1px solid #000;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  color: #000;
  display: none;
  font-family: Arial, sans-serif;
  font-weight: 700;
  height: 40px;
  letter-spacing: 0.1em;
  line-height: 40px;
  text-align: center;
  width: 40px;
}

.product-grid-product .grid-element-title,
.product-grid-related .grid-element-title {
  background: #FFF;
  color: #000;
  display: block;
  font-size: 0.8em;
  letter-spacing: 0;
  line-height: 2em;
  text-shadow: 2px 2px 2px rgba(86, 86, 86, 0.75);
}

.product-grid-product .product_id,
.product-grid-related .product_id {
  display: none;
  font-size: 12px;
  position: absolute;
  text-align: left;
  top: 0;
}

.akcija {
  background: transparent url("images/Akcija_60.png");
  height: 60px;
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
}

.novo {
  background: transparent url("images/Novo_60.png");
  height: 60px;
  left: 0;
  position: absolute;
  top: 0;
  width: 60px;
}

.nacinplacila {
  padding: 2px;
  vertical-align: top;
}

.nacinplacila p {
  margin: 0;
}

.purchase-data-wrapper {
  padding: 10px;
}

.purchase-data-fieldset {
  margin-bottom: 10px;
  padding: 10px;
}

.purchase-data-fieldset legend {
  font-size: 1.25em;
  font-weight: bold;
}

#cashdeskprogress {
  display: block;
  padding-bottom: 30px;
  overflow: hidden;
}

/******************************************************************************/
#cart-000 {
  background: #fff;
  margin-bottom: 20px;
  padding: 10px;
}

#cart-000 .cart-company-data {
  padding-bottom: 20px;
}

#cart-000 .cart-status-table {
  width: 100%;
}

#cart-000 .cart-status-table .col-min-width {
  width: 1;
  white-space: nowrap;
}

#cart-000 .cart-status-table thead {
  background-color: #dedede;
  border: 1px solid #aaaaaa;
}

#cart-000 .cart-status-table td {
  padding: 0 2px 0 5px;
}

#cart-000 .cart-status-table .cart-status-table-data-title {
  white-space: nowrap;
}

#cart-000 .cart-customer,
#cart-000 .cart-shipment-address {
  list-style-type: none;
  padding-right: 5px;
}

#cart-000 .cart-customer li,
#cart-000 .cart-shipment-address li {
  display: block;
  padding: 0 2px 0 5px;
}

#cart-000 .cart-customer-header,
#cart-000 .cart-shipment-address-header {
  background-color: #dedede;
  border: 1px solid #aaaaaa;
}

#cart-000 .products-table {
  background: #fff;
  border-collapse: collapse;
  empty-cells: show;
  margin-bottom: 0;
  width: 100%;
}

#cart-000 .products-table .col-min-width {
  width: 1;
}

#cart-000 .products-table > thead {
  background: #dedede;
}

#cart-000 .products-table td,
#cart-000 .products-table th {
  padding: 5px;
  vertical-align: top;
}

#cart-000 .products-table td {
  border: 0 none transparent;
  vertical-align: middle;
}

#cart-000 .products-table > tbody > tr:nth-child(even) {
  background: #dedede;
}

#cart-000 .products-table > tbody > tr:nth-child(odd) {
  background: #fff;
}

#cart-000 #vat-total {
  background: #fff;
}

#cart-000 #vat-total-table {
  border: 0 none transparent;
}

#cart-000 #vat-total-table > thead > tr {
  background: #dedede;
}

#cart-000 #vat-total-table > tbody > tr:nth-child(even) {
  background: #dedede;
}

#cart-000 #vat-total-table > tbody > tr:nth-child(odd) {
  background: #fff;
}

/******************************************************************************/
#cart-001 {
  background: #fff;
  margin-bottom: 20px;
  padding: 10px;
}

#cart-001 .cart-company-data {
  padding-bottom: 20px;
}

#cart-001 .cart-status-table {
  width: 100%;
}

#cart-001 .cart-status-table .col-min-width {
  width: 1;
  white-space: nowrap;
}

#cart-001 .cart-status-table thead {
  background-color: #dcdcdc;
}

#cart-001 .cart-status-table td {
  padding: 0 2px 0 5px;
}

#cart-001 .cart-status-table .cart-status-table-data-title {
  white-space: nowrap;
}

#cart-001 .cart-customer,
#cart-001 .cart-shipment-address {
  list-style-type: none;
  padding-right: 5px;
}

#cart-001 .cart-customer li,
#cart-001 .cart-shipment-address li {
  display: block;
  padding: 0 2px 0 5px;
}

#cart-001 .cart-customer-header,
#cart-001 .cart-shipment-address-header {
  background-color: #dcdcdc;
  border: 0 none transparent;
}

#cart-001 .products-table {
  background: #fff;
  border-collapse: collapse;
  empty-cells: show;
  margin-bottom: 0;
  width: 100%;
}

#cart-001 .products-table .col-min-width {
  width: 1;
}

#cart-001 .products-table > thead {
  background: #dcdcdc;
  color: #767676;
}

#cart-001 .products-table > tbody {
  color: #767676;
}

#cart-001 .products-table td,
#cart-001 .products-table th {
  padding: 5px 10px;
  vertical-align: top;
}

#cart-001 .products-table th {
  padding-top: 20px;
  padding-bottom: 20px;
}

#cart-001 .products-table td {
  border: 1px solid #dcdcdc;
  vertical-align: middle;
}

#cart-001 .products-table > tbody > tr:nth-child(even) {
  background: #fff;
}

#cart-001 .products-table > tbody > tr:nth-child(odd) {
  background: #fff;
}

#cart-001 .products-table .cart-price.valid {
  color: #90b51d;
  font-size: 1.2em;
}

#cart-001 .products-table .cart-price.not-valid {
  color: #565656;
  text-decoration: line-through;
}

#cart-001 .products-table .cart-price.hidden {
  display: none;
}

#cart-001 .products-table .cart-price.discount.valid {
  color: #90b51d;
  display: none;
  font-size: 2em;
}

#cart-001 .products-table .cart-price.discount.hidden {
  display: none;
}

#cart-001 .products-table #ammount_total_discounted,
#cart-001 .products-table #products_total_discounted,
#cart-001 .products-table td.cart_product_code,
#cart-001 .products-table td.cart_row_delete,
#cart-001 .products-table td.product_ammount,
#cart-001 .products-table td.product_id,
#cart-001 .products-table td.product_image,
#cart-001 .products-table td.product_price,
#cart-001 .products-table td.product_quantity,
#cart-001 .products-table td.product_vat {
  padding-left: 20px;
  padding-right: 20px;
}

#cart-001 .cart-big-vat {
  border-left: #dcdcdc;
  color: #767676;
  float: right;
}

#cart-001 .cart-big-vat td,
#cart-001 .cart-big-vat th {
  color: #767676;
  padding: 5px 20px;
}

#cart-001 .cart-summary .vat_collapse {
  background: url("images/bkg_collapse.gif") 0 7px no-repeat;
  display: inline-block;
  float: right;
  overflow: hidden;
  padding-left: 20px;
}

#cart-001 .show-details .vat_collapse {
  background-position: 0 -50px;
}

#cart-001 .cart-summary-detail-vat {
  background: #dcdcdc;
  font-size: 0.8em;
}

#cart-001 #p_opombe-label {
  padding: 10px;
  width: 100%;
}

#cart-001 #p_opombe {
  border: 1px solid #dcdcdc;
  width: 100%;
}

#cart-001 #coupon-input {
  color: #767676;
}

/******************************************************************************/
.cart-purchase-ammount {
  margin-left: 10px;
}

.cart-purchase-ammount td {
  font-size: 1.25em;
  font-weight: bold;
  padding: 5px 10px;
}

.cart-purchase-payment-method td,
.cart-purchase-shipment-method td {
  padding: 5px 10px;
}

.back-to-shop {
  text-align: right;
}

.cart-purchase-ammount {
  margin-left: 10px;
}
.cart-purchase-ammount td {
  font-size: 1.25em;
  font-weight: bold;
  padding: 5px 10px;
}

.cart-purchase-payment-method td {
  padding: 5px 10px;
}
.cart-purchase-payment-method .payment-method-wrapper {
  display: table;
}
.cart-purchase-payment-method .payment-method-wrapper .payment-method-row {
  display: table-row;
}
.cart-purchase-payment-method .payment-method-wrapper .payment-method-row label {
  display: table-cell;
}
.cart-purchase-payment-method .payment-method-wrapper .payment-method-row .label {
  display: table-cell;
}

.cart-purchase-shipment-method td {
  padding: 5px 10px;
}
.cart-purchase-shipment-method .shipment-method-wrapper {
  display: table;
}
.cart-purchase-shipment-method .shipment-method-wrapper .shipment-method-row {
  display: table-row;
}
.cart-purchase-shipment-method .shipment-method-wrapper .shipment-method-row label {
  display: table-cell;
}
.cart-purchase-shipment-method .shipment-method-wrapper .shipment-method-row .label {
  display: table-cell;
}

#fmCartPurchase #p_request {
  float: right;
}

#purchase-shipment-address #contact_form {
  text-align: left;
}

#purchase-payment-and-shipment {
  border-left: 1px solid #afafaf;
}

.input_kol {
  float: left;
  margin-top: 1px !important;
  padding: 0 5px;
  text-align: right;
}

/* Cart in Nav Bar */
#nav-cart {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 5000;
}

#nav-cart-header {
  background: #f685dd;
  color: #565656;
  cursor: pointer;
  display: block;
  font-size: 20px;
  font-weight: 400;
  line-height: 2em;
  padding: 10px;
  text-align: right;
}

#nav-cart-header > span {
  background: url("images/cart__gray_34_x_40.png") center left no-repeat;
  display: inline-block;
  height: 40px;
  line-height: 2em;
  overflow: hidden;
  padding-left: 54px;
  vertical-align: middle;
}

#nav-cart-header a {
  text-decoration: none;
}

#nav-cart-content {
  background-color: #fff;
  border: 1px solid #f685dd;
  color: #565656;
  display: none;
  overflow: hidden;
  padding: 10px;
  width: 250px;
}

.cart-small-mid {
  overflow: hidden;
}

.cart-small-product {
  float: left;
  width: 200px;
}

.cart-small-product .product {
  clear: both;
  display: block;
}

.cart-small-product .price {
  float: right;
  text-align: right;
}

.cart-small-total {
  font-weight: bold;
  font-size: 1.2em;
  text-align: right;
}

.cart-small-delete {
  float: left;
  overflow: hidden;
}

#added-to-cart .num-products-added {
  background: #777;
  color: #FFF;
  line-height: 2em;
  padding: 0 10px;
}
#added-to-cart .products-added {
  list-style-type: none;
}
#added-to-cart .products-added li {
  display: block;
  list-style-type: none;
  overflow: hidden;
}
#added-to-cart .products-added li .cart-small-product {
  display: table-row;
  width: 100%;
}
#added-to-cart .products-added li .cart-small-product .product {
  display: table-cell;
  padding: 10px 10px 10px 20px;
}
#added-to-cart .products-added li .cart-small-product .quantity {
  display: table-cell;
  text-align: right;
  padding: 10px 20px 10px 10px;
}

/******************************************************************************/
/*
* ArsLuna Web Pages
*
* Main CSS
* All Screens
* Custom Partial
*
* Author : Sašo Štibelj
* Company: Ars Luna, Helena Štibelj s.p.
* Address: Čepulje 16
*          4000 KRANJ
*          SLOVENIA
* Website: http://www.arsluna.si, http://www.arsluna.com
* Mail   : info@arsluna.si, info@arsluna.com
* License: Commercial
*
*/
#nav-wrapper {
  list-style-type: none;
}
#nav-wrapper > li {
  display: inline-block;
  float: left;
}
#nav-wrapper .navbar-logo {
  display: none;
  font-family: "Fondamento", cursive;
  font-size: 24px;
  line-height: 35px;
  text-align: center;
}
#nav-wrapper .navbar-logo #navbar-logo-xs {
  display: none;
}
#nav-wrapper .navbar-nav {
  line-height: 70px;
  width: 80%;
}
#nav-wrapper .navbar-contact {
  font-family: "Fondamento", cursive;
  font-size: 24px;
  line-height: 70px;
  text-align: center;
  width: 20%;
}
#nav-wrapper.fixed {
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100000;
}
#nav-wrapper.fixed .navbar-logo {
  display: inline-block;
  width: 16.6666666667%;
}
#nav-wrapper.fixed .navbar-nav {
  width: 66.6666666667%;
}
#nav-wrapper.fixed .navbar-contact {
  width: 16.6666666667%;
}

.prva-enaki {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}
.prva-enaki.prva-text {
  background: #FFF;
  font-size: 20px !important;
  padding: 0 20%;
}
.prva-enaki.prva-text p {
  font-size: 20px !important;
}

.prva-reference {
  color: #FFF;
  font-size: 20px !important;
}
.prva-reference p {
  font-size: 20px !important;
}
.prva-reference h1 {
  color: #FFF !important;
}
.prva-reference h2 {
  color: #FFF !important;
}
.prva-reference h3 {
  color: #FFF !important;
}

.druzbena-odgovornost {
  background: #423100;
  color: #FFF;
}
.druzbena-odgovornost h3 {
  color: #FFF !important;
  text-align: left;
}
.druzbena-odgovornost h4 {
  color: #FFF !important;
  text-align: left;
}
.druzbena-odgovornost h5 {
  color: #FFF !important;
  text-align: left;
}
.druzbena-odgovornost h6 {
  color: #FFF !important;
  text-align: left;
}

.bela-besedila {
  color: #FFF !important;
}
.bela-besedila h1 {
  color: #FFF !important;
}
.bela-besedila h2 {
  color: #FFF !important;
}
.bela-besedila h3 {
  color: #FFF !important;
}
.bela-besedila h4 {
  color: #FFF !important;
}
.bela-besedila h5 {
  color: #FFF !important;
}
.bela-besedila h6 {
  color: #FFF !important;
}

.footer-wrapper {
  background: #423100;
  color: #F9F0DF;
  font-size: 16px;
  position: relative;
}
.footer-wrapper .container {
  padding: 0;
}
.footer-wrapper p {
  font-size: 16px;
}
.footer-wrapper h1,
.footer-wrapper h2,
.footer-wrapper h3,
.footer-wrapper h4,
.footer-wrapper h5,
.footer-wrapper h6 {
  color: #F9F0DF !important;
}
.footer-wrapper h5 {
  text-align: left;
}