@import url(http://fonts.googleapis.com/css?family=Open+Sans:700,400);
/*******************************************************
* INCLUDES
*******************************************************/
/**
 * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
 * http://cssreset.com
 */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  table-layout: fixed;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
  position: relative;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/*******************************************************
* COLOURS
*******************************************************/
/*******************************************************
* PAGE
*******************************************************/
/*******************************************************
* FONTS
*******************************************************/
/*@import '';*/
/*******************************************************
* UNITS
*******************************************************/
body {
  overflow-x: hidden;
}
.match-width,
.js-align {
  visibility: hidden;
}

/*******************************************************
* GLOBAL 
*******************************************************/
.width-size-limit{
  position: relative;
  margin: auto;
  min-width: 1000px;
  max-width: 1280px;
}


/*******************************************************
EFFECTS ON HOVER 
*******************************************************/
.scale-hover{
    webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    transform: scale(1);

}

.scale-hover:hover, .scale-hover:focus{
    webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.opacity-hover{
    webkit-transition: opacity 0.2s ease-in-out;
    -moz-transition: opacity 0.2s ease-in-out;
    -ms-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;

}

.opacity-hover:hover, .opacity-hover:focus{
    opacity: 0.7;
}


.shake-it {
        -webkit-animation-duration: .8s;
           -moz-animation-duration: .8s;
             -o-animation-duration: .8s;
                animation-duration: .8s;
        -webkit-animation-fill-mode: both;
           -moz-animation-fill-mode: both;
             -o-animation-fill-mode: both;
                animation-fill-mode: both;
    }
    @-webkit-keyframes shake {
        0% {-webkit-transform: scale(1);}   
        10%, 20% {-webkit-transform: scale(0.9) rotate(-3deg);}
        30%, 50%, 70%, 90% {-webkit-transform: scale(1.1) rotate(3deg);}
        40%, 60%, 80% {-webkit-transform: scale(1.1) rotate(-3deg);}
        100% {-webkit-transform: scale(1) rotate(0);}
    }

    @-moz-keyframes shake {
        0% {-moz-transform: scale(1);}  
        10%, 20% {-moz-transform: scale(0.9) rotate(-3deg);}
        30%, 50%, 70%, 90% {-moz-transform: scale(1.1) rotate(3deg);}
        40%, 60%, 80% {-moz-transform: scale(1.1) rotate(-3deg);}
        100% {-moz-transform: scale(1) rotate(0);}
    }

    @-o-keyframes shake {
        0% {-o-transform: scale(1);}    
        10%, 20% {-o-transform: scale(0.9) rotate(-3deg);}
        30%, 50%, 70%, 90% {-o-transform: scale(1.1) rotate(3deg);}
        40%, 60%, 80% {-o-transform: scale(1.1) rotate(-3deg);}
        100% {-o-transform: scale(1) rotate(0);}
    }

    @keyframes shake {
        0% {transform: scale(1);}   
        10%, 20% {transform: scale(0.9) rotate(-3deg);}
        30%, 50%, 70%, 90% {transform: scale(1.1) rotate(3deg);}
        40%, 60%, 80% {transform: scale(1.1) rotate(-3deg);}
        100% {transform: scale(1) rotate(0);}
    }

    .shake-it:hover {
        -webkit-animation-name: shake;
        -moz-animation-name: shake;
        -o-animation-name: shake;
        animation-name: shake;
    }

.grabbable {
    cursor: move; /* fallback if grab cursor is unsupported */
    cursor: grab;
    cursor: -moz-grab;
    cursor: -webkit-grab;
}

 /* (Optional) Apply a "closed-hand" cursor during drag operation. */
.grabbable:active { 
    cursor: grabbing;
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing;
}


/*******************************************************
END EFFECTS ON HOVER 
*******************************************************/





/*******************************************************
* HOME
*******************************************************/
.homepage #right-bar .right-static {
  z-index: 11;
}
.homepage .user-profile-controls {
  display: block !important;
}
.homepage #content-header {
  display: none;
}
.homepage .upper-title {
  padding-bottom: 10px;
  border-bottom: 2px solid #00A1B1;
  width: 97%;
  margin-left: 3%;
  margin-bottom: 40px;
}
.homepage .upper-title * {
  padding-left: 75px;
}
.homepage .two-columns {
  width: 100%;
  height: 380px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.homepage .two-columns .left,
.homepage .two-columns .right {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.homepage .two-columns .left {
  margin-left: 36px;
  width: 425px;
}
.homepage .two-columns .right {
  position: absolute;
  right: 0;
  top: 0;
  width: 420px;
}
.homepage .two-columns.bottom {
  height: 120px;
}
.homepage .left-item {
  margin: 28px 0;
}
.homepage .left-item * {
  margin-left: 64px;
}
.homepage .left-item img {
  position: absolute;
  margin-left: 0;
  width: 40px;
  height: auto;
}

.homepage .droid-holder img {
  position: absolute;
  margin-left: 0;
  width: 40px;
  height: auto;
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  -o-transition: -o-transform 0.3s;
  transition: -webkit-transform 0.3s,-moz-transform 0.3s,-o-transform 0.3s,transform 0.3s;
}
.homepage .droid-holder h3,
.homepage .droid-holder p {
  margin-left: 64px;
  margin-bottom: 0;
}
.homepage .droid-holder:hover img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}



.homepage h3 {
  color: #00A1B1;
  font-size: 20px;
  text-transform: uppercase;
  border-bottom: 1px solid #00A1B1;
  padding-bottom: 6px;
  text-align: center;
}
.homepage p {
  margin-top: 5px;
  margin-bottom: 20px;
  font-size: 12px;
  color: #444444;
  line-height: 1.35em;
}
.homepage h4 {
  font-size: 24px;
}
.facebook-buttons-container {
  height: 30px;
  min-width: 190px;
}


/*******************************************************
* LAYOUT related
*******************************************************/
/* Menu Header*/
.top-wrapper {
  position: fixed;
  top: 0;
  height: 90px;
  z-index: 11;
  width: 100%;
  background-color: #00A1B1;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(140,140,140,1);
  -moz-box-shadow: 0px 0px 15px 0px rgba(140,140,140,1);
  box-shadow: 0px 0px 15px 0px rgba(140,140,140,1);
}

header#top {
  height: 90px;
  position: relative;
}

.logo {
  background: url(../images/logo-white.png) 50% 50% no-repeat;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.logo a{
  display: inherit;
  width: 100%;
  height: 100%;
}

.top-wrapper .logo {
  position: relative;
  width: 175px;
  height: 90px;
  display: inline-block;
  vertical-align: middle;
}

.menu{
display: inline-block;
vertical-align: middle;
}

#main-menu ul {
  height: 90px;
}

#main-menu ul li {
  display: inline-block;
  width: 80px;
  height: 90px;
  border-left: 1px solid #fff;
  margin-right: -5px;
}

#main-menu ul li:hover, #main-menu ul li:active{
background-color: #fff;
}


#main-menu ul li:hover a,
#main-menu ul li.selected a {
  color: #00A1B1;
}

#main-menu ul li a {
  vertical-align: middle;
  overflow: hidden;
  font-size: 14px;
  color: #666666;
  display: inherit;
  width: 80px;
  height: 90px;
}
#main-menu ul li.selected{
  background-color: #fff;
}
#main-menu ul li.selected img.inactive,
#main-menu ul li a img.inactive {
  display: block;
}
#main-menu ul li.selected img.inactive,
#main-menu ul li a:hover img.inactive {
  display: none;
}
#main-menu ul li.selected img.active,
#main-menu ul li a:hover img.active {
  display: block;
}
#main-menu ul li img {
  display: none;
  vertical-align: middle;
  width: 50px;
  height: auto;
  margin-left: 15px;
  margin-top: 20px;
}

.active-menu-item{
  background-color: #fff;
}


.active-menu-item img.active{
  display: block !important;
}

.active-menu-item img.inactive{
  display: none !important;
}



#subcategories {
  display: none;
  width: 964px;
  height: 380px;
  background: #fafafa;
  z-index: 20;
  overflow: hidden;
  position: absolute;
  top: 90px;
  left: 50%;
  margin-left: -461px;
-webkit-box-shadow: 0px 17px 30px 0px rgba(140,140,140,0.7);
-moz-box-shadow: 0px 17px 30px 0px rgba(140,140,140,0.7);
box-shadow: 0px 17px 30px 0px rgba(140,140,140,0.7);
}


.my-subcategories {
  display: none;
  width: 418px;
  height: 332px;
  background: #fafafa;
  z-index: 20;
  box-shadow: 0 0 6px #444444;
  overflow: hidden;
  border-radius: 3px;
  position: fixed;
  top: 128px;
  margin-left: 182px;
}


.category-menu div.header {
    background-color: #FAFAFA;
    color: #444444;
    height: 30px;
    line-height: 30px;
    padding: 15px 20px 10px 20px;
    /*border-bottom: 2px solid #00A1B1;*/
}

.category-menu div.header:after {
    content: '';
    position: relative;
    height: 2px;
    width: 100%;
    background-color: #00A1B1;
    display: block;
}


.category-menu div.header h3 {
  color: #00A1B1;
  border: 0;
  line-height: 30px;
  margin-left: 10px;
  font-size: 20px;
  text-align: left;
  text-transform: none;
  font-weight: bold;
}
.category-window-image {
  position: absolute;
  bottom: 4px;
  right: 4px;
  height: 260px;
  opacity: 0.08;
}
.category-window-image a {
  width: 100%;
  height: 100%;
  display: block;
}
.category-window-image img {
  height: 100%;
  width: auto;
}
ul.stubac {
  width: 2000px;
  position: absolute;
  margin: 12px 32px;
}
ul.stubac li {
  color: #444444;
  margin: 8px 2px;
}
ul.stubac li a {
  font-size: 16px;
  color: inherit;
}
ul.stubac li:hover,
ul.stubac li.selected {
  list-style-type: disc;
  color: #00A1B1;
}
ul.stubac li:hover a,
ul.stubac li.selected a {
  text-decoration: underline;
}
ul.stubac:nth-child(2) {
  margin-left: 250px;
}

/* Content*/
#site-content{
  background-color: #f2f2f2;
}
#content-wrapper {
padding-top: 90px;
}
#content {
  position: relative;
  overflow: hidden;
  min-height: 1030px;
  width: 930px;
}
#static-right {
  position: absolute;
  float: right;
  width: 350px;
  top: 95px;
  right: 0;
  z-index: 10;
}

.static-right-power {
  top: 355px !important;
}


.leaderboard-banner {
  width: 728px;
  height: 90px;
  margin: 20px 0px 5px 90px;
}

.power-banner {
  width: 970px;
  height: 250px;
  margin: 10px 0px 5px 140px;
}


#overlay {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 100;
  background: rgba(0, 0, 0, 0.6);
}
#overlay.active {
  display: block;
}
#overlay .overlay-window-container {
  position: relative;
  margin: auto;
  min-width: 960px;
  max-width: 1366px;
}
#overlay .overlay-window-container .overlay-window {
  display: none;
  position: relative;
  background: #ffffff;
  margin-left: 175px;
  margin-right: 150px;
  margin-top: 90px;
  box-shadow: 0 0 30px black;
  border-radius: 5px;
  overflow: hidden;
  padding: 10px;
}
#overlay .overlay-window-container .overlay-window.visible {
  display: block;
}


footer .column {
  float: left;
  padding: 1%;
  width: 16%;
}
footer .column:last-child {
  width: 25%;
}
@media screen and (min-device-width: 320px) and (max-device-width: 720px) {
  body.mobile {
    overflow-x: auto;
  }
  body.mobile #static-left,
  body.mobile #static-right {
    position: absolute;
  }
  body.mobile #static-right {
    right: 0;
  }
  body.mobile .top-wrapper {
    position: absolute;
  }
  body.mobile #content-header {
    position: relative !important;
  }
}




/*******************************************************
* HOME PAGE
*******************************************************/

.box-holder-style{
background-color: #fff;
-webkit-box-shadow: 0px 0px 30px -8px rgba(125,125,125,1);
-moz-box-shadow: 0px 0px 30px -8px rgba(125,125,125,1);
box-shadow: 0px 0px 30px -8px rgba(125,125,125,1);
margin: 15px 5px 10px 5px;
border-radius: 3px;
}

.box-title{
position: relative;
width: 50%;
margin: auto;
background-color: #00A1B1;
padding: 15px 0px 15px 0px;
border-radius: 0px 0px 10px 10px;
-moz-border-radius: 0px 0px 10px 10px;
-webkit-border-radius: 0px 0px 10px 10px;
border: 0px solid #000000;
}

.box-title h1{
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
}

.box-title h2{
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
}

.box-subtitle{
  padding: 20px;
}

.box-subtitle h2{
  color: #00A1B1;
  text-align: center;
  font-size: 20px;
  text-transform: uppercase;
}

/*SEARCH BOX*/


.large-search-box-holder{
  overflow: auto;
}

.large-search-box-holder .search-box {
  background: #f8f8f8;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.large-search-box-holder a .search-box-icon {
  width: 50px;
  height: 50px;
  border: none;
  background-image: url(../images/icons/magnifier-large.jpg);
  background-size: 25px;
  background-position: 50% 60%;
  background-repeat: no-repeat;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  left: 470px;
}
.large-search-box-holder a .search-box-icon:before {
    content: ' ';
    position: absolute;
    left: -2px;
    height: 30px;
    top: 11px;
    width: 2px;
    background: #00A1B1;
}
.search-box-container{
  width: 55%;
  float: left;
}
.search-box-container:hover .search-box {
  background: #fafafa;
}
.search-box-container:hover .search-box-icon {
  background-size: 28px;
}
#search-box-large {
  width: 100%;
  border: 1px solid #00A1B1;
  border-radius: 2px;
  font-size: 18px;
  padding: 10px;
  margin: 10px
}



.uputstvo-button {
  width: 30%;
  background-color: #fff;
  border-radius: 3px;
  text-align: center;
  padding: 3px;
  margin: 10px 30px 10px 10px;
  padding: 10px;
  transition: all 0.3s;
  float: right;
  cursor: pointer;
  cursor: hand;
  border: 1px solid #00A1B1;

}
.uputstvo-button:hover {
  opacity: 0.9;
  background-color: #00A1B1;
}

.uputstvo-button span {
  display: block;
  text-align: left;
}

.uputstvo-button span.icon {
  position: absolute;
  font-size: 27px;
  top: 2px;
  left: 14px;
  margin: 4px;
  color: #00A1B1;
}

.uputstvo-button:hover span.icon {
  color: #fff;
}

.uputstvo-button span.larger {
  font-size: 20px;
  margin-left: 40px;
  color: #00A1B1;
}

.uputstvo-button:hover span.larger {
  color: #fff;
}


.homepage .faq {
  display: block;
}


/*CAROUSEL*/

.combo-carousel {
  margin-top: 10px;
  padding: 20px;
}
.combo-carousel .carousel {
  overflow: hidden;
  position: relative;
}

.carousel.carousel-stage{
margin:20px 0px 20px 0px;
}
.combo-carousel .carousel ul {
  width: 20000em;
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}
.combo-carousel .carousel ul li {
  float: left;
}
.combo-carousel .stage ul li {
  width: 880px;
  height: auto;
}
.combo-carousel .stage ul li h2 {
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 24px;
}
.combo-carousel .stage ul li a {
  display: block;
  color: #00A1B1;
}

.combo-carousel .stage ul li a:hover {
  color: #444;
}

.combo-carousel .stage ul li .pc-img-left {
  float: left;
  margin-left: 100px;
}
.combo-carousel .stage ul li .pc-img-left img{
  width: 300px;
  height: auto;
}

.combo-carousel .stage ul li table {
  float: left;
  margin-left: 40px;
}
.combo-carousel .stage ul li table img {
  width: 100px;
  height: auto;
}
.combo-carousel .stage ul li table tr.lowest td {
  color: #83b00c;
}
.combo-carousel .stage ul li table tr.ekstra td {
  color: #00A1B1;
}
.combo-carousel .stage ul li table tr.akcija td {
  color: #f7931e;
}
.combo-carousel .stage ul li table td {
  vertical-align: middle;
  height: 60px;
  padding: 3px 6px 3px 0px;
}
.combo-carousel .stage ul li table td:nth-child(2) {
  width: 105px;
  text-align: right;
  color: #666666;
  font-weight: bold;
  font-size: 22px;
}
.combo-carousel .stage ul li table td:nth-child(3) {
  width: 32px;
}
.combo-carousel .stage ul li table.rows-6 td {
  height: 34px;
}
.combo-carousel .stage ul li table.rows-7 td,
.combo-carousel .stage ul li table.rows-8 td,
.combo-carousel .stage ul li table.rows-9 td,
.combo-carousel .stage ul li table.rows-10 td,
.combo-carousel .stage ul li table.rows-11 td,
.combo-carousel .stage ul li table.rows-12 td {
  height: 34px;
}
.combo-carousel .stage ul li table.rows-5 td {
  height: 42px;
}
.combo-carousel .stage ul li table.rows-4 td {
  height: 52px;
}
.combo-carousel .stage ul li table.rows-3 td {
  height: 68px;
}
.combo-carousel .navigation .carousel-navigation {
  height: 110px;
  background: #ffffff;
  -webkit-border-radius: 5px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 5px;
  -moz-background-clip: padding;
  border-radius: 5px;
  background-clip: padding-box;
}
.combo-carousel .navigation .carousel-navigation ul {
  margin: 5px;
}
.combo-carousel .navigation .carousel-navigation li {
  cursor: pointer;
  margin-left: 3px;
}
.combo-carousel .navigation .carousel-navigation li img {
  width: 100px;
  height: auto;
  display: block;
  border: 1px solid transparent;
  -webkit-border-radius: 3px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 3px;
  -moz-background-clip: padding;
  border-radius: 3px;
  background-clip: padding-box;
}
.combo-carousel .navigation .carousel-navigation li.active img {
  border-color: #00A1B1;
}
.combo-carousel .prev-navigation,
.combo-carousel .next-navigation {
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  background: #00A1B1;
  color: #ffffff;
  text-decoration: none;
  text-shadow: 0 0 1px #000;
  font: 60px/41px Arial, sans-serif;
  -webkit-border-radius: 30px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 30px;
  -moz-background-clip: padding;
  border-radius: 30px;
  background-clip: padding-box;
  -webkit-box-shadow: 0 0 2px #999999;
  -moz-box-shadow: 0 0 2px #999999;
  box-shadow: 0 0 2px #999999;
  font-weight: bold;
 
}


.combo-carousel .prev-navigation {
  top: -200px;
  left: 15px;
  text-indent: 14px;
}
.combo-carousel .next-navigation {
  top: -200px;
  right: 15px;
  text-indent: 16px;
}
.combo-carousel .prev-navigation.inactive,
.combo-carousel .next-navigation.inactive {
  opacity: .5;
  cursor: default;
}



.combo-carousel .prev-stage,
.combo-carousel .next-stage {
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  background: #00A1B1;
  color: #ffffff;
  text-decoration: none;
  text-shadow: 0 0 1px #000;
  font: 60px/41px Arial, sans-serif;
  -webkit-border-radius: 30px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 30px;
  -moz-background-clip: padding;
  border-radius: 30px;
  background-clip: padding-box;
  -webkit-box-shadow: 0 0 2px #999999;
  -moz-box-shadow: 0 0 2px #999999;
  box-shadow: 0 0 2px #999999;
  font-weight: bold;
 
}

.combo-carousel .prev-stage,
.combo-carousel .next-stage {

  }


.combo-carousel .prev-stage {
  top: 150px;
  left: 15px;
  text-indent: 14px;
}
.combo-carousel .next-stage {
  top: 150px;
  right: 15px;
  text-indent: 16px;
}
.combo-carousel .prev-stage.inactive,
.combo-carousel .next-stage.inactive {
  opacity: .5;
  cursor: default;
}




/*VIDEO*/

.homepage #yt-container iframe{
  padding: 20px 50px 20px 50px;
  margin-bottom: 20px;
  width: 90%;
  height: 456px;
}


/*****************************************************
* SIDEBAR
******************************************************/

.sidebar-title{
  position: relative;
  width: 100%;
  margin: auto;
  background-color: #00A1B1;
  padding: 3px 0px 10px 0px;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  margin-bottom: 20px;
}

.sidebar-title h3{
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 7px;
  line-height: 16px;
}






.user-profile-controls {
  height: 90px;
  border-radius: 3px;
  margin: 15px 5px 20px 5px !important;
}
.user-profile-controls .wrap {
  padding: 15px 15px 15px 30px;
}
.user-profile-controls .avatar {
  width: 60px;
  height: 60px;
  margin-right: 10px;
  float: left;
}

.user-profile-controls .user-actions {
margin-top: 5px;
}

.user-profile-controls .avatar img {
  width: 100%;
  height: 100%;
}
/*
.user-profile-controls .user-actions .divider {
  display: block;
  height: 1px;
  background: #822064;
  margin-left: 70px;
  width: 100px;
}*/

.user-profile-controls .user-actions a {
  display: block;
  position: relative;
  color: #00A1B1;
  font-size: 16px;
  margin: 1px 0;
  padding: 4px 0;
  text-decoration: none;
}


.user-profile-controls .user-actions a:hover, .user-profile-controls .user-actions a:focus  {
  text-decoration: underline;
}


.right-side-box{
  padding: 15px;
}
.standard-banner {
  width: 300px;
  height: 250px;
  background: gray;
  margin-bottom: 30px;
  margin-left: 5px;
  margin-top: 5px;
}

.half-page-banner {
  width: 300px;
  height: 600px;
  background: gray;
  margin-bottom: 30px;
  margin-left: 5px;
  margin-top: 5px;
}

/*CART*/

.cart-overview {
  height: 63px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.cart-overview * {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.cart-overview-fixed{/*
  position: fixed !important;
  top: 75px;
  width: 340px;
  border-bottom: 2px solid #822064;
  border-radius: 0;
  z-index: 10;*/
}



.cart-card-front,
.cart-card-back {
  width: 100%;
  position: absolute;
  height: 63px;
  background: #ffffff;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: box-shadow 0.3s;
}
.cart-card-front *,
.cart-card-back * {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
}
.animating .cart-card-front,
.animating .cart-card-back {
  box-shadow: 0 0 30px black;
}
.price-row,
.savings-row {
  /*margin-top: 20px;*/
}
.cart-card-back {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.animated-savings span {
  position: absolute;
}
.animated-savings .large-piggybank {
  height: 100px;
  top: 12px;
  left: 20px;
}
.animated-savings .large-piggybank .back-layer {
  position: absolute;
}
.animated-savings .large-piggybank .large-coin {
  position: absolute;
  left: -3px;
  top: -40px;
}
.animated-savings .large-piggybank .large-coin .compensator {
  position: absolute;
}
.animated-savings .large-piggybank .bottom {
  bottom: 0;
  color: #45541d;
  left: -15px;
  font-size: 14px;
  font-weight: bold;
}
.animated-savings .large-piggybank .save-lbl {
  text-align: center;
  color: white;
  left: 20px;
  width: 70px;
  top: 32px;
  font-size: 20px;
}
.price-row .rollover-container,
.savings-row .rollover-container {
  width: 195px;
  height: 50px;
  overflow: hidden;
}
.price-row .rollover-container .rollover-rotator,
.savings-row .rollover-container .rollover-rotator {
  transition: left 0.3s;
  left: 0;
  width: 100%;
  height: 100%;
}
.price-row .rollover-container .rollover-rotator .rollover-default,
.savings-row .rollover-container .rollover-rotator .rollover-default {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.price-row .rollover-container .rollover-rotator .rollover-over,
.savings-row .rollover-container .rollover-rotator .rollover-over {
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
}
.price-row .rollover-container:hover .rollover-rotator,
.savings-row .rollover-container:hover .rollover-rotator {
  left: 100%;
}
.cart-overview .counter-box {
  width: 40px;
  height: 40px;
  line-height: 50px;
  text-align: center;
  vertical-align: middle;
  color: #ffffff;
  background-image: none;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  font-weight: bold;
  font-size: 12px;
  float: left;
  margin-top: 5px;
}
.cart-overview .counter-box {
  background-image: url(../images/icons/cart-purple-empty.png);
}
.cart-overview.zero-products .counter-box span {
  display: none;
}
.cart-overview .counter-box span {
    position: absolute;
    top: -5px;
    right: -10px;
    color: #FFF;
    font-size: 20px;
    background-color: #0DAB0D;
    padding: 0 5px 0 5px;
    border-radius: 30px;
    line-height: 30px;
}


.cart-overview .total-price,
.cart-overview .total-saved {
  line-height: 50px;
  vertical-align: middle;
  text-align: right;
  float: left;
  margin-left: 65px;
  font-size: 18px;
}
.cart-overview .total-saved {
  font-weight: bold;
  color: #83b00c;
}
.cart-overview .price-row {
  color: #00A1B1;
  padding: 6px 4px 4px 20px;
  height: 50px;
}
.cart-overview .savings-row {
  color: #a1c149;
  padding: 4px;
  height: 50px;
  margin-top: 8px;
}
.cart-overview .kasica-prasica {
  width: 50px;
  height: 50px;
  float: left;
  margin-right: 10px;
  background-image: url(../images/icons/prasica.png);
  background-size: 100% 100%;
}
.cart-overview .kasica-prasica .piggybank-coin {
  position: absolute;
  left: 0;
  top: 0;
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
}
.cart-overview .rsd {
  position: relative;
  padding: 4px;
  text-transform: uppercase;
  font-size: 18px;
  vertical-align: middle;
  line-height: 50px;
}
.cart-overview.empty {
  margin: 0;
}
.cart-overview.empty p {
  color: #444444;
  font-size: 12px;
  padding: 2em 0.6em;
  text-align: justify;
  border: 2px dashed #cccccc;
}
.cart-overview .cart-explanation {
background: #00A1B1;
    color: #ffffff;
    line-height: 30px;
    height: 30px;
    text-align: center;
    vertical-align: middle;
    font-size: 12px;
    font-weight: bold;
    /*border-radius: 10px;*/
    margin-top: 10px;
}
.cart-overview .piggybank-explanation {
  text-align: center;
  height: 50px;
  line-height: 15px;
  vertical-align: middle;
  font-size: 16px;
  font-weight: bold;
}
.cart-compare .shoplist {
  padding: 4px;
}
.cart-compare .shoplist li {
  height: 39px;
  line-height: 39px;
  vertical-align: middle;
}
.cart-compare .shoplist li img {
  width: 34%;
  height: auto;
  display: inline;
  vertical-align: middle;
}
.cart-compare .shoplist li span {
  float: right;
  margin-right: 10px;
  color: #444444;
}
.cart-compare .shoplist li.best span {
  color: #83b00c;
  font-weight: bold;
}


.cart-overview-btn{
    float: right;
    margin-right: 30px;
    width: 70px;
    text-align: center;
    text-transform: uppercase;
}

.cart-overview-btn a {
  font-weight: bold;
}


.grid-label {
  margin: 1px 0;
  padding: 8px 0;
  overflow: hidden;
}
.grid-label p {
  color: #00A1B1 !important;
  font-size: 20px ;
  margin-left: 30px;
  font-weight: bold;
}
.grid-button {
  background: #00A1B1;
  margin: 1px 0;
  padding: 8px 0;
  overflow: hidden;
  border-radius: 3px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.grid-button a {
  text-decoration: none;
  color: #ffffff;
  font-weight: normal;
  font-size: 14px;
  margin-left: 17px;
}
.grid-button a img {
  margin-right: 3px;
  position: relative;
  top: 2px;
}
.grid-button:hover {
  background: #3F5D6B;
}
.grid-button.red {
  background: #f7931e;
}
.grid-button.red:hover {
  background: #f9ab4f;
}
.grid-button.green {
  background: #a1c149;
}
.grid-button.green:hover {
  background: #b5ce6f;
}
.grid-button.overview-cart {
  text-transform: uppercase;
}




/*SAKRIO MAKSIMALNU USTEDU*/
.cart-card-back{
  display: none;
}







/*******************************************************
* CONTENT
*******************************************************/

.content-header-container {
  margin-left: 175px;
  margin-right: 150px;
}

#content-header {
  position: relative;
  background: #ffffff;
  z-index: 2;
}

.category-header {
    height: 51px;
    padding: 12px 7px 0px 0px;
}
.fixed-header{
  position: fixed !important;
  top: 75px;
  width: 920px;
  border-bottom: 2px solid #00A1B1;
  border-radius: 0;
}


#search-box {
  line-height: 37px;
  height: 37px;
  width: 170px;
  background: #fafafa;
  border: 1px solid #cccccc;
  padding: 0 32px 0 8px;
  font-size: 14px;
  border-radius: 3px;
}
#search-box:focus {
  background: #ffffff;
}
.invalid #search-box {
  background: #fbe1e1;
  border-color: #d6a3a3;
}

.search-box-icon {
  position: absolute;
  width: 29px;
  height: 27px;
  top: 6px;
  right: 7px;
  background-image: url(../images/icons/magnifier.png);
  background-repeat: no-repeat;
  background-size: 27px;
  background-position: 3px;
  border-left: 1px solid #cccccc;
}

.filters-button{
    background-image: url(../images/icons/empty-filter.png);
    width: 40px;
    height: 37px;
    margin-left: 10px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    border: 1px solid #cccccc;
    border-radius: 3px;
}

.filters-button:hover{
  background-color: #00A1B1;
  cursor: pointer;
  cursor: hand;

}

.filters-container{
  position: fixed;
  margin-left: 115px;
  margin-top: 12px;
  width: 220px;
  padding: 15px 40px 15px 20px;
  display: none;
}

#close-filters{
    position: absolute;
    top: 7px;
    padding: 3px 7px 5px 7px;
    right: 10px;
    background-color: #00A1B1;
    border-radius: 100%;
    font-size: 13px;
    font-weight: bold;
    color: #fff;
    cursor: hand;
    cursor: pointer;
}


#filters {
  margin-top: 12px;
  overflow-y: auto;
  height: 400px;
}
#filters h3 {
  font-size: 12px;
  font-weight: bold;
  color: #00A1B1;
  margin-left: 1em;
  border-bottom: 1px solid #00A1B1;
  padding-bottom: 2px;
}
#filters .filter {
  padding-left: 12px;
  margin-top: 12px;
  font-size: 12px;
}
#filters .filter h3 {
  font-weight: bold;
  color: #444444;
  margin-left: 0;
  border-bottom-color: #444444;
}
#filters .filter input[type="checkbox"] {
  float: right;
  position: absolute;
  right: 0;
  display: block;
  cursor: pointer;
  cursor: hand;
}
#filters .filter label {
  vertical-align: baseline;
  cursor: pointer;
  cursor: hand;
}
#filters .filter-items li {
  position: relative;
  margin-top: 0;
  height: 17px;
  line-height: 20px;
  vertical-align: baseline;
  color: #666666;
  border-bottom: 1px solid #cccccc;
  text-transform: capitalize;
}
#filters .filter-items input[type=checkbox]:checked + label {
  font-weight: bold;
}









.productlist-header {
  table-layout: fixed;
  background: #ffffff;
  width: 100%;
}
.productlist-header td {
  text-align: center;
  vertical-align: middle;
  /*border-bottom: 1px solid #00A1B1;*/
  height: 35px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.productlist-header td:first-child {
  padding-left: 10px;
  width: 210px;
  text-align: left;
  color: #00A1B1;
}

.productlist-header td:nth-child(2){
  width: 55px;
}

.productlist-header td:hover {
  background-color: #f3e9f0;
  box-shadow: 0 0 5px black;
}
.productlist-header td:first-child:hover {
  background-color: #ffffff;
  box-shadow: none;
}
.productlist-header td:nth-child(2):hover {
  background-color: #ffffff;
  box-shadow: none;
}

.productlist-header img {
  height: 23px;
  width: auto;
}


.banner {
  background: #e1e1e1;
}
.banner img {
  width: 100%;
  height: 100%;
}



/*******************************************************
* ALL PRODUCT STRANICE
*******************************************************/

























































/*******************************************************
* CORE
*******************************************************/
img {
  border: 0;
}
div {
  position: relative;
}
/* LISTS */
ul {
  padding: 0;
  margin: 0;
  border: 0;
}
a {
  text-decoration: none;
  color: #666666;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
a:hover {
  color: #00A1B1;
}
/* TABLES */
/* FORMS */
body {
  font-family: "Open Sans", sans-serif;
  background-color: #ffffff;
}

/*****************************************************
* SIDEBAR RELATED
******************************************************/
#static-left {
  background: #ffffff;
}



#quickinfo {
    padding: 15px 15px 15px 20px;
    background-color: #f7931e;
    color: white;
    margin: 5px;
    -webkit-box-shadow: 0px 0px 30px -8px rgba(125,125,125,1);
    -moz-box-shadow: 0px 0px 30px -8px rgba(125,125,125,1);
    box-shadow: 0px 0px 30px -8px rgba(125,125,125,1);
}
#quickinfo p {
  font-size: 16px;
  color: #fff;
}
/*****************************************************
* SEARCH BOX
*****************************************************/
textarea,
input {
  outline: 0;
  border: 0;
}
::-webkit-input-placeholder {
  color: #aeaeae;
}
:-moz-placeholder {
  color: #aeaeae;
}
::-moz-placeholder {
  color: #aeaeae;
}
:-ms-input-placeholder {
  color: #aeaeae;
}


/*******************************************************
* FILTERS
*******************************************************/
#sidebar h3 {
  color: #00A1B1;
  padding-left: 8px;
  border-bottom: 1px solid #00A1B1;
}

/*******************************************************
* RIGHT MENU
*******************************************************/

/*******************************************************
* ???
*******************************************************/



/*******************************************************
* PRODUCT TABLE
*******************************************************/
#products-in-cart-head {
  table-layout: fixed;
  width: 100%;
}
#products-in-cart-head tr {
  overflow: hidden;
  background: #ffffff;
  text-align: center;
  border-bottom: 1px solid #00A1B1;
}
#products-in-cart-head tr th {
  height: 28px;
  padding-bottom: 4px;
  color: #666666;
  vertical-align: bottom;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
}
#products-in-cart-head tr th:nth-child(1) {
  width: 181px;
  padding-left: 10px;
  text-align: left;
}
#products-in-cart-head tr th:nth-child(2) {
  width: 40px;
}
#products-in-cart-head tr th:nth-child(3) {
  width: 80px;
  overflow: visible;
  position: relative;
}
#products-in-cart-head tr th:last-child {
  width: 40px;
}
#products-in-cart-head tr th img {
  height: 20px;
  width: auto;
}
#products-in-cart-sums {
  table-layout: fixed;
  width: 100%;
}
#products-in-cart-sums tr {
  height: 40px;
  overflow: hidden;
  vertical-align: middle;
  text-align: center;
  border-top: 1px solid #00A1B1;
  border-bottom: 1px solid #00A1B1;
}
#products-in-cart-sums tr th {
  line-height: 40px;
  text-align: center;
  font-size: 12px;
}
#products-in-cart-sums tr th .shop-sum {
  font-size: 16px;
  color: #444444;
}
#products-in-cart-sums tr th .shop-sum.cheapest {
  font-weight: bold;
  color: #a1c149;
}
#products-in-cart-sums tr th:first-child {
  width: 301px;
  padding-left: 10px;
  text-align: left;
  color: #00A1B1;
  text-transform: uppercase;
  font-size: 16px;
}
#products-in-cart-sums tr th:last-child {
  width: 40px;
}
#products-in-cart {
  width: 100%;
  table-layout: fixed;
}
#products-in-cart tr {
  height: 48px;
  overflow: hidden;
  background: white;
  font-size: 12px;
}
#products-in-cart tr:first-child td {
  border-top-width: 0;
}
#products-in-cart tr td {
  vertical-align: middle;
  text-align: center;
  border: 1px solid #cccccc;
}
#products-in-cart tr td:nth-child(1) {
  width: 50px;
}
#products-in-cart tr td:nth-child(2) {
  width: 124px;
  padding: 0 8px;
  text-align: left;
  color: #444444;
}
#products-in-cart tr td:nth-child(3) {
  width: 40px;
}
#products-in-cart tr td:nth-child(4) {
  width: 80px;
  overflow: visible;
  position: relative;
  background-color: transparent;
}
#products-in-cart tr td:last-child {
  width: 40px;
}
#products-in-cart tr td.price {
  color: #444444;
  font-size: 12px;
}
#products-in-cart tr td.price.calced {
  opacity: 0.4;
}
#products-in-cart tr td.price.calced:before {
  content: '(';
}
#products-in-cart tr td.price.calced:after {
  content: ')';
}
#products-in-cart tr td.price.lowest {
  color: #83b00c;
  font-weight: bold;
}
.no-products {
  padding: 32px;
  text-align: center;
  margin: auto;
}
#products {
  table-layout: fixed;
  margin-right: 1px;
  width: 100%;
}
#products tr {
  height: 48px;
  overflow: hidden;
  border: 1px solid #e1e1e1;
  background: #ffffff;
}
#products tr:hover {
  background: #f9f4f7 !important;
}
#products tr.product-group-member {
  display: none;
}
#products tr.product-group-member.expanded {
  display: table-row;
}
#products tr.being-edited td .price,
#products tr.being-edited td .price-tooltip,
#products tr.being-edited td .icon {
  display: none;
}
#products tr .edit-controls {
  width: 100%;
  height: 100%;
  display: none;
}
#products tr .edit-controls .edit-price {
  height: 100%;
  width: 100%;
  position: absolute;
  font-size: 28px;
  color: #666666;
  font-weight: bold;
  left: 0;
  top: 0;
  line-height: 2em;
  text-align: center;
}
#products tr .edit-controls .modify-is-extra {
  position: absolute;
  right: 0;
  bottom: 0;
}
#products tr.being-edited .edit-controls {
  display: block;
}
#products tr td {
  border: 1px solid #e1e1e1;
  text-align: center;
  vertical-align: middle;
  overflow: hidden;
  font-size: 12px;
  height: 48px;
  transition: all 0.3s;
}
#products tr td img {
  height: 46px;
  width: 46px;
  margin-top: 2px;
}
#products tr td .icon {
  margin: auto;
  height: 20px;
  width: 20px;
  background-size: 100% 100%;
  margin-bottom: 3px;
}
#products tr td:nth-child(1) {
  width: 50px;
}
#products tr td:nth-child(2) {
  width: 124px;
  padding: 0 8px;
  text-align: left;
  color: #444444;
  line-height: 1.35em;
}
#products tr td:nth-child(3) {
  width: 40px;
}
#products tr td:nth-child(4) {
  width: 40px;
  overflow: visible;
  position: relative;
  background-color: transparent;
}
#products tr td:nth-child(n) {
  border-right: 1px solid #e1e1e1;
}
#products tr td.lowest {
  font-weight: bold;
  color: #83b00c;
}
#products tr td a {
  color: #444444;
}
#products tr td a:hover {
  text-decoration: underline;
}
#products tr td.akcija,
#products tr td.extra {
  cursor: pointer;
  font-weight: bold;
  position: relative;
  background: none !important;
  overflow: visible;
}
#products tr td.akcija:hover,
#products tr td.extra:hover {
  z-index: 10;
  border-right-width: 0;
}
#products tr td.akcija {
  color: #f7931e;
}
#products tr td.akcija .icon {
  background-image: url(../images/icons/akcija.png);
}
#products tr td.akcija:hover {
  box-shadow: 0 0 15px #f7931e inset;
}
#products tr td.extra {
  color: #00A1B1;
}
#products tr td.extra .icon {
  background-image: url(../images/icons/extra.png);
}
#products tr td.extra:hover {
  box-shadow: 0 0 15px #00A1B1 inset;
}
#products tr.odd {
  background: #fafafa;
}
#products tr.tab-delimiter {
  height: 32px;
}
#products tr.tab-delimiter a {
  color: #fff;
}
#products tr.tab-delimiter a:hover {
  text-decoration: underline;
}
#products tr.tab-delimiter td {
  height: 32px;
  border-right: none;
  background: #00A1B1;
  color: #ffffff;
  border: 1px solid #00A1B1;
}
#products tr.tab-delimiter td:nth-child(4) {
  position: static;
}
#products tr.tab-delimiter .delimiter-title {
  text-align: left;
  overflow: visible;
}
#products tr.tab-delimiter .delimiter-title span,
#products tr.tab-delimiter .delimiter-title h2 {
  font-size: 13px;
  display: block;
  overflow: visible;
  margin-left: 20px;
  position: relative;
  color: #fff;
  height: 32px;
  line-height: 32px;
  font-weight: bold;
  vertical-align: middle;
}
#products .product-atc {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}
#products .product-atc .cart-img {
  background-image: url(../images/icons/cart-small-empty.png);
  width: 100%;
  height: 100%;
  margin: auto;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  vertical-align: middle;
}
#products .product-atc:hover .cart-img {
  background-image: url(../images/icons/cart-small-full.png);
}
#products .product-atc .thingie {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  color: #ffffff;
  font-size: 9px;
  vertical-align: middle;
  background-color: #00A1B1;
  transition: all 0.3s;
  width: 0;
  height: 0;
}
#products .product-atc .thingie span {
  display: none;
}
#products .product-atc.added .cart-img {
  background-image: url(../images/icons/cart-small-green.png);
}
#products .product-atc.added .thingie {
  height: 16px;
  width: 16px;
  line-height: 16px;
}
#products .product-atc.added .thingie span {
  display: block;
}
#products .cart-panel-visuals {
  position: absolute;
  top: 8px;
  left: -57px;
  width: 90px;
  vertical-align: middle;
  border: 1px solid black;
  box-shadow: 4px 4px 10px #444444;
}
#products .cart-panel-visuals * {
  float: left;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 18px;
}
#products .cart-panel-visuals .minus,
#products .cart-panel-visuals .plus {
  display: block;
  background-color: #00A1B1;
  color: #ffffff;
  text-decoration: none;
}
#products .cart-panel-visuals .plus {
  background: #a1c149;
}
#products .cart-panel-visuals input {
  padding: 0;
  color: #444444;
  text-align: center;
  height: 28px;
  border: none;
}
#products tr.product-group {
  cursor: pointer;
}
#products tr.product-group .lowest {
  font-weight: normal !important;
  color: #444444 !important;
}
#products tr.product-group:hover .expand-decorator {
  width: 80px;
}
#products tr.product-group:hover .expand-triangle {
  left: 88px;
}
#products tr.product-group:hover .expand-icon {
  width: 32px;
  height: 32px;
  margin-top: 2px;
}
#products tr.product-group.expanded .expand-icon {
  transform: rotate(180deg);
}
#products tr.product-group .expand-icon {
  left: 10px;
  margin-top: 0;
  position: absolute;
  z-index: 120;
  width: 26px;
  height: 26px;
  background: url(../images/icons/down.png) 50% 50% no-repeat;
  background-size: 100% 100%;
  transition: 0.3s;
}
#products tr.product-group .expand-decorator {
  margin-left: 1px;
  margin-top: 1px;
  z-index: 100;
  position: absolute;
  width: 0;
  transition: 0.3s;
  height: 40px;
  overflow: hidden;
  background: #8471c9;
  color: #ffffff;
  line-height: 40px;
  vertical-align: middle;
  text-align: right;
}
#products tr.product-group .expand-triangle {
  margin-left: 1px;
  margin-top: 1px;
  z-index: 100;
  transition: 0.3s;
  left: 9px;
  position: absolute;
  border-style: solid;
  border-width: 40px 40px 0 0;
  border-color: #8471c9 transparent transparent transparent;
}
#products tr.product-group td {
  background: #edeaf7;
}
#products tr.product-group-member .pgm-imgname img {
  vertical-align: middle;
}
#products tr.product-group-member .pgm-imgname span {
  margin-left: 8px;
  vertical-align: middle;
}
#product-hover {
  padding: 5px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 18;
  display: block;
  -webkit-box-shadow: 0 1px 5px #555555;
  -moz-box-shadow: 0 1px 5px #555555;
  box-shadow: 0 1px 5px #555555;
  -webkit-border-radius: 3px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 3px;
  -moz-background-clip: padding;
  border-radius: 3px;
  background-clip: padding-box;
  background: #ffffff;
}
#product-hover img {
  width: 200px;
  height: 200px;
  margin-bottom: 2px;
}
#product-hover .name {
  width: 200px;
}
#simple-tt {
  padding: 5px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: block;
  max-width: 200px;
  text-align: center;
  -webkit-box-shadow: 0 1px 12px #222222;
  -moz-box-shadow: 0 1px 12px #222222;
  box-shadow: 0 1px 12px #222222;
  -webkit-border-radius: 3px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 3px;
  -moz-background-clip: padding;
  border-radius: 3px;
  background-clip: padding-box;
  background: #fafafa;
  font-size: 14px;
  color: #444444;
}
table .price-tooltip {
  visibility: hidden;
  z-index: 10;
}
td:nth-child(n+7) .price-tooltip {
  right: 100%;
  left: auto;
}
td:nth-child(n+7) .price-tooltip .large-icon {
  right: 0;
}
td:nth-child(n+7) .price-tooltip .content {
  margin-right: 60px;
  margin-left: 0;
  padding: 4px;
  height: 52px;
  overflow: hidden;
  text-align: center;
}
td:nth-child(n+7) .price-tooltip:before {
  left: inherit;
  right: -12px;
  top: 18px;
  border-width: 12px 0 12px 14px;
  border-color: transparent transparent transparent #f7931e;
}
td.extra:nth-child(n+7) .price-tooltip:before {
  border-right-color: transparent;
  border-left-color: #00A1B1;
}
td:hover .price-tooltip {
  width: 250px;
  opacity: 1;
  visibility: visible;
}
.price-tooltip {
  position: absolute;
  left: 100%;
  top: -7px;
  width: 60px;
  opacity: 0;
  transition: opacity 0.4s, width 0.4s 0.3s;
  box-shadow: 0 0 12px #666666;
  border: 1px solid #f7931e;
  border-radius: 2px;
  background: #fafafa;
  height: 60px;
  z-index: 100;
}
.price-tooltip:before {
  position: absolute;
  content: ' ';
  width: 0;
  height: 0;
  border-style: solid;
  left: -14px;
  top: 18px;
  border-width: 12px 14px 12px 0;
  border-color: transparent #f7931e transparent transparent;
}
.price-tooltip.activated {
  width: 250px;
  opacity: 1;
}
.price-tooltip span {
  font-weight: normal;
  color: #444444;
  font-size: 12px;
  width: 182px;
  display: inline-block;
}
.price-tooltip span.large {
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 3px;
}
.price-tooltip .large-icon {
  height: 60px;
  width: 60px;
  position: absolute;
}
.price-tooltip .content {
  margin-left: 60px;
  padding: 4px;
  height: 52px;
  overflow: hidden;
  text-align: center;
}
.price-tooltip .large-icon {
  background: #f7931e url(../images/icons/akcija-large.png) no-repeat 50% 40%;
}
.extra .price-tooltip,
.price-tooltip.extra {
  border-color: #00A1B1;
}
.extra .price-tooltip:before,
.price-tooltip.extra:before {
  border-right-color: #00A1B1;
}
.extra .price-tooltip .large-icon,
.price-tooltip.extra .large-icon {
  background-color: #00A1B1;
  background-image: url(../images/icons/extra-large.png);
}
.price-tooltip.detachable {
  display: none !important;
}
.price-tooltip.detached {
  pointer-events: none;
  display: block;
}
.bottom-navlinks {
  background: blue;
}
.bottom-navlinks a {
  margin: 8px;
  background: #00A1B1;
  color: white;
  font-weight: bold;
}

.bottom-navlinks .previous {
  padding: 8px 24px 8px 8px;
}
.bottom-navlinks .next {
  padding: 8px 8px 8px 24px;
}

.bottom-navlinks .previous {
  float: left;
}
.bottom-navlinks .previous:before {
  content: '<';
  padding: 0 10px;
}
.bottom-navlinks .next {
  float: right;
}
.bottom-navlinks .next:after {
  content: '>';
  padding: 0 10px;
}
/*******************************************************
* OVERLAYS
*******************************************************/
.right-static {
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
}





/*******************************************************
* BIG CART
*******************************************************/
#big-cart .controls,
#cart-compare .controls {
  width: 100%;
  height: 32px;
}
#big-cart .controls .title,
#cart-compare .controls .title {
  background: #a1c149;
  color: #ffffff;
  width: 30%;
  display: inline-block;
  position: absolute;
  height: 30px;
}
#big-cart .controls .title span,
#cart-compare .controls .title span {
  line-height: 30px;
  vertical-align: baseline;
  padding: 8px;
  font-weight: bold;
  font-size: 14px;
}
#big-cart .controls .actual-controls,
#cart-compare .controls .actual-controls {
  background: #00A1B1;
  color: #ffffff;
  display: inline-block;
  width: 70%;
  right: 0;
  position: absolute;
  height: 30px;
}
#big-cart .controls .actual-controls a,
#cart-compare .controls .actual-controls a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  padding: 4px 1em;
  margin: 4px;
}
#big-cart .controls .actual-controls a img,
#cart-compare .controls .actual-controls a img {
  margin-right: 3px;
  position: relative;
  top: 2px;
}
#big-cart .controls .actual-controls .close-overlay,
#cart-compare .controls .actual-controls .close-overlay {
  right: 0;
  position: absolute;
}
.close-btn {
width: 30px;
    height: 30px;
    background-color: #00A1B1;
    border-radius: 20px;
    position: absolute;
    right: 0;
    top: 0;
}
.close-btn + .close-overlay {
    color: #ffffff;
    position: absolute;
    top: 4px;
    right: 9px;
    font-size: 20px;
    font-weight: bold;
}
#big-cart {
  height: 610px;
}
#big-cart .table-container {
  height: 380px;
  overflow: auto;
}
#big-cart .explanation {
  width: 100%;
  height: 150px;
  overflow: hidden;
}
#big-cart .explanation .left-panel {
  color: white;
  text-transform: uppercase;
  font-size: 19px;
  width: 156px;
  height: 97px;
  padding: 12px;
  position: absolute;
  background: #a1c149;
}
#big-cart .explanation .left-panel h4 {
  text-align: right;
  margin-top: 12px;
  font-size: 28px;
}
#big-cart .explanation .left-panel h4 .rsd {
  vertical-align: top;
  font-size: 12px;
  top: 0;
  right: 0;
}
#big-cart .explanation .fine-print {
  margin-left: 180px;
}
#big-cart .explanation .fine-print p {
  font-size: 10px;
  margin: 0.4em;
}
#big-cart #products-in-cart {
  display: none;
}
#big-cart .no-products {
  display: block;
}
#big-cart.has-products #products-in-cart {
  display: table;
}
#big-cart.has-products .no-products {
  display: none;
}
#cart-compare {
  height: 500px;
}
#cart-compare .title {
  background-color: #00A1B1 !important;
}
#cart-compare .controls {
  width: 100%;
  height: 32px;
}
#cart-compare .table-container {
  height: 468px;
  overflow-y: auto;
}
#shops {
  table-layout: fixed;
}
#shops tr {
  height: 88px;
  border-bottom: 1px solid #444444;
}
#shops tr td {
  width: 20%;
  font-size: 16px;
}
#shops tr td.items {
  width: 40%;
}
#shops tr td.items p {
  border-left: 1px solid #666666;
  padding-left: 20px;
}
#shops tr td p {
  font-size: inherit;
  margin: 8px;
  color: #666666;
}
#shops tr td p.yes {
  color: #00A1B1;
}
#shops tr td.shop-image {
  text-align: center;
  vertical-align: middle;
}
#shops tr td.shop-image img {
  width: 60%;
  height: auto;
}
#shops tr td.yet-another-cart {
  color: #00A1B1;
  text-align: right;
  vertical-align: middle;
}
#shops tr td.yet-another-cart .shop-sum {
  font-size: 32px;
}
#shops tr td.yet-another-cart .shop-sum.cheapest {
  color: #83b00c;
}
#shops tr td.yet-another-cart .rsd {
  font-size: 12px;
  vertical-align: top;
  text-transform: uppercase;
}
#shops tr td.yet-another-cart .bottom-row {
  font-size: 14px;
  color: #a1c149;
}
#shops tr td.yet-another-cart .label-incomplete {
  display: none;
  color: #00A1B1;
}
#shops tr td.yet-another-cart .cart-icon {
  background: url(../images/icons/cart-small-green.png) 50% 50% no-repeat;
  width: 19px;
  height: 19px;
  display: inline-block;
}
#shops tr td.yet-another-cart.products-missing .label-complete {
  display: none;
}
#shops tr td.yet-another-cart.products-missing .label-incomplete {
  display: inline;
}
#shops tr td.yet-another-cart.products-missing .cart-icon {
  background-image: url(../images/icons/cart-small-full.png);
}
#shops tr .top-row,
#shops tr .bottom-row {
  padding-right: 12px;
}
#shops tr:last-child {
  border-bottom-width: 0;
}
/*******************************************************
* OVERLAYS
*******************************************************/
#prompt {
  position: absolute !important;
  margin-left: auto !important;
  margin-right: auto !important;
  left: 0;
  right: 0;
  max-width: 360px;
  top: 50px;
}
#prompt h3,
#prompt p,
#prompt a {
  margin: 20px;
}
#prompt a {
  width: 100px;
  padding: 10px;
  display: inline-block;
  text-align: center;
  font-weight: bold;
  color: #ffffff;
  background: #00A1B1;
}
#prompt a:last-child {
  float: right;
}


/*******************************************************
* USER PROFILE OPTIONS
*******************************************************/
body.user-profile .profile-title {
  width: 100%;
  background: #00A1B1;
  color: #ffffff;
}
body.user-profile .box-holder-style{
  overflow: auto;
}
body.user-profile header h1 {
    color: #ffffff;
    font-weight: bold;
    margin: 0;
    font-size: 20px;
}



body.user-profile .profile-title > * {
  padding: 0.6em 2em;
}
body.user-profile .profile-left {
  position: relative;
  width: 200px;
  float: left;
}

body.user-profile #content-header-no-fixed{
  padding: 10px 25px 10px 25px;
}


body.user-profile .profile-left .profile-img {
  background: white;
  border: 1px solid #00A1B1;
  border-radius: 4px;
  width: 180px;
  height: 180px;
  left: 10px;
  top: 10px;
}
body.user-profile .profile-left .profile-img img {
  width: 120px;
  height: 120px;
  margin: auto;
  top: 30px;
  left: 30px;
  position: relative;
}
body.user-profile .profile-left .profile-buttons {
  width: 180px;
  margin: 10px;
}
body.user-profile .profile-left .profile-buttons a {
  padding: 10px 0;
  font-size: 14px;
  width: 180px;
  top: 10px;
  display: block;
  position: relative;
  background: #00A1B1;
  color: #ffffff;
  text-align: center;
  vertical-align: middle;
  border-radius: 3px;
}
body.user-profile .profile-left .profile-buttons a:hover {
  background: #00A0B1;
}
body.user-profile .profile-content {
  width: auto;
  margin-left: 200px !important;
  margin-right: auto !important;
  text-align: left;
  padding: 20px;
}
body.user-profile .profile-content a {
  text-decoration: underline;
}
body.user-profile form label.required:after {
  content: '*';
}
body.user-profile form input + label.required:after {
  content: '';
}
body.user-profile form div ul {
  font-size: 12px;
  color: #3f5d6b;
}
body.user-profile form div ul + input {
  background: #faeeee !important;
  border-color: #e7b4b4 !important;
}
.login-full {
  width: 320px;
}
.login-full input[type=checkbox] + label {
  display: inline;
}
#cenoteka_user_registration_form {
  width: 320px;
  margin-left: 24px;
}


.flash-success{
    padding: 15px 15px 15px 20px;
    background-color: #f7931e;
    color: white;
    margin: 5px;
    -webkit-box-shadow: 0px 0px 30px -8px rgba(125,125,125,1);
    -moz-box-shadow: 0px 0px 30px -8px rgba(125,125,125,1);
    box-shadow: 0px 0px 30px -8px rgba(125,125,125,1);
}



form label.checkbox-label {
  margin-left: 30px;
  margin-bottom: 12px;
  padding-top: 6px;
}
form input[type="radio"] + label {
  display: inline-block;
  width: auto;
}
form .dates input[type="text"] {
  width: 30px;
}
form .dates input[type="text"]:nth-child(3) {
  width: 50px;
}
form input[type="text"],
form input[type="password"],
form input[type="email"],
form textarea {
  border: 1px solid #e1e1e1;
  background: #fafafa;
  color: #444444;
  padding: 6px;
  border-radius: 3px;
  width: 100%;
  max-width: 500px;
}
form input[type="submit"] {
  background: #00A1B1;
  color: #ffffff;
  width: 200px;
  height: 32px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
form input[type="submit"]:hover {
  background: #3F5D6B;
}
form label {
  font-size: 12px;
  color: #666666;
  display: block;
  margin-bottom: 3px;
}
form input,
form select {
  margin-bottom: 12px;
}
form p {
  color: #3f5d6b;
  font-size: 14px;
}
select {
  border: 1px solid #e1e1e1;
  background: #fafafa;
  color: #444444;
  padding: 6px;
  border-radius: 3px;
}
body.user-profile .profile-content,
#cenoteka_user_registration_form,
body.login {
  text-align: left;
}
body.user-profile .profile-content p,
#cenoteka_user_registration_form p,
body.login p {
  font-size: 12px;
  color: black;
  margin-bottom: 20px;
  margin-top: 5px;
}
body.user-profile .profile-content input[type="checkbox"],
#cenoteka_user_registration_form input[type="checkbox"],
body.login input[type="checkbox"] {
  position: absolute;
  left: 0;
  top: 0;
}
.user-profile input[type="submit"] {
  background: #00A1B1;
  color: #ffffff;
  width: 200px;
  height: 32px;
  cursor: pointer;
}
.user-profile #content-header {
  height: 32px;
}
.user-profile #content-header h3 {
  background: #00A1B1;
  color: #ffffff;
  height: 32px;
  line-height: 32px;
  vertical-align: middle;
  text-align: left;
  padding-left: 2em;
  border-radius: 2px;
  margin-left: 4px;
  margin-right: 4px;
}

body.login label {
  margin-bottom: 8px;
}
body.login input {
  margin-bottom: 22px;
}
body.login input[type=checkbox] {
  position: relative !important;
  left: auto !important;
  top: auto !important;
}
body.contact input {
  display: block;
}

body.contact header h1 {
    color: #ffffff;
    font-weight: bold;
    margin: 0;
    font-size: 20px;
}




body.contact .contact-form {
  width: 460px;
}
body.contact p {
  margin: 10px 10px;
  color: #444444;
}
body.contact a {
  color: #00A1B1;
}
body.contact input[type="text"],
body.contact input[type="password"],
body.contact input[type="email"],
body.contact textarea {
  border: 1px solid #e1e1e1;
  background: #fafafa;
  color: #444444;
  padding: 6px;
  border-radius: 3px;
  width: 100%;
  margin-bottom: 12px;
}
body.contact textarea {
  height: 5em;
}
/*******************************************************
* ADMIN PANEL
*******************************************************/
.login-admin .user-profile-controls {
  background: #fff;
}
.login-admin body {
  background: #e1e1e1;
}
.fancy-upload-container {
  width: 200px;
  height: 80px;
  display: inline-block;
  margin: 12px;
  padding: 12px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  transition: background 0.5s;
}
.fancy-upload-container:hover {
  background: rgba(0, 0, 0, 0.2);
}
.fancy-upload-container.dragover {
  background: rgba(0, 128, 0, 0.3);
}
.fancy-upload {
  width: 64px !important;
  height: 80px !important;
  background-image: url(../images/file_empty.png);
  background-position: 50% 50%;
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding: 0 !important;
  cursor: pointer;
}
.fancy-upload.has-file {
  background-image: url(../images/file_full.png);
}
.fancy-upload input {
  display: block !important;
  width: 64px !important;
  height: 80px !important;
  opacity: 0 !important;
  overflow: hidden !important;
  cursor: pointer;
}
.fancy-upload label {
  display: block !important;
  margin-left: 80px;
  position: absolute;
  line-height: 80px;
  height: 80px;
  vertical-align: middle;
  top: 0;
  cursor: pointer;
  overflow: hidden  ;
}
.fancy-upload .filepath {
  color: #808080;
  font-size: 0.8em;
  display: none;
  position: absolute;
  overflow: hidden;
  left: 0;
  bottom: -0.8em;
  width: 200px;
}
.fancy-upload.has-file .filepath {
  display: block;
}
.separator {
  width: 94%;
  height: 1px;
  background: grey;
  margin: auto;
  border-bottom: 1px solid white;
}
.logs p {
  font-size: 12px;
  color: #666666;
}
#table-feature-candidates {
  width: 100%;
}
#table-feature-candidates tr.suspicious {
  background-color: #ffe6e6;
}
#table-feature-candidates td {
  padding: 4px;
  border: 1px solid #666666;
  width: 50px;
  vertical-align: middle;
  text-align: center;
}
#table-feature-candidates td.lowest {
  background: #e6f2e6;
  font-weight: bold;
  color: green;
}
#table-feature-candidates td.akcija {
  background: #fde9d2;
  font-weight: bold;
  color: #f7931e;
}
#table-feature-candidates td:nth-child(1) {
  width: 18px;
}
#table-feature-candidates td:nth-child(2) {
  text-align: left;
  width: 40px;
}
#table-feature-candidates td:nth-child(3) {
  text-align: left;
  width: 150px;
}
#table-feature-candidates td .percentage {
  color: #3F5D6B;
  font-weight: bold;
}
#table-feature-candidates .suspicious .percentage {
  color: #3f5d6b;
  font-weight: bold;
}
.button-link {
  background: #00A1B1;
  color: #ffffff;
  width: 200px;
  height: 32px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  display: inline-block;
  font-size: 12px;
  padding: 0 10px;
  line-height: 32px;
  text-align: center;
}
.button-link:hover {
  background: #3F5D6B;
}
.feature-progress ul {
  position: relative;
  display: block;
  padding: 10px 0;
}
.feature-progress ul li {
  display: inline-block;
}
.crud.infopage table.records_list td * {
  max-height: 40px;
}
.customgroup #cenoteka_appbundle_articlegroup_articles {
  display: none;
}
.customgroup ul#selected-products,
.customgroup ul#found-products {
  width: 400px;
  list-style-type: none;
}
.customgroup ul#selected-products li,
.customgroup ul#found-products li {
  padding: 8px;
  display: block;
  margin: 2px;
  border: 1px solid #00A1B1;
  border-radius: 4px;
  color: #00A1B1;
  position: relative;
  transition: all 0.3s;
}
.customgroup ul#selected-products li.being-dragged,
.customgroup ul#found-products li.being-dragged {
  background: #cce6cc;
}
.customgroup ul#selected-products li.drag-target,
.customgroup ul#found-products li.drag-target {
  background: #ccccff;
  position: relative;
}
.customgroup ul#selected-products li.drag-target:before,
.customgroup ul#found-products li.drag-target:before {
  content: ' ';
  position: absolute;
  left: -9px;
  top: -18px;
  display: block;
  width: 32px;
  height: 32px;
  background: url(../images/icons/pointer-arrow.png);
}
.customgroup ul#selected-products li span.plus,
.customgroup ul#found-products li span.plus {
  opacity: 0.5;
  position: absolute;
  color: white;
  font-size: 34px;
  top: 0;
  right: 0;
  padding: 5px;
  height: 15px;
  line-height: 8px;
  margin: 4px;
  border-radius: 2px;
  box-shadow: 0 0 4px black;
}
.customgroup ul#selected-products li:hover span.plus,
.customgroup ul#found-products li:hover span.plus {
  opacity: 1.0;
}
.customgroup ul#selected-products span.plus {
  background: red;
}
.customgroup ul#found-products li:hover {
  background: #f3f7e7;
}
.customgroup ul#found-products span.plus {
  background: #83b00c;
}
.customgroup #interactive-product-finder {
  max-width: 400px;
  margin: 10px 0;
  padding: 8px 5px;
  font-size: 25px;
}
.mceEditor table {
  width: 700px !important;
}
.mceIframeContainer iframe {
  height: 200px !important;
}
body.crud h1 {
  margin: 0.6em 0;
}
body.crud table.records_list {
  width: 90%;
  font-size: 14px;
}
body.crud table.records_list th,
body.crud table.records_list td {
  padding: 0.6em;
  overflow: hidden;
  text-align: left;
}
body.crud table.records_list th:last-child,
body.crud table.records_list td:last-child {
  width: 200px;
}
body.crud table.records_list th:last-child ul li,
body.crud table.records_list td:last-child ul li {
  float: left;
  margin-left: 10px;
}
body.crud table.records_list th:last-child ul li a,
body.crud table.records_list td:last-child ul li a {
  color: #00A1B1;
  font-weight: bold;
}
body.crud table.records_list th {
  border: 1px solid grey;
  border-bottom: 2px solid black;
}
body.crud table.records_list td {
  border: 1px solid lightgrey;
}
body.crud table.record_properties {
  width: 400px;
  font-size: 14px;
}
body.crud table.record_properties th,
body.crud table.record_properties td {
  overflow: hidden;
  text-align: left;
  border: 1px solid grey;
  padding: 0.6em;
}
body.crud table.record_properties th {
  font-weight: bold;
}
body.crud #content form > div {
  margin-left: 0;
}
body.crud #content > ul {
  border-top: 1px solid grey;
  border-bottom: 1px solid grey;
  margin: 2em 0;
}
body.crud #content > ul li {
  padding: 0.5em 0;
}
body.crud #content > ul li a,
body.crud #content > ul li input[type="submit"],
body.crud #content > ul li button {
  padding: 0.5em;
  background: #00A1B1;
  color: white;
  display: inline-block;
  margin: 0 20px;
  width: 200px;
}
#relators {
  display: none;
}
/********************************************************
* ADMIN EDIT
*******************************************************/
.admin-edit-list .category {
  margin: 1em;
  padding: 12px;
}
.admin-edit-list .category h1 {
  margin: 1em;
  font-size: 24px;
  font-weight: bold;
  color: #f7931e;
}
.admin-edit-list .category h2 {
  margin: 1em;
  font-size: 20px;
  font-weight: bold;
  color: #00A1B1;
}
.admin-edit-list .category .subcategory {
  margin: 1em;
  border: 1px solid black;
}
.admin-edit-list .category form > div {
  margin: 1em;
  position: relative;
  display: block;
}
.admin-edit-list .category form label {
  width: 21%;
  position: absolute;
  text-align: right;
  margin-right: 1em;
}
.admin-edit-list .category form input,
.admin-edit-list .category form textarea,
.admin-edit-list .category form select {
  margin-left: 24%;
  width: 70%;
}
.admin-edit-list .category form select {
  width: auto;
}
.admin-edit-list .category form button[type="submit"] {
  padding: 10px 16px;
  background: #ffd091;
  font-size: 15px;
}
/*******************************************************
*     PROMO MODIFICATIONS
*******************************************************/
/*#subcategories.has-promo {
  width: 964px;
}*/
#subcategories.has-promo .category-window-image {
    opacity: 1.0;
    top: 90px;
    right: 65px;
    width: 300px;
    height: 250px;
    
}
#subcategories.has-promo .header .promo-info {
  position: absolute;
  right: 0;
  top: 0;
  display: none;
}
.delimiter-title {
  position: relative;
}
.delimiter-title .delimiter-title-div {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  width: 400px !important;
}
.promo-tab-block {
  position: absolute !important;
  top: 0;
  right: 0;
}
.promo-tab-block img {
  width: auto !important;
  height: auto !important;
  margin-top: 0;
}
#products.promo tr.tab-delimiter {
  height: 52px;
}
#products.promo tr.tab-delimiter .delimiter-title span,
#products.promo tr.tab-delimiter .delimiter-title h2 {
  color: white;
  height: 50px;
  line-height: 50px;
}
#products.promo tr.tab-delimiter .delimiter-title .delimiter-title-div {
  background-color: #00A1B1;
  width: 918px !important;
}
#products.promo tr.tab-delimiter .delimiter-title .delimiter-title-div .promo-tab-block {
  width: 100%;
}
#products.promo tr.tab-delimiter .delimiter-title .delimiter-title-div .promo-tab-block span,
#products.promo tr.tab-delimiter .delimiter-title .delimiter-title-div .promo-tab-block h2 {
  position: absolute;
  right: 330px;
  text-align: right;
  top: 0;
}
#products.promo tr.tab-delimiter .delimiter-title .delimiter-title-div .promo-tab-block img {
  position: absolute;
  right: 0;
  top: 0;
  margin-top: 0;
}
/******************************************************
* CATEGORY PAGE
******************************************************/
.category-page ul.sclist {
  width: 650px;
  margin: auto;
  overflow: auto;
}
.category-page ul.sclist li {
  width: 150px;
  height: 80px;
  position: relative;
  border-radius: 5px;
  border: 1px solid #00A1B1;
  float: left;
  margin: 5px;
  vertical-align: middle;
  transition: all 0.3s;
}
.category-page ul.sclist li:hover {
  background: rgba(130, 33, 101, 0.3);
  color: white;
  box-shadow: 0 0 8px #666666;
}
.category-page ul.sclist li:hover a {
  color: white;
}
.category-page ul.sclist li:hover img {
  opacity: 0.2;
}
.category-page ul.sclist li a {
  transition: all 0.3s;
  font-weight: bold;
  position: relative;
  display: block;
  vertical-align: middle;
  text-align: center;
  width: 130px;
  padding: 20px 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}
.category-page ul.sclist li img {
    position: absolute;
    width: auto;
    height: 40px;
    background-size: 100%;
    top: 0;
    left: 20px;
    /* opacity: 0.08; */
    transition: all 0.3s;
}
/*******************************************************
* PRODUCT PAGE
*******************************************************/
em {
  font-style: italic;
}
strong {
  font-weight: bold;
}
.article-page div.below-table {
  width: 100%;
}


#content-header-no-fixed{
  background-color: #00A1B1;
  padding: 21px 25px 21px 25px;
}

.single-page-container{
  padding: 0px 30px 30px 30px;
}

.single-page-container .box-title{
  margin-bottom: 20px;
}

.product-price-container{
  overflow: auto;
  padding: 15px;
}
.article-page header h1 {
  color: #ffffff;
  font-weight: bold;
  margin: 0;
  font-size: 20px;
}
.article-page h2 span.right,
.article-page header h1 span.right {
  float: right;
}
.article-page #nochart {
  height: 128px;
  line-height: 128px;
  text-align: center;
  border: 2px dashed #cccccc;
  margin: 40px 10px;
}
.article-page .description h3 {
  text-align: center;
  font-size: 14px;
  color: #666666;
}
.article-page .description p{
    line-height: 20px;
    font-size: 14px;
}

.article-page .information h3 {
  font-size: 14px;
  position: absolute;
  color: #444444;
  font-weight: bold;
  left: 0;
  width: 200px;
  overflow: hidden;
}
.article-page .information p {
  font-size: 14px;
  color: #666666;
  margin-left: 200px;
  margin-bottom: 12px;
}
.article-page div.left {
  width: 210px;
  padding: 2px;
  float: left;
}
.article-page div.left > * {
  margin-bottom: 10px;
}
.article-page div.left a {
  display: block;
  background-color: #00A1B1;
  color: #ffffff;
  font-size: 12px;
  text-align: center;
  padding: 10px 0;
  width: 100%;
  text-transform: uppercase;
  font-weight: bold;
  position: relative;
  transition: all 0.3s;
  border-radius: 5px;
}
.article-page div.left a:hover {
  background-color: #3F5D6B;
}
.article-page div.left a:hover img {
  left: 7px;
}
.article-page div.left a img {
  transition: all 0.3s;
  position: absolute;
  width: 20px;
  height: 20px;
  left: 14px;
  top: 7px;
}
.article-page div.left .img-container {
  border-radius: 3px;
  border: 1px solid #00A1B1;
  padding: 3px;
}
.article-page div.left .img-container img {
  width: 200px;
  height: 200px;
}
.article-page div.right {
  float: left;
  margin-left: 20px;
}
.article-page div.more-right {
  float: left;
  margin-top: 30px;
  margin-bottom: 20px;
  margin-left: 25px;
  border: 1px solid #00A1B1;
  border-radius: 3px;
  padding: 3px;
}
.article-page table#article-details{
  border: 1px solid #00A1B1;
}

.article-page table#article-details tr:first-child td {
  border-top: 1px solid #666666;
}


.article-page table#article-details th {
  background-color: #00A1B1;
  height: 40px;
  border-bottom: 1px solid #00A1B1;
  vertical-align: middle;
  color: #fff;
  text-align: center;
  text-height: 40px;
  font-size: 14px;
  font-weight: bold;
}

.article-page table#article-details:last-child th {
padding-right: 10px;
}



.article-page table#article-details td{
  height: 40px;
  border-bottom: 1px solid #00A1B1;
  vertical-align: middle;
  text-height: 40px;
  padding-left: 5px;
}


.article-page table#article-details td.shop {
    vertical-align: middle;
    width: 95px;
    text-align: center;
}
.article-page table#article-details td.shop img {
  height: 30px;
  margin: 4px 0;
}
.article-page table#article-details td.value {
  font-size: 15px;
  font-weight: bold;
  color: #666666;
  line-height: 40px;
  text-align: center;
  width: 140px;
}
.article-page table#article-details span.rsd {
  text-transform: uppercase;
  vertical-align: super;
  font-size: 0.65em;
}
.article-page table#article-details td.icon {
  width: 50px;
  text-align: left;
}
.article-page table#article-details tr.lowest td.value {
  color: #83b00c;
  font-size: 1.1em;
}
.article-page table#article-details tr.ekstra td.value {
  color: #00A1B1;
}
.article-page table#article-details tr.akcija td.value {
  color: #f7931e;
}
.article-page table#article-details td.icon div {
  width: 30px;
  height: 30px;
  display: inline-block;
  background-size: 100%;
}
.ekstra td.icon div {
  background-image: url(../images/icons/extra.png);
}
.akcija td.icon div {
  background-image: url(../images/icons/akcija.png);
}
.carousel-stage td.icon {
  text-align: center;
}
.carousel-stage td.icon div {
  width: 20px;
  height: 20px;
  display: inline-block;
  background-size: 100%;
}
/*******************************************************
* ARTICLE CONTROL PANEL
*******************************************************/
.article-control-panel .acp-container a {
  margin: 10px;
}
.article-control-panel .acp-container p {
  margin: 20px;
}
.article-control-panel .pricelist-container {
  margin: 8px;
  padding: 6px 0;
  overflow-x: auto;
}
.article-control-panel .pricelist-container h3 {
  padding: 5px;
  background-color: #00A1B1;
  color: white;
}
.article-control-panel .pricelist-container ul.pricelist {
  width: auto;
}
.article-control-panel .pricelist-container ul.pricelist li.price-history {
  display: inline-block;
  width: 120px;
}
.article-control-panel .pricelist-container ul.pricelist li.price-history span.date {
  color: grey;
  font-size: 10px;
}
.article-control-panel .pricelist-container ul.pricelist li.price-history span.price {
  font-weight: bold;
  color: #444444;
  font-size: 11px;
}
/*******************************************************
* LOGIN
*******************************************************/
#login-panel {
  width: 420px;
  margin: auto !important;
  margin-top: 130px !important;
}
#login-panel p.message {
  display: none;
  font-size: 12px;
  color: #666666;
  margin-top: 40px;
  padding: 0 32px;
}
#login-panel .login {
  padding: 32px;
}
#login-panel .login .row input[type="text"],
#login-panel .login .row input[type="password"],
#login-panel .login .row input[type="email"] {
  border: 1px solid #e1e1e1;
  background: #fafafa;
  color: #444444;
  padding: 6px;
  border-radius: 3px;
  width: 100%;
}
#login-panel .login .row label {
  font-size: 12px;
  color: #666666;
  display: inline-block;
  margin-bottom: 3px;
}
#login-panel .login .row label a {
  color: #00A1B1;
  font-weight: bold;
}
#content form > div {
  margin-left: 24px;
}
.footer-wraper{
  margin: auto;
}
footer {
    border-top: 2px solid #00A1B1;
    padding: 15px;
    overflow: auto;
}
footer .column h3 {
  color: #00A1B1;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 5px;
  border-width: 0;
  text-align: left;
  font-weight: bold;
}
footer .column a {
  font-size: 12px;
}
footer .column a:hover {
  text-decoration: underline;
}
footer .social-media {
  height: 32px;
  text-align: center;
}
footer .social-media li {
  display: inline;
}
footer .social-media li img {
  width: 24px;
  height: 24px;
}
footer .social-media li img.normal {
  position: absolute;
}
footer .social-media li img.over {
  visibility: hidden;
}
footer .social-media li:hover img.normal {
  visibility: hidden;
}
footer .social-media li:hover img.over {
  visibility: visible;
}
footer .copyright {
  color: #666666;
  text-align: center;
  padding: 10px;
}
footer .powered {
  text-align: center;
  padding: 10px;
}
footer .powered img.normal {
  position: absolute;
}
footer .powered img.over {
  visibility: hidden;
}
footer .powered:hover img.normal {
  visibility: hidden;
}
footer .powered:hover img.over {
  visibility: visible;
}
#login-panel label a:hover,
.login-full label a:hover {
  text-decoration: underline;
}
.diag {
  font-size: 14px;
  color: #666666;
  padding: 20px 10px;
}
.table-container {
  display: block;
  max-height: 600px;
  overflow-y: auto;
  text-align: center;
  margin: auto;
}
table#users {
  margin: auto;
  border: 1px solid grey;
}
table#users tr {
  text-align: center;
  vertical-align: middle;
  color: black;
  font-size: 12px;
  background: #fafafa;
  height: 32px;
}
table#users tr.admin td:first-child {
  color: #0044cc;
  font-weight: bold;
}
table#users tr.super_admin td:first-child {
  color: #cc4400;
  font-weight: bold;
}
table#users tr.disabled {
  color: #666666;
  opacity: 0.5;
}
table#users tr:nth-child(odd) {
  background: #efefef;
}
table#users tr .male {
  color: #718abd;
  font-weight: bold;
}
table#users tr .female {
  color: #bd8a71;
  font-weight: bold;
}
table#users tr td,
table#users tr th {
  vertical-align: middle;
  border: 1px solid #cccccc;
  padding: 0 1em;
  color: inherit;
}
table#users tr th {
  border-bottom: 1px solid grey;
}
/*******************************************************
* STATIC PAGES
*******************************************************/
/*body.info #content-header,
body.error #content-header {
  height: 32px;
}
body.info #content-header h1,
body.error #content-header h1 {
  background: #00A1B1;
  color: #ffffff;
  height: 32px;
  line-height: 32px;
  vertical-align: middle;
  text-align: left;
  padding-left: 2em;
  border-radius: 2px;
  margin-left: 4px;
  margin-right: 4px;
}*/
/*body.info #content,
body.error #content {
  padding-left: 32px;
  padding-right: 32px;
}*/
/*
body.info #content h1,
body.error #content h1 {
  text-transform: uppercase;
  color: #00A1B1;
  text-decoration: underline;
  margin: 1em 0;
  font-size: 16px;
}
*/
.static-page-container{
  padding: 20px 30px 30px 30px;
}
body.info header h1 {
    color: #ffffff;
    font-weight: bold;
    margin: 0;
    font-size: 20px;
}


body.info #content h2,
body.error #content h2 {
  color: #00A1B1;
  font-weight: bold;
  margin: 1em 0;
  font-size: 14px;
  line-height: 16px;
}
body.info #content p,
body.error #content p {
  margin: 1em 0;
  font-size: 14px;
  color: #666666;
  text-align: justify;
  line-height: 16px;
}
body.info #content p a,
body.error #content p a {
  font-weight: bold;
  color: #00A1B1;
}
body.info #content ol,
body.error #content ol {
  counter-reset: item;
}
body.info #content ol li,
body.error #content ol li {
  color: #00A1B1;
  font-weight: bold;
  font-size: 14px;
  display: block;
  margin-left: 20px;
  margin-top: 12px;
}
body.info #content ol li:before,
body.error #content ol li:before {
  content: counters(item, ".") " ";
  counter-increment: item;
  font-weight: bold;
  color: #555;
}
body.info #content ol li ol li,
body.error #content ol li ol li {
  font-size: 14px;
  font-weight: normal;
  color: #666666;
  text-align: justify;
}
body.info #content ol li ol li ul li,
body.error #content ol li ol li ul li {
  margin-top: 12px;
  margin-left: 20px;
  font-size: 12px;
}
body.info #content ol li ol li ul li:before,
body.error #content ol li ol li ul li:before {
  content: '';
  counter-increment: none;
}
/*******************************************************
* RESPONSIVE
*******************************************************/
@media (max-width: 1072px) {
  .category-page ul.sclist {
    width: 500px;
  }
}
@media (max-width: 1230px) {
  .homepage .two-columns {
    width: 100%;
    height: 770px;
  }
  .homepage .two-columns .left,
  .homepage .two-columns .right {
    position: relative;
    display: block;
    float: none;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 20px;
  }

}

@media screen and (max-width: 1300px) {

.width-size-limit{
  max-width: 998px;
  min-width: 998px;
}
.leaderboard-banner {
  margin: 0px 0px 10px 0px;
}

.power-banner {
  margin: 0px 0px 10px 0px;
}

#content{
  width: 690px;
}

#static-right{
  width: 306px;
  top: 75px;
}
.right-side-box{
  padding: 0;
}
.logo{
  background-size: 90px;
}
.box-holder-style{
      margin: 10px 2px 5px 2px;
}
.box-title{
  font-size: 18px;
}
.user-profile-controls .wrap {
    padding: 15px 15px 15px 15px;
}
.user-profile-controls {
    margin: 5px 5px 20px 0px !important;
  }
.cart-overview{
  height:58px; 
}
.cart-card-front, .cart-card-back{
  height: 59px;
}
.cart-overview-fixed{/*
  width: 303px;
  top: 60px;*/
}

.sidebar-title {
    width: 95%;
    padding: 3px 0px 5px 0px;
    margin-bottom: 0px;
    }

.cart-compare{
  padding: 10px;
}
.standard-banner{
  margin-left: 1px;
  margin-bottom: 10px;
}
.half-page-banner{
  margin-left: 1px;
  margin-bottom: 10px;
}

header#top{
  height: 70px;
}
.top-wrapper{
  height: 70px;
}
#main-menu ul li{
  width: 68px;
  height: 70px;
}

.top-wrapper .logo {
    width: 130px;
    height: 60px;
    vertical-align: top;
    padding-top: 7px;
    }


  #main-menu ul li img {
    vertical-align: middle;
    width: 40px;
    margin-left: 15px;
    margin-top: 15px;
  }

  #main-menu ul li a {
    width: 67px;
    height: 70px;
  }

  #subcategories {
    width: 819px;
    margin-left: -365px;
    top: 70px;
    height: 360px;
  }
#subcategories.has-promo .category-window-image{
  top: 75px;
}

  #content .banner {
        margin: 0px 0 20px 0;
  }

  #search-box-large{
    font-size: 14px;
  }
  .large-search-box-holder a .search-box-icon{
    left: 360px;
    width: 40px;
    height: 30px;
  }
  .search-box-icon{
    top: 13px;
  }
  .large-search-box-holder a .search-box-icon:before {
    left: -5px;
    height: 25px;
    top: 2px;
  }

  .uputstvo-button span.larger{
    font-size: 15px;
    margin-left: 30px;
  }

  .uputstvo-button span.icon{
    font-size: 24px;
  }

  .combo-carousel .stage ul li{
    width: 646px;
  }
  .combo-carousel .stage ul li .pc-img-left{
    margin-left: 80px;
  }
  .combo-carousel .stage ul li .pc-img-left img{
    width: 250px;
  }
  .combo-carousel .stage ul li table img{
    width: 80px;
  }
  .combo-carousel .stage ul li table{
    margin-left: 25px;
  }
  .combo-carousel .prev-stage, .combo-carousel .next-stage{
    width: 40px;
    height: 40px;
    font: 50px/34px Arial, sans-serif;
  }
  .combo-carousel .prev-stage {
    left: 10px;
    text-indent: 10px;
  }
  .combo-carousel .next-stage {
    right: 10px;
    text-indent: 14px;
  }
  .combo-carousel .navigation .carousel-navigation li img {
    width: 75px;
    height: auto;
  }
  .combo-carousel .stage ul li h2{
    font-size: 22px;
  }
  .box-subtitle h2{
    font-size: 18px;
    line-height: 20px;
  }
  .cart-overview .price-row {
    padding: 6px 4px 4px 8px;
  }
  .price-row .rollover-container, .savings-row .rollover-container{
    width: 180px;
  }
  .cart-overview .counter-box span{
    font-size: 12px;
    line-height: 24px;
  }
  .cart-overview .counter-box{
    width: 35px;
  }
  .cart-overview .rsd{
    font-size: 15px;
  }
  #overlay .overlay-window-container .overlay-window{
    margin-top: 20px;
  }
  .cart-overview-btn{
    font-size: 14px;
  }
  .category-header{
    height: 47px;
  }
 .category-header .search-box-icon {
    top: 7px;
  }
  #products tr td:nth-child(2) {
  width: 100px;
}
  .productlist-header td:first-child {
      width: 185px;
  }
  #search-box{
    width: 143px;
  }
  .productlist-header img{
    height: 20px;
  }
  .fixed-header {
    top: 60px;
    width: 685px;
  }
  .article-page table#article-details td.shop img{
    height: 20px;
  }
  .article-page table#article-details td.shop {
    width: 60px;
  }
  .article-page table#article-details:last-child th{
    padding-right: 0px;
  }
  .article-page table#article-details tr.lowest td.value {
    font-size: 0.9em;
  }
  .article-page table#article-details td.value {
    font-size: 13px;
  }
  .article-page table#article-details td.value {
    width: 50px;
  }
  .article-page table#article-details td.icon div {
    width: 20px;
    height: 20px;
  }
  .article-page table#article-details th{
    font-size: 12px;
  }
  .article-page table#article-details td.icon {
    width: 40px;
    text-align: center;
  }
  .product-price-container{
    padding:7px;
  }
  .article-page div.left .img-container img {
    width: 150px;
    height: auto;
  }
  .article-page div.left {
    width: 156px;
  }
  .article-page div.right{
    margin-left: 2px;
    margin-top: 2px;
  }
  .article-page div.more-right{
    margin-left: 5px;
    margin-top: 2px;
    padding: 1px;
  }
.article-page header h1 {
    font-size: 16px;
  }
.article-page div.left a {
    padding: 10px 0px 10px 0px;

}
.article-page div.left a img {
    left: 10px;
    width: 15px;
    height: 15px;
    top: 10px;
  }
  #products.promo tr.tab-delimiter .delimiter-title .delimiter-title-div {
      width: 684px !important;
}






}
/******************************************************
* PRINT
*******************************************************/
@media screen {
  body > .print-this {
    display: none;
  }
}
@media print {
  body > * {
    display: none;
  }
  .do-not-print {
    display: none;
  }
  body > .print-this {
    display: block !important;
  }
  #big-cart,
  #big-cart .table-container {
    height: initial;
    max-height: none;
    overflow-y: hidden;
  }
  th:last-child,
  td:last-child {
    display: none;
  }
  .price,
  .shop-sum {
    font-size: 14px;
  }
}



#sd-mn-cont {
    display: none;
}
#mainh {
    display: none;
}
.respShow {
    display: none;
}
@media (max-width: 1300px) {
    .width-size-limit {
        max-width: 100%;
        min-width: 100%;
    }
    #content {
        width: 100%;
    }

}
@media (max-width: 1200px) {

}

@media (max-width: 1180px) {

}

@media (max-width: 1050px) {

}

@media (max-width: 960px) {
    #overlay {
        background:rgba(0, 161, 177,0.6);
        z-index: 999999999;
    }
    #site-content{
        background-color: #FFF;
    }

    #MobBcont, #related-posts-via-taxonomies-list a, #sd-mn {
        overflow: hidden
    }
    #static-right {
        /*display: none;*/
}
    #static-right .user-profile-controls.box-holder-style{
        display: none;
    }
    .right-side-box.box-holder-style {
        display: none !important;
    }
    .homepage .user-profile-controls {
        display: none !important;
    }
    .top-wrapper {
        display: none;
    }
    .mainh .hdr-cell, .slide, .slide .inner {
        vertical-align: middle
    }

    html {
        margin: 0 !important
    }
    #mainh {
        display: block;
        z-index: 6666666;
    }
    .respHide {
        display: none
    }
    .respShow {
        display: block;
    }
    #sidebar.right {
        width: 100%;
    }

    #sitercont {
        margin-top: 56px
    }


    #sitercont .masthead {
        display: none
    }
    #content-wrapper {
        padding-top: 0px;
    }
    .hdr-logo {
        float: right;
        margin: 3px;
        /*max-width: 130px;*/
    }
    .hdr-logo .span4 {
        width: 100%; color:#FFF; margin:0px;
    }

    #site-navigation {
        height: 80px
    }
    /*.combo-carousel .stage ul li {*/
        /*width: 100%;*/
    /*}*/
    #sd-mn-cont {
        display: block;
        overflow-y: scroll;
    }

    .page-template-template-full-width-php .site-content {
        width: 100% !important
    }

    .single .maincontent .container:first-child {
        box-shadow: none
    }

    .archive .bettingoffer .readmoreYb {
        font-size: 12px;
        width: 200px
    }

    #primary.is_category article.betting-offer {
        max-width: 50%
    }

    .searchForm {
        width: 100% !important;
        border: 1px solid #CCC
    }

    #MobBcont, #MobCcont {
        width: 100%
    }

    #MobBcont {
        position: relative
    }

    .menu-open #MobCcont {
        height: 0
    }


    .menu-open #menu-overlay {
        position: absolute;
        z-index: 1000000;
        top: 0;
        opacity: 0;
        bottom: 0;
        right: 0px;
        cursor: pointer;
        width: 100%;
        background: rgba(0, 161, 177,0.2);
    }

    #sd-mn {
        width: 240px;
        overflow-y: scroll;
        float: right;
        right: -240px;
        position: absolute;
        background-color: #00a1b1;
        height: 100%;
        /*box-shadow: inset -2px 0px 25px rgba(0,0,0,.15);*/
        /*-webkit-box-shadow:  inset -2px 0px 25px rgba(0,0,0,.15);*/
        z-index: 66;
    }
    #sd-mn-cont {
        height: 100%;
        padding: 5px
    }

    #sd-mn-cont a {
        display: block
    }
    #sd-mn-cont #sidebarShares .inner .subscribe{
        min-width: 133px;
    }
    #sd-mn-cont #sidebarShares {margin-top: 10px;
        padding-left: 3px;
    }
    .sd-mn-color {
        color: #69737d !important;
        height: auto !important
    }

    #sd-mn-hd {
        border-top: none;
        padding: 9px;
        font-size: 16px
    }

    .sd-mn-rw {
        min-height: 24px;
        padding: 5px 10px;
        font-size: 14px;
        cursor: pointer;
        margin-bottom: 2px;
        color: #000
    }

    .mainh, .menu-open .left-hdr .hdr-cell {
        color: #fff
    }

    .sd-mn-dv {
        min-height: 24px;
        padding: 10px;
        border-bottom: 1px solid #E8E8E8;
        font-size: 16px;
        text-align: left;
        font-weight: 600;
        background: #F5F5F5;
        margin-top: 5px
    }

    .center-triangle {
        left: 9px;
        position: absolute;
        top: 8px
    }

    .triangle-dn {
        border-color: #fff transparent transparent;
        border-width: 12px 6px 0
    }

    .homemob a {
        display: block;
        /*background: url(../images/icons/home-icon.png) center center no-repeat;*/
        height: 35px;
        width: 35px;
        /*background-color: #404040;*/
        background-size: 80% 80%;
        margin: 8px;
        margin-left: 0px;
        cursor: pointer;
    }
    .triangle {
        border-style: solid;
        height: 0;
        width: 0
    }
    .topmenu1 {
        list-style: none;
        padding: 0px;
        margin: 0px;
    }
    .topmenu1 li {
        width: 100%;
    }
    .topmenu1 li a {
        font-size: 15px;
        line-height: 35px;
        padding: 0px 10px;
        border-bottom: 1px solid #CCC;
    }
    .mainh, .section-hdr {
        margin: 0;
        width: 100%
    }

    .triangle-rt {
        border-color: transparent #fff transparent transparent;
        border-width: 7px 7px 7px 0
    }

    .section-hdr {
        padding: 0 10px;
        -webkit-box-align: center;
        -webkit-box-orient: horizontal;
        -moz-box-align: center;
        -moz-box-orient: horizontal;
        background-color: #EDEDED;
        border-bottom: 1px solid #A4A4A4;
        display: -webkit-box;
        display: -moz-box;
        min-height: 47px;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box
    }

    .mainh {
        background: #00a1b1;
        height: 50px;
        text-align: center;
        top: 0;
        display: block;
        position: fixed;
        z-index: 100000;
    }

    .mainh .hdr-cell, .mainh .left-hdr {
        background: url(../images/respicon.png) center no-repeat;
        background-size: 144% 100%;
    }

    .mainh .left-hdr {
        float: right;
        cursor: pointer;
        margin: 8px;
    }

    .mainh .hdr-cell {
        width: 35px;
        height: 35px;
        display: table-cell;
        text-align: center
    }
    .hdr-logo {
        background: url(http://masliri.com/bundles/cenoteka/images/logo-white.png) no-repeat center center;
        float: left;
        width: 130px;
        height: 43px;
        background-size: auto 130%;
    }

    .attention {
        color: #e91c2d;
        font-weight: 700
    }

    .emphasis {
        font-style: italic;
        color: #999
    }

    .cb-xsition-switch.on {
        background-color: #7db701 !important
    }

    .cb-xsition.right {
        margin-left: 37px;
        text-indent: -35px
    }

    .msg-sec {
        color: #000;
        padding: 3px 10px;
        -webkit-box-align: center;
        display: -moz-box;
        -moz-box-align: center;
        min-height: 43px;
        width: 100%
    }



    .lp-even-box, .lp-odd-box {
        padding: 15px;
        border-bottom: 1px solid #CECECE
    }

    .msg-info-sec {
        background-color: #D2E9B8
    }

    .lp-even-box {
        background-color: #fff
    }

    .lp-odd-box {
        background-color: #D5E7F1
    }

    .lp-box-head {
        color: #f60
    }

    table.lp-compare-plans {
        border: 1px solid gray
    }

    table.lp-compare-plans td {
        text-align: center;
        padding: 5px 10px;
        border: 1px solid gray;
        width: 33.3%
    }

    #mscont {
        width: 100%;

    }
    #mscont.blurred {
        filter: blur(1px);
        -webkit-filter: blur(1px);
        -moz-filter: blur(1px);
        -o-filter: blur(1px);
        -ms-filter: blur(1px);
    }
    footer .column h3 {
        text-align: center;
        font-size: 18px;
    }
    footer .column {
        float: left;
        padding: 0%;
        margin-bottom: 15px;
        width: 100%;
        text-align: center;
    }
    footer .column a {
        font-size: 15px;
        line-height: 21px;
    }
    footer .column:last-child {
        width: 100%;
    }
    footer .social-media li img {
        width: 34px;
        height: 34px;
    }
    #sd-mn #main-menu ul li {
        width: 100%;
        border: none !important;
        height: 40px;
        line-height: 30px;
        border-bottom: 1px solid rgba(255,255,255,0.3) !important;
        padding-top: 9px;

    }
    #sd-mn #main-menu ul li.selected .name{
color:#002d33;
    }
    #sd-mn #main-menu ul li:hover,#sd-mn #main-menu ul li:active{
background-color:rgba(255,255,255,0.9);
    }
    #sd-mn #main-menu ul li:hover a .name,#sd-mn #main-menu ul li:active a .name {
        color: #002d33;
    }
    #sd-mn #main-menu ul li a {
        width: 100%;
        color:#FFF;
    }
    #sd-mn #main-menu ul li a img {
        float: left;
        margin: 0px;
        margin-right: 5px;
        width: 30px;
        margin-left: 2px;
    }
    #sd-mn #main-menu ul li a .name {
        display: block;
        float: left;
        color:#FFF;
        font-size: 16px;
    }
    #sd-mn #main-menu .userprofile {
        padding-top: 0px;
        margin-bottom: 2px;
        border-bottom: none !important;
    }
    #sd-mn #main-menu .userprofile .user-actions{
        background: rgba(0,0,0,0.1);
        padding: 5px;
        border-radius: 3px;
        position: relative;
        float: left;
        width: 95%;
        margin-bottom: 5px;
    }
    #sd-mn #main-menu .userprofile .user-actions .login-btn {
        display: block;
        height: auto;
        text-align: center;
        max-width: 47%;
        float: left;
        border: 1px solid rgba(255,255,255,0.4);
        border-radius: 2px;
        margin-right: 2%;
    }
    #sd-mn #main-menu .userprofile .user-actions .divider {
        display: none;
    }
    #sd-mn #main-menu .userprofile .user-actions .register-btn {
        display: block;
        height: auto;
        text-align: center;
        max-width: 49%;
        float: left;
        border: 1px solid rgba(255,255,255,0.4);
        border-radius: 2px;
        background: #FFF;
        color: #007d8a;
    }
    #sd-mn #main-menu .userprofile .user-actions .account-settings {
        display: block;
        height: auto;
        text-align: center;
        max-width: 47%;
        float: left;
        border: 1px solid rgba(255,255,255,0.4);
        border-radius: 2px;
        margin-right: 2%;
        background: #FFF;
        color: #007d8a;
    }
    #sd-mn #main-menu .userprofile .user-actions .logout-btn {
        display: block;
        height: auto;
        text-align: center;
        max-width: 49%;
        float: left;
        border: 1px solid rgba(255,255,255,0.4);
        border-radius: 2px;
    }
    #login-panel .login {
        padding: 22px;
    }
    .category-page ul.sclist {
        width: 100%;
    }
    .uputstvo-button {
        display: none;
    }
    .large-search-box-holder a .search-box-icon:before {
        display: none;
    }
    .large-search-box-holder a .search-box-icon {
        left:98%;
    }
    .leaderboard-banner {
        width: 100%;
        height: auto !important;
        position: relative;
        float:left;
    }
    .leaderboard-banner img {
        width: 100%;
        height: auto !important;
    }
    .combo-carousel .stage ul li table {
        width: 100%;
        margin:0px;

        width: 70%;
        margin: 0px 15%;
    }
    .combo-carousel .stage ul li table td:first-child {
        text-align: right;
    }
    .combo-carousel .stage ul li table img {
        width: 100%;
    }
    .combo-carousel .stage ul li h2 {
        margin-bottom: 10px;
    }
    .carousel.carousel-stage {
        margin: 0px 0px 20px 0px;
    }
    .combo-carousel .stage ul li .pc-img-left {
        margin-left: 60px;
    }
    .box-holder-style {
        margin:0px;
    }
    .article-page div.left .img-container img {
        width: 100%;
    }
    .article-page div.left {
        width: 50%;
    }
    .article-page #nochart p{
        line-height: 22px;
        padding: 30px;
    }
    .box-title {
        position: relative;
        width: 70%;
        margin: auto;
        background-color: #00A1B1;
        padding: 10px 0px 10px 0px;
    }
    .box-title h1 {
        font-size: 16px;
    }
}

@media (max-width: 640px) {


}

@media (max-width: 480px) {


}

@media (max-width: 960px) {
    #static-right {
        top: 13px;
    }
    .new-home .large-search-box-holder.search-container {
        position: relative;
        float: left;
        width: 100%;
    }
    .new-home  .carousel-container.box-holder-style {
        position: relative;
        float: left;
        width: 100%;
    }
    .new-home #yt-container {
        position: relative;
        float: left;
        width: 100%;
    }
    .combo-carousel .stage ul li {
        max-width: 370px;
    }
    .homepage #yt-container iframe {
        padding: 20px 40px 20px 20px;
    }
    #login-panel {
        /*float: left;*/
        /*margin: 2% !important;*/
        /*width: 81%;*/
        /*margin-top: 12% !important;*/
        max-width: 360px;
    }
    #cart-container {
        width: 149px;
        float: right;
        box-shadow: none;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
    }
    #cart-container  .cart-overview {
        height: 37px;
    }
    #cart-container .cart-overview .price-row {
        padding: 0px;
    }
    #cart-container .cart-overview .counter-box {
        margin-top: 2px;
        background-size: 100% 100%;
        width: 28px !important;
        height: 28px;
    }
    #cart-container .cart-overview-btn a{
        text-indent: -99999px;
        display: block;
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
    }
    #cart-container .cart-overview-btn {
        float: right;
        margin-right: 0px;
        width: 100%;
        text-align: center;
        height: 100%;
        text-transform: uppercase;
        position: absolute;
    }
    #cart-container .cart-overview .total-price, .cart-overview .total-saved {
        line-height: 33px;
        vertical-align: middle;
        text-align: right;
        float: left;
        margin-left: 15px;
        font-size: 18px;
    }
    #cart-container .cart-card-front, .cart-card-back {
        background: transparent;
    }
    #cart-container .cart-overview .rsd {
        position: relative;
        padding: 4px;
        text-transform: uppercase;
        font-size: 18px;
        vertical-align: middle;
        line-height: 32px;
    }
}
@media (max-width: 480px) {
    .combo-carousel .stage ul li .pc-img-left img {
        width: 140px;
    }
    .combo-carousel .prev-stage {
        left: 0px;
    }
    .combo-carousel .next-stage {
        right: 0px;
    }
    .combo-carousel .stage ul li .pc-img-left {
        margin-left: 20px;
        float: left;
    }
    .combo-carousel .stage ul li table {
        float: left;
        width: 200px;
        margin: 0px;
    }
    .combo-carousel .stage ul li table td:nth-child(2) {
        width: auto;
        text-align: right;
        color: #666666;
        font-weight: bold;
        font-size: 18px;
    }
    .category-page #content{
        min-height: 400px;
    }
    .article-page #content-header-no-fixed{
        background-color: #00A1B1;
        padding: 21px 25px 21px 25px;
        border-radius: 0px;
        box-shadow: none !important;
        margin-top: 50px;
    }
    .article-page #static-right {
        top: 3px;
    }
    .category-page .box-holder-style.single-page-container{
        top:50px;
    }
    .category-page #static-right {
        top: 3px;
    }
    .page-products #content-header{
        margin-top:40px;
    }
    .page-products #static-right {
        top:0px;
    }
    .page-products .productlist-header img {

        height: 20px;
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);

    }
    .homepage #yt-container iframe {
        height: 266px;
        width: 100%;
        padding: 0px !important;
    }
    .category-page #content {
        min-height: 780px;
    }
    #overlay .overlay-window-container .overlay-window {
        box-shadow: 0 0 30px rgba(0,0,0,0.3);
    }
    .user-profile #content-header-no-fixed{
        margin-top:50px;
        border-radius: 0px;
    }
    .user-profile #cart-container  .cart-overview {
        overflow: hidden;
    }
    .article-page .more-right {
        display: none;
    }
    .single-page-container {
        padding: 0px 10px 30px 10px;
    }
    .article-page .box-holder-style.product-price-container .right{
        border-radius: 4px;
        overflow: hidden;
    }
    .article-page table#article-details {
        border-radius: 5px;
    }
    #overlay .overlay-window-container {
        min-width: 100%;
        max-width: 100%;
    }
    #overlay .overlay-window-container #big-cart {
        margin: 1% !important;
        width: 94%;
        padding: 2%;
    }
    #products-in-cart tr td:nth-child(4) {
        width: 30px;
    }
    #products-in-cart-head tr th:nth-child(3) {
        width: 30px;
    }
    #products-in-cart-head tr th:nth-child(1) {
        width: 161px;
    }
    #products-in-cart tr td:nth-child(2) {
        width: 80px;
        padding: 0 3px;
    }
    #products-in-cart tr td:nth-child(1) {
        width: 30px;
        padding: 0px;
        display: none;
    }
    #products-in-cart tr td:nth-child(1) img {
        width: 100%;
    }
    #products-in-cart tr td:nth-child(3) {
        display: none;
    }
    #products-in-cart-head tr th:nth-child(1) {
        width: 73px;
    }
    #products-in-cart-head tr th:nth-child(2) {
        display: none;
    }
    #products-in-cart-head tr th img {
        height: 14px;
    }
    .do-print {
        display: none !important;
    }
    #products-in-cart-head tr th {
        font-size: 12px;
    }
    #products-in-cart-sums tr th:first-child {
        width: 104px;
    }
    .carousel.carousel-stage {
        margin-bottom: 0px;
    }
    .category-page ul.sclist li {
        width: 185px;
    }
    .category-page ul.sclist li a {
        margin: 0 auto;
    }
    .category-page ul.sclist li img {
        /*opacity:0; width: 0px;*/
        /*position: relative;*/
        left: 0px;
    }
    .category-page ul.sclist li a {
        padding: 20px 0px;
    }
    .category-page ul.sclist li:hover {
        background: rgb(0, 161, 177);
    }
    .combo-carousel .stage ul li table td {
        padding: 0px 1px 0px 0px;
    }
    .combo-carousel .stage ul li table.rows-4 td {
        height: 36px;
    }
    .combo-carousel .stage ul li table.rows-3 td {
        height: 46px;
    }
    .combo-carousel .prev-stage {
        top: 80px;
    }
    .combo-carousel .next-stage {
        top: 80px;
    }
    .combo-carousel .stage ul li a {
        font-size: 18px;
    }
    .combo-carousel {
        padding: 10px;
    }
    .carousel-container .navigation{
        margin-top: 10px;
    }
    .carousel.carousel-stage {
        margin-top: 20px;
    }

}
@media (max-width: 400px) {

    body.mobile #static-right {
        max-width: 157px;
    }
    .search-box-container {
        width: 178px;
    }
    .combo-carousel {
        padding: 5px;
    }
}
@media (max-width: 380px) {
    .search-box-container {
        width: 158px;
    }
    #login-panel {
        float: left;
        margin: 2% !important;
        width: 72%;
        margin-top: 12% !important;
        max-width: 312px;
    }
    .category-page ul.sclist li {
        width: 164px;
    }
    .article-page div.left {
        width: 43%;
    }
    .article-page div.left a img {
        left: 10px;
        width: 15px;
        height: 15px;
        top: 0px;
        margin-right: 15px;
        position: relative;
        vertical-align: top;
        position: relative;
    }
    #products tr td:nth-child(2) {
        width: 92px;
    }
    .productlist-header td:first-child {
        width: 175px;
    }
    .productlist-header td:nth-child(2) {
        width: 50px;
    }
    #search-box {
        width: 134px;
    }
}

@media (max-width: 360px) {
    .search-box-container {
        width: 148px;
    }
}


@media (max-width: 320px) {
    .search-box-container {
        width: 130px;
    }
    .combo-carousel .stage ul li .pc-img-left img {
        width: 110px;
    }
    .category-page ul.sclist li {
        width: 136px;
    }
    .productlist-header td:first-child {
        width: 163px;
    }
    #products tr td:nth-child(2) {
        width: 80px;
    }
    .productlist-header td:nth-child(2) {
        width: 42px;
    }
    #search-box {
        width: 123px;
    }
    .combo-carousel .stage ul li table {
        width: 170px;
    }

}