@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*/
/*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 */
/* 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 36,32,28,24,20,18,16*/
/**/
/******************************************************************************/
/* 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;
}

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

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

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

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

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

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

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

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

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

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

.sm ul {
  display: none;
}

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

.sm a {
  display: block;
}

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

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

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

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

#arsluna_pagecontent_edit_area.homepage,
#skel-layers-wrapper,
.homepage {
  background: #ece9ee;
  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: 93.75%;
}

.multi-column-layout .container {
  width: 100% !important;
}
.multi-column-layout .container.full {
  width: 100% !important;
}

/******************************************************************************/
/* Default texts                                                              */
/******************************************************************************/
.ui-widget-comntent {
  color: #1a2022 !important;
}

.ui-widget {
  font-family: "Rubik", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #303b3f;
  font-weight: normal;
  line-height: 1.5em;
  text-align: left;
  margin: 0 0 0.5em;
}

h1 {
  font-family: "Rubik", sans-serif;
  font-size: 48px;
}

h2 {
  font-family: "Rubik", sans-serif;
  font-size: 40px;
}

h3 {
  font-family: "Rubik", sans-serif;
  font-size: 32px;
}

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

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

h6 {
  font-family: #303b3f;
  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;
}

.line-wrapped-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.line-wrapped-container::before, .line-wrapped-container::after {
  content: "";
  height: 1px;
  flex-grow: 1;
}
.line-wrapped-container::before {
  background: linear-gradient(to left, #899588, transparent);
}
.line-wrapped-container::after {
  background: linear-gradient(to right, #899588, transparent);
}
.line-wrapped-container h1 {
  margin: 0 24px;
  white-space: nowrap;
}
.line-wrapped-container h2 {
  margin: 0 20px;
  white-space: nowrap;
}
.line-wrapped-container h3 {
  margin: 0 16px;
  white-space: nowrap;
}
.line-wrapped-container h4 {
  margin: 0 12px;
  white-space: nowrap;
}
.line-wrapped-container h5 {
  margin: 0 8px;
  white-space: nowrap;
}
.line-wrapped-container h6 {
  margin: 0 4px;
  white-space: nowrap;
}

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

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

b,
strong {
  font-weight: bold;
}

em,
i {
  font-style: italic;
}

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

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

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

#banner-wrapper {
  background: transparent;
  color: #1a2022;
  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: #303b3f;
}

#nav-wrapper {
  background: #FFF;
  border-bottom: solid 2px #FF000F;
  color: #303b3f;
  position: relative;
}
#nav-wrapper .container {
  height: 78px;
  overflow: visible;
  padding: 0;
}
#nav-wrapper h1,
#nav-wrapper h2,
#nav-wrapper h3,
#nav-wrapper h4,
#nav-wrapper h5,
#nav-wrapper h6 {
  color: #303b3f;
}

#features-wrapper {
  background: #FFF;
  color: #FF000F;
  position: relative;
}
#features-wrapper .container {
  padding: 0;
}
#features-wrapper h1,
#features-wrapper h2,
#features-wrapper h3,
#features-wrapper h4,
#features-wrapper h5,
#features-wrapper h6 {
  color: #FF000F;
}

#main-wrapper {
  background: transparent;
  color: inherit;
  overflow: visible;
  position: relative;
}
#main-wrapper .arsluna-section {
  padding: 2.3438% 0;
}
#main-wrapper .container {
  padding: 40px 0;
}
#main-wrapper .container.no-padding-top {
  padding-top: 0;
}
#main-wrapper .container.no-padding-bottom {
  padding-bottom: 0;
}
#main-wrapper .container:first-child {
  padding-top: 40px;
}
#main-wrapper .container:first-child.no-padding-top {
  padding-top: 0;
}
#main-wrapper .container:first-child.no-padding-bottom {
  padding-bottom: 0;
}
#main-wrapper .container:last-child {
  padding-bottom: 40px;
}
#main-wrapper .container:last-child.no-padding-top {
  padding-top: 0;
}
#main-wrapper .container:last-child.no-padding-bottom {
  padding-bottom: 0;
}
#main-wrapper .container.pagetracer {
  background-color: transparent;
  padding: 0;
}
#main-wrapper .container.main-row {
  align-content: flex-start;
  align-items: stretch;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-flow: row;
  flex-flow: row nowrap;
  flex-wrap: nowrap;
  gap: 0;
  justify-content: flex-start;
}
#main-wrapper .container.main-row .main-left {
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding-right: 30px;
  width: 25%;
}
#main-wrapper .container.main-row .main-center {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
#main-wrapper .container.main-row .main-right {
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 0;
}
#main-wrapper .container.main-row .page-left-column-content,
#main-wrapper .container.main-row .page-right-column-content {
  height: 100%;
}
#main-wrapper > .middle-content-page {
  padding: 40px 0;
}
#main-wrapper .page-type-content-wrapper {
  background: transparent none;
  padding: 30px 0;
}
#main-wrapper .page-type-content-wrapper.page-type-content-wrapper-201, #main-wrapper .page-type-content-wrapper.page-type-content-wrapper-203, #main-wrapper .page-type-content-wrapper.page-type-content-wrapper-222, #main-wrapper .page-type-content-wrapper.page-type-content-wrapper-223 {
  padding: 30px 0;
}
#main-wrapper .page-type-content-wrapper.page-type-content-wrapper-201 .container.page-type-content-container, #main-wrapper .page-type-content-wrapper.page-type-content-wrapper-203 .container.page-type-content-container, #main-wrapper .page-type-content-wrapper.page-type-content-wrapper-222 .container.page-type-content-container, #main-wrapper .page-type-content-wrapper.page-type-content-wrapper-223 .container.page-type-content-container {
  padding: 0;
}
#main-wrapper .page-type-content-wrapper.page-type-content-wrapper-201 .container.page-type-content-container:first-child, #main-wrapper .page-type-content-wrapper.page-type-content-wrapper-201 .container.page-type-content-container:last-child, #main-wrapper .page-type-content-wrapper.page-type-content-wrapper-203 .container.page-type-content-container:first-child, #main-wrapper .page-type-content-wrapper.page-type-content-wrapper-203 .container.page-type-content-container:last-child, #main-wrapper .page-type-content-wrapper.page-type-content-wrapper-222 .container.page-type-content-container:first-child, #main-wrapper .page-type-content-wrapper.page-type-content-wrapper-222 .container.page-type-content-container:last-child, #main-wrapper .page-type-content-wrapper.page-type-content-wrapper-223 .container.page-type-content-container:first-child, #main-wrapper .page-type-content-wrapper.page-type-content-wrapper-223 .container.page-type-content-container:last-child {
  padding: 0;
}

#body-page-1 #main-wrapper {
  padding: 0;
}

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,
section {
  overflow: hidden;
}

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

.float-left {
  float: left;
}

.float-right {
  float: right;
}

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

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

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

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

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

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

.slikatablecentered {
  margin: 0 auto;
}

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

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

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

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

/******************************************************************************/
/* Autocomplete                                                               */
/******************************************************************************/
.ui-autocomplete {
  background: #FFF;
  border: 1px solid #707c6e;
  padding: 5px;
  z-index: 100000;
}
.ui-autocomplete > li .ui-menu-item-wrapper {
  background: 1px solid #FFF;
  border: 1px solid #FFF;
  color: #3f463e;
  -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;
}
.ui-autocomplete > li .ui-menu-item-wrapper.ui-state-focus, .ui-autocomplete > li .ui-menu-item-wrapper.ui-state-active {
  background-color: #D3D3D3;
  border-color: #D3D3D3;
  color: #303b3f;
}

/******************************************************************************/
/* Partials                                                                   */
/******************************************************************************/
/* Header *********/
/*
* ArsLuna Web Pages
*
* Main CSS
* All Screens
* Template Partial
* Header Partial
*
* Author : Sašo Štibelj
* Company: Ars Luna, Helena Štibelj s.p.
* Address: Čepulje 16
*          4000 KRANJ
*          SLOVENIA
* Website: http://www.arsluna.si, http://www.arsluna.com
* Mail   : info@arsluna.si, info@arsluna.com
* License: Commercial
*
*/
#header-wrapper {
  background: #FFF;
  color: #1a2022;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 4000;
  /* END .header-main */
}
#header-wrapper .container {
  overflow: visible;
  padding: 0;
}
#header-wrapper h1,
#header-wrapper h2,
#header-wrapper h3,
#header-wrapper h4,
#header-wrapper h5,
#header-wrapper h6 {
  color: #303b3f;
}
#header-wrapper .header-main-wrapper {
  background: #FFF;
  display: block;
  left: 0;
  position: relative;
  top: 0;
  width: 100%;
  z-index: 4002;
}
#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;
  text-align: left;
  vertical-align: middle;
  width: 275px;
}
#header-wrapper .header-main .header-main-row .header-center {
  display: table-cell;
  vertical-align: middle;
}
#header-wrapper .header-main .header-main-row .header-right {
  display: table-cell;
  text-align: right;
  vertical-align: middle;
  width: 120px;
}
#header-wrapper .header-main .header-main-row .header-right .right-cart-wrapper,
#header-wrapper .header-main .header-main-row .header-right .right-lang-wrapper,
#header-wrapper .header-main .header-main-row .header-right .right-search-wrapper {
  display: inline-block;
  vertical-align: middle;
  width: 40px;
}

#logo {
  display: inline-block;
  margin: 0;
  overflow: hidden;
  position: relative;
  text-align: center;
  vertical-align: top;
}
#logo a {
  color: #303b3f;
  display: inline-block;
  height: 60px;
  overflow: hidden;
  padding: 15px 0;
  position: relative;
  text-align: left;
  vertical-align: top;
  width: 275px;
}
#logo a img {
  color: transparent;
  display: inline-block;
  height: 30px;
  max-width: 100%;
  position: relative;
  transform-origin: top left;
  width: auto;
}
#logo a:visited {
  color: #303b3f;
  text-decoration: none;
}

/* END #logo */
/* Footer *********/
/*
* ArsLuna Web Pages
*
* Main CSS
* All Screens
* Template Partial
* Footer Partial
*
* Author : Sašo Štibelj
* Company: Ars Luna, Helena Štibelj s.p.
* Address: Čepulje 16
*          4000 KRANJ
*          SLOVENIA
* Website: http://www.arsluna.si, http://www.arsluna.com
* Mail   : info@arsluna.si, info@arsluna.com
* License: Commercial
*
*/
#footer-wrapper {
  background: #576156;
  color: #FFF;
  padding-top: 60px;
  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: #FFF;
}
#footer-wrapper h2,
#footer-wrapper h3 {
  font-size: 20px;
  font-weight: 400;
}
#footer-wrapper p {
  font-size: 14px;
}
#footer-wrapper .mail-consent p {
  font-size: 12px;
}
#footer-wrapper .contact a {
  display: inline-block;
  line-height: 40px;
}
#footer-wrapper .payment-methods-container {
  text-align: right;
}
#footer-wrapper .social-media-wrapper {
  font-size: 0;
  margin-top: 20px;
  overflow: hidden;
  position: relative;
  text-align: left;
  vertical-align: top;
  width: 100%;
}
#footer-wrapper .social-media-wrapper .facebook-button,
#footer-wrapper .social-media-wrapper .instagram-button {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  position: relative;
  vertical-align: top;
  width: 40px;
}
#footer-wrapper .social-media-wrapper .facebook-button img,
#footer-wrapper .social-media-wrapper .instagram-button img {
  height: 40px;
  opacity: 1;
  position: relative;
  -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;
}
#footer-wrapper .social-media-wrapper .facebook-button img.active,
#footer-wrapper .social-media-wrapper .instagram-button img.active {
  height: 40px;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 40px;
}
#footer-wrapper .social-media-wrapper .facebook-button:hover img,
#footer-wrapper .social-media-wrapper .instagram-button:hover img {
  opacity: 0;
}
#footer-wrapper .social-media-wrapper .facebook-button:hover img.active,
#footer-wrapper .social-media-wrapper .instagram-button:hover img.active {
  opacity: 1;
}
#footer-wrapper .social-media-wrapper .instagram-button {
  margin-right: 10px;
}
#footer-wrapper .payment-methods {
  align-content: stretch;
  align-items: stretch;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-flow: row;
  flex-flow: row nowrap;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  text-align: right;
  vertical-align: top;
}
#footer-wrapper .payment-methods li {
  color: #ece9ee;
  display: inline-block;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
  font-size: 40px;
  text-align: center;
  vertical-align: top;
}

/* Copyright */
#copyright {
  color: #FFF;
  font-size: 12px;
  margin: 0;
  overflow: hidden;
  padding: 0;
  text-decoration: none;
}
#copyright .grid-element {
  padding: 0 !important;
}
#copyright .grid-element .grid-element-content {
  padding: 0 !important;
}
#copyright .grid-element .client {
  text-align: left;
}
#copyright .grid-element .client p {
  text-align: left;
}
#copyright .grid-element .arsluna .arsluna-copyright {
  text-align: right;
}
#copyright .grid-element .arsluna .arsluna-copyright .arsluna-title {
  display: inline;
}
#copyright .grid-element .arsluna .arsluna-copyright .arsluna-company {
  display: inline;
}
#copyright a,
#copyright a:visited {
  color: #899588;
  display: inline-block;
  font-size: 12px;
  overflow: hidden;
  text-decoration: none;
}
#copyright a,
#copyright p {
  line-height: 40px;
}

/* 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: #3f463e;
  border: 1px solid #1a2022;
  margin: 0 10px 0 0;
  /*
  -webkit-border-radius: 5px;
  -moz-border-radius   : 5px;
  -ms-border-radius    : 5px;
  -o-border-radius     : 5px;
  border-radius        : 5px;
  */
  color: #FFF !important;
  display: inline-block;
  font-family: "Rubik", sans-serif;
  font-size: 18px;
  height: 40px;
  line-height: 38px;
  padding: 0 40px;
  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:hover,
.button:hover {
  background: #576156;
  border: 1px solid #1a2022;
  color: #FFF !important;
}
.btn-awesome.active,
.button.active {
  background: #576156;
  border: 1px solid #1a2022;
  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;
}
.btn-awesome:last-child,
.button:last-child {
  margin-right: 0;
}

/* Button More */
.button-more {
  background: #3f463e;
  border: 1px solid #1a2022;
  color: #FFF !important;
  display: inline-block;
  font-size: 18px;
  font-family: "Rubik", sans-serif;
  height: 40px;
  line-height: 40px;
  margin: 0;
  padding: 0 40px;
  position: relative;
  text-align: left;
  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;
  -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:hover {
  background: #576156;
  border: 1px solid #1a2022;
  color: #FFF !important;
}

/* Button More */
.button-more-secondary {
  background: #3f463e;
  border: 1px solid #1a2022;
  color: #FFF !important;
  display: inline-block;
  font-size: 24px;
  font-family: "Rubik", sans-serif;
  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 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;
  width: auto !important;
}
.button-more-secondary :hover {
  background: #3f463e;
  border: #1a2022;
  color: #FFF !important;
}

.product-list-tabs-001 .product-list-tabs-button-wrapper {
  margin-top: 40px;
  text-align: center;
}
.product-list-tabs-001 .button-more {
  background: transparent;
  border: 1px solid #FFF;
  color: #FFF !important;
  display: inline-block;
  float: none;
  height: 40px;
  line-height: 38px;
  margin: 0;
  padding: 0 80px;
  text-align: center;
  -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: auto;
}
.product-list-tabs-001 .button-more:hover {
  background-color: #FF000F;
  border-color: #FF000F;
}

/*********************************************************************************/
/* Page Index                                                                    */
/*********************************************************************************/
.pageindex-wrapper .page-number-container {
  display: block;
  font-family: "Rubik", sans-serif;
  text-align: center;
}
.pageindex-wrapper .page-number-container .page-number {
  display: inline-block;
}

.pageindex {
  clear: both;
  display: block;
  text-align: center;
}
.pageindex > ul {
  display: inline-block;
  list-style-type: none;
}
.pageindex > ul > li {
  display: inline-block;
  margin-left: 5px;
}
.pageindex > ul > li a {
  background: #FFF;
  border: 1px solid #1a2022;
  color: #3f463e;
  display: inline-block;
  font-family: "Rubik", sans-serif;
  font-weight: normal;
  height: 30px;
  line-height: 28px;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  width: 40px;
}
.pageindex > ul > li a span {
  display: block;
}
.pageindex > ul > li a:hover {
  background: #D3D3D3;
  border: 1px solid #1a2022;
  color: #3f463e;
}
.pageindex > ul > li a.active {
  background: #3f463e;
  border: 1px solid #1a2022;
  color: #FFF;
}

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

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

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

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

#button-login {
  width: 300px;
}

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

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

.arsluna-button-one {
  background: #3f463e;
  border: 1px solid #1a2022;
  border-radius: 0;
  color: #FFF;
  display: inline-block;
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  height: 40px;
  line-height: 40px;
  margin: 0;
  padding: 0 40px;
  text-align: center;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
}
.arsluna-button-one:hover {
  background: #576156;
  border: 1px solid #3f463e;
  color: #FFF;
}

.arsluna-button-two {
  background: #FFF;
  border: 1px solid #1a2022;
  border-radius: 0;
  color: #3f463e;
  display: inline-block;
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  height: 40px;
  line-height: 40px;
  margin: 0;
  padding: 0 40px;
  text-align: center;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
}
.arsluna-button-two:hover {
  background: #3f463e;
  border: 1px solid #1a2022;
  color: #FFF;
}

.arsluna-button-three {
  background: #FFF;
  border: 1px solid #1a2022;
  border-radius: 0;
  color: #3f463e;
  display: inline-block;
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  height: 40px;
  line-height: 40px;
  margin: 0;
  padding: 0 40px;
  text-align: center;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
}
.arsluna-button-three:hover {
  background: #D3D3D3;
  border: #1a2022;
  color: #FFF;
}

.arsluna-button-four {
  background: #D3D3D3;
  border: 1px solid #D3D3D3;
  border-radius: 0;
  color: #1a2022;
  display: inline-block;
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  height: 40px;
  line-height: 40px;
  margin: 0;
  padding: 0 40px;
  text-align: center;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
}
.arsluna-button-four:hover {
  background: #FFF;
  border: 1px solid #D3D3D3;
  color: #1a2022;
}

.arsluna-button-five {
  background: #707c6e;
  border: 1px solid #899588;
  border-radius: 0;
  color: #FFF;
  display: inline-block;
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  height: 40px;
  line-height: 40px;
  margin: 0;
  padding: 0 40px;
  text-align: center;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
}
.arsluna-button-five:hover {
  background: #899588;
  border: 1px solid #899588;
  color: #FFF;
}

.arsluna-button-six {
  background: #899588;
  border: 1px solid #899588;
  color: #FFF;
  display: inline-block;
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  height: 40px;
  line-height: 40px;
  margin: 0;
  padding: 0 40px;
  text-align: center;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
}
.arsluna-button-six:hover {
  background: #707c6e;
  border: 1px solid #707c6e;
  color: #FFF;
}

/* Button More */
.arsluna-button-more {
  background: transparent;
  border: 1px solid #FFF;
  color: #FFF !important;
  display: inline-block;
  float: none;
  font-family: "Rubik", sans-serif;
  height: 40px;
  line-height: 38px;
  margin: 0;
  padding: 0 80px;
  text-align: center;
  transition: all 0.25s ease-in-out;
  width: auto;
}
.arsluna-button-more::after {
  content: "\f178";
  font-family: FontAwesome;
  padding-left: 10px;
}
.arsluna-button-more:hover {
  background-color: #FF000F;
  border-color: #FF000F;
}

/* 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: #3f463e;
  display: block;
  overflow: hidden;
}

.sm-blue a,
.sm-blue a:active,
.sm-blue a:focus,
.sm-blue a:hover {
  padding: 0 20px;
  /* make room for the toggle button (sub indicator) */
  padding-right: 58px;
  color: #3f463e;
  font-size: 16px;
  font-weight: normal;
  line-height: 40px;
  text-decoration: none;
  -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;
}

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

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

/* Sub Arrow for Mobile menu */
.sm-blue a > span.sub-arrow {
  background: rgba(255, 255, 255, 0.2);
  bottom: auto;
  font-size: 0;
  height: 40px;
  line-height: 40px;
  left: auto;
  margin-top: 0;
  overflow: hidden;
  position: absolute;
  padding: 0;
  right: 0;
  text-align: center;
  text-shadow: none;
  top: 0;
  width: 40px;
}
.sm-blue a > span.sub-arrow::before {
  color: #3f463e;
  display: block;
  content: "\f107";
  font-family: FontAwesome;
  font-size: 18px;
  height: 40px;
  line-height: 40px;
  padding: 0;
  text-align: center;
  width: 40px;
}
.sm-blue a.highlighted > span.sub-arrow::before {
  color: #3f463e;
  content: "\f106";
}

/* 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: #3f463e !important;
  font-size: 12px;
  text-shadow: none;
}

.sm-blue ul a:active,
.sm-blue ul a:focus,
.sm-blue ul a:hover {
  color: #3f463e !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: #3f463e !important;
  border-top-color: transparent !important;
}

.sm-blue ul a.current {
  color: #3f463e;
}

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

.sm-blue ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.sm-blue ul li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

@media (min-width: 992px) {
  /* Switch to desktop layout
  -----------------------------------------------
     These transform the menu tree from
     collapsible to desktop (navbar + dropdowns)
  -----------------------------------------------*/
  .sm {
    position: relative;
    z-index: 9999;
  }
  .sm > ul {
    margin-top: 35px;
  }
  /* start... (it's not recommended editing these rules) */
  .sm-blue ul {
    position: absolute;
    width: 12em;
  }
  .sm-blue li {
    float: left;
  }
  .sm-blue.sm-rtl li {
    float: right;
  }
  .sm-blue ul li,
  .sm-blue.sm-rtl ul li,
  .sm-blue.sm-vertical li {
    float: none;
  }
  .sm-blue a {
    white-space: nowrap;
  }
  .sm-blue ul a,
  .sm-blue.sm-vertical a {
    white-space: normal;
  }
  .sm-blue .sm-nowrap > li > :not(ul) a,
  .sm-blue .sm-nowrap > li > a {
    white-space: nowrap;
  }
  /* ...end */
  .sm-blue {
    background: transparent;
  }
  .sm-blue a,
  .sm-blue a.highlighted,
  .sm-blue a:active,
  .sm-blue a:focus,
  .sm-blue a:hover {
    background: transparent;
    color: #3f463e;
    padding: 9px 25px;
    color: #3f463e;
  }
  .sm-blue a > span.menuitem-text,
  .sm-blue a.highlighted > span.menuitem-text,
  .sm-blue a:active > span.menuitem-text,
  .sm-blue a:focus > span.menuitem-text,
  .sm-blue a:hover > span.menuitem-text {
    position: relative;
  }
  .sm-blue a > span.menuitem-text::after,
  .sm-blue a.highlighted > span.menuitem-text::after,
  .sm-blue a:active > span.menuitem-text::after,
  .sm-blue a:focus > span.menuitem-text::after,
  .sm-blue a:hover > span.menuitem-text::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #3f463e;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
  }
  .sm-blue a:hover > span.menuitem-text:after {
    background-color: #3f463e;
    transform: translateX(-50%) scaleX(1);
  }
  .sm-blue a.highlighted,
  .sm-blue a:active,
  .sm-blue a:focus,
  .sm-blue li.active > a {
    color: #3f463e;
  }
  .sm-blue a.highlighted > span.menuitem-text:after,
  .sm-blue a:active > span.menuitem-text:after,
  .sm-blue a:focus > span.menuitem-text:after,
  .sm-blue li.active > a > span.menuitem-text:after {
    background-color: #3f463e;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: scaleX(1);
  }
  .sm-blue a.current {
    color: #3f463e;
  }
  .sm-blue a.disabled {
    color: #a1d1e8;
  }
  /* Sub Arrow for desktop Menu*/
  .sm-blue a span.sub-arrow {
    background: transparent;
    border: 0;
    height: 0;
    left: auto;
    margin-left: 0;
    margin-top: 0;
    position: absolute;
    right: 10px;
    top: 50%;
    width: 0;
  }
  .sm-blue a.has-submenu .menuitem-text-main:after, .sm-blue a.has-submenu.highlighted .menuitem-text-main:after, .sm-blue a.has-submenu:active .menuitem-text-main:after, .sm-blue a.has-submenu:focus .menuitem-text-main:after, .sm-blue a.has-submenu:hover .menuitem-text-main:after {
    color: #3f463e;
    content: "\f107";
    display: inline-block;
    font-family: FontAwesome;
    font-size: 14px;
    height: 40px;
    line-height: 40px;
    padding-left: 5px;
    vertical-align: top;
  }
  .sm-blue a.has-submenu.highlighted > .menuitem-text > .menuitem-text-main:after, .sm-blue a.has-submenu:active > .menuitem-text > .menuitem-text-main:after, .sm-blue a.has-submenu:focus > .menuitem-text > .menuitem-text-main:after, .sm-blue a.has-submenu:hover > .menuitem-text > .menuitem-text-main:after {
    color: #3f463e;
  }
  .sm-blue a.highlighted span.sub-arrow:before {
    display: none;
  }
  .sm-blue > li.active > a.has-submenu > .menuitem-text > .menuitem-text-main:after {
    color: #3f463e;
  }
  .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 {
    color: #3f463e;
  }
  .sm-blue > li:first-child > :not(ul) a,
  .sm-blue > li:first-child > a {
    -webkit-border-radius: 0 0 0 0;
    -moz-border-radius: 0 0 0 0;
    -ms-border-radius: 0 0 0 0;
    -o-border-radius: 0 0 0 0;
    border-radius: 0 0 0 0;
  }
  .sm-blue > li:last-child > :not(ul) a,
  .sm-blue > li:last-child > a {
    -webkit-border-radius: 0 0 0 0 !important;
    -moz-border-radius: 0 0 0 0 !important;
    -ms-border-radius: 0 0 0 0 !important;
    -o-border-radius: 0 0 0 0 !important;
    border-radius: 0 0 0 0 !important;
  }
  .sm-blue > li {
    border-left: 0;
  }
  .sm-blue > li:first-child {
    border-left: 0;
  }
  .sm-blue ul {
    border: 1px solid #FFF;
    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;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
  }
  .sm-blue ul ul {
    background: #FFF;
    border-radius: 3px;
  }
  .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: 5px 20px;
    background: #FFF;
    color: #3f463e !important;
    font-size: 14px;
    line-height: 30px;
    border-radius: 0 !important;
    transition: background-color 0.25s ease-in-out;
  }
  .sm-blue ul a > span.menuitem-text,
  .sm-blue ul a.highlighted > span.menuitem-text,
  .sm-blue ul a:active > span.menuitem-text,
  .sm-blue ul a:focus > span.menuitem-text,
  .sm-blue ul a:hover > span.menuitem-text,
  .sm-blue ul li.active > a > span.menuitem-text {
    display: block;
    width: 100%;
  }
  .sm-blue ul a > span.menuitem-text > .menuitem-text-main,
  .sm-blue ul a.highlighted > span.menuitem-text > .menuitem-text-main,
  .sm-blue ul a:active > span.menuitem-text > .menuitem-text-main,
  .sm-blue ul a:focus > span.menuitem-text > .menuitem-text-main,
  .sm-blue ul a:hover > span.menuitem-text > .menuitem-text-main,
  .sm-blue ul li.active > a > span.menuitem-text > .menuitem-text-main {
    display: block;
  }
  .sm-blue ul a > span.menuitem-text::after,
  .sm-blue ul a.highlighted > span.menuitem-text::after,
  .sm-blue ul a:active > span.menuitem-text::after,
  .sm-blue ul a:focus > span.menuitem-text::after,
  .sm-blue ul a:hover > span.menuitem-text::after,
  .sm-blue ul li.active > a > span.menuitem-text::after {
    border-top: 0 none;
  }
  .sm-blue ul a.has-submenu .menuitem-text-main:after, .sm-blue ul a.has-submenu.highlighted .menuitem-text-main:after, .sm-blue ul a.has-submenu:active .menuitem-text-main:after, .sm-blue ul a.has-submenu:focus .menuitem-text-main:after, .sm-blue ul a.has-submenu:hover .menuitem-text-main:after,
  .sm-blue ul a.highlighted.has-submenu .menuitem-text-main:after,
  .sm-blue ul a.highlighted.has-submenu.highlighted .menuitem-text-main:after,
  .sm-blue ul a.highlighted.has-submenu:active .menuitem-text-main:after,
  .sm-blue ul a.highlighted.has-submenu:focus .menuitem-text-main:after,
  .sm-blue ul a.highlighted.has-submenu:hover .menuitem-text-main:after,
  .sm-blue ul a:active.has-submenu .menuitem-text-main:after,
  .sm-blue ul a:active.has-submenu.highlighted .menuitem-text-main:after,
  .sm-blue ul a:active.has-submenu:active .menuitem-text-main:after,
  .sm-blue ul a:active.has-submenu:focus .menuitem-text-main:after,
  .sm-blue ul a:active.has-submenu:hover .menuitem-text-main:after,
  .sm-blue ul a:focus.has-submenu .menuitem-text-main:after,
  .sm-blue ul a:focus.has-submenu.highlighted .menuitem-text-main:after,
  .sm-blue ul a:focus.has-submenu:active .menuitem-text-main:after,
  .sm-blue ul a:focus.has-submenu:focus .menuitem-text-main:after,
  .sm-blue ul a:focus.has-submenu:hover .menuitem-text-main:after,
  .sm-blue ul a:hover.has-submenu .menuitem-text-main:after,
  .sm-blue ul a:hover.has-submenu.highlighted .menuitem-text-main:after,
  .sm-blue ul a:hover.has-submenu:active .menuitem-text-main:after,
  .sm-blue ul a:hover.has-submenu:focus .menuitem-text-main:after,
  .sm-blue ul a:hover.has-submenu:hover .menuitem-text-main:after,
  .sm-blue ul li.active > a.has-submenu .menuitem-text-main:after,
  .sm-blue ul li.active > a.has-submenu.highlighted .menuitem-text-main:after,
  .sm-blue ul li.active > a.has-submenu:active .menuitem-text-main:after,
  .sm-blue ul li.active > a.has-submenu:focus .menuitem-text-main:after,
  .sm-blue ul li.active > a.has-submenu:hover .menuitem-text-main:after {
    content: "\f105";
    position: absolute;
    right: -15px;
    top: 0;
  }
  .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 {
    background-color: #ece9ee;
  }
  .sm-blue ul a.current {
    background-color: #ece9ee;
  }
  .sm-blue ul a.disabled {
    background: white;
    color: #b3b3b3;
  }
  .sm-blue ul a span.sub-arrow {
    top: 50%;
    margin-top: -5px;
    bottom: auto;
    left: auto;
    margin-left: 0;
    right: 10px;
    border-style: dashed dashed dashed solid;
    border-color: transparent transparent transparent #a1d1e8;
  }
  .sm-blue 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 #3f463e transparent;
  }
  .sm-blue span.scroll-down-arrow {
    top: 6px;
    border-style: solid dashed dashed dashed;
    border-color: #3f463e transparent transparent transparent;
  }
  .sm-blue.sm-rtl.sm-vertical a span.sub-arrow {
    right: auto;
    left: 10px;
    border-style: dashed solid dashed dashed;
    border-color: transparent #a1d1e8 transparent transparent;
  }
  .sm-blue.sm-rtl > li:first-child > :not(ul) a,
  .sm-blue.sm-rtl > li:first-child > a {
    -webkit-border-radius: 0 8px 8px 0;
    -moz-border-radius: 0 8px 8px 0;
    -ms-border-radius: 0 8px 8px 0;
    -o-border-radius: 0 8px 8px 0;
    border-radius: 0 8px 8px 0;
  }
  .sm-blue.sm-rtl > li:last-child > :not(ul) a,
  .sm-blue.sm-rtl > li:last-child > a {
    -webkit-border-radius: 8px 0 0 8px !important;
    -moz-border-radius: 8px 0 0 8px !important;
    -ms-border-radius: 8px 0 0 8px !important;
    -o-border-radius: 8px 0 0 8px !important;
    border-radius: 8px 0 0 8px !important;
  }
  .sm-blue.sm-rtl > li:first-child {
    border-left: 1px solid #2b82ac;
  }
  .sm-blue.sm-rtl > li:last-child {
    border-left: 0;
  }
  .sm-blue.sm-rtl ul a span.sub-arrow {
    right: auto;
    left: 10px;
    border-style: dashed solid dashed dashed;
    border-color: transparent #a1d1e8 transparent transparent;
  }
  .sm-blue.sm-vertical {
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  }
  .sm-blue.sm-vertical a {
    padding: 9px 23px;
  }
  .sm-blue.sm-vertical a span.sub-arrow {
    top: 50%;
    margin-top: -5px;
    bottom: auto;
    left: auto;
    margin-left: 0;
    right: 10px;
    border-style: dashed dashed dashed solid;
    border-color: transparent transparent transparent #a1d1e8;
  }
  .sm-blue.sm-vertical > li:first-child > :not(ul) a,
  .sm-blue.sm-vertical > li:first-child > a {
    -webkit-border-radius: 8px 8px 0 0;
    -moz-border-radius: 8px 8px 0 0;
    -ms-border-radius: 8px 8px 0 0;
    -o-border-radius: 8px 8px 0 0;
    border-radius: 8px 8px 0 0;
  }
  .sm-blue.sm-vertical > li:last-child > :not(ul) a,
  .sm-blue.sm-vertical > li:last-child > a {
    -webkit-border-radius: 0 0 8px 8px !important;
    -moz-border-radius: 0 0 8px 8px !important;
    -ms-border-radius: 0 0 8px 8px !important;
    -o-border-radius: 0 0 8px 8px !important;
    border-radius: 0 0 8px 8px !important;
  }
  .sm-blue.sm-vertical > li {
    border-left: 0 !important;
  }
  .sm-blue.sm-vertical ul {
    -webkit-border-radius: 4px !important;
    -moz-border-radius: 4px !important;
    -ms-border-radius: 4px !important;
    -o-border-radius: 4px !important;
    border-radius: 4px !important;
  }
  .sm-blue.sm-vertical ul a {
    padding: 9px 23px;
  }
  /* Mobile Button **************************************************************/
  /* hide the button in desktop view */
  .main-menu-btn {
    position: absolute;
    text-align: center;
    top: -99999px;
  }
  /* always show the menu in desktop view */
  #main-menu-state:not(:checked) ~ #main-menu {
    display: inline-block;
  }
  #main-menu-state-inverted:not(:checked) ~ #main-menu-inverted {
    display: inline-block;
  }
  .sm-blue .menuitem-image,
  .sm-blue .menuitem-text {
    display: inline-block;
  }
  .sm-blue .menuitem-image.sec {
    display: none;
  }
}
/* Mega menus */
/* make mega menus take the full width of .main-nav */
.sm,
.sm > .has-mega-menu {
  position: static !important;
}

#main-menu {
  /* END .mega-menu */
}
#main-menu > .has-mega-menu .scroll-down,
#main-menu > .has-mega-menu .scroll-up {
  margin-left: 0 !important;
}
#main-menu .mega-menu {
  /* reset mega menu list/link styles (which are inherited from the SmartMenus core/theme styles) */
  color: #3f463e;
  margin-left: 0 !important;
  right: 0 !important;
  width: auto !important;
  max-width: none !important;
  /* clear any floats inside the mega menus */
  /* simple columns inside the mega menus */
}
#main-menu .mega-menu > li {
  overflow: auto;
}
#main-menu .mega-menu ul {
  position: static;
  display: block;
  margin: 0;
  border: 0;
  padding: 5px;
  width: auto;
  background: transparent;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
#main-menu .mega-menu ul li {
  display: block;
  list-style-type: none;
  border: 0;
}
#main-menu .mega-menu a {
  background: transparent;
  border: 0;
  color: inherit;
  display: block;
  padding: 9px 23px;
  text-decoration: none;
}
#main-menu .mega-menu .mega-menu-item {
  border: 1px solid #777;
  padding: 5px;
}
#main-menu .mega-menu .mega-menu-item a:active, #main-menu .mega-menu .mega-menu-item a:focus, #main-menu .mega-menu .mega-menu-item a:hover {
  color: #3f463e;
}
#main-menu .mega-menu .mega-menu-item.active a {
  color: #3f463e;
}
#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: #3f463e;
}
#main-menu .mega-menu li.active > a {
  color: #3f463e;
}
#main-menu .mega-menu ul ul {
  padding-left: 20px;
}
#main-menu .mega-menu ul ul li a {
  color: #777;
  font-size: 16px;
  padding-left: 20px;
}
#main-menu .mega-menu .column-1-2,
#main-menu .mega-menu .column-1-3,
#main-menu .mega-menu .column-1-4,
#main-menu .mega-menu .column-1-5 {
  padding: 0 20px;
}

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

#header-main-wrapper-inverted {
  /* END .sm-blue */
}
#header-main-wrapper-inverted .sm-blue {
  /* END a - first level */
}
#header-main-wrapper-inverted .sm-blue a {
  color: #1a2022;
  /* Mobile sub arrow */
}
#header-main-wrapper-inverted .sm-blue a:active, #header-main-wrapper-inverted .sm-blue a:focus, #header-main-wrapper-inverted .sm-blue a:hover {
  color: #1a2022;
}
#header-main-wrapper-inverted .sm-blue a.current, #header-main-wrapper-inverted .sm-blue a:active, #header-main-wrapper-inverted .sm-blue a:focus, #header-main-wrapper-inverted .sm-blue a:hover {
  color: #3f463e;
}
#header-main-wrapper-inverted .sm-blue a span.sub-arrow {
  background: rgba(255, 255, 255, 0.2);
}
#header-main-wrapper-inverted .sm-blue a span.sub-arrow::before {
  color: #1a2022;
}
#header-main-wrapper-inverted .sm-blue a.highlighted span.sub-arrow::before {
  color: #3f463e;
}
#header-main-wrapper-inverted .sm-blue ul {
  background: #ece9ee;
  border-color: #ece9ee;
  /* END a */
}
#header-main-wrapper-inverted .sm-blue ul a {
  background: transparent;
  color: #1a2022 !important;
}
#header-main-wrapper-inverted .sm-blue ul a:active, #header-main-wrapper-inverted .sm-blue ul a:focus, #header-main-wrapper-inverted .sm-blue ul a:hover {
  background: transparent;
  color: #1a2022 !important;
}
#header-main-wrapper-inverted .sm-blue ul a.current, #header-main-wrapper-inverted .sm-blue ul a:active, #header-main-wrapper-inverted .sm-blue ul a:focus, #header-main-wrapper-inverted .sm-blue ul a:hover {
  background: transparent;
  color: #3f463e !important;
}

/* END #header-main-wrapper-inverted */
@media (min-width: 992px) {
  #header-main-wrapper-inverted {
    /* END .sm-blue */
  }
  #header-main-wrapper-inverted .sm-blue a {
    background: transparent;
    color: #1a2022;
    /* Sub Arrow for desktop Menu*/
  }
  #header-main-wrapper-inverted .sm-blue a.highlighted, #header-main-wrapper-inverted .sm-blue a:active, #header-main-wrapper-inverted .sm-blue a:focus, #header-main-wrapper-inverted .sm-blue a:hover {
    background: transparent;
    color: #1a2022;
  }
  #header-main-wrapper-inverted .sm-blue a.current #header-main-wrapper-inverted .sm-blue a.highlighted, #header-main-wrapper-inverted .sm-blue a:active, #header-main-wrapper-inverted .sm-blue a:focus, #header-main-wrapper-inverted .sm-blue a:hover {
    color: #3f463e;
  }
  #header-main-wrapper-inverted .sm-blue a.current #header-main-wrapper-inverted .sm-blue a.highlighted span.sub-arrow, #header-main-wrapper-inverted .sm-blue a:active span.sub-arrow, #header-main-wrapper-inverted .sm-blue a:focus span.sub-arrow, #header-main-wrapper-inverted .sm-blue a:hover span.sub-arrow {
    color: #3f463e;
  }
  #header-main-wrapper-inverted .sm-blue a.disabled {
    color: #a1d1e8;
  }
  #header-main-wrapper-inverted .sm-blue a.has-submenu .menuitem-text-main:after, #header-main-wrapper-inverted .sm-blue a.has-submenu.highlighted .menuitem-text-main:after, #header-main-wrapper-inverted .sm-blue a.has-submenu:active .menuitem-text-main:after, #header-main-wrapper-inverted .sm-blue a.has-submenu:focus .menuitem-text-main:after, #header-main-wrapper-inverted .sm-blue a.has-submenu:hover .menuitem-text-main:after {
    color: #1a2022;
  }
  #header-main-wrapper-inverted .sm-blue a.has-submenu.highlighted .menuitem-text-main:after, #header-main-wrapper-inverted .sm-blue a.has-submenu:active .menuitem-text-main:after, #header-main-wrapper-inverted .sm-blue a.has-submenu:focus .menuitem-text-main:after, #header-main-wrapper-inverted .sm-blue a.has-submenu:hover .menuitem-text-main:after {
    color: #3f463e;
  }
  #header-main-wrapper-inverted .sm-blue li.active > a {
    color: #3f463e;
  }
  #header-main-wrapper-inverted .sm-blue > li.active a span.sub-arrow {
    color: #3f463e;
  }
  #header-main-wrapper-inverted .sm-blue > ul {
    margin-top: 15px;
  }
  #header-main-wrapper-inverted .sm-blue ul a {
    color: #1a2022;
  }
  #header-main-wrapper-inverted .sm-blue ul a.highlighted, #header-main-wrapper-inverted .sm-blue ul a:active, #header-main-wrapper-inverted .sm-blue ul a:focus, #header-main-wrapper-inverted .sm-blue ul a:hover {
    color: #1a2022;
  }
  #header-main-wrapper-inverted .sm-blue ul > li.active > a {
    color: #1a2022;
  }
  /* END #header-main-wrapper-inverted */
}
/* 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: right;
}

.nav-2 {
  margin-top: 0;
  overflow: hidden;
  text-align: right;
}
.nav-2 > ul, .nav-2 > .ul {
  margin: 0;
}
.nav-2 > ul > li, .nav-2 > ul > .li, .nav-2 > .ul > li, .nav-2 > .ul > .li {
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  line-height: 40px;
  margin: 0;
  vertical-align: top;
}
.nav-2 > ul > li.first, .nav-2 > ul > .li.first, .nav-2 > .ul > li.first, .nav-2 > .ul > .li.first {
  margin-left: 0;
}
.nav-2 > ul > li > a, .nav-2 > ul > .li > a, .nav-2 > .ul > li > a, .nav-2 > .ul > .li > a {
  background: 0 0;
  color: #FFF;
  display: block;
  line-height: 24px;
  padding: 8px;
  transition: color 0.25s ease-in-out;
}
.nav-2 > ul > li > a .menuitem-wrapper, .nav-2 > ul > .li > a .menuitem-wrapper, .nav-2 > .ul > li > a .menuitem-wrapper, .nav-2 > .ul > .li > a .menuitem-wrapper {
  display: block;
}
.nav-2 > ul > li > a .menuitem-image-container,
.nav-2 > ul > li > a .menuitem-text, .nav-2 > ul > .li > a .menuitem-image-container,
.nav-2 > ul > .li > a .menuitem-text, .nav-2 > .ul > li > a .menuitem-image-container,
.nav-2 > .ul > li > a .menuitem-text, .nav-2 > .ul > .li > a .menuitem-image-container,
.nav-2 > .ul > .li > a .menuitem-text {
  display: inline-block;
  margin-right: 0;
  position: relative;
  vertical-align: top;
}
.nav-2 > ul > li > a .menuitem-image-container, .nav-2 > ul > .li > a .menuitem-image-container, .nav-2 > .ul > li > a .menuitem-image-container, .nav-2 > .ul > .li > a .menuitem-image-container {
  line-height: 0;
  padding: 0;
}
.nav-2 > ul > li > a .menuitem-text-main, .nav-2 > ul > .li > a .menuitem-text-main, .nav-2 > .ul > li > a .menuitem-text-main, .nav-2 > .ul > .li > a .menuitem-text-main {
  display: none;
}
.nav-2 > ul > li > a img.menuitem-image, .nav-2 > ul > .li > a img.menuitem-image, .nav-2 > .ul > li > a img.menuitem-image, .nav-2 > .ul > .li > a img.menuitem-image {
  height: 24px;
  opacity: 1;
  position: relative;
  transition: opacity 0.25s ease-in-out;
  width: 24px;
}
.nav-2 > ul > li > a img.menuitem-image.sec, .nav-2 > ul > .li > a img.menuitem-image.sec, .nav-2 > .ul > li > a img.menuitem-image.sec, .nav-2 > .ul > .li > a img.menuitem-image.sec {
  display: none;
}
.nav-2 > ul > li > a img.menuitem-image.active, .nav-2 > ul > .li > a img.menuitem-image.active, .nav-2 > .ul > li > a img.menuitem-image.active, .nav-2 > .ul > .li > a img.menuitem-image.active {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
}
.nav-2 > ul > li a:visited, .nav-2 > ul > .li a:visited, .nav-2 > .ul > li a:visited, .nav-2 > .ul > .li a:visited {
  color: #FFF;
}
.nav-2 > ul > li > a.selected, .nav-2 > ul > li > a:hover, .nav-2 > ul > li.active > a, .nav-2 > ul > .li > a.selected, .nav-2 > ul > .li > a:hover, .nav-2 > ul > .li.active > a, .nav-2 > .ul > li > a.selected, .nav-2 > .ul > li > a:hover, .nav-2 > .ul > li.active > a, .nav-2 > .ul > .li > a.selected, .nav-2 > .ul > .li > a:hover, .nav-2 > .ul > .li.active > a {
  color: #FFF;
}
.nav-2 > ul > li > a.selected img.menuitem-image, .nav-2 > ul > li > a:hover img.menuitem-image, .nav-2 > ul > li.active > a img.menuitem-image, .nav-2 > ul > .li > a.selected img.menuitem-image, .nav-2 > ul > .li > a:hover img.menuitem-image, .nav-2 > ul > .li.active > a img.menuitem-image, .nav-2 > .ul > li > a.selected img.menuitem-image, .nav-2 > .ul > li > a:hover img.menuitem-image, .nav-2 > .ul > li.active > a img.menuitem-image, .nav-2 > .ul > .li > a.selected img.menuitem-image, .nav-2 > .ul > .li > a:hover img.menuitem-image, .nav-2 > .ul > .li.active > a img.menuitem-image {
  opacity: 0;
}
.nav-2 > ul > li > a.selected img.menuitem-image.active, .nav-2 > ul > li > a:hover img.menuitem-image.active, .nav-2 > ul > li.active > a img.menuitem-image.active, .nav-2 > ul > .li > a.selected img.menuitem-image.active, .nav-2 > ul > .li > a:hover img.menuitem-image.active, .nav-2 > ul > .li.active > a img.menuitem-image.active, .nav-2 > .ul > li > a.selected img.menuitem-image.active, .nav-2 > .ul > li > a:hover img.menuitem-image.active, .nav-2 > .ul > li.active > a img.menuitem-image.active, .nav-2 > .ul > .li > a.selected img.menuitem-image.active, .nav-2 > .ul > .li > a:hover img.menuitem-image.active, .nav-2 > .ul > .li.active > a img.menuitem-image.active {
  opacity: 1;
}
.nav-2 > ul > li > ul, .nav-2 > ul > li > .ul, .nav-2 > ul > .li > ul, .nav-2 > ul > .li > .ul, .nav-2 > .ul > li > ul, .nav-2 > .ul > li > .ul, .nav-2 > .ul > .li > ul, .nav-2 > .ul > .li > .ul {
  display: none;
}

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

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

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

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

   > ul > li:hover > a:before {
      border-color: rgba(255, 255, 255, 0);
      border-left-color: #ffffff;
  }
  */
}
.menu-001 > ul > li > a {
  color: #FFF;
  display: block;
  font-size: 14px;
  line-height: 40px;
  position: relative;
  text-align: left;
  text-decoration: none;
  -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;
}
.menu-001 > ul > li > a:hover {
  color: #d56a4b;
}

/* END Menu 001 */
/* Search **********/
/*
* ArsLuna Web Pages
*
* Main CSS
* All Screens
* Template Partial
* Search 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
*
*/
.button.search-toggle-button {
  background: transparent;
  border: 0 none;
  color: #3f463e;
  display: inline-block;
  font-size: 0;
  height: 40px;
  line-height: 40px;
  margin: 0;
  min-width: 40px;
  padding: 0;
  position: relative;
  text-align: center;
  text-indent: -9999px;
  text-decoration: none;
  width: 40px;
}
.button.search-toggle-button::after, .button.search-toggle-button::before {
  background: url("./images/search-normal.png") center center no-repeat;
  background-size: 24px 24px;
  bottom: 0;
  content: "";
  opacity: 1;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: opacity 0.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;
}
.button.search-toggle-button::after {
  background-image: url("./images/search-active.png");
  opacity: 0;
}
.button.search-toggle-button:focus::after, .button.search-toggle-button:hover::after {
  opacity: 1;
}
.button.search-toggle-button:focus::before, .button.search-toggle-button:hover::before {
  opacity: 0;
}

.search-wrapper {
  text-align: center;
  position: relative;
  z-index: 5002;
  /* Button Search */
}
.search-wrapper .search {
  background-color: #FFF;
  display: none;
  padding: 20px;
  position: absolute;
  right: -40px;
  text-align: center;
  top: 60px;
  width: 316px;
  /* Button Search */
}
.search-wrapper .search .container {
  padding: 20px 0;
}
.search-wrapper .search .button.search-close-button {
  border: 0 none;
  background-color: transparent;
  cursor: pointer;
  display: block;
  height: 30px;
  margin: 0;
  min-width: 30px;
  padding: 0;
  position: absolute;
  right: 0;
  top: 30px;
  width: 30px;
}
.search-wrapper .search .button.search-close-button::after, .search-wrapper .search .button.search-close-button::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 1px;
  background-color: #FFF;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  left: 50%;
  top: 50%;
  -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;
  z-index: 1;
}
.search-wrapper .search .button.search-close-button:after {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.search-wrapper .search .button.search-close-button:hover::after, .search-wrapper .search .button.search-close-button:hover::before {
  background-color: #FF000F;
}
.search-wrapper .search .content {
  display: block;
  margin: 0 auto;
  text-align: left;
  width: 100%;
}
.search-wrapper .search .content .title {
  color: #FFF;
  font-size: 16px;
  margin-bottom: 20px;
  text-align: left;
}
.search-wrapper .search .search-group-wrapper {
  border-bottom: 1px solid #FFF;
  align-items: flex-start;
  align-content: space-between;
  display: flex;
  flex-direction: row nowrap;
  position: relative;
  width: 100%;
}
.search-wrapper .search .search-button-wrapper {
  flex: none;
  text-align: right;
}
.search-wrapper .search .search-input-wrapper {
  flex: 1 0 auto;
  text-align: left;
}
.search-wrapper .search input[type=text] {
  background: #FFF;
  border-bottom: 1px solid #707c6e;
  border-left: 0 none;
  border-right: 0 none;
  border-top: 0 none;
  box-shadow: none;
  color: #1a2022;
  display: block;
  font-size: 14px;
  font-weight: 400;
  height: 40px;
  line-height: 38px;
  padding: 0 10px;
  width: 100%;
}
.search-wrapper .search .button.button-search {
  background: #FFF;
  border: 0 none;
  color: #1a2022;
  display: block;
  font-size: 18px;
  height: 40px;
  line-height: 38px;
  min-width: 40px;
  margin: 0 0 0 -4px;
  padding: 0;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-indent: -9999px;
  width: 40px;
}
.search-wrapper .search .button.button-search::placeholder {
  color: #899588;
  opacity: 1;
  /* Firefox */
}
.search-wrapper .search .button.button-search::-ms-input-placeholder {
  /* Edge 12 -18 */
  color: #899588;
}
.search-wrapper .search .button.button-search::after, .search-wrapper .search .button.button-search::before {
  background: url("./images/search-normal.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 .search .button.button-search::after {
  background-image: url("./images/search-active.png");
  opacity: 0;
}
.search-wrapper .search .button.button-search:hover::after {
  opacity: 1;
}
.search-wrapper .search .button.button-search:hover::before {
  opacity: 0;
}

.ui-autocomplete.search-sugestions {
  max-width: 300px;
}
.ui-autocomplete.search-sugestions .search-suggestion .ui-menu-item-wrapper {
  align-content: stretch;
  align-items: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-flow: row;
  flex-flow: row nowrap;
  flex-wrap: nowrap;
  gap: 5px;
  justify-content: center;
  margin: 0;
  text-align: left;
  width: 100%;
}
.ui-autocomplete.search-sugestions .search-suggestion .ui-menu-item-wrapper img {
  display: inline-block;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
  height: 40px;
  width: auto;
}
.ui-autocomplete.search-sugestions .search-suggestion .ui-menu-item-wrapper .txt {
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  font-size: 12px;
}

/* Tables *********/
/*
* 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],
select,
textarea {
  background: #ece9ee;
  border: 1px solid #707c6e;
  box-shadow: 0 none;
  color: #1a2022;
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  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,
select:required:after,
textarea:required:after {
  content: " *";
  display: inline-block;
  position: relative;
}

input[type=email],
input[type=number],
input[type=password],
input[type=select],
input[type=tel],
input[type=text],
select {
  line-height: 2.5em;
  height: 2.5em;
}

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

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

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

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

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

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

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

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

.pass-forgotten input[type=email],
.pass-forgotten input[type=number],
.pass-forgotten input[type=password],
.pass-forgotten input[type=select],
.pass-forgotten input[type=tel],
.pass-forgotten input[type=text],
.pass-forgotten textarea {
  max-width: 500px;
}

.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: #ece9ee;
  border: 1px solid #707c6e;
  box-shadow: 0 none;
  color: #1a2022;
  font-size: 14px;
  padding: 0 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,
select {
  line-height: 2.5em;
  height: 2.5em;
}

.form-group {
  display: block;
  overflow: hidden;
}
.form-group .form-input-wrapper {
  padding: 5px 0;
  text-align: left;
}
.form-group .info,
.form-group .label,
.form-group label {
  font-size: 14px;
  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 .textinput-full-width {
  max-width: 500px;
}
.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: 500px;
  vertical-align: top;
  width: 100%;
}
.form-group .form-input-wrapper .zip-input-full-width .zip-input-row {
  display: table-row;
}
.form-group .form-input-wrapper .zip-input-full-width .zip-input-row .textinput-zip-code {
  display: table-cell;
  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 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;
}

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

.sidebar .contact_form_input_100 {
  width: 100%;
}

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

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

.form-group.checkbox-right label {
  display: block;
  position: relative;
  padding: 0 0 10px 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* Hide the browser's default checkbox */
  /* Create a custom checkbox */
  /* On mouse-over, add a grey background color */
  /* When the checkbox is checked, add a blue background */
}
.form-group.checkbox-right label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.form-group.checkbox-right label .checkmark {
  border: 1px solid #707c6e;
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #FFF;
  /* Create the checkmark/indicator (hidden when not checked) */
  /* Style the checkmark/indicator */
}
.form-group.checkbox-right label .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid #FFF;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.form-group.checkbox-right label:hover input ~ .checkmark {
  background-color: #ece9ee;
}
.form-group.checkbox-right label input:checked ~ .checkmark {
  background-color: #d56a4b;
  /* 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;
  -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: #3f463e;
  -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: 25px;
  transition: background-color 0.25s ease-in-out;
  width: 25px;
  /* 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:hover input ~ .checkmark {
  background-color: #899588;
}
.arsluna-radio input:checked ~ .checkmark {
  background-color: #d56a4b;
  /* Show the indicator (dot/circle) when checked */
}
.arsluna-radio input:checked ~ .checkmark:after {
  display: block;
}

/* Tabs   *********/
/*
* ArsLuna Web Pages
*
* Main CSS
* All Screens
* Template Partial
* Tabs 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
*
*/
.ui-tabs.ui-widget-content {
  color: #FFF;
  background: transparent;
  border: 0 none;
}
.ui-tabs.ui-widget-content .ui-tabs-panel {
  padding: 40px 0 40px 0;
}
.ui-tabs.ui-widget-content .ui-tabs-nav {
  background: transparent;
  border: 0 none;
  border-bottom: 0 none;
  padding: 0;
  text-align: center;
}
.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;
  display: inline-block;
  float: none;
  margin: 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;
}
.ui-tabs.ui-widget-content .ui-tabs-nav li a,
.ui-tabs.ui-widget-content .ui-tabs-nav li a:link {
  background: transparent;
  border: 0px none;
  color: #ece9ee;
  font-family: "Rubik", sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.5em;
  padding: 0 20px;
  -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;
}
.ui-tabs.ui-widget-content .ui-tabs-nav li.ui-state-default {
  background: transparent;
  border: 0px none;
  color: #ece9ee;
  font-weight: 600;
}
.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: #ece9ee !important;
}
.ui-tabs.ui-widget-content .ui-tabs-nav li.ui-state-default:hover {
  background: transparent;
  border: 0 none;
  color: #FFF !important;
  font-weight: 600;
}
.ui-tabs.ui-widget-content .ui-tabs-nav li.ui-state-focus, .ui-tabs.ui-widget-content .ui-tabs-nav li.ui-state-hover, .ui-tabs.ui-widget-content .ui-tabs-nav li.ui-state-active {
  background: transparent;
  border: 0px none;
  color: #FFF;
}
.ui-tabs.ui-widget-content .ui-tabs-nav li.ui-state-focus a,
.ui-tabs.ui-widget-content .ui-tabs-nav li.ui-state-focus a:link, .ui-tabs.ui-widget-content .ui-tabs-nav li.ui-state-hover a,
.ui-tabs.ui-widget-content .ui-tabs-nav li.ui-state-hover a:link, .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-tabs-active {
  padding-bottom: 0;
}
.ui-tabs .ui-widget-content {
  color: #1a2022 !important;
}

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

td,
th {
  text-align: left;
}

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

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

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

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

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

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

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

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

table.style1 tfoot {
  background: #eee;
}

/**************************************/
table.style2 thead {
  background: transparent;
  color: #FFF;
}
table.style2 thead th {
  font-weight: bold;
  padding: 0.5em 1em;
  text-align: left;
}
table.style2 tbody tr:nth-child(2n+2) {
  background: #576156;
}
table.style2 tbody td {
  padding: 0.5em 1em;
  vertical-align: middle;
}
table.style2 tbody td.alignright {
  text-align: right;
}

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: visible;
  padding: 0;
}

#main-wrapper .main-left .arsluna-section {
  padding: 0;
}

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

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

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

#cashdeskprogress,
#tracer {
  color: #303b3f;
  display: block;
  padding: 10px 0;
}
#cashdeskprogress li,
#tracer li {
  display: inline-block;
  list-style-type: none;
  padding: 0;
  vertical-align: top;
}

#cashdeskprogress .active,
#tracer a.active,
#tracer a:hover {
  color: #3f463e;
}

#tracer {
  text-align: center;
}
#tracer > ul {
  overflow: hidden;
  text-align: center;
}
#tracer > ul > li > a {
  align-items: center;
  color: #303b3f;
  display: flex;
  line-height: 30px;
  -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;
}
#tracer > ul > li > a span {
  display: inline-block;
  padding: 0 10px;
}
#tracer > ul > li > a.active, #tracer > ul > li > a:hover {
  color: #303b3f;
}
#tracer > ul > li:not(:first-child) a::before {
  background-color: #899588;
  content: "";
  display: inline-block;
  height: 1px;
  width: 20px;
}

#cashdeskprogress .done {
  color: #899588;
}

.template {
  border-bottom: 1px solid #899588;
  padding: 2.0834% 0;
}
.template.last {
  border-bottom: 0 none transparent;
}
.template .content-first {
  display: block;
  overflow: hidden;
}
.template .image-main-big {
  display: inline-block;
  padding: 20px 0;
}
.template .image-photo-album a {
  display: block;
  text-align: center;
}
.template .article-data {
  align-content: stretch;
  align-items: flex-start;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-flow: row;
  flex-flow: row nowrap;
  flex-wrap: nowrap;
  font-family: "Rubik", sans-serif;
  gap: 0;
  justify-content: left;
  margin-top: 0;
  vertical-align: top;
}
.template .article-data .article-author-wrapper {
  border-right: 1px solid #ece9ee;
  display: inline-block;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
  font-size: 14px;
  padding: 0 10px 0 0;
  text-align: left;
  vertical-align: top;
  width: auto;
}
.template .article-data .article-date-wrapper {
  display: inline-block;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
  padding: 0 0 0 10px;
  position: relative;
  vertical-align: top;
  width: auto;
}
.template .article-data .article-date-wrapper .datetime {
  display: inline-block;
  font-size: 0;
  vertical-align: top;
}
.template .article-data .article-date-wrapper .datetime li {
  color: #ece9ee;
  display: inline-block;
  font-size: 14px;
  position: relative;
  vertical-align: top;
}
.template .article-data .article-date-wrapper .datetime li.month {
  padding: 0 5px;
}

.template-003 .image-main {
  float: left;
  padding: 0 20px 20px 0;
  max-width: 50%;
}

.template-004 .image-main {
  float: left;
  padding: 0 20px 20px 0;
  max-width: 50%;
}

.template-005 .image-main {
  float: right;
  padding: 0 0 20px 20px;
  max-width: 50%;
}

.template-006 .image-main {
  float: right;
  padding: 0 0 20px 20px;
  max-width: 50%;
}

.template-008 .image-main {
  float: left;
  padding: 0 20px 20px 0;
  max-width: 50%;
}
.template-008 .image-main-second {
  float: left;
  padding: 0 20px 20px 0;
  max-width: 50%;
}

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

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

.template-011 .image-main {
  float: right;
  padding: 0 0 20px 20px;
  max-width: 50%;
}
.template-011 .image-main-second {
  float: right;
  padding: 0 0 20px 20px;
  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: #ece9ee;
  border: 2px solid #1a2022;
  display: inline-block;
  max-height: 90%;
  min-height: 160px;
  max-width: 90%;
  overflow: auto;
  padding: 40px 20px 20px;
  position: relative;
}
.messages-wrapper .messages-container .message-box .close {
  color: #1a2022;
  cursor: pointer;
  font-size: 35px;
  font-weight: bold;
  line-height: 1em;
  position: absolute;
  right: 20px;
  top: 0;
}
.messages-wrapper .messages-container .message-box .message-box-content {
  display: block;
  overflow: hidden;
}
.messages-wrapper .messages-container .message-box .message-header {
  background: #ece9ee;
  color: #1a2022;
  line-height: 2em;
  margin-bottom: 15px;
  padding: 0 10px;
}
.messages-wrapper .messages-container .message-box .products-added .quantity {
  margin-left: 10px;
  margin-right: 5px;
}
.messages-wrapper .messages-container .message-box .buttons-wrapper {
  align-content: stretch;
  align-items: stretch;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-flow: row;
  flex-flow: row nowrap;
  flex-wrap: nowrap;
  gap: 10px;
  margin-top: 20px;
  vertical-align: top;
}
.messages-wrapper .messages-container .message-box .buttons-wrapper .half-left,
.messages-wrapper .messages-container .message-box .buttons-wrapper .half-right {
  display: inline-block;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 50%;
}
.messages-wrapper .messages-container .message-box .buttons-wrapper .half-left {
  text-align: left;
}
.messages-wrapper .messages-container .message-box .buttons-wrapper .half-right {
  text-align: right;
}

.arsluna-bookmark {
  display: block;
  height: 0;
  left: 0;
  position: absolute;
  top: -180px;
  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: #3f463e;
  border: 1px solid #1a2022;
  color: #FFF !important;
  font-size: 1.25em;
  min-height: 40px;
  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: #576156;
  border: 1px solid #1a2022;
  color: #FFF !important;
}
.arsluna-portlet .arsluna-portlet-header:hover::after {
  border-top: 10px solid #FFF;
}
.arsluna-portlet .arsluna-portlet-header.portlet-opened {
  background: #576156;
  border: 1px solid #1a2022;
  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: 0;
}
.arsluna-portlet .arsluna-portlet-content.arsluna-portlet-widget-content {
  display: none;
}

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

.my-account-detail-container {
  background: #ece9ee;
  display: none;
  padding: 20px;
}
.my-account-detail-container.fixed {
  bottom: 0;
  display: block;
  left: 0;
  overflow-y: auto;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
}
.my-account-detail-container .buttons-wrapper {
  height: 40px;
  position: relative;
  text-align: right;
}
.my-account-detail-container .close {
  color: #1a2022;
  cursor: pointer;
  font-size: 35px;
  font-weight: bold;
  line-height: 40px;
  position: relative;
  text-align: center;
  width: 40px;
}
.my-account-detail-container .shipment-container {
  border-bottom: 1px solid #000;
  padding: 20px 0;
}
.my-account-detail-container .shipment-container:last-child {
  border-bottom: 0;
}
.my-account-detail-container .shipment-packet-table th,
.my-account-detail-container .shipment-product-table th,
.my-account-detail-container .shipment-status-table th {
  padding: 10px;
}
.my-account-detail-container .shipment-packet-table td,
.my-account-detail-container .shipment-product-table td,
.my-account-detail-container .shipment-status-table td {
  border: 1px solid #576156;
  padding: 5px 10px;
}

/* Grid Elements **/
.arsluna-row,
.row-grid-element {
  margin: -15px;
}

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

.grid-element-content {
  background: transparent;
  border: 0px none;
  overflow: visible;
  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;
}

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

#footer-wrapper .grid-element-content {
  background: transparent;
}
#footer-wrapper .arsluna-row,
#footer-wrapper .row-grid-element {
  align-content: stretch;
  align-items: stretch;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-flow: row;
  flex-flow: row wrap;
  flex-wrap: wrap;
  gap: 0;
  justify-content: space-between;
  margin: 0 -10px;
}
#footer-wrapper .arsluna-row .grid-element,
#footer-wrapper .row-grid-element .grid-element {
  padding: 0 10px;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
#footer-wrapper .arsluna-row .grid-element .grid-element-content,
#footer-wrapper .row-grid-element .grid-element .grid-element-content {
  margin: 0;
}

.row.flexbox-centered {
  align-content: stretch;
  align-items: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-flow: row;
  flex-flow: row wrap;
  flex-wrap: wrap;
  justify-content: center;
}
.row.flexbox-centered.grid-element {
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.row.flexbox-stretch {
  align-content: stretch;
  align-items: stretch;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-flow: row;
  flex-flow: row wrap;
  flex-wrap: wrap;
  justify-content: stretch;
}
.row.flexbox-stretch.grid-element {
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

/* Big Menu */
/*
* ArsLuna Web Pages
*
* Main CSS
* All Screens
* Template Partial
* Big Menu Item 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
*
*/
.grid-menu-item {
  /* END .grid-menu-item-022-top */
  /* END .grid-menu.item-022-left */
}
.grid-menu-item.grid-menu-item-022-top {
  padding: 20px;
  /* END .menu-item-row */
  /*
  &:hover {
      .menu-item-content {
          &:before {
              left: 125%;
          }

      }

      .menu-item-row-element {
          &.img {
              img {
                  transform: scale(1.05);
              }
          }
      }
  }
  */
}
.grid-menu-item.grid-menu-item-022-top .menu-item-content {
  background: #FFF;
  overflow: visible !important;
  position: relative;
}
.grid-menu-item.grid-menu-item-022-top .menu-item-content::before {
  box-shadow: 5px 5px 10px 0 rgba(170, 170, 170, 0.5), -5px 5px 10px 0 rgba(170, 170, 170, 0.5);
  bottom: 0;
  content: "";
  left: 0;
  opacity: 1;
  position: absolute;
  top: 0;
  transition: opacity 0.25s ease-in-out;
  width: 100%;
  z-index: 1;
}
.grid-menu-item.grid-menu-item-022-top .menu-item-content::after {
  box-shadow: 5px 5px 10px 0 rgba(170, 170, 170, 0.7), -5px 5px 10px 0 rgba(170, 170, 170, 0.7);
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.25s ease-in-out;
  width: 100%;
  z-index: 1;
}
.grid-menu-item.grid-menu-item-022-top .menu-item-row {
  display: block;
  overflow: hidden;
  padding: 0;
  position: relative;
  z-index: 2;
}
.grid-menu-item.grid-menu-item-022-top .menu-item-row-element {
  display: block;
}
.grid-menu-item.grid-menu-item-022-top .menu-item-row-element.img {
  padding: 0;
  position: relative;
  text-align: center;
  z-index: 1;
}
.grid-menu-item.grid-menu-item-022-top .menu-item-row-element.img .img-container {
  display: block;
  position: relative;
}
.grid-menu-item.grid-menu-item-022-top .menu-item-row-element.img .img-container::after {
  background: rgba(0, 0, 0, 0.5);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.grid-menu-item.grid-menu-item-022-top .menu-item-row-element.img img {
  height: auto;
  max-width: 100%;
  position: relative;
  transition: all 0.5s ease-in-out;
}
.grid-menu-item.grid-menu-item-022-top .menu-item-row-element.img img.active {
  display: none;
}
.grid-menu-item.grid-menu-item-022-top .menu-item-row-element.content {
  border: 0 none;
  border-bottom: 0 none;
  padding: 0;
  position: relative;
}
.grid-menu-item.grid-menu-item-022-top .menu-item-row-element.content .content-container {
  justify-content: flex-end;
  display: flex;
  flex-flow: column nowrap;
  flex-wrap: nowrap;
  padding: 40px;
  position: relative;
}
.grid-menu-item.grid-menu-item-022-top .menu-item-row-element.content .menu-item-title {
  color: #303b3f;
  font-family: "Rubik", sans-serif;
  font-weight: bold;
  letter-spacing: normal;
  margin-bottom: 20px;
  text-align: center;
}
.grid-menu-item.grid-menu-item-022-top .menu-item-row-element.content .menu-item-title .title {
  font-size: 30px;
  line-height: 1.6em;
}
.grid-menu-item.grid-menu-item-022-top .menu-item-row-element.content .menu-item-title .sub-title {
  font-size: 24px;
  line-height: 1.6em;
}
.grid-menu-item.grid-menu-item-022-top .menu-item-row-element.content .menu-item-title .sub-title-2 {
  font-size: 24px;
  line-height: 1.6em;
}
.grid-menu-item.grid-menu-item-022-top .menu-item-row-element.content .menu-item-content {
  margin: 40px 0;
}
.grid-menu-item.grid-menu-item-022-top .menu-item-row-element.content .menu-item-content h1,
.grid-menu-item.grid-menu-item-022-top .menu-item-row-element.content .menu-item-content h2,
.grid-menu-item.grid-menu-item-022-top .menu-item-row-element.content .menu-item-content h3,
.grid-menu-item.grid-menu-item-022-top .menu-item-row-element.content .menu-item-content h4,
.grid-menu-item.grid-menu-item-022-top .menu-item-row-element.content .menu-item-content h5,
.grid-menu-item.grid-menu-item-022-top .menu-item-row-element.content .menu-item-content h6,
.grid-menu-item.grid-menu-item-022-top .menu-item-row-element.content .menu-item-content ol,
.grid-menu-item.grid-menu-item-022-top .menu-item-row-element.content .menu-item-content p,
.grid-menu-item.grid-menu-item-022-top .menu-item-row-element.content .menu-item-content ul {
  color: #000 !important;
}
.grid-menu-item.grid-menu-item-022-top .menu-item-row-element.content .button-wrapper {
  margin-top: auto;
  text-align: center;
}
.grid-menu-item.grid-menu-item-022-top:hover .menu-item-content:before {
  opacity: 0;
}
.grid-menu-item.grid-menu-item-022-top:hover .menu-item-content:after {
  opacity: 1;
}
.grid-menu-item.grid-menu-item-022-left {
  /* END .menu-item-content */
  /* END .menu-item-row-element */
}
.grid-menu-item.grid-menu-item-022-left .menu-item-content {
  display: block;
  width: 100%;
}
.grid-menu-item.grid-menu-item-022-left .menu-item-row.layout-fixed-image .img {
  width: 100px;
  flex: 0 0 100px;
}
.grid-menu-item.grid-menu-item-022-left .menu-item-row.layout-fixed-image.content {
  flex: 1;
  min-width: 0;
}
.grid-menu-item.grid-menu-item-022-left .menu-item-row.layout-ratio .img {
  flex: 0 0 25%;
}
.grid-menu-item.grid-menu-item-022-left .menu-item-row.layout-ratio .content {
  flex: 0 0 75%;
}
.grid-menu-item.grid-menu-item-022-left .menu-item-row {
  align-items: stretch;
  display: flex;
  flex-flow: row;
  flex-wrap: nowrap;
  gap: 20px;
}
.grid-menu-item.grid-menu-item-022-left .menu-item-row-element {
  align-content: center;
  padding: 20px 0;
}
.grid-menu-item.grid-menu-item-022-left .menu-item-row-element.img {
  flex: 0 0 100px;
  position: relative;
  width: 100px;
}
.grid-menu-item.grid-menu-item-022-left .menu-item-row-element.img img {
  position: relative;
  opacity: 1;
  -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;
}
.grid-menu-item.grid-menu-item-022-left .menu-item-row-element.img img.active {
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.grid-menu-item.grid-menu-item-022-left .menu-item-row-element.img .has-active-image img {
  opacity: 0;
}
.grid-menu-item.grid-menu-item-022-left .menu-item-row-element.img .has-active-image img.active {
  opacity: 1;
}
.grid-menu-item.grid-menu-item-022-left .menu-item-row-element.content {
  flex: 1;
  position: relative;
  min-width: 0;
}
.grid-menu-item.grid-menu-item-022-left .menu-item-row-element.content .content-container {
  position: relative;
}
.grid-menu-item.grid-menu-item-022-left .menu-item-row-element.content .menu-item-title .title {
  font-size: 18px;
  text-align: left;
}
.grid-menu-item.grid-menu-item-022-left .menu-item-row-element.content .menu-item-title .sub-title {
  font-size: 16px;
  text-align: left;
}
.grid-menu-item.grid-menu-item-022-left .menu-item-row-element.content .menu-item-title .sub-title-2 {
  font-size: 14px;
  text-align: left;
}
.grid-menu-item.grid-menu-item-022-left .menu-item-row-element.content .menu-item-content {
  margin: 20px 0 40px;
  text-align: center;
}
.grid-menu-item.grid-menu-item-022-left .menu-item-row-element.content .button-wrapper {
  text-align: center;
}
/* END grid-menu-item */
/* 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: #FFF;
  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 #1a2022;
  margin-top: 20px;
}
.widget-login-form .buttons-wrapper {
  text-align: center;
}
.widget-login-form .button {
  margin: 10px !important;
}
.widget-login-form.widget-login-form-001 .login {
  background: #1a2022;
}

.lang-selector {
  font-size: 0;
  list-style-type: none;
  margin-right: 0;
  padding: 0;
}
.lang-selector li {
  display: inline-block;
  font-size: 0;
  line-height: 0;
  padding: 0;
}
.lang-selector li:first-child {
  padding-left: 0;
}
.lang-selector li:last-child {
  padding-right: 0;
}
.lang-selector li a {
  color: #3f463e;
  display: block;
  font-size: 16px;
  height: 40px;
  line-height: 24px;
  padding: 8px 0;
  position: relative;
  text-align: center;
  width: 40px;
}
.lang-selector li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 20px;
  height: 2px;
  background: #3f463e;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}
.lang-selector li a:hover::after {
  transform: translateX(-50%) scaleX(1);
}
.lang-selector img {
  font-size: 14px;
  height: 24px;
  line-height: 24px;
  width: 24px;
  text-align: center;
}

.news-subscription.news-subscription-002-001 .form-group-inline {
  align-content: stretch;
  align-items: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-flow: row;
  flex-flow: row nowrap;
  flex-wrap: nowrap;
  gap: 0;
  justify-content: center;
  margin: 0;
  max-width: 285px;
  text-align: left;
  width: 100%;
}
.news-subscription.news-subscription-002-001 .form-group-inline .form-group-inline-input {
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.news-subscription.news-subscription-002-001 .form-group-inline .form-group-inline-input input[type=email] {
  background: #ece9ee;
  border: 1px solid #FFF;
  border-right: 0px none;
  display: block;
  float: none;
  font-size: 14px;
  height: 40px;
  line-height: 38px;
  padding: 0 10px;
  width: 100%;
}
.news-subscription.news-subscription-002-001 .form-group-inline .form-group-inline-button {
  display: inline-block;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
}
.news-subscription.news-subscription-002-001 .form-group-inline .form-group-inline-button .button.button-news-subscribe {
  background: #FFF;
  border: 1px solid #FFF;
  border-left: 0 none;
  color: #3f463e !important;
  display: inline-block;
  font-size: 18px;
  height: 40px;
  line-height: 38px;
  margin: 0;
  padding: 0;
  text-align: center;
  text-decoration: none;
  vertical-align: top;
  width: 60px;
}
.news-subscription.news-subscription-002-001 .form-group-inline .form-group-inline-button .button.button-news-subscribe > span {
  display: none;
}
.news-subscription.news-subscription-002-001 .form-group-inline .form-group-inline-button .button.button-news-subscribe::after {
  color: #FFF;
  content: "\f178";
  font-family: FontAwesome;
  -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.news-subscription-002-001 .form-group-inline .form-group-inline-button .button.button-news-subscribe:hover {
  background: #FFF;
  border: 1px solid #FFF;
  border-left: 0px none;
}
.news-subscription.news-subscription-002-001 .form-group-inline .form-group-inline-button .button.button-news-subscribe:hover::after {
  color: #FF000F;
}
.news-subscription.news-subscription-002-001 .unsubscribe-link {
  color: #FFF;
  text-decoration: underline;
  -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;
}
.news-subscription.news-subscription-002-001 .unsubscribe-link:hover {
  color: #FF000F;
}
.news-subscription.news-subscription-002-001 .unsubscribe-link:visited {
  color: #FFF;
}

.unsubscribe-form-wrapper .info,
.unsubscribe-form-wrapper .label,
.unsubscribe-form-wrapper label {
  padding-left: 0;
  text-align: left !important;
}

/* Blog ********/
/*
* ArsLuna Web Pages
*
* Main CSS
* All Screens
* Template Partial
* Blog 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
*
*/
.row.article-list-row {
  margin: 0 -10px;
}
.row.article-list-row .article-list-element {
  padding: 0 10px;
}
.row.article-list-row .article-list-title {
  font-family: "Rubik", sans-serif;
  margin-bottom: 20px;
}

.news-list {
  -style-type: none;
}
.news-list.news-list-026-002 {
  margin: 0;
}
.news-list.news-list-026-002 .grid-news-item-026-002 {
  border-top: 1px solid #ece9ee;
  padding: 10px 0 0 0;
}
.news-list.news-list-026-002 .grid-news-item-026-002:first-child {
  border-top: 0 none;
  padding-top: 0;
}
.news-list.news-list-026-002 article {
  align-content: center;
  align-items: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-flow: row;
  flex-flow: row nowrap;
  flex-wrap: nowrap;
  gap: 10px;
  justify-content: space-between;
  vertical-align: top;
  /* END .article-data */
}
.news-list.news-list-026-002 article .article-image-wrapper {
  display: inline-block;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
  width: 30%;
}
.news-list.news-list-026-002 article .article-content-wrapper {
  display: inline-block;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.news-list.news-list-026-002 article h6 {
  color: #FFF;
  font-family: "Rubik", sans-serif;
  letter-spacing: normal;
  padding: 0;
  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;
}
.news-list.news-list-026-002 article h6 .title {
  display: block;
  font-size: 12px;
  font-weight: normal;
  line-height: normal;
}
.news-list.news-list-026-002 article h6 .subtitle {
  display: block;
  font-size: 12px;
  line-height: normal;
  font-weight: normal;
}
.news-list.news-list-026-002 article .article-data {
  align-content: stretch;
  align-items: flex-start;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-flow: row;
  flex-flow: row nowrap;
  flex-wrap: nowrap;
  font-family: "Rubik", sans-serif;
  gap: 0;
  justify-content: left;
  margin-top: 0;
  vertical-align: top;
}
.news-list.news-list-026-002 article .article-data .article-author-wrapper {
  border-right: 1px solid #ece9ee;
  display: inline-block;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
  font-size: 12px;
  padding: 0 10px 0 0;
  text-align: left;
  vertical-align: top;
  width: auto;
}
.news-list.news-list-026-002 article .article-data .article-date-wrapper {
  display: inline-block;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
  padding: 0 0 0 10px;
  position: relative;
  vertical-align: top;
  width: auto;
}
.news-list.news-list-026-002 article .article-data .article-date-wrapper .datetime {
  display: inline-block;
  font-size: 0;
  vertical-align: top;
}
.news-list.news-list-026-002 article .article-data .article-date-wrapper .datetime li {
  color: #ece9ee;
  display: inline-block;
  font-size: 12px;
  position: relative;
  vertical-align: top;
}
.news-list.news-list-026-002 article .article-data .article-date-wrapper .datetime li.month {
  padding: 0 5px;
}
.news-list.news-list-026-002 article .article-content {
  display: block;
}
.news-list.news-list-026-002 article .article-content p {
  font-size: 12px;
}
.news-list.news-list-026-002 article .article-button-wrapper {
  text-align: right;
}
.news-list.news-list-026-002 article .article-button-wrapper .read-more {
  display: inline-block;
  font-size: 12px;
  -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-list.news-list-026-002 article .article-button-wrapper .read-more::after {
  content: "\f178";
  font-family: FontAwesome;
  padding-left: 10px;
}
.news-list.news-list-026-002 article .article-button-wrapper .read-more:focus, .news-list.news-list-026-002 article .article-button-wrapper .read-more:hover {
  color: #FF000F;
}
.news-list.news-list-026-002 article:focus h6, .news-list.news-list-026-002 article:hover h6 {
  color: #FFF;
}
.news-list.news-list-026-003 {
  /* END article */
}
.news-list.news-list-026-003 article {
  position: relative;
  /* END .article-content-wrapper */
}
.news-list.news-list-026-003 article .article-image-wrapper {
  overflow: hidden;
  position: relative;
}
.news-list.news-list-026-003 article .article-image-wrapper::before {
  position: absolute;
  top: 0;
  left: -100%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
  transition-duration: 0.5s;
}
.news-list.news-list-026-003 article .article-image-wrapper img {
  height: auto;
  max-width: 100%;
  position: relative;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.news-list.news-list-026-003 article .article-image-wrapper:hover:before {
  left: 125%;
}
.news-list.news-list-026-003 article .article-image-wrapper:hover img {
  transform: scale(1.05);
}
.news-list.news-list-026-003 article .article-content-wrapper {
  padding-bottom: 20px;
  /* END .article-data */
}
.news-list.news-list-026-003 article .article-content-wrapper .article-container {
  position: relative;
}
.news-list.news-list-026-003 article .article-content-wrapper .article-categories-container {
  position: relative;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.news-list.news-list-026-003 article .article-content-wrapper .article-categories-container .article-categories-wrapper > ul {
  align-content: stretch;
  align-items: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-flow: row;
  flex-flow: row wrap;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0;
  text-align: center;
  width: 100%;
}
.news-list.news-list-026-003 article .article-content-wrapper .article-categories-container .article-categories-wrapper > ul li {
  display: inline-block;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
}
.news-list.news-list-026-003 article .article-content-wrapper .article-categories-container .article-categories-wrapper > ul li.category-other {
  display: none;
}
.news-list.news-list-026-003 article .article-content-wrapper .article-categories-container .article-categories-wrapper > ul li a {
  background-color: #707c6e;
  display: inline-blok;
  font-family: "Rubik", sans-serif;
  padding: 5px 10px;
}
.news-list.news-list-026-003 article .article-content-wrapper .article-title {
  margin-top: 20px;
}
.news-list.news-list-026-003 article .article-content-wrapper h6 {
  margin: 0;
  padding: 0;
  text-align: center;
}
.news-list.news-list-026-003 article .article-content-wrapper h6 .title {
  color: #FFF;
  display: block;
  font-family: "Rubik", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5em;
  text-align: center;
  -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-list.news-list-026-003 article .article-content-wrapper h6 .subtitle {
  color: #ece9ee;
  display: block;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5em;
  text-align: center;
}
.news-list.news-list-026-003 article .article-content-wrapper .article-data {
  align-content: stretch;
  align-items: right;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-flow: row;
  flex-flow: row nowrap;
  flex-wrap: nowrap;
  font-family: "Rubik", sans-serif;
  gap: 0;
  justify-content: right;
  margin-top: 20px;
  vertical-align: top;
}
.news-list.news-list-026-003 article .article-content-wrapper .article-data .article-author-wrapper {
  border-right: 1px solid #ece9ee;
  display: inline-block;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  font-size: 14px;
  padding: 0 10px;
  text-align: right;
  vertical-align: top;
  width: 50%;
}
.news-list.news-list-026-003 article .article-content-wrapper .article-data .article-date-wrapper {
  display: inline-block;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  font-size: 0;
  padding: 0 10px;
  position: relative;
  vertical-align: top;
  width: 50%;
}
.news-list.news-list-026-003 article .article-content-wrapper .article-data .article-date-wrapper .datetime {
  display: inline-block;
  font-size: 0;
  vertical-align: top;
}
.news-list.news-list-026-003 article .article-content-wrapper .article-data .article-date-wrapper .datetime li {
  color: #ece9ee;
  display: inline-block;
  font-size: 14px;
  position: relative;
  vertical-align: top;
}
.news-list.news-list-026-003 article .article-content-wrapper .article-data .article-date-wrapper .datetime li.month {
  padding: 0 5px;
}
.news-list.news-list-026-003 article .article-content-wrapper .article-content {
  overflow: hidden;
}
.news-list.news-list-026-003 article .article-button-wrapper {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: auto;
  text-align: left;
}
.news-list.news-list-026-003 article .article-button-wrapper a.read-more {
  background: transparent;
  border: 0px none;
  color: #FFF !important;
  display: inline-block;
  float: none;
  font-family: "Rubik", sans-serif;
  height: 40px;
  line-height: 38px;
  margin: 0;
  padding: 0;
  text-align: center;
  -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: auto;
}
.news-list.news-list-026-003 article .article-button-wrapper a.read-more::after {
  content: "\f178";
  font-family: FontAwesome;
  padding-left: 10px;
}
.news-list.news-list-026-003 article .article-button-wrapper a.read-more:hover {
  color: #FFF !important;
}
.news-list.news-list-026-003 article:hover .article-content-wrapper h6 .title {
  color: #FFF;
}
.news-list.news-list-026-003 article:hover .article-content-wrapper h6 .subtitle {
  color: #ece9ee;
}

.article-list {
  padding: 10px 0;
}
.article-list li {
  line-height: normal;
}
.article-list li .date-time {
  padding-right: 20px;
}
.article-list li a {
  display: block;
  padding: 10px 0;
}
.article-list li.current a {
  font-weight: 600;
}

/* 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
*
*/
.purchase-data-wrapper {
  padding: 10px;
}

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

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

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

.cart-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 td:first-child {
  white-space: nowrap;
}
.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,
.cart-purchase-shipment-method .shipment-method-wrapper .shipment-method-row label {
  display: table-cell;
  white-space: nowrap;
}

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

.price-promo-label {
  bottom: auto;
  font-size: 0;
  left: 0;
  line-height: normal;
  position: absolute;
  right: auto;
  top: 0;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
}
.price-promo-label.left-top {
  bottom: auto;
  left: 0;
  right: auto;
  top: 0;
  transform: translate(0%, 0%);
}
.price-promo-label.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);
}
.price-promo-label.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);
}
.price-promo-label.left-center {
  bottom: auto;
  left: 0;
  right: auto;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.price-promo-label.center-center {
  bottom: auto;
  left: 50%;
  right: auto;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.price-promo-label.right-center {
  bottom: auto;
  left: auto;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.price-promo-label.left-bottom {
  bottom: 0;
  left: 0;
  right: auto;
  top: auto;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}
.price-promo-label.center-bottom {
  bottom: 0;
  left: 50%;
  right: auto;
  top: auto;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.price-promo-label.right-bottom {
  bottom: 0;
  left: auto;
  right: 0;
  top: auto;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

.product-list-params {
  padding: 0;
  position: relative;
}
.product-list-params .products_sort_wrapper {
  display: block;
  overflow: hidden;
  position: absolute;
  right: 0;
  text-align: right;
  top: -40px;
}
.product-list-params .products_sort_wrapper .products_sort_label {
  line-height: 40px;
  padding-right: 10px;
}
.product-list-params .products_sort_wrapper .products_sort {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  background: transparent url("./images/select-arrow.png") 95% center no-repeat;
  border: 1px solid #707c6e;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  color: #1a2022;
  display: inline-block;
  float: right;
  font-size: 14px;
  height: 40px;
  line-height: 40px;
  margin: 0 !important;
  position: relative;
  padding: 0 60px 0 20px;
  text-align: left;
  vertical-align: top;
}
.product-list-params .products_sort_wrapper .products_sort option {
  height: 40px;
  line-height: 40px;
  text-align: left;
}
.product-list-params .products_sort_wrapper .products_sort::-ms-expand {
  display: none;
}

.trademark-grid {
  margin: 0 -30px;
}

.trademark-grid-trademark {
  padding: 30px;
}
.trademark-grid-trademark .trademark-content {
  vertical-align: middle;
  text-align: center;
}
.trademark-grid-trademark .trademark-content a {
  display: block;
  text-align: center;
}

/* Cart */
/*
* ArsLuna Web Pages
*
* Main CSS
* All Screens
* Template Partial
* Cart Partial
*
* Author : Sašo Štibelj
* Company: Ars Luna, Helena Štibelj s.p.
* Address: Čepulje 16
*          4000 KRANJ
*          SLOVENIA
* Website: http://www.arsluna.si, http://www.arsluna.com
* Mail   : info@arsluna.si, info@arsluna.com
* License: Commercial
*
*/
#cart-001,
#cart-005 {
  background: transparent;
  border: 0 none;
  margin-bottom: 20px;
  padding: 10px;
  max-width: 1000px;
}
#cart-001::after,
#cart-005::after {
  clear: both;
}
#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: transparent;
  color: #FFF;
  font-size: 18px;
  font-weight: bold;
}
#cart-001 .cart-status-table td,
#cart-005 .cart-status-table td {
  font-size: 14px;
  padding: 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;
  font-size: 14px;
  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 {
  border: 0 none transparent;
  background-color: transparent;
  color: #FFF;
  font-size: 14px;
  font-weight: bold;
}
#cart-001 .products-table,
#cart-005 .products-table {
  background: transparent;
  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: transparent;
  color: #FFF;
  font-size: 14px;
  font-weight: bold;
}
#cart-001 .products-table > thead th,
#cart-005 .products-table > thead th {
  padding: 10px;
  vertical-align: top;
}
#cart-001 .products-table > tbody,
#cart-005 .products-table > tbody {
  border-bottom: 1px solid #ece9ee;
  color: #FFF;
  font-size: 14px;
}
#cart-001 .products-table > tbody td,
#cart-005 .products-table > tbody td {
  border: 0 none;
  padding: 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 td ul,
#cart-005 .products-table > tbody td ul {
  font-size: 14px;
  margin-bottom: 0;
}
#cart-001 .products-table > tbody > tr:nth-child(even),
#cart-005 .products-table > tbody > tr:nth-child(even) {
  background: transparent;
}
#cart-001 .products-table > tbody > tr:nth-child(odd),
#cart-005 .products-table > tbody > tr:nth-child(odd) {
  background: transparent;
}
#cart-001 .products-table #total_for_payment,
#cart-005 .products-table #total_for_payment {
  border-top: 1px solid #ece9ee;
}
#cart-001 .products-table .cart-price.valid,
#cart-005 .products-table .cart-price.valid {
  color: #FFF;
}
#cart-001 .products-table .cart-price.not-valid,
#cart-005 .products-table .cart-price.not-valid {
  color: #FFF;
  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: #FFF;
  display: none;
}
#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: 0 none;
  color: #FFF;
  font-size: 14px;
  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: #FFF;
  font-size: 14px;
  padding: 10px;
}
#cart-001 .cart-summary .vat_collapse,
#cart-005 .cart-summary .vat_collapse {
  background: url("./images/bkg_collapse_w.png") 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: transparent;
  font-size: 14px;
}
#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 #ece9ee;
  width: 100%;
}
#cart-001 .buttons.right-content,
#cart-005 .buttons.right-content {
  padding: 10px 0;
  text-align: right;
}
#cart-001 .buttons.right-content .button,
#cart-005 .buttons.right-content .button {
  display: block;
  margin-right: 0;
  width: 210px;
}
#cart-001 .buttons.right-content .button:first-child,
#cart-005 .buttons.right-content .button:first-child {
  margin-bottom: 10px;
}
#cart-001 #coupon-input,
#cart-005 #coupon-input {
  color: #FFF;
}
#cart-001 .ui-spinner,
#cart-005 .ui-spinner {
  background-color: #ece9ee;
  border: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  vertical-align: top;
  margin: 0;
}
#cart-001 .ui-spinner .ui-spinner-down,
#cart-005 .ui-spinner .ui-spinner-down {
  background: #ece9ee;
  border-bottom: 1px solid #FFF;
  border-left: 1px solid #FFF;
  border-right: 0;
  border-top: 1px solid #FFF;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  cursor: pointer;
  height: 40px;
  left: 0;
  line-height: 38px;
  position: absolute;
  text-indent: 0;
  top: 0;
  -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;
  width: 40px;
}
#cart-001 .ui-spinner .ui-spinner-down::after,
#cart-005 .ui-spinner .ui-spinner-down::after {
  background: #ece9ee;
  bottom: 0;
  color: #FFF;
  content: "-";
  font-size: 20px;
  left: 0;
  line-height: 38px;
  position: absolute;
  right: 0;
  text-align: center;
  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;
  z-index: 2;
}
#cart-001 .ui-spinner .ui-spinner-down.ui-state-hover::after, #cart-001 .ui-spinner .ui-spinner-down:active::after, #cart-001 .ui-spinner .ui-spinner-down:focus::after, #cart-001 .ui-spinner .ui-spinner-down:hover::after,
#cart-005 .ui-spinner .ui-spinner-down.ui-state-hover::after,
#cart-005 .ui-spinner .ui-spinner-down:active::after,
#cart-005 .ui-spinner .ui-spinner-down:focus::after,
#cart-005 .ui-spinner .ui-spinner-down:hover::after {
  background: #FF000F;
  border-color: #FF000F;
  color: #FFF;
}
#cart-001 .ui-spinner .ui-spinner-down.ui-state-active,
#cart-005 .ui-spinner .ui-spinner-down.ui-state-active {
  background: #FF000F;
  border-color: #FF000F;
}
#cart-001 .ui-spinner .ui-spinner-down.ui-state-active::after,
#cart-005 .ui-spinner .ui-spinner-down.ui-state-active::after {
  background: #FF000F;
  color: #FFF;
}
#cart-001 .ui-spinner .product-quantity,
#cart-005 .ui-spinner .product-quantity {
  background: #ece9ee;
  border: 1px solid #FFF;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  font-size: 14px;
  height: 40px;
  line-height: 38px;
  margin: 0 40px;
  padding: 0 5px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  width: 40px;
}
#cart-001 .ui-spinner .ui-spinner-up,
#cart-005 .ui-spinner .ui-spinner-up {
  background: #ece9ee;
  border-bottom: 1px solid #FFF;
  border-left: 0;
  border-right: 1px solid #FFF;
  border-top: 1px solid #FFF;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  cursor: pointer;
  height: 40px;
  line-height: 38px;
  position: absolute;
  right: 0;
  text-indent: 0;
  top: 0;
  -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;
  width: 40px;
}
#cart-001 .ui-spinner .ui-spinner-up::after,
#cart-005 .ui-spinner .ui-spinner-up::after {
  background: #ece9ee;
  bottom: 0;
  color: #FFF;
  content: "+";
  font-size: 20px;
  left: 0;
  line-height: 38px;
  position: absolute;
  right: 0;
  text-align: center;
  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;
  z-index: 2;
}
#cart-001 .ui-spinner .ui-spinner-up.ui-state-hover::after, #cart-001 .ui-spinner .ui-spinner-up:active::after, #cart-001 .ui-spinner .ui-spinner-up:focus::after, #cart-001 .ui-spinner .ui-spinner-up:hover::after,
#cart-005 .ui-spinner .ui-spinner-up.ui-state-hover::after,
#cart-005 .ui-spinner .ui-spinner-up:active::after,
#cart-005 .ui-spinner .ui-spinner-up:focus::after,
#cart-005 .ui-spinner .ui-spinner-up:hover::after {
  background: #FF000F;
  border-color: #FF000F;
  color: #FFF;
}
#cart-001 .ui-spinner .ui-spinner-up.ui-state-active,
#cart-005 .ui-spinner .ui-spinner-up.ui-state-active {
  background: #FF000F;
  border-color: #FF000F;
}
#cart-001 .ui-spinner .ui-spinner-up.ui-state-active::after,
#cart-005 .ui-spinner .ui-spinner-up.ui-state-active::after {
  background: #FF000F;
  color: #FFF;
}

body#cart-print {
  color: #000;
}
body#cart-print #cart-000 .products-table > thead, body#cart-print #cart-000 .products-table > tbody,
body#cart-print #cart-005 .products-table > thead,
body#cart-print #cart-005 .products-table > tbody {
  color: #000;
}
body#cart-print #cart-000 .cart-big-vat td,
body#cart-print #cart-005 .cart-big-vat td {
  color: #000;
}

/* Small Cart */
/*
* ArsLuna Web Pages
*
* Main CSS
* All Screens
* Template Partial
* Small Cart Partial
*
* Author : Sašo Štibelj
* Company: Ars Luna, Helena Štibelj s.p.
* Address: Čepulje 16
*          4000 KRANJ
*          SLOVENIA
* Website: http://www.arsluna.si, http://www.arsluna.com
* Mail   : info@arsluna.si, info@arsluna.com
* License: Commercial
*
*/
.nav-cart-wrapper {
  overflow: visible;
  position: relative;
  text-align: right;
}
.nav-cart-wrapper .nav-cart {
  min-width: 100%;
  overflow: visible;
  position: relative;
  z-index: 5000;
}
.nav-cart-wrapper .nav-cart .nav-cart-header {
  background: transparent;
  color: #FFF;
  cursor: pointer;
  display: block;
  font-size: 12px;
  font-weight: 400;
  height: 40px;
  line-height: 0;
  margin-left: 0;
  padding: 0;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: color 0.25s ease-in-out;
  vertical-align: top;
  min-width: 40px;
}
.nav-cart-wrapper .nav-cart .nav-cart-header .nav-cart-header-image {
  display: inline-block;
  line-height: 0;
  position: relative;
  vertical-align: top;
}
.nav-cart-wrapper .nav-cart .nav-cart-header .nav-cart-header-image::after, .nav-cart-wrapper .nav-cart .nav-cart-header .nav-cart-header-image::before {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 30px 30px;
  content: "";
  display: inline-block;
  height: 40px;
  overflow: hidden;
  transition: opacity 0.25s ease-in-out;
  vertical-align: middle;
  width: 40px;
}
.nav-cart-wrapper .nav-cart .nav-cart-header .nav-cart-header-image::before {
  background-image: url("images/cart-normal-full.png");
  opacity: 1;
  position: relative;
}
.nav-cart-wrapper .nav-cart .nav-cart-header .nav-cart-header-image::after {
  background-image: url("images/cart-active-full.png");
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
}
.nav-cart-wrapper .nav-cart .nav-cart-header .nav-cart-header-content {
  display: inline-block;
  left: 0;
  padding: 5px 0 11px;
  position: absolute;
  text-align: center;
  top: 0;
  vertical-align: top;
  width: 40px;
}
.nav-cart-wrapper .nav-cart .nav-cart-header .nav-cart-header-content .nav-cart-num-products {
  background: transparent;
  display: block;
  font-size: 12px;
  line-height: 24px;
  text-align: center;
  width: 40x;
}
.nav-cart-wrapper .nav-cart .nav-cart-header .nav-cart-header-content .nav-cart-num-products-txt {
  display: none;
}
.nav-cart-wrapper .nav-cart .nav-cart-header:active, .nav-cart-wrapper .nav-cart .nav-cart-header:focus, .nav-cart-wrapper .nav-cart .nav-cart-header:hover {
  border: 0 none;
  color: #FFF;
}
.nav-cart-wrapper .nav-cart .nav-cart-header:active .nav-cart-header-image::before, .nav-cart-wrapper .nav-cart .nav-cart-header:focus .nav-cart-header-image::before, .nav-cart-wrapper .nav-cart .nav-cart-header:hover .nav-cart-header-image::before {
  opacity: 0;
}
.nav-cart-wrapper .nav-cart .nav-cart-header:active .nav-cart-header-image::after, .nav-cart-wrapper .nav-cart .nav-cart-header:focus .nav-cart-header-image::after, .nav-cart-wrapper .nav-cart .nav-cart-header:hover .nav-cart-header-image::after {
  opacity: 1;
}
.nav-cart-wrapper .nav-cart .nav-cart-content {
  background-color: #FFF;
  border: 0px 1px 1px solid #899588;
  color: #1a2022;
  display: none;
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 10px;
  position: absolute;
  right: 0;
  width: 290px;
  top: 50px;
  z-index: 5001;
}
.nav-cart-wrapper .nav-cart .nav-cart-content li {
  align-content: stretch;
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
}
.nav-cart-wrapper .nav-cart .nav-cart-content .cart-small-mid {
  border-bottom: 1px solid #ece9ee;
  overflow: hidden;
  padding: 5px 0;
  position: relative;
}
.nav-cart-wrapper .nav-cart .nav-cart-content .button-delete-small-container {
  align-content: center;
  flex: none;
}
.nav-cart-wrapper .nav-cart .nav-cart-content .button-delete-small {
  background-image: none;
  display: block;
  height: 30px;
  padding: 0;
  position: relative;
  width: 30px;
}
.nav-cart-wrapper .nav-cart .nav-cart-content .button-delete-small::after, .nav-cart-wrapper .nav-cart .nav-cart-content .button-delete-small::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 1px;
  background-color: #576156;
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  left: 50%;
  top: 50%;
  transition: background-color 0.25s ease-in-out;
  z-index: 1;
}
.nav-cart-wrapper .nav-cart .nav-cart-content .button-delete-small:after {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.nav-cart-wrapper .nav-cart .nav-cart-content .button-delete-small:hover::after, .nav-cart-wrapper .nav-cart .nav-cart-content .button-delete-small:hover::before {
  background-color: #d56a4b;
}
.nav-cart-wrapper .nav-cart .nav-cart-content .cart-small-product {
  align-content: stretch;
  align-items: stretch;
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-flow: row nowrap;
  flex-wrap: nowrap;
  font-size: 12px;
  width: 100%;
}
.nav-cart-wrapper .nav-cart .nav-cart-content .cart-small-product .image,
.nav-cart-wrapper .nav-cart .nav-cart-content .cart-small-product .price,
.nav-cart-wrapper .nav-cart .nav-cart-content .cart-small-product .product,
.nav-cart-wrapper .nav-cart .nav-cart-content .cart-small-product .quantity {
  color: #1a2022;
  flex: none;
  line-height: 1.3em;
  padding-right: 10px;
  text-align: left;
}
.nav-cart-wrapper .nav-cart .nav-cart-content .cart-small-product .image img {
  max-height: 60px;
  max-width: 60px;
}
.nav-cart-wrapper .nav-cart .nav-cart-content .cart-small-product .product {
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  font-size: 12px;
  padding: 0 5px 5px;
}
.nav-cart-wrapper .nav-cart .nav-cart-content .cart-small-product .quantity::before {
  content: "x";
}
.nav-cart-wrapper .nav-cart .nav-cart-content .cart-small-product .quantity .product-x {
  display: none;
}
.nav-cart-wrapper .nav-cart .nav-cart-content .cart-small-product .price {
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  text-align: right;
}
.nav-cart-wrapper .nav-cart .nav-cart-content .cart-small-total {
  font-weight: 700;
  font-size: 1.2em;
  padding-top: 10px;
  justify-content: flex-end;
}
.nav-cart-wrapper .nav-cart .nav-cart-content .cart-small-text-after {
  font-size: 12px;
  text-align: center;
}
.nav-cart-wrapper .nav-cart .nav-cart-content .cart-small-button-wrapper {
  justify-content: center;
  padding-top: 30px;
}
.nav-cart-wrapper .nav-cart .nav-cart-content .cart-small-delete {
  float: left;
  overflow: hidden;
}
.nav-cart-wrapper .nav-cart .nav-cart-content #added-to-cart .num-products-added {
  background: #FFF;
  color: #1a2022;
  line-height: 2em;
  padding: 0 10px;
}
.nav-cart-wrapper .nav-cart .nav-cart-content #added-to-cart .num-products-added .products-added li .cart-small-product .product {
  padding: 10px 10px 10px 20px;
}
.nav-cart-wrapper .nav-cart .nav-cart-content #added-to-cart .num-products-added .products-added li .cart-small-product .quantity {
  padding: 10px 20px 10px 10px;
}

.nav-cart-message-box {
  background: #1a2022;
  -webkit-box-shadow: 0 7px 29px 0 rgba(255, 255, 255, 0.2);
  -moz-box-shadow: 0 7px 29px 0 rgba(255, 255, 255, 0.2);
  box-shadow: 0 7px 29px 0 rgba(255, 255, 255, 0.2);
  display: none;
  padding: 14px;
  position: absolute;
  right: 0;
  text-align: left;
  top: 50px;
  width: 300px;
  z-index: 5002;
}
.nav-cart-message-box .message-header {
  color: #FFF;
  font-size: 14px;
}
.nav-cart-message-box ul li {
  color: #FFF;
  display: block;
  font-size: 12px;
}
.nav-cart-message-box .buttons-wrapper {
  display: block;
}
.nav-cart-message-box .buttons-wrapper .half-left,
.nav-cart-message-box .buttons-wrapper .half-right {
  display: inline-block;
  vertical-align: top;
  width: 50%;
}
.nav-cart-message-box .buttons-wrapper .half-left .button,
.nav-cart-message-box .buttons-wrapper .half-right .button {
  max-width: 100%;
  margin-right: 0;
}
.nav-cart-message-box .buttons-wrapper .half-right {
  text-align: right;
}

/* Product in product list */
/*
* ArsLuna Web Pages
*
* Main CSS
* All Screens
* Template Partial
* Product List Item 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 */
.product-grid {
  margin: 0 -15px;
}
.product-grid .product-grid-product {
  padding: 15px;
}

.grid-product {
  /* END .grid-product-030-007 */
}
.grid-product.grid-product-030-07 {
  position: relative;
  /* END .header */
  /* END .content */
}
.grid-product.grid-product-030-07::before {
  box-shadow: 5px 5px 10px 0 rgba(170, 170, 170, 0.5), -5px 5px 10px 0 rgba(170, 170, 170, 0.5);
  bottom: 0;
  content: "";
  left: 0;
  opacity: 1;
  position: absolute;
  top: 0;
  transition: opacity 0.25s ease-in-out;
  width: 100%;
  z-index: 1;
}
.grid-product.grid-product-030-07::after {
  box-shadow: 5px 5px 10px 0 rgba(170, 170, 170, 0.7), -5px 5px 10px 0 rgba(170, 170, 170, 0.7);
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.25s ease-in-out;
  width: 100%;
  z-index: 1;
}
.grid-product.grid-product-030-07 a {
  color: #1a2022;
  display: block;
  position: relative;
  overflow: hidden;
}
.grid-product.grid-product-030-07 a.button {
  display: inline-block;
}
.grid-product.grid-product-030-07 header {
  position: relative;
  z-index: 2;
  /* END .grid-element-content-header-image */
}
.grid-product.grid-product-030-07 header .grid-element-content-header-image {
  background: transparent;
  display: block;
  overflow: hidden;
  padding: 0;
  position: relative;
  /* END .image-limited */
}
.grid-product.grid-product-030-07 header .grid-element-content-header-image .image-limit {
  display: none;
  margin-top: 100%;
}
.grid-product.grid-product-030-07 header .grid-element-content-header-image .image-limited {
  display: block;
  position: relative;
  text-align: center;
}
.grid-product.grid-product-030-07 header .grid-element-content-header-image .image-limited img {
  -ms-interpolation-mode: bicubic;
  float: none;
  height: auto;
  margin: 0 auto;
  max-height: 100%;
  max-width: 100%;
  opacity: 1;
  position: relative;
  width: auto;
  -webkit-transition: 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;
}
.grid-product.grid-product-030-07 header .grid-element-content-header-image .image-limited .active-image {
  bottom: auto;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.grid-product.grid-product-030-07 header .grid-element-content-header-image .image-limited .active-image img {
  float: none;
  margin: 0 auto;
  opacity: 0;
}
.grid-product.grid-product-030-07 header .akcija-num {
  background: #FF000F;
  color: #FFF;
  font-size: 16px;
  padding: 5px 10px;
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
}
.grid-product.grid-product-030-07 header .akcija-novo-ico-container {
  left: 0;
  position: absolute;
  top: 0;
}
.grid-product.grid-product-030-07 header .akcija-ico {
  background: #FF000F;
  color: #FFF;
  display: block;
  margin-bottom: 5px;
  padding: 5px 10px;
  position: relative;
  right: 0;
  text-align: center;
  top: 0;
  width: 60px;
}
.grid-product.grid-product-030-07 header .akcija-ico::after {
  content: "-%";
  font-size: 12px;
  position: relative;
}
.grid-product.grid-product-030-07 header .novo-ico {
  background: #FF000F;
  color: #FFF;
  display: block;
  padding: 5px 10px;
  position: relative;
  text-align: center;
  width: 60px;
}
.grid-product.grid-product-030-07 header .novo-ico::after {
  content: "NEW";
  font-size: 12px;
  position: relative;
}
.grid-product.grid-product-030-07 header h2 {
  color: #1a2022;
  margin: 0;
  text-align: center;
}
.grid-product.grid-product-030-07 header h2 .grid-element-title {
  display: block;
  padding: 20px 20px 0;
}
.grid-product.grid-product-030-07 header h2 .product-name {
  display: block;
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  line-height: 1.5em;
}
.grid-product.grid-product-030-07 header h2 .product-name-sub {
  display: block;
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  line-height: 1.5em;
}
.grid-product.grid-product-030-07 .content {
  padding: 20px 10px;
  position: relative;
  z-index: 2;
}
.grid-product.grid-product-030-07 .content .product-options {
  margin-bottom: 20px;
}
.grid-product.grid-product-030-07 .content .product-options .option {
  margin-bottom: 10px;
}
.grid-product.grid-product-030-07 .content .product-options .option-title {
  display: none;
}
.grid-product.grid-product-030-07 .content .product-options .select {
  display: table;
}
.grid-product.grid-product-030-07 .content .product-options .select label {
  display: table-cell;
  width: 50%;
}
.grid-product.grid-product-030-07 .content .product-options .select input[type=select] {
  display: table-cell;
  width: 50%;
}
.grid-product.grid-product-030-07 .content .product-options .color-select-radio,
.grid-product.grid-product-030-07 .content .product-options .label-select-radio,
.grid-product.grid-product-030-07 .content .product-options .icon-select-radio {
  align-content: stretch;
  align-items: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-flow: row;
  flex-flow: row wrap;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0;
  text-align: center;
  width: 100%;
}
.grid-product.grid-product-030-07 .content .product-options .color-select-radio label,
.grid-product.grid-product-030-07 .content .product-options .label-select-radio label,
.grid-product.grid-product-030-07 .content .product-options .icon-select-radio label {
  align-content: center;
  border: 1px solid #899588;
  box-sizing: border-box;
  color: #3f463e;
  cursor: pointer;
  display: inline-block;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
  font-size: 12px;
  height: 25px;
  line-height: 23px;
  min-width: 25px;
  overflow: visible;
  padding: 1px;
  position: relative;
  text-align: center;
  transition: border-color 0.25s ease-in-out;
  transition: color 0.25s ease-in-out;
  width: 25px;
}
.grid-product.grid-product-030-07 .content .product-options .color-select-radio label::after,
.grid-product.grid-product-030-07 .content .product-options .label-select-radio label::after,
.grid-product.grid-product-030-07 .content .product-options .icon-select-radio label::after {
  border: 1px solid #d56a4b;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.grid-product.grid-product-030-07 .content .product-options .color-select-radio label:hover,
.grid-product.grid-product-030-07 .content .product-options .label-select-radio label:hover,
.grid-product.grid-product-030-07 .content .product-options .icon-select-radio label:hover {
  border-color: #d56a4b;
  color: #576156;
}
.grid-product.grid-product-030-07 .content .product-options .color-select-radio input[type=radio],
.grid-product.grid-product-030-07 .content .product-options .label-select-radio input[type=radio],
.grid-product.grid-product-030-07 .content .product-options .icon-select-radio input[type=radio] {
  display: none;
}
.grid-product.grid-product-030-07 .content .product-options .color-select-radio input[type=radio]:checked + label,
.grid-product.grid-product-030-07 .content .product-options .label-select-radio input[type=radio]:checked + label,
.grid-product.grid-product-030-07 .content .product-options .icon-select-radio input[type=radio]:checked + label {
  border-color: #d56a4b;
  color: #899588;
}
.grid-product.grid-product-030-07 .content .product-options .color-select-radio input[type=radio]:checked + label::after,
.grid-product.grid-product-030-07 .content .product-options .label-select-radio input[type=radio]:checked + label::after,
.grid-product.grid-product-030-07 .content .product-options .icon-select-radio input[type=radio]:checked + label::after {
  opacity: 1;
}
.grid-product.grid-product-030-07 .content .product-options .color-select-radio label > span {
  display: block;
  font-size: 0;
  height: 100%;
  width: 100%;
}
.grid-product.grid-product-030-07 .content .product-options .color-select-radio label > span > span {
  display: inline-block;
  width: 100%;
}
.grid-product.grid-product-030-07 .content .product-options .color-select-radio label > span > span.option-select-color-2 {
  width: 50%;
}
.grid-product.grid-product-030-07 .content .product-options .color-select-radio label > span > span.option-select-color-3 {
  width: 33.33%;
}
.grid-product.grid-product-030-07 .content .product-options .color-select-radio label > span > span.option-select-color-4 {
  width: 25%;
}
.grid-product.grid-product-030-07 .content .product-options .color-select-radio label > span > span.option-select-color-5 {
  width: 20%;
}
.grid-product.grid-product-030-07 .content .product-options .label-select-radio label {
  width: auto;
}
.grid-product.grid-product-030-07 .content .product-options .icon-select-radio label .option-select-icon {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid #707c6e;
  display: block;
  height: 100%;
  width: 100%;
}
.grid-product.grid-product-030-07 .content .purchase-wrapper {
  align-items: center;
  display: flex;
  flex-flow: row;
  flex-wrap: nowrap;
  gap: 10px;
}
.grid-product.grid-product-030-07 .content .purchase-wrapper .prices-small-range,
.grid-product.grid-product-030-07 .content .purchase-wrapper .prices-small {
  align-content: center;
  flex: 1;
  position: relative;
  min-width: 0;
  text-align: left;
}
.grid-product.grid-product-030-07 .content .purchase-wrapper .prices-small-range {
  color: #899588;
  font-size: 16px;
  font-weight: 400;
}
.grid-product.grid-product-030-07 .content .purchase-wrapper .prices-small {
  display: block;
  font-size: 0;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}
.grid-product.grid-product-030-07 .content .purchase-wrapper .prices-small.prices-small-hidden {
  display: none;
}
.grid-product.grid-product-030-07 .content .purchase-wrapper .prices-small > ul {
  display: block;
  margin: 0;
  overflow: hidden;
  vertical-align: top;
}
.grid-product.grid-product-030-07 .content .purchase-wrapper .prices-small > ul li {
  display: block;
  text-align: left;
}
.grid-product.grid-product-030-07 .content .purchase-wrapper .prices-small > ul li.label {
  display: none;
}
.grid-product.grid-product-030-07 .content .purchase-wrapper .prices-small > ul.price {
  color: #FFF;
  display: none;
  font-size: 16px;
  font-weight: 400;
  text-align: left;
}
.grid-product.grid-product-030-07 .content .purchase-wrapper .prices-small > ul.price.not-valid {
  color: #D3D3D3;
  display: none;
  font-size: 16px;
  font-weight: 400;
}
.grid-product.grid-product-030-07 .content .purchase-wrapper .prices-small > ul.price.not-valid .amount,
.grid-product.grid-product-030-07 .content .purchase-wrapper .prices-small > ul.price.not-valid .label {
  color: #899588;
  text-decoration: line-through;
  text-decoration-color: #899588;
}
.grid-product.grid-product-030-07 .content .purchase-wrapper .prices-small > ul.discount {
  color: #FF000F;
  display: none;
  font-size: 16px;
  text-align: left;
}
.grid-product.grid-product-030-07 .content .purchase-wrapper .prices-small > ul.discount.hidden {
  display: none;
}
.grid-product.grid-product-030-07 .content .purchase-wrapper .prices-small > ul.price-discounted {
  color: #576156;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
}
.grid-product.grid-product-030-07 .content .purchase-wrapper .prices-small > ul.price-discounted.hidden {
  color: #576156;
  display: inline-block;
  font-size: 16px;
}
.grid-product.grid-product-030-07 .content .purchase-wrapper .nakup {
  align-content: right;
  flex: 0 0 81px;
  position: relative;
  width: 81px;
}
.grid-product.grid-product-030-07 .content .purchase-wrapper .nakup .nakup-content {
  align-items: right;
  display: flex;
  flex-flow: row;
  flex-wrap: nowrap;
  gap: 1px;
  width: 81px;
}
.grid-product.grid-product-030-07 .content .purchase-wrapper .nakup .nakup-content .button-add-to-cart-wrapper,
.grid-product.grid-product-030-07 .content .purchase-wrapper .nakup .nakup-content .button-add-to-favorites-wrapper {
  align-content: right;
  flex: 0 0 40px;
  position: relative;
  width: 40px;
}
.grid-product.grid-product-030-07 .content .purchase-wrapper .nakup .button.button-add-to-cart-small {
  background-color: #576156;
  border: 1px solid #576156;
  border-radius: 15px 0 0 15px;
  color: #FFF !important;
  height: 30px;
  line-height: 28px;
  margin: 0;
  padding: 0;
  text-align: center;
  transition: all 0.25s ease-in-out;
  width: 40px;
}
.grid-product.grid-product-030-07 .content .purchase-wrapper .nakup .button.button-add-to-cart-small .img {
  display: inline-block;
  height: 28px;
  position: relative;
  width: 28px;
}
.grid-product.grid-product-030-07 .content .purchase-wrapper .nakup .button.button-add-to-cart-small .img::after, .grid-product.grid-product-030-07 .content .purchase-wrapper .nakup .button.button-add-to-cart-small .img::before {
  background: transparent center center no-repeat;
  background-size: 20px 20px;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 1;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.25s ease-in-out;
}
.grid-product.grid-product-030-07 .content .purchase-wrapper .nakup .button.button-add-to-cart-small .img::after {
  background-image: url("./images/cart-white.png");
}
.grid-product.grid-product-030-07 .content .purchase-wrapper .nakup .button.button-add-to-cart-small .img::before {
  background-image: url("./images/cart-white-full.png");
  opacity: 0;
}
.grid-product.grid-product-030-07 .content .purchase-wrapper .nakup .button.button-add-to-cart-small .txt {
  display: none;
}
.grid-product.grid-product-030-07 .content .purchase-wrapper .nakup .button.button-add-to-cart-small:hover {
  background-color: #707c6e;
  border-color: #707c6e;
}
.grid-product.grid-product-030-07 .content .purchase-wrapper .nakup .button.button-add-to-cart-small:hover .img::after {
  opacity: 0;
}
.grid-product.grid-product-030-07 .content .purchase-wrapper .nakup .button.button-add-to-cart-small:hover .img::before {
  opacity: 1;
}
.grid-product.grid-product-030-07 .content .purchase-wrapper .nakup .button.button-add-to-favorites-small, .grid-product.grid-product-030-07 .content .purchase-wrapper .nakup .button.button-remove-from-favorites-small {
  background-color: #FFF;
  border: 1px solid #576156;
  border-radius: 0 15px 15px 0;
  color: #576156;
  height: 30px;
  line-height: 28px;
  margin: 0;
  padding: 0;
  text-align: center;
  transition: border-color 0.25s ease-in-out;
  width: 40px;
}
.grid-product.grid-product-030-07 .content .purchase-wrapper .nakup .button.button-add-to-favorites-small .img, .grid-product.grid-product-030-07 .content .purchase-wrapper .nakup .button.button-remove-from-favorites-small .img {
  display: inline-block;
  height: 28px;
  position: relative;
  width: 28px;
}
.grid-product.grid-product-030-07 .content .purchase-wrapper .nakup .button.button-add-to-favorites-small .img::after, .grid-product.grid-product-030-07 .content .purchase-wrapper .nakup .button.button-add-to-favorites-small .img::before, .grid-product.grid-product-030-07 .content .purchase-wrapper .nakup .button.button-remove-from-favorites-small .img::after, .grid-product.grid-product-030-07 .content .purchase-wrapper .nakup .button.button-remove-from-favorites-small .img::before {
  background: transparent center center no-repeat;
  background-size: 20px 20px;
  content: "";
  display: block;
  height: 28px;
  transition: opacity 0.25s ease-in-out;
  width: 28px;
}
.grid-product.grid-product-030-07 .content .purchase-wrapper .nakup .button.button-add-to-favorites-small .img::after, .grid-product.grid-product-030-07 .content .purchase-wrapper .nakup .button.button-remove-from-favorites-small .img::after {
  background-image: url("./images/add-to-favorites-normal.png");
  opacity: 1;
  position: relative;
}
.grid-product.grid-product-030-07 .content .purchase-wrapper .nakup .button.button-add-to-favorites-small .img::before, .grid-product.grid-product-030-07 .content .purchase-wrapper .nakup .button.button-remove-from-favorites-small .img::before {
  background-image: url("./images/add-to-favorites-active-full.png");
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.grid-product.grid-product-030-07 .content .purchase-wrapper .nakup .button.button-add-to-favorites-small .txt, .grid-product.grid-product-030-07 .content .purchase-wrapper .nakup .button.button-remove-from-favorites-small .txt {
  display: none;
}
.grid-product.grid-product-030-07 .content .purchase-wrapper .nakup .button.button-add-to-favorites-small:hover, .grid-product.grid-product-030-07 .content .purchase-wrapper .nakup .button.button-remove-from-favorites-small:hover {
  border-color: #707c6e;
  color: #707c6e;
}
.grid-product.grid-product-030-07 .content .purchase-wrapper .nakup .button.button-add-to-favorites-small:hover .img::after, .grid-product.grid-product-030-07 .content .purchase-wrapper .nakup .button.button-remove-from-favorites-small:hover .img::after {
  opacity: 0;
}
.grid-product.grid-product-030-07 .content .purchase-wrapper .nakup .button.button-add-to-favorites-small:hover .img::before, .grid-product.grid-product-030-07 .content .purchase-wrapper .nakup .button.button-remove-from-favorites-small:hover .img::before {
  opacity: 1;
}
.grid-product.grid-product-030-07 .content .purchase-wrapper .nakup .button.button-add-to-favorites-small .img::after {
  background-image: url("./images/add-to-favorites-normal.png");
}
.grid-product.grid-product-030-07 .content .purchase-wrapper .nakup .button.button-add-to-favorites-small .img::before {
  background-image: url("./images/add-to-favorites-active-full.png");
}
.grid-product.grid-product-030-07 .content .purchase-wrapper .nakup .button.button-remove-from-favorites-small .img::after {
  background-image: url("./images/add-to-favorites-normal-full.png");
}
.grid-product.grid-product-030-07 .content .purchase-wrapper .nakup .button.button-remove-from-favorites-small .img::before {
  background-image: url("./images/add-to-favorites-active.png");
}
.grid-product.grid-product-030-07:hover:before {
  opacity: 0;
}
.grid-product.grid-product-030-07:hover:after {
  opacity: 1;
}
.grid-product.grid-product-030-07:hover .grid-element-content-header-image .image-limited img {
  transform: scale(1.05);
}

/* END .grid-product */
/* Product Filter */
/*
* ArsLuna Web Pages
*
* Main CSS
* All Screens
* Template Partial
* Product Filter 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-filter-portlet-main {
  border: 0 none;
  border-radius: 0;
  box-shadow: 8px 0 15px -5px rgba(170, 170, 170, 0.6);
  display: block;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.product-filter-portlet-main .product-filter-portlet-main-header {
  background: transparent;
  border-bottom: 1px solid #899588;
  color: #303b3f !important;
  font-family: "Rubik", sans-serif;
  font-size: 20px;
  height: 50px;
  line-height: 30px;
  padding: 10px 25px 10px 10px;
  position: relative;
  text-align: left;
  transition: all 0.25s ease-in-out;
  vertical-align: top;
}
.product-filter-portlet-main .product-filter-portlet-main-header::before {
  color: #303b3f;
  content: "\f0b0";
  display: inline-block;
  font-family: FontAwesome;
  font-size: 24px;
}
.product-filter-portlet-main .product-filter-portlet-main-header::after {
  color: #303b3f;
  display: inline-block;
  content: "\f107";
  font-family: FontAwesome;
  font-size: 20px;
  height: 30px;
  line-height: 30px;
  padding: 0;
  position: absolute;
  right: 5px;
  text-align: center;
  top: 10px;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.product-filter-portlet-main .product-filter-portlet-main-header:hover {
  background: transparent;
  color: #303b3f !important;
}
.product-filter-portlet-main .product-filter-portlet-main-header.portlet-opened {
  background: transparent;
  color: #303b3f !important;
}
.product-filter-portlet-main .product-filter-portlet-main-header.portlet-opened::after {
  content: "\f106";
}
.product-filter-portlet-main .product-filter-portlet-main-content {
  min-height: 60px;
  padding: 20px 20px 20px 0;
  position: relative;
}
.product-filter-portlet-main .product-filter-portlet-main-content::after {
  background: transparent;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 20px;
}
.product-filter-portlet-main .product-filter-portlet-main-content.is-loading {
  background: url("./images/loading-35.gif") center center no-repeat;
}

/* END .product-filter-portlet-main */
.product-filter-wrapper {
  position: sticky;
  /* END product-filter-wrapper-006 */
}
.product-filter-wrapper #filter-trademark-select {
  width: 100%;
}
.product-filter-wrapper .product-filter-portlet {
  padding: 6px 0;
}
.product-filter-wrapper .product-filter-portlet-header {
  background-color: transparent;
  border-bottom: 1px solid #D3D3D3;
  border-top: 1px solid #D3D3D3;
  color: #FFF;
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  padding: 10px 25px 10px 10px;
  position: relative;
  text-align: left;
}
.product-filter-wrapper .product-filter-portlet-header::after, .product-filter-wrapper .product-filter-portlet-header::before {
  color: #FFF;
  display: inline-block;
  content: "\f107";
  font-family: FontAwesome;
  font-size: 16px;
  opacity: 1;
  padding: 0;
  position: absolute;
  right: 5px;
  text-align: center;
  top: 10px;
  width: auto;
  -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-filter-wrapper .product-filter-portlet-header::before {
  content: "\f106";
  opacity: 0;
}
.product-filter-wrapper .product-filter-portlet-header.portlet-opened::after {
  opacity: 0;
}
.product-filter-wrapper .product-filter-portlet-header.portlet-opened::before {
  opacity: 1;
}
.product-filter-wrapper .product-filter-portlet-content {
  max-height: 300px;
  margin-top: 10px;
  overflow-y: auto;
  padding: 0 12px;
}
.product-filter-wrapper .product-filter-portlet-content .form-group.checkbox-right label {
  font-size: 14px;
  line-height: 25px;
  margin-bottom: 10px;
  padding-bottom: 0;
}
.product-filter-wrapper .product-filter-portlet-content .form-group.checkbox-right:last-child label {
  margin-bottom: 0;
}
.product-filter-wrapper .product-filter-portlet-content#filter-price-range-content {
  overflow: hidden;
  padding-bottom: 4px;
}
.product-filter-wrapper .select2-container--default {
  max-width: 100;
  width: 100% !important;
}
.product-filter-wrapper .select2-container--default .select2-selection--multiple {
  border: 0 none;
  background: transparent;
  text-align: center;
}
.product-filter-wrapper .select2-container--default .select2-selection--multiple .select2-selection__rendered {
  padding: 0;
}
.product-filter-wrapper .select2-container--default .select2-selection--multiple .select2-selection__choice {
  display: block;
  float: none;
  font-size: 14px;
  text-align: left;
}
.product-filter-wrapper .select2-container--default .select2-selection--multiple .select2-search {
  border: 1px solid #FFF;
  display: block;
  float: none;
  margin: 10px auto 0;
  padding: 0 10px;
  width: 100%;
  text-align: left;
}
.product-filter-wrapper .select2-container--default .select2-selection--multiple .select2-search::before {
  clear: both;
}
.product-filter-wrapper .select2-container--default .select2-selection--multiple .select2-search__field {
  color: #FFF;
  line-height: 30px;
  margin: 0;
  padding: 5px 0;
}
.product-filter-wrapper .select2-container--default .select2-selection--multiple .select2-results__option {
  font-size: 14px;
  text-align: left;
}
.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: transparent;
  border: 2px solid #FFF;
  -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:focus,
.product-filter-wrapper #filter-price-range html .ui-button.ui-state-disabled:hover {
  border: 2px solid #FF000F;
  background: #ece9ee;
  font-weight: normal;
  color: #FFF;
}
.product-filter-wrapper #filter-price-range .ui-button.ui-state-active:focus,
.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 #FF000F;
  background: #FF000F;
  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 {
  align-items: flex-start;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-flow: row;
  flex-flow: row nowrap;
  flex-wrap: nowrap;
  gap: 20px;
  margin-top: 20px;
  text-align: left;
}
.product-filter-wrapper .buttons-wrapper .button {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  line-height: 38px;
  margin: 0 !important;
  padding: 0 15px;
  text-align: center;
  vertical-align: top;
  width: auto;
  /*
  &#product-filter-reset {
      &::before {
          color         : $basic_color_white;
          content       : "\f021";
          display       : inline-block;
          font-family   : FontAwesome;
          font-size     : 20px;
          vertical-align: top;
      }
  }

  &#product-filter-submit {
      &::before {
          color         : $basic_color_white;
          content       : "\f0b0";
          display       : inline-block;
          font-family   : FontAwesome;
          font-size     : 20px;
          vertical-align: top;
      }
  }
  */
}
.product-filter-wrapper.product-filter-wrapper-006 {
  /* END .button.search-toggle-button */
  /* END product-filter-toggle-wrapper */
}
.product-filter-wrapper.product-filter-wrapper-006 .button.product-filter-toggle-button,
.product-filter-wrapper.product-filter-wrapper-006 .button.search-toggle-button {
  background: #14161c url("./images/filter-toggle-18.png") center center no-repeat;
  border: 1px solid #14161c;
  color: #FFF;
  display: none;
  font-size: 18px;
  height: 40px;
  line-height: 40px;
  padding: 0;
  position: relative;
  text-align: center;
  text-decoration: none;
  -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;
  width: 30px;
}
.product-filter-wrapper.product-filter-wrapper-006 .button.product-filter-toggle-button:hover,
.product-filter-wrapper.product-filter-wrapper-006 .button.search-toggle-button:hover {
  background-color: #292d3a;
}
.product-filter-wrapper.product-filter-wrapper-006 .product-filter-toggle-wrapper {
  background: #FFF;
  display: block;
  padding: 16px 0;
  text-align: center;
}
.product-filter-wrapper.product-filter-wrapper-006 .product-filter-toggle-wrapper .product-filter-content-wrapper {
  display: block;
}
.product-filter-wrapper.product-filter-wrapper-006 .product-filter-toggle-wrapper .product-filter-content-wrapper .filter-wrapper,
.product-filter-wrapper.product-filter-wrapper-006 .product-filter-toggle-wrapper .product-filter-content-wrapper .search-wrapper {
  display: block;
  font-size: 14px;
}
.product-filter-wrapper.product-filter-wrapper-006 .product-filter-toggle-wrapper .product-filter-content-wrapper .product-filter-data-wrapper {
  display: inline-block;
}
.product-filter-wrapper.product-filter-wrapper-006 .product-filter-toggle-wrapper .product-filter-content-wrapper .product-filter-data-wrapper .product-filter-data {
  display: inline-block;
  margin-right: 10px;
  vertical-align: top;
}
.product-filter-wrapper.product-filter-wrapper-006 .product-filter-toggle-wrapper .product-filter-content-wrapper .product-filter-data-wrapper .product-filter-data .textinputbel::-ms-expand {
  display: none;
}
.product-filter-wrapper.product-filter-wrapper-006 .product-filter-toggle-wrapper .product-filter-content-wrapper .product-filter-data-wrapper .product-filter-data .textinputbel {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  background: "#FFF" url("./images/select-arrow.png") right center no-repeat;
  border: 1px solid #14161c;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  border-radius: 12px;
  color: #14161c;
  display: inline-block;
  font-size: 14px;
  height: 32px;
  line-height: 30px;
  margin: 0 !important;
  padding: 0 30px 0 10px;
  position: relative;
  text-align: left;
  vertical-align: top;
}
.product-filter-wrapper.product-filter-wrapper-006 .product-filter-toggle-wrapper .product-filter-content-wrapper .product-filter-data-wrapper .product-filter-data .textinputbel option {
  height: 40px;
  line-height: 40px;
  text-align: left;
}
.product-filter-wrapper.product-filter-wrapper-006 .buttons-wrapper {
  display: inline-block;
}
.product-filter-wrapper.product-filter-wrapper-006 .buttons-wrapper .button#product-filter-submit {
  background: #14161c;
  border: 1px solid #14161c;
  color: #FFF !important;
  display: inline-block;
  font-size: 14px;
  height: 40px;
  line-height: 38px;
  margin: 0 !important;
  padding: 0 30px;
  position: relative;
  text-align: center;
  vertical-align: top;
  -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;
}
.product-filter-wrapper.product-filter-wrapper-006 .buttons-wrapper .button#product-filter-submit:hover {
  color: #FFF !important;
}

/* END product-filter-wrapper */
.select2-container--default .select2-dropdown {
  background-color: #1a2022;
}
.select2-container--default .select2-dropdown .select2-results {
  text-align: left;
  max-width: 100%;
  width: 100%;
}
.select2-container--default .select2-dropdown .select2-results .select2-results__option {
  font-size: 14px;
}
.select2-container--default .select2-dropdown .select2-results .select2-results__option.select2-results__option--highlighted[aria-selected] {
  background: #707c6e;
  color: #FFF;
}

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

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

/*
* 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
*
*/
.advantages {
  background-color: #e7dfdc;
}

.mid-grey-3 {
  background-color: #576156;
}

#sizes-wraper {
  bottom: 5%;
  left: 50%;
  margin-left: -250px;
  overflow: hidden;
  position: fixed;
  top: 5%;
  max-width: 95%;
  width: 500px;
}
#sizes-wraper h6 {
  text-align: center;
}
#sizes-wraper .sizes-container {
  bottom: 40px;
  left: 40px;
  overflow: auto;
  position: absolute;
  right: 40px;
  top: 40px;
}

#sizes-wraper-page {
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  width: 500px;
}
#sizes-wraper-page h6 {
  text-align: center !important;
}
#sizes-wraper-page .sizes-container {
  position: relative;
}

.table-sizes {
  border-collapse: collapse;
  margin: 0 auto;
}
.table-sizes .col-three-one {
  width: 100px;
}
.table-sizes .col-three-two {
  width: 100px;
}
.table-sizes .col-three-three {
  width: 100px;
}
.table-sizes .col-two-one {
  width: 150px;
}
.table-sizes .col-two-two {
  width: 150px;
}
.table-sizes thead {
  background: #899588;
}
.table-sizes thead th {
  border: 1px solid #ece9ee;
  text-align: left;
  padding: 10px;
}
.table-sizes tbody td {
  border: 1px solid #ece9ee;
  text-align: left;
  padding: 5px 10px;
}

.detail-link-wrapper {
  padding: 10px;
}
.detail-link-wrapper a {
  color: #ece9ee;
  text-decoration: underline;
}
.detail-link-wrapper a:visited {
  color: #ece9ee;
}