@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 */
/*barva ozadja celotne strani*/
/*barva glavnega teksta*/
/*barva naslovov*/
/*font*/
/*višina vrstice*/
/* font_sizes */
/*velikost osnovnega fonta*/
/**/
/*barva naslova h1*/
/*font naslova h1*/
/*velikost fonta naslova h1*/
/* Wrappers */
/*ozadje glave*/
/*barva tekstov v glavi*/
/*barva naslovov v glavi*/
/**/
/*ozadje bannerja*/
/**/
/*ozadje menija, kadar je meni pod glavo*/
/**/
/**/
/*ozadje vsebine strani*/
/*barva tekstov*/
/*barva naslovov*/
/**/
/*barva ozadja noge*/
/* barva tekstov v nogi*/
/*barva naslovo v nogi*/
/******************************************************************************/
/* Smartmenus                                                                 */
/******************************************************************************/
/* barva ozadja menija v pogledu računalnika*/
/*barva podmenija*/
/*barva posameznega gumba*/
/*barva podmenija drugi nivo*/
/*barva posameznega gumba drugega nivoja*/
/**/
/*barva teksta v meniju*/
/*barva teksta aktivnega gumba v meniju*/
/*velikost fonta v meniju*/
/*višina vrstice*/
/*barva teksta podmenija*/
/*barva teksta aktivnega gumba podmeni*/
/*velikost*/
/******************************************************************************/
/*ozadje mobilnega menija*/
/**/
/*barva teksta mobilni meni*/
/*barva aktivnega teksta*/
/******************************************************************************/
/* Grid                                                                       */
/******************************************************************************/
/*ozadje mreže*/
/*obroba mreže*/
/*barva ozadja imena artikla, naslov strani*/
/*barva teksta imena artikla, naslov strani*/
/* UI Tabs */
/*zavihek*/
/* Autocomplete */
/*vnos pošte pri registraciji*/
/* Input Fields */
/*vnosna polja*/
/*pošta*/
/******************************************************************************/
/* Buttons                                                                    */
/******************************************************************************/
/* Button Primary */
/* Button More */ /*gumb več v slikovnem meniju ali pri artiklu*/
/* Button More Second */ /*gumb več v slikovnem meniju ali pri artiklu*/
/* Button News Subscription */ /*prijava na novice*/
/* Button Search */ /*iskanje*/
/* Pageindex */ /*številke strani*/
/* Button One */
/* Button Two */
/* Button Three */
/* Button Four */
/* Button Five */
/* Button Six */
/******************************************************************************/
/* Ecommerce                                                                  */
/******************************************************************************/
/* Grid */ /*artikel*/
/******************************************************************************/
/* Responsive                                                                 */
/******************************************************************************/
/* Size xl                                                                    */
/******************************************************************************/
/* font_sizes 16 18 20 24 30 30 36 */
/**/
/******************************************************************************/
/* 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;
}

/*
*
*/
#skel-layers-wrapper,
.homepage {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-flow: column;
  /* Safari 6.1+ */
  flex-flow: column;
  height: 100%;
  min-height: 100vh;
  /* 1, 3 */
  height: 100vh;
  /* 1, 3 */
}

#banner-wrapper,
#features-wrapper,
#footer-wrapper,
#header-wrapper {
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
  /* 2 */
}

#main-wrapper {
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  /* 2 */
  padding: var(--space) var(--space) 0;
  width: 100%;
}

#main-wrapper::after {
  content: " ";
  /* &nbsp; */
  display: block;
  margin-top: var(--space);
  height: 0;
  visibility: hidden;
}

@media (--break-lg) {
  #main-wrapper {
    padding-top: var(--space-lg);
  }
  #main-wrapper::after {
    margin-top: var(--space-lg);
  }
}
#main-wrapper--full {
  padding: 0;
}

#main-wrapper--full::after {
  content: none;
}

/*
* 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: #FFF;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  color: #000;
  font-family: "Nunito", sans-serif;
  font-size: 100%;
  font-weight: 400;
  line-height: 1.6em;
  padding-top: 161px;
  text-align: justify;
  /*
  display                : flex;
  flex-direction         : column;
  */
  min-height: 100vh;
}
#arsluna_pagecontent_edit_area.mce-content-body,
body.mce-content-body {
  padding-top: 0;
}

#arsluna_pagecontent_edit_area.homepage,
#skel-layers-wrapper,
.homepage {
  background: #FFF;
  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;
  position: relative;
}
.container.full {
  width: 100%;
}

/******************************************************************************/
/* Default texts                                                              */
/******************************************************************************/
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  font-weight: 400;
  line-height: 1.6em;
  margin-bottom: 0.29em;
  text-align: left;
}

h1 {
  font-family: "Nunito", sans-serif;
  font-size: 36px;
}

h2 {
  font-family: "Nunito", sans-serif;
  font-size: 30px;
}

h3 {
  color: #BCA644;
  font-family: "Nunito", sans-serif;
  font-size: 30px;
}

h4 {
  font-family: "Nunito", sans-serif;
  font-size: 24px;
}

h5 {
  font-family: "Nunito", sans-serif;
  font-size: 20px;
}

h6 {
  font-family: "Nunito", sans-serif;
  font-size: 18px;
}

p + h1,
p + h2,
p + h3,
p + h4,
p + h5,
p + h6,
table + h1,
table + h2,
table + h3,
table + h4,
table + h5,
table + h6,
ul + h1,
ul + h2,
ul + h3,
ul + h4,
ul + h5,
ul + h6 {
  margin-top: 0.84em;
}

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;
}

ol,
p,
ul {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6em;
}

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                                                                   */
/******************************************************************************/
#banner-wrapper {
  background: transparent;
  color: #FFF;
  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: #FFF;
}

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

#main-wrapper {
  background: transparent;
  color: inherit;
  /*
  flex      : 1;
  */
  position: relative;
}
#main-wrapper .container {
  padding: 40px 0;
}
#main-wrapper .container.no-padding-top {
  padding-top: 0;
}
#main-wrapper .container.no-padding-bottom {
  padding-bottom: 0;
}
#main-wrapper .container:first-child {
  padding-top: 40px;
}
#main-wrapper .container:first-child.no-padding-top {
  padding-top: 0;
}
#main-wrapper .container:first-child.no-padding-bottom {
  padding-bottom: 0;
}
#main-wrapper .container:last-child {
  padding-bottom: 40px;
}
#main-wrapper .container:last-child.no-padding-top {
  padding-top: 0;
}
#main-wrapper .container:last-child.no-padding-bottom {
  padding-bottom: 0;
}
#main-wrapper .container.row {
  padding: 0;
}
#main-wrapper .container.row:first-child, #main-wrapper .container.row:last-child {
  padding-bottom: 0;
  padding-top: 0;
}
#main-wrapper .container.page-type-content-container {
  padding: 0;
}
#main-wrapper .main-center .container {
  max-width: 100%;
  width: 100%;
}

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

ol,
ul {
  list-style-position: inside;
}

ol {
  list-style-type: decimal;
}

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 > :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 img {
  display: block;
  width: auto;
}
.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 {
  display: block;
  margin: 0 auto;
  width: auto;
}
.arsluna-image-wrapper.image-right {
  text-align: right;
}
.arsluna-image-wrapper.image-right img {
  display: inline-block;
}

.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.ui-widget-content .ui-tabs-nav {
  border: 0 none;
  padding: 0;
  text-align: center;
}
.ui-tabs.ui-widget-content .ui-tabs-nav.ui-corner-all {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}
.ui-tabs.ui-widget-content .ui-tabs-nav.ui-widget-header {
  background: transparent none;
  border-bottom: 1px solid #D3D3D3;
  font-size: 0;
}
.ui-tabs.ui-widget-content .ui-tabs-nav > li {
  background: transparent;
  border: 0 none transparent;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  float: none !important;
  display: inline-block;
  margin-bottom: -1px;
  padding-bottom: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.ui-tabs.ui-widget-content .ui-tabs-nav > li:first-child {
  margin-left: 0;
}
.ui-tabs.ui-widget-content .ui-tabs-nav > li a,
.ui-tabs.ui-widget-content .ui-tabs-nav > li a:link {
  font-size: 18px;
}
.ui-tabs.ui-widget-content .ui-tabs-nav > li.ui-state-default {
  background: transparent;
  border: 0 none transparent;
  color: #000;
  font-weight: normal;
  padding-bottom: 0;
}
.ui-tabs.ui-widget-content .ui-tabs-nav > li.ui-state-default a,
.ui-tabs.ui-widget-content .ui-tabs-nav > li.ui-state-default a:link {
  border-bottom: 1px solid transparent;
  color: #000 !important;
}
.ui-tabs.ui-widget-content .ui-tabs-nav > li.ui-state-default:focus, .ui-tabs.ui-widget-content .ui-tabs-nav > li.ui-state-default:hover {
  background: #FFF;
  border: 0 none transparent;
  color: #000;
  font-weight: normal;
}
.ui-tabs.ui-widget-content .ui-tabs-nav > li.ui-state-default:focus a,
.ui-tabs.ui-widget-content .ui-tabs-nav > li.ui-state-default:focus a:link, .ui-tabs.ui-widget-content .ui-tabs-nav > li.ui-state-default:hover a,
.ui-tabs.ui-widget-content .ui-tabs-nav > li.ui-state-default:hover a:link {
  border-bottom: 1px solid #BCA644;
}
.ui-tabs.ui-widget-content .ui-tabs-nav > li.ui-state-active {
  background: #FFF;
  border: 0 none transparent;
  color: #000;
  font-weight: normal;
  padding-bottom: 0;
}
.ui-tabs.ui-widget-content .ui-tabs-nav > li.ui-state-active a,
.ui-tabs.ui-widget-content .ui-tabs-nav > li.ui-state-active a:link {
  border-bottom: 1px solid #BCA644;
  color: #000 !important;
}
.ui-tabs.ui-widget-content .ui-tabs-nav > li.ui-state-focus, .ui-tabs.ui-widget-content .ui-tabs-nav > li.ui-state-hover {
  background: #FFF;
  border: 0 none transparent;
  color: #000;
  font-weight: normal;
  padding-bottom: 0;
}
.ui-tabs.ui-widget-content .ui-tabs-nav > li.ui-state-focus a,
.ui-tabs.ui-widget-content .ui-tabs-nav > li.ui-state-focus a:link, .ui-tabs.ui-widget-content .ui-tabs-nav > li.ui-state-hover a,
.ui-tabs.ui-widget-content .ui-tabs-nav > li.ui-state-hover a:link {
  border-bottom: 1px solid #BCA644;
  color: #000 !important;
}
.ui-tabs.ui-widget-content .ui-tabs-panel {
  padding: 1em 0;
}

/******************************************************************************/
/* Autocomplete                                                               */
/******************************************************************************/
.ui-autocomplete {
  background: #FFF;
  border: 1px solid #0A0A0A;
}
.ui-autocomplete > li {
  color: #0A0A0A;
}
.ui-autocomplete > li.ui-state-focus {
  background: #BCA644;
  color: #FFF;
}

/******************************************************************************/
/* Partials                                                                   */
/******************************************************************************/
/* Buttons ********/
/*
* ArsLuna Web Pages
*
* Main CSS
* All Screens
* Template Partial
* Header 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-wrapper {
  background: #FFF;
  border-bottom: 1px solid #D3D3D3;
  color: #FFF;
  left: 0;
  position: fixed;
  width: 100%;
  z-index: 4000;
  top: 0;
  width: 100%;
  /* END .header-main */
}
#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: #FFF;
}
#header-wrapper .header-top-wrapper {
  background: #BCA644;
  position: relative;
  z-index: 4002;
}
#header-wrapper .header-top {
  display: table;
  width: 100%;
  /* END contact-wrapper */
}
#header-wrapper .header-top .header-top-row {
  display: table-row;
}
#header-wrapper .header-top .header-top-row .header-right {
  display: table-cell;
  position: relative;
  text-align: right;
  vertical-align: middle;
  width: 100%;
}
#header-wrapper .header-top .contact {
  display: inline-block;
  font-size: 0;
  line-height: 0;
  list-style-type: none;
  margin: 0;
  vertical-align: top;
}
#header-wrapper .header-top .contact li {
  display: inline-block;
  line-height: 0;
  text-align: left;
  vertical-align: top;
  /* END a */
}
#header-wrapper .header-top .contact li a {
  border: 0 none;
  color: #FFF;
  display: block;
  padding: 8px 0 7px 25px;
  vertical-align: top;
}
#header-wrapper .header-top .contact li a .txt {
  border-bottom: 1px solid transparent;
  display: inline-block;
  font-size: 14px;
  font-weight: normal;
  line-height: 24px;
  position: relative;
  vertical-align: top;
  -webkit-transition: border-color 0.2s ease-in-out;
  -moz-transition: border-color 0.2s ease-in-out;
  -ms-transition: border-color 0.2s ease-in-out;
  -o-transition: border-color 0.2s ease-in-out;
  transition: border-color 0.2s ease-in-out;
}
#header-wrapper .header-top .contact li a:hover .txt {
  border-color: #FFF;
}
#header-wrapper .header-top .contact li:first-child a {
  padding-left: 0;
}
#header-wrapper .header-main-wrapper {
  background: #FFF;
  position: relative;
  z-index: 4003;
}
#header-wrapper .header-main {
  display: table;
  width: 100%;
}
#header-wrapper .header-main .header-main-row {
  display: table-row;
}
#header-wrapper .header-main .header-main-row .header-left {
  display: table-cell;
  vertical-align: middle;
  width: 620px;
}
#header-wrapper .header-main .header-main-row .header-left-mobile {
  display: none;
  vertical-align: middle;
  width: 0;
}
#header-wrapper .header-main .header-main-row .header-center {
  display: table-cell;
  vertical-align: middle;
}
#header-wrapper .header-main .header-main-row .header-right {
  display: table-cell;
  text-align: right;
  vertical-align: middle;
  width: 620px;
}
#header-wrapper .header-right-content {
  font-size: 0;
  /* END .login-content*/
}
#header-wrapper .header-right-content li {
  display: inline-block;
  vertical-align: top;
}
#header-wrapper .header-right-content .search-content {
  border-right: 1px solid #B7B7B7;
  padding-right: 10px;
}
#header-wrapper .header-right-content .login-content {
  padding-left: 35px;
  /* END a */
}
#header-wrapper .header-right-content .login-content a {
  display: block;
  height: 40px;
  padding: 8px;
  width: 40px;
}
#header-wrapper .header-right-content .login-content a .img {
  display: block;
  position: relative;
  height: 24px;
  width: 24px;
}
#header-wrapper .header-right-content .login-content a .img img {
  display: relative;
  height: 24px;
  opacity: 1;
  width: 24px;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
#header-wrapper .header-right-content .login-content a .img img.active {
  left: 0;
  position: absolute;
  opacity: 0;
  top: 0;
}
#header-wrapper .header-right-content .login-content a:focus .img img, #header-wrapper .header-right-content .login-content a:hover .img img {
  opacity: 0;
}
#header-wrapper .header-right-content .login-content a:focus .img img.active, #header-wrapper .header-right-content .login-content a:hover .img img.active {
  opacity: 1;
}
#header-wrapper .header-right-content .cart-content {
  padding-left: 20px;
}

/* END #header-wrapper */
#logo,
#logo-dark {
  margin: 0;
  overflow: hidden;
  position: relative;
  text-align: center;
}
#logo a,
#logo-dark a {
  color: #282828;
  display: block;
  height: 120px;
  margin: 0 auto;
  overflow: hidden;
  padding: 28px 0;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 290px;
}
#logo a img,
#logo-dark a img {
  display: inline-block;
  color: transparent;
  max-height: 100%;
  max-width: 100%;
  vertical-align: top;
}
#logo a:visited,
#logo-dark a:visited {
  color: #282828;
  text-decoration: none;
}

/* END #logo */
#logo-dark {
  display: none;
}

/*
@media (prefers-color-scheme: dark){
    #logo {
        display: none;
    }

    #logo-dark {
        display: block;
    }
}
*/
/* Smartmenus *****/
/*
* ArsLuna Web Pages
*
* Main CSS
* All Screens
* Template Partial
* Footer 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
*
*/
#footer-wrapper {
  border-top: 1px solid #D3D3D3;
  background: #FFF;
  color: #000;
  position: relative;
  line-height: 1.5em;
}
#footer-wrapper .arsluna-section.footer-top {
  background-color: #FFF;
  padding: 60px 0;
}
#footer-wrapper .arsluna-section.footer-main {
  background-color: #f5f5f5;
  padding-top: 40px;
  padding-bottom: 52px;
}
#footer-wrapper .arsluna-section.footer-bottom {
  background-color: #EEE;
  padding-top: 8px;
}
#footer-wrapper .container {
  padding: 0;
}
#footer-wrapper .container .footer-content {
  margin-left: calc(12.5% - 135px);
  margin-right: calc(12.5% - 135px);
}
#footer-wrapper h1,
#footer-wrapper h2,
#footer-wrapper h3,
#footer-wrapper h4,
#footer-wrapper h5,
#footer-wrapper h6 {
  color: #000;
}
#footer-wrapper h2 {
  font-size: 30px;
  margin-bottom: 20px;
}
#footer-wrapper h3 {
  font-size: 22px;
  margin-bottom: 20px;
}
#footer-wrapper p {
  font-size: 15px;
  line-height: 1.5em;
  text-align: left;
}
#footer-wrapper .mail-consent {
  max-width: 610px;
}
#footer-wrapper .mail-consent p {
  color: #888888;
  font-size: 12px;
}
#footer-wrapper .contact a {
  display: inline-block;
}
#footer-wrapper .social-media-title {
  margin-top: 39px;
}
#footer-wrapper .social-media {
  display: block;
  font-size: 0;
  text-align: left;
}
#footer-wrapper .social-media li {
  display: inline-block;
  font-size: 40px;
  height: 40px;
  padding-right: 20px;
  line-height: 0;
  position: relative;
}
#footer-wrapper .social-media li:last-child {
  padding-right: 0;
}
#footer-wrapper .social-media li a {
  height: 40px;
  line-height: 30px;
  width: 40px;
}
#footer-wrapper .social-media li a img {
  font-size: 30px;
  height: 40px;
  opacity: 1;
  position: relative;
  width: 40px;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
#footer-wrapper .social-media li a img.active {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
}
#footer-wrapper .social-media li a:focus img.normal, #footer-wrapper .social-media li a:hover img.normal {
  opacity: 0;
}
#footer-wrapper .social-media li a:focus img.active, #footer-wrapper .social-media li a:hover img.active {
  opacity: 1;
}

/* Copyright */
#footer-wrapper .copyright {
  color: #767676;
  font-size: 12px;
  margin: 0;
  overflow: hidden;
  padding: 0;
  text-decoration: none;
  text-align: left;
}
#footer-wrapper .copyright a,
#footer-wrapper .copyright a:visited {
  color: #767676;
  display: inline-block;
  font-size: 14px;
  overflow: hidden;
  text-decoration: none;
}
#footer-wrapper .copyright a {
  line-height: 40px;
}
#footer-wrapper .copyright p {
  margin-bottom: 0;
}

/* Smartmenus *****/
/*
* 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: #000;
  border: 1px solid #000;
  margin: 10px 10px 0 0;
  color: #FFF !important;
  display: inline-block;
  font-size: 16px;
  height: 45px;
  line-height: 43px;
  padding: 0 25px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  vertical-align: top;
}
.btn-awesome:hover,
.button:hover {
  background: #BCA644;
  border: 1px solid #BCA644;
  color: #FFF !important;
}
.btn-awesome.active,
.button.active {
  background: #BCA644;
  border: 1px solid #BCA644;
  color: #FFF !important;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

/* Button More */
.button-more {
  background: #000;
  color: #FFF !important;
  display: inline-block;
  font-size: 16px;
  height: 45px;
  line-height: 43px;
  margin-left: 0;
  padding: 0 50px;
  position: relative;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.button-more:hover {
  background: #FFF;
  border: 1px solid #000;
  color: #000 !important;
}

/* Button More Secondary*/
.button-more-secondary {
  background: #0A0A0A;
  border: 1px solid #0A0A0A;
  color: #FFF !important;
  float: right;
  font-size: 24px;
  height: 50px !important;
  line-height: 48px;
  margin: 0;
  padding: 0 5px;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-shadow: 0 0 0 #000;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  transition: all 0.2s linear;
  width: auto !important;
}
.button-more-secondary :hover {
  background: #FFF;
  border: #0A0A0A;
  color: #0A0A0A !important;
}

/* Button News Subscribe */
.button.button-news-subscribe {
  background: #000;
  border: 1px solid #000;
  color: #FFF;
  height: 44px;
  margin: 0;
  width: 120px;
}
.button.button-news-subscribe:hover {
  background: #FFF;
  border: 1px solid #000;
  color: #000 !important;
}

/*********************************************************************************/
/* Page Index                                                                    */
/*********************************************************************************/
.pageindex-wrapper .page-number-container {
  display: none;
  margin-bottom: 10px;
  text-align: center;
}
.pageindex-wrapper .page-number-container .page-number {
  display: inline-block;
}

.pageindex {
  clear: both;
  display: block;
}
.pageindex.centered {
  left: 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);
}
.pageindex > ul {
  list-style-type: none;
  text-align: left;
}
.pageindex > ul > li {
  display: inline-block;
  margin-left: 5px;
}
.pageindex > ul > li:first-child {
  margin-left: 0;
}
.pageindex > ul > li a {
  background: #FFF;
  border: 1px solid #BCA644;
  color: #BCA644;
  display: inline-block;
  font-weight: 400;
  height: 30px;
  letter-spacing: 0.1em;
  line-height: 28px;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  width: 30px;
}
.pageindex > ul > li a span {
  display: block;
}
.pageindex > ul > li a.active {
  background: #BCA644;
  border: 1px solid #BCA644;
  color: #FFF;
}
.pageindex > ul > li a:hover {
  background: #BCA644;
  border: 1px solid #BCA644;
  color: #FFF;
}

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

.btn-awesome.btn-icon-only {
  padding: 0;
  text-align: center;
  width: 40px;
}

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

.button.button-add-to-cart-small {
  background: #BCA644;
  border: 1px solid #BCA644;
  display: inline-block;
  height: 45px;
  line-height: 43px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  text-transform: uppercase;
  vertical-align: top;
  width: 220px;
  -webkit-transition: background-color 0.2s ease-in-out;
  -moz-transition: background-color 0.2s ease-in-out;
  -ms-transition: background-color 0.2s ease-in-out;
  -o-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
  -webkit-transition: border-color 0.2s ease-in-out;
  -moz-transition: border-color 0.2s ease-in-out;
  -ms-transition: border-color 0.2s ease-in-out;
  -o-transition: border-color 0.2s ease-in-out;
  transition: border-color 0.2s ease-in-out;
}
.button.button-add-to-cart-small .img {
  display: none;
}
.button.button-add-to-cart-small .txt {
  color: #FFF;
  display: inline-block;
  vertical-align: top;
}
.button.button-add-to-cart-small:hover {
  border: 1px solid #BCA644;
  background: #FFF;
}
.button.button-add-to-cart-small:hover .txt {
  color: #BCA644;
}

.button.button-add-to-favorites-small {
  background: #FFF;
  border: 0 none;
  height: 45px;
  line-height: 45px;
  margin: 0;
  padding: 0;
  width: 45px;
}
.button.button-add-to-favorites-small .img {
  display: inline-block;
  height: 45px;
  line-height: 0;
  position: relative;
  vertical-align: top;
  width: 4;
}
.button.button-add-to-favorites-small .img::after, .button.button-add-to-favorites-small .img::before {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 30px 30px;
  content: "";
  display: inline-block;
  height: 45px;
  overflow: hidden;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  vertical-align: middle;
  width: 45px;
}
.button.button-add-to-favorites-small .img::before {
  background-image: url("images/lista-zelja-30-14161C.png");
  opacity: 1;
  position: relative;
}
.button.button-add-to-favorites-small .img::after {
  background-image: url("images/lista-zelja-30-AAAAAA.png");
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
}
.button.button-add-to-favorites-small .txt {
  display: none;
}
.button.button-add-to-favorites-small:hover {
  border: 0 none;
}
.button.button-add-to-favorites-small:hover .img::before {
  opacity: 0;
}
.button.button-add-to-favorites-small:hover .img::after {
  opacity: 1;
}

.button.button-remove-from-favorites-small {
  background: #FFF;
  border: 0 none;
  height: 45px;
  margin: 0;
  padding: 0;
  width: 45px;
}
.button.button-remove-from-favorites-small .img {
  display: inline-block;
  height: 45px;
  line-height: 0;
  position: relative;
  vertical-align: top;
  width: 45px;
}
.button.button-remove-from-favorites-small .img::after, .button.button-remove-from-favorites-small .img::before {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 30px 30px;
  content: "";
  display: inline-block;
  height: 45px;
  overflow: hidden;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  vertical-align: middle;
  width: 45px;
}
.button.button-remove-from-favorites-small .img::before {
  background-image: url("images/lista-zelja-30-AAAAAA.png");
  opacity: 1;
  position: relative;
}
.button.button-remove-from-favorites-small .img::after {
  background-image: url("images/lista-zelja-30-14161C.png");
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
}
.button.button-remove-from-favorites-small .txt {
  display: none;
}
.button.button-remove-from-favorites-small:hover .img::before {
  opacity: 0;
}
.button.button-remove-from-favorites-small:hover .img::after {
  opacity: 1;
}

.button.button-add-to-cart-big {
  background: #000;
  border: 0 none;
  display: inline-block;
  float: none;
  height: 45px;
  line-height: 45px;
  margin: 0 16px;
  padding: 0;
  text-transform: uppercase;
  -webkit-transition: background-color 0.2s ease-in-out;
  -moz-transition: background-color 0.2s ease-in-out;
  -ms-transition: background-color 0.2s ease-in-out;
  -o-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
  width: 220px;
}
.button.button-add-to-cart-big .img {
  display: none;
}
.button.button-add-to-cart-big .txt {
  color: #FFF;
  display: inline-block;
  vertical-align: top;
}
.button.button-add-to-cart-big:hover {
  background-color: #BCA644;
  border: 0 none;
}

.button.button-add-to-favorites-big {
  background: #000;
  border: 0 none;
  height: 45px;
  line-height: 45px;
  margin: 0 16px;
  padding: 0;
  text-transform: uppercase;
  width: 220px;
}
.button.button-add-to-favorites-big .img {
  display: none;
}
.button.button-add-to-favorites-big .txt {
  color: #FFF;
  -webkit-transition: color 0.2s ease-in-out;
  -moz-transition: color 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}
.button.button-add-to-favorites-big:hover {
  background: #BCA644;
  border: 0 none;
}

.button.button-remove-from-favorites-big {
  background: #BCA644;
  border: 0 none;
  height: 45px;
  line-height: 45px;
  margin: 0 16px;
  padding: 0;
  text-transform: uppercase;
  width: 220px;
}
.button.button-remove-from-favorites-big .img {
  display: none;
}
.button.button-remove-from-favorites-big .txt {
  color: #FFF;
}
.button.button-remove-from-favorites-big:hover {
  background: #000;
  border: 0 none;
}

.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;
}

.nav-cart-wrapper .button-delete-small {
  background: transparent none;
  bottom: 5px;
  display: inline-block;
  font-size: 12px;
  left: 70px;
  line-height: 20px;
  padding: 0;
  position: absolute;
  height: 20px;
  width: auto;
}

.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: #BCA644;
  border: 1px solid #BCA644;
  color: #FFF;
  display: inline-block;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  height: 45px;
  line-height: 43px;
  margin-left: 0;
  padding: 0 40px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.arsluna-button-one:hover {
  background: #FFF;
  border: 1px solid #BCA644;
  color: #BCA644;
}

.arsluna-button-two {
  background: #000;
  border: 1px solid #000;
  color: #FFF;
  display: inline-block;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  height: 45px;
  line-height: 43px;
  margin-left: 0;
  padding: 0 40px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.arsluna-button-two:hover {
  background: #FFF;
  border: 1px solid #000;
  color: #000;
}

.arsluna-button-three {
  background: #FFF;
  border: 1px solid #FFF;
  color: #ff4662;
  display: inline-block;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  height: 45px;
  line-height: 43px;
  margin-left: 0;
  padding: 0 40px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.arsluna-button-three:hover {
  background: #ff4662;
  border: 1px solid #ff4662;
  color: #FFF;
}

.arsluna-button-four {
  background: #3A9CD9;
  border: 1px solid #3A9CD9;
  color: #000;
  display: inline-block;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  height: 45px;
  line-height: 43px;
  margin-left: 0;
  padding: 0 40px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.arsluna-button-four:hover {
  background: #3A9CD9;
  border: 1px solid #3A9CD9;
  color: #FFF;
}

.arsluna-button-five {
  background: #BCA644;
  border: 1px solid #BCA644;
  color: #FFF;
  display: inline-block;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  height: 45px;
  line-height: 43px;
  margin: 0;
  padding: 0 40px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.arsluna-button-five:hover {
  background: #000;
  border: 1px solid #000;
  color: #FFF;
}

.arsluna-button-six {
  background: #000;
  border: 1px solid #000;
  /*
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  */
  color: #FFF;
  display: inline-block;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  height: 45px;
  line-height: 43px;
  margin: 0;
  padding: 0 40px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.arsluna-button-six .arsluna-button-label {
  position: relative;
}
.arsluna-button-six .arsluna-button-label::after {
  border-bottom: 1px solid #fff;
  bottom: 0;
  content: "";
  height: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  -webkit-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  -ms-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  width: 100%;
}
.arsluna-button-six:hover {
  background: #BCA644;
  border: 1px solid #BCA644;
  color: #FFF;
}
.arsluna-button-six:hover .arsluna-button-label::after {
  opacity: 1;
}

.button#buttonToCashDesk {
  background: #BCA644;
  border-color: #BCA644;
  color: #FFF !important;
  margin: 0;
}
.button#buttonToCashDesk:hover {
  background: #000;
  border-color: 1px solid #000;
  color: #FFF !important;
}
.button#buttonToCashDesk.active {
  background: #000;
  border-color: 1px solid #000;
  color: #FFF !important;
}

/* 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: inline-block;
  margin-bottom: 0;
  max-width: 100%;
  position: relative;
}

.sm-blue a {
  color: #0A0A0A;
  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: #0A0A0A;
  font-size: 16px;
  font-weight: normal;
  line-height: 40px;
  text-decoration: none;
  text-transform: uppercase;
}

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

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

/* Sub Arrow for Mobile menu */
.sm-blue a span.sub-arrow {
  background: #FFF;
  bottom: auto;
  font-size: 0;
  height: 40px;
  line-height: 40px;
  left: auto;
  margin-top: 0;
  overflow: hidden;
  position: absolute;
  padding: 0;
  right: 0;
  text-align: center;
  text-shadow: none;
  top: 0;
  width: 40px;
}
.sm-blue a span.sub-arrow:before {
  border-bottom: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #0A0A0A;
  content: " ";
  display: block;
  height: 0;
  line-height: 0;
  left: 50%;
  margin-left: -6px;
  margin-top: -3px;
  position: absolute;
  top: 50%;
  width: 0;
}
.sm-blue a.highlighted span.sub-arrow:before {
  border-bottom: 6px solid #BCA644;
  border-top: 0;
}

/* 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: #FFF;
}

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

.sm-blue ul a,
.sm-blue ul a:active,
.sm-blue ul a:focus,
.sm-blue ul a:hover {
  background: transparent;
  color: #0A0A0A !important;
  font-size: 24px;
  text-shadow: none;
}

.sm-blue ul a:active,
.sm-blue ul a:focus,
.sm-blue ul a:hover {
  color: #0A0A0A !important;
}

.sm-blue ul a:active span.sub-arrow,
.sm-blue ul a:focus span.sub-arrow,
.sm-blue ul a:hover span.sub-arrow {
  border-left-color: #0A0A0A !important;
  border-top-color: transparent !important;
}

.sm-blue ul a.current {
  color: #0A0A0A;
}

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

.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;
}

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

@media (min-width: 992px) {
  /* 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;
  }
  .sm-blue a,
  .sm-blue a.highlighted,
  .sm-blue a:active,
  .sm-blue a:focus,
  .sm-blue a:hover {
    background: transparent;
    color: #0A0A0A;
    padding: 9px 25px 9px 0;
    color: #0A0A0A;
  }
  .sm-blue a > span.menuitem-text,
  .sm-blue a.highlighted > span.menuitem-text,
  .sm-blue a:active > span.menuitem-text,
  .sm-blue a:focus > span.menuitem-text,
  .sm-blue a:hover > span.menuitem-text {
    border-bottom: 2px solid transparent;
    -webkit-transition: border-color 0.2s ease-in-out;
    -moz-transition: border-color 0.2s ease-in-out;
    -ms-transition: border-color 0.2s ease-in-out;
    -o-transition: border-color 0.2s ease-in-out;
    transition: border-color 0.2s ease-in-out;
  }
  .sm-blue a.has-submenu,
  .sm-blue a.highlighted.has-submenu,
  .sm-blue a:active.has-submenu,
  .sm-blue a:focus.has-submenu,
  .sm-blue a:hover.has-submenu {
    padding-right: 38px;
  }
  .sm-blue a.highlighted,
  .sm-blue a:active,
  .sm-blue a:focus,
  .sm-blue a:hover,
  .sm-blue li.active > a,
  .sm-blue li.opener > a {
    color: #0A0A0A;
  }
  .sm-blue a.highlighted > span.menuitem-text,
  .sm-blue a:active > span.menuitem-text,
  .sm-blue a:focus > span.menuitem-text,
  .sm-blue a:hover > span.menuitem-text,
  .sm-blue li.active > a > span.menuitem-text,
  .sm-blue li.opener > a > span.menuitem-text {
    border-color: #BCA644;
  }
  .sm-blue a.current {
    color: #0A0A0A;
  }
  .sm-blue a.disabled {
    color: #0A0A0A;
  }
  /* Sub Arrow for desktop Menu*/
  .sm-blue a span.sub-arrow {
    background: transparent;
    border-width: 5px;
    border-color: #0A0A0A transparent transparent transparent;
    border-style: solid dashed dashed dashed;
    bottom: auto;
    height: 0;
    left: auto;
    margin-left: 0;
    margin-top: 0;
    position: absolute;
    right: 25px;
    top: 27px;
    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 > li.active a span.sub-arrow,
  .sm-blue > li.opener a span.sub-arrow,
  .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 {
    border-top-color: #0A0A0A;
  }
  .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;
  }
  .sm-blue > li:first-child {
    border-left: 0;
  }
  .sm-blue ul {
    border: 1px solid rgba(0, 0, 0, 0.25);
    padding: 7px 0;
    background: #FFF;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
  }
  .sm-blue ul ul {
    background: #FFF;
  }
  .sm-blue ul a,
  .sm-blue ul a.highlighted,
  .sm-blue ul a:active,
  .sm-blue ul a:focus,
  .sm-blue ul a:hover,
  .sm-blue ul li.active > a,
  .sm-blue ul li.opener > a {
    border: 0 !important;
    padding: 0 23px;
    background: transparent;
    color: #000 !important;
    font-size: 16px;
    line-height: 40px;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important;
    border-radius: 0 !important;
    text-transform: none;
  }
  .sm-blue ul a.highlighted,
  .sm-blue ul a:active,
  .sm-blue ul a:focus,
  .sm-blue ul a:hover,
  .sm-blue ul li.active > a,
  .sm-blue ul li.opener > a {
    background: #BCA644;
    color: #FFF !important;
  }
  .sm-blue ul a.highlighted > span.menuitem-text,
  .sm-blue ul a:active > span.menuitem-text,
  .sm-blue ul a:focus > span.menuitem-text,
  .sm-blue ul a:hover > span.menuitem-text,
  .sm-blue ul li.active > a > span.menuitem-text,
  .sm-blue ul li.opener > a > span.menuitem-text {
    border-color: transparent;
  }
  .sm-blue ul a.current {
    background: #BCA644;
    color: #FFF !important;
  }
  .sm-blue ul a.current > span.menuitem-text {
    border-color: transparent;
  }
  .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 #0A0A0A !important;
  }
  .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 #0A0A0A transparent;
  }
  .sm-blue span.scroll-down-arrow {
    top: 6px;
    border-style: solid dashed dashed dashed;
    border-color: #0A0A0A 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 #0A0A0A transparent transparent;
  }
  .sm-blue.sm-rtl > li:first-child > :not(ul) a,
  .sm-blue.sm-rtl > li:first-child > a {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
  }
  .sm-blue.sm-rtl > li:last-child > :not(ul) a,
  .sm-blue.sm-rtl > li:last-child > a {
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important;
    border-radius: 0 !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 #0A0A0A transparent transparent;
  }
  .sm-blue.sm-vertical a {
    padding: 0 23px 0 0;
    text-transform: none;
  }
  .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 #0A0A0A !important;
  }
  .sm-blue.sm-vertical > li:first-child > :not(ul) a,
  .sm-blue.sm-vertical > li:first-child > a {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
  }
  .sm-blue.sm-vertical > li:last-child > :not(ul) a,
  .sm-blue.sm-vertical > li:last-child > a {
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important;
    border-radius: 0 !important;
  }
  .sm-blue.sm-vertical > li {
    border-left: 0 !important;
  }
  .sm-blue.sm-vertical ul {
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important;
    border-radius: 0 !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: inline-block;
  }
  #main-menu-state-left:not(:checked) ~ #main-menu-left {
    display: inline-block;
  }
  #main-menu-state-mobile:not(:checked) ~ #main-menu-mobile {
    display: inline-block;
  }
  .sm-blue .menuitem-image,
  .sm-blue .menuitem-text {
    display: inline-block;
    float: left;
  }
  #sm-menu-item-46 {
    border-bottom: 1px solid #e9ecef;
  }
  #sm-menu-item-46 .menuitem-text {
    padding-bottom: 5px;
    padding-top: 5px;
  }
}
/* Mega menus */
/* make mega menus take the full width of .main-nav */
.sm,
.sm > .has-mega-menu {
  position: static !important;
}

#main-menu {
  /* END .mega-menu */
}
#main-menu > .has-mega-menu .scroll-down,
#main-menu > .has-mega-menu .scroll-up {
  margin-left: 0 !important;
}
#main-menu .mega-menu {
  /* reset mega menu list/link styles (which are inherited from the SmartMenus core/theme styles) */
  color: #0A0A0A;
  margin-left: 0 !important;
  right: 0 !important;
  width: auto !important;
  max-width: none !important;
  /* clear any floats inside the mega menus */
  /* simple columns inside the mega menus */
}
#main-menu .mega-menu > li {
  overflow: auto;
}
#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 {
  border: 1px solid #777;
  padding: 5px;
}
#main-menu .mega-menu .mega-menu-item a:active, #main-menu .mega-menu .mega-menu-item a:hover {
  color: #0A0A0A;
}
#main-menu .mega-menu .mega-menu-item.active a {
  color: #0A0A0A;
}
#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 li > a:active, #main-menu .mega-menu li > a:hover {
  color: #0A0A0A;
}
#main-menu .mega-menu li.active > a {
  color: #0A0A0A;
}
#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;
}
#main-menu .mega-menu .column-1-2,
#main-menu .mega-menu .column-1-3,
#main-menu .mega-menu .column-1-4,
#main-menu .mega-menu .column-1-5 {
  padding: 0 20px;
}

/* simple columns inside the mega menus */
@media (min-width: 992px) {
  #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%;
  }
  #main-menu .mega-menu .column-1-5 {
    float: left;
    width: 20%;
  }
}
/* 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,
#main-nav-mobile {
  display: block;
  line-height: 0;
  margin-top: 0;
  overflow: visible;
  text-align: left;
}

.nav-2 {
  margin-top: 0;
  overflow: hidden;
  text-align: right;
}
.nav-2 > ul {
  margin: 0;
}
.nav-2 > ul > li {
  display: inline-block;
  font-size: 14px;
  font-weight: 300;
  line-height: 50px;
  margin-left: 20px;
  vertical-align: top;
}
.nav-2 > ul > li.first {
  margin-left: 0;
}
.nav-2 > ul > li > a {
  background: 0 0;
  color: #0A0A0A;
  display: block;
  line-height: 30px;
  padding: 10px 12px;
  -webkit-transition: color 0.2s ease-in-out;
  -moz-transition: color 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}
.nav-2 > ul > li > a .menuitem-wrapper {
  display: block;
}
.nav-2 > ul > li > a .menuitem-image-container,
.nav-2 > ul > li > a .menuitem-text {
  display: inline-block;
  margin-right: 10px;
  position: relative;
  vertical-align: top;
}
.nav-2 > ul > li > a .menuitem-image-container {
  line-height: 0;
  padding-top: 3px;
}
.nav-2 > ul > li > a .menuitem-text-main {
  display: block;
}
.nav-2 > ul > li > a img.menuitem-image {
  height: 24px;
  opacity: 1;
  position: relative;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  width: 24px;
}
.nav-2 > ul > li > a img.menuitem-image.active {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 3px;
}
.nav-2 > ul > li:first-child > a {
  padding-left: 0;
}
.nav-2 > ul > li a:visited {
  color: #0A0A0A;
}
.nav-2 > ul > li > a.selected, .nav-2 > ul > li > a:hover, .nav-2 > ul > li.active > a {
  color: #717171;
}
.nav-2 > ul > li > a.selected img.menuitem-image, .nav-2 > ul > li > a:hover img.menuitem-image, .nav-2 > ul > li.active > a img.menuitem-image {
  opacity: 0;
}
.nav-2 > ul > li > a.selected img.menuitem-image.active, .nav-2 > ul > li > a:hover img.menuitem-image.active, .nav-2 > ul > li.active > a img.menuitem-image.active {
  opacity: 1;
}
.nav-2 > ul > li > ul {
  display: none;
}

.menu-001 {
  padding: 0;
}
.menu-001 > ul > li > a {
  color: #000;
  display: block;
  font-size: 15px;
  font-weight: normal;
  line-height: 1.5em;
  position: relative;
  text-align: left;
  text-decoration: none;
}
.menu-001 > ul > li > a .menuitem-text {
  position: relative;
}
.menu-001 > ul > li > a .menuitem-text::after {
  background: #BCA644;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  opacity: 0;
  position: absolute;
  width: 100%;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.menu-001 > ul > li > a .menuitem-text .menuitem-text-main {
  display: inline-block;
  line-height: 1.5em;
}
.menu-001 > ul > li > a:hover .menuitem-text::after {
  opacity: 1;
}

/* END Menu 001 */
.menu-horizontal-001 {
  padding: 0;
}
.menu-horizontal-001 > ul {
  text-align: right;
}
.menu-horizontal-001 > ul > li {
  display: inline-block;
  font-size: 0;
  vertical-align: top;
  padding: 0;
}
.menu-horizontal-001 > ul > li > a {
  color: #767676;
  display: inline-block;
  font-size: 14px;
  font-weight: normal;
  line-height: 20px;
  padding: 10px 0;
  position: relative;
  text-align: left;
  text-decoration: none;
}
.menu-horizontal-001 > ul > li > a .menuitem-wrapper {
  border-right: 1px solid #767676;
  display: inline-block;
  padding: 0 10px;
}
.menu-horizontal-001 > ul > li > a .menuitem-wrapper .menuitem-content {
  position: relative;
}
.menu-horizontal-001 > ul > li > a .menuitem-wrapper .menuitem-content::after {
  background: #BCA644;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.menu-horizontal-001 > ul > li > a:focus .menuitem-wrapper .menuitem-content::after, .menu-horizontal-001 > ul > li > a:hover .menuitem-wrapper .menuitem-content::after {
  opacity: 1;
}
.menu-horizontal-001 > ul > li:first-child > a .menuitem-wrapper {
  padding-left: 0;
}
.menu-horizontal-001 > ul > li:last-child > a .menuitem-wrapper {
  border-right: 0 none;
  padding-right: 0;
}

/* END .menu-hotrizontal-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:required {
  box-shadow: none;
}

input[type=email],
input[type=number],
input[type=password],
input[type=select],
input[type=tel],
input[type=text],
textarea {
  background: #FFF;
  border: 1px solid #D3D3D3;
  box-shadow: none;
  color: #0A0A0A;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  vertical-align: middle;
}
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: inline-block;
  position: relative;
}
input[type=email]:required,
input[type=number]:required,
input[type=password]:required,
input[type=select]:required,
input[type=tel]:required,
input[type=text]:required,
textarea:required {
  box-shadow: none;
}

input[type=email],
input[type=number],
input[type=password],
input[type=select],
input[type=tel],
input[type=text] {
  line-height: 38px;
  height: 40px;
}

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

form .formerize-placeholder {
  color: #717171 !important;
}
form::-webkit-input-placeholder {
  color: #717171 !important;
}
form:-moz-placeholder {
  color: #717171 !important;
}
form::-o-placeholder {
  color: #717171 !important;
}
form:-ms-input-placeholder {
  color: #717171 !important;
}
form::-ms-input-placeholder {
  color: #717171 !important;
}
form::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #717171 !important;
  opacity: 1;
  /* Firefox */
}
form::-moz-focus-inner {
  border: 0;
}

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

.login {
  background: #fff;
  margin-bottom: 20px;
  overflow: hidden;
  padding: 20px;
}
.login h1,
.login h2,
.login h3,
.login h4,
.login h5,
.login h6,
.login p {
  text-align: center;
}

.pass-forgotten .form-group {
  margin: 0 auto;
  max-width: 500px;
}
.pass-forgotten .form-group label {
  padding-bottom: 5px;
  text-align: left;
}
.pass-forgotten .gumbi {
  text-align: center;
}

.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 #D3D3D3;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  box-shadow: none;
  color: #0A0A0A;
  font-size: 16px;
  padding: 5px;
}

input.col2_form_input_100,
input.col2_form_input_25,
input.col2_form_input_50,
input.col2_form_input_75,
input.contact_form_input_100,
input.contact_form_input_25,
input.contact_form_input_50,
input.contact_form_input_75,
input.input_kol,
input.textinput-full-width,
input.textinputbel {
  line-height: 2.5em;
  height: 2.5em;
}

.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;
  vertical-align: middle;
}
.form-group .info.\31 2u,
.form-group .label.\31 2u,
.form-group label.\31 2u {
  padding-bottom: 5px;
  text-align: left !important;
}
.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: 600px;
}
.form-group .form-input-wrapper .zip-input-full-width {
  display: table;
  max-width: 100%;
  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;
  position: relative;
  vertical-align: top;
  width: 25%;
}
.form-group .form-input-wrapper .zip-input-full-width .zip-input-row .textinput-zip {
  display: table-cell;
  padding-left: 10px;
  position: relative;
  vertical-align: top;
  width: 75%;
}
.form-group .form-input-wrapper .zip-input-full-width .zip-input-row .textinput-zip .placeholder-label {
  padding-left: 15px;
}
.form-group .form-input-wrapper input[type=checkbox] {
  margin-top: 12px;
}
.form-group label {
  padding-right: 15px;
  position: relative;
}
.form-group.required label::after {
  content: " *";
  display: inline-block;
  position: relative;
}
.form-group.checkbox-right label {
  position: relative;
  text-align: left !important;
}
.form-group.checkbox-right.required label::after {
  display: inline;
  position: relative;
  right: auto;
  top: auto;
  vertical-align: top;
}

.news-unsubscribe-001 {
  text-align: center;
}
.news-unsubscribe-001 .form-group-inline {
  margin: 0 auto;
  max-width: 500px;
}
.news-unsubscribe-001 .form-group .info,
.news-unsubscribe-001 .form-group .label,
.news-unsubscribe-001 .form-group label {
  font-size: 16px;
  line-height: 1.5em;
  margin: 0;
  overflow: hidden;
  padding: 16px 5px 5px;
  text-align: left;
  vertical-align: middle;
}

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

.col2_form_input_25,
.contact_form_input_25 {
  width: 25%;
}

.col2_form_input_50,
.contact_form_input_50 {
  width: 50%;
}

.col2_form_input_75,
.contact_form_input_75 {
  width: 75%;
}

.col2_form_input_100,
.col2_form_textarea_100,
.contact_form_input_100,
.contact_form_textarea_100 {
  /*margin: 5px auto 5px auto !important;*/
  max-width: 500px;
  width: 100%;
}

#p_captcha,
#p_captcha_img {
  float: left;
}

#p_captcha_img {
  margin: 5px;
}

/* Search *********************************************************************/
.search-wrapper {
  text-align: right;
  position: relative;
  /* Button Search */
}
.search-wrapper .search {
  display: block;
  position: relative;
  text-align: right;
  width: 180px;
  /* Button Search */
}
.search-wrapper .search .search-group-wrapper {
  font-size: 0;
}
.search-wrapper .search .search-button-wrapper,
.search-wrapper .search .search-input-wrapper {
  display: inline-block;
  vertical-align: top;
}
.search-wrapper .search input[type=text] {
  background: #FFF;
  border: 1px solid #FFF;
  border-right: 0 none;
  box-shadow: none;
  color: #0A0A0A;
  display: block;
  font-size: 14px;
  font-weight: normal;
  height: 40px;
  line-height: 38px;
  padding: 0 10px;
  text-align: left;
  width: 140px;
}
.search-wrapper .search .button.button-search {
  background: #FFF;
  border-bottom: 1px solid #FFF;
  border-left: 0 none;
  border-right: 1px solid #FFF;
  border-top: 1px solid #FFF;
  color: #e1ff00;
  display: block;
  font-size: 18px;
  height: 40px;
  line-height: 38px;
  margin: 0 0 0 -4px;
  padding: 0;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-indent: -9999px;
  width: 40px;
}
.search-wrapper .search .button.button-search::before, .search-wrapper .search .button.button-search:after {
  background: url("images/search-0A0A0A-100.png") center center no-repeat;
  background-size: 24px 24px;
  bottom: 0;
  content: "";
  opacity: 1;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.search-wrapper .search .button.button-search::after {
  background-image: url("images/search-BCA644-100.png");
  opacity: 0;
}
.search-wrapper .search .button.button-search:focus, .search-wrapper .search .button.button-search:hover {
  background: #FFF;
  border-color: #FFF;
  color: #BCA644;
}
.search-wrapper .search .button.button-search:focus::after, .search-wrapper .search .button.button-search:hover::after {
  opacity: 1;
}
.search-wrapper .search .button.button-search:focus::before, .search-wrapper .search .button.button-search:hover::before {
  opacity: 0;
}
.search-wrapper .button.search-toggle-button {
  background: #FFF;
  border: 1px solid #FFF;
  color: #0A0A0A;
  display: none;
  font-size: 0;
  height: 40px;
  line-height: 38px;
  margin: 0;
  padding: 0;
  position: relative;
  text-align: center;
  text-indent: -9999px;
  text-decoration: none;
  width: 40px;
}
.search-wrapper .button.search-toggle-button::after, .search-wrapper .button.search-toggle-button::before {
  background: url("images/search-0A0A0A-100.png") center center no-repeat;
  background-size: 24px 24px;
  bottom: 0;
  content: "";
  opacity: 1;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.search-wrapper .button.search-toggle-button::after {
  background-image: url("images/search-BCA644-100.png");
  opacity: 0;
}
.search-wrapper .button.search-toggle-button:focus, .search-wrapper .button.search-toggle-button:hover {
  background: #FFF;
  border-color: #FFF;
  color: #BCA644;
}
.search-wrapper .button.search-toggle-button:focus::after, .search-wrapper .button.search-toggle-button:hover::after {
  opacity: 1;
}
.search-wrapper .button.search-toggle-button:focus::before, .search-wrapper .button.search-toggle-button:hover::before {
  opacity: 0;
}

#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%;
}

.without-registration-form {
  padding-top: 2.6455%;
}

.form-group.checkbox-right label {
  display: block;
  position: relative;
  padding: 0 0 10px 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* Hide the browser's default checkbox */
  /* Create a custom checkbox */
  /* On mouse-over, add a grey background color */
  /* When the checkbox is checked, add a blue background */
}
.form-group.checkbox-right label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.form-group.checkbox-right label .checkmark {
  border: 1px solid #D3D3D3;
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #FFF;
  /* Create the checkmark/indicator (hidden when not checked) */
  /* Style the checkmark/indicator */
}
.form-group.checkbox-right label .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid #FFF;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.form-group.checkbox-right label:focus input ~ .checkmark, .form-group.checkbox-right label:hover input ~ .checkmark {
  background-color: #c9b86a;
}
.form-group.checkbox-right label input:checked ~ .checkmark {
  background-color: #BCA644;
  /* Show the checkmark when checked */
}
.form-group.checkbox-right label input:checked ~ .checkmark:after {
  display: block;
}

/* Customize the label (the container) */
.arsluna-radio {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  line-height: 26px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* Hide the browser's default radio button */
  /* Create a custom radio button */
  /* On mouse-over, add a grey background color */
  /* When the radio button is checked, add a blue background */
}
.arsluna-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.arsluna-radio .checkmark {
  background-color: #FFF;
  border: 1px solid #D3D3D3;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  height: 26px;
  width: 26px;
  /* Create the indicator (the dot/circle - hidden when not checked) */
}
.arsluna-radio .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  top: 8px;
  left: 8px;
  width: 8px;
  height: 8px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  background: #FFF;
}
.arsluna-radio:focus input ~ .checkmark, .arsluna-radio:hover input ~ .checkmark {
  background-color: #c9b86a;
}
.arsluna-radio input:checked ~ .checkmark {
  background-color: #BCA644;
  /* Show the indicator (dot/circle) when checked */
}
.arsluna-radio input:checked ~ .checkmark:after {
  display: block;
}

.news-list-unsubscribe {
  padding: 40px 0;
}
.news-list-unsubscribe .form-group {
  max-width: 500px;
}
.news-list-unsubscribe .form-group label {
  padding-bottom: 0;
  text-align: left !important;
}

/* 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: #FFF;
  color: #000;
}

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

table.style2 td {
  padding: 0.5em 1em;
  border-bottom: 1px solid #D3D3D3;
}

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

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

table.style2 tfoot {
  background: #FFF;
}

/**************************************/
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%;
}

/* 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
*
*/
/******************************************************************************/
/* 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-left {
  padding-right: 20px;
  padding-top: 10px;
  z-index: 3999;
}

.main-right {
  padding-left: 20px;
  padding-top: 10px;
}

/******************************************************************************/
#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: 0;
}

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

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

/******************************************************************************/
.template {
  border-bottom: 1px solid #BCA644;
  padding: 2.0834% 0;
}
.template.last {
  border-bottom: 0 none transparent;
}
.template .content-first {
  display: block;
}
.template .image-photo-album a {
  display: block;
  text-align: center;
}
.template .datetime {
  vertical-align: top;
}
.template .datetime li {
  display: inline-block;
}

.template-003 .image-main {
  float: left;
  padding-right: 5%;
  max-width: 50%;
}

.template-004 .image-main {
  float: left;
  padding-right: 5%;
  max-width: 50%;
}

.template-005 .image-main {
  float: right;
  padding-left: 5%;
  max-width: 50%;
}

.template-006 .image-main {
  float: right;
  padding-left: 5%;
  max-width: 50%;
}

.template-008 .image-main {
  float: left;
  padding-right: 5%;
  max-width: 50%;
}
.template-008 .image-main-second {
  float: left;
  padding-right: 5%;
  max-width: 50%;
}

.template-009 .image-main {
  float: left;
  padding-right: 5%;
  max-width: 50%;
}
.template-009 .image-main-second {
  float: right;
  padding-right: 5%;
  max-width: 50%;
}

.template-010 .image-main {
  float: right;
  padding-right: 5%;
  max-width: 50%;
}
.template-010 .image-main-second {
  float: left;
  padding-right: 5%;
  max-width: 50%;
}

.template-011 .image-main {
  float: right;
  padding-right: 5%;
  max-width: 50%;
}
.template-011 .image-main-second {
  float: right;
  padding-right: 5%;
  max-width: 50%;
}

.messages-wrapper {
  background: rgba(125, 125, 125, 0.5) url("images/loading-ring.gif") center center no-repeat;
  display: table;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999999;
}
.messages-wrapper .messages-container {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}
.messages-wrapper .messages-container .message-box {
  background: #FFF;
  border: 1px solid #0A0A0A;
  display: inline-block;
  max-height: 90%;
  min-height: 160px;
  max-width: 90%;
  overflow: auto;
  padding: 40px 20px 20px;
  position: relative;
}
.messages-wrapper .messages-container .message-box .close {
  color: #000;
  cursor: pointer;
  font-size: 35px;
  font-weight: bold;
  line-height: 1em;
  position: absolute;
  right: 20px;
  top: 0;
}
.messages-wrapper .messages-container .message-box .message-box-content {
  display: block;
  overflow: hidden;
}
.messages-wrapper .messages-container .message-box .message-header {
  background: #0A0A0A;
  color: #FFF;
  line-height: 2em;
  margin-bottom: 15px;
  padding: 0 10px;
}
.messages-wrapper .messages-container .message-box .buttons-wrapper {
  display: block;
  vertical-align: top;
}
.messages-wrapper .messages-container .message-box .half-left {
  display: inline-block;
  min-width: 130px;
  text-align: left;
  vertical-align: top;
  width: 50%;
}
.messages-wrapper .messages-container .message-box .half-right {
  display: inline-block;
  min-width: 130px;
  vertical-align: top;
  text-align: right;
  width: 50%;
}
.messages-wrapper .messages-container .message-box .half-right .button {
  margin-right: 0;
}

.arsluna-bookmark {
  display: block;
  height: 0;
  left: 0;
  position: relative;
  top: -161px;
  visibility: hidden;
  width: 0;
}

.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: #000;
  border: 1px solid #000;
  color: #FFF !important;
  font-size: 1.25em;
  min-height: 45px;
  line-height: normal;
  padding: 10px 25px 10px 40px;
  position: relative;
  text-align: left;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s 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 #FFF;
  display: block;
  margin-top: -5px;
  content: " ";
  position: absolute;
  height: 0;
  right: 25px;
  top: 50%;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  width: 0;
}
.arsluna-portlet .arsluna-portlet-header:hover {
  background: #BCA644;
  border: 1px solid #BCA644;
  color: #FFF !important;
}
.arsluna-portlet .arsluna-portlet-header:hover::after {
  border-top: 10px solid #FFF;
}
.arsluna-portlet .arsluna-portlet-header.portlet-opened {
  background: #BCA644;
  border: 1px solid #BCA644;
  color: #FFF !important;
}
.arsluna-portlet .arsluna-portlet-header.portlet-opened::after {
  border-bottom: 10px solid #FFF;
  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;
}

.middle-content-page-photo-basic table {
  margin: 0 auto;
}

/* Grid Elements **/
.row-grid-element {
  margin: -20px;
}

.grid-element {
  padding: 20px;
  position: relative;
}

.grid-margin-50 > .row-grid-element {
  margin: -50px;
}
.grid-margin-50 > .row-grid-element > .grid-element {
  padding: 50px;
}

.grid-element-content {
  background: #FFF;
  border: 0px none;
  padding: 0;
  position: relative;
}
.grid-element-content header {
  text-align: center;
}
.grid-element-content header h2 {
  display: block;
  margin-bottom: 0;
  text-align: center;
  width: 100%;
}
.grid-element-content header a {
  display: block;
  text-decoration: none;
}

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

.grid-element-content-header-number {
  display: none;
}

.grid-element-title {
  background: transparent;
  color: #BCA644;
  display: block;
  font-family: "Nunito", sans-serif;
  font-size: 24px;
  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;
  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;
  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 {
  /* END .grid-menu-item-012-001 */
  /* END .grid-menu-item-020 */
  /* END .grid-menu-item-022-left */
  /* END .grid-menu-item-022-right */
  /* END .grid-menu-item-022-right */
  /* END .grid-menu-item-022-top */
  /* END .grid-menu-item-022-bottom */
  /* END .grid-menu-item-022-top */
}
.grid-menu-item.grid-menu-item-012-001 {
  border: 0 none;
  position: relative;
  /* END .grid-element-image-wrapper */
  /* END .grid-element-title */
}
.grid-menu-item.grid-menu-item-012-001 .grid-element-content-wrapper {
  display: block;
  position: relative;
}
.grid-menu-item.grid-menu-item-012-001 .grid-element-content-header-image {
  display: block;
  position: relative;
}
.grid-menu-item.grid-menu-item-012-001 .grid-element-content-header-image::after {
  background: #BCA644;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.grid-menu-item.grid-menu-item-012-001 .grid-element-content-header-image .height-limit {
  display: none;
  height: 0;
  margin-top: 0;
  width: 100%;
}
.grid-menu-item.grid-menu-item-012-001 .grid-element-content-header-image .image-limited {
  display: block;
  position: relative;
  text-align: center;
  width: 100%;
  /*
  bottom: 0;
  left: 0;
  max-height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: translate(0, -50%);
  -moz-transform   : translate(0, -50%);
  -o-transform     : translate(0, -50%);
  -ms-transform    : translate(0, -50%);
  transform        : translate(0, -50%);
  */
}
.grid-menu-item.grid-menu-item-012-001 .grid-element-content-header-image .image-limited img {
  height: auto;
  max-width: 100%;
  opacity: 1;
  position: relative;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.grid-menu-item.grid-menu-item-012-001 .grid-element-content-header-image .image-limited img.active {
  left: 0;
  opacity: 0;
  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%;
}
.grid-menu-item.grid-menu-item-012-001 .grid-element-title {
  color: #FFF;
  font-size: 24px;
  left: 0;
  opacity: 0;
  padding: 0;
  position: absolute;
  text-align: center;
  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%);
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  width: 100%;
}
.grid-menu-item.grid-menu-item-012-001 .grid-element-title .num-products,
.grid-menu-item.grid-menu-item-012-001 .grid-element-title .title {
  display: inline-block;
}
.grid-menu-item.grid-menu-item-012-001:focus .grid-element-content-header-image::after, .grid-menu-item.grid-menu-item-012-001:hover .grid-element-content-header-image::after {
  opacity: 0.5;
}
.grid-menu-item.grid-menu-item-012-001:focus .grid-element-title, .grid-menu-item.grid-menu-item-012-001:hover .grid-element-title {
  opacity: 1;
}
.grid-menu-item.grid-menu-item-020 {
  border: 0 none;
  position: relative;
  /* END .grid-element-image-wrapper */
  /* END .grid-element-title-wrapper */
}
.grid-menu-item.grid-menu-item-020 .grid-element-content-wrapper {
  display: block;
  position: relative;
}
.grid-menu-item.grid-menu-item-020 .grid-element-image-wrapper {
  display: block;
  padding-bottom: 0;
  position: relative;
}
.grid-menu-item.grid-menu-item-020 .grid-element-image-wrapper::after {
  background: #BCA644;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.grid-menu-item.grid-menu-item-020 .grid-element-image-wrapper .height-limit {
  display: none;
  height: 0;
  margin-top: 0;
  width: 100%;
}
.grid-menu-item.grid-menu-item-020 .grid-element-image-wrapper .image-limited {
  display: block;
  position: relative;
  text-align: center;
  width: 100%;
  /*
  bottom: 0;
  left: 0;
  max-height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: translate(0, -50%);
  -moz-transform   : translate(0, -50%);
  -o-transform     : translate(0, -50%);
  -ms-transform    : translate(0, -50%);
  transform        : translate(0, -50%);
  */
}
.grid-menu-item.grid-menu-item-020 .grid-element-image-wrapper .image-limited img {
  height: auto;
  max-width: 100%;
  opacity: 1;
  position: relative;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.grid-menu-item.grid-menu-item-020 .grid-element-image-wrapper .image-limited img.active {
  left: 0;
  opacity: 0;
  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%;
}
.grid-menu-item.grid-menu-item-020 .grid-element-title-wrapper {
  border: 0 none;
  background: transparent;
  bottom: auto;
  display: block;
  left: 30px;
  opacity: 0;
  position: absolute;
  right: 30px;
  text-align: center;
  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%);
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  vertical-align: middle;
}
.grid-menu-item.grid-menu-item-020 .grid-element-title-wrapper .grid-element-title {
  color: #FFF;
  font-size: 30px;
  text-align: center;
  width: 100%;
}
.grid-menu-item.grid-menu-item-020:focus .grid-element-image-wrapper, .grid-menu-item.grid-menu-item-020:hover .grid-element-image-wrapper {
  /*
  .image-limited {
      img {
          opacity: 0;

          &.active {
              opacity: 1;
          }
      }
  }
  */
}
.grid-menu-item.grid-menu-item-020:focus .grid-element-image-wrapper::after, .grid-menu-item.grid-menu-item-020:hover .grid-element-image-wrapper::after {
  opacity: 0.5;
}
.grid-menu-item.grid-menu-item-020:focus .grid-element-title-wrapper, .grid-menu-item.grid-menu-item-020:hover .grid-element-title-wrapper {
  opacity: 1;
}
.grid-menu-item.grid-menu-item-022-left, .grid-menu-item.grid-menu-item-022-right {
  /* END .menu-item-content */
  /*
  .menu-item-row {
      display : table;
      overflow: hidden;
      width   : 100%;
  }
  */
  /* END .menu-item-row */
  /* END .menu-item-row-element */
}
.grid-menu-item.grid-menu-item-022-left .menu-item-content, .grid-menu-item.grid-menu-item-022-right .menu-item-content {
  display: block;
  width: 100%;
}
.grid-menu-item.grid-menu-item-022-left .menu-item-row, .grid-menu-item.grid-menu-item-022-right .menu-item-row {
  align-content: stretch;
  align-items: stretch;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -webkit-flex-flow: row;
  -ms-flex-direction: row;
  flex-direction: row;
  flex-flow: row;
  flex-wrap: wrap;
  justify-content: center;
  overflow: hidden;
  width: 100%;
}
.grid-menu-item.grid-menu-item-022-left .menu-item-row-element, .grid-menu-item.grid-menu-item-022-right .menu-item-row-element {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0;
  width: 50%;
}
.grid-menu-item.grid-menu-item-022-left .menu-item-row-element.img, .grid-menu-item.grid-menu-item-022-right .menu-item-row-element.img {
  position: relative;
}
.grid-menu-item.grid-menu-item-022-left .menu-item-row-element.img img, .grid-menu-item.grid-menu-item-022-right .menu-item-row-element.img img {
  position: relative;
  opacity: 1;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.grid-menu-item.grid-menu-item-022-left .menu-item-row-element.img img.active, .grid-menu-item.grid-menu-item-022-right .menu-item-row-element.img img.active {
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.grid-menu-item.grid-menu-item-022-left .menu-item-row-element.img .has-active-image img, .grid-menu-item.grid-menu-item-022-right .menu-item-row-element.img .has-active-image img {
  opacity: 0;
}
.grid-menu-item.grid-menu-item-022-left .menu-item-row-element.img .has-active-image img.active, .grid-menu-item.grid-menu-item-022-right .menu-item-row-element.img .has-active-image img.active {
  opacity: 1;
}
.grid-menu-item.grid-menu-item-022-left .menu-item-row-element.content, .grid-menu-item.grid-menu-item-022-right .menu-item-row-element.content {
  border: 1px solid #000;
  border-left: 0 none;
  padding: 36px;
  position: relative;
  vertical-align: middle;
}
.grid-menu-item.grid-menu-item-022-left .menu-item-row-element.content .content-container, .grid-menu-item.grid-menu-item-022-right .menu-item-row-element.content .content-container {
  left: 36px;
  position: absolute;
  right: 36px;
  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%);
  vertical-align: middle;
}
.grid-menu-item.grid-menu-item-022-left .menu-item-row-element.content .menu-item-title .title, .grid-menu-item.grid-menu-item-022-right .menu-item-row-element.content .menu-item-title .title {
  font-size: 30px;
  text-align: center;
}
.grid-menu-item.grid-menu-item-022-left .menu-item-row-element.content .menu-item-title .sub-title, .grid-menu-item.grid-menu-item-022-right .menu-item-row-element.content .menu-item-title .sub-title {
  font-size: 24px;
  text-align: center;
}
.grid-menu-item.grid-menu-item-022-left .menu-item-row-element.content .menu-item-title .sub-title-2, .grid-menu-item.grid-menu-item-022-right .menu-item-row-element.content .menu-item-title .sub-title-2 {
  font-size: 24px;
  text-align: center;
}
.grid-menu-item.grid-menu-item-022-left .menu-item-row-element.content .menu-item-content, .grid-menu-item.grid-menu-item-022-right .menu-item-row-element.content .menu-item-content {
  margin: 20px 0 40px;
  text-align: center;
}
.grid-menu-item.grid-menu-item-022-left .menu-item-row-element.content .button-wrapper, .grid-menu-item.grid-menu-item-022-right .menu-item-row-element.content .button-wrapper {
  text-align: center;
}
.grid-menu-item.grid-menu-item-022-right .menu-item-row-element.content {
  border-left: 1px solid #000;
  border-right: 0 none;
}
.grid-menu-item.grid-menu-item-022-bottom, .grid-menu-item.grid-menu-item-022-top {
  /* END .menu-item-content */
  /* END .menu-item-row */
  /* END .menu-item-row-element */
}
.grid-menu-item.grid-menu-item-022-bottom .menu-item-row, .grid-menu-item.grid-menu-item-022-top .menu-item-row {
  display: block;
  overflow: hidden;
}
.grid-menu-item.grid-menu-item-022-bottom .menu-item-row-element, .grid-menu-item.grid-menu-item-022-top .menu-item-row-element {
  display: block;
}
.grid-menu-item.grid-menu-item-022-bottom .menu-item-row-element.img, .grid-menu-item.grid-menu-item-022-top .menu-item-row-element.img {
  position: relative;
}
.grid-menu-item.grid-menu-item-022-bottom .menu-item-row-element.img img, .grid-menu-item.grid-menu-item-022-top .menu-item-row-element.img img {
  position: relative;
  opacity: 1;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.grid-menu-item.grid-menu-item-022-bottom .menu-item-row-element.img img.active, .grid-menu-item.grid-menu-item-022-top .menu-item-row-element.img img.active {
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.grid-menu-item.grid-menu-item-022-bottom .menu-item-row-element.img .has-active-image img, .grid-menu-item.grid-menu-item-022-top .menu-item-row-element.img .has-active-image img {
  opacity: 0;
}
.grid-menu-item.grid-menu-item-022-bottom .menu-item-row-element.img .has-active-image img.active, .grid-menu-item.grid-menu-item-022-top .menu-item-row-element.img .has-active-image img.active {
  opacity: 1;
}
.grid-menu-item.grid-menu-item-022-bottom .menu-item-row-element.content, .grid-menu-item.grid-menu-item-022-top .menu-item-row-element.content {
  border: 1px solid #000;
  border-bottom: 0 none;
  padding: 36px;
  position: relative;
  vertical-align: middle;
}
.grid-menu-item.grid-menu-item-022-bottom .menu-item-row-element.content .content-container, .grid-menu-item.grid-menu-item-022-top .menu-item-row-element.content .content-container {
  left: 36px;
  position: absolute;
  right: 36px;
  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%);
  vertical-align: middle;
}
.grid-menu-item.grid-menu-item-022-bottom .menu-item-row-element.content .menu-item-title .title, .grid-menu-item.grid-menu-item-022-top .menu-item-row-element.content .menu-item-title .title {
  font-size: 30px;
  text-align: center;
}
.grid-menu-item.grid-menu-item-022-bottom .menu-item-row-element.content .menu-item-title .sub-title, .grid-menu-item.grid-menu-item-022-top .menu-item-row-element.content .menu-item-title .sub-title {
  font-size: 24px;
  text-align: center;
}
.grid-menu-item.grid-menu-item-022-bottom .menu-item-row-element.content .menu-item-title .sub-title-2, .grid-menu-item.grid-menu-item-022-top .menu-item-row-element.content .menu-item-title .sub-title-2 {
  font-size: 24px;
  text-align: center;
}
.grid-menu-item.grid-menu-item-022-bottom .menu-item-row-element.content .menu-item-content, .grid-menu-item.grid-menu-item-022-top .menu-item-row-element.content .menu-item-content {
  margin: 20px 0 40px;
  text-align: center;
}
.grid-menu-item.grid-menu-item-022-bottom .menu-item-row-element.content .button-wrapper, .grid-menu-item.grid-menu-item-022-top .menu-item-row-element.content .button-wrapper {
  text-align: center;
}
.grid-menu-item.grid-menu-item-022-top .menu-item-row-element.content {
  border-bottom: 1px solid #000;
  border-top: 0 none;
}

/* END grid-menu-item */
#header-wrapper .row-grid-element {
  margin: 0;
}
#header-wrapper .grid-element {
  padding: 0;
}
#header-wrapper .grid-element .grid-element-content {
  margin: 0;
}

#footer-wrapper .row-grid-element {
  margin: 0 -15px;
}
#footer-wrapper .grid-element {
  padding: 0 15px;
}
#footer-wrapper .grid-element .grid-element-content {
  background: transparent;
  margin: 0;
}

/* 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: #000;
  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 #000;
  margin-top: 20px;
}
.widget-login-form .buttons-wrapper {
  text-align: center;
}
.widget-login-form .button {
  margin: 10px !important;
}

.news-subscription .form-group-inline {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-flow: row;
  /* Safari 6.1+ */
  flex-flow: row;
  width: 100%;
}
.news-subscription .form-group-inline .form-group-inline-input {
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  /* 2 */
  padding: var(--space) var(--space) 0;
}
.news-subscription .form-group-inline .form-group-inline-input .form-input-wrapper {
  padding: 0;
}
.news-subscription .form-group-inline .form-group-inline-input .textinput-full-width {
  height: 44px;
  line-height: 42px;
}
.news-subscription .form-group-inline .form-group-inline-button {
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
}
.news-subscription .news-subscription-text-bottom p {
  color: #BCA644;
}

.lang-selector {
  list-style-type: none;
  margin: 0;
  padding: 10px;
}
.lang-selector li {
  display: inline-block;
  padding: 0 10px;
}
.lang-selector li:first-child {
  padding-left: 0;
}
.lang-selector li:last-child {
  padding-right: 0;
}

.news-list {
  list-style-type: none;
}
.news-list .buttons-wrapper {
  text-align: right;
}
.news-list .buttons-wrapper .news-list-button-more {
  color: #4c7a34;
  font-size: 30px;
}
.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;
}
.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: hidden;
  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-006 li {
  display: block;
  text-align: left;
}
.news-list.news-list-006 li .news-title {
  display: block;
}
.news-list.news-list-006 li .news-date {
  display: block;
}

.product-filter-wrapper {
  margin: 10px 0;
  padding: 10px 0;
}
.product-filter-wrapper .product-filter-portlet {
  border-top: 1px solid #D3D3D3;
  padding: 20px 20px 20px 0;
}
.product-filter-wrapper .product-filter-portlet:first-child {
  margin-top: 0;
}
.product-filter-wrapper .product-filter-portlet:last-child {
  border-bottom: 1px solid #D3D3D3;
}
.product-filter-wrapper .product-filter-portlet-header {
  font-size: 18px;
  line-height: 1.5em;
  padding-bottom: 10px;
  text-align: left;
}
.product-filter-wrapper .select2-container {
  min-width: 220px;
}
.product-filter-wrapper #filter-price-range .product-filter-portlet-content {
  text-align: center;
}
.product-filter-wrapper #filter-price-range .product_filter_price_range_container {
  max-width: 220px;
}
.product-filter-wrapper #filter-price-range #product_filter_price_range {
  border: 0 none;
  text-align: center;
  width: 100%;
}
.product-filter-wrapper #filter-price-range #product_filter_price_range_slider {
  background: #FFF;
  border: 1px solid #D3D3D3;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  height: 6px;
  max-width: 220px;
}
.product-filter-wrapper #filter-price-range #product_filter_price_range_slider .ui-slider-range {
  background: #BCA644;
  border: 1px solid #BCA644;
}
.product-filter-wrapper #filter-price-range .ui-button,
.product-filter-wrapper #filter-price-range .ui-state-default,
.product-filter-wrapper #filter-price-range .ui-widget-content .ui-state-default,
.product-filter-wrapper #filter-price-range .ui-widget-header .ui-state-default,
.product-filter-wrapper #filter-price-range html .ui-button.ui-state-disabled:active,
.product-filter-wrapper #filter-price-range html .ui-button.ui-state-disabled:hover {
  border: 2px solid #BCA644;
  background: #FFF;
  font-weight: normal;
  color: #FFF;
}
.product-filter-wrapper #filter-price-range .ui-button.ui-state-active:hover,
.product-filter-wrapper #filter-price-range .ui-button:active,
.product-filter-wrapper #filter-price-range .ui-state-active,
.product-filter-wrapper #filter-price-range .ui-widget-content .ui-state-active,
.product-filter-wrapper #filter-price-range .ui-widget-header .ui-state-active,
.product-filter-wrapper #filter-price-range a.ui-button:active {
  border: 1px solid #BCA644;
  background: #BCA644;
  font-weight: normal;
  color: #FFF;
}
.product-filter-wrapper #filter-price-range .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 10px;
  height: 20px;
  cursor: default;
  top: -8px;
  -ms-touch-action: none;
  touch-action: none;
}
.product-filter-wrapper .buttons-wrapper {
  text-align: center;
  padding: 20px 0;
}
.product-filter-wrapper .buttons-wrapper .button {
  margin: 0;
}

/* 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
*
*/
.product-grid {
  margin: 0 -30px;
}
.product-grid .product-grid-product-030-03 {
  padding: 30px;
  /* grid-element-content-header-image */
  /* END product-options*/
  /* END nakup */
  /*
  .novo {
      height  : 90px;
      left    : 0;
      position: absolute;
      top     : 0;
      width   : 90px;

      &::before {
          border-color: transparent transparent transparent $basic_color_gold;
          border-style: solid;
          border-width: 0 0 90px 90px;
          top         : 0;
          content     : "";
          left        : 0;
          position    : absolute;
          z-index     : 1;
      }

      &::after {
          color            : $basic_color_white;
          content          : "NOVO";
          display          : block;
          font-size        : 20px;
          left             : -40px;
          padding-top      : 25px;
          position         : absolute;
          top              : -10px;
          -webkit-transform: rotate(-45deg);
          -ms-transform    : rotate(-45deg);
          transform        : rotate(-45deg);
          width            : 127px;
          z-index          : 2;
      }
  }
  */
}
.product-grid .product-grid-product-030-03 a {
  display: block;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}
.product-grid .product-grid-product-030-03 .grid-product {
  padding: 0 0 25px;
  position: relative;
  /*
  &::before {
      bottom            : 0;
      -webkit-box-shadow: 0 5px 5px 0 rgba(120, 120, 120, 1);
      -moz-box-shadow   : 0 5px 5px 0 rgba(120, 120, 120, 1);
      box-shadow        : 0 5px 5px 0 rgba(120, 120, 120, 1);
      content           : "";
      left              : 0;
      opacity           : 0;
      position          : absolute;
      right             : 0;
      top               : 0;
      -webkit-transition: opacity $button_transition_time ease-in-out;
      -moz-transition   : opacity $button_transition_time ease-in-out;
      -ms-transition    : opacity $button_transition_time ease-in-out;
      -o-transition     : opacity $button_transition_time ease-in-out;
      transition        : opacity $button_transition_time ease-in-out;
  }

  &:focus,
  &:hover {
      &::before {
          opacity: 1;
      }
  }
  */
}
.product-grid .product-grid-product-030-03 .grid-element-content-header-image {
  background: transparent;
  border: 0 none;
  display: block;
  margin: 0;
  overflow: hidden;
  position: relative;
}
.product-grid .product-grid-product-030-03 .grid-element-content-header-image .image-limit {
  display: block;
  margin-top: 100%;
}
.product-grid .product-grid-product-030-03 .grid-element-content-header-image .image-limited {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
}
.product-grid .product-grid-product-030-03 .grid-element-content-header-image .image-limited img {
  -ms-interpolation-mode: bicubic;
  float: none;
  height: auto;
  left: 50%;
  margin: 0 auto;
  max-height: 100%;
  max-width: 100%;
  opacity: 1;
  position: absolute;
  top: 50%;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  -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: auto;
}
.product-grid .product-grid-product-030-03 .grid-element-content-header-image .image-limited .active-image img {
  opacity: 0;
}
.product-grid .product-grid-product-030-03 .product_id {
  display: none;
  font-size: 12px;
  position: absolute;
  text-align: left;
  top: 0;
}
.product-grid .product-grid-product-030-03 .button-favorites-wrapper {
  display: none;
}
.product-grid .product-grid-product-030-03 header {
  position: relative;
  margin-bottom: 0;
}
.product-grid .product-grid-product-030-03 header h2 {
  display: block;
  margin: 0;
  overflow: hidden;
  position: relative;
  text-align: center;
  width: 100%;
}
.product-grid .product-grid-product-030-03 header h2 .product-base-code {
  color: #FFF;
  display: none;
  font-size: 12px;
  line-height: normal;
  padding-top: 25px;
  position: relative;
  text-align: center;
}
.product-grid .product-grid-product-030-03 header h2 .grid-element-title {
  background: transparent;
  color: #000;
  display: block;
  font-size: 24px;
  font-weight: 300;
  line-height: normal;
  margin: 32px 0 10px;
  min-height: 64px;
  padding: 0 10px;
  position: relative;
  text-align: center;
}
.product-grid .product-grid-product-030-03 header h2 .grid-element-title .product-name,
.product-grid .product-grid-product-030-03 header h2 .grid-element-title .product-name-sub {
  display: block;
  text-align: center;
}
.product-grid .product-grid-product-030-03 header h2 .grid-element-title .product-name-sub {
  font-size: 20px;
}
.product-grid .product-grid-product-030-03 .product-options {
  display: block;
  position: relative;
  padding: 0;
}
.product-grid .product-grid-product-030-03 .product-options::after, .product-grid .product-grid-product-030-03 .product-options::before {
  clear: both;
}
.product-grid .product-grid-product-030-03 .product-options .option-title {
  display: none;
}
.product-grid .product-grid-product-030-03 .product-options .color-select-radio {
  text-align: center;
}
.product-grid .product-grid-product-030-03 .product-options .color-select-radio input[type=radio] {
  display: none;
}
.product-grid .product-grid-product-030-03 .product-options .color-select-radio input[type=radio] + label {
  cursor: pointer;
  display: inline-block;
  font-size: 0;
  height: 24px;
  margin-right: 4px;
  padding: 0;
  position: relative;
  vertical-align: top;
  width: 24px;
}
.product-grid .product-grid-product-030-03 .product-options .color-select-radio input[type=radio] + label:last-child {
  margin-right: 0;
}
.product-grid .product-grid-product-030-03 .product-options .color-select-radio input[type=radio] + label::before {
  border: solid 1px transparent;
  content: "";
  height: 28px;
  left: -2px;
  position: absolute;
  top: -2px;
  width: 28px;
}
.product-grid .product-grid-product-030-03 .product-options .color-select-radio input[type=radio] + label::after {
  border: solid 1px #000;
  content: "";
  height: 24px;
  left: 0;
  position: absolute;
  top: 0;
  width: 24px;
}
.product-grid .product-grid-product-030-03 .product-options .color-select-radio input[type=radio] + label span {
  display: inline-block;
  height: 100%;
  position: relative;
  width: 100%;
}
.product-grid .product-grid-product-030-03 .product-options .color-select-radio input[type=radio] + label span.option-select-color-2 {
  width: 50%;
}
.product-grid .product-grid-product-030-03 .product-options .color-select-radio input[type=radio] + label span.option-select-color-3 {
  width: 33.333%;
}
.product-grid .product-grid-product-030-03 .product-options .color-select-radio input[type=radio] + label span.option-select-color-4 {
  width: 25%;
}
.product-grid .product-grid-product-030-03 .product-options .color-select-radio input[type=radio]:checked + label::before {
  border-color: #000;
}
.product-grid .product-grid-product-030-03 .product-options .color-select-radio input[type=radio]:checked + label::after {
  border-color: #BCA644;
}
.product-grid .product-grid-product-030-03 .product-options .color-select-radio .option-select-more {
  display: inline-block;
  font-size: 14px;
  font-weight: normal;
  height: 24px;
  line-height: 24px;
  vertical-align: top;
}
.product-grid .product-grid-product-030-03 .product-options .label-select-radio {
  text-align: center;
}
.product-grid .product-grid-product-030-03 .product-options .label-select-radio label {
  border: 0 none;
  cursor: pointer;
  display: inline-block;
  height: 24px;
  font-size: 14px;
  line-height: 24px;
  margin-right: 4px;
  padding: 0 2px;
  text-align: center;
  vertical-align: top;
  width: auto;
}
.product-grid .product-grid-product-030-03 .product-options .label-select-radio input[type=radio] {
  display: none;
}
.product-grid .product-grid-product-030-03 .product-options .label-select-radio input[type=radio]:checked + label {
  color: #BCA644;
}
.product-grid .product-grid-product-030-03 .product-options .label-select-radio .option-select-more {
  display: inline-block;
  font-size: 14px;
  font-weight: normal;
  height: 24px;
  line-height: 24px;
  vertical-align: top;
}
.product-grid .product-grid-product-030-03 .product-options .icon-select-radio {
  text-align: center;
}
.product-grid .product-grid-product-030-03 .product-options .icon-select-radio input[type=radio] {
  display: none;
}
.product-grid .product-grid-product-030-03 .product-options .icon-select-radio input[type=radio] + label {
  cursor: pointer;
  display: inline-block;
  font-size: 0;
  height: 24px;
  margin-right: 4px;
  padding: 0;
  position: relative;
  width: 24px;
  vertical-align: top;
}
.product-grid .product-grid-product-030-03 .product-options .icon-select-radio input[type=radio] + label:last-child {
  margin-right: 0;
}
.product-grid .product-grid-product-030-03 .product-options .icon-select-radio input[type=radio] + label::before {
  border: solid 1px transparent;
  content: "";
  height: 28px;
  left: -2px;
  position: absolute;
  top: -2px;
  width: 28px;
}
.product-grid .product-grid-product-030-03 .product-options .icon-select-radio input[type=radio] + label::after {
  border: solid 1px transparent;
  content: "";
  height: 24px;
  left: 0;
  position: absolute;
  top: 0;
  width: 24px;
}
.product-grid .product-grid-product-030-03 .product-options .icon-select-radio input[type=radio]:checked + label::before {
  border-color: #000;
}
.product-grid .product-grid-product-030-03 .product-options .icon-select-radio input[type=radio]:checked + label::after {
  border-color: #BCA644;
}
.product-grid .product-grid-product-030-03 .product-options .icon-select-radio .option-select-more {
  display: inline-block;
  font-size: 14px;
  font-weight: normal;
  height: 24px;
  line-height: 24px;
  vertical-align: top;
}
.product-grid .product-grid-product-030-03 .button-favorites-wrapper {
  display: block;
  position: relative;
  text-align: center;
  width: 100%;
}
.product-grid .product-grid-product-030-03 .button-favorites-wrapper .button-favorites-container {
  display: block;
}
.product-grid .product-grid-product-030-03 .purchase-wrapper {
  display: block;
  margin: 0;
  padding: 0 10px;
  position: relative;
  font-size: 0;
}
.product-grid .product-grid-product-030-03 .prices-small {
  display: block;
  font-size: 0;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-align: center;
  vertical-align: top;
}
.product-grid .product-grid-product-030-03 .prices-small > ul {
  display: inline-block;
  line-height: 40px;
  margin: 0 10px;
  overflow: hidden;
  vertical-align: top;
}
.product-grid .product-grid-product-030-03 .prices-small > ul li {
  display: inline-block;
  vertical-align: top;
}
.product-grid .product-grid-product-030-03 .prices-small > ul li.label {
  display: none;
}
.product-grid .product-grid-product-030-03 .prices-small .price {
  color: #BCA644;
  display: inline-block;
  font-size: 24px;
  font-weight: normal;
}
.product-grid .product-grid-product-030-03 .prices-small .price.not-valid {
  display: inline-block;
  font-size: 24px;
  font-weight: normal;
}
.product-grid .product-grid-product-030-03 .prices-small .price.not-valid .amount,
.product-grid .product-grid-product-030-03 .prices-small .price.not-valid .label {
  color: #BCA644;
  text-decoration: line-through;
  text-decoration-color: #BCA644;
}
.product-grid .product-grid-product-030-03 .prices-small .discount {
  color: #FFF;
  display: none;
  font-size: 20px;
}
.product-grid .product-grid-product-030-03 .prices-small .discount.hidden {
  display: none;
}
.product-grid .product-grid-product-030-03 .prices-small .price-discounted {
  color: #BCA644;
  display: inline-block;
  font-size: 24px;
  font-weight: normal;
}
.product-grid .product-grid-product-030-03 .prices-small .price-discounted .amount,
.product-grid .product-grid-product-030-03 .prices-small .price-discounted .label {
  text-decoration: underline;
  text-decoration-color: #BCA644;
}
.product-grid .product-grid-product-030-03 .prices-small .price-discounted.hidden {
  color: #BCA644;
  display: none;
  font-size: 24px;
}
.product-grid .product-grid-product-030-03 .prices-small .price-level-1 {
  color: #BCA644;
  display: none;
  font-size: 24px;
  font-weight: normal;
}
.product-grid .product-grid-product-030-03 .prices-small .price-level-1.hidden {
  color: #BCA644;
  display: none;
  font-size: 24px;
}
.product-grid .product-grid-product-030-03 .nakup {
  margin-top: 27px;
  position: relative;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  width: 100%;
}
.product-grid .product-grid-product-030-03 .nakup .button-add-to-cart-wrapper {
  background: #FFF;
  text-align: center;
}
.product-grid .product-grid-product-030-03 .akcija {
  height: 90px;
  position: absolute;
  right: 0;
  top: 0;
  width: 90px;
}
.product-grid .product-grid-product-030-03 .akcija::before {
  border-color: transparent #BCA644 transparent transparent;
  border-style: solid;
  border-width: 0 90px 90px 0;
  top: 0;
  content: "";
  position: absolute;
  left: 0;
  z-index: 1;
}
.product-grid .product-grid-product-030-03 .akcija .label {
  color: #FFF;
  display: block;
  font-size: 20px;
  padding-top: 15px;
  position: relative;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 127px;
  z-index: 2;
}
.product-grid .product-grid-product-030-03 .novo {
  background: rgba(255, 255, 255, 0.5);
  bottom: 0;
  font-size: 0;
  height: 24px;
  left: 50%;
  padding: 0 20px;
  position: absolute;
  text-align: center;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  vertical-align: top;
}
.product-grid .product-grid-product-030-03 .novo::after {
  color: #BCA644;
  content: "NOVO";
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  position: relative;
  z-index: 2;
  vertical-align: top;
}
.product-grid .product-grid-product-030-03 .options-selection-wrapper {
  background: rgba(255, 255, 255, 0.75);
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: auto;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.product-grid .product-grid-product-030-03 .options-selection-wrapper .product-options {
  border-color: #BCA644;
  border-width: 1px 1px 0 1px;
  border-style: solid;
  margin-bottom: 0;
  padding: 7px 0 8px;
}
.product-grid .product-grid-product-030-03 .options-selection-wrapper .product-options .option {
  line-height: 24px;
}
.product-grid .product-grid-product-030-03 .options-selection-wrapper .button.button-options-selection-small {
  margin: 0;
  width: 100%;
}
.product-grid .product-grid-product-030-03:focus, .product-grid .product-grid-product-030-03:hover {
  /* END .grid-element-content-header-image */
}
.product-grid .product-grid-product-030-03:focus .grid-element-content-header-image .image-limited.has-active-image img.product-image-normal, .product-grid .product-grid-product-030-03:hover .grid-element-content-header-image .image-limited.has-active-image img.product-image-normal {
  opacity: 0;
}
.product-grid .product-grid-product-030-03:focus .grid-element-content-header-image .image-limited.has-active-image .active-image img, .product-grid .product-grid-product-030-03:hover .grid-element-content-header-image .image-limited.has-active-image .active-image img {
  opacity: 1;
}
.product-grid .product-grid-product-030-03:focus .nakup, .product-grid .product-grid-product-030-03:hover .nakup {
  opacity: 1;
}
.product-grid .product-grid-product-030-03:focus .options-selection-wrapper, .product-grid .product-grid-product-030-03:hover .options-selection-wrapper {
  opacity: 1;
}

.products-related {
  margin: 0 -10px;
}
.products-related .product-grid-related {
  padding: 10px;
}
.products-related .product-grid-related .grid-element-content {
  background: 0 0;
  border: 0 none;
  padding: 0 0 10px;
  position: relative;
  /*
  &::before {
      bottom            : 0;
      -webkit-box-shadow: 5px 5px 10px 0 rgba(170, 170, 170, .7);
      -moz-box-shadow   : 5px 5px 10px 0 rgba(170, 170, 170, .7);
      box-shadow        : 5px 5px 10px 0 rgba(170, 170, 170, .7);
      content           : "";
      left              : 0;
      opacity           : 0;
      position          : absolute;
      right             : 0;
      top               : 0;
      -webkit-transition: opacity $button_transition_time ease-in-out;
      -moz-transition   : opacity $button_transition_time ease-in-out;
      -ms-transition    : opacity $button_transition_time ease-in-out;
      -o-transition     : opacity $button_transition_time ease-in-out;
      transition        : opacity $button_transition_time ease-in-out;
  }
  */
}
.products-related .product-grid-related .grid-element-content header {
  margin-bottom: 0;
}
.products-related .product-grid-related .grid-element-content h2 {
  display: block;
  overflow: hidden;
  margin-bottom: 0;
  text-align: center;
  width: 100%;
}
.products-related .product-grid-related .grid-element-content a {
  text-decoration: none;
  position: relative;
}
.products-related .product-grid-related .grid-element-content .grid-element-title {
  background: 0 0;
  color: #BCA644;
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  padding: 10px 0;
  text-transform: uppercase;
}
.products-related .product-grid-related .grid-element-content .grid-element-content-header-image {
  background: 0 0;
  border: 0 none;
  display: block;
  overflow: hidden;
  position: relative;
}
.products-related .product-grid-related .grid-element-content .grid-element-content-header-image .image-limit {
  display: block;
  margin-top: 100%;
}
.products-related .product-grid-related .grid-element-content .grid-element-content-header-image .image-limited {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0;
  text-align: center;
}
.products-related .product-grid-related .grid-element-content .grid-element-content-header-image .image-limited img {
  -ms-interpolation-mode: bicubic;
  float: none;
  height: auto;
  margin: 0 auto;
  max-height: 100%;
  max-width: 100%;
  opacity: 1;
  position: relative;
  width: auto;
  -webkit-transition: opacity 0.25s ease-in-out;
  -moz-transition: opacity 0.25s ease-in-out;
  -ms-transition: opacity 0.25s ease-in-out;
  -o-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
}
.products-related .product-grid-related .grid-element-content .grid-element-content-header-image .image-limited .active-image {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.products-related .product-grid-related .grid-element-content .grid-element-content-header-image .image-limited .active-image img {
  float: none;
  margin: 0 auto;
  opacity: 0;
}
.products-related .product-grid-related .grid-element-content:hover::before {
  opacity: 1;
}

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

.nacinplacila p {
  margin: 0;
}

.row#purchase-data {
  margin: -20px;
}

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

.purchase-data-fieldset {
  margin: 10px 0 20px;
}

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

.celoten-opis-link {
  color: #000;
  display: none;
  text-decoration: underline;
}

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

#cart-005 {
  background: #FFF;
  border: 0 none;
  margin-bottom: 20px;
  padding: 10px;
  max-width: 1000px;
}
#cart-005::after {
  clear: both;
}
#cart-005 .cart-company-data {
  padding-bottom: 20px;
}
#cart-005 .cart-status-table {
  width: 100%;
}
#cart-005 .cart-status-table .col-min-width {
  width: 1;
  white-space: nowrap;
}
#cart-005 .cart-status-table thead {
  background-color: #FFF;
  color: #000;
  font-size: 18px;
  font-weight: bold;
}
#cart-005 .cart-status-table td {
  font-size: 18px;
  padding: 5px;
}
#cart-005 .cart-status-table .cart-status-table-data-title {
  white-space: nowrap;
}
#cart-005 .cart-customer,
#cart-005 .cart-shipment-address {
  list-style-type: none;
  padding-right: 5px;
}
#cart-005 .cart-customer li,
#cart-005 .cart-shipment-address li {
  display: block;
  font-size: 18px;
  padding: 0 2px 0 5px;
}
#cart-005 .cart-customer-header,
#cart-005 .cart-shipment-address-header {
  border: 0 none transparent;
  background-color: #FFF;
  color: #000;
  font-size: 18px;
  font-weight: bold;
}
#cart-005 .products-table {
  background: #FFF;
  border-collapse: collapse;
  empty-cells: show;
  margin-bottom: 0;
  width: 100%;
}
#cart-005 .products-table .col-min-width {
  width: 1;
}
#cart-005 .products-table > thead {
  background: #FFF;
  color: #000;
  font-size: 18px;
  font-weight: bold;
}
#cart-005 .products-table > thead th {
  padding: 10px;
  vertical-align: top;
}
#cart-005 .products-table > tbody {
  border-bottom: 1px solid #D3D3D3;
  color: #000;
  font-size: 18px;
}
#cart-005 .products-table > tbody td {
  border: 0 none;
  padding: 10px;
  vertical-align: top;
  vertical-align: middle;
}
#cart-005 .products-table > tbody td.product_image img {
  max-height: 80px;
  max-width: 80px;
}
#cart-005 .products-table > tbody td ul {
  font-size: 18px;
  margin-bottom: 0;
}
#cart-005 .products-table > tbody > tr:nth-child(even) {
  background: #FFF;
}
#cart-005 .products-table > tbody > tr:nth-child(odd) {
  background: #FFF;
}
#cart-005 .products-table #total_for_payment {
  border-top: 1px solid #D3D3D3;
}
#cart-005 .products-table .cart-price.valid {
  color: #000;
}
#cart-005 .products-table .cart-price.not-valid {
  color: #000;
  text-decoration: line-through;
}
#cart-005 .products-table .cart-price.hidden {
  display: none;
}
#cart-005 .products-table .cart-price.discount.valid {
  color: #000;
  display: none;
}
#cart-005 .products-table .cart-price.discount.hidden {
  display: none;
}
#cart-005 .products-table #ammount_total_discounted,
#cart-005 .products-table #products_total_discounted,
#cart-005 .products-table td.cart_product_code,
#cart-005 .products-table td.cart_row_delete,
#cart-005 .products-table td.product_ammount,
#cart-005 .products-table td.product_id,
#cart-005 .products-table td.product_image,
#cart-005 .products-table td.product_price,
#cart-005 .products-table td.product_quantity,
#cart-005 .products-table td.product_vat {
  padding-left: 10px;
  padding-right: 10px;
}
#cart-005 .products-table td.product_quantity .ui-spinner {
  margin-right: 0;
}
#cart-005 .cart-big-vat {
  border: 0 none;
  color: #000;
  font-size: 18px;
  float: right;
}
#cart-005 .cart-big-vat td,
#cart-005 .cart-big-vat th {
  color: #000;
  font-size: 18px;
  padding: 10px;
}
#cart-005 .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-005 .show-details .vat_collapse {
  background-position: 0 -50px;
}
#cart-005 .cart-summary-detail-vat {
  background: #EEE;
  font-size: 14px;
}
#cart-005 #p_opombe-label {
  padding: 10px;
  width: 100%;
}
#cart-005 #p_opombe {
  border: 0 none;
  width: 100%;
}
#cart-005 #coupon-input {
  color: #282828;
}
#cart-005 .ui-spinner {
  border: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  vertical-align: top;
  margin: 0;
}
#cart-005 .ui-spinner .ui-spinner-down {
  background: #B7B7B7;
  border-bottom: 1px solid #B7B7B7;
  border-left: 1px solid #B7B7B7;
  border-right: 0;
  border-top: 1px solid #B7B7B7;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  cursor: pointer;
  height: 30px;
  left: 0;
  line-height: 28px;
  position: absolute;
  text-indent: 0;
  top: 0;
  text-indent: 0;
  width: 30px;
}
#cart-005 .ui-spinner .ui-spinner-down::after {
  background: #B7B7B7;
  bottom: 0;
  color: #000;
  content: "-";
  font-size: 20px;
  left: 0;
  line-height: 28px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  -webkit-transition: color 0.2s ease-in-out;
  -moz-transition: color 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
  z-index: 2;
}
#cart-005 .ui-spinner .ui-spinner-down.ui-state-hover::after, #cart-005 .ui-spinner .ui-spinner-down:active::after, #cart-005 .ui-spinner .ui-spinner-down:focus::after, #cart-005 .ui-spinner .ui-spinner-down:hover::after {
  color: #BCA644;
}
#cart-005 .ui-spinner .ui-spinner-down.ui-state-active {
  background: #B7B7B7;
}
#cart-005 .ui-spinner .ui-spinner-down.ui-state-active::after {
  color: #BCA644;
}
#cart-005 .ui-spinner .product-quantity {
  border: 1px solid #B7B7B7;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  font-size: 16px;
  height: 30px;
  line-height: 28px;
  margin: 0 30px;
  padding: 0 5px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  width: 50px;
}
#cart-005 .ui-spinner .ui-spinner-up {
  background: #B7B7B7;
  border-bottom: 1px solid #B7B7B7;
  border-left: 0;
  border-right: 1px solid #B7B7B7;
  border-top: 1px solid #B7B7B7;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  cursor: pointer;
  height: 30px;
  line-height: 28px;
  position: absolute;
  right: 0;
  text-indent: 0;
  top: 0;
  text-indent: 0;
  width: 30px;
}
#cart-005 .ui-spinner .ui-spinner-up::after {
  background: #B7B7B7;
  bottom: 0;
  color: #000;
  content: "+";
  font-size: 20px;
  left: 0;
  line-height: 28px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  -webkit-transition: color 0.2s ease-in-out;
  -moz-transition: color 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
  z-index: 2;
}
#cart-005 .ui-spinner .ui-spinner-up.ui-state-hover::after, #cart-005 .ui-spinner .ui-spinner-up:active::after, #cart-005 .ui-spinner .ui-spinner-up:focus::after, #cart-005 .ui-spinner .ui-spinner-up:hover::after {
  color: #BCA644;
}
#cart-005 .ui-spinner .ui-spinner-up.ui-state-active {
  background: #B7B7B7;
}
#cart-005 .ui-spinner .ui-spinner-up.ui-state-active::after {
  color: #BCA644;
}

#kosarica_uredi_na_naslov {
  margin-right: 0;
}

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

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

#fmCartPurchase #p_request {
  float: right;
}

#purchase-shipment-address #contact_form,
.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-container {
  overflow: visible;
  position: relative;
}

.nav-cart-wrapper {
  overflow: visible;
  position: relative;
  text-align: right;
}
.nav-cart-wrapper .nav-cart {
  min-width: 100%;
  overflow: visible;
  position: relative;
  z-index: 5000;
}
.nav-cart-wrapper .nav-cart .nav-cart-header {
  background: #FFF;
  color: #0A0A0A;
  cursor: pointer;
  display: block;
  font-size: 12px;
  font-weight: normal;
  height: 40px;
  line-height: 0;
  margin-left: 0;
  padding-left: 0;
  position: relative;
  text-align: right;
  text-decoration: none;
  -webkit-transition: color 0.2s ease-in-out;
  -moz-transition: color 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
  vertical-align: top;
  width: 40px;
}
.nav-cart-wrapper .nav-cart .nav-cart-header::after, .nav-cart-wrapper .nav-cart .nav-cart-header::before {
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  content: "";
  display: inline-block;
  height: 40px;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  vertical-align: middle;
  width: 40px;
  z-index: 5001;
}
.nav-cart-wrapper .nav-cart .nav-cart-header::before {
  background-image: url("images/cart-0A0A0A-100.png");
  opacity: 1;
}
.nav-cart-wrapper .nav-cart .nav-cart-header::after {
  background-image: url("images/cart-BCA644-100.png");
  opacity: 0;
}
.nav-cart-wrapper .nav-cart .nav-cart-header .nav-cart-num-products {
  background: #BCA644;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  color: #FFF;
  display: block;
  font-size: 12px;
  line-height: 20px;
  min-width: 20px;
  position: absolute;
  right: 0;
  vertical-align: top;
  text-align: center;
  top: 0;
  z-index: 5002;
}
.nav-cart-wrapper .nav-cart .nav-cart-header:active, .nav-cart-wrapper .nav-cart .nav-cart-header:focus, .nav-cart-wrapper .nav-cart .nav-cart-header:hover {
  border: 0 none;
  color: #FFF;
}
.nav-cart-wrapper .nav-cart .nav-cart-header:active .nav-cart-header-image::before, .nav-cart-wrapper .nav-cart .nav-cart-header:focus .nav-cart-header-image::before, .nav-cart-wrapper .nav-cart .nav-cart-header:hover .nav-cart-header-image::before {
  opacity: 0;
}
.nav-cart-wrapper .nav-cart .nav-cart-header:active .nav-cart-header-image::after, .nav-cart-wrapper .nav-cart .nav-cart-header:focus .nav-cart-header-image::after, .nav-cart-wrapper .nav-cart .nav-cart-header:hover .nav-cart-header-image::after {
  opacity: 1;
}
.nav-cart-wrapper .nav-cart .nav-cart-content {
  background-color: #FFF;
  border: 1px solid #FFF;
  -webkit-box-shadow: 5px 5px 10px 0 rgba(122, 122, 122, 0.7);
  -moz-box-shadow: 5px 5px 10px 0 rgba(122, 122, 122, 0.7);
  box-shadow: 5px 5px 10px 0 rgba(122, 122, 122, 0.7);
  color: #BCA644;
  display: none;
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 10px;
  position: absolute;
  right: 0;
  width: 290px;
  top: 50px;
  z-index: 5001;
  /*
  .cart-small-product {
      display  : table-row;
      font-size: 12px;
      width    : 100%;

      .image,
      .product,
      .quantity {
          color        : $body__color;
          display      : table-cell;
          padding-right: 10px;
          text-align   : left;
      }

      .image {
          img {
              max-height: 60px;
              max-width : 60px;
          }
      }

      .quantity {
          &::before {
              content: 'x';
          }

          .product-x {
              display: none;
          }
      }

      .price {
          -webkit-flex: 0 1 auto;
          -ms-flex    : 0 1 auto;
          flex        : 0 1 auto;
          text-align  : right;
      }
  }
  */
}
.nav-cart-wrapper .nav-cart .nav-cart-content li {
  display: block !important;
}
.nav-cart-wrapper .nav-cart .nav-cart-content .cart-small-mid {
  border-bottom: 1px solid #B7B7B7;
  display: block;
  overflow: hidden;
  padding: 5px 0;
  position: relative;
}
.nav-cart-wrapper .nav-cart .nav-cart-content .cart-small-product {
  align-content: stretch;
  align-items: stretch;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-flow: row;
  flex-flow: row nowrap;
  flex-wrap: nowrap;
  font-size: 12px;
  width: 100%;
}
.nav-cart-wrapper .nav-cart .nav-cart-content .cart-small-product .image,
.nav-cart-wrapper .nav-cart .nav-cart-content .cart-small-product .price,
.nav-cart-wrapper .nav-cart .nav-cart-content .cart-small-product .product,
.nav-cart-wrapper .nav-cart .nav-cart-content .cart-small-product .quantity {
  color: #000;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
  line-height: 1.3em;
  padding-right: 10px;
  text-align: left;
}
.nav-cart-wrapper .nav-cart .nav-cart-content .cart-small-product .image img {
  max-height: 60px;
  max-width: 60px;
}
.nav-cart-wrapper .nav-cart .nav-cart-content .cart-small-product .product {
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  font-size: 12px;
  padding: 0 0 20px;
}
.nav-cart-wrapper .nav-cart .nav-cart-content .cart-small-product .quantity::before {
  content: "x";
}
.nav-cart-wrapper .nav-cart .nav-cart-content .cart-small-product .quantity .product-x {
  display: none;
}
.nav-cart-wrapper .nav-cart .nav-cart-content .cart-small-product .price {
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  text-align: right;
}
.nav-cart-wrapper .nav-cart .nav-cart-content .cart-small-total {
  font-weight: 700;
  font-size: 1.2em;
  text-align: right;
}
.nav-cart-wrapper .nav-cart .nav-cart-content .cart-small-text-after {
  font-size: 12px;
  text-align: center;
}
.nav-cart-wrapper .nav-cart .nav-cart-content .cart-small-button-wrapper {
  text-align: center;
}
.nav-cart-wrapper .nav-cart .nav-cart-content .cart-small-delete {
  float: left;
  overflow: hidden;
}
.nav-cart-wrapper .nav-cart .nav-cart-content #added-to-cart .num-products-added {
  background: #FFF;
  color: #BCA644;
  line-height: 2em;
  padding: 0 10px;
}
.nav-cart-wrapper .nav-cart .nav-cart-content #added-to-cart .num-products-added .products-added li .cart-small-product .product {
  padding: 10px 10px 10px 20px;
}
.nav-cart-wrapper .nav-cart .nav-cart-content #added-to-cart .num-products-added .products-added li .cart-small-product .quantity {
  padding: 10px 20px 10px 10px;
}

.nav-cart-message-box {
  background: #FFF;
  -webkit-box-shadow: 0 7px 29px 0 rgba(100, 100, 111, 0.2);
  -moz-box-shadow: 0 7px 29px 0 rgba(100, 100, 111, 0.2);
  box-shadow: 0 7px 29px 0 rgba(100, 100, 111, 0.2);
  color: #BCA644;
  display: none;
  padding: 14px;
  position: absolute;
  right: 0;
  text-align: left;
  top: 50px;
  width: 300px;
  z-index: 5001;
}
.nav-cart-message-box ul li {
  display: block;
}

.price-promo-label {
  bottom: auto;
  font-size: 0;
  line-height: normal;
  left: 0;
  position: absolute;
  right: auto;
  top: 0;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
}

.product-list-params {
  border-bottom: 1px solid #D3D3D3;
  padding: 0;
  position: relative;
}
.product-list-params .products_sort_wrapper {
  display: table;
  position: absolute;
  right: 0;
  top: -50px;
}
.product-list-params label {
  display: table-cell;
  padding-right: 10px;
  vertical-align: middle;
}
.product-list-params .products_sort {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  background: #FFF url("./images/arrow-down-BCA644-15.png") 95% center no-repeat;
  border: 1px solid #D3D3D3;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  color: #000;
  display: table-cell;
  font-size: 14px;
  height: 40px;
  line-height: 40px;
  margin: 0 !important;
  position: relative;
  padding: 0 60px 0 20px;
  text-align: left;
  vertical-align: top;
}
.product-list-params .products_sort option {
  height: 40px;
  line-height: 40px;
  text-align: left;
}
.product-list-params .products_sort option:focus, .product-list-params .products_sort option:hover {
  color: #000;
  background-color: #BCA644;
}
.product-list-params .products_sort::-ms-expand {
  display: none;
}

/* Inline editor styles ******/
/*
* ArsLuna Web Pages
*
* Main CSS
* All Screens
* Template Partial
* Editor CSS styles
*
* 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-space {
  display: block;
  overflow: hidden;
}

.arsluna-space-xs {
  height: 10px;
}

.arsluna-space-s {
  height: 20px;
}

.arsluna-space-m {
  height: 30px;
}

.arsluna-space-l {
  height: 40px;
}

.arsluna-space-xl {
  height: 50px;
}

.arsluna-space-xxl {
  height: 60px;
}

.arsluna-margin-top-0 {
  margin-top: 0;
}

.arsluna-margin-top-xs {
  margin-top: 10px;
}

.arsluna-margin-top-s {
  margin-top: 20px;
}

.arsluna-margin-top-m {
  margin-top: 30px;
}

.arsluna-margin-top-l {
  margin-top: 40px;
}

.arsluna-margin-top-xl {
  margin-top: 50px;
}

.arsluna-margin-top-xxl {
  margin-top: 60px;
}

.arsluna-margin-top-auto {
  margin-top: auto;
}

.arsluna-margin-right-0 {
  margin-right: 0;
}

.arsluna-margin-right-xs {
  margin-right: 10px;
}

.arsluna-margin-right-s {
  margin-right: 20px;
}

.arsluna-margin-right-m {
  margin-right: 30px;
}

.arsluna-margin-right-l {
  margin-right: 40px;
}

.arsluna-margin-right-xl {
  margin-right: 50px;
}

.arsluna-margin-right-xxl {
  margin-right: 60px;
}

.arsluna-margin-right-auto {
  margin-right: auto;
}

.arsluna-margin-bottom-0 {
  margin-bottom: 0;
}

.arsluna-margin-bottom-xs {
  margin-bottom: 10px;
}

.arsluna-margin-bottom-s {
  margin-bottom: 20px;
}

.arsluna-margin-bottom-m {
  margin-bottom: 30px;
}

.arsluna-margin-bottom-l {
  margin-bottom: 40px;
}

.arsluna-margin-bottom-xl {
  margin-bottom: 50px;
}

.arsluna-margin-bottom-xxl {
  margin-bottom: 60px;
}

.arsluna-margin-bottom-auto {
  margin-bottom: auto;
}

.arsluna-margin-left-0 {
  margin-left: 0;
}

.arsluna-margin-left-xs {
  margin-left: 10px;
}

.arsluna-margin-left-s {
  margin-left: 20px;
}

.arsluna-margin-left-m {
  margin-left: 30px;
}

.arsluna-margin-left-l {
  margin-left: 40px;
}

.arsluna-margin-left-xl {
  margin-left: 50px;
}

.arsluna-margin-left-xxl {
  margin-left: 60px;
}

.arsluna-margin-left-auto {
  margin-left: auto;
}

.arsluna-padding-top-0 {
  padding-top: 0;
}

.arsluna-padding-top-xs {
  padding-top: 10px;
}

.arsluna-padding-top-s {
  padding-top: 20px;
}

.arsluna-padding-top-m {
  padding-top: 30px;
}

.arsluna-padding-top-l {
  padding-top: 40px;
}

.arsluna-padding-top-xl {
  padding-top: 50px;
}

.arsluna-padding-top-xxl {
  padding-top: 60px;
}

.arsluna-padding-right-0 {
  padding-right: 0;
}

.arsluna-padding-right-xs {
  padding-right: 10px;
}

.arsluna-padding-right-s {
  padding-right: 20px;
}

.arsluna-padding-right-m {
  padding-right: 30px;
}

.arsluna-padding-right-l {
  padding-right: 40px;
}

.arsluna-padding-right-xl {
  padding-right: 50px;
}

.arsluna-padding-right-xxl {
  padding-right: 60px;
}

.arsluna-padding-bottom-0 {
  padding-bottom: 0;
}

.arsluna-padding-bottom-xs {
  padding-bottom: 10px;
}

.arsluna-padding-bottom-s {
  padding-bottom: 20px;
}

.arsluna-padding-bottom-m {
  padding-bottom: 30px;
}

.arsluna-padding-bottom-l {
  padding-bottom: 40px;
}

.arsluna-padding-bottom-xl {
  padding-bottom: 50px;
}

.arsluna-padding-bottom-xxl {
  padding-bottom: 60px;
}

.arsluna-padding-left-0 {
  padding-left: 0;
}

.arsluna-padding-left-xs {
  padding-left: 10px;
}

.arsluna-padding-left-s {
  padding-left: 20px;
}

.arsluna-padding-left-m {
  padding-left: 30px;
}

.arsluna-padding-left-l {
  padding-left: 40px;
}

.arsluna-padding-left-xl {
  padding-left: 50px;
}

.arsluna-padding-left-xxl {
  padding-left: 60px;
}

.arsluna-hide-xxl {
  display: none !important;
}

.arsluna-show-xxl {
  display: block !important;
}

/******************************************************************************/
/*
* 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
*
*/
#main-wrapper .arsluna-section.page-title .container {
  padding: 0;
}

.vertical-center-s {
  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%);
}

.color-gold {
  color: #BCA644 !important;
}

#main-wrapper .arsluna-section.page-title .container {
  padding: 0;
}
#main-wrapper .arsluna-section.page-title .arsluna-text-wrapper {
  position: relative;
}