@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 22 24 27 30 */
/**/
/******************************************************************************/
/* 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;
}

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

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

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

.nowrap {
  white-space: nowrap;
}

/*
* 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: #222;
  font-family: "Open Sans", sans-serif;
  font-size: 100%;
  font-weight: 400;
  line-height: normal;
  text-align: justify;
}

#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: #222;
  font-weight: normal;
  line-height: 1.3em;
  text-align: center;
  margin-bottom: 0.5em;
}

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

h1 {
  font-family: "Open Sans", sans-serif;
  font-size: 30px;
}

h2 {
  font-family: "Open Sans", sans-serif;
  font-size: 27px;
}

h3 {
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
}

h4 {
  font-family: "Open Sans", sans-serif;
  font-size: 22px;
}

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

h6 {
  font-family: #222;
  font-size: 18px;
}

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

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

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

b,
strong {
  font-weight: bold;
}

em,
i {
  font-style: italic;
}

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

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

/******************************************************************************/
/* Wrappers                                                                   */
/******************************************************************************/
#header-wrapper {
  background: #FFF;
  border-bottom: 0 none;
  color: #AAA;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100001;
}
#header-wrapper .container {
  padding: 0;
}
#header-wrapper h1,
#header-wrapper h2,
#header-wrapper h3,
#header-wrapper h4,
#header-wrapper h5,
#header-wrapper h6 {
  color: #AAA;
}

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

#nav-wrapper {
  background: #4C7A34;
  color: #FFF;
  position: relative;
}
#nav-wrapper .container {
  background-color: rgba(255, 255, 255, 0.75);
  height: 60px;
  padding: 0;
}
#nav-wrapper h1,
#nav-wrapper h2,
#nav-wrapper h3,
#nav-wrapper h4,
#nav-wrapper h5,
#nav-wrapper h6 {
  color: #FFF;
}

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

#main-wrapper {
  background: transparent;
  color: inherit;
  padding: 20px 0;
  position: relative;
}
#main-wrapper .container {
  padding: 20px 0;
}

#footer-wrapper {
  background: #F7F6F6;
  color: #222;
  padding-top: 3.64585%;
  position: relative;
}
#footer-wrapper .container {
  padding: 0;
}
#footer-wrapper h1,
#footer-wrapper h2,
#footer-wrapper h3,
#footer-wrapper h4,
#footer-wrapper h5,
#footer-wrapper h6 {
  color: #222;
  margin-top: 0;
  text-align: left;
}
#footer-wrapper h2 {
  font-size: 24px;
}

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 {
  background: transparent none;
  border: 0 none;
  border-bottom: 1px solid #8EB121;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  padding: 0;
}
.ui-tabs.ui-widget-content .ui-tabs-nav > li.ui-state-default {
  background: #8EB121;
  border: 1px solid #8EB121;
  color: #FFF;
  font-weight: normal;
}
.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 {
  color: #FFF !important;
}
.ui-tabs.ui-widget-content .ui-tabs-nav > li.ui-state-default:hover {
  background: #aed82d;
  border: 1px solid #aed82d;
  color: #FFF;
  font-weight: normal;
}
.ui-tabs.ui-widget-content .ui-tabs-nav > li.ui-state-active {
  background: #aed82d;
  border: 1px solid #aed82d;
  color: #FFF;
  font-weight: normal;
}
.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 {
  color: #FFF !important;
}
.ui-tabs.ui-widget-content .ui-tabs-nav > li.ui-state-focus a:link {
  color: #FFF !important;
}
.ui-tabs.ui-widget-content .ui-tabs-nav > li {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  margin-right: 1px;
}

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

/******************************************************************************/
/* Partials                                                                   */
/******************************************************************************/
/* Buttons ********/
/*
* ArsLuna Web Pages
*
* Main CSS
* All Screens
* Template Partial
* Buttons Partial
*
* Author : Sašo Štibelj
* Company: Ars Luna, Helena Štibelj s.p.
* Address: Čepulje 16
*          4000 KRANJ
*          SLOVENIA
* Website: http://www.arsluna.si, http://www.arsluna.com
* Mail   : info@arsluna.si, info@arsluna.com
* License: Commercial
*
*/
/******************************************************************************/
.btn-awesome,
.button {
  background: #8EB121;
  border: 1px solid #8EB121;
  margin: 10px 10px 0 0;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  color: #FFF !important;
  display: inline-block;
  font-size: 16px;
  height: 36px;
  line-height: 36px;
  padding: 0 30px;
  text-align: center;
  text-decoration: none;
  text-shadow: 0 0 0 #000;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  vertical-align: top;
}
.btn-awesome:active, .btn-awesome:focus, .btn-awesome:hover,
.button:active,
.button:focus,
.button:hover {
  background: #aed82d;
  border: 1px solid #aed82d;
  color: #FFF !important;
}
.btn-awesome.active,
.button.active {
  background: #aed82d;
  border: 1px solid #aed82d;
  color: #FFF !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

/* Button More */
.button-more {
  background: #8EB121;
  border: 1px solid #8EB121;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  color: #FFF !important;
  display: inline-block;
  font-size: 16px;
  height: 36px;
  line-height: 36px;
  margin-left: 0;
  padding: 0 30px;
  position: relative;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.button-more:active, .button-more:focus, .button-more:hover {
  background: #aed82d;
  border: 1px solid #aed82d;
  color: #FFF !important;
}

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

/* Button News Subscribe */
.button.button-news-subscribe {
  background: #8EB121;
  border: 1px solid #8EB121;
  color: #FFF;
}
.button.button-news-subscribe:active, .button.button-news-subscribe:focus, .button.button-news-subscribe:hover {
  background: #aed82d;
  border: 1px solid #aed82d;
  color: #FFF;
}

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

.pageindex {
  clear: both;
  display: block;
  text-align: center;
}
.pageindex > ul {
  list-style-type: none;
  display: inline-block;
  vertical-align: top;
}
.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 #AAA;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  color: #AAA;
  display: inline-block;
  font-weight: normal;
  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, .pageindex > ul > li a:focus, .pageindex > ul > li a:hover {
  background: #FFF;
  border: 1px solid #8EB121;
  color: #8EB121;
}
.pageindex > ul > li a.active {
  background: #F7F6F6;
  border: 1px solid #8EB121;
  color: #8EB121;
}

/******************************************************************************/
#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:active, #scroll-to-top:focus, #scroll-to-top:hover {
  background-position: right -200px;
}

.btn-awesome.btn-icon-only {
  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: transparent;
  border: 0 transparent none;
  height: 40px;
  margin: 0;
  padding: 0;
  position: relative;
  width: 40px;
}
.button.button-add-to-cart-small .img {
  display: block;
  position: relative;
  height: 40px;
  width: 40px;
}
.button.button-add-to-cart-small .img::before {
  background: transparent url("./images/cart-normal-40.png") center center no-repeat;
  content: "";
  height: 40px;
  left: 0;
  opacity: 1;
  position: absolute;
  top: 0;
  -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;
  width: 40px;
}
.button.button-add-to-cart-small .img::after {
  background: transparent url("./images/cart-active-40.png") center center no-repeat;
  content: "";
  height: 40px;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  -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;
  width: 40px;
}
.button.button-add-to-cart-small .txt {
  display: none;
}
.button.button-add-to-cart-small:active, .button.button-add-to-cart-small:focus, .button.button-add-to-cart-small:hover {
  background: #FFF;
}
.button.button-add-to-cart-small:active .img::before, .button.button-add-to-cart-small:focus .img::before, .button.button-add-to-cart-small:hover .img::before {
  opacity: 0;
}
.button.button-add-to-cart-small:active .img::after, .button.button-add-to-cart-small:focus .img::after, .button.button-add-to-cart-small:hover .img::after {
  opacity: 1;
}

.button.button-add-to-favorites-small {
  background: #FFF;
  border: 0 none;
  height: 40px;
  margin: 0;
  padding: 0;
  width: 40px;
}
.button.button-add-to-favorites-small .img {
  display: block;
  position: relative;
  height: 40px;
  width: 40px;
}
.button.button-add-to-favorites-small .img::before {
  background: transparent url("./images/favorites-normal-40.png") center center no-repeat;
  content: "";
  height: 40px;
  left: 0;
  opacity: 1;
  position: absolute;
  top: 0;
  -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;
  width: 40px;
}
.button.button-add-to-favorites-small .img::after {
  background: transparent url("./images/favorites-active-40.png") center center no-repeat;
  content: "";
  height: 40px;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  -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;
  width: 40px;
}
.button.button-add-to-favorites-small .txt {
  display: none;
}
.button.button-add-to-favorites-small:active, .button.button-add-to-favorites-small:focus, .button.button-add-to-favorites-small:hover {
  background: #FFF;
}
.button.button-add-to-favorites-small:active .img::before, .button.button-add-to-favorites-small:focus .img::before, .button.button-add-to-favorites-small:hover .img::before {
  opacity: 0;
}
.button.button-add-to-favorites-small:active .img::after, .button.button-add-to-favorites-small:focus .img::after, .button.button-add-to-favorites-small:hover .img::after {
  opacity: 1;
}

.button.button-remove-from-favorites-small {
  background: #FFF;
  border: 0 none;
  height: 40px;
  margin: 0;
  padding: 0;
  width: 40px;
}
.button.button-remove-from-favorites-small .img {
  display: block;
  position: relative;
  height: 40px;
  width: 40px;
}
.button.button-remove-from-favorites-small .img::before {
  background: transparent url("./images/favorites-selected-40.png") center center no-repeat;
  content: "";
  height: 40px;
  left: 0;
  opacity: 1;
  position: absolute;
  top: 0;
  -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;
  width: 40px;
}
.button.button-remove-from-favorites-small .img::after {
  background: transparent url("./images/favorites-active-40.png") center center no-repeat;
  content: "";
  height: 40px;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  -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;
  width: 40px;
}
.button.button-remove-from-favorites-small .txt {
  display: none;
}
.button.button-remove-from-favorites-small:active, .button.button-remove-from-favorites-small:focus, .button.button-remove-from-favorites-small:hover {
  background: #FFF;
}
.button.button-remove-from-favorites-small:active .img::before, .button.button-remove-from-favorites-small:focus .img::before, .button.button-remove-from-favorites-small:hover .img::before {
  opacity: 0;
}
.button.button-remove-from-favorites-small:active .img::after, .button.button-remove-from-favorites-small:focus .img::after, .button.button-remove-from-favorites-small:hover .img::after {
  opacity: 1;
}

.button.button-add-to-cart-big {
  background: #8eb121;
  border: 1px solid #8eb121;
  color: #FFF;
  font-size: 0;
  margin-top: 0;
  padding: 0 35px;
  vertical-align: top;
  width: auto;
}
.button.button-add-to-cart-big .img {
  background: url("./images/cart-white-25.png") center center no-repeat;
  display: inline-block;
  height: 35px;
  vertical-align: top;
  width: 35px;
}
.button.button-add-to-cart-big .img::after, .button.button-add-to-cart-big .img::before {
  display: none;
}
.button.button-add-to-cart-big .txt {
  display: inline-block;
  font-size: 16px;
  line-height: 33px;
  vertical-align: top;
}
.button.button-add-to-cart-big:active, .button.button-add-to-cart-big:focus, .button.button-add-to-cart-big:hover {
  background: #aed82d;
  border-color: #aed82d;
}

.button.button-add-to-favorites-big {
  background: #FFF;
  border: 0 none;
  height: 35px;
  line-height: 35px;
  margin: 0;
  padding: 0;
  width: 35px;
}
.button.button-add-to-favorites-big .img {
  display: block;
  position: relative;
  height: 35px;
  width: 35px;
}
.button.button-add-to-favorites-big .img::before {
  background: transparent url("./images/favorites-normal-35.png") center center no-repeat;
  content: "";
  height: 35px;
  left: 0;
  opacity: 1;
  position: absolute;
  top: 0;
  -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;
  width: 35px;
}
.button.button-add-to-favorites-big .img::after {
  background: transparent url("./images/favorites-active-35.png") center center no-repeat;
  content: "";
  height: 35px;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  -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;
  width: 35px;
}
.button.button-add-to-favorites-big .txt {
  display: none;
}
.button.button-add-to-favorites-big:active, .button.button-add-to-favorites-big:focus, .button.button-add-to-favorites-big:hover {
  background: #FFF;
}
.button.button-add-to-favorites-big:active .img::before, .button.button-add-to-favorites-big:focus .img::before, .button.button-add-to-favorites-big:hover .img::before {
  opacity: 0;
}
.button.button-add-to-favorites-big:active .img::after, .button.button-add-to-favorites-big:focus .img::after, .button.button-add-to-favorites-big:hover .img::after {
  opacity: 1;
}

.button.button-remove-from-favorites-big {
  background: #FFF;
  border: 0 none;
  height: 35px;
  line-height: 35px;
  margin: 0;
  padding: 0;
  width: 35px;
}
.button.button-remove-from-favorites-big .img {
  display: block;
  position: relative;
  height: 35px;
  width: 35px;
}
.button.button-remove-from-favorites-big .img::before {
  background: transparent url("./images/favorites-selected-35.png") center center no-repeat;
  content: "";
  height: 35px;
  left: 0;
  opacity: 1;
  position: absolute;
  top: 0;
  -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;
  width: 35px;
}
.button.button-remove-from-favorites-big .img::after {
  background: transparent url("./images/favorites-active-35.png") center center no-repeat;
  content: "";
  height: 35px;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  -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;
  width: 35px;
}
.button.button-remove-from-favorites-big .txt {
  display: none;
}
.button.button-remove-from-favorites-big:active, .button.button-remove-from-favorites-big:focus, .button.button-remove-from-favorites-big:hover {
  background: #FFF;
}
.button.button-remove-from-favorites-big:active .img::before, .button.button-remove-from-favorites-big:focus .img::before, .button.button-remove-from-favorites-big:hover .img::before {
  opacity: 0;
}
.button.button-remove-from-favorites-big:active .img::after, .button.button-remove-from-favorites-big:focus .img::after, .button.button-remove-from-favorites-big:hover .img::after {
  opacity: 1;
}

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

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

#button-login {
  width: 300px;
}

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

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

.arsluna-button-one {
  background: #8EB121;
  background: -moz-linear-gradient(#8EB121 0%, #8EB121 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #8EB121), color-stop(100%, #8EB121));
  background: -webkit-linear-gradient(#8EB121 0%, #8EB121 100%);
  background: linear-gradient(#8EB121 0%, #8EB121 100%);
  border: 1px solid #8EB121;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  color: #FFF;
  display: inline-block;
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  height: 60px;
  line-height: 60px;
  margin-left: 0;
  padding: 0 20px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  -ms-transition: all 0.25s linear;
  transition: all 0.25s linear;
}
.arsluna-button-one:active, .arsluna-button-one:focus, .arsluna-button-one:hover {
  background: #aed82d;
  background: -moz-linear-gradient(#aed82d 0%, #aed82d 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #aed82d), color-stop(100%, #aed82d));
  background: -webkit-linear-gradient(#aed82d 0%, #aed82d 100%);
  background: linear-gradient(#aed82d 0%, #aed82d 100%);
  border: 1px solid #aed82d;
  color: #FFF;
}

.arsluna-button-two {
  background: #8EB121;
  background: -moz-linear-gradient(#8EB121 0%, #8EB121 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #8EB121), color-stop(100%, #8EB121));
  background: -webkit-linear-gradient(#8EB121 0%, #8EB121 100%);
  background: linear-gradient(#8EB121 0%, #8EB121 100%);
  border: 1px solid #8EB121;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  color: #FFF;
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  height: 60px;
  line-height: 60px;
  margin-left: 0;
  padding: 0 20px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  -ms-transition: all 0.25s linear;
  transition: all 0.25s linear;
}
.arsluna-button-two:active, .arsluna-button-two:focus, .arsluna-button-two:hover {
  background: #8EB121;
  background: -moz-linear-gradient(#8EB121 0%, #8EB121 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #8EB121), color-stop(100%, #8EB121));
  background: -webkit-linear-gradient(#8EB121 0%, #8EB121 100%);
  background: linear-gradient(#8EB121 0%, #8EB121 100%);
  border: 1px solid #8EB121;
  color: #FFF;
}

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

.arsluna-button-four {
  background: #FFF;
  background: -moz-linear-gradient(#FFF 0%, #FFF 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #FFF), color-stop(100%, #FFF));
  background: -webkit-linear-gradient(#FFF 0%, #FFF 100%);
  background: linear-gradient(#FFF 0%, #FFF 100%);
  border: 1px solid #4C7A34;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  color: #4C7A34;
  display: inline-block;
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  height: 60px;
  line-height: 60px;
  margin-left: 0;
  padding: 0 10px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  -ms-transition: all 0.25s linear;
  transition: all 0.25s linear;
}
.arsluna-button-four:active, .arsluna-button-four:focus, .arsluna-button-four:hover {
  background: #FFF;
  background: -moz-linear-gradient(#FFF 0%, #FFF 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #FFF), color-stop(100%, #FFF));
  background: -webkit-linear-gradient(#FFF 0%, #FFF 100%);
  background: linear-gradient(#FFF 0%, #FFF 100%);
  border: 1px solid #96cd00;
  color: #96cd00;
}

.arsluna-button-five {
  background: #4C7A34;
  background: -moz-linear-gradient(#4C7A34 0%, #4C7A34 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #4C7A34), color-stop(100%, #4C7A34));
  background: -webkit-linear-gradient(#4C7A34 0%, #4C7A34 100%);
  background: linear-gradient(#4C7A34 0%, #4C7A34 100%);
  border: 1px solid #4C7A34;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  color: #FFF;
  display: inline-block;
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  height: 60px;
  line-height: 60px;
  margin: 0;
  padding: 0 10px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  -ms-transition: all 0.25s linear;
  transition: all 0.25s linear;
}
.arsluna-button-five:active, .arsluna-button-five:focus, .arsluna-button-five:hover {
  background: #96cd00;
  background: -moz-linear-gradient(#96cd00 0%, #96cd00 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #96cd00), color-stop(100%, #96cd00));
  background: -webkit-linear-gradient(#96cd00 0%, #96cd00 100%);
  background: linear-gradient(#96cd00 0%, #96cd00 100%);
  border: 1px solid #96cd00;
  color: #FFF;
}

.arsluna-button-six {
  background: #4C7A34;
  background: -moz-linear-gradient(#4C7A34 0%, #4C7A34 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #4C7A34), color-stop(100%, #4C7A34));
  background: -webkit-linear-gradient(#4C7A34 0%, #4C7A34 100%);
  background: linear-gradient(#4C7A34 0%, #4C7A34 100%);
  border: 1px solid #4C7A34;
  /*
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  */
  color: transparent;
  display: inline-block;
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  height: 60px;
  line-height: 60px;
  margin: 0;
  padding: 0 10px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  -ms-transition: all 0.25s linear;
  transition: all 0.25s linear;
}
.arsluna-button-six:active, .arsluna-button-six:focus, .arsluna-button-six:hover {
  background: #96cd00;
  background: -moz-linear-gradient(#96cd00 0%, #96cd00 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #96cd00), color-stop(100%, #96cd00));
  background: -webkit-linear-gradient(#96cd00 0%, #96cd00 100%);
  background: linear-gradient(#96cd00 0%, #96cd00 100%);
  border: 1px solid #96cd00;
  color: transparent;
}

.product-detail-price-rules-buttons {
  margin-top: 50px;
}

.button-add-to-cart-qty {
  background: #8EB121;
  border: 1px solid #FFF;
  cursor: pointer;
  display: inline-block;
  position: relative;
  vertical-align: top;
  width: 120px;
}
.button-add-to-cart-qty .content {
  display: block;
  position: relative;
}
.button-add-to-cart-qty .content .quantity {
  background: #000;
  border: 1px solid #FFF;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  color: #FFF;
  display: block;
  font-size: 14px;
  height: 30px;
  left: 10px;
  position: absolute;
  text-align: center;
  top: -15px;
  width: 30px;
}
.button-add-to-cart-qty .content .price {
  color: #FFF;
  display: block;
  font-size: 20px;
  font-weight: bold;
  padding: 20px 0 20px;
  text-align: center;
}
.button-add-to-cart-qty .content .unit {
  color: #FFF;
  display: block;
  text-align: center;
}
.button-add-to-cart-qty .button_add_text {
  color: #FFF;
  font-size: 12px;
  display: block;
  text-align: center;
}
.button-add-to-cart-qty:hover {
  background: #aed82d;
}

/* 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: #222;
  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: #222;
  font-size: 20px;
  font-weight: normal;
  line-height: 45px;
  text-decoration: none;
}

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

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

/* Sub Arrow for Mobile menu */
.sm-blue a span.sub-arrow {
  background: transparent none;
  bottom: auto;
  font-size: 0;
  height: 50px;
  line-height: 50px;
  left: auto;
  margin-top: 0;
  overflow: hidden;
  position: absolute;
  padding: 0;
  right: 0;
  text-align: center;
  text-shadow: none;
  top: 0;
  width: 50px;
}
.sm-blue a span.sub-arrow:before {
  display: block;
  content: " ";
  border-bottom: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #AAA;
  top: 50%;
  content: " ";
  height: 0;
  left: 50%;
  margin-left: -6px;
  margin-top: -3px;
  position: absolute;
  width: 0;
}
.sm-blue a.highlighted > span.sub-arrow:before {
  display: block;
  content: " ";
  border-bottom: 6px solid #8EB121;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 0;
  top: 50%;
  height: 0;
  left: 50%;
  margin-left: -6px;
  margin-top: -3px;
  position: absolute;
  width: 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: #222 !important;
  font-size: 24px;
  text-shadow: none;
}

.sm-blue ul a:active,
.sm-blue ul a:focus,
.sm-blue ul a:hover {
  color: #8EB121 !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: #8EB121 !important;
}

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

.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 {
  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: static;
    z-index: 9999;
  }
  .sm-blue {
    background: transparent;
    /* start... (it's not recommended editing these rules) */
    /* ...end */
    /* Sub Arrow for desktop Menu*/
  }
  .sm-blue ul {
    position: absolute;
    width: 12em;
  }
  .sm-blue li {
    float: left;
  }
  .sm-blue.sm-rtl li {
    float: right;
  }
  .sm-blue.sm-rtl ul li, .sm-blue.sm-vertical li,
  .sm-blue ul li {
    float: none;
  }
  .sm-blue a {
    white-space: nowrap;
  }
  .sm-blue.sm-vertical a,
  .sm-blue ul a {
    white-space: normal;
  }
  .sm-blue .sm-nowrap > li > :not(ul) a,
  .sm-blue .sm-nowrap > li > a {
    white-space: nowrap;
  }
  .sm-blue a,
  .sm-blue a.highlighted,
  .sm-blue a:active,
  .sm-blue a:focus,
  .sm-blue a:hover {
    background: transparent;
    color: #222;
    padding: 10px 12px;
    color: #222;
  }
  .sm-blue a.highlighted,
  .sm-blue a:active,
  .sm-blue a:focus,
  .sm-blue a:hover,
  .sm-blue li.active > a {
    color: #8EB121;
  }
  .sm-blue a.current {
    color: #8EB121;
  }
  .sm-blue a.disabled {
    background: #3092c0;
    color: #a1d1e8;
  }
  .sm-blue a span.sub-arrow {
    background: transparent;
    border-width: 5px !important;
    border-color: #222 transparent transparent transparent;
    border-style: solid dashed dashed dashed;
    bottom: 5px;
    height: 0;
    left: 50%;
    margin-left: -5px;
    margin-top: 0;
    position: absolute;
    right: auto;
    top: auto;
    width: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
  }
  .sm-blue a.highlighted span.sub-arrow:before {
    display: none;
  }
  .sm-blue > li.active 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: #8EB121;
  }
  .sm-blue > li:first-child > a,
  .sm-blue > li:first-child > :not(ul) 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 > a,
  .sm-blue > li:last-child > :not(ul) 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 #f7f6f6;
    padding: 7px 0;
    background: #FFF;
    -webkit-border-radius: 0 0 4px 4px;
    -moz-border-radius: 0 0 4px 4px;
    -ms-border-radius: 0 0 4px 4px;
    -o-border-radius: 0 0 4px 4px;
    border-radius: 0 0 4px 4px;
    -webkit-box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
  }
  .sm-blue ul ul {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    background: white;
  }
  .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 {
    border: 0 !important;
    padding: 9px 23px;
    background: transparent;
    color: #222 !important;
    font-size: 16px;
    line-height: 1.5em;
    -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 ul a > span,
  .sm-blue ul a.highlighted > span,
  .sm-blue ul a:active > span,
  .sm-blue ul a:focus > span,
  .sm-blue ul a:hover > span,
  .sm-blue ul li.active > a > span {
    border-bottom: 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 {
    color: #8EB121 !important;
  }
  .sm-blue ul a.current {
    background: rgba(255, 255, 255, 0.5);
    color: #8EB121 !important;
  }
  .sm-blue ul a.disabled {
    background: white;
    color: #b3b3b3;
  }
  .sm-blue ul a span.sub-arrow {
    top: 50%;
    margin-top: -5px;
    bottom: auto;
    left: auto;
    margin-left: 0;
    right: 10px;
    border-style: dashed dashed dashed solid;
    border-color: transparent transparent transparent #222 !important;
  }
  .sm-blue ul a.higlited > span.sub-arrow {
    border-color: transparent transparent transparent #8EB121 !important;
  }
  .sm-blue ul > li.active a span.sub-arrow,
  .sm-blue ul a.highlighted span.sub-arrow,
  .sm-blue ul a:active span.sub-arrow,
  .sm-blue ul a:focus span.sub-arrow,
  .sm-blue ul a:hover span.sub-arrow,
  .sm-blue ul a[aria-expanded=true] span.sub-arrow {
    border-color: transparent transparent transparent #8EB121 !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 #8EB121 transparent;
  }
  .sm-blue span.scroll-down-arrow {
    top: 6px;
    border-style: solid dashed dashed dashed;
    border-color: #8EB121 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 #8EB121 transparent transparent;
  }
  .sm-blue.sm-rtl > li:first-child > :not(ul) a, .sm-blue.sm-rtl > li:first-child > a {
    -webkit-border-radius: 0 8px 8px 0;
    -moz-border-radius: 0 8px 8px 0;
    -ms-border-radius: 0 8px 8px 0;
    -o-border-radius: 0 8px 8px 0;
    border-radius: 0 8px 8px 0;
  }
  .sm-blue.sm-rtl > li:last-child > :not(ul) a, .sm-blue.sm-rtl > li:last-child > a {
    -webkit-border-radius: 8px 0 0 8px !important;
    -moz-border-radius: 8px 0 0 8px !important;
    -ms-border-radius: 8px 0 0 8px !important;
    -o-border-radius: 8px 0 0 8px !important;
    border-radius: 8px 0 0 8px !important;
  }
  .sm-blue.sm-rtl > li:first-child {
    border-left: 1px solid #2b82ac;
  }
  .sm-blue.sm-rtl > li:last-child {
    border-left: 0;
  }
  .sm-blue.sm-rtl ul a span.sub-arrow {
    right: auto;
    left: 10px;
    border-style: dashed solid dashed dashed;
    border-color: transparent #a1d1e8 transparent transparent;
  }
  .sm-blue.sm-vertical {
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  }
  .sm-blue.sm-vertical a {
    padding: 9px 23px;
  }
  .sm-blue.sm-vertical a span.sub-arrow {
    top: 50%;
    margin-top: -5px;
    bottom: auto;
    left: auto;
    margin-left: 0;
    right: 10px;
    border-style: dashed dashed dashed solid;
    border-color: transparent transparent transparent #222;
  }
  .sm-blue.sm-vertical a:hover {
    border-color: transparent transparent transparent #8EB121;
  }
  .sm-blue.sm-vertical > li.active a span.sub-arrow,
  .sm-blue.sm-vertical a.highlighted span.sub-arrow,
  .sm-blue.sm-vertical a:active span.sub-arrow,
  .sm-blue.sm-vertical a:focus span.sub-arrow,
  .sm-blue.sm-vertical a:hover span.sub-arrow,
  .sm-blue.sm-vertical a[aria-expanded=true] span.sub-arrow {
    border-color: transparent transparent transparent #8EB121 !important;
  }
  .sm-blue.sm-vertical > li:first-child > :not(ul) a, .sm-blue.sm-vertical > li:first-child a {
    -webkit-border-radius: 8px 8px 0 0;
    -moz-border-radius: 8px 8px 0 0;
    -ms-border-radius: 8px 8px 0 0;
    -o-border-radius: 8px 8px 0 0;
    border-radius: 8px 8px 0 0;
  }
  .sm-blue.sm-vertical > li:last-child > :not(ul) a, .sm-blue.sm-vertical > li:last-child a {
    -webkit-border-radius: 0 0 8px 8px !important;
    -moz-border-radius: 0 0 8px 8px !important;
    -ms-border-radius: 0 0 8px 8px !important;
    -o-border-radius: 0 0 8px 8px !important;
    border-radius: 0 0 8px 8px !important;
  }
  .sm-blue.sm-vertical > li {
    border-left: 0 !important;
  }
  .sm-blue.sm-vertical ul {
    -webkit-border-radius: 4px !important;
    -moz-border-radius: 4px !important;
    -ms-border-radius: 4px !important;
    -o-border-radius: 4px !important;
    border-radius: 4px !important;
  }
  .sm-blue.sm-vertical ul a {
    padding: 9px 23px;
    font-size: 14px;
  }
  /* 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;
  }
  .sm-blue .menuitem-image,
  .sm-blue .menuitem-text {
    display: inline-block;
  }
  .sm-blue .menuitem-image {
    height: 20px;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
  }
}
/* Mega menus */
/* make mega menus take the full width of .main-nav */
.sm,
.sm > .has-mega-menu {
  position: static !important;
}

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

#main-menu {
  /* 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: #222;
  /* 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:focus, #main-menu .mega-menu .mega-menu-item a:hover {
  color: #8EB121;
}
#main-menu .mega-menu .mega-menu-item.active a {
  color: #8EB121;
}
#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:focus, #main-menu .mega-menu li > a:hover {
  color: #8EB121;
}
#main-menu .mega-menu li.active > a {
  color: #8EB121;
}
#main-menu .mega-menu ul ul {
  padding-left: 20px;
}
#main-menu .mega-menu ul ul li a {
  color: #777;
  font-size: 14px;
  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 {
  display: block;
  line-height: 0;
  margin-top: 0;
  overflow: visible;
  text-align: center;
}

/******************************************************************************/
/* Menu 001                                                                   */
/******************************************************************************/
.menu-001 {
  padding: 0;
}
.menu-001 > ul > li > a {
  color: #222222;
  display: block;
  font-size: 16px;
  font-weight: normal;
  line-height: 40px;
  position: relative;
  text-align: left;
  text-decoration: none;
  -webkit-transition: color 0.25s ease-in-out;
  -moz-transition: color 0.25s ease-in-out;
  -ms-transition: color 0.25s ease-in-out;
  -o-transition: color 0.25s ease-in-out;
  transition: color 0.25s ease-in-out;
}
.menu-001 > ul > li > a:hover {
  color: #8eb121;
}

/* END Menu 001 */
/* Forms **********/
/*
* ArsLuna Web Pages
*
* Main CSS
* All Screens
* Template Partial
* Forms Partial
*
* Author : Sašo Štibelj
* Company: Ars Luna, Helena Štibelj s.p.
* Address: Čepulje 16
*          4000 KRANJ
*          SLOVENIA
* Website: http://www.arsluna.si, http://www.arsluna.com
* Mail   : info@arsluna.si, info@arsluna.com
* License: Commercial
*
*/
input: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 #AAA;
  box-shadow: 0 0 5px #FFF inset;
  color: #222;
  font-family: "Open Sans", 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: #a1a1a1 !important;
}

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

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

form::-o-placeholder {
  color: #a1a1a1 !important;
}

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

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

.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 #AAA;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  box-shadow: 0 0 5px #FFF inset;
  color: #222;
  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;
  position: relative;
  text-align: left;
}
.form-group .info,
.form-group .label,
.form-group label {
  font-size: 16px;
  line-height: 1.5em;
  margin: 0;
  overflow: hidden;
  padding: 16px 5px;
  text-align: right !important;
  vertical-align: middle;
}
.form-group.no-grid .info,
.form-group.no-grid .label,
.form-group.no-grid label {
  line-height: 1em;
  padding: 0 5px;
  text-align: left !important;
}
.form-group.no-grid .form-input-wrapper {
  padding: 0 5px 5px;
}
.form-group .form-input-wrapper {
  position: relative;
}
.form-group .form-input-wrapper .placeholder-label {
  color: #A1A1A1;
  display: none;
  font-size: 11px;
  left: 0;
  padding: 0 5px;
  position: absolute;
  top: 5px;
}
.form-group .form-input-wrapper .textinput-full-width {
  font-size: 16px;
  height: 50px;
  line-height: 25px;
  max-width: 100%;
  padding: 20px 5px 5px;
}
.form-group .form-input-wrapper textarea.textinput-full-width {
  height: auto;
  overflow: hidden;
}
.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: 18px;
}
.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;
}

.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;*/
  width: 100%;
}

#p_captcha,
#p_captcha_img {
  float: left;
}

#p_captcha_img {
  margin: 5px;
}

/* Search *********************************************************************/
.search-wrapper {
  padding: 5px 0;
  position: relative;
  text-align: left;
  /* Button Search */
}
.search-wrapper .search {
  display: inline-block;
  font-size: 0;
  float: none;
  margin: 0;
  position: relative;
  text-align: center;
  /* Button Search */
}
.search-wrapper .search .search-group-wrapper {
  font-size: 0;
  position: relative;
}
.search-wrapper .search .search-button-wrapper {
  position: absolute;
  left: 0;
  top: 0;
}
.search-wrapper .search input[type=text] {
  background: #FFF;
  border: 1px solid #AAA;
  border-left: 0 none;
  -webkit-border-radius: 0 20px 20px 0;
  -moz-border-radius: 0 20px 20px 0;
  -ms-border-radius: 0 20px 20px 0;
  -o-border-radius: 0 20px 20px 0;
  border-radius: 0 20px 20px 0;
  float: none;
  font-size: 12px;
  height: 40px;
  line-height: 38px;
  margin-left: 50px;
  padding: 0 10px;
  width: 250px;
}
.search-wrapper .search .button.button-search {
  background: #FFF;
  border-bottom: 1px solid #AAA;
  border-left: 1px solid #AAA;
  border-right: 0 none;
  border-top: 1px solid #AAA;
  -webkit-border-radius: 20px 0 0 20px;
  -moz-border-radius: 20px 0 0 20px;
  -ms-border-radius: 20px 0 0 20px;
  -o-border-radius: 20px 0 0 20px;
  border-radius: 20px 0 0 20px;
  color: #AAA;
  float: left;
  font-size: 16px;
  height: 40px;
  line-height: 38px;
  margin: 0;
  padding: 0 10px;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-indent: -9999px;
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
  width: 50px;
}
.search-wrapper .search .button.button-search::before, .search-wrapper .search .button.button-search:after {
  background: url("./images/search-normal-20.png") center center no-repeat;
  background-size: 20px 20px;
  bottom: 0;
  content: "";
  height: 40px;
  opacity: 1;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -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;
  width: 50px;
}
.search-wrapper .search .button.button-search::after {
  background-image: url("./images/search-active-20.png");
  opacity: 0;
}
.search-wrapper .search .button.button-search:focus, .search-wrapper .search .button.button-search:hover {
  background: #FFF url("./images/search-active-20.png") center center no-repeat;
  border-color: #AAA;
  color: #AAA;
}
.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 url("./images/search-normal-20.png") center center no-repeat;
  border: 1px solid #AAA;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
  color: #AAA;
  display: none;
  float: none;
  font-size: 16px;
  height: 40px;
  line-height: 38px;
  margin: 0;
  padding: 0 10px;
  text-align: center;
  text-decoration: none;
  text-indent: -9999px;
  width: 50px;
}
.search-wrapper .button.search-toggle-button::after, .search-wrapper .button.search-toggle-button::before {
  background: url("./images/search-normal-20.png") center center no-repeat;
  background-size: 20px 20px;
  bottom: 0;
  content: "";
  opacity: 1;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -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;
}
.search-wrapper .button.search-toggle-button::after {
  background-image: url("./images/search-active-20.png");
  opacity: 0;
}
.search-wrapper .button.search-toggle-button:focus, .search-wrapper .button.search-toggle-button:hover {
  background: #FFF url("./images/search-active-20.png") center center no-repeat;
  border-color: #AAA;
  color: #AAA;
}
.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 {
  cursor: pointer;
  height: 0;
  margin: 0 !important;
  opacity: 0;
  position: absolute;
  width: 0;
}
.form-group.checkbox-right label .checkmark {
  border: 1px solid #AAA;
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  /* 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: #BFBFBF;
}
.form-group.checkbox-right label input:checked ~ .checkmark {
  background-color: #8EB121;
  /* 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: 25px;
  -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: #AAA;
  border: 1px solid #AAA;
  -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: #BFBFBF;
}
.arsluna-radio input:checked ~ .checkmark {
  background-color: #8EB121;
  /* Show the indicator (dot/circle) when checked */
}
.arsluna-radio input:checked ~ .checkmark:after {
  display: block;
}

#contact_form_inquiry .form-group label {
  display: block;
  padding: 0;
  text-align: left !important;
}
#contact_form_inquiry .form-group.required label {
  text-align: left;
}
#contact_form_inquiry .form-group.required label::after {
  color: #8EB121;
  display: inline-block;
  position: static;
}
#contact_form_inquiry .field-wrapper {
  font-size: 0;
  vertical-align: top;
}
#contact_form_inquiry .form-group-text {
  display: block;
  vertical-align: top;
}
#contact_form_inquiry .form-group-textarea {
  display: block;
}
#contact_form_inquiry .button-wrapper {
  text-align: left;
}

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

td,
th {
  text-align: left;
}

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

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

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

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

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

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

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

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

table.style1 tfoot {
  background: #eee;
}

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

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

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

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

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

table.style2 tfoot {
  background: #eee;
}

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

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

/* 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-center,
.main-left,
.main-right {
  overflow: hidden;
  padding: 15px;
}

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

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

#sidebar_left_content {
  display: block;
}

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

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

.arsluna-section {
  position: relative;
}

.arsluna-text-wrapper {
  position: relative;
}

.arsluna-short-tag-wrapper {
  position: relative;
}

/******************************************************************************/
.template {
  margin: 2.0834% 0;
}
.template .content-first {
  display: block;
  overflow: hidden;
}
.template .image-photo-album a {
  display: block;
  text-align: center;
}

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

.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: 2px solid #8eb121;
  display: inline-block;
  max-height: 90%;
  min-height: 160px;
  max-width: 90%;
  overflow: auto;
  padding: 20px;
  position: relative;
}
.messages-wrapper .messages-container .message-box .message-box-content {
  display: block;
  overflow: hidden;
}
.messages-wrapper .messages-container .message-box .message-header {
  background: #8eb121;
  color: #FFF;
  line-height: 2.5em;
  margin-bottom: 20px;
  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;
  text-align: left;
  vertical-align: top;
  width: 50%;
}
.messages-wrapper .messages-container .message-box .half-right {
  display: inline-block;
  text-align: right;
  vertical-align: top;
  width: 50%;
}
.messages-wrapper .messages-container .message-box .half-right .button {
  float: none;
  margin-right: 0;
}

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

/* Grid Elements **/
.arsluna-row,
.row {
  margin: -1.6276%;
}
.arsluna-row.form-group,
.row.form-group {
  margin: 0;
}

.grid-element {
  padding: 1.6276%;
  position: relative;
}

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

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

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

.grid-element-title {
  background: transparent;
  color: #8EB121;
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  line-height: normal;
  margin: 0;
  vertical-align: middle;
}

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

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

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

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

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

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

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

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

.grid-menu-item.grid-menu-item-019 {
  background: #f5f5f5;
  font-size: 0;
  display: block;
  vertical-align: top;
  width: 100%;
}
.grid-menu-item.grid-menu-item-019 .image-wrapper {
  display: inline-block;
  padding: 14.34426% 4.0984% 14.34426% 8.18967%;
  vertical-align: top;
  width: 40%;
}
.grid-menu-item.grid-menu-item-019 .content-wrapper {
  display: inline-block;
  padding: 14.34426% 8.18967% 14.34426% 4.0984%;
  position: relative;
  vertical-align: top;
  width: 60%;
}
.grid-menu-item.grid-menu-item-019 .content-wrapper .content {
  padding-bottom: 40px;
  position: relative;
}
.grid-menu-item.grid-menu-item-019 .content-wrapper .button-wrapper {
  bottom: 14.34426%;
  left: 14.34426%;
  overflow: hidden;
  position: absolute;
  right: 8.18967%;
  text-align: right;
}
.grid-menu-item.grid-menu-item-019 h2 {
  color: #8eb121;
  text-align: left;
  margin: 0;
  font-size: 18px;
}
.grid-menu-item.grid-menu-item-019 h2 .sub-title {
  color: #222;
  font-size: 24px;
}
.grid-menu-item.grid-menu-item-019 p {
  font-size: 14px;
  text-align: justify;
}

.locations .grid-element {
  overflow: hidden;
  padding: 1%;
}
.locations .grid-element .grid-element-content {
  border: 1px solid #8eb121;
  padding: 2.5%;
}

#header-wrapper .arsluna-row,
#header-wrapper .row {
  margin: 0;
}
#header-wrapper .grid-element {
  padding: 0;
}
#header-wrapper .grid-element .grid-element-content {
  margin: 0;
}

#footer-wrapper .arsluna-row,
#footer-wrapper .row {
  margin: 0 -10px;
}
#footer-wrapper .grid-element {
  padding: 0 10px;
}
#footer-wrapper .grid-element .grid-element-content {
  margin: 0;
}
#footer-wrapper .row.form-group {
  margin: 0;
}

.footer-menu-wrapper {
  padding: 0;
}
.footer-menu-wrapper .grid-element {
  border-left: 1px solid #AAA;
}
.footer-menu-wrapper .grid-element:last-child {
  border-right: 1px solid #AAA;
}

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

.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.news-list-012 article {
  padding: 15px 15px 70px;
  position: relative;
}
.news-list.news-list-012 article h6 {
  font-size: 24px;
  text-align: left;
}
.news-list.news-list-012 article .datetime {
  color: #AAA;
}
.news-list.news-list-012 .page-type-foto-image-link {
  display: block;
  overflow: hidden;
}
.news-list.news-list-012 .read-more {
  bottom: 15px;
  position: absolute;
  left: 15px;
  right: 15px;
  text-align: right;
}
.news-list.news-list-012 .read-more a {
  background: #8eb121;
  border: 1px solid #8eb121;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  color: #FFF;
  display: inline-block;
  font-size: 16px;
  height: 35px;
  line-height: 35px;
  padding: 0 35px;
  -webkit-transition: background-color 0.25s ease-in-out;
  -moz-transition: background-color 0.25s ease-in-out;
  -ms-transition: background-color 0.25s ease-in-out;
  -o-transition: background-color 0.25s ease-in-out;
  transition: background-color 0.25s ease-in-out;
  -webkit-transition: border-color 0.25s ease-in-out;
  -moz-transition: border-color 0.25s ease-in-out;
  -ms-transition: border-color 0.25s ease-in-out;
  -o-transition: border-color 0.25s ease-in-out;
  transition: border-color 0.25s ease-in-out;
}
.news-list.news-list-012 .read-more a:active, .news-list.news-list-012 .read-more a:focus, .news-list.news-list-012 .read-more a:hover {
  border-color: #aed82d;
  background-color: #aed82d;
}

.article-wrapper.article-wrapper-019 .row.article-list-row {
  margin: -15px;
}
.article-wrapper.article-wrapper-019 .article-list-element {
  padding: 15px;
}
.article-wrapper.article-wrapper-019 .article-list-element .last-published {
  background: #f7f6f6;
  padding: 20px;
}
.article-wrapper.article-wrapper-019 .article-list-element .article-list-title {
  color: #00bbd3;
  font-size: 20px;
  margin-bottom: 4%;
}
.article-wrapper.article-wrapper-019 .article-list-element .article-list li.article-list-item {
  font-size: 14px;
  padding: 10px 0;
  position: relative;
  text-align: left;
  -webkit-transition: color 0.25s ease-in-out;
  -moz-transition: color 0.25s ease-in-out;
  -ms-transition: color 0.25s ease-in-out;
  -o-transition: color 0.25s ease-in-out;
  transition: color 0.25s ease-in-out;
}
.article-wrapper.article-wrapper-019 .article-list-element .article-list li.article-list-item.current, .article-wrapper.article-wrapper-019 .article-list-element .article-list li.article-list-item:active, .article-wrapper.article-wrapper-019 .article-list-element .article-list li.article-list-item:focus, .article-wrapper.article-wrapper-019 .article-list-element .article-list li.article-list-item:hover {
  color: #8eb121;
}
.article-wrapper.article-wrapper-019 .article-list-element .article-list li.article-list-item::before {
  background: #8eb121;
  background: -webkit-linear-gradient(90deg, rgba(142, 177, 33, 0), #8eb121, rgba(142, 177, 33, 0));
  background: -moz-linear-gradient(90deg, rgba(142, 177, 33, 0), #8eb121, rgba(142, 177, 33, 0));
  background: -ms-linear-gradient(90deg, rgba(142, 177, 33, 0), #8eb121, rgba(142, 177, 33, 0));
  background: -o-linear-gradient(90deg, rgba(142, 177, 33, 0), #8eb121, rgba(142, 177, 33, 0));
  background: linear-gradient(90deg, rgba(142, 177, 33, 0), #8eb121, rgba(142, 177, 33, 0));
  content: " ";
  height: 1px;
  left: 10%;
  position: absolute;
  right: 10%;
  top: 0;
  width: 80%;
}
.article-wrapper.article-wrapper-019 .article-list-element .article-list li.article-list-item:first-child::before {
  display: none;
}

.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 #c5c5c5;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  height: 0.8em;
}
.product-filter-wrapper #filter-price-range #product_filter_price_range_slider .ui-slider-range {
  background: #e9e9e9;
  border: 1px solid #333;
}
.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 #f97500;
  background: #14161c;
  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 #f97500;
  background: #f97500;
  font-weight: normal;
  color: #fff;
}
.product-filter-wrapper #filter-price-range .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1.2em;
  height: 1.2em;
  cursor: default;
  -ms-touch-action: none;
  touch-action: none;
}
.product-filter-wrapper .buttons-wrapper {
  text-align: center;
}

.my-account-group {
  position: relative;
  z-index: 10001;
}
.my-account-group.my-account-group-002 {
  position: absolute;
  right: 0;
  top: 0;
}
.my-account-group.my-account-group-002 .my-account-toggle-button {
  display: block;
  color: #AAA;
  height: 50px;
  line-height: 50px;
  /*
  position          : absolute;
  right             : 0;
  top               : 0;
  */
  -webkit-transition: color 0.25s ease-in-out;
  -moz-transition: color 0.25s ease-in-out;
  -ms-transition: color 0.25s ease-in-out;
  -o-transition: color 0.25s ease-in-out;
  transition: color 0.25s ease-in-out;
}
.my-account-group.my-account-group-002 .my-account-toggle-button .img {
  display: inline-block;
  opacity: 1;
  padding-left: 10px;
  -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;
}
.my-account-group.my-account-group-002 .my-account-toggle-button .img.active {
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.my-account-group.my-account-group-002 .my-account-toggle-button:hover {
  color: #8eb121;
}
.my-account-group.my-account-group-002 .my-account-toggle-button:hover .img {
  opacity: 0;
}
.my-account-group.my-account-group-002 .my-account-toggle-button:hover .img.active {
  opacity: 1;
}
.my-account-group.my-account-group-002 .my-account-toggle-wrapper {
  display: none;
  /*
  position: absolute;
  right   : 0;
  top     : 50px;
  */
}
.my-account-group.my-account-group-002 .my-account-toggle-wrapper .my-account-menu {
  background: #FFF;
}
.my-account-group.my-account-group-002 .my-account-toggle-wrapper .my-account-menu > li > a {
  color: #AAA;
  display: block;
  height: 40px;
  line-height: 40px;
  position: relative;
  -webkit-transition: color 0.25s ease-in-out;
  -moz-transition: color 0.25s ease-in-out;
  -ms-transition: color 0.25s ease-in-out;
  -o-transition: color 0.25s ease-in-out;
  transition: color 0.25s ease-in-out;
}
.my-account-group.my-account-group-002 .my-account-toggle-wrapper .my-account-menu > li > a .img {
  display: inline-block;
  opacity: 1;
  padding-left: 10px;
  -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;
}
.my-account-group.my-account-group-002 .my-account-toggle-wrapper .my-account-menu > li > a .img.active {
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.my-account-group.my-account-group-002 .my-account-toggle-wrapper .my-account-menu > li > a.logged-in, .my-account-group.my-account-group-002 .my-account-toggle-wrapper .my-account-menu > li > a:hover {
  color: #8eb121;
}
.my-account-group.my-account-group-002 .my-account-toggle-wrapper .my-account-menu > li > a.logged-in .img, .my-account-group.my-account-group-002 .my-account-toggle-wrapper .my-account-menu > li > a:hover .img {
  opacity: 0;
}
.my-account-group.my-account-group-002 .my-account-toggle-wrapper .my-account-menu > li > a.logged-in .img.active, .my-account-group.my-account-group-002 .my-account-toggle-wrapper .my-account-menu > li > a:hover .img.active {
  opacity: 1;
}

.news-subscription .form-group-inline li {
  display: block;
  position: relative;
}
.news-subscription .form-group-inline li .unsubscribe-link-wrapper {
  bottom: -22px;
  position: absolute;
  right: 0;
  text-align: right;
  z-index: 2;
}
.news-subscription .form-group-inline li .unsubscribe-link-wrapper a.unsubscribe-link {
  display: inline-block;
  line-height: 40px;
  text-decoration: underline;
  -webkit-transition: color 0.25s ease-in-out;
  -moz-transition: color 0.25s ease-in-out;
  -ms-transition: color 0.25s ease-in-out;
  -o-transition: color 0.25s ease-in-out;
  transition: color 0.25s ease-in-out;
}
.news-subscription .form-group-inline li .unsubscribe-link-wrapper a.unsubscribe-link:hover {
  color: #8eb121;
}

.grid-element-content.grid-item-tab-data-002 .tab-data-content {
  padding: 20px;
}
.grid-element-content.grid-item-tab-data-002 .grid-element-title {
  padding-top: 0;
}
.grid-element-content.grid-item-tab-data-002 h2 {
  margin-bottom: 0;
}
.grid-element-content.grid-item-tab-data-002 .grid-element-title {
  font-size: 16px;
  font-weight: bold;
  text-align: left;
}
.grid-element-content.grid-item-tab-data-002 p {
  text-align: left;
}

#contact_form {
  margin: 0;
}
#contact_form .row {
  margin: 0;
}
#contact_form .textinput-full-width {
  max-width: 100% !important;
}

/* Ecommerce ******/
/*
* ArsLuna Web Pages
*
* Main CSS
* All Screens
* Template Partial
* Ecommerce Partial
*
* Author : Sašo Štibelj
* Company: Ars Luna, Helena Štibelj s.p.
* Address: Čepulje 16
*          4000 KRANJ
*          SLOVENIA
* Website: http://www.arsluna.si, http://www.arsluna.com
* Mail   : info@arsluna.si, info@arsluna.com
* License: Commercial
*
*/
.product-grid {
  margin: -25px;
  overflow: visible;
}
.product-grid .product-grid-product {
  padding: 25px;
  overflow: visible;
}
.product-grid .product-grid-product .grid-element-content {
  position: relative;
  overflow: visible;
}
.product-grid .product-grid-product .grid-element-content .product-item-wrapper {
  background: #FFF;
  border: 1px solid #AAA;
  padding: 12px 25px 25px;
  position: relative;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.product-grid .product-grid-product .grid-element-content .product-item-wrapper .product-item-body {
  margin: 15px 0 0;
}
.product-grid .product-grid-product .grid-element-content .product-item-wrapper .productshortdesc {
  display: block;
  max-height: 0;
  overflow: hidden;
  margin: 0 15px;
  -webkit-transition: max-height 0.25s ease-in-out;
  -moz-transition: max-height 0.25s ease-in-out;
  -ms-transition: max-height 0.25s ease-in-out;
  -o-transition: max-height 0.25s ease-in-out;
  transition: max-height 0.25s ease-in-out;
}
.product-grid .product-grid-product .grid-element-content .product-item-wrapper .productshortdesc p {
  font-size: 14px;
}
.product-grid .product-grid-product .grid-element-content .product-item-wrapper .buttons-wrapper {
  display: block;
  margin: 0 15px;
  max-height: 0;
  overflow: hidden;
  position: relative;
  -webkit-transition: max-height 0.25s ease-in-out;
  -moz-transition: max-height 0.25s ease-in-out;
  -ms-transition: max-height 0.25s ease-in-out;
  -o-transition: max-height 0.25s ease-in-out;
  transition: max-height 0.25s ease-in-out;
}
.product-grid .product-grid-product .grid-element-content .product-item-wrapper .buttons-wrapper .buttons-container {
  display: table;
  width: 100%;
}
.product-grid .product-grid-product .grid-element-content .product-item-wrapper .buttons-wrapper .button-container {
  display: table-cell;
  font-size: 0;
  padding-top: 15px;
  text-align: left;
  vertical-align: top;
  width: 50%;
}
.product-grid .product-grid-product .grid-element-content .product-item-wrapper .buttons-wrapper .button-container.container-add-to-favorites {
  text-align: right;
}
.product-grid .product-grid-product .grid-element-content .product-item-wrapper .buttons-wrapper .button-container .product-out-of-stock {
  color: #8eb121;
  font-size: 14px;
}
.product-grid .product-grid-product .grid-element-content .product-item-wrapper:active, .product-grid .product-grid-product .grid-element-content .product-item-wrapper:focus, .product-grid .product-grid-product .grid-element-content .product-item-wrapper:hover {
  -webkit-box-shadow: 5px 5px 10px 0 rgba(170, 170, 170, 0.7), -5px 5px 10px 0 rgba(170, 170, 170, 0.7);
  -moz-box-shadow: 5px 5px 10px 0 rgba(170, 170, 170, 0.7), -5px 5px 10px 0 rgba(170, 170, 170, 0.7);
  box-shadow: 5px 5px 10px 0 rgba(170, 170, 170, 0.7), -5px 5px 10px 0 rgba(170, 170, 170, 0.7);
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 100000;
}
.product-grid .product-grid-product .grid-element-content .product-item-wrapper:active .productshortdesc, .product-grid .product-grid-product .grid-element-content .product-item-wrapper:focus .productshortdesc, .product-grid .product-grid-product .grid-element-content .product-item-wrapper:hover .productshortdesc {
  max-height: 94px;
  -webkit-transition: max-height 0.25s ease-in-out;
  -moz-transition: max-height 0.25s ease-in-out;
  -ms-transition: max-height 0.25s ease-in-out;
  -o-transition: max-height 0.25s ease-in-out;
  transition: max-height 0.25s ease-in-out;
}
.product-grid .product-grid-product .grid-element-content .product-item-wrapper:active .buttons-wrapper, .product-grid .product-grid-product .grid-element-content .product-item-wrapper:focus .buttons-wrapper, .product-grid .product-grid-product .grid-element-content .product-item-wrapper:hover .buttons-wrapper {
  max-height: 94px;
  -webkit-transition: max-height 0.25s ease-in-out;
  -moz-transition: max-height 0.25s ease-in-out;
  -ms-transition: max-height 0.25s ease-in-out;
  -o-transition: max-height 0.25s ease-in-out;
  transition: max-height 0.25s ease-in-out;
}
.product-grid .product-grid-product .grid-element-content .product-item-wrapper header {
  margin-bottom: 15px;
}
.product-grid .product-grid-product .grid-element-content .product-item-wrapper h2 {
  display: block;
  overflow: hidden;
  margin: 0;
  text-align: left;
  width: 100%;
}
.product-grid .product-grid-product .grid-element-content .product-item-wrapper h2 .grid-element-content-header-image {
  text-align: center;
}
.product-grid .product-grid-product .grid-element-content .product-item-wrapper a {
  position: relative;
  text-decoration: none;
}
.product-grid .product-grid-product .grid-element-content .product-item-wrapper .grid-element-title {
  background: transparent;
  border-bottom: 2px solid #AAA;
  color: #222;
  display: block;
  font-size: 16px;
  letter-spacing: 0;
  line-height: normal;
  margin: 15px 0 0;
  padding: 0 15px 10px;
}
.product-grid .product-grid-product .grid-element-content .product-item-wrapper .grid-element-title .product-name-wrapper {
  display: block;
}
.product-grid .product-grid-product .grid-element-content .product-item-wrapper .grid-element-title .product-name {
  display: block;
}
.product-grid .product-grid-product .grid-element-content .product-item-wrapper .grid-element-title .product-name-sub {
  color: #AAA;
  display: block;
  font-size: 16px;
}
.product-grid .product-grid-product .grid-element-content .product-item-wrapper .grid-element-title .product-brand {
  color: #AAA;
  display: block;
  margin-top: 10px;
}
.product-grid .product-grid-product .buttons-container {
  position: relative;
  text-align: left;
}
.product-grid .prices-small {
  display: block;
  font-size: 0;
  margin: 0 15px;
  overflow: hidden;
  padding: 0;
  text-align: center;
  vertical-align: top;
}
.product-grid .prices-small.prices-small-hidden {
  display: none;
}
.product-grid .prices-small > ul {
  display: inline-block;
  margin: 0;
  overflow: hidden;
  vertical-align: top;
  width: 49.9999%;
}
.product-grid .prices-small > ul li {
  display: inline-block;
  vertical-align: top;
}
.product-grid .prices-small > ul li.label {
  display: none;
}
.product-grid .prices-small .price {
  color: #8eb121;
  display: inline-block;
  font-size: 18px;
  font-weight: normal;
  text-align: left;
}
.product-grid .prices-small .price.not-valid {
  color: #AAA;
  font-weight: normal;
}
.product-grid .prices-small .price.not-valid .amount,
.product-grid .prices-small .price.not-valid .label {
  text-decoration: line-through;
}
.product-grid .prices-small .discount {
  color: #8eb121;
  display: none;
  font-size: 18px;
}
.product-grid .prices-small .discount.hidden {
  visibility: hidden;
}
.product-grid .prices-small .price-discounted {
  color: #8eb121;
  display: inline-block;
  font-size: 18px;
  font-weight: normal;
  text-align: right;
}
.product-grid .prices-small .price-discounted.hidden {
  color: #8eb121;
  visibility: hidden;
  font-size: 18px;
}
.product-grid .prices-small .price-level-1 {
  color: #AAA;
  display: none;
  font-size: 18px;
  font-weight: 600;
}
.product-grid .prices-small .price-level-1.hidden {
  color: #AAA;
  display: none;
}
.product-grid .prices-small-range {
  color: #8eb121;
  display: block;
  font-size: 18px;
  font-weight: normal;
  margin: 0 15px;
  overflow: hidden;
  padding: 0;
  text-align: left;
  vertical-align: top;
}
.product-grid .nakup {
  display: block;
  text-align: center;
  vertical-align: top;
}
.product-grid .nakup .nakup-content {
  text-align: center;
  vertical-align: top;
}
.product-grid .nakup .nakup-content .button-add-to-cart-wrapper,
.product-grid .nakup .nakup-content .button-favorites-wrapper {
  display: block;
  text-align: center;
}
.product-grid .options-selection-wrapper {
  padding-top: 10px;
}
.product-grid .certificates {
  bottom: -10px;
  display: block;
  left: 0;
  margin: 0;
  position: absolute;
}
.product-grid .certificates li {
  display: inline-block;
  margin-right: 10px;
  width: 50px;
}
.product-grid .certificates li:last-child {
  margin-right: 0;
}
.product-grid .certificates li img {
  height: auto;
  max-width: 100%;
}

.product-grid-related {
  padding: 12px;
}
.product-grid-related .grid-element-content {
  background: #FFF;
  border: 1px solid #AAA;
  padding: 0;
  position: relative;
}
.product-grid-related .grid-element-content header {
  margin-bottom: 0;
}
.product-grid-related .grid-element-content h2 {
  display: block;
  overflow: hidden;
  margin-bottom: 0;
  text-align: center;
  width: 100%;
}
.product-grid-related .grid-element-content a {
  text-decoration: none;
}
.product-grid-related .grid-element-content .grid-element-title {
  background: transparent;
  color: #222;
  display: block;
  font-size: 14px;
  letter-spacing: 0;
}
.product-grid-related .grid-element-content .grid-element-title .product-name {
  display: block;
}
.product-grid-related .grid-element-content .grid-element-title .product-name-sub {
  color: #aaa;
  font-size: 12px;
}
.product-grid-related .grid-element-content .productshortdesc {
  display: none;
}

.product-grid-product .grid-product-021,
.product-grid-related {
  /*
  &:hover {
      .grid-element-content-header-image {
          .image-limited {
              .active-image {
                  img {
                      opacity: 1;
                  }
              }
          }
      }
  }
  */
}
.product-grid-product .grid-product-021 .grid-element-content-header-image,
.product-grid-related .grid-element-content-header-image {
  background: transparent;
  display: block;
  overflow: hidden;
  padding: 0 12%;
  position: relative;
  text-align: center;
}
.product-grid-product .grid-product-021 .grid-element-content-header-image .image-limit,
.product-grid-related .grid-element-content-header-image .image-limit {
  display: block;
  margin-top: 100%;
}
.product-grid-product .grid-product-021 .grid-element-content-header-image .image-limited,
.product-grid-related .grid-element-content-header-image .image-limited {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0;
  text-align: center;
}
.product-grid-product .grid-product-021 .grid-element-content-header-image .image-limited img,
.product-grid-related .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%;
  position: relative;
  width: auto;
}
.product-grid-product .grid-product-021 .grid-element-content-header-image .image-limited .active-image,
.product-grid-related .grid-element-content-header-image .image-limited .active-image {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.product-grid-product .grid-product-021 .grid-element-content-header-image .image-limited .active-image img,
.product-grid-related .grid-element-content-header-image .image-limited .active-image img {
  float: none;
  margin: 0 auto;
  opacity: 0;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.product-grid-product .grid-product-021 .product_id,
.product-grid-related .product_id {
  display: none;
  font-size: 12px;
  position: absolute;
  text-align: left;
  top: 0;
}

.product-grid .product-grid-product.slick-slide .grid-element-content .product-item-wrapper .productshortdesc {
  display: none;
}
.product-grid .product-grid-product.slick-slide .grid-element-content .product-item-wrapper .buttons-wrapper {
  max-height: none;
}
.product-grid .product-grid-product.slick-slide .grid-element-content .product-item-wrapper:active, .product-grid .product-grid-product.slick-slide .grid-element-content .product-item-wrapper:focus, .product-grid .product-grid-product.slick-slide .grid-element-content .product-item-wrapper:hover {
  position: relative;
}
.product-grid .product-grid-product.slick-slide .grid-element-content .product-item-wrapper:active .productshortdesc, .product-grid .product-grid-product.slick-slide .grid-element-content .product-item-wrapper:focus .productshortdesc, .product-grid .product-grid-product.slick-slide .grid-element-content .product-item-wrapper:hover .productshortdesc {
  display: none;
}
.product-grid .product-grid-product.slick-slide .grid-element-content .product-item-wrapper:active .buttons-wrapper, .product-grid .product-grid-product.slick-slide .grid-element-content .product-item-wrapper:focus .buttons-wrapper, .product-grid .product-grid-product.slick-slide .grid-element-content .product-item-wrapper:hover .buttons-wrapper {
  max-height: none;
}

.rating-wrapper {
  line-height: 30px;
  margin-bottom: 10px;
  position: relative;
  text-align: center;
  width: 100%;
}
.rating-wrapper .rating-content {
  line-height: 30px;
  text-align: center;
  /*
  &:before {
      background: linear-gradient(to right, rgba(119,119,119,0), rgba(119,119,119,1), rgba(119,119,119,0));
      content   : " ";
      height    : 1px;
      margin-top: -1px;
      left      : 10%;
      position  : absolute;
      right     : 10%;
      top       : 50%;
      width     : 80%;
  }
  */
}
.rating-wrapper .rating {
  background: #FFF;
  display: inline-block;
  line-height: 30px;
  padding: 0 10px;
  position: relative;
  text-align: center;
}
.rating-wrapper .rating .star {
  color: #f97500;
  display: inline-block;
  font-family: FontAwesome;
  font-size: 22px;
  height: 30px;
  line-height: 30px;
  position: relative;
  width: 24px;
  text-align: center;
}
.rating-wrapper .rating .star:last-child {
  margin-right: 0;
}
.rating-wrapper .rating .star:before {
  content: "\f006";
  line-height: 30px;
  height: 30px;
  width: 24px;
}
.rating-wrapper .rating .star.on {
  color: #f97500;
}
.rating-wrapper .rating .star.p-10:after {
  color: #f97500;
  content: "\f005";
  margin-left: -10px;
  overflow: hidden;
  position: absolute;
  width: 2px;
}
.rating-wrapper .rating .star.p-20:after {
  color: #f97500;
  content: "\f005";
  margin-left: -10px;
  overflow: hidden;
  position: absolute;
  width: 4px;
}
.rating-wrapper .rating .star.p-30:after {
  color: #f97500;
  content: "\f005";
  margin-left: -10px;
  overflow: hidden;
  position: absolute;
  width: 6px;
}
.rating-wrapper .rating .star.p-40:after {
  color: #f97500;
  content: "\f005";
  margin-left: -10px;
  overflow: hidden;
  position: absolute;
  width: 8px;
}
.rating-wrapper .rating .star.p-50:after {
  color: #f97500;
  content: "\f005";
  margin-left: -10px;
  overflow: hidden;
  position: absolute;
  width: 10px;
}
.rating-wrapper .rating .star.p-60:after {
  color: #f97500;
  content: "\f005";
  margin-left: -10px;
  overflow: hidden;
  position: absolute;
  width: 12px;
}
.rating-wrapper .rating .star.p-70:after {
  color: #f97500;
  content: "\f005";
  margin-left: -10px;
  overflow: hidden;
  position: absolute;
  width: 14px;
}
.rating-wrapper .rating .star.p-80:after {
  color: #f97500;
  content: "\f005";
  margin-left: -10px;
  overflow: hidden;
  position: absolute;
  width: 16px;
}
.rating-wrapper .rating .star.p-90:after {
  color: #f97500;
  content: "\f005";
  margin-left: -10px;
  overflow: hidden;
  position: absolute;
  width: 18px;
}

.slick-carusel-products {
  padding-top: 50px;
}

.product-grid-product-wrapper.grid-product-wrapper-021-02 {
  padding: 0;
}

.product-grid-product.grid-product-021-02 {
  background: #FFF;
  border: 0 none;
  display: table;
  margin-top: 15px;
  position: relative;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.product-grid-product.grid-product-021-02 .product-row {
  display: table-row;
  margin: 0;
}
.product-grid-product.grid-product-021-02 .product-row .product-row-element {
  display: table-cell;
  padding: 0 7.8153% 0 0;
  vertical-align: middle;
  width: 50%;
}
.product-grid-product.grid-product-021-02 .product-row .product-row-element:last-child {
  padding: 0 0 0 7.8153%;
}
.product-grid-product.grid-product-021-02 header {
  margin-bottom: 0;
}
.product-grid-product.grid-product-021-02 h2 {
  display: block;
  margin-bottom: 10px;
  overflow: hidden;
  margin-bottom: 0;
  text-align: center;
  width: 100%;
}
.product-grid-product.grid-product-021-02 a {
  text-decoration: none;
}
.product-grid-product.grid-product-021-02 .grid-element-title {
  background: transparent;
  color: #222;
  display: block;
  font-size: 24px;
  font-weight: bold;
  line-height: normal;
  margin: 0 0 15px;
}
.product-grid-product.grid-product-021-02 .grid-element-title .product-name {
  display: block;
}
.product-grid-product.grid-product-021-02 .grid-element-title .product-name-sub {
  display: block;
  font-size: 20px;
  color: #AAA;
}
.product-grid-product.grid-product-021-02 .grid-element-title .product-brand {
  display: none;
  font-size: 20px;
  padding-top: 15px;
  color: #AAA;
}
.product-grid-product.grid-product-021-02 .prices-small {
  display: block;
  margin: 15px 0;
  overflow: hidden;
  padding: 0;
  text-align: center;
  vertical-align: top;
}
.product-grid-product.grid-product-021-02 .prices-small > ul {
  display: block;
  margin: 0;
  overflow: hidden;
  text-align: center;
  vertical-align: top;
}
.product-grid-product.grid-product-021-02 .prices-small > ul li {
  display: block;
  text-align: center;
  vertical-align: top;
}
.product-grid-product.grid-product-021-02 .prices-small > ul li.label {
  display: none;
}
.product-grid-product.grid-product-021-02 .prices-small .price {
  color: #222;
  display: block;
  font-size: 30px;
  font-weight: 600;
  text-align: center;
}
.product-grid-product.grid-product-021-02 .prices-small .price.not-valid {
  font-weight: normal;
}
.product-grid-product.grid-product-021-02 .prices-small .price.not-valid .amount,
.product-grid-product.grid-product-021-02 .prices-small .price.not-valid .label {
  text-decoration: line-through;
}
.product-grid-product.grid-product-021-02 .prices-small .discount {
  color: #8eb121;
  display: none;
  font-size: 30px;
}
.product-grid-product.grid-product-021-02 .prices-small .discount.hidden {
  display: none;
}
.product-grid-product.grid-product-021-02 .prices-small .price-discounted {
  color: #8eb121;
  display: inline-block;
  font-size: 30px;
  font-weight: 600;
}
.product-grid-product.grid-product-021-02 .prices-small .price-discounted.hidden {
  color: #8eb121;
  display: none;
  font-size: 30px;
}
.product-grid-product.grid-product-021-02 .prices-small .price-level-1 {
  color: #14161c;
  display: none;
  font-size: 30px;
  font-weight: 600;
}
.product-grid-product.grid-product-021-02 .prices-small .price-level-1.hidden {
  color: #14161c;
  display: none;
}
.product-grid-product.grid-product-021-02 .nakup {
  display: block;
  text-align: center;
  padding: 0;
  vertical-align: top;
}
.product-grid-product.grid-product-021-02 .nakup .nakup-content {
  display: block;
  text-align: center;
  vertical-align: top;
}
.product-grid-product.grid-product-021-02 .nakup .nakup-content .button-add-to-cart-wrapper,
.product-grid-product.grid-product-021-02 .nakup .nakup-content .button-favorites-wrapper {
  display: block;
  text-align: center;
}
.product-grid-product.grid-product-021-02 .grid-element-content-header-image {
  background: transparent;
  display: block;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-align: center;
}
.product-grid-product.grid-product-021-02 .grid-element-content-header-image .image-limit {
  display: none;
}
.product-grid-product.grid-product-021-02 .grid-element-content-header-image .image-limited {
  display: block;
  position: relative;
  text-align: center;
}
.product-grid-product.grid-product-021-02 .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%;
  position: relative;
  width: auto;
}
.product-grid-product.grid-product-021-02 .grid-element-content-header-image .image-limited .active-image {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.product-grid-product.grid-product-021-02 .grid-element-content-header-image .image-limited .active-image img {
  float: none;
  margin: 0 auto;
  opacity: 0;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.product-grid-product.grid-product-021-02 .button.button-add-to-cart-small {
  background: #8eb121;
  border: 1px solid #8eb121;
  color: #FFF;
  font-size: 0;
  padding: 0 35px;
  vertical-align: top;
  width: auto;
}
.product-grid-product.grid-product-021-02 .button.button-add-to-cart-small .img {
  background: url("./images/cart-white-25.png") center center no-repeat;
  display: inline-block;
  height: 40px;
  vertical-align: top;
  width: 40px;
}
.product-grid-product.grid-product-021-02 .button.button-add-to-cart-small .img::after, .product-grid-product.grid-product-021-02 .button.button-add-to-cart-small .img::before {
  display: none;
}
.product-grid-product.grid-product-021-02 .button.button-add-to-cart-small .txt {
  display: inline-block;
  font-size: 16px;
  line-height: 40px;
  vertical-align: top;
}
.product-grid-product.grid-product-021-02 .button.button-add-to-cart-small:active, .product-grid-product.grid-product-021-02 .button.button-add-to-cart-small:focus, .product-grid-product.grid-product-021-02 .button.button-add-to-cart-small:hover {
  background: #aed82d;
  border-color: #aed82d;
}

.product-list.product-list-002 .product-grid {
  margin: -15px 0;
}
.product-list.product-list-002 .product-grid-product {
  padding: 15px 0;
}

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

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

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

.nacinplacila p {
  margin: 0;
}

.row#purchase-data {
  margin-top: 0;
  margin-bottom: 0;
}

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

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

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

.celoten-opis-link {
  color: #D6644A;
  text-decoration: underline;
}

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

/******************************************************************************/
#cart-000 {
  background: #fff;
  margin-bottom: 20px;
  padding: 10px;
}
#cart-000 .cart-company-data {
  padding-bottom: 20px;
}
#cart-000 .cart-status-table {
  width: 100%;
}
#cart-000 .cart-status-table .col-min-width {
  width: 1;
  white-space: nowrap;
}
#cart-000 .cart-status-table thead {
  background-color: #dedede;
  border: 1px solid #aaaaaa;
}
#cart-000 .cart-status-table td {
  padding: 0 2px 0 5px;
}
#cart-000 .cart-status-table .cart-status-table-data-title {
  white-space: nowrap;
}
#cart-000 .cart-customer,
#cart-000 .cart-shipment-address {
  list-style-type: none;
  padding-right: 5px;
}
#cart-000 .cart-customer li,
#cart-000 .cart-shipment-address li {
  display: block;
  padding: 0 2px 0 5px;
}
#cart-000 .cart-customer-header,
#cart-000 .cart-shipment-address-header {
  background-color: #dedede;
  border: 1px solid #aaaaaa;
}
#cart-000 .products-table {
  background: #fff;
  border-collapse: collapse;
  empty-cells: show;
  margin-bottom: 0;
  width: 100%;
}
#cart-000 .products-table .col-min-width {
  width: 1;
}
#cart-000 .products-table > thead {
  background: #dedede;
}
#cart-000 .products-table > thead th {
  padding: 5px;
  vertical-align: top;
}
#cart-000 .products-table > tbody > tr:nth-child(even) {
  background: #dedede;
}
#cart-000 .products-table > tbody > tr:nth-child(odd) {
  background: #fff;
}
#cart-000 .products-table > tbody td {
  border: 0 none transparent;
  padding: 5px;
  vertical-align: middle;
}
#cart-000 .products-table > tbody td.product_image img {
  max-height: 80px;
  max-width: 80px;
}
#cart-000 #vat-total {
  background: #fff;
}
#cart-000 #vat-total-table {
  border: 0 none transparent;
}
#cart-000 #vat-total-table > thead > tr {
  background: #dedede;
}
#cart-000 #vat-total-table > tbody > tr:nth-child(even) {
  background: #dedede;
}
#cart-000 #vat-total-table > tbody > tr:nth-child(odd) {
  background: #fff;
}

/******************************************************************************/
#cart-001,
#cart-005 {
  background: #fff;
  margin-bottom: 20px;
  padding: 10px;
  /* END spinner*/
}
#cart-001 .row,
#cart-005 .row {
  margin: 0;
}
#cart-001 .cart-company-data,
#cart-005 .cart-company-data {
  padding-bottom: 20px;
}
#cart-001 .cart-status-table,
#cart-005 .cart-status-table {
  width: 100%;
}
#cart-001 .cart-status-table .col-min-width,
#cart-005 .cart-status-table .col-min-width {
  width: 1;
  white-space: nowrap;
}
#cart-001 .cart-status-table thead,
#cart-005 .cart-status-table thead {
  background-color: #f7f6f6;
}
#cart-001 .cart-status-table td,
#cart-005 .cart-status-table td {
  padding: 0 2px 0 5px;
}
#cart-001 .cart-status-table .cart-status-table-data-title,
#cart-005 .cart-status-table .cart-status-table-data-title {
  white-space: nowrap;
}
#cart-001 .cart-customer,
#cart-001 .cart-shipment-address,
#cart-005 .cart-customer,
#cart-005 .cart-shipment-address {
  list-style-type: none;
  padding-right: 5px;
}
#cart-001 .cart-customer li,
#cart-001 .cart-shipment-address li,
#cart-005 .cart-customer li,
#cart-005 .cart-shipment-address li {
  display: block;
  padding: 0 2px 0 5px;
}
#cart-001 .cart-customer-header,
#cart-001 .cart-shipment-address-header,
#cart-005 .cart-customer-header,
#cart-005 .cart-shipment-address-header {
  background-color: #f7f6f6;
  border: 0 none transparent;
}
#cart-001 .products-table,
#cart-005 .products-table {
  background: #fff;
  border-collapse: collapse;
  empty-cells: show;
  margin-bottom: 0;
  width: 100%;
}
#cart-001 .products-table .col-min-width,
#cart-005 .products-table .col-min-width {
  width: 1;
}
#cart-001 .products-table > thead,
#cart-005 .products-table > thead {
  background: #f7f6f6;
  color: #222;
}
#cart-001 .products-table > thead th,
#cart-005 .products-table > thead th {
  padding: 20px 10px;
  vertical-align: top;
}
#cart-001 .products-table > tbody,
#cart-005 .products-table > tbody {
  color: #222;
}
#cart-001 .products-table > tbody td,
#cart-005 .products-table > tbody td {
  border: 1px solid #AAA;
  padding: 5px 10px;
  vertical-align: top;
  vertical-align: middle;
}
#cart-001 .products-table > tbody td.product_image img,
#cart-005 .products-table > tbody td.product_image img {
  max-height: 80px;
  max-width: 80px;
}
#cart-001 .products-table > tbody > tr:nth-child(even),
#cart-005 .products-table > tbody > tr:nth-child(even) {
  background: #fff;
}
#cart-001 .products-table > tbody > tr:nth-child(odd),
#cart-005 .products-table > tbody > tr:nth-child(odd) {
  background: #fff;
}
#cart-001 .products-table .cart-price.valid,
#cart-005 .products-table .cart-price.valid {
  color: #8eb121;
}
#cart-001 .products-table .cart-price.not-valid,
#cart-005 .products-table .cart-price.not-valid {
  color: #AAA;
  text-decoration: line-through;
}
#cart-001 .products-table .cart-price.hidden,
#cart-005 .products-table .cart-price.hidden {
  display: none;
}
#cart-001 .products-table .cart-price.discount.valid,
#cart-005 .products-table .cart-price.discount.valid {
  color: #8eb121;
  display: none;
  font-size: 2em;
}
#cart-001 .products-table .cart-price.discount.hidden,
#cart-005 .products-table .cart-price.discount.hidden {
  display: none;
}
#cart-001 .products-table #ammount_total_discounted,
#cart-001 .products-table #products_total_discounted,
#cart-001 .products-table td.cart_product_code,
#cart-001 .products-table td.cart_row_delete,
#cart-001 .products-table td.product_ammount,
#cart-001 .products-table td.product_id,
#cart-001 .products-table td.product_image,
#cart-001 .products-table td.product_price,
#cart-001 .products-table td.product_quantity,
#cart-001 .products-table td.product_vat,
#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-001 .products-table td.product_quantity .ui-spinner,
#cart-005 .products-table td.product_quantity .ui-spinner {
  margin-right: 0;
}
#cart-001 .cart-big-vat,
#cart-005 .cart-big-vat {
  border-left: #AAA;
  color: #222;
  float: right;
}
#cart-001 .cart-big-vat td,
#cart-001 .cart-big-vat th,
#cart-005 .cart-big-vat td,
#cart-005 .cart-big-vat th {
  color: #222;
  padding: 5px 20px;
}
#cart-001 .cart-summary .vat_collapse,
#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-001 .show-details .vat_collapse,
#cart-005 .show-details .vat_collapse {
  background-position: 0 -50px;
}
#cart-001 .cart-summary-detail-vat,
#cart-005 .cart-summary-detail-vat {
  background: #f7f6f6;
  font-size: 0.8em;
}
#cart-001 #p_opombe-label,
#cart-005 #p_opombe-label {
  padding: 10px;
  width: 100%;
}
#cart-001 #p_opombe,
#cart-005 #p_opombe {
  border: 1px solid #AAA;
  width: 100%;
}
#cart-001 #coupon-input,
#cart-005 #coupon-input {
  color: #222;
}
#cart-001 .ui-spinner,
#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;
  margin: 10px 20px 0 0;
  vertical-align: top;
  margin: 0;
}
#cart-001 .ui-spinner .ui-spinner-down,
#cart-005 .ui-spinner .ui-spinner-down {
  border-bottom: 1px solid #aaa;
  border-left: 1px solid #aaa;
  border-right: 0;
  border-top: 1px solid #aaa;
  -webkit-border-radius: 4px 0 0 4px;
  -moz-border-radius: 4px 0 0 4px;
  -ms-border-radius: 4px 0 0 4px;
  -o-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px;
  height: 35px;
  left: 0;
  line-height: 35px;
  width: 35px;
  text-indent: 0;
  top: 0;
}
#cart-001 .ui-spinner .ui-spinner-down .ui-button-text,
#cart-005 .ui-spinner .ui-spinner-down .ui-button-text {
  display: none;
}
#cart-001 .ui-spinner .ui-spinner-down::after,
#cart-005 .ui-spinner .ui-spinner-down::after {
  background: #FFF;
  bottom: 0;
  color: #aaa;
  content: "\f068";
  font-family: FontAwesome;
  font-size: 16px;
  left: 0;
  line-height: 35px;
  position: absolute;
  right: 0;
  top: 0;
}
#cart-001 .ui-spinner .ui-spinner-down:active, #cart-001 .ui-spinner .ui-spinner-down:hover,
#cart-005 .ui-spinner .ui-spinner-down:active,
#cart-005 .ui-spinner .ui-spinner-down:hover {
  background: #FFF;
}
#cart-001 .ui-spinner .ui-spinner-down:active::after, #cart-001 .ui-spinner .ui-spinner-down:hover::after,
#cart-005 .ui-spinner .ui-spinner-down:active::after,
#cart-005 .ui-spinner .ui-spinner-down:hover::after {
  color: #8eb121;
}
#cart-001 .ui-spinner .product-quantity,
#cart-005 .ui-spinner .product-quantity {
  border: 1px solid #aaa;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  color: #222;
  font-size: 16px;
  height: 35px;
  line-height: 35px;
  margin: 0 35px;
  padding: 0 5px;
  text-align: center;
  white-space: nowrap;
}
#cart-001 .ui-spinner .ui-spinner-up,
#cart-005 .ui-spinner .ui-spinner-up {
  border-bottom: 1px solid #aaa;
  border-left: 0;
  border-right: 1px solid #aaa;
  border-top: 1px solid #aaa;
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  -ms-border-radius: 0 4px 4px 0;
  -o-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
  height: 35px;
  line-height: 35px;
  text-indent: 0;
  width: 35px;
}
#cart-001 .ui-spinner .ui-spinner-up .ui-button-text,
#cart-005 .ui-spinner .ui-spinner-up .ui-button-text {
  display: none;
}
#cart-001 .ui-spinner .ui-spinner-up::after,
#cart-005 .ui-spinner .ui-spinner-up::after {
  background: #FFF;
  bottom: 0;
  color: #aaa;
  content: "\f067";
  font-family: FontAwesome;
  font-size: 16px;
  left: 0;
  line-height: 35px;
  position: absolute;
  right: 0;
  top: 0;
}
#cart-001 .ui-spinner .ui-spinner-up:active, #cart-001 .ui-spinner .ui-spinner-up:hover,
#cart-005 .ui-spinner .ui-spinner-up:active,
#cart-005 .ui-spinner .ui-spinner-up:hover {
  background: #FFF;
}
#cart-001 .ui-spinner .ui-spinner-up:active::after, #cart-001 .ui-spinner .ui-spinner-up:hover::after,
#cart-005 .ui-spinner .ui-spinner-up:active::after,
#cart-005 .ui-spinner .ui-spinner-up:hover::after {
  color: #8eb121;
}
#cart-001 .ui-spinner .ui-spinner-up.ui-state-active,
#cart-005 .ui-spinner .ui-spinner-up.ui-state-active {
  background: #AAA;
}
#cart-001 .ui-spinner .ui-spinner-up.ui-state-active::after,
#cart-005 .ui-spinner .ui-spinner-up.ui-state-active::after {
  color: #8eb121;
}

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

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

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

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

#fmCartPurchase #p_request {
  float: right;
}

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

#nav-cart {
  min-width: 100%;
  overflow: visible;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 5000;
}

#nav-cart-header {
  background: #FFF;
  color: #222;
  cursor: pointer;
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 2em;
  padding: 0;
  text-align: right;
}
#nav-cart-header > span {
  background: url("images/cart-normal-50.png") center left no-repeat;
  display: inline-block;
  height: 65px;
  line-height: normal;
  overflow: hidden;
  padding-top: 15px;
  text-align: center;
  vertical-align: middle;
  width: 65px;
}
#nav-cart-header a {
  text-decoration: none;
}

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

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

.cart-small-product {
  float: left;
  width: 200px;
}
.cart-small-product .product {
  clear: both;
  display: block;
}
.cart-small-product .price {
  float: right;
  text-align: right;
}

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

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

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

.price-promo-label {
  bottom: auto;
  font-size: 0;
  height: 60px;
  line-height: normal;
  left: 0;
  position: absolute;
  right: auto;
  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);
  width: 60px;
}
.price-promo-label img {
  height: 60px;
  max-height: 100%;
  max-width: 100%;
  width: 60px;
}

/* 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
*
*/
/******************************************************************************/
#header-wrapper .header-top-wrapper {
  background: #f7f6f6;
}
#header-wrapper .header-top {
  display: table;
  width: 100%;
}
#header-wrapper .header-top .header-top-row {
  display: table-row;
}
#header-wrapper .header-top .header-top-row .header-left {
  display: table-cell;
  text-align: left;
  vertical-align: middle;
  width: 33.3333%;
}
#header-wrapper .header-top .header-top-row .header-center {
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
}
#header-wrapper .header-top .header-top-row .header-right {
  display: table-cell;
  position: relative;
  width: 33.3333%;
  text-align: right;
  vertical-align: middle;
}
#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;
  width: 100px;
}
#header-wrapper .header-main .header-main-row .header-center {
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
}
#header-wrapper .header-main .header-main-row .header-right {
  display: table-cell;
  width: 100px;
}
#header-wrapper .header-menu-section {
  border-bottom: 1px solid #f7f6f6;
  border-top: 1px solid #f7f6f6;
}
#header-wrapper .header-menu {
  display: table;
  width: 100%;
}
#header-wrapper .header-menu .header-menu-row {
  display: table-row;
}
#header-wrapper .header-menu .header-menu-row .header-left {
  display: table-cell;
  position: relative;
  text-align: left;
  vertical-align: middle;
  width: 100px;
}
#header-wrapper .header-menu .header-menu-row .header-center {
  display: table-cell;
  position: static;
  text-align: center;
  vertical-align: middle;
}
#header-wrapper .header-menu .header-menu-row .header-right {
  display: table-cell;
  position: relative;
  text-align: right;
  vertical-align: middle;
  width: 100px;
}

#main-wrapper .prva-pozdrav p {
  text-align: center;
}
#main-wrapper .prva-izdelek-tedna {
  background: url("./images/izdelek-tedna.jpg") top left no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 3.125% 0;
}
#main-wrapper .prva-izdelek-tedna h2 {
  margin: 0;
}
#main-wrapper .prva-izdelek-tedna .izdelek-tedna {
  background: #FFF;
  padding: 4.66667% 12% 12%;
}
#main-wrapper .prva-izbrani-izdelki {
  z-index: 9999;
}

a.pdf-document {
  background: #8eb121;
  border: 1px solid #8eb121;
  color: #FFF;
  font-weight: normal;
  margin: 20px 0;
  min-height: 50px;
  padding: 15px 15px 15px 70px;
  position: relative;
}
a.pdf-document::before {
  color: #FFF;
  content: "\f1c1";
  font-family: FontAwesome;
  font-size: 40px;
  height: 50px;
  line-height: 50px;
  margin-top: -25px;
  position: absolute;
  left: 15px;
  top: 50%;
  width: 50px;
}

.page-style-green {
  background: #FFF url("./images/ozadje_o_nas.jpg") right top no-repeat;
  background-attachment: fixed;
  background-size: 100%;
}
.page-style-green #main-wrapper {
  padding-top: 0;
}
.page-style-green #main-wrapper .container {
  background: rgba(255, 255, 255, 0.9);
  -webkit-box-shadow: 4px 9px 10px 0 rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 4px 9px 10px 0 rgba(0, 0, 0, 0.5);
  box-shadow: 4px 9px 10px 0 rgba(0, 0, 0, 0.5);
  margin-bottom: 2.2083%;
  margin-top: 2.2083%;
  padding: 2.2083%;
}
.page-style-green #main-wrapper .container:first-child {
  margin-bottom: 2.2083%;
  margin-top: 2.2083%;
  padding: 2.2083%;
}
.page-style-green #main-wrapper .container:last-child {
  margin-bottom: 2.2083%;
  margin-top: 2.2083%;
  padding: 2.2083%;
}

#footer-wrapper .contact a {
  display: inline-block;
  line-height: 40px;
}