 
/* clearfix */

.owl-carousel .owl-wrapper:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
/* display none until init */
.owl-carousel{
  display: none;
  position: relative;
  width: 100%;
  -ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper{
  display: none;
  position: relative;
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer{
  overflow: hidden;
  position: relative;
  width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight{
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

.owl-carousel .owl-item{
  float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div{
  cursor: pointer;
}
.owl-controls {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* mouse grab icon */
.grabbing { 
  cursor:url(grabbing.png) 8 8, move;
}

/* fix */
.owl-carousel  .owl-wrapper,
.owl-carousel  .owl-item{
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility:    hidden;
  -ms-backface-visibility:     hidden;
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
}

/* CSS3 Transitions */

.owl-origin {
  -webkit-perspective: 1200px;
  -webkit-perspective-origin-x : 50%;
  -webkit-perspective-origin-y : 50%;
  -moz-perspective : 1200px;
  -moz-perspective-origin-x : 50%;
  -moz-perspective-origin-y : 50%;
  perspective : 1200px;
}
/* fade */
.owl-fade-out {
  z-index: 10;
  -webkit-animation: fadeOut .7s both ease;
  -moz-animation: fadeOut .7s both ease;
  animation: fadeOut .7s both ease;
}
.owl-fade-in {
  -webkit-animation: fadeIn .7s both ease;
  -moz-animation: fadeIn .7s both ease;
  animation: fadeIn .7s both ease;
}
/* backSlide */
.owl-backSlide-out {
  -webkit-animation: backSlideOut 1s both ease;
  -moz-animation: backSlideOut 1s both ease;
  animation: backSlideOut 1s both ease;
}
.owl-backSlide-in {
  -webkit-animation: backSlideIn 1s both ease;
  -moz-animation: backSlideIn 1s both ease;
  animation: backSlideIn 1s both ease;
}
/* goDown */
.owl-goDown-out {
  -webkit-animation: scaleToFade .7s ease both;
  -moz-animation: scaleToFade .7s ease both;
  animation: scaleToFade .7s ease both;
}
.owl-goDown-in {
  -webkit-animation: goDown .6s ease both;
  -moz-animation: goDown .6s ease both;
  animation: goDown .6s ease both;
}
/* scaleUp */
.owl-fadeUp-in {
  -webkit-animation: scaleUpFrom .5s ease both;
  -moz-animation: scaleUpFrom .5s ease both;
  animation: scaleUpFrom .5s ease both;
}

.owl-fadeUp-out {
  -webkit-animation: scaleUpTo .5s ease both;
  -moz-animation: scaleUpTo .5s ease both;
  animation: scaleUpTo .5s ease both;
}
/* Keyframes */
/*empty*/
@-webkit-keyframes empty {
  0% {opacity: 1}
}
@-moz-keyframes empty {
  0% {opacity: 1}
}
@keyframes empty {
  0% {opacity: 1}
}
@-webkit-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@-moz-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@-webkit-keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@-moz-keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@-webkit-keyframes backSlideOut {
  25% { opacity: .5; -webkit-transform: translateZ(-500px); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
}
@-moz-keyframes backSlideOut {
  25% { opacity: .5; -moz-transform: translateZ(-500px); }
  75% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
}
@keyframes backSlideOut {
  25% { opacity: .5; transform: translateZ(-500px); }
  75% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
}
@-webkit-keyframes backSlideIn {
  0%, 25% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px); }
  100% { opacity: 1; -webkit-transform: translateZ(0) translateX(0); }
}
@-moz-keyframes backSlideIn {
  0%, 25% { opacity: .5; -moz-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -moz-transform: translateZ(-500px); }
  100% { opacity: 1; -moz-transform: translateZ(0) translateX(0); }
}
@keyframes backSlideIn {
  0%, 25% { opacity: .5; transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; transform: translateZ(-500px); }
  100% { opacity: 1; transform: translateZ(0) translateX(0); }
}
@-webkit-keyframes scaleToFade {
  to { opacity: 0; -webkit-transform: scale(.8); }
}
@-moz-keyframes scaleToFade {
  to { opacity: 0; -moz-transform: scale(.8); }
}
@keyframes scaleToFade {
  to { opacity: 0; transform: scale(.8); }
}
@-webkit-keyframes goDown {
  from { -webkit-transform: translateY(-100%); }
}
@-moz-keyframes goDown {
  from { -moz-transform: translateY(-100%); }
}
@keyframes goDown {
  from { transform: translateY(-100%); }
}

@-webkit-keyframes scaleUpFrom {
  from { opacity: 0; -webkit-transform: scale(1.5); }
}
@-moz-keyframes scaleUpFrom {
  from { opacity: 0; -moz-transform: scale(1.5); }
}
@keyframes scaleUpFrom {
  from { opacity: 0; transform: scale(1.5); }
}

@-webkit-keyframes scaleUpTo {
  to { opacity: 0; -webkit-transform: scale(1.5); }
}
@-moz-keyframes scaleUpTo {
  to { opacity: 0; -moz-transform: scale(1.5); }
}
@keyframes scaleUpTo {
  to { opacity: 0; transform: scale(1.5); }
}
/*
* 	Owl Carousel Owl Demo Theme 
*	v1.24
*/

.owl-theme .owl-controls{
  margin-top: 10px;
  text-align: center;
}

/* Styling Next and Prev buttons */

.owl-theme .owl-controls .owl-buttons div{
  color: #FFF;
  display: inline-block;
  zoom: 1;
  *display: inline;/*IE7 life-saver */
  margin: 5px;
  padding: 3px 10px;
  font-size: 12px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background: #869791;
  filter: Alpha(Opacity=50);/*IE7 fix*/
  opacity: 0.5;
}
/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover{
  filter: Alpha(Opacity=100);/*IE7 fix*/
  opacity: 1;
  text-decoration: none;
}

/* Styling Pagination*/

.owl-theme .owl-controls .owl-page{
  display: inline-block;
  zoom: 1;
  *display: inline;/*IE7 life-saver */
}
.owl-theme .owl-controls .owl-page span{
  display: block;
  width: 12px;
  height: 12px;
  margin: 5px 7px;
  filter: Alpha(Opacity=50);/*IE7 fix*/
  opacity: 0.5;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  background: #869791;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
  filter: Alpha(Opacity=100);/*IE7 fix*/
  opacity: 1;
}

/* If PaginationNumbers is true */

.owl-theme .owl-controls .owl-page span.owl-numbers{
  height: auto;
  width: auto;
  color: #FFF;
  padding: 2px 10px;
  font-size: 12px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

/* preloading images */
.owl-item.loading{
  min-height: 150px;
  background: url(https://assets3.insales.ru/assets/1/232/573672/1547866635/loader.gif) no-repeat center center
}


.fancybox-wrap,.fancybox-skin,.fancybox-outer,.fancybox-inner,.fancybox-image,.fancybox-wrap iframe,.fancybox-wrap object,.fancybox-nav,.fancybox-nav span,.fancybox-tmp{padding:0;margin:0;border:0;outline:0;vertical-align:top}
.fancybox-wrap{position:absolute;top:0;left:0;z-index:8020}
.fancybox-skin{position:relative;background:#FFFFFF;color:#000000;text-shadow:none;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}
.fancybox-opened{z-index:8030}
.fancybox-opened .fancybox-skin{-webkit-box-shadow:0 10px 25px rgba(0,0,0,0.5);-moz-box-shadow:0 10px 25px rgba(0,0,0,0.5);box-shadow:0 10px 25px rgba(0,0,0,0.5)}
.fancybox-outer,.fancybox-inner{position:relative}
.fancybox-inner{overflow:hidden}
.fancybox-type-iframe .fancybox-inner{-webkit-overflow-scrolling:touch}
.fancybox-error{color:#444;font:14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;margin:0;padding:15px;white-space:nowrap}
.fancybox-image,.fancybox-iframe{display:block;width:100%;height:100%}
.fancybox-image{max-width:100%;max-height:100%}
#fancybox-loading,.fancybox-close,.fancybox-prev span,.fancybox-next span{background-image:url(https://assets3.insales.ru/assets/1/232/573672/1547866635/fancybox_sprite.png)}
#fancybox-loading{position:fixed;top:50%;left:50%;margin-top:-22px;margin-left:-22px;background-position:0 -108px;opacity:.8;cursor:pointer;z-index:8060}
#fancybox-loading div{width:44px;height:44px;background:url(https://assets3.insales.ru/assets/1/232/573672/1547866635/fancybox_loading.gif) center center no-repeat}
.fancybox-close{position:absolute;top:-18px;right:-18px;width:36px;height:36px;cursor:pointer;z-index:8040}
.fancybox-nav{position:absolute;top:0;width:40%;height:100%;cursor:pointer;text-decoration:none;background:transparent url(https://assets3.insales.ru/assets/1/232/573672/1547866635/blank.gif);-webkit-tap-highlight-color:rgba(0,0,0,0);z-index:8040}
.fancybox-prev{left:0}
.fancybox-next{right:0}
.fancybox-nav span{position:absolute;top:50%;width:36px;height:34px;margin-top:-18px;cursor:pointer;z-index:8040;visibility:hidden}
.fancybox-prev span{left:10px;background-position:0 -36px}
.fancybox-next span{right:10px;background-position:0 -72px}
.fancybox-nav:hover span{visibility:visible}
.fancybox-tmp{position:absolute;top:-99999px;left:-99999px;visibility:hidden;max-width:99999px;max-height:99999px;overflow:visible !important}
.fancybox-lock{overflow:hidden !important;width:auto}
.fancybox-lock body{overflow:hidden !important}
.fancybox-lock-test{overflow-y:hidden !important}
.fancybox-overlay{position:absolute;top:0;left:0;overflow:hidden;display:none;z-index:8010;background:url(https://assets3.insales.ru/assets/1/232/573672/1547866635/fancybox_overlay.png)}
.fancybox-overlay-fixed{position:fixed;bottom:0;right:0}
.fancybox-lock .fancybox-overlay{overflow:auto;overflow-y:scroll}
.fancybox-title{visibility:hidden;font:normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;position:relative;text-shadow:none;z-index:8050}
.fancybox-opened .fancybox-title{visibility:visible}
.fancybox-title-float-wrap{position:absolute;bottom:0;right:50%;margin-bottom:-35px;z-index:8050;text-align:center}
.fancybox-title-float-wrap .child{display:inline-block;margin-right:-100%;padding:2px 20px;background:transparent;background:rgba(0,0,0,0.8);-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;text-shadow:0 1px 2px #222;color:#FFF;font-weight:bold;line-height:24px;white-space:nowrap}
.fancybox-title-outside-wrap{position:relative;margin-top:10px;color:#fff}
.fancybox-title-inside-wrap{padding-top:10px}
.fancybox-title-over-wrap{position:absolute;bottom:0;left:0;color:#fff;padding:10px;background:#000;background:rgba(0,0,0,.8)}
@media only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5){#fancybox-loading,.fancybox-close,.fancybox-prev span,.fancybox-next span{background-image:url();background-size:44px 152px}
#fancybox-loading div{background-image:url();background-size:24px 24px}
}
#fancybox-buttons {
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 8050;
}

#fancybox-buttons.top {
  top: 10px;
}

#fancybox-buttons.bottom {
  bottom: 10px;
}

#fancybox-buttons ul {
  display: block;
  width: 166px;
  height: 30px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  border: 1px solid #111;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
  -moz-box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
  background: rgb(50,50,50);
  background: -moz-linear-gradient(top, rgb(68,68,68) 0%, rgb(52,52,52) 50%, rgb(41,41,41) 50%, rgb(51,51,51) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgb(68,68,68)), color-stop(50%,rgb(52,52,52)), color-stop(50%,rgb(41,41,41)), color-stop(100%,rgb(51,51,51)));
  background: -webkit-linear-gradient(top, rgb(68,68,68) 0%,rgb(52,52,52) 50%,rgb(41,41,41) 50%,rgb(51,51,51) 100%);
  background: -o-linear-gradient(top, rgb(68,68,68) 0%,rgb(52,52,52) 50%,rgb(41,41,41) 50%,rgb(51,51,51) 100%);
  background: -ms-linear-gradient(top, rgb(68,68,68) 0%,rgb(52,52,52) 50%,rgb(41,41,41) 50%,rgb(51,51,51) 100%);
  background: linear-gradient(top, rgb(68,68,68) 0%,rgb(52,52,52) 50%,rgb(41,41,41) 50%,rgb(51,51,51) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#444444', endColorstr='#222222',GradientType=0 );
}

#fancybox-buttons ul li {
  float: left;
  margin: 0;
  padding: 0;
}

#fancybox-buttons a {
  display: block;
  width: 30px;
  height: 30px;
  text-indent: -9999px;
  background-color: transparent;
  background-image: url(https://assets3.insales.ru/assets/1/232/573672/1547866635/fancybox_buttons.png);
  background-repeat: no-repeat;
  outline: none;
  opacity: 0.8;
}

#fancybox-buttons a:hover {
  opacity: 1;
}

#fancybox-buttons a.btnPrev {
  background-position: 5px 0;
}

#fancybox-buttons a.btnNext {
  background-position: -33px 0;
  border-right: 1px solid #3e3e3e;
}

#fancybox-buttons a.btnPlay {
  background-position: 0 -30px;
}

#fancybox-buttons a.btnPlayOn {
  background-position: -30px -30px;
}

#fancybox-buttons a.btnToggle {
  background-position: 3px -60px;
  border-left: 1px solid #111;
  border-right: 1px solid #3e3e3e;
  width: 35px
}

#fancybox-buttons a.btnToggleOn {
  background-position: -27px -60px;
}

#fancybox-buttons a.btnClose {
  border-left: 1px solid #111;
  width: 35px;
  background-position: -56px 0px;
}

#fancybox-buttons a.btnDisabled {
  opacity : 0.4;
  cursor: default;
}


/* ================= begin BOOTSTRAP ================= */
/*
** Base CSS
**/
/* begin Headings, body, etc */
html,
html body{
  line-height: 20px;
}
body {
  margin: 0;
  font-family: 'PT Sans', sans-serif;
  font-size: 13px;
  line-height: 20px;
  color: #000000;
  background-color: #FFFFFF;
}
label, 
input, 
button, 
select, 
textarea{
  font-size: 13px;
}
a {
  color: #000000;
}
a:hover,
a:focus, .list-styled li a.active {
  color: #7BAE23;
}
 
.text-error {
  color: ;
}
a.text-error:hover,
a.text-error:focus {
  color: ;
}
.text-success {
  color: ;
}
a.text-success:hover,
a.text-success:focus {
  color: ;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
  color: #000000;
}
blockquote small {
  color: #000000;
}
.label-success,
.badge-success {
  background-color: ;
}
.label-success[href],
.badge-success[href] {
  background-color: ;
}
.alert-success {
  background-color: ;
  border-color: ;
  color: ;
}
.alert-error{
  background-color: ;
  border-color: ;
  color: ;
}
.alert ul{
  margin-bottom: 0;
}
/* end Headings, body, etc */

/* begin Tables */
table {
  background-color: #FFFFFF;
}
.table th,
.table td {
  border-top: 1px solid #CCCCCC;
}
.table tbody + tbody {
  border-top: 2px solid #CCCCCC;
}
.table .table {
  background-color: #FFFFFF;
}
.table-bordered {
  border: 1px solid #CCCCCC;
}
.table-bordered th,
.table-bordered td {
  border-left: 1px solid #CCCCCC;
}
.table-striped tbody > tr:nth-child(odd) > td,
.table-striped tbody > tr:nth-child(odd) > th {
  background-color: #F9F9F9;
}
.table-hover tbody tr:hover > td,
.table-hover tbody tr:hover > th {
  background-color: ;
}
.table tbody tr.success > td {
  background-color: ;
}
.table tbody tr.error > td {
  background-color: ;
}
.table-hover tbody tr.success:hover > td {
  background-color: ;
}
.table-hover tbody tr.error:hover > td {
  background-color: ;
}
/* end Tables */

/* begin Forms */
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
  background-color: #FFFFFF;
  border: 1px solid #E5E5E5;
}
select {
  border: 1px solid #E5E5E5;
  background-color: #FFFFFF;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #000000;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #000000;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #000000;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #000000;
}
.control-group.error .control-label,
.control-group.error .help-block,
.control-group.error .help-inline {
  color: ;
}
.control-group.error .checkbox,
.control-group.error .radio,
.control-group.error input,
.control-group.error select,
.control-group.error textarea {
  color: ;
}
.control-group.error input,
.control-group.error select,
.control-group.error textarea {
  border-color: ;
}
.control-group.error input:focus,
.control-group.error select:focus,
.control-group.error textarea:focus {
  border-color: ;
}
.control-group.error .input-prepend .add-on,
.control-group.error .input-append .add-on {
  color: ;
  background-color: ;
  border-color: ;
}
.control-group.success .control-label,
.control-group.success .help-block,
.control-group.success .help-inline {
  color: ;
}
.control-group.success .checkbox,
.control-group.success .radio,
.control-group.success input,
.control-group.success select,
.control-group.success textarea {
  color: ;
}
.control-group.success input,
.control-group.success select,
.control-group.success textarea {
  border-color: ;
}
.control-group.success input:focus,
.control-group.success select:focus,
.control-group.success textarea:focus {
  border-color: ;
}
.control-group.success .input-prepend .add-on,
.control-group.success .input-append .add-on {
  color: ;
  background-color: ;
  border-color: ;
}
/* end Forms */
/*
** end Base CSS
**/

/*
** begin Plugins
**/
/* begin Dropdown */
.navbar .nav > li > a{
  font: normal 14px 'PT Sans', sans-serif!important;
}
.navbar .nav > li > a:hover,
.navbar .nav > li > a:focus{
  color: #FFFFFF!important;
}
.navbar .nav .dropdown-menu{
  background-color: ;
}
.navbar .nav .dropdown-menu > li > a {
  color: #202020!important;
  position: relative;
  z-index: 1;
}
.navbar .nav .dropdown-menu > li > a:after{
  position: absolute;
  z-index: 0;
  content: " ";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.navbar .nav .dropdown-menu > li > a:hover:after,
.navbar .nav .dropdown-menu > li > a:after:hover{
  width: 200%;
}
.navbar .nav .dropdown-menu > li > a:hover,
.navbar .nav .dropdown-menu > li > a:focus,
.navbar .nav .dropdown-submenu:hover > a,
.navbar .nav .dropdown-submenu:focus > a,
.navbar .nav .dropdown-menu > .active> a, 
.navbar .nav .dropdown-menu > .active> a:hover, 
.navbar .nav .dropdown-menu > .active> a:focus{
  color: #000000!important;
  background: #F7F7F7;
}
.navbar .btn-navbar .icon-bar{
  background:#3D3D3D;
}
.dropdown-menu {
  background-color: #FFFFFF;
  border: 1px solid #CCCCCC;
  color: #000000;
}
.dropdown-menu:before{
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #CCCCCC;
  position: absolute;
  top: -7px;
  left: 9px;
}
.dropdown-menu:after{
  content: '';
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #FFFFFF;
  position: absolute;
  top: -6px;
  left: 10px;
}
.dropdown-parent-submenu .dropdown-menu{
  left: 100%;
  margin-left: 10px;
  top: 5px;
}
.dropdown-parent-submenu .dropdown-menu:before{
  content: '';
  display: inline-block;
  border-left: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-right: 7px solid #CCCCCC;
  position: absolute;
  left: -7px;
  top: 9px;
}
.dropdown-parent-submenu .dropdown-menu:after{
  content: '';
  display: inline-block;
  border-left: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 6px solid #FFFFFF;
  position: absolute;
  left: -6px;
  top: 10px;
}

.dropdown, 
.dropdown-toggle{
  position: relative;
}
.dropdown .sub-dropdown,
.dropdown-toggle .sub-dropdown,
.dropdown .sub-dropdown1,
.dropdown-toggle .sub-dropdown1{
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.dropdown .sub-dropdown,
.dropdown-toggle .sub-dropdown{
  padding-bottom: 20px;
  z-index: 1;
  cursor: default;
}
.dropdown .sub-dropdown1,
.dropdown-toggle .sub-dropdown1{
  z-index: 2;
  cursor: pointer;
}
.btn-group.open .dropdown-toggle{
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.open>.dropdown-menu{
  display: block!important;
}
/* end Dropdown */

/* begin Tooltips*/
.tooltip-inner {
  color: #FFFFFF;
  background-color: #202020;
  font-size: 12px;
  padding: 6px;
}
.tooltip.top .tooltip-arrow {
  border-top-color: #202020;
}
.tooltip.right .tooltip-arrow {
  border-right-color: #202020;
}
.tooltip.left .tooltip-arrow {
  border-left-color: #202020;
}
.tooltip.bottom .tooltip-arrow {
  border-bottom-color: #202020;
}
/* end Tooltips*/
/*
** end Plugins
**/

/* begin MISC */
.modal-backdrop, .modal-backdrop.fade.in{
  background: #000000;
}
/* end MISC */
/* ================= end BOOTSTRAP ================= */

/*
** HTML, Body settings
*/
 

body,
button,
select, 
textarea, 
input[type="text"], 
input[type="password"], 
input[type="datetime"], 
input[type="datetime-local"], 
input[type="date"], 
input[type="month"], 
input[type="time"], 
input[type="week"], 
input[type="number"], 
input[type="email"], 
input[type="url"], 
input[type="search"], 
input[type="tel"], 
input[type="color"], 
.uneditable-input{
  color: #000000;
  font: 13px 'PT Sans', sans-serif;
}

/***
Reset and overrides  
***/
/* general body settings */
body { 
  padding: 0px;
  margin: 0px;
  direction: ltr;
}
/* overides metro scrolbars in IE10 and makes them look like a default scrollbar */
@-ms-viewport{ 
  width: auto !important; 
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 300;
  font-family: 'PT Sans', sans-serif;
}
button, input, select, textarea{
  font: 13px 'PT Sans', sans-serif;
}
/***
Fix link outlines after click
***/
a,a:focus, a:hover, a:active {
  outline: 0;
  text-decoration: none;
}
div, input, select, textarea, span, img, table, td, th, p, a, button, ul, li {
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  border-radius: 0 !important;
}
label{
  cursor: default;
}
ol li{
  padding: 5px 0;
}
dl dd{
  margin-bottom: 20px;
  margin-left: 0;
}
table{
  width: 100%;
  background: #FFFFFF;
}
table thead,
table thead th,
table thead td{
  text-align: left;
  font-weight: normal;
  padding: 8px 20px;
  background-color: #F9F9F9;
  font-family: 'PT Sans', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
}
table th,
table td{
  border: 1px solid #CCCCCC;
  padding: 12px 20px;
  line-height: 20px;
}
address .icon-user, 
address .icon-home,
address .author{
  font-size: 20px;
}
address .icon-user, address .icon-home, address .address-group{
  display: inline-block;
}
address .icon-user, address .icon-home{
  vertical-align: top;
}
address .address-group{
  margin-left: 10px;
}
address .email, address .city1, address .zip, address .phone{
  display: block;
}
address .address, address .phone{
  margin-top: 10px;
}
.action_edit, .action_delete{
  position: relative;
  display: inline-block;
}
.action_edit a, .action_delete a{
  vertical-align: top;
}
hr{
  border: 0;
  border-top: 1px solid #CCCCCC;
}
.wrap-table {
  overflow-y: auto;
  clear: both;
}

/*
** Input settings
*/
textarea, 
input[type="text"], 
input[type="password"], 
input[type="datetime"], 
input[type="datetime-local"], 
input[type="date"], 
input[type="month"], 
input[type="time"], 
input[type="week"], 
input[type="number"], 
input[type="email"], 
input[type="url"], 
input[type="search"], 
input[type="tel"], 
input[type="color"], 
.uneditable-input{
  -webkit-appearance: none;
  color: #000000;
  outline: none!important;
  height: 34px;
  padding: 6px 6px;
  line-height: 20px;
  font-weight: normal;
  vertical-align: top;
  background-color: #FFFFFF;
  background-image: none;
  filter: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  border-color: #E5E5E5;
}
textarea:focus, 
input[type="text"]:focus, 
input[type="password"]:focus,
input[type="datetime"]:focus, 
input[type="datetime-local"]:focus, 
input[type="date"]:focus, 
input[type="month"]:focus, 
input[type="time"]:focus,
input[type="week"]:focus, 
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus, 
input[type="search"]:focus, 
input[type="tel"]:focus, 
input[type="color"]:focus, 
.uneditable-input:focus{
  border-color: #999999;
  outline: 0;
  outline: thin dotted \9;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.input-block-level{
  min-height: 34px;
}
textarea,
textarea.input-block-level{
  min-height: 100px;
}
.input-small { 
  width: 120px !important;
}
.input-medium {
  width: 206px !important;
}
.input-large {
  width: 320px !important;
}
select {
  width: 134px;
  background-color: #FFFFFF;
  background-image: none !important;
  filter: none !important;
  border: 1px solid #E5E5E5;
  outline: none;
  height: 34px !important;
  line-height: 30px;
}
select:focus{
  outline-offset: -2px;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
  border-color: #999999;
  outline: 0 !important;
}
select.small {
  width: 134px !important;
}
select.medium {
  width: 220px !important;
}
select.large {
  width: 334px !important;
}
/*
** Button settings
*/
.btn + .btn{
  margin-left: 5px;
}
.btn, #feedback_commit,
#header .btn{
  background-image: none;
  filter: none;
  padding: 7px 14px;
  font-family: 'PT Sans', sans-serif;
  cursor: pointer;
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 0!important;
  -moz-border-radius: 0!important;
  border-radius: 0!important;
  -webkit-text-shadow: none;
  -moz-text-shadow: none;
  text-shadow: none;
  text-transform: none!important;
}

.btn, #feedback_commit,
#header .btn{
  background: #E5E5E5;
  color: #333333;
  border: 1px solid #E5E5E5;
  font-size: 16px;
  font-weight: bold;
}
.btn:hover,
.btn:focus,
.btn:active,
.btn.active,
#feedback_commit:hover,
#feedback_commit:focus,
#feedback_commit:active,
#feedback_commit.active,
#header .btn:hover,
#header .btn:focus,
#header .btn:active,
#header .btn.active{
  background: #D8D8D8!important;
  color: #333333!important;
  border: 1px solid #D8D8D8!important; 
  outline: none;
}
.btn.disabled, 
.btn[disabled],
#header .btn.disabled, 
#header .btn[disabled]{
  border-color: #e6e6e6;
}

.btn-1,#feedback_commit,
#header .btn-1{
  background: #7BAE23!important;
  color: #FFFFFF!important;
  border: 1px solid #7BAE23!important;
  font-size: 16px!important;
  font-weight: bold!important;
}
.btn-1:hover,
.btn-1:focus,
.btn-1:active,
.btn-1.active,
#feedback_commit:hover,
#feedback_commit:focus,
#feedback_commit:active,
#feedback_commit.active,
#header .btn-1:hover,
#header .btn-1:focus,
#header .btn-1:active,
#header .btn-1.active{
  background: #69B055!important;
  color: #FFFFFF!important;
  border: 1px solid #7BAE23!important;
}

.btn-2,
#header .btn-2{
  background-color: #7BAE23!important;
  color: #FFFFFF!important;
  border: 1px solid #7BAE23!important;
  font-size: 16px!important;
  font-weight: bold!important;
}
.btn-2:hover,
.btn-2:focus,
.btn-2:active,
.btn-2.active,
#header .btn-2:hover,
#header .btn-2:focus,
#header .btn-2:active,
#header .btn-2.active{
  background-color: #69B055!important;
  color: #FFFFFF!important;
  border: 1px solid #7BAE23!important;
}


.mini {
  font-size: 11px !important;
  line-height: 13px;
  padding: 4px 10px;
}

.big {
  font-size: 18px !important;
  line-height: 38px;
  padding: 8px 16px;
}

button.btn.big,
input[type="button"].btn.big,
input[type="submit"].btn.big {
  height: 54px;
  padding-top: 9px;
  padding-bottom: 8px;
}

button.btn.mini,
input[type="button"].btn.mini,
input[type="submit"].btn.mini {
  height: 21px;
  padding-top: 3px;
  padding-bottom: 3px;
}

a.btn.big.btn-block {
  height: 54px;
}

/***
Vertical inline menu
***/
.ver-inline-menu {
  margin: 0px;
  list-style: none;
}

.ver-inline-menu li {
  position:relative;
  margin-bottom:1px;
  padding:0;
  height:100%;
  display:block;
}

.ver-inline-menu li i {
  color:#b9cbd5;
  font-size:15px;
  padding:11px 9px;
  margin:0 8px 0 0;
  background:#e0eaf0 !important;
  display:inline-block;
}

.ver-inline-menu li a {
  font-size: 13px;
  color:#557386;
  display:block;
  background:#f0f6fa;
  border-left:solid 2px #c4d5df;
  font-family: 'PT Sans', sans-serif;
}

.ver-inline-menu li:hover a,
.ver-inline-menu li:hover i {
  background:#e0eaf0;
  text-decoration:none;
}

.ver-inline-menu li:hover i {
  color:#fff;
  background:#c4d5df !important;
}

.ver-inline-menu li.active a,
.ver-inline-menu li:hover a {
  font-size: 13px;
}

.ver-inline-menu li.active a,
.ver-inline-menu li.active i {
  color:#fff;
  background:#169ef4;
  text-decoration:none;
  border-left:solid 1px #0c91e5;
}

.ver-inline-menu li.active i {
  background:#0c91e5 !important;  
}

.ver-inline-menu li.active:after {
  content: '';
  display: inline-block;
  border-bottom: 6px solid transparent;
  border-top: 6px solid transparent;
  border-left: 6px solid #169ef4;
  position: absolute;
  top: 12px;
  right: -5px;
}

/***
Dropdowns
***/

/*Fixing dropdown issue on mobile devices in Bootstrap 3.2.2*/
.dropdown-backdrop {
  position: static;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  list-style: none;
  text-shadow: none;
  padding: 0px;
  margin:0px;
  -webkit-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);  
  font-size: 14px;
  font-family: "Segoe UI",Helvetica, Arial, sans-serif;
  border: 1px solid #ddd;
}

.dropdown:hover .caret, 
.open.dropdown .caret {
  opacity: 1;
  filter: alpha(opacity=100);
}

.dropdown-menu.bottom-up {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}

.dropdown-menu li > a {
  padding: 6px 13px;
  color: #333;
  text-decoration: none;
  display: block;
  clear: both;
  font-weight: normal;
  line-height: 18px;
  white-space: nowrap;
}

.dropdown-menu li > a:hover, 
.dropdown-menu .active > a, 
.dropdown-menu .active > a:hover {
  text-decoration: none;
  background-image: none;
  background-color: #eee;
  color: #333;
  filter:none;
}

.dropdown.open .dropdown-toggle {
  color: #08c;
  background: #ccc;
  background: rgba(0, 0, 0, 0.3);
}

/* bagin: sidebar menu badges */
.dropdown-menu > li > a > .badge {
  position: absolute;
  margin-top: 1px;
  right: 3px;
  display: inline;
  font-size: 11px;
  height: auto;
  font-weight: 300;
  text-shadow:none;
  padding: 2px 6px 2px 6px;
  -webkit-border-radius: 12px !important;
  -moz-border-radius: 12px !important;
  border-radius: 12px !important;
}

.dropdown-menu > li > a > .badge.badge-roundless {
  padding: 1px 6px 1px 6px;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  border-radius: 0 !important;
}

.ie8 .dropdown-menu > li > a > .badge,
.ie9 .dropdown-menu > li > a > .badge,
.ie10 .dropdown-menu > li > a > .badge {
  padding-top: 1px;
}

@-moz-document url-prefix() { 
  .dropdown-menu > li > a > .badge {
    padding: 1px 6px 3px 6px;
  }
  
  .dropdown-menu > li > a > .badge.badge-roundless {
    padding: 1px 6px 2px 6px;
  }
}

/***
Custom tabs
***/
.tab-content {
  padding: 0px;  
  overflow: hidden;
}

.tabbable-custom { 
  -webkit-border-radius: 0; 
  -moz-border-radius: 0; 
  border-radius: 0;      
}

.widget .row-fluid:last-child .tabbable-custom {
  margin-bottom: 0px;
}

.tabbable-custom > .nav-tabs { 
  border: none; 
  margin: 0px;
}

.tabbable-custom > .tab-content { 
  border: 1px solid #ddd;  
  -webkit-border-radius: 0; 
  -moz-border-radius: 0; 
  border-radius: 0; 
  padding: 10px;
}

.tabbable-custom.boxless > .tab-content {
  padding:15px 0;
  border-left:none;
  border-right:none;
  border-bottom:none;
}

.tabbable-custom .nav-tabs > li { 
  margin-right: 2px; 
  border-top: 2px solid transparent; 
}

.tabbable-custom .nav-tabs > li > a { 
  -webkit-border-radius: 0; 
  -moz-border-radius: 0;
  border-radius: 0; 
  margin-right: 0; 
  padding: 5px 10px; 
}

.tabbable-custom .nav-tabs > li > a:hover { 
  background: none;
  border-color:transparent;
}

.tabbable-custom .nav-tabs > li.active { 
  border-top: 3px solid #7BAE23; 
  margin-top: 0; 
  position: relative; 
}

.tabbable-custom .nav-tabs > li.active > a  { 
  border-top: none; 
  font-weight: 400; 
}

.tabbable-custom .nav-tabs > li.active > a:hover { 
  background: #fff; 
  border-color: #d4d4d4 #d4d4d4 transparent; 
}

.tabbable-custom .nav-tabs > li { 
  margin-right: 2px; 
  border-top: 2px solid transparent; 
}

.tabs-below.tabbable-custom .nav-tabs > li { 
  border-top: none; 
  border-bottom: 2px solid transparent; 
  margin-top: -1px; 
}

.tabs-below.tabbable-custom .nav-tabs > li.active { 
  border-top: none; 
  border-bottom: 3px solid #7BAE23; 
  margin-bottom: 0; position: relative; 
}

.tabs-below.tabbable-custom .nav-tabs > li.active > a { 
  border-bottom: none 
}

.tabs-below.tabbable-custom .nav-tabs > li.active > a:hover { 
  background: #fff; 
  border-color: #d4d4d4 #d4d4d4 transparent; 
}

.tabs-left.tabbable-custom .nav-tabs > li { 
  margin-right: 0; 
  border-left: 2px solid transparent;
  margin-top: 0; 
}

.tabs-left.tabbable-custom .nav-tabs > li.active { 
  border-top: none; 
  border-left: 3px solid #7BAE23; 
  margin-top: 0; margin-right: -1px; position: relative; 
}

.tabs-left.tabbable-custom .nav-tabs > li.active > a { 
  border-top: 1px solid #d4d4d4; 
  border-left: 1px solid transparent; 
}

.tabs-left.tabbable-custom .nav-tabs > li.active > a:hover { 
  background: #fff; 
  border-color: #d4d4d4 transparent #d4d4d4 transparent; 
}

.tabs-right.tabbable-custom .nav-tabs > li { 
  margin-right: 0; 
  border-right: 2px solid transparent; 
  border-top: none; }

.tabs-right.tabbable-custom .nav-tabs > li.active { 
  border-top: none; 
  border-right: 3px solid #7BAE23; 
  margin-top: 0; 
  margin-left: -1px; 
  position: relative; 
}

.tabs-right.tabbable-custom .nav-tabs > li.active > a { 
  border-top: 1px solid #d4d4d4; 
  border-right: 1px solid transparent; 
}

.tabs-right.tabbable-custom .nav-tabs > li.active > a:hover { 
  background: #fff; 
  border-color: #d4d4d4 transparent #d4d4d4; 
}

.tabs-right.tabbable-custom .nav-tabs > li a, 
.tabs-left.tabbable-custom .nav-tabs > li a { 
  padding: 8px 10px 
}

/*full width tabs with bigger titles */
.tabbable-custom.tabbable-full-width > .tab-content {
  padding:27px 0 0;
  border-left:none;
  border-right:none;
  border-bottom:none;
}

.tabbable-custom.tabbable-full-width .nav-tabs > li > a {
  font-size:15px;
  line-height:15px;
  padding:9px 15px;
  font-family: 'PT Sans', sans-serif;
  border-bottom: 0;
}

.icons-btn{
  position: relative;
  cursor: pointer;
  cursor: hand;
  display: block;
}
.icons-btn .badge {
  position: absolute;
  font-size: 11px !important;
  font-weight: 300;
  top: -5px;
  right: -5px;
  padding: 3px 7px 3px 7px;
  color: white !important;
  text-shadow: none;
  border-width: 0;
  border-style: solid;
  -webkit-border-radius: 12px !important;
  -moz-border-radius: 12px !important;
  border-radius: 12px !important;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.badge{
  color: #333333;
  background: #E5E5E5;
}
.badge-1{
  color: #FFFFFF;
  background: #7BAE23;
}
.badge-2{
  color: #FFFFFF;
  background: #7BAE23;
}

/* for firefox only */
@-moz-document url-prefix() { 
  .icon-btn .badge {
    padding: 2px 7px 4px 7px;
  }
}  

/* bootstrap switch */
.has-switch label,
.has-switch span.switch-btn,
.has-switch span.switch-btn-1,
.has-switch span.switch-btn-2{
  padding: 7px 14px;
}
.has-switch span.switch-btn {
  color: #333333;
  text-shadow: none;
  background-color: #E5E5E5;
  background-image: none;
  filter: none;
  border-color: #E5E5E5;
}
.has-switch span.switch-btn:hover,
.has-switch span.switch-btn:focus,
.has-switch span.switch-btn:active,
.has-switch span.switch-btn.active,
.has-switch span.switch-btn.disabled,
.has-switch span.switch-btn[disabled] {
  color: #333333;
  background-color: #D8D8D8;
  border-color: #D8D8D8;
}

.has-switch span.switch-btn-1 {
  color: #FFFFFF;
  text-shadow: none;
  background-color: #7BAE23;
  background-image: none;
  filter: none;
  border-color: #7BAE23;
}
.has-switch span.switch-btn-1:hover,
.has-switch span.switch-btn-1:focus,
.has-switch span.switch-btn-1:active,
.has-switch span.switch-btn-1.active,
.has-switch span.switch-btn-1.disabled,
.has-switch span.switch-btn-1[disabled] {
  color: #FFFFFF;
  background-color: #69B055;
  border-color: #7BAE23;
}

.has-switch span.switch-btn-2 {
  color: #FFFFFF;
  text-shadow: none;
  background-color: #7BAE23;
  background-image: none;
  filter: none;
  border-color: #7BAE23;
}
.has-switch span.switch-btn-2:hover,
.has-switch span.switch-btn-2:focus,
.has-switch span.switch-btn-2:active,
.has-switch span.switch-btn-2.active,
.has-switch span.switch-btn-2.disabled,
.has-switch span.switch-btn-2[disabled] {
  color: #FFFFFF;
  background-color: #69B055;
  border-color: #7BAE23;
}


/* Accordion */
.accordion-group{
  border: 0;
}
.accordion-heading .accordion-toggle{
  margin: 0;
  padding: 0;
}
.accordion-inner{
  border: 0;
  padding: 0 0 20px;
}
.accordion .panel{
  background-color: #7BAE23;
  border: 1px solid #7BAE23;
  margin-bottom: 25px;
}
.accordion .active{
  background-color: #69B055;
  border-color: #7BAE23;
}
.accordion .panel-heading{
  padding: 8px 10px 8px 10px;
  border-bottom: 1px solid #FFFFFF;
}
.accordion .panel-heading h4{
  margin: 0;
  font-size: 20px;
}
.accordion .panel-heading h4 a{
  color: #FFFFFF;
}
.accordion .panel-body{
  background-color: #FFFFFF;
  padding: 10px;
}

/* Label */
.label-1{
  background-color: #7BAE23;
  color: #FFFFFF;
}
.label-2{
  background-color: #7BAE23;
  color: #FFFFFF;
}

/* Scrollbar */
.scroll .mCSB_horizontal>.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
  background: #7BAE23
}
.scroll .mCSB_horizontal>.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar:hover{
  background: #7BAE23
}

.scroll-1 .mCSB_horizontal>.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
  background: #7BAE23
}
.scroll-1 .mCSB_horizontal>.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar:hover{
  background: #69B055
}

.scroll-2 .mCSB_horizontal>.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
  background: #7BAE23
}
.scroll-2 .mCSB_horizontal>.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar:hover{
  background: #69B055
}

/*
** Header settings
*/
#header{
  background: #000000;
  font-size: 11px;
  color: #FFFFFF;
}
#header a{
  font-size: 11px;
  color: #FFFFFF;
  font-weight: bold;
  text-transform: uppercase;
  opacity: 0.8;
  filter: alpha(opacity=80);
}
#header a:hover{
  opacity: 1;
  filter: alpha(opacity=100);
}

/*
** Content settings
*/

/*
** Sidebar settings
*/
/* Flickr */
#flickr{
  margin-left: 0;
  list-style: none;
}
#flickr li{
  display: inline-block;
  padding: 3px;
}
#flickr li a{

  overflow: hidden;
}
#flickr li img{
  opacity: 0.6;
  filter: alpha(opacity=60);
}
#flickr li img,
#flickr li img:hover{
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
#flickr li img:hover{
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);

  opacity: 1;
  filter: alpha(opacity=100);
}

/*
** Title
*/
.widget-wrapper .title-1:after{
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.widget-wrapper{
  position: relative;
  margin-bottom: 25px;
}
.widget-wrapper .title-1{
  font-family: 'PT Sans', sans-serif;
  text-transform: uppercase;
  line-height: normal;
  font-size: 20px;
  margin: 0 0 30px 0;
  position: relative;
}
.widget-wrapper .title-1:after {
  background-color: #7BAE23;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  width: 120px;
  bottom: -10px;
}
.widget-wrapper .title-1:before {
  background-color: #CCCCCC;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  width: 100%;
  bottom: -10px;
}


/* MISC */
.list-styled li a{
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.list-styled li a:hover{
  padding-left: 3px;
}

.zoomContainer{
  z-index: 100;
  height: auto!important;
}
.zoomContainer,
.zoomContainer .zoomWindowContainer,
.zoomContainer .zoomWindowContainer div{
  cursor: crosshair!important;
}

.float-left{
  float: left;
}
.float-right{
  float: right;
}
.float-none{
  float: none;
}
.unbold{
  font-weight: normal;
}
.caroufredsel_wrapper{
  margin: 0!important;
}
.caroufredsel_wrapper li.items{
  float:left;
  height: auto!important;
}
.unmargin{
  margin: 0!important;
}
.unmargin-left{
  margin-left: 0!important;
}
.unmargin-right{
  margin-right: 0!important;
}
.unmargin-top{
  margin-top: 0!important;
}
.unmargin-bottom{
  margin-bottom: 0!important;
}
.unpadding{
  padding: 0!important;
}
.unpadding-left{
  padding-left: 0!important;
}
.unpadding-right{
  padding-right: 0!important;
}
.unpadding-top{
  padding-top: 0!important;
}
.unpadding-bottom{
  padding-bottom: 0!important;
}
.unborder{
  border: 0!important;
}
.img-responsive {
  display: inline-block;
  height: auto;
  max-width: 100%;
}
.status_authorized, .status_fulfilled{
  text-transform: capitalize;
  color: ;
}

.status_unauthorized, .status_unfulfilled{
  text-transform: capitalize;
  color: ;
}
.margin-left-10{
  margin-left: 10px;
}
.text-justify{
  text-align: justify;
}
.list-styled li{
  margin: 5px 0;
}
.uppercase{
  text-transform: uppercase;
}
.req{
  color: ;
}
/* Page Animated item Styles */
.fast-animated {
  -webkit-animation-duration: 0.5s;
  -moz-animation-duration: 0.5s;
  -o-animation-duration: 0.5s;
  animation-duration: 0.5s;
}
.animated{
  visibility: hidden;
}
.visible{
  visibility: visible;
}
.touch .animated{
  visibility: visible!important;
}
#cart-animation {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  position: absolute;
  display:block;
  z-index: 15;
  text-align:center;
  line-height: 35px;
  background: #fb354f !important;
  color: #fff !important;
  font-weight:bold;
  border:3px solid #fb354f;
  font-size: 16px;
}
.control-group{
  margin-bottom: 0;
}




html{
  margin:0!important;
}
#admin_bar_iframe{
  display: none;
}
.control-container{
  padding: 15px 20px;
}
.control-group.last{
  margin-top: 20px;
}
.control-group.last10{
  margin-top: 10px;
}
.control-group.last25{
  margin-top: 25px;
}

#recent-products {display:none;}
/* ================ HEADER ==================== */
#header{
  position: relative;
  border-top: 3px solid #7BAE23;
  top: 0!important;
}

#header.on{
  position: fixed;
  z-index: 10;
  width: 100%;
  top: 0;
  background: transparent;
}
#header.on .overlay_header{
  background-color: #000000!important;
}
#header.on .navbar .nav > li > a{
  color: #FFFFFF;
}
#header.on .search-wrapper input{
  color: #FFFFFF;
}
#header.on .search-wrapper input:focus,
#header.on .search-wrapper input:hover,
#header.on .is-mobile .search-wrapper input{
  border-color: #FFFFFF;
}
#header.on .search-wrapper input:-moz-placeholder{
  color: #FFFFFF;
}
#header.on .search-wrapper input::-moz-placeholder{
  color: #FFFFFF;
}
#header.on .search-wrapper input:-ms-input-placeholder{
  color: #FFFFFF;
}
#header.on .search-wrapper input::-webkit-input-placeholder{
  color: #FFFFFF;
}
#header.on .search-form .icon-search{
  color: #FFFFFF;
}
#header.on .search-wrapper .search-submit i{
  border-left-color: #FFFFFF;
}

#header.on .template-logo{
  padding: 10px 0;
}
#header.on .top_links{
  display: none;
}
#header.on .navigation,
#header.on .search-wrapper{
  padding-top: 13px;
}

#header .overlay_header{
  opacity: 0.85;
  filter: alpha(opacity=85);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
#header.on .overlay_header{
  opacity: 0.85;
  filter: alpha(opacity=85.0);
}
.templateIndex #header .overlay_header{
  background-color: #000000;
}
#header .icon-caret-down{
  font-size: 12px;
  padding-left: 3px;
}
.top_links > ul > li{
  padding: 0 0 0 20px;
}
.top_links > ul > li:first-child{
  padding-left: 0;
}



/* LOGO */
.template-logo{
  clear: both;
  position: relative;
  float: left;
  width: 100%;
  max-height: 90px;
  z-index: 1;
  padding: 30px 0;
}
.header-center .template-logo{
  padding: 0 0 30px;
}
.header-center .navigation{
  padding-bottom: 10px;
}
#header .template-logo a{
  font-size: 60px;
  font-weight: normal;
  color: #7BAE23;
  display: inline-block;
  opacity: 1;
  filter: alpha(opacity=100);
  max-width: 100%;
}
#header .template-logo a:hover{
  color: #7BAE23;
}
#header.on .template-logo a{
  max-height: 50px;
}

/* ACCOUNT LINKS */
#header .top_links{
  padding-top: 10px;
  display: inline-block;
}
#header .top_links > ul{
  margin-bottom: 5px;
}


/* SUPPORT LINK */
#support{
  position: relative;
  display: inline-block;
  z-index: 5;
}


/* CARTS */
#umbrella .cart-link{
  padding-bottom: 7px;
}
#umbrella .wrapper-cart{
  position: relative;
}
#umbrella .wrapper-cart i{
  position: absolute;
  left: -30px;
  top: -5px;
}


/* SEARCH */
.search-wrapper{
  clear: both;
  position: relative;
  z-index: 4;
}
.page-search .search-wrapper{
  bottom: 6px;
}
.search-wrapper input{
  height: 34px;
  background: transparent;
  margin: 0;
  padding-right: 30px;
  width: 60%;
  font-size: 11px;
  opacity: 0.8;
  filter: alpha(opacity=80);
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.search-404 input{
  width: 100%;
}
#col-main .search-wrapper input{
  height: 36px;
}
#header .search-wrapper input{
  border-color: transparent;
  float: right;
  color: #FFFFFF;
}
#header .search-wrapper input:focus,
#header .search-wrapper input:hover,
#header .is-mobile .search-wrapper input{
  border-color: #FFFFFF;
  opacity: 1;
  filter: alpha(opacity=100);
}
.search-wrapper input:focus{
  width: 100%;
}
#header .search-wrapper input:-moz-placeholder{
  color: #FFFFFF;
}
#header .search-wrapper input::-moz-placeholder{
  color: #FFFFFF;
}
#header .search-wrapper input:-ms-input-placeholder{
  color: #FFFFFF;
}
#header .search-wrapper input::-webkit-input-placeholder{
  color: #FFFFFF;
}

.search-wrapper input:-moz-placeholder{
  font-style: italic;
}
.search-wrapper input::-moz-placeholder{
  font-style: italic;
}
.search-wrapper input:-ms-input-placeholder{
  font-style: italic;
}
.search-wrapper input::-webkit-input-placeholder{
  font-style: italic;
}

.search-wrapper .search-submit{
  padding-left: 0;
}
.search-wrapper .search-submit i{
  padding-left: 6px;
  border-left: 1px solid #000000;
}
#header .search-wrapper .search-submit i{
  border-left-color: #FFFFFF;
}
.search-form{
  position: relative;
  margin: 0;
}
#header .search-form{
  overflow: hidden;
}
.search-form .icon-search{
  font-size: 20px;
  color: #000000;
}
#header .search-form .icon-search{
  color: #FFFFFF;
}
.search-submit{
  display: inline-block;
  border: none;
  outline: none;
  background-color: transparent;
  position: absolute;
  top: 7px;
  right: 0;
}
#result-ajax{
  position: absolute;
  left: 0;
  width: 100%;
  margin-top: 10px;
}
#result-ajax .wrapper-ajax{
  margin: 0;
  max-height: 300px;
  overflow-y: auto;
}
#result-ajax .wrapper-ajax li:first-child{
  margin-top: 5px;
}
#result-ajax .wrapper-ajax li:last-child{
  margin-bottom: 5px;
}
#header #result-ajax a{
  text-transform: none;
  font-weight: normal;
  font-size: 13px;
  white-space: normal;
  
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
#header #result-ajax a:hover{
  padding-left: 22px;
}
#result-ajax .marked{
  color: #7BAE23;
  font-weight: bold;
}

/* MENU */
/* Dropdown menu */
.navbar .nav > li > a{
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.sub-indicator{
  position: absolute;
  display: none;
  right: 50%;
  top: auto;
  bottom: -3px;
  width: 10px;
  height: 1px;
  text-indent: -999em;
  overflow: hidden;
  background: #FFFFFF;
  opacity: 0.7;
  filter: alpha(opacoty=70);
}
.navbar .open .sub-indicator{
  display: none;
}
.navbar{
  margin: 0;
}
.navbar .nav{
  float: right;
  margin: 0;
}
.header-center .navbar .nav{
  float: left;
}
.navbar .nav > li{
  padding: 7px 0px 5px;
  margin: 0 1px 0;
  z-index: 1;
  position: relative;
}
.navbar .nav > li:first-child{
  margin-left: 0;
}
.navbar .nav > li:last-child{
  margin-right: 0;
}
.navbar .nav > li > .dropdown-menu{
  min-width: 210px;
}
#header .navbar .nav > li > a{
  color: #FFFFFF;
  text-transform: uppercase;
  position: relative;
  padding: 0 12px;
  text-shadow: none;
  opacity: 1;
  filter: alpha(opacity=100);
}
#header .header-center .navbar .nav > li > a{
  padding: 6px 12px 5px;
  margin: -6px 0 0 0;
}
#header .navbar .nav > li.active > a, 
#header .navbar .nav > li > a:hover, 
#header .navbar .nav > li > a:focus,
#header .navbar .nav > li:hover > a {
  padding: 6px 12px 5px;
  margin: -6px 0 0 0;
  color: #FFFFFF;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
#header .header-center .navbar .nav > li.active > a, 
#header .header-center .navbar .nav > li > a:hover, 
#header .header-center .navbar .nav > li > a:focus,
#header .header-center .navbar .nav > li:hover > a {
  padding: 6px 12px 5px;
  margin: -6px 0 0 0;
}

#header .navbar .nav > li.active > a:before, 
#header .navbar .nav > li > a:hover:before, 
#header .navbar .nav > li > a:focus:before,
#header .navbar .nav > li:hover > a.active,
#header .navbar .nav > li:hover > a:before{
  background-color: #7BAE23!important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  content: " ";
}

.navbar-inner,
.navbar .nav .dropdown-menu > li{
  padding: 0;
  border: 0;
  position: relative;
}
.navbar .nav .dropdown-menu > li:first-child{
  margin-top: 5px;
}
.navbar .nav .dropdown-menu > li:last-child{
  margin-bottom: 5px;
}
.navbar .nav .dropdown-menu > li{
  min-width: 200px;
  margin: 0;
}
#header .navbar .nav .dropdown-menu > li > a{
  min-height: 25px;
  line-height: 25px;
  white-space: normal;
  font-size: 14px;
  font-weight: normal;
  text-transform: none;
  font-family: 'PT Sans', sans-serif;
  color:#FFF;
}
.navbar-inner,
.navbar .nav>.active>a, .navbar .nav>.active>a:hover, .navbar .nav>.active>a:focus,
.navbar .nav li.dropdown.open>.dropdown-toggle, .navbar .nav li.dropdown.active>.dropdown-toggle, .navbar .nav li.dropdown.open.active>.dropdown-toggle{
  background: none;
}
.navbar-inner{
  min-height: 30px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: none;
}
#header .navbar .nav > li > a:hover,
#header .navbar .nav > li > a:focus,
#header .navbar .nav .dropdown-menu > li > a:hover, 
#header .navbar .nav .dropdown-menu > li > a:focus, 
#header .navbar .nav .dropdown-submenu:hover > a, 
#header .navbar .nav .dropdown-submenu:focus > a{
  text-decoration: none;
}
#header .navbar .nav .dropdown-menu > li > a:hover, 
#header .navbar .nav .dropdown-menu > li > a:focus, 
#header .navbar .nav .dropdown-submenu:hover > a, 
#header .navbar .nav .dropdown-submenu:focus > a,
#header .navbar .nav .dropdown-menu > .active> a, 
#header .navbar .nav .dropdown-menu > .active> a:hover, 
#header .navbar .nav .dropdown-menu > .active> a:focus{
  padding-left: 22px;
  opacity: 1;
  filter: alpha(opacity=100);
}

.navbar .btn-navbar:hover{
  cursor: pointer;
}

/* ================ MAIN MENU ==================== */
/* ================ END MAIN MENU ==================== */

/* ================ MOBILE MENU ==================== */
#nav-mobiles{
  position: relative;
  z-index: 4;
  margin-top: 5px;
}
#nav-mobiles .search-form,
#nav-mobiles .search-form input{
  margin-bottom: 0;
}
.nav-mobiles .button-menu{
  margin-bottom: 10px;
  z-index: 4;
  position: relative;
}
#nav-mobiles .nav-mobile{
  background-color: #3D3D3D;
}
#nav-mobiles .nav-mobile .nav-line{
  border-top: 1px solid #BDBDBD;
  opacity: 0.2;
  filter: alpha(opacity=20);
  width: 100%;
  display: block;
}
#nav-mobiles .nav-mobile .nav{
  margin: 0;
  position: relative;
}
#nav-mobiles .nav-mobile .nav.first .nav-line{
  border-top: 0;
}
#nav-mobiles .nav-mobile .nav > a{
  text-transform: uppercase;
  padding: 10px 15px;
}
#nav-mobiles .nav-mobile .nav a{
  color: #BDBDBD;
  display: block;
}
#nav-mobiles .nav-mobile .nav .nav-sub li{ 
  margin-left: 40px;
}
#nav-mobiles .nav-mobile .nav .nav-sub a{
  padding: 7px 0;
}
#nav-mobiles .nav-mobile .nav .nav-arrow{
  position: absolute;
  right: 0;
  top: 0;
  width: 45px;
  height: 41px;
  text-align: center;
}
#nav-mobiles .nav-mobile .nav .nav-arrow .nav-arrow-overlay{
  width: 100%;
  height: 100%;
  display: block;
  background-color: #BDBDBD;
  opacity: 0.1;
  filter: alpha(opacity=10);
}
#nav-mobiles .nav-mobile .nav .nav-arrow i{
  position: relative;
  top: -30px;
}
#nav-mobiles .nav-mobile .nav .toggle .nav-arrow,
#nav-mobiles .nav-mobile .nav .toggle .nav-arrow .nav-arrow-overlay{
  transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}
/* ================ END MOBILE MENU ==================== */

/* Header on mobile */
.is-mobile{
  text-align: center;
}
#header .is-mobile .dropdown-menu a{
  color: #000000;
  text-align: left;
}
.is-mobile > ul{
  margin: 0;
  position: relative;
  display: inline-block;
}
.is-mobile > ul > li{
  vertical-align: middle;
  position: relative;
  top: 0;
  padding: 15px 20px;
}
.is-mobile > ul > li:first-child{
  padding-left: 0;
  border-left: none;
}
.is-mobile > ul > li:last-child{
  padding-right: 0;
}
.is-mobile .currencies.dropdown-menu{
  top: 28px;
  min-width: 70px;
}
.is-mobile .customer.dropdown-menu{
  top: 28px;
  min-width: 100px;
}
.is-mobile .btn-navbar{
  padding: 0!important;
}
.is-mobile .btn-group{
  position: relative;
  font-size: 12px;
  margin: 0;
}
.is-mobile .currency .currency_wrapper,
.is-mobile .currency .currency_wrapper:hover{
  color: #FFFFFF;
}
.is-mobile .is-mobile-login i,
.is-mobile .is-mobile-search i,
.is-mobile .is-mobile-cart i,
.is-mobile .is-mobile-currency a{
  color: #FFFFFF;
  cursor: pointer;
}
.is-mobile .is-mobile-login i,
.is-mobile .is-mobile-search i,
.is-mobile .is-mobile-cart i{
  font-size: 18px;
}
.is-mobile .is-mobile-search,
.is-mobile .is-mobile-search .search-form{
  position: static;
}
.is-mobile .is-mobile-search .search-form .input-search{
  position: absolute;
  left: 0;
  width: 100%;
  top: 8px;
  background-color: #000000;
  display: none;
  z-index: 8;
}
.is-mobile .is-mobile-search .search-form .icon-remove{
  position: absolute;
  right: 8px;
  top: 16px;
  z-index: 10;
  display: none;
}
.is-mobile .is-mobile-search.on .search-form .input-search,
.is-mobile .is-mobile-search.on .search-form .icon-remove{
  display: block;
}
.is-mobile .is-mobile-search .search-form input{
  width: 100%;
}
.is-mobile .is-mobile-currency .currency_wrapper{
  border: none;
  padding: 0;
}
.is-mobile .is-mobile-login .dropdown-toggle{
  line-height: 1.5em;
}
.is-mobile .navbar .btn-navbar, 
.is-mobile .navbar .btn-navbar:hover{
  width: auto;
  background: transparent
}
.is-mobile .navbar .btn-navbar .icon-bar{
  width: 14px;
  height: 2px;
  background: #FFFFFF;
}
.is-mobile-nav .nav{
  border-top: 1px dashed #FFFFFF;
}


/* ================ IMAGE GALLERY ==================== */
#module-container-holder {
  position: relative;
  z-index: 2;
  height: 100%;
}
.module-full-width-gallery {
  float: left;
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}
#module-full-width-holder {
  position: relative;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: inline-block;
  z-index: 2;
}
.full-width-item {
  position: relative;
  float: left;
  width: auto;
  height: auto;
  overflow: hidden;
  cursor: pointer;
}
.full-width-item a{
  display: block;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  -moz-box-sizing:border-box;
  
  margin: 0 0 20px;
  border: 1px solid #CCCCCC;
  position: relative;
  overflow: hidden;
  background-color: #FFFFFF;
}
.full-width-item a .img-wrapper{
  padding: 10px;
  display: inline-block;
  max-width: 100%;
  height: 160px;
  line-height:160px;
}
#module-full-width-holder .full-width-item:nth-child(3n+1){
  margin-left: 0!important;
  clear: both;
}
#thumb-image-hover {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}
#thumb-image-hover .background {
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #0c0c0c;
}
.opacity_6 {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  filter: alpha(opacity=60);
  -moz-opacity: 0.6;
  -khtml-opacity: 0.6;
  opacity: 0.6;
}
.zoom-gallery, .zoom-gallery-small {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.full-width-item .icon-plus {
  position: absolute;
  font-size: 20px;
  color: #ffffff;
  top: 50%;
  left: 50%;
  margin-top: -10px;
  margin-left: -10px;
}
.full-width-item .item-title {
  position: absolute;
  width: 100%;
  bottom: 0px;
}
.full-width-item .item-title h4 {
  position: relative;
  float: left;
  width: 90%;
  color: #ffffff;
  text-align: center;
  margin: 5%;
  line-height: 140%;
}
.full-width-item .item-title-mb h4 {
  position: relative;
  width: 100%;
  font-size: 18px;
  text-align: center;
  margin-bottom: 5%;
  line-height: 140%;
}





/* ================ SOCIAL ICONS ==================== */
#widget-social.social-icons{
  position: fixed;
  z-index: 10;
  right: 0;
  top: 100px;
  right: -160px
}
.social-icons ul{
  margin-bottom: 0;
}
.social-icons ul li{
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 3px;
}
.social-icons .social-wrapper{
  display: block;
  margin: 3px 0;
  width:200px;
  background-color: ;
  color: ;
  position: relative;
  right: 0;
  font-family: 'PT Sans', sans-serif;
}
.social-icons .social-wrapper:hover{
  right: 160px;
}
.social-icons .social-icon{
  height: 30px;
  width: 30px;
  display: inline-block;
  padding: 7px 5px 3px;
  text-align: center;
}
.social-icons i{
  font-size: 25px;
  font-style: normal;
  vertical-align: middle;
}
.social-icons .cart,
.social-icons .cart .social-icon{
  background-color: #7BAE23;
  color: #FFFFFF;
}
.social-icons .facebook,
.social-icons .facebook .social-icon{
  background-color: #3A589B;
  color: #FFFFFF;
}
.social-icons .twitter,
.social-icons .twitter .social-icon{
  background-color: #19BFE8;
  color: #FFFFFF;
}
.social-icons .pinterest,
.social-icons .pinterest .social-icon{
  background-color: #1C1D21;
  color: #FFFFFF;
}
.social-icons .google,
.social-icons .google .social-icon{
  background-color: #1C1D21;
  color: #FFFFFF;
}
.social-icons .youtube,
.social-icons .youtube .social-icon{
  background-color: #1C1D21;
  color: #FFFFFF;
}
.social-icons .flickr,
.social-icons .flickr .social-icon{
  background-color: #1C1D21;
  color: #FFFFFF;
}
.social-icons .instagram,
.social-icons .instagram .social-icon{
  background-color: #1C1D21;
  color: #FFFFFF;
}
.social-icons .tumblr,
.social-icons .tumblr .social-icon{
  background-color: #1C1D21;
  color: #FFFFFF;
}
.social-icons .rss,
.social-icons .rss .social-icon{
  background-color: #F79638;
  color: #FFFFFF;
}
.social-icons .social-title {padding-top:4px;}
.social-icons .social-wrapper,
.social-icons .social-icon{
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

/* Payment method icons */
#widget-payment{
  position: relative;
  z-index: 1;
}
#widget-payment ul{
  margin: 0;
}
#widget-payment ul li{
  padding: 6px 2px 0 0;
}
#widget-payment ul li:first-child{
  padding-left: 0;
}

/* ================ FOOTER ==================== */
#footer-copyright {
  position: relative;
  color: #FFFFFF;
  font-size: 14px;
}
#footer-copyright:after, #footer-copyright:before {
  content: "";
  position: absolute;
  left: 50%;
  top: -14px;
  border-radius: 3px;
  border: 8px solid transparent;
  border-bottom-width: 7px;
  border-bottom-color: #333333;
}
#footer-copyright a{
  color: #FFFFFF;
}
#footer-copyright a:hover{
  color: #CCCCCC;
}
#footer{
  background-color: #333333;
  padding-top: 18px;
}
#footer .widget-wrapper .title-1{
  border-bottom-color: #666666;
  color: #FFFFFF;
      font-weight:bold;
  font-style:normal;
  font-size: 14px;
}
#footer .widget-wrapper .title-1 span{
  color: #CCCCCC;
}
#footer .widget-wrapper .title-1:after{
  background-color: #999999;
}
#copyright{
  background-color: #2C2C2C;
  padding: 12px 0;
  border-top: 1px solid #313131;
}
#widget-copyright{
  position: relative;
  z-index: 1;
      padding-top:10px;
}
#email-input{
  height: 34px;
  background-color: transparent;
  color: #FFFFFF;
}
#email-input:-moz-placeholder{
  color: #FFFFFF;
  font-style: italic;
}
#email-input::-moz-placeholder{
  color: #FFFFFF;
  font-style: italic;
}
#email-input:-ms-input-placeholder{
  color: #FFFFFF;
  font-style: italic;
}
#email-input::-webkit-input-placeholder{
  color: #FFFFFF;
  font-style: italic;
}
#email-submit{
  font-size: 14px!important;
  margin-bottom: 7px;
}
#widget-twitter{
  max-height: 215px;
  overflow: hidden;
}


/* ================ CONTENT ==================== */
#module-content{
  max-height: 100%;
  width: 100%;
  position: relative;
  z-index: 3;
  background: #FFFFFF;
}
#module-content #col-main{
  padding-bottom: 25px;
  padding-top: 30px;
  z-index: 1;
  position: relative;
  min-height: 250px;
}
#module-content #sidebar{
  padding-top: 20px;
}
#module-content #sidebar .widget-wrapper:last-child{
  margin-bottom: 50px;
}
.templateIndex #module-content #col-main{
  margin-top: 0;
  padding-bottom: 5px;
}
.templateIndex #module-content #col-main .widget-wrapper{
  margin-bottom: 15px;
}
.templateIndex #module-content #col-main .sidebar-home .widget-wrapper{
  margin-bottom: 25px;
}
#loading-loader{
  background: #FFFFFF url(https://assets3.insales.ru/assets/1/232/573672/1547866635/loader.gif) no-repeat center;
  height: 100%;
  width: 100%;
  z-index: 2;
  position: absolute;
  visibility: visible;
  opacity: 1;
  filter: alpha(opacity=100);
}



/* Home - General */
.hideControls .pages,
.hideControls .s-prev,
.hideControls .s-next,
.hideControls .s-prev .btn-label,
.hideControls .s-next .btn-label{
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

/* Slideshow */
.hideControls{
  position: relative;
}
.hideControls .s-prev, 
.hideControls .s-next {
  position: absolute;
  top: 50%;
  margin-top: -35px;
  opacity: 0;
  filter: alpha(opacity=0);
  font-size: 100px;
  padding: 0 20px;
  line-height: 20px;
  z-index: 100;
}
.hideControls .left{
  left: 25px;
  right: auto;
}
.hideControls .right{
  right: 25px;
  left: auto;
}
.hideControls .btn-label{
  background: #000000;
  color: #ffffff;
  font-weight: 700;
  font-size: 12px;
  display: inline-block;
  padding: 0 4px;
  line-height: 20px;
  position: absolute;
  top: 50%;
  margin-top: -12px;
  opacity: 0;
  filter: alpha(opacity=0);
  text-indent: 1px;
  top: 14px;
  font-family: 'PT Sans', sans-serif;
  letter-spacing: 2px;
}
.touch .hideControls .btn-label{
  display: none!important;
}
.hideControls .s-prev .btn-label {
  right: -20px;
}
.hideControls .s-next .btn-label {
  left: -22px;
}
.hideControls .s-prev:hover .btn-label {
  right: -10px;
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.hideControls .s-next:hover .btn-label {
  left: -12px;
  opacity: 0.5;
  filter: alpha(opacity=50);
}

/* Home - The Action */
#action_box{
  padding: 15px 0;
  border-top: 2px solid #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
  position: relative;
  background: -moz-linear-gradient(bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.2) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.2)));
  background: -webkit-linear-gradient(bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.2) 100%);
  background: -o-linear-gradient(bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.2) 100%);
  background: -ms-linear-gradient(bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.2) 100%);
  background: linear-gradient(to top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.2) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#33000000',GradientType=0 );
  background-color: #7BAE23;
}
#action_box:after, #action_box:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  border-radius: 3px;
  border: 8px solid transparent;
  border-top-width: 7px;
  border-top-color: #7BAE23;
}
#action_box .action_box_wrapper{
  display: block;
  overflow: hidden;
}
.center {text-align:center;}
#action_box h4.text{
  margin:0px;
  color: #FFFFFF;
  font-size: 18px;
  text-transform: none;
  display:inline-block;
  margin-right:10px;
  line-height:18px;
}

#action_box h4.text .btn {display:inline-block;float:none;}


/* Breadcrumb */
#breadcrumb{
  background: #FFFFFF;
  padding: 10px 0;
  margin-bottom: 10px;
  
  border-bottom: 1px solid #CCCCCC;
  text-transform: uppercase;
  position: relative;
  margin: 0;
  overflow: hidden;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
#breadcrumb h3{
  line-height: 30px;
  font-size: 30px;
}
#breadcrumb .shadow-up{
  position: absolute;
  bottom: -1px;
  width: 100%;
  height: 20px;
  background: url(https://assets3.insales.ru/assets/1/232/573672/1547866635/shadow-up.png) no-repeat top center;
}
#breadcrumb a, #breadcrumb .page-title{
  margin: 0 5px;
  text-transform: none;
  font-family: 'PT Sans', sans-serif;
}
#breadcrumb a:first-child{
  margin-left: 0;
}
#breadcrumb a:last-child, #breadcrumb .page-title{
  margin-right: 0;
}
#breadcrumb a{
  color: #000000;
  text-decoration: none;
}
#breadcrumb a:hover{
  color: #000000;
  text-decoration: underline;
}
#breadcrumb .time{
  display: inline-block;
  margin: 5px 0 5px;
  padding: 5px 10px;
  background: #7BAE23;
  color: #FFFFFF;
  font-family: 'PT Sans', sans-serif;
  text-transform: none;
}
#breadcrumb .homepage-link i{
  font-size: 14px;
}

/* Cart */
#umbrella{
  position: relative;
  display: inline-block;
  z-index: 5;
}
#umbrella .dropdown-menu:before{
  right: 9px;
  left: auto;
}
#umbrella .dropdown-menu:after{
  right: 10px;
  left: auto;
}
#umbrella .icon-shopping-cart{
  font-size: 13px;
  color: #FFFFFF;
  padding-right: 3px;
}
#umbrella .cart-number{
  position: relative;
  top: -14px;
  right: -3px;
  background-color: #7BAE23;
  color: #FFFFFF;
  font-size: 11px;
  display: inline-block;
  line-height: 14px;
  border-radius: 50%!important;
  -moz-border-radius: 50%!important;
  -webkit-border-radius: 50%!important;
  text-align: center;
  border: 0;
  padding: 4px 8px;
  margin: 0;
}
#umbrella .empty{
  margin-top: 15px;
  margin-bottom: 15px;
}
#umbrella .empty a{
  text-transform: uppercase;
  color: #000000;
}
#umbrella .empty a:hover{
  color: #7BAE23;
}
#umbrella .num-items-in-cart{
  display: inline-block;
}
#umbrella .num-items-in-cart span{
  color: #FFFFFF;
}
#umbrella .dropdown-menu{
  width: 320px;
  left: auto;
  right: 0;
}
#umbrella #cart-info .items{
  overflow-y: hidden;
  max-height: 350px;
  padding-bottom: 0;
}
#umbrella .dropdown-parent:hover #cart-info .items{
  overflow-y: auto;
}
#umbrella #cart-info .control-group{
  margin-bottom: 10px;
}
#umbrella #cart-info .control-group:last-child{
  margin-bottom: 0;
}
#umbrella #cart-info .cart-left{
  position: relative;
  display: block;
}
#umbrella #cart-info .cart-left .cart-close{
  position: absolute;
  top: -5px;
  left: -5px;
  font-size: 20px;
  background-color: transparent;
  z-index: 5;
}
#umbrella #cart-info .cart-image{
  display: block;
  width:60px;
  float:left;
  height:60px;
  text-align:center;
  line-height:60px;
  border: 1px solid #CCCCCC;
  overflow: hidden;
}
#umbrella #cart-info .cart-image img {max-width:60px;max-height:60px;}
#umbrella #cart-info .items a{
  color: #000000;
}
#umbrella #cart-info .items a:hover{
  color: #7BAE23;
}
#umbrella #cart-info .items a{
  margin-top: 0;
  margin-bottom: 5px;
  text-transform: none;
  font-size:14px;
  font-weight:400;
  
}
#umbrella #cart-info .items a.cart-close {font-size:18px;}
#umbrella #cart-info .temp{
  min-height: 78px;
}
#umbrella .cart-loading{
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFFFFF url(https://assets3.insales.ru/assets/1/232/573672/1547866635/loader.gif) no-repeat center;
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.style_2 .cart-items{
  margin-bottom: 25px;
}
.cart-items .subtotal{
  font-size: 20px;
}
.cart-items .price{
  font-size: 18px;
}
.style_2 .cart-items .price{
  margin-bottom: 10px;
}
.cart-items a{
  display: inline-block;
  max-width: 100%;
}
.cart-items .image{
  min-width: 100px;
}
.cart-items .title{
  min-width: 200px;
}
.cart-items .quantity{
  max-width: 70px;
}
#additional-checkout-buttons{
  margin-top: 20px;
}

/* Currency */
.top_links .currency{
  padding-bottom: 7px;
}
.currency{
  display: inline-block;
  position: relative;
  z-index: 5;
}
.currency .dropdown-menu{
  min-width: 70px;
  right: 0;
  left: auto;
}
.currency .dropdown-menu:before{
  right: 9px;
  left: auto;
}
.currency .dropdown-menu:after{
  right: 10px;
  left: auto;
}
#header .currency .dropdown-menu a{
  color: #000000;
}

/* Account */
#accounts{
  position: relative;
}
#accounts li.br span{
  background-color: #FFFFFF;
  margin-right: 20px;
  width: 1px;
  height: 13px;
  position: relative;
  top: 2px;
  display: inline-block;
}
.header-center #accounts li.br{
  display: none;
}
#accounts li.login{
  padding-bottom: 7px;
}
#accounts,
#accounts .login{
  z-index: 5;
}
#accounts #loginBox{
  min-width: 260px;
}
#accounts #loginBox form{
  margin-bottom: 0;
}
#loginBox.focus{
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1;
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  -ms-transition-delay: 0s;
  transition-delay: 0s;
}
.address_table{
  margin-top: 25px;
}
.address_table .address_actions .action_edit{
  margin-right: 20px;
}
.control-group.guest{
  margin-top: 20px;
}
#add_address form{
  margin-bottom: 0;
}
#customer_orders .total,
#customer_orders .number a,
#order_details .price{
  font-size: 18px;
}
#order_details .total{
  font-size: 20px;
}

/* 404 Page */
.page-404 ul li{
  vertical-align: middle;
  padding: 5px;
}
.page-404 ul li form,
.page-404 ul li form input{
  margin: 0;
}
.page-404 ul li i{
  font-size: 20px;
}

/* Contact Page */
#module-content #col-main.contact_map{
padding-top: 0;
}
.contact-world-map{
  background: url(https://assets3.insales.ru/assets/1/232/573672/1547866635/worldmap.png) no-repeat center transparent;
  min-height: 150px;
}
#contact_map{
  width: 100%;
  height: 400px;
}
.contact-content{
  margin-top: 20px;
  margin-bottom: 30px;
}

/* Custom bootstrap */
.dropdown-menu{
  border:1px solid #CCCCCC;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.label, .badge{
  font-weight: 300;
}

/* Icons */
.btn-group .icon-chevron-down,
#breadcrumb .icon-chevron-right{
  font-size: 10px;
}

/* Hover */
.theHover .hoverWrapper .theHoverMore{
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.theHover,
.theHover .hoverWrapper{
  position: relative;
  display: block;
}
.notouch .theHover .hoverWrapper .theHoverMore{
  position: relative;
  left: -20px;
  opacity: 0;
  filter: alpha(opacity=0);
}
.notouch .theHover:hover .hoverWrapper .theHoverMore{
  left: 0;
  opacity: 1;
  filter: alpha(opacity=100);
}

/* Blog */
.blog-page .blog-article{
  padding-bottom: 10px;
  margin-bottom: 45px;
  border-bottom: 1px solid #CCCCCC;
}
.blog-page .blog-article:last-child{
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.blog-page .blog-article .title {
  font-size: 21px;
  line-height: 21px;
  margin-top: 0;
}
.blog-page .blog-article-comm .title {padding-left:45px;}
.blog-page .icons-btn{
  cursor: default;
}
.blog-page .icons-btn .badge{
  top: 2px;
  left: 0px;
  right:auto;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  border-radius: 0 !important;
}
.blog-page .blog-tags .mini{
  font-size: 13px;
  font-family: 'PT Sans', sans-serif;
  font-weight: normal;
}
.blog-page .blog-comment{
  text-decoration: none;
  cursor: pointer;
}
.blog-page .blog-comment:hover{
  text-decoration: underline;
}
.blog-page .blog-tag-data li{
  padding: 0;
  margin: 0 5px 5px 0;
}
.blog-page .blog-tag-data li:first-child{
  margin-top: 10px;
}
.blog-page .blog-tag-data li:last-child{
  margin-bottom: 0;
}
.blog-page .blog-comment:hover{
  text-decoration: underline;
}
.blog-page .excerpt{
  overflow: hidden;
  display: inline-block;
  max-width: 100%;
}
.article .blog-tag-data li,
.article .blog-tag-data li:first-child,
.article .blog-tag-data li:last-child{
  margin-top: 0;
}

.blog-tags li{
  padding: 0!important;
}
.blog-tags a{
  outline: none;
  height: 13px;
  line-height: 13px;
  padding: 2px 4px;
  margin: 0 5px 5px 0;
  display: inline-block;
  text-transform: capitalize;
  font-family: 'PT Sans', sans-serif;
  background: #E5E5E5;
  color: #333333;
  border: 1px solid #E5E5E5;
}
.notouch .blog-tags a:hover,
.notouch .blog-tags a:focus,
.notouch .blog-tags a:active{
  background: #D8D8D8;
  color: #333333;
  border: 1px solid #D8D8D8;
  outline: none;
}
.blog-tags .active a{
  background: #7BAE23;
  color: #FFFFFF;
  border: 1px solid #7BAE23;
}
.notouch .blog-tags .active a:hover,
.notouch .blog-tags .active a:focus,
.notouch .blog-tags .active a:active{
  background: #69B055;
  color: #FFFFFF;
  border: 1px solid #7BAE23;
}
#comments .comment{
  border-bottom: 1px solid #CCCCCC;
}
#comment-form{
  margin-top: 25px;
}
#comment-form #comment_body, #feedback_content{
  min-height: 100px;
  margin-bottom: 0;
}
#thanks {display:none;}
#feedback_form {margin-bottom:20px;}
/* Product */
#product{
  margin-bottom: 30px; 
}
.product-image{
  margin-bottom: 30px;
}
.product-image #wrap{
  z-index: 2!important;
}
.product-image .mousetrap{
  max-width: 100%;
  max-height: 100%;
}
.product-image .product-image-thumb{
  margin: 40px 0 0; 
}
.product-image .scroll .image-thumb:first-child{
  margin-left: 0;
}
.product-image .scroll .image-thumb{
  margin-left: 10px;
}
.product-image .mCSB_horizontal>.mCSB_container{
  margin-bottom: 20px;
}
.product-image .product-image-wrapper{
  position: relative;
}
.product-image .gallery_main_wrapper{
  margin-left: -5px;
  margin-right: -5px;
}
.product-image .gallery_main_wrapper .image-thumb{
  margin: 0 5px;
  max-width: 100%;
  box-sizing: border-box;
}
.product-image .image-thumb{
  display: inline-block;
  float: left;
}
.product-image .image-thumb{
  border: 1px solid #FFFFFF;
}
.product-image .main-image,
.product-image .image-thumb.active{
  border: 1px solid #CCCCCC;
}
.product-image .main-image{
  text-align:center;
  display: block;
  position: relative;
  overflow: hidden;
}
.product-image .main-image img{
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.product-image .main-image .main-image-bg,
.product-image .main-image div{
  top: 50%;
  margin-top: -25px;
  left: 50%;
  margin-left: -25px;
  width: 50px!important;
  height: 50px!important;
  background-color: #FFFFFF!important;
  opacity: 0.8;
  filter: alpha(opacity = 80);
}
.product-image .main-image .main-image-bg{
  position: absolute;
  background-image: url(https://assets3.insales.ru/assets/1/232/573672/1547866635/loader.gif);
  background-position: 50% 50%;
  background-repeat: no-repeat no-repeat;
  display: none;
}
.product-image .owl-theme .owl-controls{
  position: relative;
  text-align: center;
  right: auto;
  top: 10px;
}
#quick-shop-modal .quick-shop-modal-bg{
  background: #FFFFFF url(https://assets3.insales.ru/assets/1/232/573672/1547866635/loader.gif) no-repeat center;
  height: 100%;
  width: 100%;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
#quick-shop-modal{
  margin: 0;
}
.quick_shop{
  cursor: pointer;
}

.product-information .price_compare,
.product-information .unavailable,
.product-information .sold-out{
  color: #808080;
  font-size: 30px;
  line-height: 30px;
  font-weight: normal;
  display: block;
}
.product-information .price_sale,
.product-information .price{
  color: #7BAE23;
  font-size: 52px;
  line-height: 52px;
  font-weight: normal;
  display: block;
}
.product-information .sharing{
  z-index: 1;
  position: relative;
}
.product-information .sharing .sharing-background{
  position: absolute;
  width: 100%;
  height: 100%;
  background: #E5E5E5;
  opacity: 0.5;
}
.product-information .sharing .sharing-wrapper{
  padding: 15px 10px 10px 10px;
  position: relative;
  z-index: 1;
}
.product-information .sharing .sharing-wrapper li{
  padding: 0;
}
.product-information .sharing .sharing-wrapper .social-item{
  float: left;
}
.product-information .sharing .sharing-wrapper .social-item > a{
  line-height: 0;
}
.templateproduct .description{
  margin-bottom: 30px;
}
.product-information .relative,
.product-information .product-actions{
  margin-top: 25px;
}
.product-information .relative li{
  margin: 5px 0;
}
.product-information .relative li.wlist{
  text-transform: none;
}
.product-information .relative li.wlist p,
.product-information .relative li.wlist form{
  display: inline;
}
.product-information .relative li.wlist a{
  color: #7BAE23;
}
.product-information .relative li.wlist a:hover{
  text-decoration: underline;
}
.product-information .detail-price{
  margin-top: 10px;
  margin-bottom: 20px;
}
.product-information .action-wrapper{
  margin-top: 10px;
  position: relative;
  display: block;
  float: none;
}
.product-information .action-wrapper.product{
  margin-top: 25px;
}
.product-information .action-wrapper .product-wait {
  background: #FFFFFF url(https://assets3.insales.ru/assets/1/232/573672/1547866635/loader.gif) no-repeat center;
}
.product-information .item-quantity{
  width: 134px!important;
}

/* Related Product */
.product{
  
  display: inline-block;
  float: left;
  
  position: relative;
  z-index: 1;
}
.product .product-container{
  padding: 10px;
  margin: 10px 10px 15px;
  border: 1px solid #CCCCCC;
  position: relative;
  overflow: hidden;
  background-color: #FFFFFF;
  
  box-shadow: 0 1px 1px rgba(0,0,0,0.15), /* The top layer shadow */ 0 10px 0 -5px #FFFFFF, /* The second layer */ 0 10px 1px -4px rgba(0,0,0,0.15);
  -moz-box-shadow: 0 1px 1px rgba(0,0,0,0.15), /* The top layer shadow */ 0 10px 0 -5px #FFFFFF, /* The second layer */ 0 10px 1px -4px rgba(0,0,0,0.15);
  -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.15), /* The top layer shadow */ 0 10px 0 -5px #FFFFFF, /* The second layer */ 0 10px 1px -4px rgba(0,0,0,0.15);
}
.product .product-container:hover,
.product .product-container:hover img.main-image,
.product .product-container img.main-image,
.product .product-container i{
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.product .product-container .product-overlay-zoom,
.product .product-container .product-overlay-link{
  position:absolute;
  top: 0;
  width:50%;
  height:100%;
  z-index: 200;
  opacity: 0;
  filter: alpha(opacity=0);
  
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-transition-delay: 0.2s;
  -moz-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  -ms-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.product .product-container .product-overlay-zoom{
  left:-100%;
}
.notouch .product .product-container .product-title a{
  color: #7BAE23;
}
.notouch .product .product-container .product-title a:hover{
  text-decoration: underline;
}
.notouch .product .product-container:hover .product-overlay-zoom{
  left:0;
  opacity: 1;
  filter: alpha(opacity=100);
}
.product .product-container .product-overlay-link{
  right:-100%;
}
.notouch .product .product-container:hover .product-overlay-link{
  right:0;
  opacity: 1;
  filter: alpha(opacity=100);
}
.product .product-container .product-overlay-zoom i,
.product .product-container .product-overlay-link i{
  font-size: 13px;
  position: absolute;
  top: 50%;
  margin-top: -15px;
  color: #FFFFFF;
  background-color: #7BAE23;
  height: 15px;
  width: 15px;
  padding: 10px;
  opacity: 0.85;
  filter: alpha(opacity=85);
}
.notouch .product .product-container .product-overlay-zoom i:hover,
.notouch .product .product-container .product-overlay-link i:hover{
  opacity: 1;
  filter: alpha(opacity=100);
}
.product .product-container .product-overlay-zoom i{
  right: -18px;
}
.product .product-container .product-overlay-link i{
  left: 10px;
}

.product .product-details {
  padding: 20px 15px 0px 15px;
}
.product .product-details-container {
  border-bottom: 1px solid #CCCCCC;
  padding-bottom: 20px;
  min-height: 50px;
}
.product .product-images{
  display: block;
  position: relative;
  overflow: hidden;
  height: 240px;
  vertical-align:middle;
  line-height:240px;
}
.product .product-container .front, 
.product .product-container .back {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.product .product-container .back {
  position: absolute;
  display: inline-block;
  padding-top: 0;
  height: 100%;
  width: 100%;
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
  opacity: 0;
  filter: alpha(opacity=0);
  left: -100%;
}
.product .product-container .back img {max-height:240px}
.notouch .product .product-container:hover .front {
  /*-webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);*/
  opacity: 0;
  filter: alpha(opacity=0);
}
.notouch .product .product-container:hover .only {
  opacity: 0.6;
  filter: alpha(opacity=60);
}
.notouch .product .product-container:hover .back {
  -webkit-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  -o-transform: rotateY(0deg);
  transform: rotateY(0deg);
  opacity: 1;
  filter: alpha(opacity=100);
  left: 0;
}
.product .product-title{
  margin-bottom: 10px;
  margin-top: 0;
  height:40px;overflow:hidden;
}
.product .product-title a{
  position: relative;
  z-index: 5;
}
.product .product-price{
  font-size: 18px;
}
.product .product-price .price_sale,
.product .product-price .price{
  color: #7BAE23;
}
.product .product-price .price_compare{
  color: #808080;
  font-weight: normal;
}
.product .price_compare{
  font-size: 14px;
}
.product .product-buttons {
  padding: 0 15px;
  height: 40px;
}
.product .product-buttons .product-buttons-container form{
  margin-bottom: 0;
}
.product .product-buttons .show_add_button, 
.product .product-buttons .show_details_button {
  width: 50%;
  line-height: normal !important;
  margin-top: 12px;
  float: left;
  position: relative;
}
.product .product-buttons .show_add_button{
  text-align: center;
  width:100%;
  float:none;
  position: relative;
}
.product .product-buttons .show_details_button{
  text-align: right;
}
.product .product-buttons .other_details{
  width: 100%;
  float: none;
  text-align: center;
}
.product .product-buttons .show_add_button a, 
.product .product-buttons .show_details_button a{
  display: inline-block;
}
.product .product-wait{
  background: #FFFFFF url(https://assets3.insales.ru/assets/1/232/573672/1547866635/loader.gif) no-repeat left;
  height: 100%;
  width: 100%;
  z-index: 2000;
  position: absolute;
  display: none;
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.collection-actions{
  margin-top: 20px;
}
.collection-actions .dropdown-menu{
  margin-top: 5px;
}
#sandBox{
  margin-left: -9px;
  margin-right: -9px;
}
#sandBox.full_width .product{
  width: 100%;
  margin-bottom: 30px;
}
#sandBox.full_width .product .product-description{
  display: block!important;
  margin-bottom: 0;
  margin-top: 10px;
}

/* Sale of */
.on-sale-wrap{
  overflow: hidden;
  width: 30%;
  height: 40%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 100;
}
.on-sale-wrap span.onsale {
  right: auto;
  z-index: 10;
  position: absolute;
  
  
  top: 15px;
  left: -27px;
  padding: 2px 40px;
  color: #FFFFFF;
  background-color: #D70000;
  font-size: 13px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
   
}

/* Pagination */
.pagination{
  text-align: center;
  clear: both;
  display: block;
  margin: 50px 0 0;
}
.pagination ul>li>a, 
.pagination ul>li>span{
  float: none;
  border: 1px solid #E5E5E5;
  padding: 7px 14px;
  background-color: #E5E5E5;
}
.pagination ul>li>span{
  cursor: default;
}

/* Featured Products */
#featured-products-wrapper{
  margin-left: -9px;
  margin-right: -9px;
}

/* Special Products */
#special-products{
  background: url(https://assets3.insales.ru/assets/1/232/573672/1547866635/line.png) repeat-y scroll center center transparent;
  position: relative;
}
#special-products .product{
  width: 50%;
  position: relative;
  clear: both;
}
#special-products .odd{
  float: right;
}
#special-products .even{
  float: left;
}
#special-products .odd .product-container{
  margin: 0 0 0 30px;
  overflow: visible;
  margin-top: -16px;
}
#special-products .even .product-container{
  margin: 0 30px 0 0;
  margin-top: -95px;
  overflow: visible;
}
#special-products .product-details{
  padding-top: 10px;
}
#special-products .product-title{
  position: relative;
  z-index: 101;
}
#special-products .product-price{
  position: absolute;
  padding: 5px;
}
#special-products .label-2 .price,
#special-products .label-2 .price_sale,
#special-products .label-2 .price_compare{
  color: #FFFFFF;
  line-height: 0;
}
#special-products .odd .product-price{
  right: 100%;
  margin-right: 60px;
  top: 40px;
  padding: 8px 10px;
}
#special-products .even .product-price{
  left: 100%;
  margin-left: 60px;
  bottom: 40px;
  padding: 8px 10px;
}
#special-products .product-image a{
  position: absolute;
  width: 26px;
  height: 26px;
}
#special-products .product-image a span{
  display: inline-block;
  -webkit-border-radius: 100%!important;
  -moz-border-radius: 100%!important;
  border-radius: 100%!important;
  border: 2px solid #7BAE23;
  max-width: 100%;
}
#special-products .product-image a img{
  -webkit-border-radius: 100%!important;
  -moz-border-radius: 100%!important;
  border-radius: 100%!important;
  border-width: 0;
  width: 22px;
  height: 22px;
}
#special-products .product-image a img:hover{
  opacity: 0.9;
  filter: alpha(opacity=90);
}
#special-products .odd .product-image a{
  right: 100%;
  margin-right: 18px;
  top: 42px;
}
#special-products .even .product-image a{
  left: 100%;
  margin-left: 18px;
  bottom: 42px;
}
#special-products .odd .product-container:after,
#special-products .odd .product-container:before{
  content: '';
  display: inline-block;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-right: 13px solid #FFFFFF;
  position: absolute;
  top: 42px;
  left: -12px;
}
#special-products .odd .product-container:before {
  border-right-color: #CCCCCC;
  left: -13px;
}
#special-products .even .product-container:after,
#special-products .even .product-container:before{
  content: '';
  display: inline-block;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 13px solid #FFFFFF;
  position: absolute;
  bottom: 42px;
  right: -12px;
}
#special-products .even .product-container:before {
  border-left-color: #CCCCCC;
  right: -13px;
}

#special-products .even .product-price:after,
#special-products .even .product-price:before{
  content: '';
  display: inline-block;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #7BAE23;
  position: absolute;
  top: 5px;
  left: -10px;
}
#special-products .even .product-price:before {
  border-right-color: #7BAE23;
  left: -10px;
}
#special-products .odd .product-price:after,
#special-products .odd .product-price:before{
  content: '';
  display: inline-block;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #7BAE23;
  position: absolute;
  bottom: 5px;
  right: -10px;
}
#special-products .odd .product-price:before {
  border-left-color: #7BAE23;
  right: -10px;
}

/* Related Product */
#product-related-container{
  margin-bottom: 50px;
}
#product-related-wrapper{
  margin-left: -9px;
  margin-right: -9px;
}

#product-related .product{
  display: block;
  float: none;
}


/* Featured Collections */
.featured-collections{
  padding-top: 20px;
}
#featured-collections-wrapper{
  margin-left: -9px;
  margin-right: -9px;
}
.collection .collection-container img,
.collection .collection-container:hover img{
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.collection{
  
  display: block;
  
}
.collection .collection-container{
  padding: 0;
  margin: 10px 10px 20px;
  border: 1px solid #CCCCCC;
  position: relative;
  overflow: hidden;
  background-color: #FFFFFF;
  
  box-shadow: 0 1px 1px rgba(0,0,0,0.15), /* The top layer shadow */ 0 10px 0 -5px #FFFFFF, /* The second layer */ 0 10px 1px -4px rgba(0,0,0,0.15);
  -moz-box-shadow: 0 1px 1px rgba(0,0,0,0.15), /* The top layer shadow */ 0 10px 0 -5px #FFFFFF, /* The second layer */ 0 10px 1px -4px rgba(0,0,0,0.15);
  -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.15), /* The top layer shadow */ 0 10px 0 -5px #FFFFFF, /* The second layer */ 0 10px 1px -4px rgba(0,0,0,0.15);
}
.collection .collection-details{
  padding: 20px 15px 10px 15px;
  height: 100%;
}
.collection .collection-details a{
  color: #7BAE23;
}
.collection .collection-details a:hover h4{
  text-decoration: underline;
}
.collection .collection-details h4{
  margin-top: 0;
  display: inline-block;
}
.collection .front, 
.collection .back {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.collection .back {
  position: absolute;
  display: inline-block;
  padding-top: 0;
  height: 100%;
  width: 100%;
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
  opacity: 0;
  filter: alpha(opacity=0);
  left: -100%;
}
.notouch .collection .collection-container:hover .front {
  /*-webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);*/
  opacity: 0;
  filter: alpha(opacity=0);
}
.notouch .collection .collection-container:hover .only{
  opacity: 0.6;
  filter: alpha(opacity=60);
}
.notouch .collection .collection-container:hover .back {
  -webkit-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  -o-transform: rotateY(0deg);
  transform: rotateY(0deg);
  opacity: 1;
  filter: alpha(opacity=100);
  left: 0;
}
#featured-collections .mCSB_container .collection:first-child .collection-container{
  margin-left: 0;
}
#featured-collections .mCSB_container .collection:last-child .collection-container{
  margin-right: 0;
}
h3.title{
  font-family: 'PT Sans', sans-serif;
  text-transform: uppercase;
  font-size: 30px;
  color: #000000;
  font-weight: normal;
}
h3.title span{
  opacity: 0.8;
  filter: alpha(opacity=80);
}

/* Special Offers */
.templateIndex #module-content #col-main .special-offers{
  margin-bottom: 20px;
}
#special-offers-wrapper{
  margin-left: -10px;
  margin-right: -10px;
}
#special-offers-wrapper .offer{
  margin: 10px;
  text-align: center;
}
#special-offers-wrapper .offer a{
  position: relative;
  display: block;
}
#special-offers-wrapper .offer .offer-wrapper{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
#special-offers-wrapper .offer .offer-wrapper .offer-title{
  font-size: 45px;
  line-height: 100px;
  padding-top: 15px;
  font-family: 'PT Sans', sans-serif;
  font-weight: 200;
  display: block;
  text-align: center;
  text-transform: uppercase;
}
#special-offers-wrapper .offer .offer-wrapper .offer-caption{
  font-size: 17px;
  padding: 11px 0 0 0;
  border-top: 1px solid;
  display: inline-block;
  text-transform: lowercase;
}
.notouch #special-offers-wrapper .offer .offer-wrapper .offer-caption{
  position: relative;
  top: -20px;
  opacity: 0;
  filter: alpha(opacity=0);
  
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.notouch #special-offers-wrapper .offer a:hover .offer-caption{
  top: 0;
  opacity: 1;
  filter: alpha(opacity=100);
}

/* Fix Google Map with Bootstrap */
.gm-style img { 
  max-width: none; 
}

/* Wish list */
.wishlist{
  margin: 20px 0;
}
.notouch .wishlist{
  min-height: 300px;
}
.wishlist-items .wlist_price{
  font-size: 18px;
}

/* Scroll to top */
#scroll-to-top{
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -moz-backface-visibility: hidden;
  
  opacity: 0;
  filter: alpha(opacity=0);
  position: absolute;
  right: -50px;
  z-index: 9999;
  display: block;
  top: 85%;
  font-size: 25px;
  cursor: pointer;
  padding: 8px 12px;
  display: none;
}
#scroll-to-top.on {
  right: 20px;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
#scroll-to-top.off {
  right: -60px;
}

/* Carousel */
.owl-theme .owl-controls .owl-buttons > div{
  margin: 0;
  padding: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  background: transparent;
  filter: Alpha(Opacity=100);/*IE7 fix*/
  opacity: 1;
}
.owl-theme .owl-controls .owl-buttons .owl-prev{
  margin-right: 5px;
}
.owl-theme .owl-controls .owl-buttons > div i{
  font-size: 20px;
}
.owl-theme .owl-controls{
  position: absolute;
  right: 10px;
  top: -6px;
  margin: 0;
  z-index: 10;
}
.ie8 .owl-theme .owl-controls{
  right: 8px;
}
#featured-collections.owl-theme .owl-controls{
  right: 10px;
}
.ie8 #featured-collections.owl-theme .owl-controls{
  right: 8px;
}
#product-related.owl-theme .owl-controls{
  right: 9px;
}
.ie8 #product-related.owl-theme .owl-controls{
  right: 10px;
}

/* Sidebar */
.widget-wrapper ul{
  overflow: hidden;
}
.widget-wrapper .product-link{
  text-align:center;
  display: block;
  
  border: 1px solid #CCCCCC;
  overflow: hidden;
  height:62px;
  line-height:62px;
}

.widget-wrapper .product-link img {max-width:100%;max-height:100%;}
.product{
  float: none;
  display: block;
}
.product-container-sb h4,
.list-styled li:first-child{
  margin-top: 0;
}
.product .product-container-sb .product-price{
  margin-bottom: 10px;
}

/* Sidebar in homepage */
.sidebar-home .widget-wrapper:first-child{
  margin-top: 35px;
}
.sidebar-home .banners{
  margin-bottom: 15px;
  display: inline-block;
}
.sidebar-home .widget-wrapper > ul{
  display: inline-block;
}


/* Pages */
.page-order,
.account-page{
  margin-bottom: 25px;
}

/* Mixc */
.modal-header .close{
  padding-top: 2px;
}
#screenshot{
  position: absolute;
  z-index: 10;
  border: 2px solid #7BAE23;
}
.ie8 .dropdown-menu{
  display: block !important;
  visibility: hidden;
  filter: alpha(opacity=0);
}
.ie8 .dropdown-parent:hover > .dropdown-menu{
  visibility: visible;
  filter: alpha(opacity=100);
}
.ie8 .dropdown-parent-submenu:hover > .dropdown-menu{
  visibility: visible;
  filter: alpha(opacity=100);
}
.fancybox-opened{
  border-top: 3px solid #7BAE23;
}

.popupaddcart {
  z-index:9;
  font-size:13px;
  width:200px; 
  height:40px;
  padding-left: 0px;
  padding-right: 0px;
  line-height:40px; 
  text-align:center; 
  background-color: #000000;
  opacity: 0.85;
  filter: alpha(opacity=85);
  color:#FFFFFF; 
  position:fixed; 
  left:50%; 
  top:50%; 
  margin:-20px 0 0 -100px;
}

#scroll-top{
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -moz-backface-visibility: hidden;
  opacity: 0;
  filter: alpha(opacity=0);
  position: fixed;
  bottom: -50px;
  z-index: 1000;
  display: block;
  right: 20px;
  cursor: pointer;
  text-align: center;
  margin-top: 30px;
}
#scroll-top.on {
  bottom: 40px;
  opacity: 1;
  filter: alpha(opacity=100);
}
#scroll-top i{
  font-size: 30px;
  background-color: #7BAE23;
  color: #FFFFFF;
  padding: 5px 12px;
}
  .b {font-weight:700;}
.selector-wrapper select {width:100%}
.widget-params select {width:100%}
#page_size, #page_order {display:none;}
.breadcrumb-detail {padding-top:15px;}
input.input-error {border-color:#e9322d;-webkit-box-shadow:0 0 6px #f8b9b7;-moz-box-shadow:0 0 6px #f8b9b7;box-shadow:0 0 6px #f8b9b7;}
#add_product_notification{background:#282828;color:#FFF;padding:10px;opacity:0.8;filter:alpha(opacity=80);-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;position:relative;z-index:9}
#own_preloader{z-index:1000;text-align:center;vertical-align:middel;font-weight:normal;font-size:12px;width:200px;height:60px}
.error404{text-align:center;padding:80px 0 50px 0}
.error404 big{font-weight:bold;line-height:normal;font-size:66px;display:block;margin-bottom:25px}
#thanks {display:none;}
.notice,.notice-error, #thanks{text-align:center;border:1px solid #F5E79E;text-shadow:0px 1px 0px rgba(255,255,255,0.196);margin-bottom:15px;padding:15px;color:#C09853;background:#F9F2CB}
.notice a, #thanks a{color:#C09853;text-decoration:underline}
.notice-error{background:#E9C8C8;border-color:#DCA7A7;font-family:"Helvetica Neue","Helvetica","Arial",sans-serif;font-size:14px;color:#B94A48}/* CSS Document */
.notice a:hover{text-decoration:none}
#flickr {margin-left:-4px;}
#flickr li {width:56px;height:56px;;text-align:center;line-height:56px;vertical-align:middle; border:1px solid #CCC;margin:0 0px 4px 4px;}
#captcha_challenge {margin-bottom:10px;}
.comment-content {padding-bottom:20px;}
.comment {margin-bottom:20px;}
/* Review */
.spr-badge{
  margin-bottom: 10px;
  display: inline-block;
}
.spr-icon, [class^="spr-icon-"]:before, [class*=" spr-icon-"]:before{
  font-size: 100%!important;
  color: #f79638;
}
.product-container .spr-badge .spr-badge-caption{
  display: none;
}
.spr-badge .spr-badge-caption:before{
  content: "(";
}
.spr-badge .spr-badge-caption:after{
  content: ")";
}
#shopify-product-reviews{
  margin-bottom: 30px!important;
}
#shopify-product-reviews .spr-container{
  padding: 0!important;
  border: 0!important;
}
.spr-header-title{
  font-size: 20px!important;
  text-transform: uppercase;
  border-bottom: 1px solid #cccccc;
}
.spr-header-title:after {
  background-color: #7bae23;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  width: 120px;
}

input[disabled=disabled],button[disabled=disabled],textarea[disabled=disabled] {background:#EEEEEE;}
.product-share {padding-top:24px;text-align:center;}
  
 
.sold_out {color:#F00;}
#featured-collections-wrapper .i {height:230px;line-height:180px;display:block;text-align:center;}
#featured-collections-wrapper .i img {max-height:180px}
.widget-catalog h4 span {font-size:14px; color:#CCC;}
.widget-catalog ul li ul {margin-left:10px;font-size:14px;}
#module-content #col-main {min-height:600px;}
#comment_body {min-height: 100px !important;margin-bottom: 0;}
.pagination-num-showing {padding-top:5px;}
.nbr {white-space:nowrap;}
.discount input[type=text] {margin-right:10px;}
.discount .error {color:#F00;padding:5px 0;}


#feedback_form table {width:100% !important;padding:0px !important; margin:0px;border:0px !important}
#feedback_form, #feedback_form table tr td {border:0px; padding:0px;text-align:left !important;}
#feedback_form br {display:none;}
#feedback_form textarea,#feedback_form input[type=text]{width:100% !important;resize:none; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;}
#feedback_form input[type=text] {height:auto;}
.advanced-filters { margin-left: 0; list-style: none outside; }
.advanced-filter { margin-bottom: 0.25em; }
.advanced-filter input[type=checkbox] {display:none;}
.advanced-filters label { display: block; cursor:pointer;position: relative; padding-left: 20px; }
.advanced-filters label:before { top: 3px; left: 0; width: 12px; height: 12px; background-color: #fff; border: 1px solid #ececec; }
.advanced-filters label:after { top: 6px; left: 3px; width: 8px; height: 8px; background-color: transparent; }
.advanced-filters label:before, .advanced-filters label:after { content: ''; display: block; position: absolute; }
.advanced-filters label:hover:after { background-color: #ececec; }
.advanced-filter.active-filter label:after { background-color: #000; }
.advanced-filter.active-filter label:hover:after { content: '\78'; top: 3px; left: 0; width: 13px; height: 13px; background-color: #000; font-size: 8px; text-align: center; color: #fff; font-family: FontAwesome; line-height: 12px; speak: none; }

.filter-button {margin-bottom:10px;}


/* #jQuery custom scrollbars plugin version 2.8.2
================================================== */
.mCSB_container{width:auto;overflow:hidden}
.mCSB_container.mCS_no_scrollbar{margin-right:0}
.mCS_disabled>.mCustomScrollBox>.mCSB_container.mCS_no_scrollbar,.mCS_destroyed>.mCustomScrollBox>.mCSB_container.mCS_no_scrollbar{margin-right:30px}
.mCustomScrollBox>.mCSB_scrollTools{width:10px;height:100%;top:0;right:0}
.mCSB_scrollTools .mCSB_draggerContainer{position:absolute;top:0;left:0;bottom:0;right:0;height:auto}
.mCSB_scrollTools a+.mCSB_draggerContainer{margin:20px 0}
.mCSB_scrollTools .mCSB_draggerRail{width:0;height:100%;margin:0 auto;-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px}
.mCSB_scrollTools .mCSB_dragger{cursor:pointer;width:100%;height:30px}
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{width:10px;height:100%;margin:0 auto;text-align:center}
.mCSB_scrollTools .mCSB_buttonUp,.mCSB_scrollTools .mCSB_buttonDown{display:block;position:relative;height:20px;overflow:hidden;margin:0 auto;cursor:pointer}
.mCSB_scrollTools .mCSB_buttonDown{top:100%;margin-top:-40px}
.mCSB_horizontal>.mCSB_container{height:auto;margin-right:0;margin-bottom:30px;overflow:hidden}
.mCSB_horizontal>.mCSB_container.mCS_no_scrollbar{margin-bottom:0}
.mCS_disabled>.mCSB_horizontal>.mCSB_container.mCS_no_scrollbar,.mCS_destroyed>.mCSB_horizontal>.mCSB_container.mCS_no_scrollbar{margin-right:0;margin-bottom:30px}
.mCSB_horizontal.mCustomScrollBox>.mCSB_scrollTools{width:100%;height:16px;top:auto;right:auto;bottom:0;left:0;overflow:hidden}
.mCSB_horizontal>.mCSB_scrollTools a+.mCSB_draggerContainer{margin:0 20px}
.mCSB_horizontal>.mCSB_scrollTools .mCSB_draggerRail{width:100%;height:2px;margin:7px 0;-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px}
.mCSB_horizontal>.mCSB_scrollTools .mCSB_dragger{width:30px;height:100%}
.mCSB_horizontal>.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{width:100%;height:4px;margin:6px auto;-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px}
.mCSB_horizontal>.mCSB_scrollTools .mCSB_buttonLeft,.mCSB_horizontal>.mCSB_scrollTools .mCSB_buttonRight{display:block;position:relative;width:20px;height:100%;overflow:hidden;margin:0 auto;cursor:pointer;float:left}
.mCSB_horizontal>.mCSB_scrollTools .mCSB_buttonRight{margin-left:-40px;float:right}
.mCustomScrollBox{-ms-touch-action:none}
.mCustomScrollBox>.mCSB_scrollTools{opacity:.75;filter:"alpha(opacity=75)";-ms-filter:"alpha(opacity=75)"}
.mCustomScrollBox:hover>.mCSB_scrollTools{opacity:1;filter:"alpha(opacity=100)";-ms-filter:"alpha(opacity=100)"}
.mCSB_scrollTools .mCSB_draggerRail{background:#000;background:rgba(0,0,0,0.4);filter:"alpha(opacity=40)";-ms-filter:"alpha(opacity=40)"}
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{background:#fff;background:rgba(255,255,255,0.75);filter:"alpha(opacity=75)";-ms-filter:"alpha(opacity=75)"}
.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background:rgba(255,255,255,0.85);filter:"alpha(opacity=85)";-ms-filter:"alpha(opacity=85)"}
.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{background:rgba(255,255,255,0.9);filter:"alpha(opacity=90)";-ms-filter:"alpha(opacity=90)"}
.mCSB_scrollTools .mCSB_buttonUp,.mCSB_scrollTools .mCSB_buttonDown,.mCSB_scrollTools .mCSB_buttonLeft,.mCSB_scrollTools .mCSB_buttonRight{background-image:url(mCSB_buttons.png);background-repeat:no-repeat;opacity:.4;filter:"alpha(opacity=40)";-ms-filter:"alpha(opacity=40)"}
.mCSB_scrollTools .mCSB_buttonUp{background-position:0 0}
.mCSB_scrollTools .mCSB_buttonDown{background-position:0 -20px}
.mCSB_scrollTools .mCSB_buttonLeft{background-position:0 -40px}
.mCSB_scrollTools .mCSB_buttonRight{background-position:0 -56px}
.mCSB_scrollTools .mCSB_buttonUp:hover,.mCSB_scrollTools .mCSB_buttonDown:hover,.mCSB_scrollTools .mCSB_buttonLeft:hover,.mCSB_scrollTools .mCSB_buttonRight:hover{opacity:.75;filter:"alpha(opacity=75)";-ms-filter:"alpha(opacity=75)"}
.mCSB_scrollTools .mCSB_buttonUp:active,.mCSB_scrollTools .mCSB_buttonDown:active,.mCSB_scrollTools .mCSB_buttonLeft:active,.mCSB_scrollTools .mCSB_buttonRight:active{opacity:.9;filter:"alpha(opacity=90)";-ms-filter:"alpha(opacity=90)"}
.mCustomScrollBox>.mCSB_scrollTools{
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.mCustomScrollBox>.mCSB_scrollTools{
  opacity: 0.3;
  filter: "alpha(opacity=30)";
  -ms-filter: "alpha(opacity=30)";
}
.mCustomScrollBox:hover>.mCSB_scrollTools{
  opacity: 1;
  filter: "alpha(opacity=100)";
  -ms-filter: "alpha(opacity=100)";
}
.mCSB_horizontal.mCustomScrollBox>.mCSB_scrollTools{
  height: 10px;
}
.scroll-mini .mCSB_horizontal.mCustomScrollBox>.mCSB_scrollTools{
  height: 5px;
}
.mCSB_scrollTools .mCSB_draggerRail{
  background: #000000;
  background: rgba(0,0,0,0.1);
  filter: "alpha(opacity=10)";
  -ms-filter: "alpha(opacity=10)";
}
.mCSB_horizontal>.mCSB_scrollTools .mCSB_draggerRail,
.mCSB_horizontal>.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
  height: 10px;
  margin: 0 auto;
}
.scroll-mini .mCSB_horizontal>.mCSB_scrollTools .mCSB_draggerRail,
.scroll-mini .mCSB_horizontal>.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
  height: 5px;
  margin: 0 auto;
}
.mCSB_horizontal>.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCSB_horizontal>.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar:hover{
  opacity: 1;
  filter: "alpha(opacity=100)"; 
  -ms-filter: "alpha(opacity=100)";
}
